
:root {
  --navy-deep:  #0b1829;
  --navy:       #132038;
  --navy-mid:   #1d2f52;
  --navy-lt:    #264070;
  --gold:       #c9a84c;
  --gold-lt:    #e8c97a;
  --gold-dk:    #9e7d2f;
  --cream:      #fdf6e3;
  --parchment:  #f5eed8;
  --charcoal:   #1a1612;
  --serif:   'Playfair Display', Georgia, serif;
  --sans:    'Montserrat', sans-serif;
  --button: 'Poppins', sans-serif;
}
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html:focus-within { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--navy-deep);
  color: var(--cream);
  overflow-x: hidden;
}

/* ─── ADA / ACCESSIBILITY ─── */
.skip-nav {
  position: absolute; top: -100px; left: 16px; z-index: 9999;
  background: var(--gold); color: var(--navy-deep);
  font-family: var(--button); font-size: 13px; font-weight: 600;
  padding: 12px 20px; text-decoration: none;
  transition: top 0.2s;
}
.skip-nav:focus { top: 16px; }

/* Focus rings, visible for keyboard users */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* Minimum touch target size */
.nav-cta, .btn-gold, .btn-outline, .drape-link {
  min-height: 44px; min-width: 44px;
  display: inline-flex; align-items: center; justify-content: center;
}

/* ─── GRAIN ─── */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.045'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 9999; opacity: 0.5;
}

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 56px;
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
}
nav.scrolled {
  background: rgba(11, 24, 41, 0.97);
  backdrop-filter: blur(10px);
  padding: 12px 56px;
  box-shadow: 0 1px 0 rgba(201,168,76,0.18);
}

.nav-right { display: flex; align-items: center; gap: 28px; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-link {
  font-family: var(--sans); font-size: 11px; font-weight: 400;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(253,246,227,0.55); text-decoration: none;
  transition: color 0.3s;
}
.nav-link:hover { color: var(--gold-lt); }
nav.scrolled .nav-link { color: rgba(253,246,227,0.7); }
nav.scrolled .nav-link:hover { color: var(--gold); }
@media (max-width: 900px) {
  .nav-links { display: none; }
}
.nav-phone {
  font-family: var(--sans); font-size: 13px; font-weight: 400;
  letter-spacing: 0.08em; color: var(--gold-lt); text-decoration: none;
  transition: color 0.3s;
}
.nav-phone:hover { color: #fff; }
.nav-cta {
  font-family: var(--button); font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--navy-deep); background: var(--gold);
  text-decoration: none; padding: 10px 22px;
  transition: background 0.3s;
}
.nav-cta:hover { background: var(--gold-lt); }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  background: var(--navy-deep);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 100px 48px 0;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(201,168,76,0.07) 0%, transparent 70%);
  pointer-events: none;
}
/* Full-bleed filmstrip inside hero */
.hero-filmstrip {
  width: calc(100% + 96px);
  margin: 40px -48px 0;
  align-self: stretch;
  position: relative; z-index: 1;
}
.hero-filmstrip .gallery-item {
  height: 480px;
  flex: 0 0 320px;
}
/* Button row sits on top of filmstrip bottom edge */
.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap; justify-content: center;
  padding: 36px 0 48px;
  opacity: 0; animation: fadeUp 0.9s ease forwards 1.1s;
}
.hero-title {
  font-family: var(--serif); font-size: clamp(48px, 7vw, 96px);
  font-weight: 300; line-height: 1.0;
  color: var(--cream); margin-bottom: 28px;
  opacity: 0; animation: fadeUp 1.1s ease forwards 0.7s;
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-desc {
  font-family: var(--sans); font-size: 14px; font-weight: 300;
  line-height: 1.9; color: rgba(253,246,227,0.65);
  max-width: 520px; margin: 0 auto 36px;
  opacity: 0; animation: fadeUp 1s ease forwards 0.9s;
}
.btn-gold {
  font-family: var(--button); font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--navy-deep); background: var(--gold);
  text-decoration: none; padding: 15px 32px; border: none; cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-1px); }
.btn-outline {
  font-family: var(--button); font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold-lt); background: transparent;
  text-decoration: none; padding: 15px 32px;
  border: 1px solid rgba(201,168,76,0.4); cursor: pointer;
  transition: border-color 0.3s, color 0.3s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  font-family: var(--sans); font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(201,168,76,0.4);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hero-scroll::after {
  content: '';
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(201,168,76,0.4), transparent);
}

/* ─── PHILOSOPHY ─── */
.philosophy {
  background: var(--gold);
  padding: 80px 64px;
  text-align: center;
}
.philosophy-inner { max-width: 800px; margin: 0 auto; }
.philosophy-label {
  font-family: var(--sans); font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--navy-deep);
  opacity: 0.6; margin-bottom: 20px;
}
.philosophy-quote {
  font-family: var(--serif); font-size: clamp(22px, 3vw, 36px);
  font-weight: 400; font-style: italic;
  color: var(--navy-deep); line-height: 1.45;
}
.philosophy-rule {
  width: 48px; height: 2px; background: var(--navy-deep);
  opacity: 0.3; margin: 24px auto 0;
}

/* ─── SERVICES ─── */
.services {
  background: var(--navy);
  padding: 100px 64px;
}
.section-header { margin-bottom: 60px; }
.section-label {
  font-family: var(--sans); font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
}
.section-title {
  font-family: var(--serif); font-size: clamp(34px, 4vw, 56px);
  font-weight: 300; color: var(--cream); line-height: 1.1;
}
.section-title em { font-style: italic; color: var(--gold); }
/* Services layout */
.service-card {
  background: var(--navy); padding: 52px 48px;
  position: relative; transition: background 0.4s;
}
.service-card:hover { background: var(--navy-mid); }
.service-card::after {
  content: ''; position: absolute;
  bottom: 0; left: 48px; right: 48px; height: 1px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s ease;
}
.service-card:hover::after { transform: scaleX(1); }

/* Hero card, The Studio */
.service-hero {
  border-top: 1px solid rgba(201,168,76,0.18);
  border-bottom: 1px solid rgba(201,168,76,0.18);
}
.service-hero .service-name { font-size: clamp(28px, 3vw, 40px); }
.service-hero-inner {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 48px;
}
.service-hero .service-for {
  font-family: var(--sans); font-size: 12px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); white-space: nowrap; flex-shrink: 0;
}

/* Row 2, side by side */
.services-row-2 {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: rgba(201,168,76,0.1);
}
.services-row-2 .service-card { background: var(--navy-mid); }
.services-row-2 .service-card:hover { background: var(--navy-lt); }

.service-num {
  font-family: var(--serif); font-size: 56px; font-weight: 300;
  font-style: italic; color: var(--gold); opacity: 0.22;
  line-height: 1; margin-bottom: 16px;
}
.service-name {
  font-family: var(--serif); font-size: 26px; font-weight: 400;
  color: var(--cream); margin-bottom: 4px; line-height: 1.15;
}
.service-subtitle {
  font-family: var(--sans); font-size: 11px; font-weight: 400;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); opacity: 0.7; margin-bottom: 18px;
}
.service-desc {
  font-family: var(--sans); font-size: 13px; font-weight: 300;
  line-height: 1.8; color: rgba(253,246,227,0.65); margin-bottom: 20px;
}
.service-features {
  list-style: none; display: flex; flex-direction: column; gap: 7px;
  margin-bottom: 28px;
}
.service-features li {
  font-family: var(--sans); font-size: 12px; font-weight: 400;
  color: rgba(253,246,227,0.7); padding-left: 16px; position: relative;
}
.service-features li::before { content: '✦'; position: absolute; left: 0; color: var(--gold); font-size: 8px; top: 3px; }
.service-card .service-for {
  font-family: var(--sans); font-size: 11px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); opacity: 0.8;
}











.drape-eyebrow {
  font-family: var(--sans); font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 10px; opacity: 0.7;
}
.drape-heading {
  font-family: var(--serif); font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 300; color: var(--cream); line-height: 1.2; margin-bottom: 10px;
}
.drape-heading em { font-style: italic; color: var(--gold); }
.drape-sub {
  font-family: var(--sans); font-size: 13px; font-weight: 300;
  color: rgba(253,246,227,0.65);
}
.drape-link {
  font-family: var(--button); font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); border: 1px solid rgba(201,168,76,0.5);
  text-decoration: none; padding: 14px 32px; white-space: nowrap;
  flex-shrink: 0; transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.drape-link:hover { background: var(--gold); color: var(--navy-deep); border-color: var(--gold); }



/* ─── CONTACT / FORM ─── */
.contact {
  background: var(--navy);
  padding: 100px 64px;
  position: relative; overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.3;
}
.contact-inner {
  max-width: 900px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: start;
}
.contact-label {
  font-family: var(--sans); font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 20px;
}
.contact-heading {
  font-family: var(--serif); font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 300; font-style: italic; color: var(--cream);
  line-height: 1.2; margin-bottom: 22px;
}
.contact-body {
  font-family: var(--sans); font-size: 13px; font-weight: 300;
  line-height: 1.85; color: rgba(253,246,227,0.7); margin-bottom: 36px;
}
.contact-detail { display: flex; flex-direction: column; gap: 16px; }
.contact-detail-item span {
  font-family: var(--sans); font-size: 10px; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(253,246,227,0.3); display: block; margin-bottom: 4px;
}
.contact-detail-item a {
  font-family: var(--sans); font-size: 13px; font-weight: 400;
  color: var(--gold-lt); text-decoration: none; transition: color 0.3s;
}
.contact-detail-item a:hover { color: #fff; }


/* ─── FORM CTA BLOCK ─── */
.form-cta-block {
  width: 100%;
}
.form-cta-fields {
  display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px;
}
.form-field-preview {
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 12px 0;
}
.form-field-preview.form-field-tall {
  padding: 28px 0;
}
.form-field-preview span {
  font-family: var(--sans); font-size: 11px; font-weight: 400;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(253,246,227,0.3);
}
.form-cta-btn {
  display: flex; align-items: center; justify-content: center;
  width: 100%; padding: 18px;
  font-family: var(--button); font-size: 12px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--navy-deep); background: var(--gold);
  text-decoration: none; min-height: 44px;
  transition: background 0.3s, transform 0.2s;
}
.form-cta-btn:hover { background: var(--gold-lt); transform: translateY(-1px); }
.form-cta-btn:focus-visible { outline: 3px solid var(--gold-lt); outline-offset: 3px; }
.form-cta-note {
  font-family: var(--sans); font-size: 11px; font-weight: 300;
  color: rgba(253,246,227,0.25); text-align: center;
  margin-top: 12px; letter-spacing: 0.04em;
}

.aweber-form-wrap {
  /* AWeber injects its own styles, this wrapper provides context */
}

/* ─── FALLBACK FORM (shown until AWeber code is added) ─── */
.fallback-form-note {
  background: rgba(201,168,76,0.08);
  border: 1px dashed rgba(201,168,76,0.35);
  border-radius: 4px; padding: 32px;
  font-family: var(--sans); font-size: 13px; font-weight: 300;
  color: rgba(253,246,227,0.6); line-height: 1.7;
  text-align: center;
}
.fallback-form-note strong {
  display: block; color: var(--gold); font-weight: 500;
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 12px;
}
.fallback-form-note code {
  font-family: monospace; font-size: 11px;
  background: rgba(0,0,0,0.3); padding: 2px 6px;
  border-radius: 2px; color: var(--gold-lt);
}

/* ─── FOOTER ─── */
footer {
  background: var(--navy-deep);
  border-top: 1px solid rgba(201,168,76,0.12);
  padding: 40px 64px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
}
.footer-logo { height: 36px; width: auto; }
.footer-center {
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.08em;
  color: rgba(253,246,227,0.25); text-align: center;
}
.footer-right { font-family: var(--sans); font-size: 12px; }
.footer-right a { color: var(--gold); text-decoration: none; transition: color 0.3s; }
.footer-right a:hover { color: var(--gold-lt); }

/* ─── REVEAL ─── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.9s ease, transform 0.9s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }
.reveal-delay-4 { transition-delay: 0.6s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* ─── ABOUT SECTION ─── */
.about-section {
  background: var(--navy-mid);
  padding: 100px 64px;
}
.about-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start;
}
.about-section .section-label { color: var(--gold); }
.about-heading {
  font-family: var(--serif); font-size: clamp(28px, 3vw, 42px);
  font-weight: 400; color: var(--cream); line-height: 1.2; margin-top: 14px;
}
.about-heading em { font-style: italic; color: var(--gold); }
.about-body {
  font-family: var(--sans); font-size: 14px; font-weight: 300;
  line-height: 1.9; color: rgba(253,246,227,0.6); margin-bottom: 20px;
}
.about-body:last-child { margin-bottom: 0; }

/* ─── DESIGNED PRODUCED DELIVERED ─── */
.dpd-section {
  background: var(--navy-deep);
  padding: 96px 64px;
  border-top: 1px solid rgba(201,168,76,0.12);
}
.dpd-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: center;
}
.dpd-heading {
  font-family: var(--serif); font-size: clamp(32px, 4vw, 54px);
  font-weight: 400; color: var(--cream); line-height: 1.1;
}
.dpd-heading em { font-style: italic; color: var(--gold); }
.dpd-body {
  font-family: var(--sans); font-size: 14px; font-weight: 300;
  line-height: 1.9; color: rgba(253,246,227,0.6); margin-bottom: 20px;
}
.dpd-body:last-child { margin-bottom: 0; }

/* ─── OUR PROCESS ─── */
.process-section {
  background: var(--navy-lt);
  padding: 100px 64px;
}
.process-inner { max-width: 1100px; margin: 0 auto; }
.process-header { margin-bottom: 64px; }
.process-section .section-label { color: var(--gold); }
.process-heading {
  font-family: var(--serif); font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 400; color: var(--cream); line-height: 1.15; margin-top: 14px;
}
.process-heading em { font-style: italic; color: var(--gold); }
.process-group { margin-bottom: 64px; }
.process-group:last-child { margin-bottom: 0; }
.process-group-label {
  font-family: var(--sans); font-size: 10px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); opacity: 0.7;
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(201,168,76,0.18);
}
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: rgba(201,168,76,0.1);
}
.process-steps-5 { grid-template-columns: repeat(5, 1fr); }
.process-step {
  background: var(--navy-lt); padding: 36px 28px;
  transition: background 0.35s;
}
.process-step:hover { background: var(--navy-mid); }
.process-num {
  font-family: var(--serif); font-size: 40px; font-weight: 400;
  font-style: italic; color: var(--gold); opacity: 0.35;
  line-height: 1; margin-bottom: 14px;
}
.process-name {
  font-family: var(--serif); font-size: 17px; font-weight: 500;
  color: var(--cream); margin-bottom: 12px; line-height: 1.3;
}
.process-desc {
  font-family: var(--sans); font-size: 12px; font-weight: 300;
  line-height: 1.8; color: rgba(253,246,227,0.65);
}
@media (max-width: 1100px) {
  .process-steps, .process-steps-5 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .process-section { padding: 72px 36px; }
  .process-steps, .process-steps-5 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .process-steps, .process-steps-5 { grid-template-columns: 1fr; }
}


/* ─── NEWSLETTER ─── */
.newsletter {
  background: var(--navy-deep);
  padding: 80px 64px;
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  text-align: center;
}
.newsletter-inner { max-width: 600px; margin: 0 auto; }
.newsletter-label {
  font-family: var(--sans); font-size: 10px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.newsletter-heading {
  font-family: var(--serif); font-size: clamp(26px, 3vw, 40px);
  font-weight: 400; color: var(--cream); line-height: 1.2; margin-bottom: 14px;
}
.newsletter-heading em { font-style: italic; color: var(--gold); }
.newsletter-body {
  font-family: var(--sans); font-size: 13px; font-weight: 300;
  line-height: 1.85; color: rgba(253,246,227,0.6); margin-bottom: 32px;
}
.newsletter-btn {
  font-family: var(--button); font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--navy-deep); background: var(--gold);
  text-decoration: none; padding: 15px 40px;
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 44px; transition: background 0.3s, transform 0.2s;
}
.newsletter-btn:hover { background: var(--gold-lt); transform: translateY(-1px); }
.newsletter-btn:focus-visible {
  outline: 3px solid var(--gold-lt); outline-offset: 3px;
}
.newsletter-note {
  font-family: var(--sans); font-size: 11px; font-weight: 300;
  color: rgba(253,246,227,0.3); margin-top: 16px; letter-spacing: 0.04em;
}

@media (max-width: 900px) {
  .newsletter { padding: 64px 36px; }
}

/* ─── FOOTER REBUILT ─── */
footer {
  background: var(--navy-deep);
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 0;
}
.footer-top {
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  padding: 72px 64px 48px;
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.footer-brand { max-width: 540px; }
.footer-wordmark {
  font-family: var(--serif); font-size: 20px; font-weight: 500;
  letter-spacing: 0.06em; color: var(--cream); margin-bottom: 20px;
}
.footer-indie {
  font-family: var(--sans); font-size: 12px; font-weight: 300;
  line-height: 1.8; color: rgba(253,246,227,0.4);
}
.footer-cols {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px;
}
.footer-col-label {
  font-family: var(--button); font-size: 10px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.footer-links {
  list-style: none; display: flex; flex-direction: column; gap: 8px;
}
.footer-links li {
  font-family: var(--sans); font-size: 12px; font-weight: 300;
  color: rgba(253,246,227,0.45); line-height: 1.5;
}
.footer-links-centered {
  list-style: none; margin-top: 16px;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 28px;
}
.footer-links-centered li {
  font-family: var(--sans); font-size: 12px; font-weight: 300;
  color: rgba(253,246,227,0.45); line-height: 1.5;
}
  color: rgba(253,246,227,0.45); text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold-lt); }
.footer-bottom {
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  padding: 24px 64px; gap: 12px;
}
.footer-legal {
  font-family: var(--sans); font-size: 11px; font-weight: 300;
  color: rgba(253,246,227,0.3); line-height: 1.6; max-width: 560px;
}
.footer-copy {
  font-family: var(--sans); font-size: 11px; font-weight: 400;
  color: rgba(253,246,227,0.35); white-space: nowrap;
}

/* ─── RESPONSIVE ADDITIONS ─── */
/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {

  .footer-top { padding: 56px 36px 40px; }
  .footer-bottom { padding: 20px 36px; flex-direction: column; align-items: center; gap: 12px; }
  .studio-visual { min-height: 300px; }
  .studio-content { padding: 56px 36px; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .services { padding: 72px 36px; }
  .contact { padding: 72px 36px; }
  .drape { flex-direction: column; padding: 56px 36px; }
  footer { padding: 32px 36px; flex-direction: column; text-align: center; }
  .philosophy { padding: 60px 36px; }
}
@media (max-width: 900px) {
  nav { padding: 16px 24px; }
  nav.scrolled { padding: 12px 24px; }
  .services-row-2 { grid-template-columns: 1fr; }
  .service-hero-inner { flex-direction: column; align-items: flex-start; }
  .service-hero .service-for { white-space: normal; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .dpd-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-section { padding: 72px 36px; }
  .dpd-section { padding: 72px 36px; }
}
@media (max-width: 600px) {
  .hero { padding: 90px 28px 0; }
  .hero-filmstrip { width: calc(100% + 56px); margin: 32px -28px 0; }
  .hero-title { font-size: 42px; }
  .service-card { padding: 36px 28px; }
}

/* ─── SERVICE AREA ─── */
.service-area {
  background: var(--navy-deep);
  padding: 88px 64px;
  border-top: 1px solid rgba(201,168,76,0.12);
}
.area-inner {
  max-width: 960px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 2fr; gap: 72px; align-items: start;
}
.area-left {}
.area-label {
  font-family: var(--sans); font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
}
.area-heading {
  font-family: var(--serif); font-size: clamp(30px, 3.2vw, 46px);
  font-weight: 400; color: var(--cream); line-height: 1.15; margin-bottom: 20px;
}
.area-heading em { font-style: italic; color: var(--gold); }
.area-body {
  font-family: var(--sans); font-size: 13px; font-weight: 300;
  line-height: 1.85; color: rgba(253,246,227,0.65);
}
.area-cities {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: rgba(201,168,76,0.1);
}
.area-city {
  background: var(--navy); padding: 28px 28px;
  transition: background 0.35s;
}
.area-city:hover { background: var(--navy-mid); }
.area-city-name {
  font-family: var(--serif); font-size: 20px; font-weight: 400;
  color: var(--cream); line-height: 1.2; margin-bottom: 6px;
}
.area-city-state {
  font-family: var(--sans); font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold); opacity: 0.55;
}
@media (max-width: 1100px) {
  .process-steps { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .area-inner { grid-template-columns: 1fr; gap: 40px; }
  .area-cities { grid-template-columns: repeat(2, 1fr); }
  .service-area { padding: 72px 36px; }
}
@media (max-width: 500px) {
  .area-cities { grid-template-columns: 1fr; }
}
/* ─── GALLERY ─── */
.gallery-section {
  background: var(--navy-deep);
  padding: 80px 0 0;
  border-top: 1px solid rgba(201,168,76,0.12);
}
.gallery-header {
  max-width: 1100px; margin: 0 auto; padding: 0 64px 52px;
}
.gallery-heading {
  font-family: var(--serif); font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 400; color: var(--cream); line-height: 1.1; margin-top: 14px;
}
.gallery-heading em { font-style: italic; color: var(--gold); }
.gallery-grid {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  gap: 16px;
  scrollbar-width: thin;
  scrollbar-color: rgba(201,168,76,0.35) transparent;
  padding-bottom: 6px;
  cursor: grab;
}
.gallery-grid:active { cursor: grabbing; }
.gallery-grid::-webkit-scrollbar { height: 3px; }
.gallery-grid::-webkit-scrollbar-track { background: transparent; }
.gallery-grid::-webkit-scrollbar-thumb { background: rgba(201,168,76,0.35); border-radius: 2px; }
.gallery-item {
  flex: 0 0 320px;
  height: 480px;
  background: var(--navy-mid);
  position: relative; overflow: hidden;
  scroll-snap-align: start;
  cursor: pointer;
  transition: opacity 0.3s;
}
/* Landscape variant — add class="gallery-item gallery-wide" for horizontal shots */
.gallery-item.gallery-wide {
  flex: 0 0 640px;
  height: 480px;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item:hover { opacity: 0.92; }
.gallery-item:not(:has(img))::before {
  content: attr(data-num);
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-family: var(--serif); font-size: 22px; font-style: italic;
  color: rgba(201,168,76,0.2); pointer-events: none;
}
.gallery-item:not(:has(img))::after {
  content: '';
  position: absolute; inset: 0;
  border: 1px solid rgba(201,168,76,0.08);
}
@media (max-width: 600px) {
  .gallery-item { flex: 0 0 220px; height: 330px; }
  .gallery-item.gallery-wide { flex: 0 0 380px; height: 330px; }
}

/* ─── ABOUT / BIO ─── */
.about-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 260px 1fr; gap: 72px; align-items: start;
}
.about-photo-wrap { position: sticky; top: 100px; }
.about-photo {
  width: 100%; aspect-ratio: 3/4; background: var(--navy-lt);
  overflow: hidden; margin-bottom: 20px;
  border: 1px solid rgba(201,168,76,0.15);
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-photo-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, var(--navy-lt), var(--navy-mid));
  display: flex; align-items: center; justify-content: center;
}
.about-photo-placeholder::after {
  content: 'Photo';
  font-family: var(--sans); font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(201,168,76,0.3);
}
.about-name {
  font-family: var(--serif); font-size: 18px; font-weight: 500;
  color: var(--cream); margin-bottom: 4px;
}
.about-title-tag {
  font-family: var(--sans); font-size: 9px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); opacity: 0.75;
}
.about-quote {
  border-left: 2px solid var(--gold);
  padding: 20px 28px; margin: 36px 0;
  font-family: var(--serif); font-size: clamp(16px, 1.8vw, 22px);
  font-style: italic; font-weight: 400;
  color: var(--cream); line-height: 1.55;
}
.about-creds {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px;
}
.about-cred {
  font-family: var(--sans); font-size: 10px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(253,246,227,0.55);
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 8px 14px;
}
@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-photo-wrap { position: static; display: grid; grid-template-columns: 200px 1fr; gap: 28px; align-items: center; }
  .about-photo { margin-bottom: 0; aspect-ratio: 1/1; }
  .gallery-header { padding: 0 36px 40px; }
}

/* ─── SERVICE HERO IMAGE ─── */
.service-hero-aside {
  display: flex; flex-direction: column; gap: 32px;
  min-width: 260px; flex-shrink: 0;
}
.service-img-placeholder {
  width: 100%; aspect-ratio: 4/5;
  background: linear-gradient(160deg, var(--navy-lt), var(--navy-deep));
  border: 1px solid rgba(201,168,76,0.15);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.service-img-placeholder::after {
  content: 'Image';
  font-family: var(--sans); font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(201,168,76,0.25);
}
.service-img-placeholder img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}

/* ─── NETLIFY FORM ─── */
.netlify-form { width: 100%; }
.nf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 24px; }
.nf-field { margin-bottom: 20px; }
.nf-field label {
  display: block;
  font-family: var(--sans); font-size: 10px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(253,246,227,0.35); margin-bottom: 6px;
}
.nf-field input,
.nf-field select,
.nf-field textarea {
  width: 100%;
  font-family: var(--sans); font-size: 13px; font-weight: 300;
  color: var(--cream); background: transparent;
  border: none; border-bottom: 1px solid rgba(201,168,76,0.22);
  padding: 10px 0; outline: none;
  transition: border-color 0.3s;
  -webkit-appearance: none; appearance: none;
}
.nf-field input:focus,
.nf-field select:focus,
.nf-field textarea:focus { border-bottom-color: var(--gold); }
.nf-field select { cursor: pointer; }
.nf-field select option { background: var(--navy); color: var(--cream); }
.nf-field textarea { resize: vertical; min-height: 90px; }
.nf-hidden { display: none; }
@media (max-width: 600px) { .nf-row { grid-template-columns: 1fr; } }

/* ─── TESTIMONIAL OVERRIDES ─── */
.testimonials { padding-bottom: 80px; }
.testimonials-grid { gap: 24px; }
.testimonial-card { gap: 24px; padding-bottom: 48px; }
.testimonial-stars { margin-bottom: 8px; }
.testimonial-star { color: #c9a84c !important; }
.testimonial-author {
  color: #c9a84c !important;
  font-weight: 700 !important;
  opacity: 1 !important;
  letter-spacing: 0.1em;
  margin-top: 0;
  padding-top: 16px;
}


/* ─── FAQ ACCORDION FIX ─── */
.faqs {
  background: var(--navy-deep);
  padding: 96px 64px;
  border-top: 1px solid rgba(201,168,76,0.12);
}
.faqs-inner {
  max-width: 980px;
  margin: 0 auto;
}
.faqs-header {
  margin-bottom: 44px;
}
.faq-group {
  border-top: 1px solid rgba(201,168,76,0.22);
  margin-bottom: 36px;
}
.faq-group-label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.75;
  padding: 28px 0 10px;
}
.faq-item {
  border-bottom: 1px solid rgba(201,168,76,0.16);
}
.faq-question {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: 0;
  color: var(--cream);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  text-align: left;
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 400;
  line-height: 1.25;
}
.faq-question:hover {
  color: var(--gold-lt);
}
.faq-icon {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(201,168,76,0.45);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1;
  transition: transform 0.25s ease, background 0.25s ease;
}
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  background: rgba(201,168,76,0.12);
}
.faq-answer {
  display: none;
  padding: 0 0 24px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(253,246,227,0.68);
  max-width: 860px;
}
.faq-question[aria-expanded="true"] + .faq-answer {
  display: block;
}
@media (max-width: 900px) {
  .faqs { padding: 72px 36px; }
}
@media (max-width: 600px) {
  .faqs { padding: 64px 28px; }
  .faq-question { font-size: 18px; }
}


/* ─── EXPANDED FIT GALLERY ─── */
.gallery-item {
  background: rgba(19,32,56,0.82);
}
.gallery-item img {
  object-fit: contain !important;
  object-position: center center;
  padding: 0;
  background: var(--navy-mid);
}
.hero-filmstrip .gallery-item {
  flex: 0 0 360px;
  height: 500px;
}
.hero-filmstrip .gallery-item.gallery-wide {
  flex: 0 0 660px;
  height: 500px;
}
.hero-filmstrip figure {
  margin: 0;
}
.service-img-placeholder::after {
  content: none !important;
}
@media (max-width: 600px) {
  .hero-filmstrip .gallery-item { flex: 0 0 250px; height: 350px; }
  .hero-filmstrip .gallery-item.gallery-wide { flex: 0 0 420px; height: 350px; }
}


/* ─── VISIBLE PORTFOLIO LABELS — APPLIED INSIDE MAIN STYLE TAG ─── */
.hero-filmstrip.gallery-grid {
  align-items: stretch !important;
}
.hero-filmstrip .gallery-item,
.gallery-grid .gallery-item {
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  overflow: hidden !important;
  background: var(--navy-mid) !important;
  height: 560px !important;
  min-height: 560px !important;
}
.hero-filmstrip .gallery-item {
  flex: 0 0 360px !important;
}
.hero-filmstrip .gallery-item.gallery-wide {
  flex: 0 0 680px !important;
}
.hero-filmstrip .gallery-item img,
.gallery-grid .gallery-item img {
  display: block !important;
  width: 100% !important;
  height: 400px !important;
  flex: 0 0 400px !important;
  object-fit: contain !important;
  object-position: center center !important;
  background: var(--navy-mid) !important;
  transform: none !important;
}
.hero-filmstrip .gallery-item:hover img,
.gallery-grid .gallery-item:hover img {
  transform: none !important;
}
.hero-filmstrip .gallery-caption,
.gallery-grid .gallery-caption {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: relative !important;
  z-index: 20 !important;
  flex: 0 0 160px !important;
  height: 160px !important;
  min-height: 160px !important;
  width: 100% !important;
  box-sizing: border-box !important;
  padding: 18px 20px !important;
  background: #0b1829 !important;
  border-top: 1px solid rgba(201,168,76,0.35) !important;
  text-align: left !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  gap: 6px !important;
}
.hero-filmstrip .gallery-kicker,
.gallery-grid .gallery-kicker {
  display: block !important;
  font-family: var(--sans) !important;
  font-size: 9px !important;
  font-weight: 700 !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  color: var(--gold) !important;
  line-height: 1.2 !important;
}
.hero-filmstrip .gallery-caption strong,
.gallery-grid .gallery-caption strong {
  display: block !important;
  font-family: var(--serif) !important;
  font-size: 18px !important;
  font-weight: 500 !important;
  color: var(--cream) !important;
  line-height: 1.2 !important;
}
.hero-filmstrip .gallery-desc,
.gallery-grid .gallery-desc {
  display: block !important;
  font-family: var(--sans) !important;
  font-size: 11px !important;
  font-weight: 300 !important;
  line-height: 1.45 !important;
  color: rgba(253,246,227,0.68) !important;
}
@media (max-width: 600px) {
  .hero-filmstrip .gallery-item,
  .gallery-grid .gallery-item {
    height: 470px !important;
    min-height: 470px !important;
    flex: 0 0 260px !important;
  }
  .hero-filmstrip .gallery-item.gallery-wide {
    flex: 0 0 420px !important;
  }
  .hero-filmstrip .gallery-item img,
  .gallery-grid .gallery-item img {
    height: 310px !important;
    flex-basis: 310px !important;
  }
  .hero-filmstrip .gallery-caption,
  .gallery-grid .gallery-caption {
    height: 160px !important;
    min-height: 160px !important;
    flex-basis: 160px !important;
    padding: 15px 16px !important;
  }
  .hero-filmstrip .gallery-caption strong,
  .gallery-grid .gallery-caption strong {
    font-size: 16px !important;
  }
  .hero-filmstrip .gallery-desc,
  .gallery-grid .gallery-desc {
    font-size: 10px !important;
  }
}


/* ─── AD TRAFFIC ENHANCEMENT SECTIONS ─── */
.engage-section,
.curate-section,
.investment-section,
.final-cta-section {
  background: var(--navy-deep);
  padding: 96px 64px;
  border-top: 1px solid rgba(201,168,76,0.12);
}
.engage-inner,
.curate-inner,
.investment-inner,
.final-cta-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.engage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201,168,76,0.12);
  margin-top: 48px;
}
.engage-card {
  background: var(--navy);
  padding: 44px 36px;
  min-height: 260px;
}
.engage-card:hover {
  background: var(--navy-mid);
}
.engage-kicker,
.curate-kicker,
.investment-kicker {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.engage-title,
.investment-title {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 14px;
}
.engage-subtitle,
.investment-subtitle {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.72;
  margin-bottom: 18px;
}
.engage-body,
.curate-body,
.investment-body,
.final-cta-body {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(253,246,227,0.66);
}
.dpd-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(201,168,76,0.14);
  margin-top: 42px;
}
.dpd-flow-item {
  background: var(--navy);
  padding: 34px 26px;
  text-align: center;
}
.dpd-flow-num {
  font-family: var(--serif);
  font-size: 36px;
  font-style: italic;
  color: var(--gold);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 12px;
}
.dpd-flow-title {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
}
.curate-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(201,168,76,0.12);
  margin-top: 42px;
  margin-bottom: 34px;
}
.curate-item {
  background: var(--navy);
  padding: 26px 22px;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--cream);
  text-align: center;
}
.investment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201,168,76,0.12);
  margin-top: 44px;
  margin-bottom: 34px;
}
.investment-card {
  background: var(--navy);
  padding: 38px 34px;
}
.investment-price {
  font-family: var(--serif);
  font-size: 24px;
  font-style: italic;
  color: var(--gold);
  margin-top: 12px;
}
.final-cta-section {
  text-align: center;
  padding: 88px 64px;
}
.final-cta-title {
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 20px;
}
.final-cta-title em {
  color: var(--gold);
  font-style: italic;
}
.final-cta-body {
  max-width: 640px;
  margin: 0 auto 34px;
}
@media (max-width: 900px) {
  .engage-section,
  .curate-section,
  .investment-section,
  .final-cta-section {
    padding: 72px 36px;
  }
  .engage-grid,
  .dpd-flow,
  .curate-list,
  .investment-grid {
    grid-template-columns: 1fr;
  }
}


/* ─── WHAT WE DESIGN ─── */
.design-section {
  background: var(--navy);
  padding: 96px 64px;
  border-top: 1px solid rgba(201,168,76,0.12);
}
.design-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.design-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(201,168,76,0.12);
  margin-top: 42px;
  margin-bottom: 34px;
}
.design-item {
  background: var(--navy-deep);
  padding: 24px 18px;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--cream);
  text-align: center;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.design-body {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(253,246,227,0.66);
  max-width: 780px;
}

/* ─── REBUILT FOOTER ─── */
footer.site-footer {
  background: var(--navy-deep) !important;
  border-top: 1px solid rgba(201,168,76,0.28) !important;
  padding: 0 !important;
  text-align: center !important;
}
.footer-color-band {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  padding: 64px 64px 46px;
}
.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: 48px;
  text-align: center;
  align-items: start;
}
.footer-panel {
  min-height: 190px;
  padding: 8px 18px;
  border-left: 1px solid rgba(201,168,76,0.12);
  border-right: 1px solid rgba(201,168,76,0.12);
}
.footer-wordmark {
  font-family: var(--serif) !important;
  font-size: 22px !important;
  font-weight: 500 !important;
  letter-spacing: 0.06em !important;
  color: var(--cream) !important;
  margin-bottom: 18px !important;
}
.footer-tagline {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  color: var(--gold);
  line-height: 1.35;
  margin-bottom: 18px;
}
.footer-location,
.footer-philosophy,
.footer-disclaimer {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(253,246,227,0.48);
}
.footer-heading {
  font-family: var(--button);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-services-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-services-list li {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 300;
  color: rgba(253,246,227,0.55);
}
.footer-bottom-bar {
  max-width: 820px;
  margin: 36px auto 0;
  padding-top: 28px;
  border-top: 1px solid rgba(201,168,76,0.18);
  text-align: center;
}
.footer-disclaimer {
  margin: 0 auto 14px;
}
.footer-copy {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  color: rgba(253,246,227,0.42);
}
@media (max-width: 900px) {
  .design-section {
    padding: 72px 36px;
  }
  .design-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-color-band {
    padding: 56px 36px 42px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .footer-panel {
    min-height: auto;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid rgba(201,168,76,0.12);
    padding-bottom: 30px;
  }
}
@media (max-width: 500px) {
  .design-list {
    grid-template-columns: 1fr;
  }
}


/* ─── TESTIMONIAL SPACING FIX ─── */
.testimonials {
  padding: 96px 64px !important;
  background: var(--navy-deep);
}
/* Tighten the gap between the FAQ section and Testimonials */
.faqs { padding-bottom: 48px; }
.testimonials { padding-top: 48px !important; }
.testimonials-inner {
  max-width: 1100px !important;
  margin: 0 auto !important;
  width: 100% !important;
}
.testimonials-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px !important;
  width: 100% !important;
  margin: 0 auto !important;
}
.testimonial-card {
  background: var(--navy) !important;
  border: 1px solid rgba(201,168,76,0.15) !important;
  padding: 40px 34px !important;
  margin: 0 !important;
}
.testimonials-header {
  max-width: 1100px !important;
  margin: 0 auto 48px !important;
}
@media (max-width: 1000px) {
  .testimonials-grid {
    grid-template-columns: 1fr !important;
  }
}
@media (max-width: 900px) {
  .testimonials {
    padding: 72px 36px !important;
  }
}
@media (max-width: 600px) {
  .testimonials {
    padding: 64px 28px !important;
  }
  .testimonial-card {
    padding: 32px 26px !important;
  }
}


/* ─── TRUE CENTER FOOTER FIX ─── */
footer.site-footer,
.site-footer {
  width: 100% !important;
  display: block !important;
  text-align: center !important;
  background: var(--navy-deep) !important;
}

.site-footer .footer-color-band,
.footer-color-band {
  width: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  padding-left: 40px !important;
  padding-right: 40px !important;
  box-sizing: border-box !important;
}

.site-footer .footer-grid,
.footer-grid {
  width: 100% !important;
  max-width: 850px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 32px !important;
  justify-content: center !important;
  align-items: start !important;
  text-align: center !important;
}

.site-footer .footer-panel,
.footer-panel {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.site-footer .footer-bottom-bar,
.footer-bottom-bar {
  width: 100% !important;
  max-width: 850px !important;
  margin: 36px auto 0 auto !important;
  text-align: center !important;
}

.site-footer .footer-disclaimer,
.site-footer .footer-copy,
.footer-disclaimer,
.footer-copy {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

@media (max-width: 900px) {
  .site-footer .footer-grid,
  .footer-grid {
    grid-template-columns: 1fr !important;
    max-width: 620px !important;
  }

  .site-footer .footer-color-band,
  .footer-color-band {
    padding-left: 28px !important;
    padding-right: 28px !important;
  }
}


/* Gallery card consistency fix */
.gallery-item{
    display:flex !important;
    flex-direction:column !important;
    overflow:hidden !important;
    background:#0b1829 !important;
}

.gallery-item img{
    display:block !important;
}

.gallery-caption{
    display:flex !important;
    flex-direction:column !important;
    flex:0 0 160px !important;
    min-height:160px !important;
    background:#0b1829 !important;
}


/* ─── EXPLICIT BLUE FILMSTRIP SPACERS ─── */
.hero-filmstrip .gallery-spacer,
.gallery-grid .gallery-spacer {
  flex: 0 0 56px !important;
  width: 56px !important;
  min-width: 56px !important;
  height: 560px !important;
  min-height: 560px !important;
  background: var(--navy-mid) !important;
  border-left: 1px solid rgba(201,168,76,0.12) !important;
  border-right: 1px solid rgba(201,168,76,0.12) !important;
  scroll-snap-align: start !important;
}
@media (max-width: 600px) {
  .hero-filmstrip .gallery-spacer,
  .gallery-grid .gallery-spacer {
    flex-basis: 36px !important;
    width: 36px !important;
    min-width: 36px !important;
    height: 470px !important;
    min-height: 470px !important;
  }
}


/* Gallery gutter refinement */
.gallery-track,
.gallery-strip,
.gallery-grid {
    gap: 12px !important;
}

.gallery-item,
.gallery-item.gallery-wide {
    margin-right: 0 !important;
}

.gallery-spacer {
    display:none !important;
}


.contact-cta{
text-align:center;
padding:80px 20px;
}
.contact-cta h2{margin-bottom:15px;}
.footer-contact{text-align:center;margin-top:20px;}
.nav-phone{margin-left:20px;}


/* ─── MOBILE NAV ─── */
.nav-burger {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 40px; height: 40px; padding: 8px;
  flex-direction: column; justify-content: center; gap: 6px;
}
.nav-burger span {
  display: block; width: 24px; height: 2px;
  background: var(--gold); transition: transform 0.3s, opacity 0.3s;
}
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
.mobile-menu {
  position: fixed; inset: 0; z-index: 190;
  background: rgba(11, 24, 41, 0.98);
  backdrop-filter: blur(8px);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
  opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a {
  font-family: var(--sans); font-size: 15px; font-weight: 400;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--cream); text-decoration: none;
  padding: 12px 24px; transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--gold-lt); }
.mobile-menu .mobile-menu-cta {
  margin-top: 20px; background: var(--gold); color: var(--navy-deep);
  font-family: var(--button); font-size: 12px; font-weight: 600;
  letter-spacing: 0.14em; padding: 14px 32px;
}
.mobile-menu .mobile-menu-phone {
  margin-top: 6px; color: var(--gold-lt); letter-spacing: 0.1em; text-transform: none;
  font-size: 14px;
}
@media (max-width: 900px) {
  nav { padding: 16px 20px; }
  nav.scrolled { padding: 10px 20px; }
  .nav-burger { display: flex; }
  .nav-phone { display: none; }
}
@media (max-width: 500px) {
  .nav-cta { font-size: 10px; padding: 9px 16px; }
}

/* ─── STUDIO CONCIERGE PROMPTS ─── */
.concierge-link {
  background: none; border: none; cursor: pointer;
  font-family: var(--sans); font-size: 12px; font-weight: 400;
  letter-spacing: 0.1em; color: var(--gold-lt);
  text-decoration: underline; text-underline-offset: 4px;
  text-decoration-color: rgba(201,168,76,0.4);
  padding: 4px 0; transition: color 0.3s, text-decoration-color 0.3s;
}
.concierge-link:hover { color: var(--gold); text-decoration-color: var(--gold); }

/* ─── RELOCATION ─── */
.relo-section {
  background: var(--navy-mid);
  padding: 96px 24px;
  border-top: 1px solid rgba(201,168,76,0.25);
}
.relo-inner { max-width: 780px; margin: 0 auto; text-align: center; }
.relo-body {
  font-size: 15px; font-weight: 300; line-height: 1.8;
  color: rgba(253,246,227,0.78); margin-top: 24px;
}
.relo-actions {
  margin-top: 36px; display: flex; flex-direction: column;
  align-items: center; gap: 20px;
}
@media (max-width: 600px) {
  .relo-section { padding: 72px 20px; }
}

/* ─── FOOTER G&G ─── */
.footer-gg {
  font-family: var(--sans); font-size: 12px; font-weight: 300;
  letter-spacing: 0.06em; color: rgba(253,246,227,0.6);
  text-align: center; padding: 18px 24px 0;
}
.footer-gg a { color: var(--gold-lt); text-decoration: none; border-bottom: 1px solid rgba(201,168,76,0.4); transition: color 0.3s; }
.footer-gg a:hover { color: var(--gold); }


/* ─── NAV: SOLID NAVY, INVERTED CTA & PHONE ─── */
nav {
  background: var(--navy-deep) !important;
  box-shadow: 0 1px 0 rgba(201,168,76,0.22), 0 6px 24px rgba(0,0,0,0.35) !important;
}
.nav-link { color: rgba(253,246,227,0.88) !important; }
.nav-link:hover, .nav-link[aria-current="page"] { color: var(--gold) !important; }
.nav-cta {
  background: var(--cream) !important; color: var(--navy-deep) !important;
  border: 1px solid var(--cream) !important;
}
.nav-cta:hover { background: var(--gold) !important; border-color: var(--gold) !important; color: var(--navy-deep) !important; }
.nav-phone {
  color: var(--cream) !important;
  border: 1px solid rgba(201,168,76,0.6); padding: 10px 16px;
  transition: color 0.3s, border-color 0.3s;
}
.nav-phone:hover { color: var(--gold) !important; border-color: var(--gold); }

/* anchor targets land clear of the fixed nav */
[id] { scroll-margin-top: 96px; }

/* fit eleven nav links */
nav { padding-left: 28px !important; padding-right: 28px !important; }
.nav-links { gap: clamp(10px, 1.3vw, 22px) !important; }
.nav-link { font-size: 10.5px !important; letter-spacing: 0.08em !important; }
