/* ============================================================
   CABINETMAKERPH.COM — Design System
   Inspired by: Airbnb (layout, rounded shapes, photography-first)
                + Starbucks (warm cream canvas, green tiers, pill buttons)
   Font: Inter (open-source substitute for both Cereal & SoDoSans)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Lora:wght@400;600&display=swap');

/* ── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  /* Colors — Green Tier (Starbucks-inspired, cabinet-adapted) */
  --green-brand:    #006241;   /* Brand headings, primary signal */
  --green-cta:      #00754A;   /* All CTA buttons, active states */
  --green-deep:     #1E3932;   /* Feature bands, footer, dark sections */
  --green-uplift:   #2b5148;   /* Decorative accents */
  --green-light:    #d4e9e2;   /* Tints, valid-state fills */

  /* Colors — Warm Canvas (Starbucks warmth) */
  --canvas-warm:    #f2f0eb;   /* Primary page canvas — NOT white */
  --canvas-ceramic: #edebe9;   /* Section separators */
  --canvas-white:   #ffffff;   /* Cards, modals */
  --canvas-soft:    #f7f7f7;   /* Subtle card backgrounds */

  /* Colors — Accent (Airbnb-inspired highlight for CTAs on light bg) */
  --accent:         #c05621;   /* Warm terracotta — replaces Airbnb Rausch for a woodworking brand */
  --accent-hover:   #9c4318;
  --accent-light:   #fdebd0;

  /* Colors — Text */
  --ink:            #222222;   /* Deep near-black (Airbnb ink) */
  --text-black:     rgba(0,0,0,0.87);   /* Starbucks text black — warm */
  --text-soft:      rgba(0,0,0,0.58);   /* Secondary / metadata */
  --text-muted:     #6a6a6a;            /* Captions, sub-labels */
  --text-white:     #ffffff;
  --text-white-soft: rgba(255,255,255,0.70);

  /* Colors — Borders */
  --hairline:       #dddddd;
  --hairline-soft:  #ebebeb;
  --border-input:   #d6dbde;

  /* Border Radius */
  --radius-xs:   4px;
  --radius-sm:   8px;    /* Airbnb card subtle */
  --radius-md:   12px;   /* Starbucks cards */
  --radius-lg:   20px;
  --radius-pill: 50px;   /* Starbucks full-pill buttons */
  --radius-full: 9999px; /* Airbnb search, circles */

  /* Spacing */
  --sp-1:  4px;
  --sp-2:  8px;
  --sp-3:  12px;
  --sp-4:  16px;
  --sp-5:  24px;
  --sp-6:  32px;
  --sp-7:  48px;
  --sp-8:  80px;
  --sp-9:  100px;
  --sp-10: 120px;

  /* Typography */
  --font-sans: 'Inter', -apple-system, system-ui, 'Helvetica Neue', sans-serif;
  --font-serif: 'Lora', 'Iowan Old Style', Georgia, serif;

  /* Shadows (Starbucks layered whisper-soft) */
  --shadow-card:    0 0 0.5px rgba(0,0,0,0.14), 0 1px 1px rgba(0,0,0,0.24);
  --shadow-nav:     0 1px 3px rgba(0,0,0,0.10), 0 2px 2px rgba(0,0,0,0.06), 0 0 2px rgba(0,0,0,0.07);
  --shadow-hover:   rgba(0,0,0,0.02) 0 0 0 1px, rgba(0,0,0,0.04) 0 2px 6px, rgba(0,0,0,0.10) 0 4px 8px;
  --shadow-float:   0 0 6px rgba(0,0,0,0.24), 0 8px 12px rgba(0,0,0,0.14);

  /* Transitions */
  --t-fast:   0.15s ease;
  --t-base:   0.20s ease;
  --t-slow:   0.30s ease;
}

/* ── RESET & BASE ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-sans);
  background-color: var(--canvas-warm);
  color: var(--text-black);
  line-height: 1.5;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
.t-display-xl { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 700; line-height: 1.15; letter-spacing: -0.03em; }
.t-display-lg { font-size: clamp(2rem, 4vw, 3rem); font-weight: 600; line-height: 1.2; letter-spacing: -0.02em; }
.t-display-md { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 600; line-height: 1.3; }
.t-title      { font-size: 1.125rem; font-weight: 600; line-height: 1.4; }
.t-body       { font-size: 1rem; font-weight: 400; line-height: 1.6; }
.t-small      { font-size: 0.875rem; font-weight: 400; line-height: 1.5; }
.t-caption    { font-size: 0.8125rem; font-weight: 500; line-height: 1.4; }
.t-label      { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.t-serif      { font-family: var(--font-serif); }

.text-green   { color: var(--green-brand); }
.text-cta     { color: var(--green-cta); }
.text-muted   { color: var(--text-muted); }
.text-soft    { color: var(--text-soft); }
.text-white   { color: var(--text-white); }

/* ── LAYOUT ─────────────────────────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--sp-4);
}
@media (min-width: 768px)  { .container { padding: 0 var(--sp-6); } }
@media (min-width: 1024px) { .container { padding: 0 var(--sp-8); } }

.section { padding: var(--sp-8) 0; }
.section-lg { padding: var(--sp-10) 0; }

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  border-radius: var(--radius-pill);
  padding: 14px 28px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--t-base);
  white-space: nowrap;
  text-decoration: none;
}
.btn:active { transform: scale(0.95); }

/* Primary — Green fill */
.btn-primary {
  background: var(--green-cta);
  color: var(--text-white);
  border-color: var(--green-cta);
}
.btn-primary:hover { background: var(--green-brand); border-color: var(--green-brand); }

/* Secondary — Outline green */
.btn-secondary {
  background: transparent;
  color: var(--green-cta);
  border-color: var(--green-cta);
}
.btn-secondary:hover { background: var(--green-light); }

/* White on dark (for dark feature bands) */
.btn-white {
  background: var(--canvas-white);
  color: var(--green-cta);
  border-color: var(--canvas-white);
}
.btn-white:hover { background: var(--green-light); }

/* Outline on dark */
.btn-outline-white {
  background: transparent;
  color: var(--text-white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline-white:hover { border-color: var(--text-white); background: rgba(255,255,255,0.08); }

/* Small variant */
.btn-sm { font-size: 0.875rem; padding: 10px 20px; }

/* ── NAV ─────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--canvas-white);
  box-shadow: var(--shadow-nav);
  height: 90px;
  display: flex;
  align-items: center;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--sp-5);
  gap: var(--sp-4);
}

.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.nav__logo-img {
  height: 68px;
  width: auto;
  max-width: 280px;
  display: block;
  object-fit: contain;
}
@media (max-width: 768px)  { .nav__logo-img { height: 52px; max-width: 200px; } }
@media (max-width: 480px)  { .nav__logo-img { height: 42px; max-width: 160px; } }

.nav__links {
  display: none;
  list-style: none;
  gap: var(--sp-1);
  align-items: center;
}
@media (min-width: 1024px) { .nav__links { display: flex; } }

.nav__link {
  position: relative;
}

.nav__link > a {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ink);
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--radius-sm);
  transition: background var(--t-fast), color var(--t-fast);
  white-space: nowrap;
}
.nav__link > a:hover { background: var(--canvas-soft); }
.nav__link > a svg { width: 14px; height: 14px; opacity: 0.5; transition: transform var(--t-fast); }
.nav__link:hover > a svg { transform: rotate(180deg); opacity: 1; }

/* Dropdown */
.nav__dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--canvas-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-hover);
  border: 1px solid var(--hairline-soft);
  padding: var(--sp-5);
  min-width: 280px;
  z-index: 100;
}
/* Transparent bridge that closes the 8px gap so hover is never lost */
.nav__dropdown::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  height: 16px;
}
.nav__link:hover .nav__dropdown { display: block; }

.nav__dropdown-section { margin-bottom: var(--sp-4); }
.nav__dropdown-section:last-child { margin-bottom: 0; }

.nav__dropdown-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--sp-2);
  padding-bottom: var(--sp-2);
  border-bottom: 1px solid var(--hairline-soft);
}

.nav__dropdown-items { display: flex; flex-direction: column; gap: 2px; }

.nav__dropdown-item {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink);
  padding: 7px var(--sp-2);
  border-radius: var(--radius-xs);
  transition: background var(--t-fast), color var(--t-fast);
}
.nav__dropdown-item:hover { background: var(--canvas-warm); color: var(--green-cta); }

.nav__cities {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: var(--sp-2);
}
.nav__city-tag {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 4px 10px;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-full);
  transition: all var(--t-fast);
}
.nav__city-tag:hover { color: var(--green-cta); border-color: var(--green-cta); background: var(--green-light); }

.nav__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
}

.nav__link-text {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ink);
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--radius-sm);
  transition: background var(--t-fast);
}
.nav__link-text:hover { background: var(--canvas-soft); }

.nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--sp-2);
}
.nav__hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all var(--t-base);
}
.nav__hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav__hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
@media (min-width: 1024px) { .nav__hamburger { display: none; } }

/* ── HERO ─────────────────────────────────────────────────────── */
.hero {
  margin-top: 90px;
  position: relative;
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
  background: var(--green-deep);
}
@media (min-width: 900px) { .hero { grid-template-columns: 55% 45%; min-height: 640px; } }

.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--sp-9) var(--sp-5) var(--sp-7);
  position: relative;
  z-index: 2;
}
@media (min-width: 900px) { .hero__content { padding: var(--sp-9) var(--sp-7); } }
@media (min-width: 1200px) { .hero__content { padding: var(--sp-9) var(--sp-9); } }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: var(--sp-4);
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 2px;
  background: var(--green-cta);
  border-radius: 2px;
}

.hero__headline {
  color: var(--text-white);
  margin-bottom: var(--sp-4);
  max-width: 560px;
}

.hero__headline strong {
  color: var(--green-light);
  font-style: normal;
}

.hero__sub {
  color: var(--text-white-soft);
  font-size: 1.125rem;
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: var(--sp-7);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  align-items: center;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-4);
  margin-top: var(--sp-6);
  padding-top: var(--sp-5);
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero__trust-item {
  display: flex;
  flex-direction: column;
}
.hero__trust-num {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1;
}
.hero__trust-label {
  font-size: 0.75rem;
  color: var(--text-white-soft);
  margin-top: 2px;
}
.hero__trust-divider {
  width: 1px; height: 40px;
  background: rgba(255,255,255,0.15);
}

.hero__image {
  position: relative;
  overflow: hidden;
  min-height: 360px;
}
@media (max-width: 899px) { .hero__image { order: -1; min-height: 280px; } }

@media (max-width: 899px) {
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: 300px auto;
  }
  .hero__content {
    padding: var(--sp-7) var(--sp-5) var(--sp-8);
  }
}

.hero__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(30,57,50,0.35) 0%, transparent 60%);
  pointer-events: none;
}

/* Hero entrance animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes kenBurns {
  0%   { transform: scale(1); }
  100% { transform: scale(1.08); }
}

.hero__eyebrow,
.hero__headline,
.hero__sub,
.hero__actions,
.search-bar,
.hero__trust {
  opacity: 0;
  animation: fadeInUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero__eyebrow   { animation-delay: 0.05s; }
.hero__headline  { animation-delay: 0.15s; }
.hero__sub       { animation-delay: 0.25s; }
.hero__actions,
.search-bar      { animation-delay: 0.35s; }
.hero__trust     { animation-delay: 0.45s; }

.hero__image img {
  animation: kenBurns 25s ease-in-out alternate infinite;
}

/* ── SEARCH BAR (Airbnb-style pill) ─────────────────────────── */
.search-bar {
  background: var(--canvas-white);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-hover);
  display: flex;
  align-items: center;
  overflow: hidden;
  max-width: 680px;
  border: 1px solid var(--hairline-soft);
}

.search-bar__field {
  flex: 1;
  padding: 14px var(--sp-5);
  border: none;
  outline: none;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--ink);
  background: transparent;
}
.search-bar__field::placeholder { color: var(--text-muted); }
.search-bar__divider { width: 1px; height: 32px; background: var(--hairline); flex-shrink: 0; }
.search-bar__btn {
  background: var(--green-cta);
  border: none;
  border-radius: var(--radius-full);
  width: 52px; height: 52px;
  margin: 6px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background var(--t-base);
}
.search-bar__btn:hover { background: var(--green-brand); }
.search-bar__btn:active { transform: scale(0.95); }
.search-bar__btn svg { width: 20px; height: 20px; fill: white; }

/* ── SERVICE TABS STRIP ─────────────────────────────────────── */
.service-strip {
  background: var(--canvas-white);
  border-bottom: 1px solid var(--hairline-soft);
  padding: var(--sp-6) var(--sp-6) var(--sp-5);
  overflow-x: auto;
  scrollbar-width: none;
  position: relative;
  box-shadow: 0 4px 24px rgba(0,0,0,0.05);
}
.service-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-brand) 0%, var(--green-cta) 50%, var(--accent) 100%);
}
.service-strip::-webkit-scrollbar { display: none; }

@media (max-width: 899px) {
  .service-strip::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0; right: 0;
    width: 60px;
    background: linear-gradient(to right, transparent, var(--canvas-white));
    pointer-events: none;
    z-index: 2;
  }
}

.service-strip__inner {
  display: flex;
  gap: var(--sp-2);
  max-width: 1280px;
  margin: 0 auto;
  justify-content: center;
}
@media (max-width: 899px) {
  .service-strip__inner {
    justify-content: flex-start;
  }
}

.service-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: var(--sp-4) var(--sp-6);
  border-bottom: 3px solid transparent;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  color: var(--text-muted);
  font-size: 0.8125rem;
  font-weight: 600;
  white-space: nowrap;
  transition: all var(--t-base);
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.01em;
  position: relative;
}
.service-tab:hover {
  color: var(--green-brand);
  background: rgba(0,98,65,0.04);
  border-bottom-color: var(--green-light);
}
.service-tab.active {
  color: var(--green-brand);
  background: rgba(0,98,65,0.06);
  border-bottom-color: var(--green-cta);
}
.service-tab__icon {
  font-size: 1.5rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background: var(--canvas-warm);
  border: 1.5px solid var(--hairline-soft);
  transition: all var(--t-base);
}
.service-tab:hover .service-tab__icon {
  background: var(--green-light);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,98,65,0.12);
}
.service-tab.active .service-tab__icon {
  background: var(--green-light);
  border-color: var(--green-cta);
  box-shadow: 0 4px 12px rgba(0,98,65,0.15);
}
.service-tab__icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.75;
  transition: stroke var(--t-base);
}
.service-tab:hover .service-tab__icon svg,
.service-tab.active .service-tab__icon svg {
  stroke: var(--green-brand);
}

/* ── CARDS ───────────────────────────────────────────────────── */
.card {
  background: var(--canvas-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: box-shadow var(--t-base), transform var(--t-base);
}
.card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.card__image {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.card__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.card:hover .card__image img { transform: scale(1.04); }

.card__body { padding: var(--sp-6); }
.card__eyebrow {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-brand);
  margin-bottom: var(--sp-2);
}
.card__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: var(--sp-2);
  line-height: 1.4;
}
.card__meta { font-size: 0.875rem; color: var(--text-muted); margin-top: var(--sp-2); }
.card__price {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ink);
  margin-top: var(--sp-4);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--hairline-soft);
}
.card__price span { font-weight: 400; color: var(--text-muted); font-size: 0.875rem; }

.card--popular { border: 2px solid var(--green-cta); position: relative; }
.card__badge {
  position: absolute;
  top: var(--sp-4);
  right: var(--sp-4);
  background: var(--green-cta);
  color: var(--text-white);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  z-index: 2;
}

/* ── GRID ────────────────────────────────────────────────────── */
.grid-2 { display: grid; gap: var(--sp-6); grid-template-columns: 1fr; }
.grid-3 { display: grid; gap: var(--sp-6); grid-template-columns: 1fr; }
.grid-4 { display: grid; gap: var(--sp-5); grid-template-columns: 1fr; }

@media (min-width: 640px)  { .grid-2 { grid-template-columns: repeat(2, 1fr); } .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px)  { .grid-3 { grid-template-columns: repeat(2, 1fr); } .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } .grid-4 { grid-template-columns: repeat(4, 1fr); } }

/* ── FEATURE BAND (Starbucks House-Green dark band) ─────────── */
.feature-band {
  background: var(--green-deep);
  padding: var(--sp-9) 0;
}

.feature-band__grid {
  display: grid;
  gap: var(--sp-8);
  align-items: center;
}
@media (min-width: 900px) {
  .feature-band__grid { grid-template-columns: 1fr 1fr; }
  .feature-band__grid.reverse .feature-band__image { order: -1; }
}

.feature-band__label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: var(--sp-3);
}

.feature-band__title {
  color: var(--text-white);
  margin-bottom: var(--sp-4);
}

.feature-band__body {
  color: var(--text-white-soft);
  font-size: 1.0625rem;
  line-height: 1.7;
  margin-bottom: var(--sp-6);
}

.feature-band__actions { display: flex; flex-wrap: wrap; gap: var(--sp-3); }

.feature-band__image {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}
.feature-band__image img { width: 100%; height: 100%; object-fit: cover; }

/* ── SECTION HEADERS ─────────────────────────────────────────── */
.section-header {
  margin-bottom: var(--sp-8);
}
.section-header--center { text-align: center; }

.section-header__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-brand);
  margin-bottom: var(--sp-3);
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
}
.section-header--center .section-header__eyebrow {
  justify-content: center;
}
.section-header__eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green-cta);
  border-radius: 2px;
}

.section-header__title {
  color: var(--ink);
  margin-bottom: var(--sp-4);
}

.section-header__subtitle {
  color: var(--text-muted);
  font-size: 1.0625rem;
  line-height: 1.7;
  max-width: 580px;
}
.section-header--center .section-header__subtitle { margin: 0 auto; }

/* ── WHY US GRID ─────────────────────────────────────────────── */
.why-item {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  padding: var(--sp-7);
  background: var(--canvas-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--t-base);
}
.why-item:hover { box-shadow: var(--shadow-hover); }

.why-item__icon {
  width: 56px; height: 56px;
  background: var(--green-light);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
}
.why-item__icon svg { width: 26px; height: 26px; stroke: var(--green-brand); stroke-width: 1.75; }
.why-item__title { font-size: 1.0625rem; font-weight: 600; color: var(--ink); }
.why-item__body { font-size: 0.9375rem; color: var(--text-soft); line-height: 1.7; }

/* ── LOCATIONS BAND ──────────────────────────────────────────── */
.locations-band {
  background: var(--canvas-ceramic);
  padding: var(--sp-9) 0;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4);
  margin-top: var(--sp-7);
}
@media (min-width: 480px)  { .location-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 640px)  { .location-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1024px) { .location-grid { grid-template-columns: repeat(6, 1fr); } }

.location-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-5) var(--sp-4);
  background: var(--canvas-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  text-align: center;
  transition: all var(--t-base);
  cursor: pointer;
  text-decoration: none;
}
.location-pill:hover {
  background: var(--green-deep);
  color: var(--text-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}
.location-pill__icon { font-size: 1.375rem; display: flex; align-items: center; justify-content: center; }
.location-pill__icon svg { width: 20px; height: 20px; stroke: var(--green-brand); transition: stroke var(--t-base); }
.location-pill:hover .location-pill__icon svg { stroke: var(--text-white); }
.location-pill__name { font-size: 0.8125rem; font-weight: 600; color: var(--ink); }
.location-pill:hover .location-pill__name { color: var(--text-white); }
.location-pill__sub { font-size: 0.6875rem; color: var(--text-muted); }
.location-pill:hover .location-pill__sub { color: var(--text-white-soft); }

/* ── TESTIMONIALS ────────────────────────────────────────────── */
.review-card {
  background: var(--canvas-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: var(--sp-7);
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}
.review-card__stars { color: var(--ink); font-size: 0.875rem; letter-spacing: 2px; }
.review-card__text { font-size: 0.9375rem; color: var(--text-soft); line-height: 1.7; font-style: italic; }
.review-card__author { display: flex; align-items: center; gap: var(--sp-3); }
.review-card__avatar {
  width: 44px; height: 44px;
  border-radius: var(--radius-full);
  background: var(--green-light);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem;
  color: var(--green-brand);
  flex-shrink: 0;
}
.review-card__name { font-size: 0.9375rem; font-weight: 600; color: var(--ink); }
.review-card__location { font-size: 0.8125rem; color: var(--text-muted); }

.review-card__source {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--green-brand);
  background: var(--green-light);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  margin-top: var(--sp-2);
  letter-spacing: 0.02em;
}
.review-card__source svg { width: 12px; height: 12px; }

/* ── CTA BAND ────────────────────────────────────────────────── */
.cta-band {
  background: var(--green-deep);
  padding: var(--sp-10) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(0,116,74,0.25) 0%, transparent 70%),
              radial-gradient(ellipse at 70% 50%, rgba(0,98,65,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.cta-band__title { color: var(--text-white); margin-bottom: var(--sp-4); position: relative; }
.cta-band__sub { color: var(--text-white-soft); font-size: 1.0625rem; line-height: 1.7; margin-bottom: var(--sp-7); max-width: 500px; margin-left: auto; margin-right: auto; position: relative; }

/* ── FOOTER ──────────────────────────────────────────────────── */
.footer {
  background: var(--green-deep);
  color: var(--text-white);
  padding: var(--sp-9) 0 0;
}

.footer__grid {
  display: grid;
  gap: var(--sp-8);
  grid-template-columns: 1fr;
  padding-bottom: var(--sp-8);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
@media (min-width: 640px)  { .footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer__brand p {
  color: var(--text-white-soft);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-top: var(--sp-3);
  max-width: 280px;
}

.footer__col-title {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-white-soft);
  margin-bottom: var(--sp-4);
}

.footer__links { display: flex; flex-direction: column; gap: var(--sp-2); list-style: none; }
.footer__links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--t-fast);
}
.footer__links a:hover { color: var(--text-white); }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-5) 0;
}
.footer__legal {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
}
.footer__legal-links {
  display: flex;
  gap: var(--sp-4);
  list-style: none;
}
.footer__legal-links a {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--t-fast);
}
.footer__legal-links a:hover { color: var(--text-white); }

/* ── FLOATING CTA BUTTON (Starbucks Frap-style) ──────────────── */
.float-cta {
  position: fixed;
  bottom: var(--sp-5);
  right: var(--sp-5);
  z-index: 900;
  width: 60px; height: 60px;
  border-radius: var(--radius-full);
  background: var(--green-cta);
  color: var(--text-white);
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-float);
  transition: all var(--t-base);
  text-decoration: none;
}
.float-cta:hover { background: var(--green-brand); transform: translateY(-2px); }
.float-cta:active { transform: scale(0.95); }
.float-cta svg { width: 26px; height: 26px; fill: white; }

/* Mobile nav drawer (simple) */
.mobile-menu {
  display: none;
  position: fixed;
  top: 90px; left: 0; right: 0; bottom: 0;
  background: var(--canvas-white);
  z-index: 999;
  overflow-y: auto;
  padding: var(--sp-5);
  flex-direction: column;
  gap: var(--sp-3);
}
.mobile-menu.open { display: flex; }

.mobile-menu__link {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--ink);
  padding: var(--sp-4);
  border-bottom: 1px solid var(--hairline-soft);
  display: block;
}

/* ── UTILITY ─────────────────────────────────────────────────── */
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.mt-2 { margin-top: var(--sp-2); }
.mt-4 { margin-top: var(--sp-4); }
.mt-6 { margin-top: var(--sp-6); }
.mt-8 { margin-top: var(--sp-8); }
.mb-4 { margin-bottom: var(--sp-4); }
.mb-6 { margin-bottom: var(--sp-6); }
.flex { display: flex; }
.items-center { align-items: center; }
.gap-3 { gap: var(--sp-3); }
.gap-4 { gap: var(--sp-4); }
.text-center { text-align: center; }

/* ── PILLAR PAGES ─────────────────────────────────────────────── */

/* Hero offset for fixed nav */
.pillar-hero { padding-top: 90px; background: var(--green-deep); }
.pillar-hero .container { padding-top: var(--sp-8); padding-bottom: var(--sp-8); }

.pillar-hero__grid {
  display: grid;
  gap: var(--sp-8);
  align-items: center;
}
@media (min-width: 900px) { .pillar-hero__grid { grid-template-columns: 55% 45%; } }

.pillar-hero__content { display: flex; flex-direction: column; }
.pillar-hero__title { color: var(--text-white); margin-bottom: var(--sp-4); }
.pillar-hero__sub { color: var(--text-white-soft); font-size: 1.125rem; line-height: 1.7; margin-bottom: var(--sp-6); max-width: 520px; }
.pillar-hero__actions { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-bottom: var(--sp-6); }
.pillar-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  padding-top: var(--sp-5);
  border-top: 1px solid rgba(255,255,255,0.15);
}
.pillar-hero__trust span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--green-light);
  font-weight: 500;
}
.pillar-hero__trust svg { width: 16px; height: 16px; stroke: var(--green-cta); }
.pillar-hero__image { border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 4/3; box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.pillar-hero__image img { width: 100%; height: 100%; object-fit: cover; }

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.8125rem;
  color: var(--text-white-soft);
  margin-bottom: var(--sp-5);
}
.breadcrumb a { color: var(--green-light); transition: color var(--t-fast); }
.breadcrumb a:hover { color: var(--text-white); }

/* Prose Grid (long-form content + sidebar) */
.prose-grid {
  display: grid;
  gap: var(--sp-8);
  align-items: start;
}
@media (min-width: 1024px) { .prose-grid { grid-template-columns: 1fr 340px; } }

.prose-content h3 { font-size: 1.25rem; font-weight: 600; color: var(--ink); margin: var(--sp-6) 0 var(--sp-3); }
.prose-content p { font-size: 1rem; line-height: 1.75; color: var(--text-soft); margin-bottom: var(--sp-4); }
.prose-content ul { padding-left: var(--sp-5); display: flex; flex-direction: column; gap: var(--sp-3); }
.prose-content li { font-size: 0.9375rem; line-height: 1.7; color: var(--text-soft); }
.prose-content strong { color: var(--ink); font-weight: 600; }

/* Info Card */
.info-card {
  background: var(--canvas-white);
  border: 1px solid var(--hairline-soft);
  border-radius: var(--radius-md);
  padding: var(--sp-6);
  margin-bottom: var(--sp-5);
}
.info-card__title { font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: var(--sp-4); }
.info-card__list { display: grid; grid-template-columns: auto 1fr; gap: var(--sp-2) var(--sp-4); }
.info-card__list dt { font-size: 0.8125rem; font-weight: 600; color: var(--text-muted); }
.info-card__list dd { font-size: 0.8125rem; color: var(--ink); font-weight: 500; }

/* CTA Card */
.cta-card {
  background: var(--green-light);
  border-radius: var(--radius-md);
  padding: var(--sp-6);
}
.cta-card h3 { font-size: 1rem; font-weight: 700; color: var(--green-deep); margin-bottom: var(--sp-2); }
.cta-card p { font-size: 0.875rem; color: var(--text-soft); line-height: 1.6; margin-bottom: var(--sp-4); }

/* Service Cards (pillar subtopic links) */
.service-card {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  padding: var(--sp-7);
  background: var(--canvas-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  text-decoration: none;
  transition: all var(--t-base);
}
.service-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.service-card__icon { width: 52px; height: 52px; background: var(--green-light); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; }
.service-card__icon svg { width: 24px; height: 24px; stroke: var(--green-brand); stroke-width: 1.75; }
.service-card__title { font-size: 1.0625rem; font-weight: 700; color: var(--ink); }
.service-card__body { font-size: 0.9375rem; color: var(--text-soft); line-height: 1.65; flex: 1; }
.service-card__link { font-size: 0.875rem; font-weight: 600; color: var(--green-cta); }
.service-card:hover .service-card__link { text-decoration: underline; }

/* Topic Cards */
.topic-card {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  padding: var(--sp-6);
  background: var(--canvas-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  text-decoration: none;
  transition: all var(--t-base);
}
.topic-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.topic-card__icon { width: 44px; height: 44px; background: var(--green-light); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; }
.topic-card__icon svg { width: 20px; height: 20px; stroke: var(--green-brand); stroke-width: 1.75; }
.topic-card h3 { font-size: 0.9375rem; font-weight: 700; color: var(--ink); }
.topic-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.55; }

/* Material Comparison */
.material-compare { display: grid; gap: var(--sp-4); }
@media (min-width: 640px) { .material-compare { grid-template-columns: 1fr 1fr; } }
.material-compare__item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: var(--sp-5);
}
.material-compare__item--winner {
  background: rgba(0,116,74,0.25);
  border-color: var(--green-cta);
}
.material-compare__item h4 { font-size: 1rem; font-weight: 700; color: var(--text-white); margin-bottom: var(--sp-3); }
.material-compare__item ul { list-style: none; display: flex; flex-direction: column; gap: var(--sp-2); }
.material-compare__item li { font-size: 0.875rem; color: var(--text-white-soft); padding-left: var(--sp-4); position: relative; }
.material-compare__item li::before { content: '·'; position: absolute; left: 0; color: var(--green-cta); }

/* Pricing Table */
.pricing-table {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--hairline-soft);
}
.pricing-row {
  display: grid;
  grid-template-columns: 2fr 2fr 1.5fr;
  gap: var(--sp-4);
  padding: var(--sp-4) var(--sp-5);
  border-bottom: 1px solid var(--hairline-soft);
  background: var(--canvas-white);
  align-items: center;
}
.pricing-row:last-child { border-bottom: none; }
.pricing-row--header {
  background: var(--green-deep);
  color: var(--text-white);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.pricing-row--note {
  background: var(--canvas-ceramic);
  grid-template-columns: 1fr;
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-style: italic;
}
.pricing-row:nth-child(odd):not(.pricing-row--header) { background: var(--canvas-soft); }
.price { font-weight: 700; color: var(--green-brand); font-size: 1rem; }



/* ── FAQ ACCORDION ──────────────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.faq-item {
  border: 1.5px solid var(--hairline-soft);
  border-radius: var(--radius-md);
  background: var(--canvas-white);
  overflow: hidden;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.faq-item[open] {
  border-color: var(--green-brand);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--green-brand) 10%, transparent);
}
.faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-6);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--green-brand);
  flex-shrink: 0;
  transition: transform var(--t-fast);
}
.faq-item[open] > .faq-item__q::after {
  content: '−';
}
.faq-item__q:hover { color: var(--green-brand); }
.faq-item__a {
  padding: 0 var(--sp-6) var(--sp-5);
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--text-soft);
  border-top: 1px solid var(--hairline-soft);
}
.faq-item__a p { margin: 0; padding-top: var(--sp-4); }
.faq-item__a a { color: var(--green-brand); font-weight: 600; text-decoration: underline; }

/* ── SCROLL REVEAL ANIMATIONS ─────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children inside grids */
.reveal-stagger > .reveal { transition-delay: calc(var(--i, 0) * 0.08s); }

