/* =============================================
   SELF RELIANCE — style.css
   Rust · Dusty Rose · Parchment · Phoenix 90s
   Playfair Display + Bitter + Source Code Pro
   ============================================= */

:root {
  /* ── Brand colors ── */
  --rust:        #b03424;   /* primary — slightly muted */
  --rust-hover:  #942b1c;
  --rust-lt:     #c94e36;
  --rose:        #b85870;   /* accent rose — only on dark BGs */
  --rose-pale:   #f2e3e7;   /* tint for light backgrounds */
  --blush:       #dea8b2;
  --marigold:    #b87e18;

  /* ── Neutrals ── */
  --ink:         #1e1208;   /* near-black body text */
  --ink-mid:     #3a1e14;   /* headings on light */
  --ink-lt:      #5a3622;   /* secondary text — still AA contrast */
  --parchment:   #ede0cc;   /* dusty warm page bg */
  --cream:       #f2e5d0;   /* card / form bg */
  --sand:        #d8c6ae;   /* borders */
  --sand-dk:     #b89878;   /* muted borders */
  --white:       #faf4ec;

  /* ── Dark section colors ── */
  --dark-bg:     #2a1c12;   /* lighter warm dark */
  --dark-card:   #382618;
  --dark-border: rgba(255,200,170,.14);
  --dark-text:   rgba(255,232,218,.9);   /* high contrast on dark */
  --dark-muted:  rgba(255,212,192,.6);

  /* ── Misc ── */
  --radius:      3px;
  --radius-lg:   5px;
  --shadow-sm:   0 2px 8px rgba(90,20,5,.10);
  --shadow-md:   0 8px 28px rgba(90,20,5,.16);
  --shadow-lg:   0 20px 56px rgba(90,20,5,.22);
  --t:           0.22s ease;

  --font-d:  'Playfair Display', Georgia, serif;
  --font-b:  'Bitter', Georgia, serif;
  --font-m:  'Source Code Pro', monospace;
}

/* ── Reset & base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-b);
  background: var(--parchment);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
}

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

/* ── Typography helpers ── */
em { font-family: var(--font-d); font-style: italic; color: var(--rust); }
strong { font-weight: 600; }
p { font-weight: 300; }

/* ── Shared layout ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-tag {
  display: inline-block;
  font-family: var(--font-m); font-size: 0.7rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--rust); border-bottom: 1.5px solid var(--blush);
  padding-bottom: 3px; margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-d); font-weight: 900;
  font-size: clamp(1.85rem, 3.4vw, 2.75rem);
  line-height: 1.12; color: var(--ink-mid); margin-bottom: 16px;
}
.section-sub {
  font-size: 1rem; font-weight: 300;
  color: var(--ink-lt); max-width: 560px; line-height: 1.72;
}
.section-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.section-header .section-sub { margin: 0 auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-b); font-weight: 500; font-size: 0.9rem;
  padding: 13px 28px; border-radius: var(--radius); text-decoration: none;
  cursor: pointer; border: none; letter-spacing: 0.02em;
  transition: background var(--t), color var(--t), box-shadow var(--t), transform var(--t);
  white-space: nowrap;
}
.btn-rust {
  background: var(--rust); color: var(--white);
  box-shadow: 0 3px 14px rgba(184,58,34,.32);
}
.btn-rust:hover { background: var(--rust-hover); transform: translateY(-2px); box-shadow: 0 5px 20px rgba(184,58,34,.42); }
.btn-ghost {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,.55);
}
.btn-ghost:hover { border-color: white; color: white; }
.btn-outline {
  background: transparent; color: var(--rust);
  border: 1.5px solid var(--rust);
}
.btn-outline:hover { background: var(--rust); color: var(--white); }
.btn-full { width: 100%; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(237,224,204,.97); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--sand);
  transition: box-shadow var(--t);
}
.nav.scrolled { box-shadow: var(--shadow-sm); }
.nav-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 24px;
  height: 66px; display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.logo-mark {
  width: 38px; height: 38px; border-radius: 2px;
  background: var(--rust); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-m); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.04em; flex-shrink: 0;
}
.logo-wordmark { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name {
  font-family: var(--font-d); font-size: 1.15rem; font-weight: 700;
  color: var(--ink-mid);
}
.logo-sub {
  font-family: var(--font-m); font-size: 0.6rem; font-weight: 400;
  color: var(--ink-lt); letter-spacing: 0.08em;
}
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a {
  text-decoration: none; font-size: 0.88rem; font-weight: 400;
  color: var(--ink-lt); transition: color var(--t);
}
.nav-links a:hover { color: var(--rust); }
.nav-cta {
  background: var(--rust) !important; color: var(--white) !important;
  padding: 9px 20px; border-radius: var(--radius);
  font-weight: 500 !important;
  box-shadow: 0 2px 10px rgba(184,58,34,.25);
}
.nav-cta:hover { background: var(--rust-hover) !important; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; }
.mobile-menu {
  display: none; flex-direction: column;
  padding: 12px 24px 20px; border-top: 1px solid var(--sand); gap: 0;
}
.mobile-menu a {
  text-decoration: none; color: var(--ink-lt); padding: 11px 0;
  font-size: 0.95rem; border-bottom: 1px solid var(--sand);
}
.mobile-menu.open { display: flex; }

/* ── HERO ── */
.hero { position: relative; min-height: 100vh; display: flex; align-items: flex-end; padding-top: 66px; }

/* Image wrapper */
.hero-img-wrap {
  position: absolute; inset: 0;
  background: var(--dark-bg);
  overflow: hidden;
}
.hero-img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  display: block; opacity: 0.82;
}
/* When image missing — show a warm dark placeholder */
.hero-img-wrap.img-missing { background: linear-gradient(160deg, #2a1008 0%, #4a1c10 50%, #6b2c18 100%); }
.hero-img-wrap.img-missing .hero-img { display: none; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(15,8,2,.92) 0%,
    rgba(15,8,2,.62) 38%,
    rgba(15,8,2,.28) 100%
  );
}

/* Photo placeholder label — visible until real photo added */
.img-placeholder-label {
  position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%);
  background: rgba(0,0,0,.65); color: rgba(255,200,160,.9);
  font-family: var(--font-m); font-size: 0.7rem; padding: 5px 14px;
  border-radius: 3px; white-space: nowrap; pointer-events: none;
  border: 1px solid rgba(255,200,160,.2);
}
.img-missing .img-placeholder-label { display: block; }
.hero-img-wrap:not(.img-missing) .img-placeholder-label { display: block; } /* always shown until removed */

/* Hero content */
.hero-body {
  position: relative; z-index: 2;
  padding: 60px 24px 72px;
  max-width: 1160px; margin: 0 auto; width: 100%;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-m); font-size: 0.73rem; font-weight: 600;
  color: rgba(255,210,175,.82); letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 18px;
  animation: fadeUp 0.7s ease both;
}
.blink-dot {
  width: 7px; height: 7px; border-radius: 1px;
  background: var(--blush);
  animation: blink 1.4s steps(1) infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

.hero-title {
  font-family: var(--font-d); font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  font-weight: 900; line-height: 1.05; color: var(--white);
  text-shadow: 0 2px 20px rgba(0,0,0,.5);
  margin-bottom: 18px;
  animation: fadeUp 0.7s 0.1s ease both;
}
.hero-title em { color: var(--blush); }

.hero-sub {
  font-size: 1.05rem; font-weight: 300; color: rgba(255,230,210,.85);
  max-width: 520px; line-height: 1.75; margin-bottom: 32px;
  animation: fadeUp 0.7s 0.18s ease both;
}
.hero-actions {
  display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 44px;
  animation: fadeUp 0.7s 0.26s ease both;
}

/* Price pills */
.hero-pills {
  display: flex; gap: 12px; flex-wrap: wrap;
  animation: fadeUp 0.7s 0.34s ease both;
}
.pill {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,200,160,.25);
  backdrop-filter: blur(6px);
  border-radius: var(--radius); padding: 14px 20px;
  display: flex; flex-direction: column; min-width: 100px;
}
.pill-price {
  font-family: var(--font-d); font-size: 1.5rem; font-weight: 900;
  color: var(--white); line-height: 1.1;
}
.pill-price small { font-size: 0.85rem; }
.pill-label {
  font-family: var(--font-m); font-size: 0.65rem; font-weight: 600;
  color: rgba(255,200,160,.65); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 3px;
}

/* ── MARQUEE ── */
.marquee-strip {
  background: var(--rust); overflow: hidden; padding: 11px 0;
  border-top: 2px solid var(--rust-hover);
  border-bottom: 2px solid var(--rust-hover);
}
.marquee-track {
  display: flex; white-space: nowrap;
  animation: marquee 28s linear infinite;
}
.marquee-track span {
  font-family: var(--font-m); font-size: 0.78rem; font-weight: 600;
  color: rgba(255,235,215,.92); padding: 0 14px;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.sep { color: rgba(255,180,150,.6) !important; }
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ── LOCAL-FIRST SECTION ── */
.local-section { background: var(--parchment); }

.split-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center; margin-bottom: 72px;
}
.split-single { grid-template-columns: 1fr; max-width: 640px; }
.split-text p { color: var(--ink-lt); margin-bottom: 14px; font-size: 0.97rem; }
.split-text .section-title { margin-bottom: 20px; }
.split-text strong { color: var(--ink); }
.split-text em { color: var(--rust); }

/* Image frame used across all photo slots */
.img-frame {
  position: relative; width: 100%; border-radius: var(--radius-lg);
  overflow: hidden; background: var(--sand);
  aspect-ratio: 4/3;
}
.img-frame img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  border-radius: var(--radius-lg);
}
.img-frame.img-missing { background: linear-gradient(135deg, var(--sand) 0%, var(--rose-pale) 100%); }
.img-frame.img-missing img { display: none; }
.img-frame .img-placeholder-label {
  position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%);
  background: rgba(30,10,5,.55); color: rgba(255,210,185,.9);
  font-family: var(--font-m); font-size: 0.68rem; padding: 5px 14px;
  border-radius: 3px; white-space: nowrap; pointer-events: none;
  border: 1px solid rgba(200,150,120,.25);
}

/* Pillars */
.pillars {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.pillar {
  background: var(--cream); border: 1.5px solid var(--sand);
  border-radius: var(--radius); padding: 24px;
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
}
.pillar:hover { border-color: var(--blush); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.pillar h4 { font-family: var(--font-d); font-size: 0.98rem; font-weight: 700; color: var(--ink-mid); margin-bottom: 6px; }
.pillar p { font-size: 0.83rem; color: var(--ink-lt); line-height: 1.62; }

/* ── ABOUT SECTION ── */
.about-section { background: var(--cream); border-top: 1px solid var(--sand); border-bottom: 1px solid var(--sand); }

/* 3 photo slots */
.about-photos {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 16px; margin-bottom: 56px;
}
.about-photo-lg { align-self: stretch; }
.about-photo-lg .img-frame { aspect-ratio: auto; height: 100%; min-height: 300px; }
.about-photo-stack { display: flex; flex-direction: column; gap: 16px; }
.about-photo-stack .img-frame { aspect-ratio: 4/3; }

/* About body */
.about-body {
  display: grid; grid-template-columns: 1.5fr 1fr; gap: 64px; align-items: start;
}
.about-copy p { font-size: 0.97rem; color: var(--ink-lt); margin-bottom: 14px; line-height: 1.75; }
.about-copy strong { color: var(--ink); }

.about-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.astat {
  background: var(--parchment); border: 1.5px solid var(--sand);
  border-radius: var(--radius); padding: 20px 16px;
  display: flex; flex-direction: column;
}
.astat-num {
  font-family: var(--font-d); font-size: 2.6rem; font-weight: 900;
  color: var(--rust); line-height: 1;
}
.astat-num small { font-size: 1.5rem; color: var(--rust-lt); }
.astat-label { font-family: var(--font-m); font-size: 0.68rem; color: var(--ink-lt); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 6px; line-height: 1.4; }

/* ── WHO WE HELP ── */
.cases-section { background: var(--parchment); }
.cases-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.case-card {
  background: var(--cream); border: 1.5px solid var(--sand);
  border-radius: var(--radius-lg); padding: 28px 22px;
  position: relative; overflow: hidden;
  transition: box-shadow var(--t), transform var(--t), border-color var(--t);
}
.case-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--sand); transition: background var(--t);
}
.case-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--blush); }
.case-card:hover::after { background: var(--rust); }
.case-dark { background: var(--dark-card); border-color: var(--dark-border); }
.case-dark h3 { color: var(--white); }
.case-dark p { color: var(--dark-muted); }
.case-dark .case-num { color: rgba(255,180,150,.3); }
.case-dark .case-tags span { background: rgba(255,255,255,.08); color: rgba(255,200,175,.75); border-color: rgba(255,180,150,.15); }
.case-dark::after { background: var(--dark-border); }
.case-dark:hover::after { background: var(--rose); }
.case-wide { grid-column: span 2; }
.case-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 12px; }
.case-num { font-family: var(--font-m); font-size: 0.68rem; color: var(--sand-dk); letter-spacing: 0.1em; }
.case-card h3 { font-family: var(--font-d); font-size: 1.1rem; font-weight: 700; color: var(--ink-mid); margin-bottom: 8px; }
.case-card p { font-size: 0.84rem; color: var(--ink-lt); line-height: 1.65; margin-bottom: 14px; }
.case-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.case-tags span {
  font-family: var(--font-m); font-size: 0.65rem; padding: 3px 10px;
  background: var(--rose-pale); color: var(--rust);
  border-radius: 3px; border: 1.5px solid var(--blush);
}

/* ── SERVICES ── */
.services-section { background: var(--cream); border-top: 1px solid var(--sand); }
.svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.svc-card {
  background: var(--parchment); border: 1.5px solid var(--sand);
  border-radius: var(--radius-lg); padding: 36px 30px;
  transition: box-shadow var(--t), transform var(--t), border-color var(--t);
}
.svc-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--blush); }
.svc-dark { background: var(--dark-bg); border-color: transparent; }
.svc-dark:hover { border-color: var(--rust); }
.svc-dark h3 { color: var(--white); }
.svc-dark p { color: rgba(255,225,210,.82); }
.svc-dark ul li { color: rgba(255,220,205,.78); border-color: rgba(255,200,170,.14); }
.svc-dark ul li::before { color: var(--blush); }
.svc-dark .svc-num { color: rgba(255,180,150,.3); }
.svc-dark .svc-price { color: var(--blush); border-color: rgba(255,200,170,.18); }
.svc-num { font-family: var(--font-m); font-size: 0.68rem; letter-spacing: 0.1em; color: var(--sand-dk); display: block; margin-bottom: 12px; }
.svc-card h3 { font-family: var(--font-d); font-size: 1.25rem; font-weight: 700; color: var(--ink-mid); margin-bottom: 10px; }
.svc-card p { font-size: 0.88rem; color: var(--ink-lt); line-height: 1.7; margin-bottom: 18px; }
.svc-card ul { list-style: none; margin-bottom: 20px; }
.svc-card ul li {
  font-size: 0.84rem; color: var(--ink-lt); font-weight: 300;
  padding: 5px 0 5px 18px; position: relative;
  border-bottom: 1px solid var(--sand);
}
.svc-card ul li::before { content: '→'; position: absolute; left: 0; color: var(--rust); font-size: 0.78rem; top: 6px; }
.svc-price { font-family: var(--font-d); font-size: 1.05rem; font-weight: 700; color: var(--rust); padding-top: 16px; border-top: 1.5px solid var(--sand); }

/* Tool stack */
.tool-stack { margin-top: 48px; text-align: center; }
.tool-stack-label {
  font-family: var(--font-m); font-size: 0.7rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--sand-dk); margin-bottom: 16px;
}
.tools {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
}
.tools span {
  font-family: var(--font-m); font-size: 0.78rem; font-weight: 600;
  color: var(--ink-mid); background: var(--cream);
  border: 1.5px solid var(--sand); border-radius: 6px;
  padding: 7px 16px; letter-spacing: 0.04em;
  transition: border-color var(--t), color var(--t), background var(--t);
}
.tools span:hover { border-color: var(--rust); color: var(--rust); background: var(--rose-pale); }

/* ── RECOMMENDED SETUP ── */
.setup-section { background: var(--dark-bg); }
.setup-section .section-tag { color: var(--blush); border-color: rgba(200,130,140,.35); }
.setup-section .section-title { color: var(--white); }
.setup-section .section-sub { color: var(--dark-muted); }

.setup-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-bottom: 40px;
}
.setup-card {
  background: var(--dark-card); border: 1.5px solid var(--dark-border);
  border-radius: var(--radius-lg); padding: 32px 26px;
  display: flex; flex-direction: column; gap: 16px;
  transition: border-color var(--t), transform var(--t), box-shadow var(--t);
}
.setup-card:hover { border-color: var(--rust); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.setup-num {
  font-family: var(--font-m); font-size: 0.66rem; font-weight: 600;
  letter-spacing: 0.14em; color: rgba(255,180,150,.3); text-transform: uppercase;
}
.setup-body { display: flex; flex-direction: column; gap: 8px; }
.setup-body h3 {
  font-family: var(--font-d); font-size: 1.2rem; font-weight: 700; color: var(--white);
}
.setup-role {
  font-family: var(--font-m); font-size: 0.68rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--blush);
}
.setup-body > p {
  font-size: 0.86rem; color: var(--dark-muted); line-height: 1.68; margin-top: 4px;
}
.setup-specs {
  list-style: none; margin-top: 8px;
  border-top: 1px solid var(--dark-border); padding-top: 14px;
}
.setup-specs li {
  font-size: 0.82rem; color: var(--dark-text); font-weight: 300;
  padding: 5px 0 5px 16px; position: relative;
  border-bottom: 1px solid var(--dark-border);
}
.setup-specs li::before { content: '→'; position: absolute; left: 0; color: var(--rust); font-size: 0.76rem; top: 6px; }

.setup-footer {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
  background: var(--dark-card); border: 1.5px solid var(--dark-border);
  border-radius: var(--radius); padding: 22px 28px;
}
.setup-note { display: flex; flex-direction: column; gap: 5px; flex: 1; min-width: 240px; }
.setup-note-label {
  font-family: var(--font-m); font-size: 0.66rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--blush);
}
.setup-note-text { font-size: 0.84rem; color: var(--dark-muted); line-height: 1.65; }

@media (max-width: 1024px) {
  .setup-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto 40px; }
  .setup-footer { flex-direction: column; align-items: flex-start; }
}

/* ── PRICING ── */
.pricing-section { background: var(--dark-bg); }
.pricing-section .section-tag { color: var(--blush); border-color: rgba(200,130,140,.35); }
.pricing-section .section-title { color: var(--white); }
.pricing-section .section-sub { color: var(--dark-muted); }

.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 32px; }
.price-card {
  background: var(--dark-card); border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg); padding: 36px 28px;
  position: relative; transition: border-color var(--t), transform var(--t), box-shadow var(--t);
}
.price-card:hover { border-color: rgba(200,130,140,.4); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.price-featured {
  background: var(--rust); border-color: var(--rust);
  box-shadow: var(--shadow-lg);
}
.price-featured:hover { background: var(--rust-lt); border-color: var(--rust-lt); }
.price-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--marigold); color: var(--ink);
  font-family: var(--font-m); font-size: 0.62rem; font-weight: 700;
  padding: 4px 14px; border-radius: 3px;
  text-transform: uppercase; letter-spacing: 0.08em; white-space: nowrap;
}
.price-eyebrow {
  font-family: var(--font-m); font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.14em; color: var(--blush); text-transform: uppercase; margin-bottom: 12px;
}
.price-featured .price-eyebrow { color: rgba(255,230,215,.75); }
.price-num {
  font-family: var(--font-d); font-size: 3rem; font-weight: 900;
  color: var(--white); line-height: 1; margin-bottom: 4px;
}
.price-num span { font-size: 1.2rem; }
.price-freq { font-size: 0.78rem; color: var(--dark-muted); margin-bottom: 24px; }
.price-featured .price-freq { color: rgba(255,220,210,.7); }
.price-list { list-style: none; margin-bottom: 28px; }
.price-list li {
  font-size: 0.84rem; font-weight: 300; padding: 7px 0;
  border-bottom: 1px solid var(--dark-border);
  color: var(--dark-text);  /* ← high contrast */
}
.price-featured .price-list li { color: rgba(255,235,225,.92); border-color: rgba(255,255,255,.14); }

/* Addons */
.addon-row { display: flex; gap: 14px; flex-wrap: wrap; }
.addon {
  flex: 1; min-width: 200px;
  display: flex; align-items: center; gap: 12px;
  background: var(--dark-card); border: 1px solid var(--dark-border);
  border-radius: var(--radius); padding: 14px 18px;
}
.addon div { display: flex; flex-direction: column; gap: 2px; }
.addon strong { font-size: 0.88rem; color: var(--dark-text); font-weight: 500; }
.addon span:last-child { font-family: var(--font-d); font-size: 0.95rem; color: var(--blush); font-weight: 700; }

/* Pricing footnote */
.pricing-footnote {
  margin-top: 28px; text-align: center;
  font-family: var(--font-m); font-size: 0.68rem;
  color: rgba(255,200,170,.35); line-height: 1.6;
}
.pricing-footnote a { color: rgba(255,200,170,.5); text-decoration: underline; }
.pricing-footnote a:hover { color: var(--blush); }

/* ── CONTACT ── */
.contact-section { background: var(--parchment); }
.contact-wrap { max-width: 600px; }
.contact-left .section-title { margin-top: 10px; }
.contact-left p { font-size: 0.96rem; color: var(--ink-lt); line-height: 1.75; margin-bottom: 14px; }
.contact-details { display: flex; flex-direction: column; gap: 10px; margin: 24px 0; }
.cd-row { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: var(--ink-lt); }
.cd-row a { color: var(--rust); text-decoration: none; }
.cd-row a:hover { text-decoration: underline; }
.phx-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--cream); border: 1px solid var(--sand);
  padding: 9px 16px; border-radius: var(--radius); margin-top: 6px;
  font-family: var(--font-m); font-size: 0.72rem; color: var(--ink-lt);
}


/* ── FOOTER ── */
.footer { background: var(--dark-bg); padding: 64px 0 32px; }
.footer-inner { display: flex; justify-content: space-between; gap: 40px; margin-bottom: 48px; flex-wrap: wrap; }
.footer-brand { max-width: 270px; }
.footer-brand p { font-size: 0.83rem; font-weight: 300; color: var(--dark-muted); line-height: 1.65; margin-top: 14px; }
.footer-locale { font-family: var(--font-m); font-size: 0.68rem; color: rgba(255,180,150,.3) !important; margin-top: 8px !important; letter-spacing: 0.08em; }
.footer-logo .logo-name { color: rgba(255,225,205,.9); }
.footer-logo .logo-sub { color: rgba(255,180,150,.4); }
.footer-cols { display: flex; gap: 56px; }
.fc { display: flex; flex-direction: column; gap: 10px; }
.fc h4 { font-family: var(--font-m); font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,180,150,.3); margin-bottom: 4px; }
.fc a { font-size: 0.84rem; font-weight: 300; color: var(--dark-muted); text-decoration: none; transition: color var(--t); }
.fc a:hover { color: var(--blush); }
.footer-bottom { border-top: 1px solid var(--dark-border); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { font-size: 0.73rem; color: rgba(255,180,150,.2); font-weight: 300; }
.retro-line { font-family: var(--font-m) !important; font-size: 0.66rem !important; color: rgba(255,180,150,.18) !important; letter-spacing: 0.05em; }

/* ── REVEAL ANIMATION ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .split-layout { grid-template-columns: 1fr; gap: 40px; }
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .about-photos { grid-template-columns: 1fr; }
  .about-photo-lg .img-frame { height: 280px; }
  .about-photo-stack { flex-direction: row; }
  .about-body { grid-template-columns: 1fr; gap: 40px; }
  .cases-grid { grid-template-columns: repeat(2, 1fr); }
  .case-wide { grid-column: span 2; }
  .price-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto 32px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .svc-grid { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .cases-grid { grid-template-columns: 1fr; }
  .case-wide { grid-column: span 1; }
  .about-photo-stack { flex-direction: column; }
  .footer-inner { flex-direction: column; }
  .footer-cols { flex-wrap: wrap; gap: 24px; }
  .footer-bottom { flex-direction: column; }
.addon-row { flex-direction: column; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .hero-pills { gap: 8px; }
}
@media (max-width: 480px) {
  .section { padding: 64px 0; }
  .hero-title { font-size: 2.5rem; }
  .section-title { font-size: 1.85rem; }
  .about-stats { grid-template-columns: 1fr; }
}
