/* ========================================
   COUTURE CAKES — Luxury Design System
   ======================================== */

/* ---------- Reset & Root ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --dark:       #0c0806;
  --dark-2:     #160f0a;
  --dark-3:     #2a1810;
  --gold:       #c9a96e;
  --gold-lt:    #e8d5a3;
  --gold-dk:    #9e7c42;
  --cream:      #faf7f2;
  --cream-2:    #f3ede4;
  --blush:      #f0ddd8;
  --muted:      #8a7a6a;
  --text:       #1a0a00;
  --text-mid:   #4a3020;
  --ff-serif:   'Playfair Display', Georgia, serif;
  --ff-script:  'Cormorant Garamond', Georgia, serif;
  --ff-sans:    'Montserrat', system-ui, sans-serif;
  --ease:       cubic-bezier(.25,.46,.45,.94);
  --dur:        .45s;
  --pad:        clamp(64px, 10vw, 128px);
  --max:        1280px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--ff-sans);
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }

/* ---------- Custom Cursor ---------- */
.cursor, .cursor-follower {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  transition: opacity .3s;
}
.cursor {
  width: 8px; height: 8px;
  background: var(--gold);
}
.cursor-follower {
  width: 36px; height: 36px;
  border: 1px solid rgba(201,169,110,.5);
  transition: transform .15s var(--ease), opacity .3s;
}
body:hover .cursor, body:hover .cursor-follower { opacity: 1; }

/* ---------- Typography Utilities ---------- */
h1, h2, h3, h4 { font-family: var(--ff-serif); line-height: 1.12; }
em { font-family: var(--ff-script); font-style: italic; color: var(--gold); }

.section-title {
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -.5px;
}
.section-title.light { color: var(--cream); }

.section-sub {
  font-size: 15px;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.85;
}
.section-sub.light { color: rgba(250,247,242,.6); }

.body-text { font-size: 15px; color: var(--text-mid); line-height: 1.9; margin-bottom: 18px; }

.tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.tag::before {
  content: '';
  display: block;
  width: 22px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.tag.light { color: var(--gold-lt); }
.tag.light::before { background: var(--gold-lt); }

.section-header { text-align: center; margin-bottom: 72px; }
.section-header .tag { gap: 0; }
.section-header .tag::before { display: none; }

/* ---------- Container ---------- */
.container { max-width: var(--max); margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }

/* ---------- Section Backgrounds ---------- */
.section-light { padding: var(--pad) 0; background: var(--cream); }
.section-dark  { padding: var(--pad) 0; background: var(--dark); }
.section-mid   { padding: var(--pad) 0; background: var(--cream-2); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--ff-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 34px;
  border-radius: 2px;
  cursor: pointer;
  border: none;
  transition: all var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.08);
  opacity: 0;
  transition: opacity .3s;
}
.btn:hover::after { opacity: 1; }

.btn-gold  { background: var(--gold); color: var(--dark); }
.btn-gold:hover  { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(201,169,110,.45); }

.btn-ghost { background: transparent; color: var(--cream); border: 1px solid rgba(201,169,110,.55); }
.btn-ghost:hover { background: rgba(201,169,110,.12); border-color: var(--gold); transform: translateY(-2px); }

.btn-dark  { background: var(--dark); color: var(--gold); border: 1px solid var(--gold-dk); }
.btn-dark:hover  { background: var(--gold); color: var(--dark); transform: translateY(-2px); box-shadow: 0 12px 36px rgba(201,169,110,.35); }

.btn-lg { padding: 20px 60px; font-size: 12px; letter-spacing: 3px; }

.btn-submit {
  width: 100%;
  background: var(--dark);
  color: var(--gold);
  border: 1px solid var(--gold-dk);
  padding: 18px;
  font-family: var(--ff-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: all var(--dur) var(--ease);
}
.btn-submit:hover { background: var(--gold); color: var(--dark); }

/* ============================================================
   NAVIGATION
   ============================================================ */
/* Top location bar */
#topbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1001;
  background: var(--dark);
  border-bottom: 1px solid rgba(201,169,110,.2);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 5px 40px;
  height: 30px;
}
.topbar-location {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
}
.topbar-location svg {
  flex-shrink: 0;
  color: var(--gold);
}

#navbar {
  position: fixed; top: 30px; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: padding .5s var(--ease), background .5s var(--ease), box-shadow .5s;
}
#navbar.scrolled {
  background: rgba(12,8,6,.94);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  padding: 14px 0;
  box-shadow: 0 1px 0 rgba(201,169,110,.18);
}
.nav-container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(20px,4vw,48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--ff-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: .5px;
}
.nav-logo .logo-accent { color: var(--gold); margin-left: 5px; font-style: italic; }

.nav-links { display: flex; list-style: none; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(250,247,242,.78);
  text-decoration: none;
  transition: color var(--dur);
  position: relative;
}
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--dur) var(--ease);
}
.nav-links a:not(.nav-cta):hover { color: var(--gold); }
.nav-links a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
  background: var(--gold);
  color: var(--dark) !important;
  padding: 10px 22px;
  border-radius: 2px;
  transition: all var(--dur) var(--ease) !important;
}
.nav-cta:hover { background: var(--gold-lt) !important; transform: translateY(-1px); box-shadow: 0 6px 22px rgba(201,169,110,.3); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px; height: 1.5px;
  background: var(--cream);
  border-radius: 1px;
  transition: all .4s var(--ease);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed; inset: 0;
  background: var(--dark-2);
  z-index: 999;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.mobile-menu.open { display: flex; }
.mobile-menu.visible { opacity: 1; }
.mobile-close {
  position: absolute; top: 24px; right: 24px;
  background: none; border: none;
  color: rgba(250,247,242,.5);
  font-size: 22px; cursor: pointer;
  transition: color .3s;
}
.mobile-close:hover { color: var(--gold); }
.mobile-menu ul { list-style: none; text-align: center; }
.mobile-menu ul li { margin-bottom: 28px; }
.mobile-menu ul li a {
  font-family: var(--ff-serif);
  font-size: clamp(28px, 6vw, 44px);
  color: var(--cream);
  text-decoration: none;
  transition: color .3s;
  display: inline-block;
  transform: translateY(20px);
  opacity: 0;
  transition: color .3s, transform .4s var(--ease), opacity .4s;
}
.mobile-menu.visible ul li a { transform: translateY(0); opacity: 1; }
.mobile-menu ul li:nth-child(1) a { transition-delay: .05s; }
.mobile-menu ul li:nth-child(2) a { transition-delay: .1s;  }
.mobile-menu ul li:nth-child(3) a { transition-delay: .15s; }
.mobile-menu ul li:nth-child(4) a { transition-delay: .2s;  }
.mobile-menu ul li:nth-child(5) a { transition-delay: .25s; }
.mobile-menu ul li a:hover { color: var(--gold); }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  min-height: 100vh;
  background: radial-gradient(ellipse at 15% 60%, #1e0e30 0%, #0c0806 45%, #160806 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Particles */
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.particle {
  position: absolute;
  left: var(--x); top: var(--y);
  width: var(--s); height: var(--s);
  border-radius: 50%;
  background: var(--gold);
  opacity: .45;
  animation: floatUp 10s ease-in-out infinite;
  animation-delay: var(--d);
}
@keyframes floatUp {
  0%,100% { transform: translateY(0) scale(1); opacity: .35; }
  50%      { transform: translateY(-36px) scale(1.3); opacity: .75; }
}

/* Hero background cake silhouette */
.hero-cake-bg {
  position: absolute;
  right: 4%;
  bottom: 0;
  width: clamp(260px, 38vw, 520px);
  opacity: .55;
  pointer-events: none;
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(20px,4vw,48px);
  padding-top: 100px;
}

.hero-eyebrow {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp .8s var(--ease) .3s forwards;
}

.hero-title {
  display: flex;
  flex-direction: column;
  font-size: clamp(58px, 12vw, 148px);
  font-weight: 900;
  line-height: .9;
  margin-bottom: 28px;
  overflow: visible;
}
.title-word {
  color: var(--cream);
  display: block;
  opacity: 0;
  transform: translateY(60px);
  animation: slideUp .85s var(--ease) forwards;
}
.title-word:nth-child(1) { animation-delay: .42s; }
.title-word.accent { color: var(--gold); font-style: italic; animation-delay: .58s; }

.hero-tagline {
  font-family: var(--ff-script);
  font-size: clamp(18px, 2.8vw, 34px);
  color: rgba(250,247,242,.65);
  font-style: italic;
  margin-bottom: 18px;
  opacity: 0;
  animation: fadeUp .8s var(--ease) .72s forwards;
}
.hero-subtitle {
  font-size: 14px;
  font-weight: 300;
  color: rgba(250,247,242,.45);
  letter-spacing: .4px;
  line-height: 1.85;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp .8s var(--ease) .88s forwards;
}
.hero-btns {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .8s var(--ease) 1.04s forwards;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  z-index: 2;
  opacity: 0;
  animation: fadeUp .8s var(--ease) 1.5s forwards;
}
.hero-scroll span {
  font-size: 9px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: rgba(250,247,242,.35);
}
.scroll-bar {
  width: 1px; height: 56px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: pulse 2.2s ease infinite;
}
@keyframes pulse { 0%,100% { opacity: .4; } 50% { opacity: 1; } }

@keyframes fadeUp  { to { opacity: 1; transform: translateY(0); } }
@keyframes slideUp { to { opacity: 1; transform: translateY(0); } }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-wrap {
  background: var(--gold);
  padding: 16px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 38px;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
  }
.marquee-track span {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--dark);
  flex-shrink: 0;
}
.marquee-track .sep { color: var(--dark-3); font-size: 7px; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 90px);
  align-items: center;
}

/* Frame */
.about-frame {
  position: relative;
  background: linear-gradient(135deg, #f7f2ea 0%, #ede4d5 100%);
  border-radius: 4px;
  height: clamp(380px, 50vw, 520px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.frame-border {
  position: absolute; inset: 16px;
  border: 1px solid rgba(201,169,110,.3);
  border-radius: 2px;
  pointer-events: none;
}
.about-cake-svg {
  width: clamp(160px, 24vw, 260px);
  filter: drop-shadow(0 20px 48px rgba(0,0,0,.12));
}

/* Stats bar */
.about-stats {
  display: flex;
  gap: 0;
  margin-top: 20px;
  background: var(--dark);
  border-radius: 4px;
  overflow: hidden;
}
.stat {
  flex: 1;
  text-align: center;
  padding: 20px 16px;
  border-right: 1px solid rgba(201,169,110,.12);
  transition: background .3s;
}
.stat:last-child { border-right: none; }
.stat:hover { background: rgba(201,169,110,.06); }
.stat-num {
  display: block;
  font-family: var(--ff-serif);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 9.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(250,247,242,.42);
  margin-top: 6px;
}

/* About content */
.about-content { padding-left: 8px; }
.pull-quote {
  font-family: var(--ff-script);
  font-size: clamp(20px, 2.5vw, 28px);
  font-style: italic;
  color: var(--gold);
  border-left: 2px solid var(--gold);
  padding-left: 22px;
  margin: 26px 0 28px;
  line-height: 1.5;
}

/* ============================================================
   COLLECTIONS
   ============================================================ */
.collections-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.coll-card {
  background: var(--dark-2);
  border: 1px solid rgba(201,169,110,.12);
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color var(--dur), transform var(--dur) var(--ease), box-shadow var(--dur);
}
.coll-card:hover {
  border-color: rgba(201,169,110,.38);
  transform: translateY(-5px);
  box-shadow: 0 24px 64px rgba(0,0,0,.45);
}
.coll-card.featured {
  border-color: rgba(201,169,110,.22);
  background: var(--dark-3);
}

.coll-visual {
  height: 270px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.bridal-bg  { background: linear-gradient(145deg,#160f0a,#2d1810,#3d2018); }
.choc-bg    { background: linear-gradient(145deg,#0c0806,#2a0800,#160806); }
.floral-bg  { background: linear-gradient(145deg,#160a18,#2d1828,#3d2535); }
.geode-bg   { background: linear-gradient(145deg,#0c0820,#1a0d2e,#2d1848); }

.coll-svg {
  width: clamp(130px, 17vw, 175px);
  height: auto;
  filter: drop-shadow(0 24px 44px rgba(0,0,0,.55));
  transition: transform .55s var(--ease);
}
.coll-card:hover .coll-svg { transform: scale(1.06) translateY(-6px); }

/* Photo-based collection cards */
.coll-photo {
  padding: 0;
  background: var(--dark-2);
  overflow: hidden;
  height: 360px;
}
.coll-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform .65s var(--ease);
}
.coll-card:hover .coll-photo img {
  transform: scale(1.07);
}
/* Subtle gold shimmer on photo hover */
.coll-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 55%, rgba(12,8,6,.55) 100%);
  pointer-events: none;
  transition: opacity .45s;
}
.coll-card:hover .coll-photo::after {
  background: linear-gradient(to bottom, rgba(201,169,110,.06) 0%, rgba(12,8,6,.6) 100%);
}

.coll-info { padding: 26px 30px 30px; }
.coll-info h3 {
  font-family: var(--ff-serif);
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 8px;
}
.coll-info p { font-size: 13px; color: rgba(250,247,242,.48); margin-bottom: 14px; line-height: 1.65; }
.coll-tag {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dk);
}
.featured-badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--gold);
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 10px;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 290px 290px;
  gap: 14px;
}
.g-item {
  background: var(--bg);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform .5s var(--ease), box-shadow .5s;
}
.g-item:hover { transform: scale(1.02); box-shadow: 0 20px 56px rgba(0,0,0,.3); }
.g-item.tall  { grid-row: span 2; }
.g-item.wide  { grid-column: span 2; }

.g-overlay {
  position: absolute; inset: 0;
  background: rgba(12,8,6,0);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  transition: background .4s;
}
.g-overlay span {
  font-family: var(--ff-serif);
  font-size: clamp(16px, 2vw, 22px);
  font-style: italic;
  color: var(--cream);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .4s, transform .4s var(--ease);
  text-shadow: 0 2px 12px rgba(0,0,0,.6);
}
.g-item:hover .g-overlay { background: rgba(12,8,6,.42); }
.g-item:hover .g-overlay span { opacity: 1; transform: translateY(0); }
.g-item::before {
  content: '';
  position: absolute; inset: 0;
  border: 1px solid rgba(201,169,110,0);
  border-radius: 4px;
  transition: border-color .4s;
  z-index: 1;
  pointer-events: none;
}
.g-item:hover::before { border-color: rgba(201,169,110,.25); }

/* ============================================================
   PROCESS
   ============================================================ */
.process-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.proc-step {
  flex: 1;
  text-align: center;
  padding: 0 20px;
}
.proc-num {
  font-family: var(--ff-serif);
  font-size: clamp(48px, 7vw, 72px);
  font-weight: 900;
  color: rgba(201,169,110,.09);
  line-height: 1;
  margin-bottom: -18px;
}
.proc-icon { width: 68px; height: 68px; margin: 0 auto 18px; position: relative; z-index: 1; }
.proc-icon svg { width: 100%; height: 100%; }
.proc-step h3 {
  font-family: var(--ff-serif);
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}
.proc-step p { font-size: 13.5px; color: var(--muted); line-height: 1.8; }
.proc-connector {
  width: clamp(30px, 6vw, 80px);
  height: 1px;
  flex-shrink: 0;
  background: linear-gradient(to right, var(--gold), transparent);
  margin-top: 104px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testi-card {
  background: var(--dark-2);
  border: 1px solid rgba(201,169,110,.1);
  border-radius: 4px;
  padding: 34px;
  transition: border-color var(--dur), transform var(--dur) var(--ease);
}
.testi-card:hover { border-color: rgba(201,169,110,.28); transform: translateY(-4px); }
.testi-card.featured-testi {
  background: var(--dark-3);
  border-color: rgba(201,169,110,.2);
}
.stars {
  font-size: 15px;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 18px;
}
.testi-card blockquote {
  font-family: var(--ff-script);
  font-size: clamp(16px, 1.5vw, 19px);
  font-style: italic;
  color: rgba(250,247,242,.82);
  line-height: 1.75;
  margin-bottom: 26px;
  quotes: "\201C" "\201D";
}
.testi-card blockquote::before {
  content: open-quote;
  font-family: var(--ff-serif);
  font-size: 44px;
  color: var(--gold);
  line-height: 0;
  vertical-align: -.42em;
  margin-right: 5px;
}
.testi-author { display: flex; align-items: center; gap: 14px; }
.avatar {
  width: 42px; height: 42px;
  background: var(--gold);
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-serif);
  font-weight: 700;
  font-size: 17px;
  flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 12.5px; color: var(--cream); font-weight: 600; }
.testi-author span  { font-size: 10.5px; color: rgba(250,247,242,.38); letter-spacing: .3px; }

/* ============================================================
   CTA
   ============================================================ */
#cta {
  padding: clamp(80px, 14vw, 160px) 40px;
  background: linear-gradient(145deg, #160806 0%, var(--gold-dk) 50%, #160806 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
#cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,169,110,.22) 0%, transparent 65%);
}
.cta-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.cta-inner h2 { font-size: clamp(36px, 6vw, 72px); font-weight: 700; color: var(--cream); margin-bottom: 22px; }
.cta-inner p { font-size: 15px; color: rgba(250,247,242,.68); margin-bottom: 44px; line-height: 1.85; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(40px, 7vw, 88px);
  align-items: start;
}
.contact-info p { font-size: 15px; color: var(--muted); line-height: 1.9; margin-bottom: 38px; }
.contact-list { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.65;
}
.contact-list li svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }

/* Form */
.contact-form-wrap {
  background: var(--dark);
  padding: clamp(28px, 5vw, 50px);
  border-radius: 4px;
}
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field label {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}
.form-field input,
.form-field select,
.form-field textarea {
  background: rgba(250,247,242,.045);
  border: 1px solid rgba(201,169,110,.18);
  border-radius: 2px;
  padding: 13px 16px;
  color: var(--cream);
  font-family: var(--ff-sans);
  font-size: 13.5px;
  outline: none;
  transition: border-color .3s, background .3s;
  -webkit-appearance: none;
  appearance: none;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(250,247,242,.22); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold);
  background: rgba(250,247,242,.07);
}
.form-field select option { background: var(--dark); color: var(--cream); }
.form-field textarea { resize: vertical; min-height: 110px; }

.label-optional {
  font-size: 8.5px;
  letter-spacing: .08em;
  color: rgba(201,169,110,.45);
  font-weight: 400;
  text-transform: none;
}

/* File upload area */
.file-upload-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 22px 18px;
  border: 1px dashed rgba(201,169,110,.35);
  border-radius: 3px;
  background: rgba(250,247,242,.03);
  cursor: pointer;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
  text-align: center;
}
.file-upload-area:hover,
.file-upload-area:focus-within,
.file-upload-area.drag-over {
  border-color: var(--gold);
  background: rgba(250,247,242,.07);
}
.file-upload-area input[type="file"] {
  position: absolute;
  width: 1px; height: 1px;
  opacity: 0;
  pointer-events: none;
}
.upload-icon {
  width: 28px; height: 28px;
  color: var(--gold);
  opacity: .7;
}
.upload-text {
  font-size: 11px;
  color: var(--cream);
  opacity: .65;
  letter-spacing: .04em;
}
.upload-text u { color: var(--gold); text-decoration-color: var(--gold); opacity: 1; }
.upload-hint {
  font-size: 9px;
  letter-spacing: .08em;
  color: rgba(250,247,242,.3);
}
.upload-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 4px;
}
.upload-preview img {
  width: 52px; height: 52px;
  object-fit: cover;
  border-radius: 3px;
  border: 1px solid rgba(201,169,110,.35);
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer { background: var(--dark); border-top: 1px solid rgba(201,169,110,.12); }
.footer-top {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(48px,8vw,80px) clamp(20px,4vw,48px) clamp(40px,6vw,60px);
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: clamp(40px,7vw,88px);
}
.footer-logo {
  font-family: var(--ff-serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 10px;
}
.footer-logo .accent { color: var(--gold); margin-left: 7px; font-style: italic; }
.footer-tagline {
  font-family: var(--ff-script);
  font-size: 15px;
  font-style: italic;
  color: rgba(250,247,242,.35);
  margin-bottom: 28px;
}
.socials { display: flex; gap: 12px; }
.social {
  width: 38px; height: 38px;
  border: 1px solid rgba(201,169,110,.18);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(250,247,242,.42);
  text-decoration: none;
  transition: border-color .3s, color .3s, transform .3s;
}
.social:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.social svg { width: 15px; height: 15px; }

.footer-nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
.footer-col h4 {
  font-family: var(--ff-sans);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a {
  font-size: 13px;
  color: rgba(250,247,242,.38);
  text-decoration: none;
  transition: color .3s;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-col ul.plain li { font-size: 13px; color: rgba(250,247,242,.38); }

.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding: 22px clamp(20px,4vw,48px);
  border-top: 1px solid rgba(201,169,110,.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 11.5px; color: rgba(250,247,242,.22); }
.footer-legal { display: flex; gap: 22px; }
.footer-legal a { font-size: 11.5px; color: rgba(250,247,242,.22); text-decoration: none; transition: color .3s; }
.footer-legal a:hover { color: var(--gold); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity .85s var(--ease), transform .85s var(--ease);
}
.reveal       { transform: translateY(44px); }
.reveal-left  { transform: translateX(-44px); }
.reveal-right { transform: translateX(44px); }

.reveal.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .about-grid    { grid-template-columns: 1fr; gap: 44px; }
  .about-content { padding-left: 0; }
  .contact-grid  { grid-template-columns: 1fr; gap: 44px; }
  .footer-top    { grid-template-columns: 1fr; gap: 44px; }
}

@media (max-width: 900px) {
  .nav-links  { display: none; }
  .hamburger  { display: flex; }
  .marquee-track { -webkit-animation-duration: 12s; animation-duration: 12s; }

  .collections-grid { grid-template-columns: 1fr; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .g-item.tall  { grid-row: span 1; }
  .g-item.wide  { grid-column: span 2; }

  .testi-grid { grid-template-columns: 1fr; }

  .process-row   { flex-wrap: wrap; gap: 36px; justify-content: flex-start; }
  .proc-step     { flex: 0 0 calc(50% - 18px); }
  .proc-connector { display: none; }
}

@media (max-width: 640px) {
  .hero-cake-bg  { display: none; }
  .hero-scroll   { display: none; }
  .hero-btns     { flex-direction: column; align-items: flex-start; gap: 12px; }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .g-item.wide  { grid-column: span 1; }

  .form-row { grid-template-columns: 1fr; }
  .footer-nav { grid-template-columns: 1fr 1fr; }
  .proc-step  { flex: 0 0 100%; }

  .about-frame { height: 320px; }
}

@media (max-width: 400px) {
  .footer-nav { grid-template-columns: 1fr; }
}

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold-dk); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ============================================================
   SELECTION
   ============================================================ */
::selection { background: rgba(201,169,110,.3); color: var(--cream); }

/* ============================================================
   LIGHTBOX
   ============================================================ */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
#lightbox.open {
  display: flex;
}
#lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12,8,6,.92);
  backdrop-filter: blur(6px);
  animation: lb-fade-in .3s ease;
}
#lightbox-content {
  position: relative;
  z-index: 1;
  max-width: min(90vw, 780px);
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: lb-zoom-in .35s cubic-bezier(.25,.46,.45,.94);
}
#lightbox-img {
  display: block;
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 40px 120px rgba(0,0,0,.7), 0 0 0 1px rgba(201,169,110,.15);
}
#lightbox-close {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(201,169,110,.4);
  background: var(--dark-2);
  color: var(--gold);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, border-color .2s;
}
#lightbox-close:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.coll-photo { cursor: zoom-in; }

@keyframes lb-fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes lb-zoom-in { from { opacity: 0; transform: scale(.92); } to { opacity: 1; transform: scale(1); } }
