/* ==========================================================================
   LIVING CONCEPTS — style.css
   Mobile-first. Order: tokens → reset → base → components → sections
   (document order) → breakpoints → scroll-animation system → reduced-motion.
   ========================================================================== */

:root {
  /* Colour */
  --lime:       #A5CE3A;
  --lime-deep:  #7FA827;
  --lime-wash:  #EFF6DC;
  --amber:      #F4B233;
  --amber-deep: #DFA02C;
  --espresso:   #3B2318;
  --ink:        #14110E;
  --cream:      #FBF8F0;
  --white:      #FFFFFF;

  /* Fluid type scale */
  --fs-hero:    clamp(2.15rem, 1.05rem + 4.6vw, 4rem);
  --fs-h2:      clamp(1.75rem, 1.1rem + 2.6vw, 3.1rem);
  --fs-h3:      clamp(1.2rem, 1.05rem + 0.8vw, 1.6rem);
  --fs-lead:    clamp(1.05rem, 0.95rem + 0.5vw, 1.35rem);
  --fs-body:    clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --fs-small:   clamp(0.85rem, 0.82rem + 0.15vw, 0.95rem);
  --fs-eyebrow: clamp(0.85rem, 0.8rem + 0.2vw, 1rem);
  --fs-quote:   clamp(1.6rem, 1rem + 3vw, 3.2rem);

  /* Font stacks */
  --font-head: 'Poppins', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-accent: 'Quicksand', system-ui, sans-serif;

  /* Spacing */
  --sp-1: 0.25rem;  --sp-2: 0.5rem;  --sp-3: 0.75rem;  --sp-4: 1rem;
  --sp-5: 1.5rem;   --sp-6: 2rem;    --sp-7: 3rem;     --sp-8: 4rem;  --sp-9: 6rem;
  --section-pad: clamp(4rem, 3rem + 5vw, 8rem);
  --container: 1200px;
  --gutter: clamp(1rem, 4vw, 2.5rem);

  /* Radii */
  --r-sm: 12px;  --r-md: 18px;  --r-lg: 28px;  --r-pill: 999px;

  /* Signature shadows */
  --shadow-sticker:    6px 6px 0 var(--espresso);
  --shadow-sticker-sm: 4px 4px 0 var(--espresso);
  --shadow-soft:       0 24px 48px rgba(20, 17, 14, 0.10);

  /* Borders */
  --stroke: 3px solid var(--espresso);
  --stroke-thin: 2px solid var(--espresso);

  /* Motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --t-fast: 160ms;
  --t-med: 340ms;

  /* Layout */
  --header-h: 74px;
}

/* ==========================================================================
   RESET
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-padding-top: calc(var(--header-h) + 1rem);
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  overflow-x: hidden; /* backstop only — layout must not rely on this */
  min-height: 100vh;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
address { font-style: normal; }
input, textarea, select { font: inherit; }

/* ==========================================================================
   BASE TYPOGRAPHY
   ========================================================================== */

h1, h2, h3 {
  font-family: var(--font-head);
  color: var(--espresso);
  line-height: 1.08;
  letter-spacing: -0.01em;
  font-weight: 700;
}
h1 { font-size: var(--fs-hero); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
p { max-width: 68ch; }
.lead { font-size: var(--fs-lead); line-height: 1.5; }

.light { font-weight: 300; }
.bold { font-weight: 800; }

/* ==========================================================================
   LAYOUT UTILITIES
   ========================================================================== */

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-pad); }

.section-head { max-width: 640px; margin: 0 auto var(--sp-8); text-align: center; }
.section-head .eyebrow { justify-content: center; margin-bottom: var(--sp-3); }
.section-head h2 { margin: 0 0 var(--sp-4); }
.section-head .lead { margin: 0 auto; color: rgba(20, 17, 14, 0.72); }

.grid { display: grid; gap: var(--sp-6); }
.grid--cards { grid-template-columns: 1fr; }
.grid--why { grid-template-columns: 1fr; }
.grid--reviews { grid-template-columns: 1fr; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: var(--sp-2);
  gap: var(--sp-3);
  font-family: var(--font-accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: var(--fs-eyebrow);
  color: var(--lime-deep);
}
.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--espresso);
  flex-shrink: 0;
}

/* ==========================================================================
   COMPONENTS
   ========================================================================== */

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-family: var(--font-accent);
  font-weight: 600;
  padding: 0.9em 1.8em;
  border-radius: var(--r-pill);
  border: var(--stroke);
  text-decoration: none;
  line-height: 1.1;
  transition: transform var(--t-fast) var(--ease-out),
              box-shadow var(--t-fast) var(--ease-out),
              background var(--t-fast) var(--ease-out),
              color var(--t-fast) var(--ease-out);
}
.btn--sm { padding: 0.6em 1.3em; font-size: var(--fs-small); }

.btn--amber { background: var(--amber); color: var(--espresso); box-shadow: var(--shadow-sticker-sm); }
.btn--outline { background: transparent; color: var(--espresso); border-color: var(--espresso); }
.btn--espresso { background: var(--espresso); color: var(--cream); border-color: var(--espresso); box-shadow: var(--shadow-sticker-sm); }

@media (hover: hover) {
  .btn--amber:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--espresso); background: var(--amber-deep); }
  .btn--outline:hover { background: var(--espresso); color: var(--cream); }
  .btn--espresso:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--espresso); background: #2c1a12; }
}
.btn--amber:active { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--espresso); }
.btn--espresso:active { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--espresso); }
.btn--outline:active { transform: translate(1px, 1px); }

.btn-icon { flex-shrink: 0; }

/* Cards */
.card {
  background: var(--white);
  border: var(--stroke);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sticker);
  transition: transform var(--t-fast) var(--ease-out), box-shadow var(--t-fast) var(--ease-out);
}
@media (hover: hover) {
  .card:hover { transform: translate(-3px, -3px); box-shadow: 9px 9px 0 var(--espresso); }
}

/* Swappable illustration wrapper */
.ill-frame {
  aspect-ratio: 4 / 3;
  border-radius: var(--r-md);
  overflow: hidden;
  display: grid;
  place-items: center;
}
.ill-frame > svg,
.ill-frame > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ill-frame--hero { aspect-ratio: 10 / 9; }

/* Focus & skip link */
:focus-visible {
  outline: 3px solid var(--espresso);
  outline-offset: 3px;
  border-radius: 4px;
}
.site-footer :focus-visible {
  outline-color: var(--amber);
}

.skip-link {
  position: fixed;
  top: -60px;
  left: var(--sp-4);
  z-index: 1100;
  background: var(--cream);
  color: var(--espresso);
  border: var(--stroke);
  border-radius: var(--r-pill);
  padding: 0.6em 1.2em;
  font-family: var(--font-accent);
  font-weight: 600;
  text-decoration: none;
  transition: top var(--t-fast) var(--ease-out);
}
.skip-link:focus { top: var(--sp-4); }

/* ==========================================================================
   SECTIONS — in document order (base / mobile styling)
   ========================================================================== */

/* 0. Progress bar ---------------------------------------------------------- */
.progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: var(--amber);
  transform-origin: 0 50%;
  transform: scaleX(0);
  z-index: 1000;
}

/* 1. Header / nav ----------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: color-mix(in srgb, var(--cream) 88%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: var(--stroke-thin);
  border-bottom-color: transparent;
  transition: border-color var(--t-med) var(--ease-out);
}
.site-header.scrolled { border-bottom-color: var(--espresso); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: var(--sp-4);
}

.brand { display: inline-flex; align-items: center; gap: var(--sp-3); text-decoration: none; }
.brand-text {
  font-family: var(--font-head);
  letter-spacing: 0.06em;
  font-size: clamp(0.85rem, 3vw, 1.05rem);
  color: var(--espresso);
  white-space: nowrap;
}

.site-nav {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--lime);
  z-index: 890;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  pointer-events: none;
  padding: var(--sp-6);
  transition: opacity var(--t-med) var(--ease-out),
              transform var(--t-med) var(--ease-out),
              visibility 0s linear var(--t-med);
}
body.menu-open .site-nav {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  transition: opacity var(--t-med) var(--ease-out),
              transform var(--t-med) var(--ease-out),
              visibility 0s linear 0s;
}
.site-nav ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-5);
  margin-bottom: var(--sp-6);
}
.site-nav a {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.6rem, 8vw, 2.4rem);
  color: var(--espresso);
  text-decoration: none;
}
.site-nav li {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--t-med) var(--ease-out), transform var(--t-med) var(--ease-out);
}
body.menu-open .site-nav li { opacity: 1; transform: none; }
body.menu-open .site-nav li:nth-child(1) { transition-delay: 60ms; }
body.menu-open .site-nav li:nth-child(2) { transition-delay: 120ms; }
body.menu-open .site-nav li:nth-child(3) { transition-delay: 180ms; }
body.menu-open .site-nav li:nth-child(4) { transition-delay: 240ms; }
body.menu-open .site-nav li:nth-child(5) { transition-delay: 300ms; }

.nav-call { display: inline-flex; }
.header-call { display: none; }
body.menu-open { overflow: hidden; }

.nav-toggle {
  position: relative;
  width: 44px;
  height: 44px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  z-index: 950;
}
.nav-toggle span {
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: var(--espresso);
  transition: transform var(--t-med) var(--ease-out), opacity var(--t-fast) var(--ease-out);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* No-JS fallback: nav always usable, hamburger never shown */
html:not(.js) .nav-toggle { display: none; }
html:not(.js) .site-nav {
  position: static;
  inset: auto;
  display: block;
  background: none;
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
  padding: var(--sp-4) 0;
  z-index: auto;
}
html:not(.js) .site-nav ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: var(--sp-4);
  margin-bottom: var(--sp-3);
}
html:not(.js) .site-nav a {
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: var(--fs-body);
  color: var(--espresso);
}
html:not(.js) .site-nav li { opacity: 1; transform: none; }
html:not(.js) .header-call { display: inline-flex; }
html:not(.js) .nav-call { display: none; }
/* Without JS the nav sits inline in the header, so the bar cannot keep a fixed
   height or the links overflow it. */
html:not(.js) .header-inner {
  height: auto;
  flex-wrap: wrap;
  padding-block: var(--sp-4);
  row-gap: var(--sp-3);
}

/* 2. Hero -------------------------------------------------------------------- */
/* The panel is sized by its contents. It is deliberately NOT pinned to the
   viewport height — forcing 100svh here left a large empty lime field around
   a short headline on desktop. */
.hero { padding-top: var(--sp-5); }
.hero-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
  background: var(--lime);
  border: var(--stroke);
  border-radius: var(--r-lg);
  box-shadow: 8px 8px 0 var(--espresso);
  padding: clamp(1.75rem, 4.5vw, 3.75rem);
  margin-top: var(--sp-5);
  overflow: hidden;
}
.hero-copy { position: relative; z-index: 2; order: 1; }
.hero-copy .eyebrow { color: var(--espresso); }
.hero-copy h1,
.hero-copy .lead { color: var(--espresso); }
.hero-copy h1 { margin-top: var(--sp-4); }
.hero-copy .lead { margin-top: var(--sp-4); max-width: 40ch; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: var(--sp-4); margin-top: var(--sp-6); }
.hero-ctas .btn { width: 100%; }

.hero-art { position: relative; z-index: 2; order: 2; max-width: 400px; margin-inline: auto; }
.hero-art .ill-frame { border: none; background: none; }

/* 3. Trust strip -------------------------------------------------------------- */
.trust { border-bottom: var(--stroke-thin); }
.trust-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5) var(--sp-4);
  padding-block: var(--sp-6);
  justify-items: center;
  text-align: center;
}
.trust-list li {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: var(--fs-small);
  color: var(--espresso);
}

/* 4. Collections --------------------------------------------------------------- */
.cat-card { padding: 0; overflow: hidden; }
.cat-card .ill-frame {
  background: var(--lime-wash);
  border-bottom: var(--stroke);
  border-radius: var(--r-lg) var(--r-lg) 0 0;
}
.cat-card-body { padding: var(--sp-5); }
.cat-card-body h3 { margin-bottom: var(--sp-2); }
.cat-card-body p { margin-bottom: var(--sp-4); color: rgba(20, 17, 14, 0.75); }
.card-link {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-accent);
  font-weight: 600;
  color: var(--lime-deep);
  text-decoration: none;
  transition: transform var(--t-fast) var(--ease-out);
}
@media (hover: hover) {
  .card-link:hover { transform: translateX(4px); }
}

/* 5. Process --------------------------------------------------------------------- */
.process { position: relative; background: var(--lime-wash); border-block: var(--stroke-thin); overflow: hidden; }
.process .section-head { text-align: left; margin-inline: 0; }
.process-layout { display: grid; grid-template-columns: 1fr; gap: var(--sp-7); align-items: start; margin-top: var(--sp-7); position: relative; z-index: 1; }

.process-sticky { position: static; }
.process-visual {
  background: var(--lime);
  border: var(--stroke);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sticker);
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 9;
  padding: var(--sp-6);
}
.process-visual .ill { width: 70%; height: auto; max-height: 100%; }
.process-count {
  display: none;
  position: absolute;
  bottom: var(--sp-4);
  right: var(--sp-5);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2.5rem, 4vw, 3.75rem);
  line-height: 1;
  color: var(--amber);
  text-shadow: 3px 3px 0 var(--espresso);
}

.process-steps { list-style: none; }
.step {
  border-left: 3px solid var(--espresso);
  padding: var(--sp-5) 0 var(--sp-5) var(--sp-6);
  margin-bottom: var(--sp-6);
  position: relative;
}
.step:last-child { margin-bottom: 0; }
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.4em;
  padding: 0.3em 0.9em;
  margin-left: calc(-1 * var(--sp-6) - 2px);
  margin-bottom: var(--sp-3);
  background: var(--amber);
  color: var(--espresso);
  border: var(--stroke-thin);
  border-radius: var(--r-pill);
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: var(--fs-small);
}
.step h3 { margin-bottom: var(--sp-2); }

/* Step dimming belongs to the desktop pinned layout only — see the 1024px block.
   On stacked mobile the steps read as a plain list, so they stay fully legible. */

/* 6. Why us ------------------------------------------------------------------------ */
/* Deliberately NOT card-chromed. Collections above already uses outlined white
   cards; repeating them here made the page read as one long uniform card grid.
   These are flat, with a rule above each, so the two sections have different
   texture and the eye gets some rhythm. */
.why-card {
  padding: var(--sp-5) 0 0;
  background: none;
  border: none;
  border-top: var(--stroke-thin);
  border-radius: 0;
  box-shadow: none;
}
@media (hover: hover) {
  .card.why-card:hover { transform: none; box-shadow: none; }
}
.why-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--lime-wash);
  border: var(--stroke-thin);
  display: grid;
  place-items: center;
  margin-bottom: var(--sp-4);
}
.why-card h3 { margin-bottom: var(--sp-2); }
.why-card p { color: rgba(20, 17, 14, 0.75); }

/* 7. Statement band ------------------------------------------------------------------ */
.statement {
  position: relative;
  background: var(--lime);
  border-block: var(--stroke);
  padding-block: var(--sp-9);
  overflow: hidden;
  text-align: center;
}
.statement-watermark {
  position: absolute;
  top: 50%;
  right: -60px;
  width: min(480px, 60vw);
  height: min(480px, 60vw);
  margin-top: calc(-1 * min(480px, 60vw) / 2);
  opacity: 0.12;
  pointer-events: none;
  rotate: -8deg;
  z-index: 0;
}
.statement .container { position: relative; z-index: 1; }
.statement-text {
  font-family: var(--font-head);
  font-size: var(--fs-quote);
  color: var(--espresso);
  max-width: 24ch;
  margin: 0 auto var(--sp-4);
}
.statement-sub { font-family: var(--font-accent); font-weight: 600; color: var(--espresso); }

/* 8. Testimonials ------------------------------------------------------------------- */
.review-card { padding: var(--sp-6); }
.stars { display: flex; gap: 0.15em; margin-bottom: var(--sp-3); }
.review-card blockquote { margin: 0 0 var(--sp-4); }
.review-by { font-family: var(--font-accent); font-weight: 600; color: var(--espresso); }

/* 9. Visit us ----------------------------------------------------------------------- */
.visit { background: var(--lime-wash); border-top: var(--stroke-thin); }
.visit-layout { display: grid; grid-template-columns: 1fr; gap: var(--sp-7); }
.visit-card { padding: var(--sp-6); display: flex; flex-direction: column; gap: var(--sp-6); }
.visit-row {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
}
.visit-row:last-of-type { margin-bottom: 0; }
.visit-row svg { flex-shrink: 0; margin-top: 0.15em; }
.visit-row a { color: var(--lime-deep); font-weight: 600; text-decoration: underline; }
.visit-row small { color: rgba(20, 17, 14, 0.65); }
.visit-buttons { display: flex; flex-wrap: wrap; gap: var(--sp-4); }
.map-frame {
  border: var(--stroke);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sticker);
  aspect-ratio: 4 / 3;
}
.map-frame iframe { width: 100%; height: 100%; display: block; }

/* 10. Final CTA band ------------------------------------------------------------------ */
.final-cta { background: var(--espresso); padding-block: var(--sp-9); }
.cta-panel {
  position: relative;
  background: var(--amber);
  border: var(--stroke);
  border-radius: var(--r-lg);
  box-shadow: 8px 8px 0 var(--ink);
  padding: clamp(2.5rem, 5vw, 4.5rem);
  text-align: center;
  overflow: hidden;
}
.cta-panel h2,
.cta-panel .lead { position: relative; z-index: 1; color: var(--espresso); }
.cta-panel .lead { margin: var(--sp-4) auto 0; max-width: 46ch; }
.cta-buttons { position: relative; z-index: 1; display: flex; flex-wrap: wrap; justify-content: center; gap: var(--sp-4); margin-top: var(--sp-6); }

/* 11. Footer --------------------------------------------------------------------------- */
.site-footer { background: var(--espresso); color: var(--cream); }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: var(--sp-6); padding-block: var(--sp-8); }
.footer-col h3 { color: var(--cream); font-family: var(--font-accent); font-size: var(--fs-small); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: var(--sp-4); }
.footer-brand { display: flex; flex-direction: column; align-items: flex-start; gap: var(--sp-2); }
.footer-wordmark { font-family: var(--font-head); letter-spacing: 0.06em; color: var(--cream); font-size: 1.15rem; }
.footer-tagline { font-family: var(--font-accent); color: var(--lime); font-size: var(--fs-small); }
.footer-brand p { color: rgba(251, 248, 240, 0.85); margin-top: var(--sp-2); }
.footer-col nav ul { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer-col nav a { color: rgba(251, 248, 240, 0.85); text-decoration: none; }
.footer-col address p { margin-bottom: var(--sp-3); color: rgba(251, 248, 240, 0.85); }
.footer-col address a,
.footer-col nav a { color: var(--amber); text-decoration: underline; }
@media (hover: hover) {
  .footer-col address a:hover,
  .footer-col nav a:hover { color: var(--lime); }
}
.footer-bottom {
  border-top: 1px solid rgba(251, 248, 240, 0.2);
  padding-block: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  font-size: var(--fs-small);
  color: rgba(251, 248, 240, 0.7);
}

/* 12. Floating WhatsApp button ----------------------------------------------------------- */
.wa-float {
  position: fixed;
  right: clamp(1rem, 3vw, 1.75rem);
  bottom: clamp(1rem, 3vw, 1.75rem);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--amber);
  border: var(--stroke);
  box-shadow: var(--shadow-sticker-sm);
  z-index: 950;
  display: grid;
  place-items: center;
  transition: box-shadow var(--t-fast) var(--ease-out);
}
@media (hover: hover) {
  .wa-float:hover { box-shadow: 8px 8px 0 var(--espresso); }
}
@media (max-width: 400px) {
  .wa-float { width: 56px; height: 56px; }
  /* Narrowest phones: the eyebrow rules and a two-up trust grid both push
     text into 1–2 word columns, so drop the rules and stack. */
  .eyebrow { letter-spacing: 0.1em; }
  .eyebrow::before, .eyebrow::after { width: 18px; }
  .trust-list { grid-template-columns: 1fr; gap: var(--sp-4); }
  .trust-list li { justify-content: center; }
}

/* ==========================================================================
   BREAKPOINTS
   ========================================================================== */

@media (min-width: 560px) {
  .trust-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--sp-6);
    padding-block: var(--sp-6);
  }
  .grid--cards,
  .grid--why {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 768px) {
  /* Copy column gets the larger share: the headline is set in Poppins 800 and
     needs room to hold "for your home." on one line. */
  .hero-panel {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: clamp(2rem, 4vw, 3.5rem);
  }
  .hero-art { order: 2; max-width: 440px; margin-inline: 0; margin-left: auto; }
  .hero-ctas .btn { width: auto; }

  .visit-layout {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
}

@media (min-width: 1024px) {
  .nav-toggle { display: none; }
  .header-call { display: inline-flex; }
  .nav-call { display: none; }

  .site-nav {
    position: static;
    inset: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    background: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    padding: 0;
    z-index: auto;
    gap: var(--sp-6);
    transition: none;
  }
  .site-nav ul {
    flex-direction: row;
    align-items: center;
    gap: var(--sp-6);
    margin-bottom: 0;
  }
  .site-nav a {
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: var(--fs-small);
    color: var(--espresso);
    padding-bottom: 4px;
  }
  .site-nav li { opacity: 1; transform: none; transition: none; }

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

  /* The pinned panel and the scrolling steps must be near each other in
     height, or the left column reads as a small stranded image beside a very
     long text column. Panel ≈ 560px pinned; four steps ≈ 1000px scrolling. */
  .process-layout {
    grid-template-columns: 0.92fr 1fr;
    gap: clamp(2.5rem, 4vw, 4.5rem);
  }
  .process-sticky {
    position: sticky;
    top: calc(var(--header-h) + var(--sp-6));
  }
  .process-visual {
    aspect-ratio: auto;
    height: min(60vh, 560px);
    min-height: 420px;
  }
  .process-visual .ill { width: auto; height: 76%; max-width: 88%; }
  .process-count { display: block; }
  .step {
    border-left: none;
    padding-left: 0;
    min-height: clamp(200px, 28vh, 270px);
    padding-block: var(--sp-5);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .process-steps { padding-block: var(--sp-2); }
  /* 0.6, not lower — inactive steps must still clear AA contrast on lime-wash. */
  html.js .step { opacity: 0.6; transition: opacity var(--t-med) var(--ease-out); }
  html.js .step.step--active { opacity: 1; }

  /* Left-aligned here, against the centred heads elsewhere, so the pinned
     two-column section does not open with a centred block over a split layout. */
  .process .section-head { margin-inline: 0; text-align: left; max-width: 34ch; }
  .process .section-head .eyebrow { justify-content: flex-start; }
  .process .section-head .eyebrow::before { display: none; }
  .step:last-child { min-height: auto; }
  .step-num { margin-left: 0; }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: var(--sp-7);
  }
}

@media (min-width: 1024px) and (hover: hover) {
  .site-nav a {
    background-image: linear-gradient(var(--amber), var(--amber));
    background-repeat: no-repeat;
    background-position: 0 100%;
    background-size: 0% 2px;
    transition: background-size var(--t-med) var(--ease-out);
  }
  .site-nav a:hover { background-size: 100% 2px; }
}

@media (min-width: 1440px) {
  .hero-art { max-width: 500px; }
}

/* ==========================================================================
   SCROLL-ANIMATION SYSTEM
   ========================================================================== */

@keyframes rise-in {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes rise-in-lg {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scale-in {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes parallax-shift {
  from { transform: translateY(var(--parallax-y, -40px)); }
  to   { transform: translateY(calc(var(--parallax-y, -40px) * -1)); }
}
@keyframes grow-x {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
@keyframes wa-pulse {
  from { transform: scale(1); }
  to   { transform: scale(1.05); }
}

/* Hero one-time load-in (JS-gated, not scroll-linked) */
html.js .hero-copy > .eyebrow { animation: rise-in 600ms var(--ease-out) both; animation-delay: 0ms; }
html.js .hero-copy > h1       { animation: rise-in 600ms var(--ease-out) both; animation-delay: 80ms; }
html.js .hero-copy > .lead    { animation: rise-in 600ms var(--ease-out) both; animation-delay: 160ms; }
html.js .hero-copy > .hero-ctas { animation: rise-in 600ms var(--ease-out) both; animation-delay: 240ms; }
html.js .hero-art .ill-frame  { animation: scale-in 700ms var(--ease-out) both; animation-delay: 200ms; }

/* Continuous decorative motion (always on, independent of sda/no-sda) */
.wa-float { animation: wa-pulse 2.5s ease-in-out infinite alternate; }

/* Layer 1 — native CSS scroll-driven animations (primary) */
@supports (animation-timeline: view()) {
  html.sda .reveal {
    animation: rise-in linear both;
    animation-timeline: view();
    animation-range: entry 15% entry 45%;
  }
  html.sda .reveal--lg { animation-name: rise-in-lg; }
  html.sda .reveal--scale {
    animation: scale-in linear both;
    animation-timeline: view();
    animation-range: entry 15% entry 45%;
  }
  html.sda .stagger > .reveal {
    animation-range: entry calc(10% + var(--i, 0) * 6%) entry calc(40% + var(--i, 0) * 6%);
  }

  html.sda .parallax {
    animation: parallax-shift linear both;
    animation-timeline: view();
    animation-range: cover 0% cover 100%;
  }
  html.sda .progress {
    animation: grow-x linear both;
    animation-timeline: scroll(root);
  }
}

/* Layer 2 — IntersectionObserver fallback (no-sda only) */
html.no-sda .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  transition-delay: calc(var(--i, 0) * 70ms);
}
html.no-sda .reveal.in-view { opacity: 1; transform: none; }
html.no-sda .reveal--lg { transform: translateY(36px); }
html.no-sda .reveal--lg.in-view { transform: none; }
html.no-sda .reveal--scale {
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
html.no-sda .reveal--scale.in-view { opacity: 1; transform: none; }

/* Mobile rule: no parallax distance on small screens */
@media (max-width: 768px) {
  .parallax { --parallax-y: 0px; }
}

/* ==========================================================================
   REDUCED MOTION — LAST
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    animation-delay: 0ms !important;
  }
  html.no-sda .reveal,
  html.no-sda .reveal--scale {
    opacity: 1;
    transform: none;
  }
  html { scroll-behavior: auto; }
  .progress { display: none; }
}
