/* ==========================================================================
   Northlight Studio — Design tokens
   ========================================================================== */
:root {
  --ink: #0E0E10;
  --ink-soft: #17171B;
  --ink-softer: #202027;
  --cream: #FAF7F2;
  --cream-deep: #F1EAD9;
  --gold: #C9A227;
  --gold-soft: #E8CE8B;
  --aurora-1: #7C5CFF;
  --aurora-2: #34D0C0;
  --text: #1C1B1F;
  --text-muted: #6B6660;
  --text-inverse: #F5F2EC;
  --text-inverse-muted: rgba(245, 242, 236, 0.72);
  --border: rgba(28, 27, 31, 0.1);
  --border-light: rgba(245, 242, 236, 0.16);
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: 1180px;
  --radius-lg: 20px;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-soft: 0 24px 60px -24px rgba(14, 14, 16, 0.28);
  --shadow-card: 0 12px 30px -14px rgba(14, 14, 16, 0.22);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   Reset & base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }
ul, ol { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, blockquote, p, dl, figure { margin: 0; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--ink); color: var(--text-inverse);
  padding: 12px 20px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 760px; }

@media (min-width: 640px) { .container { padding: 0 40px; } }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 15px 30px; border-radius: 999px;
  font-weight: 600; font-size: 15px; text-decoration: none;
  border: 1.5px solid transparent; transition: transform var(--ease) 150ms, box-shadow var(--ease) 150ms, background var(--ease) 150ms, color var(--ease) 150ms, border-color var(--ease) 150ms;
  white-space: nowrap;
}
.btn-sm { padding: 10px 20px; font-size: 13.5px; }
.btn-block { width: 100%; }

.btn-primary {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #1A1404;
  box-shadow: 0 10px 26px -10px rgba(201, 162, 39, 0.55);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -10px rgba(201, 162, 39, 0.65); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-inverse);
  border-color: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.16); border-color: rgba(255, 255, 255, 0.55); }

.btn-outline-light {
  background: transparent;
  color: var(--text-inverse);
  border-color: rgba(245, 242, 236, 0.4);
}
.btn-outline-light:hover { background: var(--text-inverse); color: var(--ink); }

/* ==========================================================================
   Announcement bar
   ========================================================================== */
.announce {
  background: var(--ink);
  color: var(--gold-soft);
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 9px 16px;
}

/* ==========================================================================
   Header / Nav
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: transparent;
  transition: background var(--ease) 250ms, box-shadow var(--ease) 250ms, backdrop-filter var(--ease) 250ms;
}
.site-header.is-scrolled {
  background: rgba(250, 247, 242, 0.88);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(28, 27, 31, 0.08);
}

.nav {
  max-width: var(--container); margin: 0 auto; padding: 18px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
@media (min-width: 640px) { .nav { padding: 18px 40px; } }

.brand { display: flex; align-items: center; gap: 9px; text-decoration: none; }
.brand-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 10px;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #1A1404; font-size: 17px;
}
.brand-name {
  font-family: var(--font-display); font-weight: 600; font-size: 20px;
  color: var(--text); letter-spacing: -0.2px;
  transition: color var(--ease) 200ms;
}
.site-header:not(.is-scrolled) .brand-name { color: var(--text-inverse); }
.brand-name-accent { color: var(--gold); font-style: italic; }

.nav-toggle {
  display: flex; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 8px; z-index: 110;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px; border-radius: 2px;
  background: var(--text); transition: transform var(--ease) 200ms, opacity var(--ease) 200ms, background var(--ease) 200ms;
}
.site-header:not(.is-scrolled) .nav-toggle span { background: var(--text-inverse); }
.nav-menu.is-open ~ .nav-toggle span,
.nav-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-toggle.is-active span { background: var(--text) !important; }

.nav-links {
  display: flex; align-items: center; gap: 30px;
  font-size: 14.5px; font-weight: 500;
}
.nav-links a {
  text-decoration: none; color: var(--text); position: relative; padding: 4px 0;
  transition: color var(--ease) 200ms;
}
.site-header:not(.is-scrolled) .nav-links a { color: var(--text-inverse); }
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 1.5px;
  background: currentColor; transition: right var(--ease) 220ms;
}
.nav-links a:hover::after { right: 0; }

.nav-cta-group { display: flex; align-items: center; gap: 20px; }
.nav-phone {
  font-size: 14px; font-weight: 600; text-decoration: none; color: var(--text);
  transition: color var(--ease) 200ms;
}
.site-header:not(.is-scrolled) .nav-phone { color: var(--text-inverse); }

@media (max-width: 899px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed; inset: 0 0 0 auto; width: min(360px, 86vw); height: 100vh;
    background: var(--ink); padding: 100px 32px 40px;
    display: flex; flex-direction: column; gap: 40px;
    transform: translateX(100%); transition: transform var(--ease) 320ms;
    box-shadow: -20px 0 60px rgba(0,0,0,0.3);
  }
  .nav-menu.is-open { transform: translateX(0); }
  .nav-links { flex-direction: column; align-items: flex-start; gap: 22px; font-size: 20px; }
  .nav-links a, .site-header:not(.is-scrolled) .nav-links a { color: var(--text-inverse); }
  .nav-cta-group { flex-direction: column; align-items: flex-start; gap: 18px; }
  .nav-phone, .site-header:not(.is-scrolled) .nav-phone { color: var(--gold-soft); }
}
@media (min-width: 900px) {
  .nav-menu { display: flex; align-items: center; gap: 44px; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; overflow: hidden; margin-top: -76px;
  padding-top: 76px;
}
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.55) saturate(0.9); }
.hero-scrim {
  position: absolute; inset: 0;
  background:
    radial-gradient(65% 60% at 50% 44%, rgba(4,4,6,0.88) 0%, rgba(4,4,6,0.6) 55%, rgba(4,4,6,0.15) 100%),
    linear-gradient(180deg, rgba(4,4,6,0.72) 0%, rgba(4,4,6,0.55) 30%, rgba(4,4,6,0.6) 60%, rgba(4,4,6,0.88) 100%);
}
.hero-glow {
  position: absolute; inset: 0; z-index: -1; pointer-events: none; mix-blend-mode: soft-light; opacity: 0.6;
  background:
    radial-gradient(circle at 10% 12%, rgba(124,92,255,0.5), transparent 28%),
    radial-gradient(circle at 92% 88%, rgba(52,208,192,0.4), transparent 30%);
}

.hero-content {
  position: relative; z-index: 1; max-width: 780px; text-align: center;
  padding: 140px 24px 80px; color: var(--text-inverse);
}
@media (max-width: 640px) {
  .hero-content { padding-bottom: 140px; }
}
.eyebrow {
  font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--gold); margin-bottom: 16px;
}
.eyebrow-light { color: var(--gold-soft); text-shadow: 0 2px 10px rgba(0,0,0,0.5); }

.hero-title {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(40px, 7vw, 84px); line-height: 1.05; letter-spacing: -1px;
  margin-bottom: 24px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.55), 0 2px 8px rgba(0,0,0,0.5);
}
.hero-title em { font-style: italic; color: var(--gold-soft); }

.hero-sub {
  font-size: clamp(16px, 2vw, 19px); line-height: 1.7;
  color: var(--text-inverse-muted); max-width: 560px; margin: 0 auto 40px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.5);
}

.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 56px; }

.hero-stats {
  display: flex; justify-content: center; gap: clamp(24px, 6vw, 56px); flex-wrap: wrap;
}
.hero-stats dt { font-family: var(--font-display); font-size: 26px; font-weight: 600; color: var(--gold-soft); text-shadow: 0 2px 12px rgba(0,0,0,0.5); }
.hero-stats dd { margin: 2px 0 0; font-size: 12.5px; color: var(--text-inverse-muted); letter-spacing: 0.03em; text-shadow: 0 2px 12px rgba(0,0,0,0.5); }

.scroll-cue {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  width: 26px; height: 42px; border: 1.5px solid rgba(255,255,255,0.55); border-radius: 20px;
  z-index: 1;
}
.scroll-cue span {
  position: absolute; top: 8px; left: 50%; width: 4px; height: 4px; border-radius: 50%;
  background: var(--gold-soft); transform: translateX(-50%);
  animation: scrollCue 1.8s var(--ease) infinite;
}
@keyframes scrollCue { 0% { opacity: 1; top: 8px; } 70% { opacity: 0; top: 22px; } 100% { opacity: 0; top: 8px; } }

/* ==========================================================================
   Trust strip
   ========================================================================== */
.trust-strip { padding: 34px 24px; border-bottom: 1px solid var(--border); }
.trust-strip-label {
  text-align: center; font-size: 11.5px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 18px;
}
.trust-logos {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 20px 40px;
  font-family: var(--font-display); font-style: italic; font-weight: 600;
  color: var(--text-muted); font-size: 16px; opacity: 0.75;
}

/* ==========================================================================
   Sections (shared)
   ========================================================================== */
.section { padding: 96px 0; }
.section-dark { background: var(--ink); color: var(--text-inverse); }
.section-tint { background: var(--cream-deep); }

.section-title {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(30px, 4.4vw, 46px); letter-spacing: -0.6px;
  max-width: 640px; margin-bottom: 18px;
}
.section-title-light { color: var(--text-inverse); }
.section-sub {
  font-size: 17px; line-height: 1.7; color: var(--text-muted);
  max-width: 560px; margin-bottom: 56px;
}
.section-sub-light { color: var(--text-inverse-muted); }
.container > .eyebrow { display: block; }

/* ==========================================================================
   Services
   ========================================================================== */
.service-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 26px;
}
.service-card {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-card); transition: transform var(--ease) 250ms, box-shadow var(--ease) 250ms;
  border: 1px solid var(--border);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.service-card-media { aspect-ratio: 4 / 3; overflow: hidden; }
.service-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms var(--ease); }
.service-card:hover .service-card-media img { transform: scale(1.06); }
.service-card-body { padding: 26px 26px 30px; }
.service-card-body h3 { font-family: var(--font-display); font-size: 21px; font-weight: 600; margin-bottom: 10px; }
.service-card-body p { color: var(--text-muted); font-size: 14.5px; line-height: 1.65; margin-bottom: 16px; }
.price { font-weight: 700; color: var(--gold); font-size: 14px !important; letter-spacing: 0.02em; margin: 0 !important; }

/* ==========================================================================
   Portfolio / gallery
   ========================================================================== */
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.filter-btn {
  background: rgba(255,255,255,0.06); border: 1px solid var(--border-light);
  color: var(--text-inverse-muted); padding: 10px 20px; border-radius: 999px;
  font-size: 13.5px; font-weight: 600; transition: all var(--ease) 200ms;
}
.filter-btn:hover { background: rgba(255,255,255,0.12); color: var(--text-inverse); }
.filter-btn.is-active { background: var(--gold); border-color: var(--gold); color: #1A1404; }

.gallery {
  column-count: 1; column-gap: 16px;
}
@media (min-width: 560px) { .gallery { column-count: 2; } }
@media (min-width: 980px) { .gallery { column-count: 3; } }

.gallery-item {
  display: block; width: 100%; margin: 0 0 16px; padding: 0; border: none; background: none;
  border-radius: var(--radius); overflow: hidden; break-inside: avoid; position: relative;
  cursor: zoom-in;
}
.gallery-item img { width: 100%; height: auto; transition: transform 500ms var(--ease), filter 400ms var(--ease); }
.gallery-item::after {
  content: "＋"; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-size: 26px; color: #fff; background: rgba(9,9,11,0.35); opacity: 0; transition: opacity var(--ease) 220ms;
}
.gallery-item:hover::after, .gallery-item:focus-visible::after { opacity: 1; }
.gallery-item:hover img, .gallery-item:focus-visible img { transform: scale(1.05); }
.gallery-item.is-hidden { display: none; }

.portfolio-cta { text-align: center; margin-top: 48px; }

/* ==========================================================================
   Process
   ========================================================================== */
.process-list {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 32px;
  counter-reset: step;
}
.process-step { position: relative; padding-top: 8px; }
.process-num {
  display: block; font-family: var(--font-display); font-size: 44px; font-weight: 600;
  color: transparent; -webkit-text-stroke: 1.4px var(--gold); margin-bottom: 14px;
}
.process-step h3 { font-family: var(--font-display); font-size: 19px; font-weight: 600; margin-bottom: 10px; }
.process-step p { color: var(--text-muted); font-size: 14.5px; line-height: 1.65; }

/* ==========================================================================
   Perks
   ========================================================================== */
.perks-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 30px;
}
.perk { background: #fff; padding: 30px 26px; border-radius: var(--radius); border: 1px solid var(--border); }
.perk-icon { font-size: 26px; display: inline-block; margin-bottom: 14px; }
.perk h3 { font-family: var(--font-display); font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.perk p { color: var(--text-muted); font-size: 14.5px; line-height: 1.6; }

/* ==========================================================================
   About
   ========================================================================== */
.about-grid {
  display: grid; grid-template-columns: 1fr; gap: 56px; align-items: center;
}
@media (min-width: 860px) { .about-grid { grid-template-columns: 0.85fr 1fr; } }

.about-media { position: relative; }
.about-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); aspect-ratio: 4/5; object-fit: cover; }
.about-media-badge {
  position: absolute; bottom: -22px; left: -22px; background: var(--ink); color: var(--text-inverse);
  padding: 18px 22px; border-radius: var(--radius); text-align: center; box-shadow: var(--shadow-soft);
}
.about-media-badge strong { display: block; font-family: var(--font-display); font-size: 26px; color: var(--gold-soft); }
.about-media-badge span { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-inverse-muted); }

.about-copy p { color: var(--text-muted); font-size: 16px; line-height: 1.75; margin-bottom: 20px; }
.about-copy blockquote {
  font-family: var(--font-display); font-style: italic; font-size: 22px; line-height: 1.5;
  color: var(--text); border-left: 3px solid var(--gold); padding-left: 22px; margin: 28px 0;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonial-carousel { max-width: 720px; margin: 0 auto; text-align: center; }
.testimonial-track { position: relative; min-height: 220px; }
.testimonial {
  position: absolute; inset: 0; opacity: 0; transform: translateY(12px);
  transition: opacity 450ms var(--ease), transform 450ms var(--ease); pointer-events: none;
}
.testimonial.is-active { opacity: 1; transform: translateY(0); pointer-events: auto; position: relative; }
.stars { color: var(--gold-soft); font-size: 18px; letter-spacing: 3px; margin-bottom: 20px; }
.testimonial p {
  font-family: var(--font-display); font-size: clamp(19px, 2.6vw, 25px); font-style: italic;
  line-height: 1.55; margin-bottom: 22px; color: var(--text-inverse);
}
.testimonial cite { font-style: normal; font-size: 13.5px; color: var(--gold-soft); font-weight: 600; letter-spacing: 0.03em; }

.testimonial-dots { display: flex; justify-content: center; gap: 9px; margin-top: 28px; }
.testimonial-dots button {
  width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.25); border: none; padding: 0;
  transition: background var(--ease) 200ms, transform var(--ease) 200ms;
}
.testimonial-dots button.is-active { background: var(--gold); transform: scale(1.3); }

/* ==========================================================================
   FAQ / accordion
   ========================================================================== */
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  background: none; border: none; text-align: left; padding: 22px 4px;
  font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--text);
}
.accordion-icon {
  flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--gold);
  transition: transform var(--ease) 220ms, background var(--ease) 220ms;
}
.accordion-trigger[aria-expanded="true"] .accordion-icon { transform: rotate(45deg); background: var(--gold); color: #1A1404; }
.accordion-panel {
  max-height: 0; overflow: hidden; transition: max-height 320ms var(--ease), padding var(--ease) 220ms;
}
.accordion-panel p { padding: 0 4px 22px; color: var(--text-muted); font-size: 15px; line-height: 1.7; max-width: 640px; }

/* ==========================================================================
   CTA banner
   ========================================================================== */
.cta-banner { position: relative; overflow: hidden; }
.cta-banner-media { position: absolute; inset: 0; }
.cta-banner-media img { width: 100%; height: 100%; object-fit: cover; }
.cta-banner-content {
  position: relative; z-index: 1; padding: 110px 24px; text-align: center; color: var(--text-inverse);
}
.cta-banner-content h2 { font-family: var(--font-display); font-weight: 600; font-size: clamp(30px, 5vw, 50px); margin-bottom: 16px; }
.cta-banner-content p { font-size: 17px; color: var(--text-inverse-muted); max-width: 480px; margin: 0 auto 36px; }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 60px; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 0.8fr 1.1fr; } }

.contact-details { margin: 32px 0; display: flex; flex-direction: column; gap: 18px; }
.contact-details li { display: flex; gap: 14px; align-items: flex-start; font-size: 15px; line-height: 1.6; color: var(--text-muted); }
.contact-details a { text-decoration: none; color: var(--text); font-weight: 600; }
.contact-details em { font-style: normal; color: var(--text-muted); font-size: 12px; }
.contact-icon { font-size: 18px; margin-top: 2px; }

.social-row { display: flex; gap: 12px; }
.social-row a {
  width: 38px; height: 38px; border-radius: 50%; border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700;
  text-decoration: none; color: var(--text); transition: all var(--ease) 200ms;
}
.social-row a:hover { background: var(--gold); border-color: var(--gold); color: #1A1404; }

.contact-form {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 36px; box-shadow: var(--shadow-card);
}
.form-row { display: grid; grid-template-columns: 1fr; gap: 18px; margin-bottom: 18px; }
@media (min-width: 520px) { .form-row { grid-template-columns: 1fr 1fr; } }

.field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 7px; color: var(--text); }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border-radius: var(--radius-sm); border: 1.5px solid var(--border);
  font: inherit; font-size: 14.5px; color: var(--text); background: var(--cream);
  transition: border-color var(--ease) 180ms, box-shadow var(--ease) 180ms;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 4px rgba(201,162,39,0.15);
}
.field:not(:last-child) { margin-bottom: 0; }
.contact-form .field { margin-bottom: 18px; }

.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-note { font-size: 12.5px; color: var(--text-muted); line-height: 1.6; margin-bottom: 20px; }
.form-status { margin-top: 14px; font-size: 14px; font-weight: 600; min-height: 20px; }
.form-status.is-success { color: #1E7A44; }
.form-status.is-error { color: #C23434; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--ink); color: var(--text-inverse); padding-top: 80px; }
.footer-grid {
  display: grid; grid-template-columns: 1fr; gap: 44px; padding-bottom: 60px;
  border-bottom: 1px solid var(--border-light);
}
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.4fr repeat(3, 1fr); } }

.footer-brand p { color: var(--text-inverse-muted); font-size: 14.5px; line-height: 1.7; margin: 18px 0 22px; max-width: 320px; }
.footer-col h3 { font-family: var(--font-display); font-size: 15px; font-weight: 600; margin-bottom: 18px; color: var(--gold-soft); }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { text-decoration: none; color: var(--text-inverse-muted); font-size: 14.5px; transition: color var(--ease) 200ms; }
.footer-col a:hover { color: var(--text-inverse); }
.footer-col li { color: var(--text-inverse-muted); font-size: 14.5px; line-height: 1.6; }

.footer-bottom-inner {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px;
  padding: 26px 0; font-size: 12.5px; color: var(--text-inverse-muted);
}
.footer-placeholder-note { opacity: 0.65; }

/* ==========================================================================
   Sticky mobile CTA
   ========================================================================== */
.sticky-cta {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 90;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold)); color: #1A1404;
  text-align: center; padding: 15px; border-radius: 999px; text-decoration: none;
  font-weight: 700; font-size: 15px; box-shadow: 0 14px 34px -10px rgba(201,162,39,0.6);
  display: none;
}
@media (max-width: 640px) { .sticky-cta { display: block; } }

/* ==========================================================================
   Lightbox
   ========================================================================== */
.lightbox {
  position: fixed; inset: 0; z-index: 200; background: rgba(9,9,11,0.94);
  display: flex; align-items: center; justify-content: center; padding: 40px 20px;
}
.lightbox[hidden] { display: none; }
.lightbox-figure { max-width: 900px; max-height: 86vh; text-align: center; }
.lightbox-figure img { max-height: 78vh; width: auto; margin: 0 auto; border-radius: 8px; }
.lightbox-figure figcaption { color: var(--text-inverse-muted); margin-top: 16px; font-size: 14px; font-family: var(--font-display); font-style: italic; }
.lightbox-close, .lightbox-nav {
  position: absolute; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.2);
  color: #fff; border-radius: 50%; width: 46px; height: 46px; display: flex; align-items: center; justify-content: center;
  font-size: 18px; transition: background var(--ease) 200ms;
}
.lightbox-close:hover, .lightbox-nav:hover { background: rgba(255,255,255,0.2); }
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); font-size: 24px; }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); font-size: 24px; }
@media (max-width: 640px) {
  .lightbox-prev { left: 8px; } .lightbox-next { right: 8px; }
  .lightbox-close { top: 12px; right: 12px; }
}

/* ==========================================================================
   Scroll reveal
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 700ms var(--ease), transform 700ms var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
