@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Lora:ital,wght@0,400;0,500;1,400&display=swap');

:root {
  --void: #06050f;
  --midnight: #0a0818;
  --deep-space: #110d2d;
  --nebula-dark: #1d1045;
  --nebula: #2a1668;
  --twilight: #3d1f80;
  --gold: #c9a84c;
  --gold-bright: #eacc6a;
  --gold-pale: #f5e4a8;
  --cream: #f2ead6;
  --parchment: #e0d5b8;
  --text-muted: #9080a8;
  --rose-dim: #b86e6e;
  --forest: #162e22;
  --sage: #3d6648;
  --card-bg: rgba(26, 14, 61, 0.7);
  --gold-glow: rgba(201, 168, 76, 0.15);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

::selection {
  background: rgba(201, 168, 76, 0.3);
  color: var(--cream);
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--void); }
::-webkit-scrollbar-thumb { background: rgba(201, 168, 76, 0.25); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(201, 168, 76, 0.45); }

body {
  background-color: var(--midnight);
  color: var(--cream);
  font-family: 'Lora', Georgia, serif;
  line-height: 1.75;
  overflow-x: hidden;
}

#starfield {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 50;
  pointer-events: none;
}

.site-wrapper { position: relative; z-index: 1; }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4, h5 {
  font-family: 'Cinzel', serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.3;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.6rem); }

.subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--gold);
  letter-spacing: 0.06em;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover { color: var(--gold-bright); }

/* ─── LAYOUT ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.container-narrow { max-width: 760px; margin: 0 auto; padding: 0 2rem; }

/* ─── NAVIGATION ─── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.1rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.site-nav.scrolled {
  background: rgba(8, 6, 20, 0.93);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(201, 168, 76, 0.18);
}

.nav-logo {
  font-family: 'Cinzel', serif;
  font-size: 1.15rem;
  color: var(--gold-bright);
  letter-spacing: 0.1em;
  line-height: 1.2;
}
.nav-logo .logo-sub {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.18em;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.25rem;
  align-items: center;
}
.nav-links a {
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--parchment);
}
.nav-links a:hover { color: var(--gold-bright); }

.nav-social { display: flex; gap: 1rem; align-items: center; }
.nav-social a { color: var(--text-muted); display: flex; align-items: center; transition: color 0.3s; }
.nav-social a:hover { color: var(--gold); }

.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 0.4rem; }
.hamburger span { display: block; width: 22px; height: 1px; background: var(--cream); margin: 5px 0; transition: 0.3s; }

/* ─── MOBILE MENU ─── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(6, 5, 15, 0.97);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.25rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu .close-btn {
  position: absolute;
  top: 1.5rem; right: 2rem;
  background: none; border: none;
  color: var(--cream); font-size: 1.4rem; cursor: pointer;
}
.mobile-menu a {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
}
.mobile-menu a:hover { color: var(--gold); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}
.btn-primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--void);
}
.btn-primary:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  color: var(--void);
  box-shadow: 0 0 32px rgba(201, 168, 76, 0.45);
}
.btn-outline {
  background: transparent;
  border-color: rgba(201, 168, 76, 0.45);
  color: var(--gold-pale);
}
.btn-outline:hover {
  background: rgba(201, 168, 76, 0.08);
  border-color: var(--gold);
  color: var(--gold-bright);
}

/* ─── SECTION HEADERS ─── */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header h2 { color: var(--cream); margin-bottom: 0.75rem; }

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 0.85rem 0;
  color: var(--gold);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  font-family: 'Cinzel', serif;
}
.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.35), transparent);
  max-width: 180px;
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 7rem 2rem 5rem;
  background: radial-gradient(ellipse at 50% 25%, rgba(42, 22, 104, 0.82) 0%, rgba(17, 13, 45, 0.88) 45%, rgba(10, 8, 24, 0.93) 100%);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 85%, rgba(42, 22, 104, 0.35) 0%, transparent 65%);
  pointer-events: none;
}

.hero-deco {
  position: absolute;
  pointer-events: none;
  color: rgba(201, 168, 76, 0.12);
  font-size: 12rem;
  line-height: 1;
  top: 50%;
  transform: translateY(-50%);
}
.hero-deco-left { left: -1.5rem; }
.hero-deco-right { right: -1.5rem; }

.hero-content { position: relative; z-index: 2; max-width: 720px; }

.hero-eyebrow {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold);
  letter-spacing: 0.22em;
  margin-bottom: 1.25rem;
}
.hero-eyebrow::before { content: '✦  '; opacity: 0.6; }
.hero-eyebrow::after  { content: '  ✦'; opacity: 0.6; }

.hero h1 { color: var(--cream); margin-bottom: 1.5rem; text-shadow: 0 0 50px rgba(201, 168, 76, 0.25); }
.hero h1 em { font-style: italic; color: var(--gold-bright); }

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 2vw, 1.22rem);
  color: var(--parchment);
  opacity: 0.88;
  margin-bottom: 3rem;
  line-height: 1.85;
}

.hero-ctas { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bob 2.2s ease-in-out infinite;
  opacity: 0.45;
}
@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-7px); }
}

/* ─── ABOUT PREVIEW ─── */
.about-preview {
  padding: 7rem 0;
  background: linear-gradient(180deg, rgba(10,8,24,0.92) 0%, rgba(17,13,45,0.92) 50%, rgba(10,8,24,0.92) 100%);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-image-wrap { position: relative; }
.photo-frame {
  position: absolute;
  top: -14px; left: -14px; right: 14px; bottom: 14px;
  border: 1px solid rgba(201, 168, 76, 0.14);
  pointer-events: none;
}
.photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(145deg, var(--nebula-dark), var(--nebula));
  border: 1px solid rgba(201, 168, 76, 0.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  gap: 0.75rem;
  font-size: 0.85rem;
}
.photo-placeholder .icon { font-size: 3rem; opacity: 0.3; }

.about-eyebrow {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  margin-bottom: 0.6rem;
}
.about-content h2 { margin-bottom: 1.5rem; }
.about-content p { color: var(--parchment); margin-bottom: 1.4rem; opacity: 0.9; }

.pillar-tags { display: flex; flex-wrap: wrap; gap: 0.65rem; margin-bottom: 2.25rem; }
.pillar-tag {
  font-family: 'Cinzel', serif;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(201, 168, 76, 0.28);
  color: var(--gold);
  background: rgba(201, 168, 76, 0.04);
}

/* ─── FEATURED POSTS ─── */
.featured-posts { padding: 7rem 0; background: rgba(10,8,24,0.9); }

.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.post-card {
  background: var(--card-bg);
  border: 1px solid rgba(201, 168, 76, 0.1);
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.post-card:hover {
  transform: translateY(-7px);
  border-color: rgba(201, 168, 76, 0.32);
  box-shadow: 0 22px 55px rgba(0,0,0,0.5), 0 0 40px rgba(201,168,76,0.07);
}
.post-img {
  width: 100%;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--nebula-dark), var(--nebula));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  position: relative;
  overflow: hidden;
}
.post-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.post-img .post-icon { position: absolute; opacity: 0.3; }

.post-body { padding: 1.85rem; }
.post-cat {
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.7rem;
  display: block;
}
.post-card h3 { font-size: 1.05rem; margin-bottom: 0.7rem; color: var(--cream); line-height: 1.45; }
.post-card p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 1.25rem; line-height: 1.65; }
.read-more {
  font-family: 'Cinzel', serif;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.read-more::after { content: '→'; transition: transform 0.2s; }
.post-card:hover .read-more::after { transform: translateX(5px); }

/* ─── NEWSLETTER ─── */
.newsletter-section {
  padding: 7rem 0;
  background: linear-gradient(135deg, #170f3d 0%, #2a1668 50%, #170f3d 100%);
  border-top: 1px solid rgba(201, 168, 76, 0.14);
  border-bottom: 1px solid rgba(201, 168, 76, 0.14);
  position: relative;
  overflow: hidden;
}
.newsletter-section::before {
  content: '☽';
  position: absolute; left: -2.5rem; top: 50%;
  transform: translateY(-50%);
  font-size: 22rem; color: rgba(255,255,255,0.018);
  line-height: 1; pointer-events: none;
}
.newsletter-section::after {
  content: '☾';
  position: absolute; right: -2.5rem; top: 50%;
  transform: translateY(-50%);
  font-size: 22rem; color: rgba(255,255,255,0.018);
  line-height: 1; pointer-events: none;
}

.newsletter-inner {
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.freebie-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--void);
  font-family: 'Cinzel', serif;
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.38rem 1.2rem;
  margin-bottom: 1.5rem;
}
.newsletter-inner h2 { color: var(--cream); margin-bottom: 0.75rem; }

.freebie-box {
  background: rgba(8, 6, 20, 0.55);
  border: 1px solid rgba(201, 168, 76, 0.18);
  padding: 2rem 2.25rem;
  margin: 2rem 0;
  text-align: left;
}
.freebie-box .freebie-label {
  font-family: 'Cinzel', serif;
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  display: block;
}
.freebie-box h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--gold-bright);
  margin-bottom: 0.85rem;
}
.freebie-box .freebie-desc { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 1.25rem; }
.freebie-box ul { list-style: none; }
.freebie-box ul li {
  padding: 0.35rem 0;
  color: var(--parchment);
  font-size: 0.88rem;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.freebie-box ul li::before { content: '✦'; color: var(--gold); flex-shrink: 0; font-size: 0.6rem; margin-top: 0.3rem; }

.nl-form {
  display: flex;
  margin-top: 2rem;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}
.nl-form input[type="email"] {
  flex: 1;
  padding: 1rem 1.2rem;
  background: rgba(8, 6, 20, 0.85);
  border: 1px solid rgba(201, 168, 76, 0.28);
  border-right: none;
  color: var(--cream);
  font-family: 'Lora', serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s;
}
.nl-form input[type="email"]::placeholder { color: var(--text-muted); font-style: italic; }
.nl-form input[type="email"]:focus { border-color: rgba(201, 168, 76, 0.55); }
.nl-form button {
  padding: 1rem 1.6rem;
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--void);
  font-family: 'Cinzel', serif;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s ease;
}
.nl-form button:hover { background: var(--gold-bright); border-color: var(--gold-bright); }

.nl-disclaimer { font-size: 0.72rem; color: var(--text-muted); margin-top: 1rem; font-style: italic; }

/* ─── SHOP PREVIEW ─── */
.shop-preview {
  padding: 7rem 0;
  background: linear-gradient(180deg, rgba(10,8,24,0.9) 0%, rgba(22,46,34,0.9) 100%);
}
.shop-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-bottom: 3rem; }

.shop-card {
  background: rgba(22, 46, 34, 0.6);
  border: 1px solid rgba(61, 102, 72, 0.35);
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.shop-card:hover { transform: translateY(-5px); border-color: rgba(201, 168, 76, 0.28); }
.shop-img {
  aspect-ratio: 1;
  background: linear-gradient(135deg, #1a3028, #2a4a35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--sage);
  overflow: hidden;
}
.shop-img img { width: 100%; height: 100%; object-fit: cover; }
.shop-card-body { padding: 1.25rem; }
.shop-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.4rem;
}
.shop-card p { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 1rem; }
.shop-link {
  font-family: 'Cinzel', serif;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0.45rem 1rem;
  border: 1px solid rgba(201, 168, 76, 0.28);
  display: inline-block;
  transition: all 0.3s;
}
.shop-link:hover { background: rgba(201, 168, 76, 0.08); color: var(--gold-bright); }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  padding: 10rem 2rem 5rem;
  text-align: center;
  background: radial-gradient(ellipse at 50% 0%, rgba(42, 22, 104, 0.82) 0%, rgba(10, 8, 24, 0.93) 68%);
  position: relative;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.28), transparent);
}
.page-hero h1 { margin-bottom: 0.85rem; }
.page-hero p { color: var(--parchment); max-width: 560px; margin: 0.5rem auto 0; opacity: 0.85; }

/* ─── BLOG PAGE ─── */
.blog-layout { padding: 5rem 0; background: rgba(10,8,24,0.9); }
.blog-main-grid { display: grid; grid-template-columns: 1fr 320px; gap: 4rem; align-items: start; }
.blog-posts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }

.sidebar { position: sticky; top: 6rem; }
.sidebar-widget {
  background: var(--card-bg);
  border: 1px solid rgba(201, 168, 76, 0.1);
  padding: 1.85rem;
  margin-bottom: 2rem;
}
.sidebar-widget h4 {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(201,168,76,0.12);
}
.sidebar-widget p { font-size: 0.88rem; color: var(--text-muted); }
.cat-list { list-style: none; }
.cat-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.85rem;
}
.cat-list li a { color: var(--parchment); }
.cat-list li a:hover { color: var(--gold); }
.cat-count { color: var(--text-muted); font-size: 0.75rem; }

/* ─── SHOP PAGE ─── */
.shop-page { padding: 5rem 0; background: rgba(10,8,24,0.9); }
.shop-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 3rem;
  border-bottom: 1px solid rgba(201,168,76,0.14);
}
.shop-tab {
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.95rem 2rem;
  background: none; border: none;
  border-bottom: 2px solid transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s;
  margin-bottom: -1px;
}
.shop-tab.active, .shop-tab:hover { color: var(--gold); border-bottom-color: var(--gold); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

.storefront-cta {
  background: linear-gradient(135deg, var(--card-bg), rgba(42,22,104,0.35));
  border: 1px solid rgba(201,168,76,0.18);
  padding: 3rem;
  text-align: center;
  margin-bottom: 3rem;
}
.storefront-cta h3 { color: var(--cream); margin-bottom: 0.75rem; }
.storefront-cta p { color: var(--text-muted); max-width: 480px; margin: 0 auto 2rem; }

.fav-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ─── WORK WITH ME ─── */
.stats-band {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--deep-space), var(--nebula-dark));
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat h3 { font-size: 2.4rem; color: var(--gold-bright); margin-bottom: 0.2rem; }
.stat p { font-size: 0.72rem; color: var(--text-muted); letter-spacing: 0.12em; font-family: 'Cinzel', serif; text-transform: uppercase; }

.wtm-body { padding: 5rem 0; background: rgba(10,8,24,0.9); }
.wtm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; }
.wtm-col h3 { color: var(--cream); margin-bottom: 1.5rem; }
.wtm-col p { color: var(--parchment); margin-bottom: 1.25rem; opacity: 0.9; }

.niche-tags { display: flex; flex-wrap: wrap; gap: 0.65rem; margin-bottom: 2rem; }
.niche-tag {
  padding: 0.45rem 1.1rem;
  border: 1px solid rgba(201,168,76,0.22);
  font-size: 0.78rem;
  color: var(--parchment);
}

.collab-list { display: flex; flex-direction: column; gap: 1rem; }
.collab-item {
  background: var(--card-bg);
  border: 1px solid rgba(201,168,76,0.1);
  padding: 1.25rem 1.5rem;
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  transition: border-color 0.3s;
}
.collab-item:hover { border-color: rgba(201,168,76,0.28); }
.collab-icon { font-size: 1.35rem; opacity: 0.65; flex-shrink: 0; }
.collab-item h4 {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 0.35rem;
}
.collab-item p { font-size: 0.83rem; color: var(--text-muted); margin: 0; }

.media-kit-cta {
  background: linear-gradient(135deg, var(--deep-space), var(--nebula-dark));
  border: 1px solid rgba(201,168,76,0.18);
  padding: 3rem;
  text-align: center;
  margin-top: 3rem;
}
.media-kit-cta h3 { color: var(--cream); margin-bottom: 0.75rem; }
.media-kit-cta p { color: var(--text-muted); margin-bottom: 2rem; }

/* ─── CONTACT FORM ─── */
.contact-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, rgba(10,8,24,0.9) 0%, rgba(17,13,45,0.9) 100%);
  border-top: 1px solid rgba(201,168,76,0.1);
}
.form-wrap { max-width: 620px; margin: 0 auto; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.95rem 1.2rem;
  background: rgba(8, 6, 20, 0.85);
  border: 1px solid rgba(201,168,76,0.18);
  color: var(--cream);
  font-family: 'Lora', serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s;
  appearance: none;
  border-radius: 0;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: rgba(201,168,76,0.48); }
.form-group textarea { min-height: 160px; resize: vertical; }
.form-group select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23c9a84c' opacity='0.6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; }

/* ─── FOOTER ─── */
.site-footer {
  background: var(--void);
  padding: 4.5rem 0 2rem;
  border-top: 1px solid rgba(201,168,76,0.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand h3 { font-family: 'Cinzel', serif; font-size: 1.1rem; color: var(--gold-bright); margin-bottom: 0.4rem; }
.footer-tagline { font-family: 'Cormorant Garamond', serif; font-style: italic; color: var(--text-muted); font-size: 0.85rem; display: block; margin-bottom: 1.1rem; }
.footer-brand p { font-size: 0.84rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  width: 34px; height: 34px;
  border: 1px solid rgba(201,168,76,0.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 0.75rem;
  transition: all 0.3s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.07); }
.footer-col h4 {
  font-family: 'Cinzel', serif;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.55rem; }
.footer-col ul li a { font-size: 0.84rem; color: var(--text-muted); }
.footer-col ul li a:hover { color: var(--cream); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.04);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom a { color: var(--text-muted); }

/* ─── SCROLL REVEAL ─── */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .posts-grid, .fav-grid { grid-template-columns: repeat(2, 1fr); }
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-image-wrap { max-width: 340px; }
  .wtm-grid { grid-template-columns: 1fr; gap: 3.5rem; }
}

@media (max-width: 768px) {
  .nav-links, .nav-social { display: none; }
  .hamburger { display: block; }
  .posts-grid, .blog-posts-grid { grid-template-columns: 1fr; }
  .blog-main-grid { grid-template-columns: 1fr; }
  .nl-form { flex-direction: column; }
  .nl-form input[type="email"] { border-right: 1px solid rgba(201,168,76,0.28); border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-deco { display: none; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 540px) {
  .shop-grid, .fav-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .shop-tabs { overflow-x: auto; }
}
