/* ============================================================
   THE LAUNDRY LOOP — Main Stylesheet
   Typography: Cormorant Garamond (headings) + DM Sans (body)
   Palette: Warm Editorial — Cognac, Ivory, Warm Near-Black
   ============================================================ */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&family=DM+Sans:wght@400;500;700&display=swap');

/* ---- CSS Variables ---- */
:root {
  --color-primary:      #1D1F18;   /* warm near-black */
  --color-accent:       #C4956A;   /* warm cognac */
  --color-secondary:    #E8DDD0;   /* warm linen */
  --color-bg:           #FAF8F5;   /* warm ivory */
  --color-bg-elevated:  #FFFFFF;
  --color-bg-sage:      #F4EFE8;   /* warm sand */
  --color-bg-sand:      #EDE5D8;   /* deeper warm sand */
  --color-text:         #1D1F18;   /* warm near-black */
  --color-text-muted:   #6A6358;   /* warm gray-brown */
  --color-white:        #FFFFFF;
  --color-border:       #DDD6CC;   /* warm border */
  --color-accent-dark:  #9B6440;   /* deep cognac */
  --color-warm-dark:    #16130F;   /* warm near-black for CTA/footer */

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;

  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2rem;
  --space-xl:  3rem;
  --space-2xl: 5rem;
  --space-3xl: 8rem;

  --section-pad-y: 5rem;
  --section-pad-x: 2rem;
  --container-max: 1200px;

  --radius-sm:   4px;
  --radius-md:   6px;
  --radius-lg:   10px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 4px rgba(29, 31, 24, 0.06);
  --shadow-md: 0 4px 20px rgba(29, 31, 24, 0.09);
  --shadow-lg: 0 12px 48px rgba(29, 31, 24, 0.11);

  --transition-fast: 150ms cubic-bezier(0.16, 1, 0.3, 1);
  --transition-base: 300ms cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  -webkit-font-smoothing: antialiased;
}

img, video, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
input, select, textarea {
  font-family: var(--font-body);
  font-size: 1rem;
}

/* ---- Grain texture overlay ---- */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.022;
  pointer-events: none;
  z-index: 9999;
}

/* ---- Container ---- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--section-pad-x);
  width: 100%;
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--color-primary);
}

h1 { font-size: clamp(2.8rem, 5.5vw, 5rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.25rem; }

p { line-height: 1.7; color: var(--color-text-muted); }

.label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent-dark);
  font-family: var(--font-body);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 700;
  font-family: var(--font-body);
  letter-spacing: 0.02em;
  transition: all var(--transition-base);
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
}
.btn-primary:hover {
  background: #2e3228;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(29, 31, 24, 0.25);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
}
.btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-accent {
  background: var(--color-accent);
  color: var(--color-white);
}
.btn-accent:hover {
  background: var(--color-accent-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196, 149, 106, 0.35);
}

.btn-light {
  background: var(--color-white);
  color: var(--color-primary);
}
.btn-light:hover {
  background: var(--color-bg);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ---- Navigation ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 248, 245, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition-base);
  padding: 0.5rem 0;
}

.nav.scrolled {
  padding: 0.75rem 0;
  border-color: var(--color-border);
  box-shadow: 0 2px 18px rgba(29, 31, 24, 0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo-img {
  width: 200px;
  height: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
}

.nav-links a:hover,
.nav-links a.active { color: var(--color-primary); }

.nav-cta {
  padding: 0.6rem 1.4rem;
  font-size: 0.82rem;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}

.nav-hamburger span {
  display: block;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: all var(--transition-base);
  transform-origin: center;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-bg);
  z-index: 99;
  padding: 6rem 2rem 2rem;
  flex-direction: column;
  gap: 2rem;
  opacity: 0;
  transform: translateY(-10px);
  transition: all var(--transition-base);
  pointer-events: none;
}

.nav-mobile.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.nav-mobile a {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--color-primary);
  display: block;
  letter-spacing: -0.01em;
  transition: color var(--transition-fast);
}

.nav-mobile a:hover { color: var(--color-accent); }

.nav-mobile .btn {
  align-self: flex-start;
  margin-top: 1rem;
}

/* ---- Hero Section ---- */
.hero {
  min-height: 78vh;
  background: var(--color-bg);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 6.5rem 0 4rem;
}

/* Fine dot grid texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(196, 149, 106, 0.18) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  opacity: 0.6;
}

/* warm right ambient glow */
.hero::after {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 55%;
  height: 75%;
  background: radial-gradient(ellipse, rgba(232, 221, 208, 0.55) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content { max-width: 580px; }

.hero-label {
  color: var(--color-accent-dark);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-label::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--color-accent);
  flex-shrink: 0;
  display: block;
}

.hero-headline {
  font-size: clamp(3rem, 5.5vw, 5.2rem);
  color: var(--color-primary);
  margin-bottom: 1.25rem;
  line-height: 1.06;
  font-weight: 700;
}

.hero-headline em {
  font-style: italic;
  color: var(--color-accent);
  font-weight: 600;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  max-width: 460px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Hero visual */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-visual::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(196, 149, 106, 0.18) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero-visual::after {
  content: '';
  position: absolute;
  bottom: -8%;
  left: -8%;
  width: 55%;
  height: 55%;
  background: radial-gradient(circle, rgba(232, 221, 208, 0.35) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero-photo-wrap {
  position: relative;
  z-index: 1;
}

/* ---- Section Headers ---- */
.section-header {
  margin-bottom: 3.5rem;
}

.section-header.centered {
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-header .label { margin-bottom: 0.75rem; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p { font-size: 1.05rem; }

/* ---- Hero Photo ---- */
.hero-photo-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 4/5;
  background: var(--color-bg-sage);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
}

.hero-photo-wrap.hero-photo-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(196, 149, 106, 0.1);
}

.hero-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-photo-wrap:hover .hero-photo-img {
  transform: scale(1.04);
}

.hero-photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem 1.5rem 1.5rem;
  background: linear-gradient(to top, rgba(22, 19, 15, 0.85) 0%, transparent 100%);
}

.hero-photo-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.6rem;
  letter-spacing: 0.05em;
}

.hero-photo-caption p {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(255,255,255,0.92);
  line-height: 1.3;
  margin: 0;
}

/* ---- How It Works Section ---- */
.how-it-works {
  padding: 6rem 0;
  background: var(--color-bg-sage);
}

.loop-wrapper {
  position: relative;
  padding: 1rem 0;
}

.loop-svg-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: visible;
}

/* connector line */
.loop-path {
  fill: none;
  stroke: var(--color-accent);
  stroke-width: 1;
  stroke-dasharray: 5 6;
  stroke-dashoffset: 1000;
  transition: stroke-dashoffset 1.8s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0.4;
}

.loop-path.animate { stroke-dashoffset: 0; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  z-index: 1;
}

/* Editorial step card — borderless, typographic numbers */
.step-card {
  padding: 2.5rem 2rem 2.5rem 0;
  background: transparent;
  border: none;
  border-left: 1px solid var(--color-border);
  position: relative;
  transition: border-color var(--transition-base);
  opacity: 0;
  transform: translateY(20px);
}

.step-card:first-child {
  border-left: none;
  padding-left: 0;
}

.step-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

.step-card:hover {
  border-color: var(--color-accent);
}

.step-card:first-child:hover { border-color: transparent; }

/* Large typographic number as background decoration */
.step-num {
  font-family: var(--font-heading);
  font-size: 5.5rem;
  font-weight: 700;
  color: var(--color-accent);
  opacity: 0.12;
  line-height: 1;
  margin-bottom: -1.5rem;
  display: block;
  /* no circle, no bg */
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  box-shadow: none;
}

.step-icon {
  margin-bottom: 0.85rem;
  position: relative;
  z-index: 1;
  color: var(--color-primary);
}

.step-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
}

.step-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* ---- Service Area Section ---- */
.service-area {
  padding: var(--section-pad-y) 0;
  background: var(--color-bg);
}

.area-card {
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

/* warm left accent bar */
.area-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--color-accent), var(--color-secondary));
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

.area-content { }
.area-content h2 { margin-bottom: 1rem; }
.area-content p { margin-bottom: 2rem; }

.area-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.1rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-primary);
  transition: all var(--transition-fast);
}

.badge:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.badge-icon { font-size: 0.8rem; }

/* Map embed */
.area-map {
  border-radius: var(--radius-md);
  height: 300px;
  overflow: hidden;
  border: 1px solid var(--color-border);
}

/* ---- Why Choose Us ---- */
.why-us {
  padding: 6rem 0;
  background: var(--color-warm-dark);
}

.why-us .section-header .label { color: var(--color-accent); }
.why-us .section-header h2 { color: var(--color-bg); }
.why-us .section-header p { color: rgba(250, 248, 245, 0.65); }

.why-us .feature-card {
  border-left-color: rgba(250, 248, 245, 0.1);
  border-bottom-color: rgba(250, 248, 245, 0.08);
}
.why-us .feature-card:nth-child(4),
.why-us .feature-card:nth-child(5),
.why-us .feature-card:nth-child(6) { border-bottom: none; }
.why-us .feature-card:hover {
  border-left-color: var(--color-accent);
  background: rgba(250, 248, 245, 0.04);
}
.why-us .feature-icon { color: var(--color-accent); }
.why-us .feature-card h3 { color: var(--color-bg); }
.why-us .feature-card p { color: rgba(250, 248, 245, 0.65); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

/* Editorial reassurance tiles — left border accent, no boxes */
.feature-card {
  padding: 2.25rem 2rem 2.25rem 1.75rem;
  border: none;
  border-left: 2px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: transparent;
  transition: border-left-color var(--transition-base), background var(--transition-base);
}

.feature-card:nth-child(1),
.feature-card:nth-child(2),
.feature-card:nth-child(3) {
  border-bottom: 1px solid var(--color-border);
}

.feature-card:nth-child(4),
.feature-card:nth-child(5),
.feature-card:nth-child(6) {
  border-bottom: none;
}

.feature-card:hover {
  border-left-color: var(--color-accent);
  background: var(--color-bg);
}

.feature-icon {
  width: auto;
  height: auto;
  background: none;
  box-shadow: none;
  border-radius: 0;
  margin-bottom: 1rem;
  display: block;
  color: var(--color-primary);
}

.feature-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.55rem;
  color: var(--color-primary);
  letter-spacing: -0.01em;
}

.feature-card p { font-size: 0.9rem; line-height: 1.7; }

/* ---- Founder Preview — Editorial Light Spread ---- */
.founder-preview {
  padding: 6.5rem 0;
  background: var(--color-bg);
  position: relative;
  overflow: hidden;
}

/* large decorative initial behind content */
.founder-preview::before {
  content: 'A';
  position: absolute;
  top: -2rem;
  right: 3%;
  font-family: var(--font-heading);
  font-size: 28rem;
  font-weight: 700;
  color: rgba(196, 149, 106, 0.06);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.founder-preview::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--color-border);
}

.founder-card {
  background: transparent;
  border: none;
  padding: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.founder-card::before { display: none; }

.founder-avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--color-bg-sage);
  border: 2px solid var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  flex-shrink: 0;
  overflow: hidden;
}

.founder-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.founder-content .label {
  color: var(--color-accent-dark);
  margin-bottom: 0.75rem;
}

.founder-content h3 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--color-primary);
  margin-bottom: 0.85rem;
  letter-spacing: -0.02em;
  font-style: italic;
  font-weight: 600;
}

.founder-content p {
  color: var(--color-text-muted);
  max-width: 520px;
  font-size: 1rem;
  line-height: 1.8;
}

/* Our Story button on light bg */
.founder-card .btn-light {
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.founder-card .btn-light:hover {
  background: #2e3228;
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(29, 31, 24, 0.2);
}

/* ---- FAQ Section — Typographic, Flat ---- */
.faq-section {
  padding: 6rem 0;
  background: var(--color-bg-sage);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

/* Flat typographic accordion — no card boxes */
.faq-item {
  border: none;
  border-bottom: 1px solid var(--color-border);
  background: transparent;
  overflow: hidden;
  transition: background var(--transition-fast);
}

.faq-item:first-child {
  border-top: 1px solid var(--color-border);
}

.faq-item.open {
  background: transparent;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.6rem 0;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-primary);
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition: color var(--transition-fast);
  background: none;
  letter-spacing: -0.01em;
}

.faq-question:hover {
  color: var(--color-accent-dark);
}

.faq-item.open .faq-question {
  color: var(--color-accent-dark);
  background: none;
}

.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--color-accent);
  transition: transform var(--transition-base);
}

.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.faq-answer-inner {
  padding: 0 0 1.75rem;
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  max-width: 680px;
}

/* ---- CTA Strip — Editorial, Dramatic ---- */
.cta-strip {
  padding: 8rem 0 9rem;
  background: var(--color-warm-dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* warm ambient glow — center */
.cta-strip::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 120%;
  background: radial-gradient(ellipse, rgba(196, 149, 106, 0.14) 0%, transparent 60%);
  pointer-events: none;
}

/* decorative large text behind CTA */
.cta-strip::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(196, 149, 106, 0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  opacity: 0.5;
}

.cta-strip .label {
  color: var(--color-accent);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.cta-strip h2 {
  color: var(--color-white);
  max-width: 660px;
  margin: 0 auto 1.5rem;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-style: italic;
  font-weight: 600;
  line-height: 1.1;
  position: relative;
  z-index: 1;
}

.cta-strip p {
  color: rgba(250, 248, 245, 0.55);
  max-width: 420px;
  margin: 0 auto 3rem;
  font-size: 1.05rem;
  line-height: 1.75;
  position: relative;
  z-index: 1;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ---- Footer ---- */
.footer {
  background: var(--color-warm-dark);
  border-top: 1px solid rgba(196, 149, 106, 0.12);
  padding: 5rem 0 2.5rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 2.25rem;
}

.footer-brand {}

.footer-logo-img {
  width: 180px;
  height: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.88;
  margin-bottom: 1rem;
}

.footer-tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.5rem;
  max-width: 280px;
  line-height: 1.7;
}

.footer-email {
  font-size: 0.875rem;
  color: rgba(196, 149, 106, 0.8);
  transition: color var(--transition-fast);
}

.footer-email:hover { color: var(--color-accent); }

.footer-col-title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.25rem;
  font-family: var(--font-body);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition-fast);
}

.footer-links a:hover { color: var(--color-white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
}

.footer-polaris {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.22);
}

.footer-polaris a {
  color: rgba(196, 149, 106, 0.6);
  transition: color var(--transition-fast);
}

.footer-polaris a:hover { color: var(--color-accent); }

/* ---- Floating Book Button (mobile) ---- */
.float-btn {
  display: none;
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 90;
  padding: 0.85rem 1.5rem;
  font-size: 0.875rem;
  box-shadow: 0 4px 20px rgba(29, 31, 24, 0.3);
}

/* ---- Page Hero (inner pages) ---- */
.page-hero {
  padding: 8rem 0 4rem;
  background: var(--color-bg);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(196, 149, 106, 0.14) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  opacity: 0.5;
}

.page-hero .label { color: var(--color-accent-dark); margin-bottom: 1rem; }
.page-hero h1 { color: var(--color-primary); margin-bottom: 1rem; }
.page-hero p { color: var(--color-text-muted); max-width: 540px; font-size: 1.05rem; }

/* ---- Services Page ---- */
.services-section {
  padding: var(--section-pad-y) 0;
  background: var(--color-bg-elevated);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.service-card {
  padding: 2.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  background: var(--color-bg);
  transition: all var(--transition-base);
}

.service-card:hover {
  border-color: var(--color-accent);
  background: var(--color-bg-elevated);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-card-icon {
  margin-bottom: 1.25rem;
  color: var(--color-primary);
}

/* SVG icon sizing */
.step-icon svg,
.feature-icon svg,
.value-icon svg,
.service-card-icon svg {
  width: 34px;
  height: 34px;
  display: block;
}

.service-card h3 { margin-bottom: 0.75rem; }
.service-card p { font-size: 0.95rem; margin-bottom: 1.25rem; }

.service-tag {
  display: inline-flex;
  padding: 0.3rem 0.85rem;
  background: var(--color-secondary);
  color: var(--color-primary);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
}

/* Spring Savings section */
.spring-savings-section {
  padding: var(--section-pad-y) 0;
  background: linear-gradient(135deg, #E8F5E9 0%, #F1F8E9 50%, #E0F2F1 100%);
  border-top: 1px solid rgba(76, 175, 80, 0.15);
  border-bottom: 1px solid rgba(76, 175, 80, 0.15);
}

.spring-savings-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.spring-savings-badge {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #2E7D32;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.spring-savings-section h2 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: #1B5E20;
  margin-bottom: 0.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.spring-tagline {
  font-size: 1.1rem;
  color: #388E3C;
  margin-bottom: 2rem;
  font-style: italic;
}

.spring-savings-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 2rem 0 2.5rem 0;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-md);
  border: 1px solid rgba(76, 175, 80, 0.2);
}

.savings-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.savings-label {
  font-size: 0.95rem;
  color: #2E7D32;
  font-weight: 500;
}

.savings-price {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: #1B5E20;
  font-weight: 700;
}

.savings-price del {
  font-size: 1.1rem;
  color: #999;
  margin-right: 0.5rem;
}

.savings-price strong {
  color: #2E7D32;
}

.spring-note {
  font-size: 0.85rem;
  color: #388E3C;
  letter-spacing: 0.03em;
}

/* ==================== Hero Animations ==================== */
@keyframes hero-content-reveal {
  0% { opacity: 0; transform: translateY(24px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes hero-photo-reveal {
  0% { opacity: 0; transform: scale(0.92) translateY(32px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

.hero-content { animation: hero-content-reveal 0.75s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.hero-visual { animation: hero-photo-reveal 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards; opacity: 0; }

.hero-headline { margin-bottom: 1.5rem; }
.hero-photo-wrap {
  box-shadow: 0 20px 60px rgba(29, 31, 24, 0.15);
  transition: box-shadow 0.4s ease;
}

.hero-photo-wrap:hover { box-shadow: 0 32px 80px rgba(29, 31, 24, 0.2); }

/* Spring Savings Animations */
@keyframes spring-badge-float {
  0%, 100% { transform: translateY(0px) scale(1); opacity: 1; }
  50% { transform: translateY(-12px) scale(1.05); opacity: 0.9; }
}

@keyframes spring-content-slide-fade {
  0% { opacity: 0; transform: translateY(30px) translateX(-8px); }
  100% { opacity: 1; transform: translateY(0) translateX(0); }
}

@keyframes spring-item-scale-slide {
  0% { opacity: 0; transform: translateY(24px) scaleY(0.85); }
  100% { opacity: 1; transform: translateY(0) scaleY(1); }
}

.spring-savings-section .spring-savings-badge {
  animation: spring-badge-float 3s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
}

.spring-savings-section.reveal {
  opacity: 0;
  transform: translateY(30px);
}

.spring-savings-section.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
  animation: spring-content-slide-fade 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.spring-savings-section.reveal.revealed .spring-savings-badge {
  animation: spring-badge-float 3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s infinite;
}

.spring-savings-section.reveal.revealed .spring-savings-section h2,
.spring-savings-section.reveal.revealed .spring-tagline {
  animation: spring-content-slide-fade 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
  opacity: 0;
}

.spring-savings-section.reveal.revealed .savings-item {
  animation: spring-item-scale-slide 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
}

.spring-savings-section.reveal.revealed .savings-item:nth-child(1) {
  animation-delay: 0.6s;
}

.spring-savings-section.reveal.revealed .savings-item:nth-child(2) {
  animation-delay: 0.85s;
}

.spring-savings-section.reveal.revealed .spring-note {
  animation: spring-content-slide-fade 0.7s cubic-bezier(0.16, 1, 0.3, 1) 1.1s forwards;
  opacity: 0;
}

@media (max-width: 768px) {
  .spring-savings-section h2 { font-size: 2rem; }
  .spring-tagline { font-size: 1rem; }
  .spring-savings-details { grid-template-columns: 1fr; gap: 1.5rem; padding: 1.5rem; }
  .savings-price { font-size: 1.5rem; }
  .savings-price del { font-size: 0.9rem; }
}

/* ==================== Quote Calculator ==================== */
.quote-calculator-section {
  padding: var(--section-pad-y) 0;
  background: linear-gradient(135deg, var(--color-bg-sage) 0%, var(--color-bg) 100%);
}

.quote-calculator-header {
  text-align: center;
  margin-bottom: 3rem;
}

.quote-calculator-header h2 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: var(--color-text);
}

.quote-calculator-header p {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.quote-calculator-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.quote-form {
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.quote-items {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-bottom: 2rem;
}

.quote-item {
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--color-border);
}

.quote-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.quote-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.quote-item-header label {
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-text);
}

.quote-item-price {
  font-size: 0.95rem;
  color: var(--color-accent);
  font-weight: 600;
}

.quote-item-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.quote-item-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.quote-btn-minus,
.quote-btn-plus {
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-border);
  background: var(--color-bg);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--color-text);
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.quote-btn-minus:hover,
.quote-btn-plus:hover {
  background: var(--color-accent);
  color: var(--color-bg-elevated);
  border-color: var(--color-accent);
}

.quote-input {
  flex: 1;
  padding: 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: var(--font-body);
  text-align: center;
  transition: border-color var(--transition-fast);
}

.quote-input:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(196, 149, 106, 0.1);
}

.quote-input[type="number"]::-webkit-outer-spin-button,
.quote-input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.quote-input[type="number"] {
  -moz-appearance: textfield;
}

.quote-bulk-label {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  white-space: nowrap;
}

.quote-summary {
  background: var(--color-bg-elevated);
  border: 2px solid var(--color-accent);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: sticky;
  top: 2rem;
  height: fit-content;
}

.quote-summary-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.quote-summary-divider {
  height: 1px;
  background: var(--color-border);
  margin: 1rem 0;
}

.quote-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 1.5rem;
}

.quote-summary-total span:first-child {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
}

.quote-total {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-accent);
}

.quote-disclaimer {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  text-align: center;
}

/* Quote Calculator Animations */
.quote-calculator-section.reveal {
  opacity: 0;
}

.quote-calculator-section.reveal.revealed {
  animation: fade-in 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.quote-calculator-inner.reveal {
  opacity: 0;
}

.quote-calculator-inner.reveal.revealed {
  animation: fade-in 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .quote-calculator-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .quote-summary {
    position: relative;
    top: 0;
    sticky: none;
  }
}

@media (max-width: 768px) {
  .quote-calculator-section {
    padding: 3rem 0;
  }

  .quote-calculator-header h2 {
    font-size: 2rem;
  }

  .quote-calculator-header p {
    font-size: 1rem;
  }

  .quote-form {
    padding: 1.5rem;
  }

  .quote-items {
    gap: 1.5rem;
  }

  .quote-item {
    padding-bottom: 1.5rem;
  }

  .quote-summary {
    padding: 1.5rem;
  }

  .quote-total {
    font-size: 1.5rem;
  }
}

/* Pricing section */
.pricing-section {
  padding: var(--section-pad-y) 0;
  background: var(--color-bg);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card {
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all var(--transition-base);
  position: relative;
}

.pricing-card.featured {
  border-color: var(--color-accent);
  border-width: 2px;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-accent-dark);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.pricing-icon { font-size: 2rem; margin-bottom: 1rem; }

.pricing-card h3 { margin-bottom: 0.5rem; }

.pricing-from {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.25rem;
}

.pricing-price {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.pricing-unit {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.pricing-features {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.pricing-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  flex-shrink: 0;
}

/* What's included accordion */
.included-section {
  padding: var(--section-pad-y) 0;
  background: var(--color-bg-elevated);
}

.included-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* Perfect for */
.perfect-for {
  padding: var(--section-pad-y) 0;
  background: var(--color-bg);
}

.persona-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.persona-chip {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1.4rem;
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all var(--transition-base);
}

.persona-chip:hover {
  border-color: var(--color-accent);
  background: var(--color-accent);
  color: var(--color-white);
  transform: translateY(-2px);
}

/* ---- About Page ---- */
.founder-story {
  padding: var(--section-pad-y) 0;
  background: var(--color-bg-elevated);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.story-photo {
  aspect-ratio: 3/4;
  border-radius: var(--radius-md);
  background: var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.story-photo-placeholder {
  text-align: center;
}

.story-photo-placeholder span {
  font-size: 5rem;
  display: block;
  margin-bottom: 1rem;
}

.story-photo-placeholder p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-weight: 600;
}

.story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-content .label { margin-bottom: 0.75rem; }
.story-content h2 { margin-bottom: 1.5rem; }
.story-content p { margin-bottom: 1.25rem; }
.story-content p:last-of-type { margin-bottom: 2rem; }

/* Values grid */
.values-section {
  padding: var(--section-pad-y) 0;
  background: var(--color-bg);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.value-tile {
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
  transition: all var(--transition-base);
}

.value-tile:hover {
  border-color: var(--color-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.value-icon { margin-bottom: 1rem; color: var(--color-primary); }
.value-tile h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.value-tile p { font-size: 0.875rem; }

/* The name section */
.name-section {
  padding: var(--section-pad-y) 0;
  background: var(--color-bg-sage);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.name-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(196, 149, 106, 0.12) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  opacity: 0.5;
}

.name-section .label { color: var(--color-accent-dark); margin-bottom: 1rem; }
.name-section h2 { color: var(--color-primary); margin-bottom: 1.5rem; max-width: 640px; margin-left: auto; margin-right: auto; }
.name-section p { color: var(--color-text-muted); max-width: 520px; margin: 0 auto; font-size: 1.05rem; }

.loop-visual {
  margin: 3rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 600px;
}

.loop-node {
  text-align: center;
  flex: 1;
}

.loop-node-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-accent);
  margin: 0 auto 0.6rem;
}

.loop-node-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-muted);
  letter-spacing: 0.06em;
}

.loop-arrow {
  font-size: 1.2rem;
  color: var(--color-accent);
  margin-bottom: 1.4rem;
  flex-shrink: 0;
}

/* Local section */
.local-section {
  padding: var(--section-pad-y) 0;
  background: var(--color-bg-elevated);
}

/* ---- Testimonials Page ---- */
.testimonials-intro {
  padding: var(--section-pad-y) 0;
  background: var(--color-bg-elevated);
}

.founding-banner {
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  margin-bottom: 4rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.founding-banner::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--color-accent), var(--color-secondary));
  border-radius: 2px 0 0 2px;
}

.founding-banner .label { color: var(--color-accent-dark); margin-bottom: 0.75rem; }
.founding-banner h3 { font-size: 1.7rem; color: var(--color-primary); margin-bottom: 0.75rem; }
.founding-banner p { color: var(--color-text-muted); max-width: 480px; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: all var(--transition-base);
}

.review-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
  color: #F4A826;
  font-size: 0.9rem;
}

.review-quote {
  font-style: italic;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-primary);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.review-author {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.review-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-primary);
}

.review-meta {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.review-placeholder-note {
  font-size: 0.75rem;
  color: var(--color-accent-dark);
  font-style: italic;
  margin-top: 0.5rem;
}

.reviews-grid .review-card:only-child {
  max-width: 420px;
}

.review-form-row-compact {
  grid-template-columns: minmax(0, 240px);
}

#testimonialForm .form-trust,
#testimonialForm .form-status {
  text-align: center;
}

#testimonialForm .form-group textarea {
  min-height: 140px;
}

/* Why keep coming back */
.why-return {
  padding: var(--section-pad-y) 0;
  background: var(--color-bg);
}

.return-list {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.return-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.return-item:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-sm);
}

.return-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  margin-top: 0.45rem;
  flex-shrink: 0;
}

.return-item p {
  font-size: 0.95rem;
  color: var(--color-text);
  font-weight: 500;
}

/* ---- Contact Form Section ---- */
.contact-section {
  padding: 6.5rem 0;
  background: var(--color-bg-elevated);
  position: relative;
}

/* strong top accent line */
.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--color-accent), var(--color-secondary), transparent);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.contact-info .label { margin-bottom: 0.75rem; }
.contact-info h2 { margin-bottom: 1.1rem; font-size: clamp(1.9rem, 3vw, 2.6rem); }
.contact-info > p { margin-bottom: 2.25rem; font-size: 1.05rem; line-height: 1.75; }

.contact-detail {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.contact-detail-icon { font-size: 1.1rem; }

/* Premium conversion module */
.contact-form-card {
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-accent);
  padding: 3rem;
  box-shadow: 0 8px 40px rgba(29, 31, 24, 0.08), 0 2px 8px rgba(29, 31, 24, 0.04);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.8rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-bg);
  color: var(--color-text);
  font-size: 0.925rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-accent);
  background: var(--color-bg-elevated);
  box-shadow: 0 0 0 3px rgba(196, 149, 106, 0.15);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.form-submit {
  width: 100%;
  padding: 1rem;
  font-size: 0.9rem;
  border-radius: var(--radius-md);
  margin-top: 0.5rem;
}

.form-trust {
  margin-top: 0.85rem;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  text-align: center;
  font-style: italic;
  line-height: 1.55;
}

.form-status {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 500;
  display: none;
}

.form-status.success {
  display: block;
  background: rgba(196, 149, 106, 0.12);
  border: 1px solid var(--color-accent);
  color: var(--color-accent-dark);
}

.form-status.error {
  display: block;
  background: rgba(220, 80, 60, 0.08);
  border: 1px solid rgba(220, 80, 60, 0.3);
  color: #C0392B;
}

/* ---- Scroll reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-content { max-width: 100%; }
  .area-card { grid-template-columns: 1fr; }
  .included-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .story-grid { grid-template-columns: 1fr; }
  .story-photo { aspect-ratio: 16/9; max-height: 320px; }
}

@media (max-width: 768px) {
  :root {
    --section-pad-y: 3.5rem;
    --section-pad-x: 1.25rem;
  }

  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile { display: flex; }
  .nav-logo-img { width: 150px; height: auto; }

  .hero { padding: 6rem 0 3.5rem; }
  .hero-headline { font-size: 2.8rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .steps-grid { grid-template-columns: 1fr 1fr; }
  .step-card { border-left: 1px solid var(--color-border); padding-left: 1.25rem; }
  .step-card:first-child { border-left: 1px solid var(--color-border); padding-left: 1.25rem; }

  .features-grid { grid-template-columns: 1fr 1fr; }
  .feature-card:nth-child(4),
  .feature-card:nth-child(5),
  .feature-card:nth-child(6) { border-bottom: 1px solid var(--color-border); }
  .feature-card:nth-child(5),
  .feature-card:nth-child(6) { border-bottom: none; }
  .feature-card:nth-child(6) { border-bottom: none; }

  .values-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .services-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-grid .review-card:only-child { max-width: none; }

  .founder-preview::before { font-size: 14rem; top: 0; }

  .founder-card {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .founder-avatar { margin: 0 auto; }
  .founder-content p { margin: 0 auto; max-width: 100%; }
  .founder-card .btn-light { align-self: center; }

  .founding-banner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .founding-banner .btn { width: 100%; justify-content: center; }

  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 0.5rem; }

  .float-btn { display: inline-flex; }

  .form-row { grid-template-columns: 1fr; }
  .review-form-row-compact { grid-template-columns: 1fr; }

  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 320px; justify-content: center; }

  .loop-visual { gap: 0; }
  .loop-arrow { font-size: 0.9rem; }
}

@media (max-width: 480px) {
  .steps-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card { border-bottom: 1px solid var(--color-border) !important; }
  .feature-card:last-child { border-bottom: none !important; }
  .values-grid { grid-template-columns: 1fr; }

  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.9rem; }
}

/* ============================================================
   DESIGN SYSTEM REFRESH
   ============================================================ */

:root {
  --color-primary: #241f1a;
  --color-accent: #b8875b;
  --color-secondary: #d7c7b7;
  --color-bg: #f6f1ea;
  --color-bg-elevated: #fffdfa;
  --color-bg-sage: #eee6dc;
  --color-bg-sand: #e7ddcf;
  --color-text: #241f1a;
  --color-text-muted: #6b6358;
  --color-border: rgba(54, 43, 34, 0.12);
  --color-accent-dark: #8f6340;
  --color-warm-dark: #1c1713;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 10px 24px rgba(36, 31, 26, 0.06);
  --shadow-md: 0 18px 44px rgba(36, 31, 26, 0.08);
  --shadow-lg: 0 28px 70px rgba(36, 31, 26, 0.12);
  --container-max: 1180px;
  --section-pad-y: 6rem;
}

body {
  background:
    radial-gradient(circle at top left, rgba(215, 199, 183, 0.36), transparent 32%),
    linear-gradient(180deg, #fbf8f3 0%, var(--color-bg) 100%);
  color: var(--color-text);
}

body::after {
  opacity: 0.018;
}

.container {
  max-width: var(--container-max);
}

h1, h2, h3, h4, h5 {
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(3rem, 5vw, 5.25rem);
}

h2 {
  font-size: clamp(2.15rem, 3.4vw, 3.5rem);
}

p {
  color: var(--color-text-muted);
}

.label {
  letter-spacing: 0.16em;
  font-size: 0.72rem;
}

.btn {
  min-height: 52px;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.btn-primary {
  background: var(--color-primary);
  box-shadow: 0 14px 34px rgba(36, 31, 26, 0.14);
}

.btn-outline {
  border: 1px solid rgba(36, 31, 26, 0.2);
  background: rgba(255, 253, 250, 0.72);
}

.btn-accent {
  background: linear-gradient(135deg, #c39367 0%, #af7b4f 100%);
}

.btn-outline-light {
  border-color: rgba(255, 248, 240, 0.34);
  color: rgba(255, 248, 240, 0.9);
  background: transparent;
}

.btn-outline-light:hover {
  background: rgba(255, 248, 240, 0.12);
  color: #fff;
}

.nav {
  background: rgba(251, 248, 243, 0.82);
  border-bottom: 1px solid rgba(54, 43, 34, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav.scrolled {
  background: rgba(251, 248, 243, 0.94);
  box-shadow: 0 10px 32px rgba(36, 31, 26, 0.08);
}

.nav-logo-img {
  width: 190px;
}

.nav-links {
  gap: 2rem;
}

.nav-links a {
  position: relative;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.45rem;
  height: 1px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition-fast);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-mobile {
  background:
    linear-gradient(180deg, rgba(251, 248, 243, 0.98), rgba(246, 241, 234, 0.98));
}

.hero {
  padding: 8.5rem 0 5rem;
}

.hero-home::before {
  background-image: radial-gradient(circle, rgba(184, 135, 91, 0.16) 1px, transparent 1px);
  background-size: 30px 30px;
}

.hero-inner {
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 4.25rem;
  align-items: end;
}

.hero-content {
  max-width: 620px;
}

.hero-copy-stack {
  margin-bottom: 2rem;
}

.hero-headline {
  margin-bottom: 1.2rem;
  line-height: 0.98;
}

.hero-sub {
  max-width: 520px;
  font-size: 1.06rem;
}

.hero-inline-note {
  display: inline-flex;
  gap: 0.65rem;
  align-items: center;
  margin-top: 1.4rem;
  padding: 0.85rem 1.05rem;
  border-radius: 999px;
  background: rgba(255, 253, 250, 0.78);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  font-size: 0.88rem;
}

.hero-inline-note a {
  color: var(--color-primary);
  font-weight: 700;
}

.hero-visual {
  align-items: stretch;
  gap: 1.35rem;
}

.hero-photo-wrap {
  max-width: none;
  width: 100%;
  border-radius: 34px;
  border: 1px solid rgba(54, 43, 34, 0.1);
  box-shadow: var(--shadow-lg);
}

.hero-photo-caption {
  padding: 2.8rem 1.75rem 1.75rem;
}

.hero-photo-badge {
  background: rgba(255, 250, 244, 0.2);
  border: 1px solid rgba(255, 250, 244, 0.28);
  backdrop-filter: blur(12px);
}

.hero-service-panel {
  position: absolute;
  right: -1.3rem;
  bottom: -1.8rem;
  width: min(320px, 78%);
  padding: 1.5rem;
  border-radius: 26px;
  background: rgba(255, 253, 250, 0.95);
  border: 1px solid rgba(54, 43, 34, 0.08);
  box-shadow: var(--shadow-md);
}

.hero-service-panel-top h2 {
  font-size: 1.7rem;
  margin-top: 0.3rem;
  margin-bottom: 1rem;
}

.hero-metric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.hero-metric {
  padding: 1rem;
  border-radius: 18px;
  background: #f7f2ea;
  border: 1px solid rgba(54, 43, 34, 0.06);
}

.hero-metric strong {
  display: block;
  color: var(--color-primary);
  font-size: 1.02rem;
  margin-bottom: 0.25rem;
}

.hero-metric span {
  color: var(--color-text-muted);
  font-size: 0.82rem;
}

.hero-proof-list {
  display: grid;
  gap: 0.7rem;
}

.hero-proof-list li {
  position: relative;
  padding-left: 1rem;
  color: var(--color-text-muted);
  font-size: 0.88rem;
}

.hero-proof-list li::before {
  content: "";
  position: absolute;
  top: 0.58rem;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
}

.spring-savings-section {
  padding: 0 0 1rem;
  margin-top: -0.7rem;
}

.spring-savings-content {
  padding: 1.6rem 1.8rem;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 250, 244, 0.96), rgba(241, 232, 220, 0.94));
  border: 1px solid rgba(54, 43, 34, 0.08);
  box-shadow: var(--shadow-sm);
}

.spring-savings-header {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 1rem;
}

.spring-savings-header h2 {
  font-size: 2rem;
  margin-top: 0.35rem;
}

.spring-savings-badge {
  display: inline-flex;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(184, 135, 91, 0.14);
  color: var(--color-accent-dark);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.spring-note {
  margin: 0;
  white-space: nowrap;
  font-size: 0.86rem;
}

.spring-savings-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.savings-item {
  padding: 1rem 1.1rem;
  border-radius: 20px;
  background: rgba(255, 253, 250, 0.82);
  border: 1px solid rgba(54, 43, 34, 0.08);
}

.savings-label {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--color-text-muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.savings-price del {
  color: rgba(107, 99, 88, 0.7);
}

.savings-price strong {
  color: var(--color-primary);
  font-size: 1.6rem;
  margin-left: 0.35rem;
}

.home-signals,
.services-section,
.pricing-section,
.values-section,
.testimonials-intro,
.founder-story,
.faq-section,
.perfect-for,
.why-return,
.share-section,
.local-section {
  padding: var(--section-pad-y) 0;
}

.home-signals {
  padding-top: 2.25rem;
}

.home-signals-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.signal-card,
.service-card,
.pricing-card,
.value-tile,
.review-card,
.return-item,
.share-card {
  border-radius: 26px;
  border: 1px solid rgba(54, 43, 34, 0.08);
  background: rgba(255, 253, 250, 0.86);
  box-shadow: var(--shadow-sm);
}

.signal-card {
  padding: 1.5rem;
}

.signal-card h3 {
  font-size: 1.45rem;
  margin: 0.3rem 0 0.7rem;
}

.section-header {
  max-width: 720px;
  margin-bottom: 3rem;
}

.section-header.centered {
  max-width: 700px;
}

.section-header h2 {
  margin-top: 0.35rem;
}

.how-it-works {
  background:
    linear-gradient(180deg, rgba(238, 230, 220, 0.7), rgba(246, 241, 234, 0));
  padding: 6.25rem 0;
}

.steps-grid {
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.step-card {
  padding: 1.8rem;
  border: 1px solid rgba(54, 43, 34, 0.08);
  border-left: 1px solid rgba(54, 43, 34, 0.08);
  border-radius: 24px;
  background: rgba(255, 253, 250, 0.84);
  box-shadow: var(--shadow-sm);
}

.step-card:first-child {
  padding-left: 1.8rem;
}

.step-num {
  margin-bottom: -1rem;
}

.loop-path {
  stroke: rgba(184, 135, 91, 0.58);
}

.service-area {
  padding: 6rem 0;
}

.area-card {
  padding: 3rem;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(255, 253, 250, 0.96), rgba(242, 235, 226, 0.94));
}

.area-card::before {
  width: 6px;
}

.badge {
  background: rgba(255, 253, 250, 0.9);
}

.why-us {
  background:
    linear-gradient(180deg, #2a211a 0%, #1c1713 100%);
}

.features-grid {
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card {
  padding: 1.8rem;
  border: 1px solid rgba(255, 248, 240, 0.08);
  border-left: 1px solid rgba(255, 248, 240, 0.08);
  border-bottom: 1px solid rgba(255, 248, 240, 0.08);
  border-radius: 24px;
  background: rgba(255, 248, 240, 0.03);
}

.feature-card:hover {
  background: rgba(255, 248, 240, 0.06);
}

.founder-preview {
  padding: 6rem 0;
}

.founder-card {
  padding: 2.5rem 2.75rem;
  grid-template-columns: auto 1fr auto;
  border-radius: 30px;
  background: rgba(255, 253, 250, 0.92);
  border: 1px solid rgba(54, 43, 34, 0.08);
  box-shadow: var(--shadow-sm);
}

.faq-section {
  background: linear-gradient(180deg, rgba(238, 230, 220, 0.42), transparent);
}

.faq-item {
  background: rgba(255, 253, 250, 0.72);
  border: 1px solid rgba(54, 43, 34, 0.08);
  border-radius: 22px;
  margin-bottom: 0.9rem;
  padding: 0 1.35rem;
}

.faq-item:first-child {
  border-top: 1px solid rgba(54, 43, 34, 0.08);
}

.faq-question {
  padding: 1.35rem 0;
  font-size: 1.08rem;
}

.faq-answer-inner {
  padding-bottom: 1.35rem;
}

.contact-section {
  padding: 6rem 0;
}

.contact-section::before {
  display: none;
}

.contact-grid {
  gap: 2rem;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.contact-info {
  padding: 2rem 2rem 2rem 0;
}

.contact-detail {
  display: grid;
  grid-template-columns: 68px 1fr;
  align-items: start;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.contact-detail-label {
  color: var(--color-accent-dark);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-form-card {
  border-left: 1px solid rgba(54, 43, 34, 0.08);
  border-radius: 30px;
  padding: 2.2rem;
  background: rgba(255, 253, 250, 0.92);
}

.page-hero {
  padding: 8rem 0 3.2rem;
  position: relative;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(184, 135, 91, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(251, 248, 243, 0.86), transparent 78%);
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 2rem;
  align-items: end;
}

.page-hero-copy {
  max-width: 700px;
}

.page-hero-copy h1 {
  margin: 0.35rem 0 0.9rem;
}

.page-hero-panel {
  padding: 1.4rem;
  border-radius: 24px;
  background: rgba(255, 253, 250, 0.9);
  border: 1px solid rgba(54, 43, 34, 0.08);
  box-shadow: var(--shadow-sm);
}

.page-hero-list {
  display: grid;
  gap: 0.7rem;
}

.page-hero-list li {
  position: relative;
  padding-left: 1rem;
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.page-hero-list li::before {
  content: "";
  position: absolute;
  top: 0.6rem;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.service-card {
  padding: 1.65rem;
}

.service-card-icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: rgba(184, 135, 91, 0.12);
  color: var(--color-accent-dark);
  margin-bottom: 1.1rem;
}

.service-card h3 {
  margin-bottom: 0.55rem;
}

.service-tag {
  display: inline-flex;
  margin-top: 1rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(36, 31, 26, 0.05);
  color: var(--color-accent-dark);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-overview {
  display: grid;
  gap: 0.55rem;
  margin: 0 auto 2rem;
  padding: 1.25rem 1.5rem;
  max-width: 760px;
  border-radius: 24px;
  background: rgba(255, 253, 250, 0.86);
  border: 1px solid rgba(54, 43, 34, 0.08);
}

.pricing-promo-note,
.quote-promo-note {
  color: var(--color-accent-dark);
  font-size: 0.86rem;
}

.pricing-grid {
  max-width: none;
  gap: 1rem;
}

.pricing-card {
  padding: 1.9rem;
  text-align: left;
}

.pricing-compare {
  margin: 0.35rem 0 0.2rem;
  color: var(--color-text-muted);
  font-size: 0.84rem;
}

.pricing-card .btn {
  width: 100%;
  justify-content: center;
}

.pricing-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(184, 135, 91, 0.12);
  color: var(--color-accent-dark);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quote-calculator-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, rgba(238, 230, 220, 0.4), transparent);
}

.quote-calculator-header {
  max-width: 640px;
  margin-bottom: 2rem;
}

.quote-calculator-header h2 {
  margin: 0.35rem 0 0.8rem;
}

.quote-calculator-inner {
  display: block;
}

.quote-form {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.8fr);
  gap: 1rem;
}

.quote-items,
.quote-summary {
  border-radius: 28px;
  background: rgba(255, 253, 250, 0.9);
  border: 1px solid rgba(54, 43, 34, 0.08);
  box-shadow: var(--shadow-sm);
}

.quote-items {
  padding: 1.6rem;
}

.quote-summary {
  padding: 1.6rem;
}

.quote-item {
  padding-bottom: 1.3rem;
  margin-bottom: 1.3rem;
  border-bottom: 1px solid rgba(54, 43, 34, 0.08);
}

.quote-item:last-child {
  margin-bottom: 0;
}

.quote-btn-minus,
.quote-btn-plus,
.quote-input {
  border-radius: 14px;
}

.included-grid,
.story-grid,
.why-return-grid,
.local-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 2rem;
  align-items: start;
}

.persona-list {
  margin-bottom: 0;
}

.persona-chip {
  border-radius: 999px;
  background: rgba(255, 253, 250, 0.86);
  box-shadow: var(--shadow-sm);
}

.dual-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.story-photo,
.story-content,
.share-card {
  border-radius: 30px;
}

.story-photo {
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.story-content {
  padding: 0.5rem 0;
}

.story-content h2 {
  margin-top: 0.35rem;
}

.name-section {
  background: linear-gradient(180deg, rgba(238, 230, 220, 0.52), transparent);
}

.loop-visual {
  gap: 0.6rem;
  max-width: 760px;
}

.loop-node {
  padding: 1.15rem 1rem;
  border-radius: 24px;
  background: rgba(255, 253, 250, 0.82);
  border: 1px solid rgba(54, 43, 34, 0.08);
}

.loop-summary {
  margin-top: 1rem;
  text-align: center;
}

.local-badges {
  margin: 0;
}

.founding-banner,
.share-card {
  padding: 2rem;
  border-radius: 30px;
}

.reviews-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.review-card {
  padding: 1.7rem;
}

.reviews-empty {
  max-width: 680px;
  padding: 1.8rem;
  border-radius: 26px;
  border: 1px solid rgba(54, 43, 34, 0.08);
  background: rgba(255, 253, 250, 0.86);
  box-shadow: var(--shadow-sm);
}

.reviews-empty h3 {
  margin: 0.35rem 0 0.7rem;
}

.share-section {
  background: linear-gradient(180deg, rgba(255, 253, 250, 0.3), rgba(238, 230, 220, 0.22));
}

.share-card {
  max-width: 860px;
  margin: 0 auto;
  padding: 2.2rem;
}

.cta-strip {
  padding: 4.5rem 0;
  background: linear-gradient(135deg, #241d17 0%, #1b1511 100%);
}

.cta-strip-inner {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: end;
}

.cta-strip .label,
.cta-strip h2,
.cta-strip p {
  color: rgba(255, 248, 240, 0.9);
}

.footer {
  padding: 0 0 2rem;
  background: transparent;
}

.footer-cta {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
  padding: 2rem 2.2rem;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(255, 253, 250, 0.94), rgba(237, 229, 216, 0.94));
  border: 1px solid rgba(54, 43, 34, 0.08);
  box-shadow: var(--shadow-sm);
  margin-top: -2rem;
  margin-bottom: 1.4rem;
}

.footer-cta h2 {
  font-size: 2rem;
  max-width: 680px;
  margin-top: 0.4rem;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(150px, 0.5fr) minmax(160px, 0.6fr);
  gap: 2rem;
  padding: 2.2rem;
  border-radius: 30px;
  background: linear-gradient(180deg, #211a15 0%, #17120f 100%);
  color: rgba(255, 248, 240, 0.8);
}

.footer-brand,
.footer-links a,
.footer-copy,
.footer-polaris {
  color: rgba(255, 248, 240, 0.78);
}

.footer-tagline {
  max-width: 360px;
  margin: 1rem 0 1.1rem;
  color: rgba(255, 248, 240, 0.62);
}

.footer-email {
  display: block;
  margin-bottom: 0.4rem;
}

.footer-col-title {
  color: #fff;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.72rem;
  margin-bottom: 0.9rem;
}

.footer-links {
  display: grid;
  gap: 0.55rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0 0;
}

.float-btn {
  display: none;
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 40;
}

@media (max-width: 1024px) {
  .hero-inner,
  .page-hero-inner,
  .included-grid,
  .story-grid,
  .why-return-grid,
  .local-grid,
  .contact-grid,
  .quote-form {
    grid-template-columns: 1fr;
  }

  .hero-service-panel {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 1rem;
    width: 100%;
  }

  .home-signals-grid,
  .services-grid,
  .features-grid,
  .values-grid,
  .reviews-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-strip-inner,
  .footer-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad-y: 4.25rem;
    --section-pad-x: 1.1rem;
  }

  .nav-logo-img {
    width: 152px;
  }

  .hero,
  .page-hero {
    padding-top: 7rem;
  }

  .hero-headline {
    font-size: clamp(2.7rem, 11vw, 4rem);
  }

  .hero-actions,
  .dual-cta,
  .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn,
  .dual-cta .btn,
  .cta-actions .btn,
  .footer-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .spring-savings-header,
  .spring-savings-details,
  .home-signals-grid,
  .services-grid,
  .features-grid,
  .values-grid,
  .reviews-grid,
  .footer-top,
  .hero-metric-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .step-card,
  .step-card:first-child {
    padding-left: 1.5rem;
  }

  .hero-inline-note {
    width: 100%;
    justify-content: space-between;
    border-radius: 18px;
  }

  .contact-detail {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .quote-items,
  .quote-summary,
  .contact-form-card,
  .founder-card,
  .founding-banner,
  .share-card,
  .area-card,
  .footer-top,
  .footer-cta {
    padding: 1.4rem;
  }

  .founder-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .founder-avatar {
    margin: 0 auto;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .float-btn {
    display: inline-flex;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 1.95rem;
  }

  .spring-savings-content,
  .signal-card,
  .service-card,
  .pricing-card,
  .faq-item,
  .review-card {
    border-radius: 22px;
  }
}
