/* =========================================================================
   Rayu by Tatiwalas Gehna — LIGHT THEME Design System
   Light ivory/cream grounds · gold-gradient CTAs · warm-brown ink (no green)
   Logo-matched. Type: Cormorant Garamond (display) + Jost (sans)
   ========================================================================= */

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

:root {
  /* Light grounds */
  --paper:      #fbf8f2;   /* main background */
  --paper-2:    #f4ecdc;   /* alt section band (warm cream) */
  --paper-3:    #eee2ca;   /* deeper gold-cream */
  --card:       #ffffff;

  /* Dark accent = logo's deep warm brown (NO green anywhere) */
  --emerald:    #5a3f1c;   /* warm brown ink for headings */
  --emerald-d:  #3a2810;   /* deep espresso-brown band */
  --ink:        #2f2a20;   /* body text */
  --ink-soft:   #6a5c42;   /* secondary text */

  /* Gold (the brand accent, matched to logo) */
  --gold:       #c79a4b;
  --gold-soft:  #e0c184;
  --gold-deep:  #a9812f;
  --gold-line:  rgba(199,154,75,0.34);
  --gold-line-soft: rgba(199,154,75,0.2);
  --gold-grad:  linear-gradient(120deg, #8a6023 0%, #c79a4b 34%, #eccd8a 52%, #c79a4b 70%, #7c561f 100%);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Jost', system-ui, sans-serif;

  --wrap: 1240px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  /* gold-tinted shadow (never green) */
  --shadow: 0 24px 60px -30px rgba(138,96,35,0.4);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.75;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}
body.nav-lock { overflow: hidden; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap { width: min(100% - 3rem, var(--wrap)); margin-inline: auto; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0.004em;
  color: var(--emerald);
  margin: 0;
}

.eyebrow {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 1.1rem;
  display: inline-flex; align-items: center; gap: 0.7rem;
}
.eyebrow::before { content: ''; width: 26px; height: 1px; background: var(--gold); }

.script { font-style: italic; color: var(--gold-deep); }
.gold-text { background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

.lede {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.9rem);
  line-height: 1.45; font-weight: 400;
  color: var(--ink-soft); max-width: 44ch;
}

/* motif helpers */
.motif-div { display: block; width: 300px; max-width: 70%; height: 40px; margin: 0 0 1.6rem;
  background: url('../img/motif-divider.svg') left center/contain no-repeat; }
.motif-div.center { margin-inline: auto; background-position: center; }
.sprig { width: 64px; height: 96px; background: url('../img/motif-sprig.svg') center/contain no-repeat; }

/* ------------------------------------------------------------- Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-sans); font-size: 0.76rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 1rem 2.1rem; border-radius: 0; cursor: pointer; border: 1px solid transparent;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.4s var(--ease), color 0.4s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

/* Gold CTA (primary) */
.btn-gold { background: var(--gold-grad); color: #3a2c0e; box-shadow: 0 10px 26px -12px rgba(169,129,47,0.7); }
.btn-gold:hover { box-shadow: 0 16px 34px -12px rgba(169,129,47,0.9); transform: translateY(-2px); }

/* Emerald outline (secondary) */
.btn-outline { background: transparent; color: var(--emerald); border-color: var(--gold); }
.btn-outline:hover { background: var(--emerald); color: var(--paper); border-color: var(--emerald); }

/* Light outline for use over images */
.btn-light { background: rgba(255,255,255,0.1); color: #fff; border-color: rgba(255,255,255,0.6); backdrop-filter: blur(4px); }
.btn-light:hover { background: #fff; color: var(--emerald); border-color: #fff; }

/* ------------------------------------------------------------- Header */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem clamp(1.25rem, 4vw, 3rem);
  transition: background 0.5s var(--ease), box-shadow 0.5s var(--ease), padding 0.5s var(--ease);
}
/* scrim behind transparent header so logo + nav stay legible over any hero */
.site-header::before {
  content: ''; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: linear-gradient(to bottom, rgba(48,32,14,0.72), rgba(48,32,14,0.12) 70%, rgba(48,32,14,0));
  opacity: 1; transition: opacity 0.5s var(--ease);
}
.site-header.scrolled::before, .site-header.on-light::before { opacity: 0; }
/* transparent over hero, becomes cream on scroll */
.site-header.scrolled, .site-header.on-light {
  background: rgba(251,248,242,0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--gold-line-soft);
  padding-block: 0.55rem;
}
.brand { display: flex; align-items: center; z-index: 2; }
.brand .logo-badge { display: inline-flex; background: var(--paper); padding: 8px 14px; border-radius: 10px; box-shadow: 0 6px 20px -10px rgba(0,0,0,0.45); transition: padding 0.4s var(--ease); }
.brand img { display: block; width: 84px; height: auto; transition: width 0.4s; }
.site-header.scrolled .brand .logo-badge { padding: 6px 12px; }

/* nav links: light (ivory) when transparent over hero, emerald once scrolled/on-light */
.nav { display: flex; align-items: center; gap: 2rem; }
.nav > a, .nav .has-drop > a {
  font-size: 0.74rem; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 400;
  color: #fff; position: relative; padding-block: 0.4rem; transition: color 0.3s;
  text-shadow: 0 1px 8px rgba(0,0,0,0.35);
}
.site-header.scrolled .nav > a, .site-header.scrolled .nav .has-drop > a,
.site-header.on-light .nav > a, .site-header.on-light .nav .has-drop > a { color: var(--emerald); text-shadow: none; }
.nav a::after { content: ''; position: absolute; left: 0; bottom: 0; height: 1px; width: 0; background: var(--gold); transition: width 0.35s var(--ease); }
.nav a:hover::after, .nav a.active::after { width: 100%; }
.nav a:hover { color: var(--gold-soft); }
.site-header.scrolled .nav a:hover, .site-header.on-light .nav a:hover { color: var(--gold-deep); }

/* dropdown */
.has-drop { position: relative; }
.drop {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px);
  background: var(--card); border: 1px solid var(--gold-line); min-width: 210px; padding: 0.5rem 0;
  opacity: 0; visibility: hidden; box-shadow: var(--shadow);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.has-drop:hover .drop { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(4px); }
.drop a { display: block; padding: 0.55rem 1.4rem; color: var(--ink-soft); letter-spacing: 0.12em; font-size: 0.82rem; text-transform: uppercase; }
.drop a::after { display: none; }
.drop a:hover { background: var(--paper-2); color: var(--gold-deep); }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; z-index: 2; padding: 0.4rem; }
.nav-toggle span { display: block; width: 26px; height: 1.5px; background: #fff; margin: 5px 0; transition: 0.3s; box-shadow: 0 1px 4px rgba(0,0,0,0.3); }
.site-header.scrolled .nav-toggle span, .site-header.on-light .nav-toggle span { background: var(--emerald); box-shadow: none; }

/* ------------------------------------------------------------- Sections */
section { position: relative; }
.pad { padding-block: clamp(4.5rem, 10vw, 8rem); }
.band-2 { background: var(--paper-2); }
.band-3 { background: var(--paper-3); }

.section-head { max-width: 640px; margin-bottom: 3rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(2.2rem, 5vw, 3.6rem); }

/* emerald feature band (used sparingly for contrast) */
.on-emerald { background: var(--emerald-d); color: var(--paper); }
.on-emerald h2, .on-emerald h3 { color: var(--paper); }
.on-emerald .eyebrow { color: var(--gold-soft); }
.on-emerald p, .on-emerald .lede { color: rgba(246,241,231,0.8); }
.on-emerald .motif-div { filter: brightness(1.5); }

/* reveal */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ------------------------------------------------------------- Home hero */
.hero-home { min-height: 100dvh; display: flex; align-items: center; position: relative; overflow: hidden; color: #fff; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 22%; z-index: 0; transform: scale(1.05); animation: heroZoom 16s ease-out forwards; }
@keyframes heroZoom { to { transform: scale(1); } }
.hero-home::before { content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(100deg, rgba(48,32,12,0.82) 0%, rgba(48,32,12,0.5) 46%, rgba(48,32,12,0.15) 100%); }
.hero-home::after { content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(0deg, rgba(48,32,12,0.6), transparent 40%); }
.hero-inner { position: relative; z-index: 2; padding-top: 4rem; max-width: 760px; }
.hero-eyebrow { font-size: 0.72rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 1.5rem; }
.hero-home h1 { font-size: clamp(3rem, 8.5vw, 6.6rem); line-height: 0.98; color: #fff; margin-bottom: 1.6rem; text-shadow: 0 2px 40px rgba(0,0,0,0.35); }
.hero-home .script { color: var(--gold-soft); }
.hero-sub { font-size: clamp(1.02rem, 1.8vw, 1.24rem); font-weight: 300; color: rgba(255,255,255,0.9); max-width: 46ch; margin-bottom: 2.2rem; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-scroll { position: absolute; bottom: 1.8rem; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; gap: 5px; }
.hero-scroll span { width: 2px; height: 32px; background: linear-gradient(var(--gold-soft), transparent); opacity: 0.55; animation: scrollPulse 2s ease-in-out infinite; }
.hero-scroll span:nth-child(2){animation-delay:.3s} .hero-scroll span:nth-child(3){animation-delay:.6s}
@keyframes scrollPulse { 0%,100%{transform:scaleY(.5);opacity:.3} 50%{transform:scaleY(1);opacity:.75} }

/* ------------------------------------------------------------- Interior page hero */
.page-hero { min-height: 62vh; display: flex; align-items: flex-end; padding-bottom: 3.5rem; color: #fff; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(48,32,12,0.5) 0%, rgba(48,32,12,0.28) 40%, rgba(48,32,12,0.82) 100%); }
.page-hero .bg { position: absolute; inset: 0; object-fit: cover; width: 100%; height: 100%; z-index: 0; }
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(2.6rem, 7vw, 5rem); color: #fff; }
.page-hero .crumb { font-size: 0.72rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 1rem; }
.page-hero .sub { font-size: 1.1rem; color: rgba(255,255,255,0.85); margin-top: 0.8rem; max-width: 48ch; }

/* legal / simple page heading (no image) */
.page-head-simple { padding-top: 8.5rem; padding-bottom: 2rem; }
.page-head-simple h1 { font-size: clamp(2.4rem, 6vw, 4rem); }

/* ------------------------------------------------------------- Split feature */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; box-shadow: var(--shadow); }
.split-media .frame { position: absolute; inset: -14px -14px auto auto; width: 72%; height: 72%; border: 1px solid var(--gold-line); z-index: -1; }
.split-media .corner { position: absolute; width: 84px; height: 84px; background: url('../img/motif-corner.svg') center/contain no-repeat; }
.split-media .corner.tl { top: -18px; left: -18px; }
.split-media .corner.br { bottom: -18px; right: -18px; transform: rotate(180deg); }

/* ------------------------------------------------------------- Collections grid */
.collection-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.col-card { position: relative; overflow: hidden; aspect-ratio: 3/4; display: flex; align-items: flex-end; color: #fff; }
.col-card img { position: absolute; inset: 0; height: 100%; width: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.col-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 32%, rgba(48,32,12,0.9) 100%); transition: background 0.5s; }
.col-card:hover img { transform: scale(1.06); }
.col-card .cc-body { position: relative; z-index: 2; padding: 1.7rem; }
.col-card h3 { font-size: 1.85rem; letter-spacing: 0.06em; color: #fff; margin-bottom: 0.25rem; }
.col-card p { font-size: 0.84rem; color: rgba(255,255,255,0.85); font-weight: 300; }
.col-card .cc-arrow { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-soft); margin-top: 0.7rem; opacity: 0; transform: translateY(8px); transition: 0.4s var(--ease); }
.col-card:hover .cc-arrow { opacity: 1; transform: none; }

/* ------------------------------------------------------------- Stats */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; text-align: center; }
.stat .num { font-family: var(--font-display); font-size: clamp(2.6rem, 6vw, 4rem); line-height: 1; }
.on-emerald .stat .num { color: var(--gold-soft); }
.stat .num { color: var(--gold-deep); }
.stat .lbl { font-size: 0.72rem; letter-spacing: 0.24em; text-transform: uppercase; margin-top: 0.7rem; color: var(--ink-soft); }
.on-emerald .stat .lbl { color: rgba(246,241,231,0.72); }

/* ------------------------------------------------------------- Testimonials */
.tcarousel { overflow-x: auto; scrollbar-width: none; }
.tcarousel::-webkit-scrollbar { display: none; }
.ttrack { display: flex; gap: 1.4rem; }
.tcard { flex: 0 0 clamp(300px, 40vw, 440px); background: var(--card); border: 1px solid var(--gold-line-soft); padding: 2.4rem 2.2rem; box-shadow: 0 20px 50px -34px rgba(138,96,35,0.4); }
.tcard .stars { color: var(--gold); letter-spacing: 0.2em; margin-bottom: 1rem; }
.tcard .quote { font-family: var(--font-display); font-size: 1.28rem; line-height: 1.5; margin-bottom: 1.4rem; color: var(--ink); }
.tcard .who { display: flex; align-items: center; gap: 0.9rem; }
.tcard .who img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; border: 1px solid var(--gold-line); }
.tcard .who span { font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-deep); }
.t-nav { width: 46px; height: 46px; border: 1px solid var(--gold-line); background: transparent; color: var(--gold-deep); font-size: 1rem; cursor: pointer; border-radius: 50%; transition: background 0.3s, color 0.3s; }
.t-nav:hover { background: var(--gold-grad); color: #3a2c0e; border-color: transparent; }

/* ------------------------------------------------------------- Video stories */
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2.5vw, 1.8rem); }
.video-card { margin: 0; position: relative; overflow: hidden; border: 1px solid var(--gold-line-soft); background: #000; box-shadow: 0 20px 50px -34px rgba(138,96,35,0.4); }
.video-card video { display: block; width: 100%; aspect-ratio: 9 / 16; object-fit: cover; background: #000; }
@media (max-width: 860px) {
  .video-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
}

/* ------------------------------------------------------------- FAQ */
.faq-list { max-width: 820px; margin-inline: auto; }
.faq { border-bottom: 1px solid var(--gold-line-soft); }
.faq summary { list-style: none; cursor: pointer; display: flex; align-items: flex-start; justify-content: space-between; gap: 1.2rem; padding: 1.4rem 0; font-family: var(--font-display); font-size: clamp(1.1rem, 2vw, 1.35rem); color: var(--ink); transition: color 0.3s; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--gold-deep); }
.faq summary::after { content: '+'; flex: 0 0 auto; font-family: var(--font-sans); font-size: 1.5rem; line-height: 1; color: var(--gold-deep); transition: transform 0.35s ease; }
.faq[open] summary::after { content: '\2212'; }
.faq-a { overflow: hidden; padding: 0 0 1.5rem; }
.faq-a p { color: var(--ink-soft); max-width: 68ch; margin: 0; line-height: 1.7; }
.faq[open] summary { color: var(--gold-deep); }
.faq[open] .faq-a { animation: faqIn 0.4s ease; }
@keyframes faqIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* ------------------------------------------------------------- Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); }
.field { margin-bottom: 1.4rem; }
.field label { display: block; font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 0.5rem; color: var(--ink-soft); }
.field input, .field textarea { width: 100%; padding: 0.9rem 1rem; font-family: var(--font-sans); font-size: 0.95rem; background: var(--card); border: 1px solid var(--gold-line); color: var(--ink); border-radius: 0; transition: border-color 0.3s; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
.field input::placeholder, .field textarea::placeholder { color: rgba(90,85,69,0.5); }
.contact-line { display: flex; gap: 1rem; align-items: flex-start; padding: 1.2rem 0; border-bottom: 1px solid var(--gold-line-soft); }
.contact-line .k { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-deep); min-width: 96px; padding-top: 4px; }
.contact-line .v { font-size: 1.05rem; color: var(--ink); }
.contact-line a.v:hover { color: var(--gold-deep); }
.form-note { font-size: 0.85rem; color: var(--gold-deep); margin-top: 1rem; }

/* contact rows placed on a dark (on-emerald) band */
.on-emerald .contact-line { border-color: rgba(224,193,132,0.28); }
.on-emerald .contact-line .k { color: var(--gold-soft); }
.on-emerald .contact-line .v { color: var(--paper); }
.on-emerald .contact-line a.v:hover { color: var(--gold-soft); }

/* ------------------------------------------------------------- Prose */
.prose { max-width: 68ch; }
.prose p { margin: 0 0 1.4rem; color: var(--ink-soft); font-size: 1.05rem; }
.prose h3 { font-size: 1.85rem; margin: 2.6rem 0 1rem; }
.prose ul { padding-left: 1.2rem; color: var(--ink-soft); }
.prose li { margin-bottom: 0.5rem; }

/* ------------------------------------------------------------- Timeline */
.timeline { max-width: 760px; margin-inline: auto; position: relative; }
.timeline::before { content: ''; position: absolute; left: 0; top: 8px; bottom: 8px; width: 1px; background: var(--gold-line); }
.tl-item { position: relative; padding: 0 0 3rem 3rem; }
.tl-item::before { content: ''; position: absolute; left: -5px; top: 6px; width: 11px; height: 11px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(199,154,75,0.18); }
.tl-item .yr { font-family: var(--font-display); font-size: 1.55rem; color: var(--gold-deep); margin-bottom: 0.4rem; }
.tl-item h3 { font-size: 1.5rem; margin-bottom: 0.6rem; }
.tl-item p { color: var(--ink-soft); }
.tl-media { margin-top: 1.2rem; position: relative; overflow: hidden; border: 1px solid var(--gold-line-soft); box-shadow: var(--shadow); background: var(--paper-2); text-align: center; }
.tl-media img { display: block; width: 100%; height: auto; max-height: 560px; object-fit: contain; margin-inline: auto; transition: transform .8s ease; }
.tl-media:hover img { transform: scale(1.02); }

/* ------------------------------------------------------------- Steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.8rem; }
.step { border-top: 1px solid var(--gold-line); padding-top: 1.4rem; }
.step .n { font-family: var(--font-display); font-size: 1.2rem; color: var(--gold-deep); letter-spacing: 0.1em; }
.step h4 { font-size: 1.35rem; margin: 0.6rem 0 0.7rem; }
.step p { font-size: 0.92rem; color: var(--ink-soft); }
.on-emerald .step { border-color: rgba(199,154,75,0.4); }
.on-emerald .step h4 { color: var(--paper); }
.on-emerald .step p { color: rgba(246,241,231,0.72); }

/* ------------------------------------------------------------- Store hours */
.hours-list { list-style: none; padding: 0; margin: 0; }
.hours-list li { display: flex; justify-content: space-between; padding: 0.75rem 0; border-bottom: 1px solid var(--gold-line-soft); font-size: 0.98rem; color: var(--ink); }
.hours-list li span:last-child { color: var(--gold-deep); }
.info-card { background: var(--card); border: 1px solid var(--gold-line-soft); padding: 2.2rem; box-shadow: var(--shadow); }
/* info-card is a light surface: keep its text dark even inside a dark band */
.on-emerald .info-card h3, .info-card h3 { color: var(--emerald); }
.on-emerald .info-card p, .info-card p { color: var(--ink-soft); }
.on-emerald .info-card .hours-list li { color: var(--ink); }

/* ------------------------------------------------------------- Gallery tiles */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.gtile { position: relative; overflow: hidden; aspect-ratio: 3/4; }
.gtile img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.gtile:hover img { transform: scale(1.05); }
.gtile .cap { position: absolute; left: 0; bottom: 0; right: 0; padding: 1.3rem 1.2rem 1rem; color: #fff; font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase; background: linear-gradient(transparent, rgba(48,32,12,0.85)); }

/* ------------------------------------------------------------- CTA band */
.cta-band { text-align: center; position: relative; }
.cta-band h2 { font-size: clamp(2.2rem, 5.5vw, 4rem); margin-bottom: 1.2rem; }
.cta-band .lede { margin-inline: auto; text-align: center; margin-bottom: 2rem; }
.cta-band .btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* other-collections row */
.other-cols { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.other-cols a { border: 1px solid var(--gold-line); padding: 0.6rem 1.4rem; font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--emerald); transition: 0.3s; }
.other-cols a:hover { background: var(--emerald); color: var(--paper); border-color: var(--emerald); }

/* ------------------------------------------------------------- Footer */
.site-footer { background: var(--emerald-d); color: rgba(246,241,231,0.82); padding-block: 4.2rem 2rem; position: relative; }
.footer-skyline { position: absolute; inset: 0 0 auto 0; height: 90px; width: 100%; object-fit: cover; opacity: 0.14; z-index: 0; }
.site-footer .wrap { position: relative; z-index: 1; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2.4rem; }
.site-footer h4 { font-family: var(--font-sans); font-size: 0.72rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 1.3rem; font-weight: 500; }
.site-footer a { display: block; color: rgba(246,241,231,0.7); padding: 0.34rem 0; font-size: 0.92rem; transition: color 0.3s, padding-left 0.3s; }
.site-footer a:hover { color: var(--gold-soft); padding-left: 6px; }
.footer-brand .logo-badge { display: inline-block; background: var(--paper); padding: 14px 20px; border-radius: 12px; border: 1px solid var(--gold-line-soft); box-shadow: 0 18px 40px -22px rgba(0,0,0,0.55); margin-bottom: 1.3rem; }
.footer-brand .logo-badge img { display: block; width: 132px; margin: 0; }
.footer-brand p { color: rgba(246,241,231,0.6); font-size: 0.92rem; max-width: 34ch; }
.footer-social { display: flex; gap: 0.8rem; margin-top: 1.2rem; }
.footer-social a { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid rgba(199,154,75,0.4); border-radius: 50%; padding: 0; }
.footer-social a:hover { background: var(--gold-grad); border-color: transparent; padding-left: 0; }
.footer-social a:hover svg { fill: #3a2c0e; }
.footer-social svg { width: 18px; height: 18px; fill: var(--gold-soft); transition: fill 0.3s; }
.footer-bottom { border-top: 1px solid rgba(199,154,75,0.16); margin-top: 3rem; padding-top: 1.5rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: 0.82rem; color: rgba(246,241,231,0.5); }

/* ------------------------------------------------------------- Responsive */
@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .collection-grid, .gallery { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 780px) {
  .nav { position: fixed; inset: 0 0 0 auto; width: min(82vw, 340px); flex-direction: column; align-items: flex-start; justify-content: center; gap: 1.4rem; background: var(--emerald-d); padding: 2rem 2.4rem; transform: translateX(100%); transition: transform 0.5s var(--ease); }
  .nav.open { transform: none; }
  .nav > a, .nav .has-drop > a { color: #fff !important; text-shadow: none; font-size: 0.9rem; }
  .has-drop .drop { position: static; opacity: 1; visibility: visible; transform: none; background: transparent; border: 0; padding: 0.3rem 0 0 1rem; min-width: 0; box-shadow: none; }
  .drop a { color: rgba(246,241,231,0.7); }
  .nav-toggle { display: block; }
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .split-media .frame { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; gap: 2.2rem; }
  .steps { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .collection-grid, .gallery { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .col-card img, .gtile img, .hero-bg { animation: none !important; transition: none; }
}
