/* ============================================================
   FADE CREATIVE — style.css
   Light luxury agency aesthetic — Las Vegas desert premium
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,700;1,9..144,300;1,9..144,400&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --bg:          #F4EDE1;
  --bg-card:     #FBF7F2;
  --bg-elevated: #EAE0D2;
  --gold:        #B8821C;
  --gold-light:  #C9922A;
  --gold-dim:    rgba(184,130,28,0.07);
  --gold-border: rgba(184,130,28,0.18);
  --white:       #1C1410;
  --grey-hi:     #3C3028;
  --grey-mid:    #8A7B6E;
  --grey-lo:     #D5C9B8;
  --font-display: 'Bebas Neue', sans-serif;
  --font-serif:   'Fraunces', serif;
  --font-body:    'DM Sans', sans-serif;
  --nav-h:        72px;
  --radius:       4px;
  --radius-lg:    10px;
  --transition:   0.3s cubic-bezier(0.4,0,0.2,1);
  --max-w:        1200px;
  --section-py:   120px;
  /* Dark constants — used for hero, footer, overlays */
  --dark:        #0E0C0A;
  --dark-card:   #161310;
  --dark-text:   #F2ECE4;
  --dark-mid:    #C8C0B4;
  --dark-muted:  #7A7268;
  --dark-border: #3A3630;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

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

/* ── Utility ───────────────────────────────────────────────── */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* Gold rule */
.gold-rule {
  display: inline-block;
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: 20px;
}

/* Section label */
.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

/* Headings */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(52px, 9vw, 120px);
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: var(--white);
}
.display-lg {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--white);
}
.display-md {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: 0.02em;
}
.serif-xl {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.2;
}
.serif-lg {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 300;
  line-height: 1.3;
}
h3.section-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 44px);
  letter-spacing: 0.02em;
  color: var(--white);
}

.lead {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--grey-hi);
  line-height: 1.7;
  font-weight: 300;
}
.body-sm { font-size: 14px; color: var(--grey-mid); line-height: 1.6; }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: #0D0D0D;
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(201,146,42,0.35);
}
.btn-outline {
  border: 1.5px solid rgba(242,236,228,0.35);
  color: var(--white);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-1px);
}
.btn-ghost {
  color: var(--gold);
  padding: 0;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
}
.btn-ghost::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width var(--transition);
}
.btn-ghost:hover::after { width: 100%; }
.btn-ghost .arrow { display: inline-block; transition: transform var(--transition); }
.btn-ghost:hover .arrow { transform: translateX(4px); }

/* ── Navigation ────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
}
.site-nav.scrolled {
  background: rgba(13,13,13,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(201,146,42,0.12);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.08em;
  color: var(--white);
  position: relative;
}
.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-hi);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta { margin-left: 12px; }

/* Mobile menu */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  top: var(--nav-h);
  background: rgba(13,13,13,0.97);
  backdrop-filter: blur(20px);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: 0.06em;
  color: var(--grey-hi);
  transition: color var(--transition);
}
.nav-mobile a:hover { color: var(--gold); }

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 30%, rgba(201,146,42,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 10% 80%, rgba(201,146,42,0.04) 0%, transparent 60%),
    linear-gradient(180deg, #0D0D0D 0%, #0A0A0A 100%);
}
/* Topo lines */
.hero-topo {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 59px,
      rgba(201,146,42,0.04) 59px,
      rgba(201,146,42,0.04) 60px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 59px,
      rgba(201,146,42,0.025) 59px,
      rgba(201,146,42,0.025) 60px
    );
  mask-image: radial-gradient(ellipse 90% 90% at 70% 40%, black 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 90% 90% at 70% 40%, black 0%, transparent 80%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 32px;
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1.5px;
  background: var(--gold);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(60px, 10vw, 130px);
  line-height: 0.92;
  letter-spacing: 0.01em;
  color: var(--white);
  max-width: 12ch;
  margin-bottom: 32px;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold);
}
.hero-sub {
  font-size: clamp(16px, 1.6vw, 20px);
  color: var(--grey-hi);
  line-height: 1.65;
  max-width: 48ch;
  margin-bottom: 48px;
  font-weight: 300;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--grey-mid);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 1;
  animation: scrollBounce 2s ease-in-out infinite;
}
.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* Inner hero (non-home pages) */
.hero-inner {
  position: relative;
  padding: calc(var(--nav-h) + 80px) 0 80px;
  overflow: hidden;
}
.hero-inner-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(201,146,42,0.04) 0%, transparent 100%);
  border-bottom: 1px solid var(--gold-border);
}
.hero-inner .container { position: relative; z-index: 1; }
.hero-inner h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 90px);
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}
.hero-inner p {
  font-size: clamp(16px, 1.5vw, 19px);
  color: var(--grey-hi);
  max-width: 56ch;
  font-weight: 300;
}

/* ── Social proof bar ──────────────────────────────────────── */
.proof-bar {
  border-top: 1px solid var(--grey-lo);
  border-bottom: 1px solid var(--grey-lo);
  padding: 20px 0;
  background: rgba(19,19,19,0.8);
}
.proof-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}
.proof-location {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-mid);
}
.proof-divider { width: 1px; height: 20px; background: var(--grey-lo); }
.proof-stat {
  display: flex;
  align-items: center;
  gap: 10px;
}
.proof-stat-num {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--gold);
  line-height: 1;
}
.proof-stat-label {
  font-size: 12px;
  color: var(--grey-mid);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.3;
}

/* ── Sections ──────────────────────────────────────────────── */
.section { padding: var(--section-py) 0; }
.section-dark { background: var(--bg-card); }
.section-header { margin-bottom: 64px; }
.section-header.centered { text-align: center; }
.section-header .section-label { margin-bottom: 12px; }
.section-header h2 { margin-bottom: 20px; }
.section-header p { max-width: 56ch; }
.section-header.centered p { margin: 0 auto; }

/* ── Service cards (home grid) ─────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--grey-lo);
  border: 1px solid var(--grey-lo);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service-card {
  background: var(--bg-card);
  padding: 40px 32px;
  transition: background var(--transition);
  position: relative;
}
.service-card:hover { background: var(--bg-elevated); }
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  color: var(--gold);
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
  color: var(--white);
}
.service-card p { font-size: 14px; color: var(--grey-hi); line-height: 1.65; margin-bottom: 24px; }
.services-cta { margin-top: 40px; text-align: center; }

/* ── Why us columns ────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--grey-lo);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.why-item {
  background: var(--bg);
  padding: 48px 40px;
}
.why-number {
  font-family: var(--font-display);
  font-size: 72px;
  color: var(--gold-dim);
  line-height: 1;
  margin-bottom: 20px;
  display: block;
  border-bottom: 1px solid var(--gold-border);
  padding-bottom: 20px;
}
.why-item h3 {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
  color: var(--gold);
}
.why-item p { font-size: 15px; color: var(--grey-hi); line-height: 1.7; }

/* ── Pricing cards ─────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--grey-lo);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  position: relative;
  transition: border-color var(--transition), transform var(--transition);
}
.pricing-card:hover { border-color: var(--gold-border); transform: translateY(-4px); }
.pricing-card.featured {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(201,146,42,0.06), var(--bg-card));
}
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #0D0D0D;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
}
.pricing-name {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin-bottom: 8px;
}
.pricing-price {
  font-family: var(--font-display);
  font-size: 60px;
  line-height: 1;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.pricing-price sup { font-size: 28px; vertical-align: top; margin-top: 10px; }
.pricing-period { font-size: 13px; color: var(--grey-mid); margin-bottom: 28px; }
.pricing-divider { height: 1px; background: var(--grey-lo); margin-bottom: 24px; }
.pricing-features { margin-bottom: 32px; }
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--grey-hi);
  padding: 7px 0;
  border-bottom: 1px solid rgba(58,54,48,0.5);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features .check {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 2px;
}
.pricing-note {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: var(--grey-mid);
}
.pricing-note a { color: var(--gold); text-decoration: underline; }

/* ── Testimonials ──────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--grey-lo);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  transition: border-color var(--transition);
}
.testimonial-card:hover { border-color: var(--gold-border); }
.testimonial-quote {
  font-family: var(--font-display);
  font-size: 80px;
  color: var(--gold-dim);
  line-height: 0.6;
  display: block;
  margin-bottom: 20px;
}
.testimonial-stars { color: var(--gold); font-size: 14px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text {
  font-family: var(--font-serif);
  font-size: 17px;
  font-style: italic;
  color: var(--grey-hi);
  line-height: 1.7;
  margin-bottom: 24px;
}
.testimonial-author { display: flex; flex-direction: column; gap: 2px; }
.testimonial-name { font-size: 13px; font-weight: 600; color: var(--white); }
.testimonial-biz { font-size: 12px; color: var(--grey-mid); }

/* ── Final CTA ─────────────────────────────────────────────── */
.final-cta {
  padding: 100px 0;
  background: var(--bg-elevated);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  text-align: center;
}
.final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: 0.02em;
  margin-bottom: 20px;
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
}
.final-cta p { font-size: 18px; color: var(--grey-hi); margin-bottom: 40px; font-weight: 300; }

/* ── Footer ────────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-card);
  border-top: 1px solid var(--grey-lo);
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
.footer-brand .nav-logo { font-size: 28px; margin-bottom: 16px; display: block; }
.footer-brand p { font-size: 14px; color: var(--grey-mid); line-height: 1.7; max-width: 28ch; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--grey-lo);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-mid);
  transition: var(--transition);
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: var(--grey-hi);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; font-size: 14px; color: var(--grey-hi); }
.footer-bottom {
  border-top: 1px solid var(--grey-lo);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p { font-size: 12px; color: var(--grey-mid); }

/* ── Service page: detailed blocks ────────────────────────── */
.service-block {
  padding: 80px 0;
  border-bottom: 1px solid var(--grey-lo);
}
.service-block:last-of-type { border-bottom: none; }
.service-block-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.service-block-inner.reverse { direction: rtl; }
.service-block-inner.reverse > * { direction: ltr; }
.service-block h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.5vw, 58px);
  letter-spacing: 0.02em;
  margin-bottom: 20px;
  line-height: 1.0;
}
.service-block p { font-size: 16px; color: var(--grey-hi); line-height: 1.8; margin-bottom: 32px; }
.service-included h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.service-included ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--grey-hi);
  padding: 9px 0;
  border-bottom: 1px solid rgba(58,54,48,0.5);
}
.service-included ul li:last-child { border-bottom: none; }
.service-included .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.service-visual {
  background: var(--bg-elevated);
  border: 1px solid var(--grey-lo);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.service-visual-inner {
  text-align: center;
  color: var(--grey-lo);
}
.service-visual-icon {
  font-size: 64px;
  display: block;
  margin-bottom: 12px;
}
.service-visual span { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; }

/* ── Care plans page ───────────────────────────────────────── */
.pain-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}
.pain-point {
  background: var(--bg-elevated);
  border: 1px solid var(--grey-lo);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
}
.pain-point-problem {
  font-size: 14px;
  color: var(--grey-mid);
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--grey-lo);
  font-style: italic;
}
.pain-point-solution {
  font-size: 15px;
  color: var(--white);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.pain-point-solution::before {
  content: '→';
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Care plan cards */
.care-plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

/* ── FAQ ───────────────────────────────────────────────────── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--grey-lo);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  cursor: pointer;
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  gap: 16px;
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border: 1.5px solid var(--grey-lo);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--gold);
  line-height: 1;
  transition: transform var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 200px; }
.faq-answer-inner {
  padding-bottom: 24px;
  font-size: 15px;
  color: var(--grey-hi);
  line-height: 1.7;
}

/* ── Portfolio ─────────────────────────────────────────────── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.portfolio-card {
  background: var(--bg-card);
  border: 1px solid var(--grey-lo);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
  cursor: pointer;
}
.portfolio-card:hover { border-color: var(--gold-border); transform: translateY(-6px); }
.portfolio-img {
  aspect-ratio: 16/10;
  background: var(--bg-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.portfolio-img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--grey-lo);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.portfolio-img-placeholder svg {
  width: 40px;
  height: 40px;
  opacity: 0.4;
}
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,13,13,0.9), transparent);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay-text { font-size: 12px; color: var(--gold); letter-spacing: 0.08em; text-transform: uppercase; }
.portfolio-info { padding: 24px; }
.portfolio-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.portfolio-title { font-size: 18px; font-weight: 600; margin-bottom: 6px; color: var(--white); }
.portfolio-desc { font-size: 13px; color: var(--grey-mid); }

/* ── About page ────────────────────────────────────────────── */
.story-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}
.story-visual {
  background: var(--bg-elevated);
  border: 1px solid var(--grey-lo);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.story-visual-text {
  font-family: var(--font-display);
  font-size: 80px;
  color: rgba(201,146,42,0.08);
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 1.1;
}
.story-visual::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.story-body p {
  font-size: 16px;
  color: var(--grey-hi);
  line-height: 1.85;
  margin-bottom: 20px;
}
.story-body p:first-of-type {
  font-family: var(--font-serif);
  font-size: 20px;
  font-style: italic;
  color: var(--white);
  line-height: 1.6;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--grey-lo);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.value-item {
  background: var(--bg-card);
  padding: 48px 36px;
}
.value-icon {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}
.value-item h3 {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
  color: var(--white);
}
.value-item p { font-size: 15px; color: var(--grey-hi); line-height: 1.7; }

/* ── Contact page ──────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  margin-bottom: 16px;
}
.contact-info .lead { margin-bottom: 40px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-detail-body h4 { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--grey-mid); margin-bottom: 4px; }
.contact-detail-body p { font-size: 15px; color: var(--white); }
.contact-reassure {
  margin-top: 32px;
  padding: 20px 24px;
  background: var(--bg-elevated);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  font-size: 14px;
  font-style: italic;
  color: var(--grey-hi);
  line-height: 1.7;
}

/* Form */
.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--grey-lo);
  border-radius: var(--radius-lg);
  padding: 48px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg-elevated);
  border: 1.5px solid var(--grey-lo);
  border-radius: var(--radius);
  padding: 14px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color var(--transition);
  -webkit-appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A7268' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--grey-mid); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group input.error,
.form-group select.error,
.form-group textarea.error { border-color: #C04040; }
.form-error-msg {
  font-size: 12px;
  color: #E06060;
  margin-top: 5px;
  display: none;
}
.form-error-msg.visible { display: block; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none;
  text-align: center;
  padding: 40px;
}
.form-success.visible { display: block; }
.form-success-icon { font-size: 48px; margin-bottom: 16px; color: var(--gold); }
.form-success h3 { font-family: var(--font-display); font-size: 32px; margin-bottom: 12px; }
.form-success p { color: var(--grey-hi); }

/* ── Blog ──────────────────────────────────────────────────── */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 60px;
  align-items: start;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--grey-lo);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}
.blog-card:hover { border-color: var(--gold-border); transform: translateY(-4px); }
.blog-card-img {
  aspect-ratio: 16/9;
  background: var(--bg-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--grey-lo);
}
.blog-card-img-placeholder {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-lo);
}
.blog-card-body { padding: 24px; }
.blog-card-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.blog-card-title {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.15;
}
.blog-card a:hover .blog-card-title { color: var(--gold); }
.blog-card-excerpt { font-size: 14px; color: var(--grey-mid); margin-bottom: 16px; line-height: 1.6; }
.blog-card-meta { font-size: 12px; color: var(--grey-mid); display: flex; align-items: center; gap: 12px; }
.blog-card-meta .sep { width: 3px; height: 3px; border-radius: 50%; background: var(--grey-lo); }

/* Blog sidebar */
.blog-sidebar { position: sticky; top: calc(var(--nav-h) + 24px); }
.sidebar-widget {
  background: var(--bg-card);
  border: 1px solid var(--grey-lo);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 24px;
}
.sidebar-widget h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--grey-lo);
}
.sidebar-cta { background: var(--bg-elevated); border-color: var(--gold-border); text-align: center; }
.sidebar-cta h4 { color: var(--gold); border-color: rgba(201,146,42,0.2); }
.sidebar-cta p { font-size: 14px; color: var(--grey-hi); margin-bottom: 20px; line-height: 1.6; }
.sidebar-posts li { padding: 10px 0; border-bottom: 1px solid var(--grey-lo); }
.sidebar-posts li:last-child { border-bottom: none; }
.sidebar-posts a { font-size: 13px; color: var(--grey-hi); line-height: 1.4; transition: color var(--transition); display: block; margin-bottom: 4px; }
.sidebar-posts a:hover { color: var(--gold); }
.sidebar-posts .meta { font-size: 11px; color: var(--grey-mid); }
.sidebar-cats { display: flex; flex-wrap: wrap; gap: 8px; }
.sidebar-cat {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-hi);
  background: var(--bg-elevated);
  border: 1px solid var(--grey-lo);
  padding: 5px 12px;
  border-radius: 20px;
  transition: var(--transition);
}
.sidebar-cat:hover { border-color: var(--gold); color: var(--gold); }

/* Blog post */
.post-breadcrumb {
  padding: calc(var(--nav-h) + 24px) 0 0;
  font-size: 12px;
  color: var(--grey-mid);
  letter-spacing: 0.05em;
}
.post-breadcrumb a { color: var(--grey-mid); transition: color var(--transition); }
.post-breadcrumb a:hover { color: var(--gold); }
.post-breadcrumb span { color: var(--grey-lo); margin: 0 8px; }
.post-hero {
  padding: 40px 0 60px;
}
.post-tag-date {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.post-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--gold-dim);
  color: var(--gold);
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid var(--gold-border);
}
.post-meta { font-size: 12px; color: var(--grey-mid); }
.post-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 72px);
  letter-spacing: 0.02em;
  line-height: 1.0;
  max-width: 20ch;
  margin-bottom: 0;
}
.post-featured-img {
  width: 100%;
  aspect-ratio: 21/9;
  background: var(--bg-elevated);
  border: 1px solid var(--grey-lo);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
  overflow: hidden;
  color: var(--grey-lo);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.post-body-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 60px;
  align-items: start;
}
.post-body { max-width: 680px; }
.post-body h2 {
  font-family: var(--font-display);
  font-size: 30px;
  letter-spacing: 0.03em;
  margin: 40px 0 16px;
  color: var(--white);
}
.post-body h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  margin: 32px 0 12px;
  color: var(--white);
}
.post-body p { font-size: 16px; color: var(--grey-hi); line-height: 1.85; margin-bottom: 20px; }
.post-body ul { margin-bottom: 20px; }
.post-body ul li { font-size: 16px; color: var(--grey-hi); padding: 6px 0 6px 20px; position: relative; line-height: 1.7; }
.post-body ul li::before { content: ''; position: absolute; left: 0; top: 14px; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.post-pullquote {
  border-left: 3px solid var(--gold);
  padding: 20px 28px;
  margin: 32px 0;
  background: var(--bg-elevated);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.post-pullquote p {
  font-family: var(--font-serif);
  font-size: 20px;
  font-style: italic;
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 0;
}
.post-author {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--grey-lo);
  display: flex;
  align-items: center;
  gap: 20px;
}
.post-author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 2px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--gold);
  flex-shrink: 0;
}
.post-author-name { font-size: 14px; font-weight: 600; color: var(--white); }
.post-author-role { font-size: 12px; color: var(--grey-mid); }
.post-cta {
  background: var(--bg-elevated);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin-top: 48px;
  text-align: center;
}
.post-cta p { font-size: 16px; color: var(--grey-hi); margin-bottom: 20px; }
.post-sidebar { position: sticky; top: calc(var(--nav-h) + 24px); }
.related-posts { padding: 80px 0; border-top: 1px solid var(--grey-lo); }
.related-posts h2 {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 0.04em;
  margin-bottom: 32px;
}

/* ── Hero background image ─────────────────────────────────── */
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.13;
  filter: saturate(0.4);
  z-index: 0;
}

/* ── Homepage service card thumbnail ───────────────────────── */
.service-card-img {
  margin: -40px -32px 28px;
  width: calc(100% + 64px);
  height: 148px;
  overflow: hidden;
  position: relative;
}
.service-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, var(--bg-card) 100%);
  pointer-events: none;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.45) brightness(0.7);
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1), filter 0.4s ease;
  display: block;
}
.service-card:hover .service-card-img img {
  transform: scale(1.06);
  filter: saturate(0.65) brightness(0.8);
}

/* ── Scene strip (homepage image break) ────────────────────── */
.scene-strip {
  position: relative;
  height: 380px;
  overflow: hidden;
}
.scene-strip > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.35) brightness(0.85);
  display: block;
}
.scene-strip-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(13,13,13,0.92) 0%, rgba(13,13,13,0.55) 55%, rgba(13,13,13,0.80) 100%);
  display: flex;
  align-items: center;
}
.scene-strip-text {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.5vw, 62px);
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1.02;
  max-width: 18ch;
}
.scene-strip-text em {
  font-style: normal;
  color: var(--gold);
  display: block;
}
.scene-strip-rule {
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin-top: 20px;
}

/* ── Services page: visual image panel ─────────────────────── */
.service-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.6) brightness(0.75);
  transition: filter 0.5s ease, transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.service-visual:hover img {
  filter: saturate(0.85) brightness(0.9);
  transform: scale(1.03);
}

/* ── Image handling ────────────────────────────────────────── */
.portfolio-img img,
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.portfolio-card:hover .portfolio-img img { transform: scale(1.06); }
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.post-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}

/* ── Scroll animations ─────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-in {
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1);
}
.fade-in.visible { opacity: 1; }

/* Stagger children */
.stagger > * { opacity: 0; transform: translateY(24px); transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1), transform 0.6s cubic-bezier(0.4,0,0.2,1); }
.stagger.visible > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0s; }
.stagger.visible > *:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.1s; }
.stagger.visible > *:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.2s; }
.stagger.visible > *:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.3s; }
.stagger.visible > *:nth-child(5) { opacity: 1; transform: none; transition-delay: 0.4s; }
.stagger.visible > *:nth-child(6) { opacity: 1; transform: none; transition-delay: 0.5s; }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --section-py: 80px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .service-block-inner { grid-template-columns: 1fr; gap: 40px; }
  .service-block-inner.reverse { direction: ltr; }
  .story-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .blog-layout { grid-template-columns: 1fr; }
  .blog-sidebar { display: none; }
  .post-body-layout { grid-template-columns: 1fr; }
  .post-sidebar { display: none; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --section-py: 60px; --nav-h: 64px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; gap: 1px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .pain-points { grid-template-columns: 1fr; }
  .care-plans-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .hero h1 { font-size: clamp(48px, 14vw, 72px); }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .proof-bar-inner { gap: 20px; }
  .proof-divider { display: none; }
  .post-author { flex-direction: column; text-align: center; }
}

/* ============================================================
   LIGHT THEME OVERRIDES
   Variables handle most changes; these patches fix hardcoded
   dark values and keep the hero/footer intentionally dark.
   ============================================================ */

/* ── Body grain: warm paper texture on light bg ─────────────── */
body::before { opacity: 0.025; }

/* ── Nav: light bg when scrolled, dark text ─────────────────── */
/* Default (transparent): assume dark hero — light text */
.site-nav .nav-logo { color: #F2ECE4; }
.site-nav .nav-links a { color: #C8C0B4; }
/* Inner pages (no full hero): nav goes light immediately via .scrolled */
.site-nav.scrolled .nav-logo { color: var(--white); }
.site-nav.scrolled .nav-links a { color: var(--grey-hi); }
.site-nav.scrolled {
  background: rgba(244,237,225,0.92);
  box-shadow: 0 1px 0 rgba(184,130,28,0.14);
}
.site-nav.scrolled .nav-logo { color: var(--white); }
.site-nav.scrolled .nav-links a { color: var(--grey-hi); }

/* Nav on the dark hero: keep text readable (hero is still dark) */
.hero ~ * .site-nav { color: var(--white); }

/* ── Hamburger: dark lines on light ─────────────────────────── */
.nav-hamburger span { background: var(--white); }

/* ── Mobile nav overlay: stays dark ─────────────────────────── */
.nav-mobile {
  background: rgba(14,12,10,0.97);
}
.nav-mobile a { color: var(--dark-mid); }
.nav-mobile a:hover { color: var(--gold); }

/* ── Hero: stays dark ───────────────────────────────────────── */
.hero {
  background: var(--dark);
}
.hero-bg-gradient {
  background:
    radial-gradient(ellipse 80% 60% at 60% 30%, rgba(184,130,28,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 10% 80%, rgba(184,130,28,0.05) 0%, transparent 60%),
    linear-gradient(180deg, var(--dark) 0%, #0A0806 100%);
}
.hero h1 { color: #F2ECE4; }
.hero h1 em { color: var(--gold); }
.hero-sub { color: #C8C0B4; }
.hero-eyebrow { color: var(--gold); }
.hero-scroll { color: #7A7268; }
.hero .btn-outline {
  border-color: rgba(242,236,228,0.32);
  color: #F2ECE4;
}
.hero .btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.hero-bg-img { opacity: 0.11; filter: saturate(0.35); }

/* ── Proof bar: light card bg ───────────────────────────────── */
.proof-bar {
  background: var(--bg-card);
  border-color: var(--grey-lo);
}
.proof-location { color: var(--grey-mid); }
.proof-stat-label { color: var(--grey-mid); }

/* ── Section alternation on light ───────────────────────────── */
.section-dark { background: var(--bg-elevated); }

/* ── Inner page hero: light with gold tint ──────────────────── */
.hero-inner-bg {
  background: linear-gradient(180deg, rgba(184,130,28,0.05) 0%, transparent 100%);
}

/* ── Btn outline: dark border on light bg ───────────────────── */
.btn-outline {
  border-color: rgba(28,20,16,0.22);
  color: var(--white);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ── Cards: subtle shadow instead of dark borders ───────────── */
.service-card,
.pricing-card,
.testimonial-card,
.blog-card,
.portfolio-card,
.pain-point,
.value-item,
.contact-form-wrap,
.sidebar-widget,
.faq-item {
  box-shadow: 0 1px 3px rgba(28,20,16,0.04), 0 4px 16px rgba(28,20,16,0.07);
}
.service-card { border-bottom: none; }
.pricing-card.featured {
  box-shadow: 0 2px 8px rgba(184,130,28,0.12), 0 8px 32px rgba(184,130,28,0.14);
}

/* ── Pricing feature borders on light ───────────────────────── */
.pricing-features li { border-color: rgba(213,201,184,0.7); }

/* ── Why grid: light ────────────────────────────────────────── */
.why-item { background: var(--bg-card); }
.why-number { color: rgba(184,130,28,0.12); border-color: var(--gold-border); }
.why-item h3 { color: var(--gold); }

/* ── Values: light ──────────────────────────────────────────── */
.value-item { background: var(--bg-card); }

/* ── Final CTA: warm dark panel on light site ───────────────── */
.final-cta {
  background: var(--dark);
  border-color: rgba(184,130,28,0.2);
}
.final-cta h2 { color: #F2ECE4; }
.final-cta p { color: #C8C0B4; }

/* ── Scene strip: light overlay ─────────────────────────────── */
.scene-strip-overlay {
  background: linear-gradient(105deg,
    rgba(244,237,225,0.93) 0%,
    rgba(244,237,225,0.58) 50%,
    rgba(244,237,225,0.82) 100%);
}
.scene-strip-text { color: var(--white); }
.scene-strip > img { filter: saturate(0.5) brightness(1.0); }

/* ── Service card thumbnails: less dark filter on light ─────── */
.service-card-img::after {
  background: linear-gradient(to bottom, transparent 40%, var(--bg-card) 100%);
}
.service-card-img img { filter: saturate(0.55) brightness(0.85); }
.service-card:hover .service-card-img img { filter: saturate(0.75) brightness(0.95); }

/* ── Service visuals on services page ───────────────────────── */
.service-visual img { filter: saturate(0.75) brightness(0.88); }
.service-visual:hover img { filter: saturate(0.95) brightness(0.97); }

/* ── Portfolio overlay (on dark photos, stays dark) ─────────── */
.portfolio-overlay {
  background: linear-gradient(to top, rgba(14,12,10,0.88), transparent);
}

/* ── Form inputs: white on light bg ─────────────────────────── */
.form-group input,
.form-group select,
.form-group textarea {
  background: #FFFFFF;
  border-color: var(--grey-lo);
  color: var(--white);
}
.contact-form-wrap { background: #FFFFFF; }

/* ── Story visual text: very faint on light ─────────────────── */
.story-visual { background: var(--bg-elevated); }
.story-visual-text { color: rgba(184,130,28,0.06); }

/* ── Footer: stays dark ─────────────────────────────────────── */
.site-footer {
  background: var(--dark-card);
  border-color: var(--dark-border);
}
.site-footer .nav-logo { color: var(--dark-text); }
.site-footer .nav-logo span { color: var(--gold); }
.site-footer .footer-brand p { color: var(--dark-muted); }
.site-footer .footer-col h4 { color: var(--dark-muted); }
.site-footer .footer-col ul li a { color: var(--dark-mid); }
.site-footer .footer-col ul li a:hover { color: var(--gold); }
.site-footer .footer-contact-item { color: var(--dark-mid); }
.site-footer .footer-contact-item a { color: var(--dark-mid); }
.site-footer .footer-social a {
  border-color: var(--dark-border);
  color: var(--dark-muted);
}
.site-footer .footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.site-footer .footer-bottom {
  border-color: var(--dark-border);
}
.site-footer .footer-bottom p { color: var(--dark-muted); }

/* ── Post pullquote on light ─────────────────────────────────── */
.post-pullquote { background: var(--bg-elevated); }
.post-pullquote p { color: var(--white); }

/* ── Post body text on light ─────────────────────────────────── */
.post-body ul li::before { background: var(--gold); }
.post-body h2, .post-body h3 { color: var(--white); }
.post-body p, .post-body ul li { color: var(--grey-hi); }

/* ── Sidebar CTA on light ────────────────────────────────────── */
.sidebar-cta { background: var(--bg-elevated); border-color: var(--gold-border); }
.sidebar-cta h4 { border-color: rgba(184,130,28,0.18); }

/* ── Contact reassure ────────────────────────────────────────── */
.contact-reassure { background: var(--bg-elevated); border-color: var(--gold-border); }

