/* WDM Collective
   Palette: brief-locked core (#FAFAF8 / #1A1A1A / #2D5F4C / #E8EFE9) plus two extensions the
   client asked for ("more colour, jazzed up"): a lime highlight and a deep forest for dramatic
   sections. ui-ux-pro-max --design-system returned pink Brutalism; overridden.
   Signature: Shop Windows, real local shopfront photos framed as arched shop windows,
   with hanging labels, sitting on a lime kerb. */

:root {
  --paper: #FAFAF8;
  --ink: #1A1A1A;
  --forest: #2D5F4C;
  --tint: #E8EFE9;
  --lime: #D2F26B;
  --deep: #16362A;
  --forest-deep: #234A3B;
  --ink-soft: #4A514D;
  --line: #CFDCD3;
  --mist: #C9D8CE;

  --display: "Space Grotesk", ui-sans-serif, sans-serif;
  --body: "Inter", ui-sans-serif, sans-serif;

  --wrap: 1280px;
  --gutter: clamp(20px, 4vw, 44px);
  --section: clamp(88px, 10vw, 144px);
  --r-card: 20px;
  --r-ctl: 12px;
  --header: 80px;
  --arch: 999px 999px 20px 20px;

  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header) + 24px); -webkit-text-size-adjust: 100%; scrollbar-color: var(--forest) var(--tint); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0; background: var(--paper); color: var(--ink);
  font-family: var(--body); font-size: 17px; line-height: 1.65;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; overflow-x: clip;
}
::selection { background: var(--lime); color: var(--ink); }
:focus-visible { outline: 2px solid var(--forest); outline-offset: 3px; border-radius: 6px; }
.bg-deep :focus-visible, .bg-forest :focus-visible, .hero :focus-visible, .page-hero :focus-visible, .closing :focus-visible, .site-footer :focus-visible { outline-color: var(--lime); }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-underline-offset: 0.22em; text-decoration-thickness: 1px; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
ul, ol { margin: 0; padding: 0; }
.skip { position: absolute; left: 16px; top: -60px; z-index: 100; background: var(--forest); color: #fff; padding: 10px 16px; border-radius: var(--r-ctl); font-weight: 600; text-decoration: none; transition: top 160ms var(--ease-out); }
.skip:focus { top: 12px; }

h1, h2, h3, h4 { font-family: var(--display); font-weight: 700; line-height: 1.06; letter-spacing: -0.03em; margin: 0; text-wrap: balance; }
h1 { font-size: clamp(2.7rem, 5.6vw, 5rem); }
h2 { font-size: clamp(2.2rem, 4.2vw, 3.7rem); }
h3 { font-size: clamp(1.25rem, 1.7vw, 1.55rem); letter-spacing: -0.02em; line-height: 1.2; }
.lime-text { color: var(--lime); }
.forest-text { color: var(--forest); }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: var(--section) 0; }
.lede { font-size: clamp(1.08rem, 1.3vw, 1.24rem); color: var(--ink-soft); max-width: 60ch; }
.muted { color: var(--ink-soft); }
.head { margin-bottom: clamp(44px, 5.5vw, 76px); }
.head > * + * { margin-top: 20px; }
.head.center { text-align: center; }
.head.center h2 { margin-left: auto; margin-right: auto; }
.head.center .lede { margin-left: auto; margin-right: auto; }

/* colour surfaces */
.bg-tint { background: var(--tint); }
.bg-deep { background: var(--deep); color: var(--paper); }
.bg-forest { background: var(--forest); color: var(--paper); }
.bg-lime { background: var(--lime); color: var(--ink); }
.bg-deep .lede, .bg-forest .lede, .bg-deep .muted, .bg-forest .muted { color: var(--mist); }
.bg-deep h2, .bg-forest h2, .bg-deep h3, .bg-forest h3 { color: var(--paper); }
.bg-lime .lede, .bg-lime .muted { color: #33401A; }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--forest); --fg: #fff; --bd: var(--forest);
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 50px; padding: 0 24px; font: 600 15.5px/1 var(--body);
  color: var(--fg); background: var(--bg); border: 1.5px solid var(--bd);
  border-radius: var(--r-ctl); text-decoration: none; white-space: nowrap; cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 160ms var(--ease-out), box-shadow 200ms ease;
}
.btn:active { transform: scale(0.97); }
.btn .arrow { width: 14px; height: 14px; transition: transform 220ms var(--ease-out); }
.btn--lime { --bg: var(--lime); --fg: var(--ink); --bd: var(--lime); }
.btn--outline { --bg: transparent; --fg: var(--forest); --bd: var(--forest); }
.btn--ghost-light { --bg: transparent; --fg: var(--paper); --bd: rgba(250,250,248,.5); }
.btn--ink { --bg: var(--ink); --fg: var(--paper); --bd: var(--ink); }
.btn--block { width: 100%; }
.btn--lg { min-height: 58px; padding: 0 30px; font-size: 16.5px; }
.btn[disabled] { opacity: .6; cursor: progress; }
@media (hover: hover) and (pointer: fine) {
  .btn:hover { --bg: var(--forest-deep); --bd: var(--forest-deep); }
  .btn:hover .arrow { transform: translateX(3px); }
  .btn--lime:hover { --bg: #E1F79A; --bd: #E1F79A; --fg: var(--ink); box-shadow: 0 10px 24px -12px rgba(0,0,0,.45); }
  .btn--outline:hover { --bg: var(--forest); --fg: #fff; --bd: var(--forest); }
  .btn--ghost-light:hover { --bg: var(--paper); --fg: var(--deep); --bd: var(--paper); }
  .btn--ink:hover { --bg: #000; --bd: #000; }
}
.textlink { font-weight: 600; color: var(--forest); text-decoration: underline; text-decoration-color: rgba(45,95,76,.35); transition: text-decoration-color 180ms ease; }
.textlink:hover { text-decoration-color: currentColor; }
.bg-deep .textlink, .bg-forest .textlink, .hero .textlink, .page-hero .textlink, .panel--forest .textlink, .faq-help .textlink { color: var(--lime); text-decoration-color: rgba(210,242,107,.4); }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 50; height: var(--header); background: var(--paper); border-bottom: 1px solid var(--tint); }
.site-header .wrap { height: 100%; display: flex; align-items: center; gap: 32px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.brand img { width: 40px; height: 40px; border-radius: 50%; }
.brand span { font: 700 18px/1 var(--display); letter-spacing: -0.02em; white-space: nowrap; }
.nav { display: flex; gap: 4px; margin: 0 auto; }
.nav a { position: relative; padding: 10px 15px; font-weight: 600; font-size: 15px; text-decoration: none; color: var(--ink-soft); border-radius: 10px; transition: color 160ms ease, background-color 160ms ease; }
.nav a:hover { color: var(--ink); background: var(--tint); }
.nav a[aria-current="page"] { color: var(--ink); background: var(--lime); }
.header-cta { flex-shrink: 0; }
.menu-toggle { display: none; margin-left: auto; width: 46px; height: 46px; border-radius: var(--r-ctl); border: 1.5px solid var(--tint); background: transparent; cursor: pointer; position: relative; }
.menu-toggle span, .menu-toggle span::before, .menu-toggle span::after { position: absolute; left: 50%; width: 18px; height: 2px; background: var(--ink); margin-left: -9px; border-radius: 2px; transition: transform 220ms var(--ease-out); }
.menu-toggle span { top: 50%; margin-top: -1px; }
.menu-toggle span::before, .menu-toggle span::after { content: ""; left: 0; margin-left: 0; }
.menu-toggle span::before { transform: translateY(-6px); }
.menu-toggle span::after { transform: translateY(6px); }
.menu-toggle[aria-expanded="true"] span { background: transparent; }
.menu-toggle[aria-expanded="true"] span::before { transform: rotate(45deg); background: var(--ink); }
.menu-toggle[aria-expanded="true"] span::after { transform: rotate(-45deg); background: var(--ink); }
.mobile-menu { position: fixed; inset: var(--header) 0 0 0; z-index: 49; background: var(--paper); padding: 28px var(--gutter) 40px; display: flex; flex-direction: column; gap: 4px; opacity: 0; visibility: hidden; transform: translateY(-8px); transition: opacity 200ms var(--ease-out), transform 200ms var(--ease-out), visibility 0s linear 200ms; }
.mobile-menu.open { opacity: 1; visibility: visible; transform: none; transition-delay: 0s; }
.mobile-menu a:not(.btn) { font: 700 30px/1.2 var(--display); letter-spacing: -0.02em; text-decoration: none; padding: 14px 0; border-bottom: 1px solid var(--tint); }
.mobile-menu a[aria-current="page"] { color: var(--forest); }
.mobile-menu .btn { margin-top: 28px; }
@media (max-width: 1140px) { .nav, .header-cta { display: none; } .menu-toggle { display: block; } }
@media (min-width: 1141px) { .mobile-menu { display: none; } }

/* ---------- Price tag ---------- */
.tag { position: relative; display: inline-flex; flex-direction: column; justify-content: center; padding: 12px 22px 12px 34px; min-height: 64px; background: var(--forest); color: var(--paper); clip-path: polygon(16px 0, 100% 0, 100% 100%, 16px 100%, 0 50%); border-radius: 0 10px 10px 0; }
.tag::before { content: ""; position: absolute; left: 14px; top: 50%; width: 8px; height: 8px; margin-top: -4px; border-radius: 50%; background: var(--hole, var(--paper)); }
.tag__price { font: 700 28px/1 var(--display); letter-spacing: -0.02em; }
.tag__note { font-size: 12.5px; font-weight: 600; opacity: .88; margin-top: 4px; }
.tag--lime { background: var(--lime); color: var(--ink); }
.tag--ink { background: var(--ink); color: var(--paper); }
.tag--lg { padding: 18px 32px 18px 46px; min-height: 100px; clip-path: polygon(22px 0, 100% 0, 100% 100%, 22px 100%, 0 50%); }
.tag--lg::before { left: 18px; width: 11px; height: 11px; margin-top: -5.5px; }
.tag--lg .tag__price { font-size: clamp(46px, 5vw, 64px); }
.tag--lg .tag__note { font-size: 14px; }

/* ---------- Sticker (spinning circular badge) ---------- */
.sticker { position: absolute; width: 132px; height: 132px; border-radius: 50%; background: var(--lime); color: var(--ink); display: grid; place-items: center; z-index: 4; box-shadow: 0 14px 30px -14px rgba(0,0,0,.45); transform: rotate(-8deg); }
.sticker svg { position: absolute; inset: 0; width: 100%; height: 100%; animation: spin 22s linear infinite; }
.sticker text { font: 600 11.5px var(--body); letter-spacing: .16em; text-transform: uppercase; fill: var(--ink); }
.sticker b { font: 700 28px/1 var(--display); letter-spacing: -0.03em; text-align: center; }
.sticker b small { display: block; font: 600 11px/1.2 var(--body); letter-spacing: .02em; margin-bottom: 3px; }
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .sticker svg { animation: none; } }

/* ---------- Ticks ---------- */
.ticks { list-style: none; display: grid; gap: 14px; }
.ticks li { position: relative; padding-left: 34px; }
.ticks li::before { content: ""; position: absolute; left: 0; top: 3px; width: 22px; height: 22px; border-radius: 7px; background: var(--tick-bg, var(--forest)); }
.ticks li::after { content: ""; position: absolute; left: 8px; top: 7px; width: 6px; height: 11px; border: solid var(--tick-fg, var(--paper)); border-width: 0 2px 2px 0; transform: rotate(45deg); }
.ticks strong { font-weight: 600; display: block; }
.ticks span { color: var(--ink-soft); font-size: 15.5px; }
.ticks--lime { --tick-bg: var(--lime); --tick-fg: var(--ink); }
.ticks--ink { --tick-bg: var(--ink); --tick-fg: var(--lime); }

/* ---------- Forms ---------- */
.form { display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 16px; }
.field { display: grid; gap: 7px; }
.field label { font-weight: 600; font-size: 14px; }
.field .opt { font-weight: 400; color: var(--ink-soft); }
.input, .select, .textarea { width: 100%; font: 400 16px/1.4 var(--body); color: var(--ink); background: #fff; border: 1.5px solid var(--line); border-radius: var(--r-ctl); padding: 13px 14px; min-height: 50px; transition: border-color 160ms ease, box-shadow 160ms ease; }
.textarea { min-height: 100px; resize: vertical; }
.select { appearance: none; padding-right: 44px; cursor: pointer; background-image: linear-gradient(45deg, transparent 50%, var(--forest) 50%), linear-gradient(135deg, var(--forest) 50%, transparent 50%); background-position: calc(100% - 22px) 52%, calc(100% - 16px) 52%; background-size: 6px 6px; background-repeat: no-repeat; }
.input::placeholder, .textarea::placeholder { color: #6B726E; }
.input:hover, .select:hover, .textarea:hover { border-color: #A9BEB0; }
.input:focus, .select:focus, .textarea:focus { outline: none; border-color: var(--forest); box-shadow: 0 0 0 4px rgba(210,242,107,.6); }
.field.has-error .input, .field.has-error .select, .field.has-error .textarea { border-color: #A3312A; }
.error { color: #A3312A; font-size: 13.5px; font-weight: 600; margin: 0; }
.form-success .check { width: 52px; height: 52px; border-radius: 50%; background: var(--lime); margin-bottom: 18px; position: relative; }
.form-success .check::after { content: ""; position: absolute; left: 20px; top: 13px; width: 9px; height: 19px; border: solid var(--ink); border-width: 0 2.5px 2.5px 0; transform: rotate(45deg); }
.form-success h3 { margin-bottom: 10px; }
.form-success p { color: var(--ink-soft); }
.linkbtn { background: none; border: 0; padding: 0; cursor: pointer; font: inherit; }
.form-foot { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--ink-soft); margin: 0; }
.form-foot::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: #3BA55C; box-shadow: 0 0 0 4px rgba(59,165,92,.18); flex-shrink: 0; }

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--deep); color: var(--paper); overflow: hidden; padding-top: clamp(52px, 6vw, 88px); }
.hero::before { content: ""; position: absolute; width: 760px; height: 760px; right: -220px; top: -280px; border-radius: 50%; background: radial-gradient(closest-side, rgba(45,95,76,.95), rgba(45,95,76,0)); pointer-events: none; }
.hero__grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); gap: clamp(40px, 6vw, 88px); align-items: center; }
.hero h1 { color: var(--paper); max-width: 16ch; font-size: clamp(2.6rem, 5vw, 4.5rem); }
.hero .lede { color: var(--mist); margin-top: 26px; max-width: 52ch; }
.hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 24px; margin-top: 36px; }
.hero__proof { display: flex; flex-wrap: wrap; gap: 12px 24px; margin-top: 34px; list-style: none; }
.hero__proof li { position: relative; padding-left: 28px; font-size: 14.5px; font-weight: 600; color: var(--paper); }
.hero__proof li::before { content: ""; position: absolute; left: 0; top: 1px; width: 18px; height: 18px; border-radius: 6px; background: var(--lime); }
.hero__proof li::after { content: ""; position: absolute; left: 6.5px; top: 4px; width: 4px; height: 8px; border: solid var(--ink); border-width: 0 2px 2px 0; transform: rotate(45deg); }
.quote-card { position: relative; background: var(--paper); color: var(--ink); border-radius: var(--r-card); padding: clamp(26px, 3vw, 38px); box-shadow: 0 30px 60px -30px rgba(0,0,0,.6); }
.quote-card h2 { font-size: 1.65rem; letter-spacing: -0.025em; margin-bottom: 6px; max-width: 12ch; }
.quote-card .form-intro { color: var(--ink-soft); font-size: 15px; margin-bottom: 20px; max-width: 34ch; }
.quote-card .sticker { top: -46px; right: -30px; }

/* Shop windows street (signature) */
.street { position: relative; z-index: 2; margin-top: clamp(64px, 7vw, 100px); }
.street__row { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: clamp(12px, 1.6vw, 22px); align-items: end; list-style: none; }
.window { position: relative; margin: 0; }
.window__frame { position: relative; border-radius: var(--arch); overflow: hidden; border: 5px solid var(--forest); background: var(--forest); height: var(--h, 300px); }
.window__frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms var(--ease-out); }
@media (hover: hover) and (pointer: fine) { .window:hover .window__frame img { transform: scale(1.06); } }
.street .window:nth-child(1) { --h: clamp(200px, 21vw, 290px); }
.street .window:nth-child(2) { --h: clamp(240px, 26vw, 360px); }
.street .window:nth-child(3) { --h: clamp(190px, 19vw, 260px); }
.street .window:nth-child(4) { --h: clamp(250px, 27vw, 380px); }
.street .window:nth-child(5) { --h: clamp(210px, 22vw, 310px); }
.street .window:nth-child(6) { --h: clamp(230px, 24vw, 340px); }
.window figcaption { position: absolute; top: -14px; left: 50%; transform: translateX(-50%) rotate(-3deg); background: var(--lime); color: var(--ink); font: 700 13.5px/1 var(--display); padding: 8px 12px; border-radius: 8px; white-space: nowrap; box-shadow: 0 8px 16px -10px rgba(0,0,0,.5); z-index: 2; }
.window:nth-child(even) figcaption { transform: translateX(-50%) rotate(3deg); }
.kerb { height: 10px; background: var(--lime); position: relative; z-index: 2; }

/* ---------- Ticker ---------- */
.ticker { background: var(--lime); color: var(--ink); overflow: hidden; border-bottom: 2px solid var(--ink); }
.ticker__track { display: flex; width: max-content; animation: ticker 70s linear infinite; }
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker ul { display: flex; list-style: none; align-items: center; }
.ticker li { display: flex; align-items: center; gap: 28px; padding: 20px 0 20px 28px; font: 700 clamp(18px, 1.8vw, 24px)/1 var(--display); letter-spacing: -0.015em; white-space: nowrap; }
.ticker li::after { content: ""; width: 10px; height: 10px; background: var(--forest); transform: rotate(45deg); flex-shrink: 0; }
.ticker li.yours span { background: var(--ink); color: var(--lime); padding: 7px 12px; border-radius: 8px; }
@keyframes ticker { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker__track { animation: none; width: auto; } .ticker__track > ul[aria-hidden] { display: none; } .ticker ul { flex-wrap: wrap; justify-content: center; padding: 8px var(--gutter); } .ticker li { padding: 10px 0 10px 20px; } }

/* ---------- Trust row ---------- */
.trust { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); list-style: none; }
.trust li { padding: 34px 26px; border-left: 1px solid var(--line); display: flex; flex-direction: column; gap: 6px; }
.trust li:first-child { border-left: 0; padding-left: 0; }
.trust b { font: 700 1.3rem/1.2 var(--display); letter-spacing: -0.02em; }
.trust span { color: var(--ink-soft); font-size: 15px; line-height: 1.45; }

/* ---------- Bento (who we work with) ---------- */
.bento { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); grid-auto-rows: clamp(190px, 17vw, 240px); gap: clamp(12px, 1.4vw, 18px);
  grid-template-areas: "cafe trades retail pro" "cafe well well pro" "fit events estate estate" "fit every every every"; }
.tile { position: relative; overflow: hidden; border-radius: var(--r-card); background: var(--forest); isolation: isolate; margin: 0; }
.tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 800ms var(--ease-out); z-index: -1; }
.tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(22,54,42,0) 42%, rgba(22,54,42,.85)); z-index: -1; }
.tile h3 { position: absolute; left: 18px; right: 18px; bottom: 16px; color: var(--paper); font-size: clamp(1.1rem, 1.5vw, 1.35rem); }
.tile p { position: absolute; left: 18px; top: 16px; margin: 0; background: var(--lime); color: var(--ink); font: 600 12.5px/1 var(--body); padding: 7px 10px; border-radius: 7px; opacity: 0; transform: translateY(-6px); transition: opacity 250ms ease, transform 300ms var(--ease-out); max-width: calc(100% - 36px); white-space: normal; line-height: 1.35; }
@media (hover: hover) and (pointer: fine) { .tile:hover img { transform: scale(1.07); } .tile:hover p { opacity: 1; transform: none; } }
.tile--cafe { grid-area: cafe; } .tile--trades { grid-area: trades; } .tile--retail { grid-area: retail; } .tile--pro { grid-area: pro; }
.tile--well { grid-area: well; } .tile--fit { grid-area: fit; } .tile--events { grid-area: events; } .tile--estate { grid-area: estate; }
.every { grid-area: every; border-radius: var(--r-card); background: var(--lime); padding: clamp(24px, 3vw, 40px); display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.every h3 { font-size: clamp(1.5rem, 2.4vw, 2.2rem); letter-spacing: -0.03em; line-height: 1.1; max-width: 18ch; }
.every p { margin-top: 10px; color: #33401A; max-width: 50ch; }

/* arch mosaic (services "who") */
.arches { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(36px, 3.4vw, 48px) clamp(14px, 2vw, 28px); list-style: none; }
.arches .window__frame { height: auto; aspect-ratio: 3 / 4; }
.arches .window figcaption { top: auto; bottom: -14px; }
.every--wide { margin-top: clamp(40px, 4vw, 56px); }

/* ---------- Signs (website costing you customers) ---------- */
.signs { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(14px, 1.8vw, 24px); }
.sign { background: var(--forest); border-radius: var(--r-card); padding: clamp(26px, 2.6vw, 34px); display: flex; flex-direction: column; gap: 14px; transition: transform 300ms var(--ease-out), background-color 300ms ease; }
.sign:hover { transform: translateY(-4px); background: #336B56; }
.icon-chip { color: var(--ink); }
.sign .icon-chip { width: 52px; height: 52px; border-radius: 14px; background: var(--lime); display: grid; place-items: center; margin-bottom: 8px; }
.sign .icon-chip svg { width: 28px; height: 28px; }
.sign h3 { color: var(--paper); }
.sign p { color: var(--mist); font-size: 15.5px; }
.sign .fix { margin-top: auto; padding-top: 16px; border-top: 1px solid rgba(250,250,248,.15); font-size: 14.5px; color: var(--paper); }
.sign .fix b { color: var(--lime); }
.signs-foot { margin-top: clamp(40px, 5vw, 56px); display: flex; align-items: center; gap: 20px 28px; flex-wrap: wrap; }
.signs-foot p { color: var(--mist); margin: 0; }
.icon * { fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.icon .gf { fill: currentColor; stroke: none; }

/* ---------- Offer cards ---------- */
.offers { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(18px, 2.4vw, 32px); }
.offers--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.offer { border-radius: var(--r-card); padding: clamp(30px, 3.6vw, 50px); display: flex; flex-direction: column; background: var(--tint); --hole: var(--tint); transition: transform 300ms var(--ease-out); }
.offer:hover { transform: translateY(-4px); }
.offer__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; margin-bottom: 20px; flex-wrap: wrap; }
.offer h3 { font-size: clamp(1.8rem, 2.6vw, 2.4rem); letter-spacing: -0.03em; }
.offers--3 .offer h3 { font-size: clamp(1.5rem, 2vw, 1.8rem); }
.offer > p { max-width: 46ch; margin-bottom: 28px; color: var(--ink-soft); }
.offer .ticks { margin-bottom: 32px; }
.offer .btn, .offer .textlink { margin-top: auto; align-self: flex-start; }
.offer--forest { background: var(--forest); color: var(--paper); --hole: var(--forest); }
.offer--forest > p, .offer--forest .ticks span { color: var(--mist); }
.offer--forest h3 { color: var(--paper); }
.offer--forest .textlink { color: var(--lime); }
.offer--lime { background: var(--lime); --hole: var(--lime); }
.offer--lime > p { color: #33401A; }
.offers-foot { margin-top: clamp(40px, 5vw, 56px); display: flex; justify-content: center; }

/* ---------- Process ---------- */
.road { position: relative; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(20px, 3vw, 40px); list-style: none; }
.road::before, .road::after { content: ""; position: absolute; left: 0; right: 0; top: 31px; height: 3px; background: var(--line); border-radius: 3px; }
.road::after { background: var(--forest); transform: scaleX(0); transform-origin: left; transition: transform 1.4s var(--ease-in-out); }
.road.in::after, .no-js .road::after { transform: scaleX(1); }
.step { position: relative; z-index: 1; }
.step__num { width: 64px; height: 64px; border-radius: 50%; display: grid; place-items: center; background: var(--paper); border: 3px solid var(--forest); color: var(--forest); font: 700 20px/1 var(--display); margin-bottom: 28px; transition: background-color 400ms ease, color 400ms ease; }
.road.in .step__num { background: var(--lime); color: var(--ink); transition-delay: calc(var(--i) * 300ms + 200ms); }
.step h3 { margin-bottom: 10px; }
.step p { color: var(--ink-soft); font-size: 16px; max-width: 30ch; }
.step .when { display: inline-block; margin-top: 14px; font-size: 13px; font-weight: 600; color: var(--forest); background: rgba(45,95,76,.1); padding: 6px 10px; border-radius: 7px; }
@media (prefers-reduced-motion: reduce) { .road::after { transform: scaleX(1); transition: none; } .step__num { transition: none; } }

/* ---------- Approach ---------- */
.approach { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); gap: clamp(40px, 7vw, 120px); align-items: start; }
.approach__head { position: sticky; top: calc(var(--header) + 40px); }
.approach__head .lede { margin-top: 20px; }
.approach__photo { margin-top: 36px; border-radius: var(--arch); overflow: hidden; aspect-ratio: 4 / 5; max-width: 380px; border: 6px solid var(--lime); background: var(--lime); }
.approach__photo img { width: 100%; height: 100%; object-fit: cover; }
.principle { padding: clamp(28px, 3vw, 40px) 0; border-top: 1px solid var(--line); display: grid; grid-template-columns: 56px minmax(0, 1fr); gap: 22px; }
.principle:first-child { padding-top: 0; border-top: 0; }
.principle .icon-chip, .standard .icon-chip { width: 52px; height: 52px; border-radius: 14px; background: var(--forest); color: var(--lime); display: grid; place-items: center; }
.principle .icon-chip svg, .standard .icon-chip svg { width: 26px; height: 26px; }
.principle h3 { margin-bottom: 12px; font-size: clamp(1.35rem, 2vw, 1.7rem); }
.principle p { color: var(--ink-soft); max-width: 58ch; }

/* ---------- Why panel ---------- */
.why { background: var(--forest); color: var(--paper); border-radius: var(--r-card); display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); overflow: hidden; }
.why__item { padding: clamp(32px, 4vw, 56px); border-left: 1px solid rgba(250,250,248,.14); transition: background-color 300ms ease; }
.why__item:hover { background: var(--forest-deep); }
.why__item:first-child { border-left: 0; }
.why__item .icon-chip { width: 56px; height: 56px; border-radius: 16px; background: var(--lime); display: grid; place-items: center; margin-bottom: 26px; }
.why__item .icon-chip svg { width: 30px; height: 30px; }
.why__item h3 { margin-bottom: 10px; color: var(--paper); }
.why__item p { color: var(--mist); }

/* ---------- Numbers (lime) ---------- */
.numbers { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 3px solid var(--ink); }
.num { padding: 36px 24px 0 0; }
.num + .num { padding-left: 28px; border-left: 2px solid rgba(26,26,26,.18); }
.num b { display: block; font: 700 clamp(3.4rem, 7vw, 6.2rem)/0.95 var(--display); letter-spacing: -0.045em; font-variant-numeric: tabular-nums; }
.num b small { font-size: .4em; letter-spacing: -0.02em; margin-left: 6px; }
.num > span { display: block; margin-top: 16px; font-size: 16px; font-weight: 600; max-width: 22ch; }
.numbers-caption { margin-top: 40px; color: #33401A; font-size: 15.5px; max-width: 64ch; }

/* ---------- Teaser ---------- */
.teaser { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(40px, 7vw, 110px); align-items: center; }
.teaser__photo { position: relative; }
.teaser__photo .frame { border-radius: var(--r-card); overflow: hidden; aspect-ratio: 5 / 4; }
.teaser__photo img { width: 100%; height: 100%; object-fit: cover; }
.teaser__photo .sticker { bottom: -34px; right: 28px; }
.teaser h2 { margin-bottom: 20px; }
.teaser .ticks { margin-top: 28px; }
.teaser .btn { margin-top: 34px; }

/* ---------- Testimonials ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(18px, 2.2vw, 30px); align-items: start; }
.quote { margin: 0; background: var(--tint); border-radius: var(--r-card); padding: clamp(28px, 3vw, 38px); display: flex; flex-direction: column; gap: 22px; }
.quote:nth-child(2) { margin-top: clamp(0px, 4vw, 56px); background: var(--forest); color: var(--paper); }
.quote:nth-child(2) figcaption { color: var(--mist); }
.quote:nth-child(2) .sample { color: var(--lime); border-color: var(--lime); }
.quote:nth-child(3) { background: var(--lime); }
.quote:nth-child(3) figcaption { color: #33401A; }
.quote:nth-child(3) .sample { color: var(--ink); border-color: var(--ink); }
.quote blockquote { margin: 0; font: 500 1.24rem/1.45 var(--display); letter-spacing: -0.015em; }
.quote figcaption { display: flex; align-items: center; justify-content: space-between; gap: 12px; font-size: 14.5px; color: var(--ink-soft); }
.sample { display: inline-block; font: 600 12px/1 var(--body); letter-spacing: .04em; color: var(--forest); border: 1.5px solid var(--forest); border-radius: 6px; padding: 6px 8px; flex-shrink: 0; }

/* ---------- FAQ ---------- */
.faq-layout { display: grid; grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr); gap: clamp(40px, 7vw, 110px); align-items: start; }
.faq-layout .head { margin-bottom: 0; position: sticky; top: calc(var(--header) + 40px); }
.faq-help { margin-top: 32px; background: var(--forest); color: var(--paper); border-radius: var(--r-card); padding: 26px; }
.faq-help b { display: block; font: 700 1.2rem/1.25 var(--display); letter-spacing: -0.02em; margin-bottom: 8px; }
.faq-help p { color: var(--mist); font-size: 15px; margin-bottom: 18px; }
.faq { border-top: 2px solid var(--ink); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 24px 0; background: none; border: 0; cursor: pointer; text-align: left; color: var(--ink); font: 500 clamp(1.06rem, 1.35vw, 1.22rem)/1.35 var(--display); letter-spacing: -0.01em; }
.faq__q:hover { color: var(--forest); }
.faq__icon { position: relative; width: 34px; height: 34px; border-radius: 50%; background: var(--tint); flex-shrink: 0; transition: background-color 200ms ease; }
.faq__icon::before, .faq__icon::after { content: ""; position: absolute; left: 50%; top: 50%; width: 12px; height: 2px; margin: -1px 0 0 -6px; background: var(--forest); border-radius: 2px; transition: transform 260ms var(--ease-out); }
.faq__icon::after { transform: rotate(90deg); }
.faq__q[aria-expanded="true"] .faq__icon { background: var(--lime); }
.faq__q[aria-expanded="true"] .faq__icon::before, .faq__q[aria-expanded="true"] .faq__icon::after { background: var(--ink); }
.faq__q[aria-expanded="true"] .faq__icon::after { transform: rotate(0deg); }
.faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 300ms var(--ease-out); }
.faq__a > div { overflow: hidden; }
.faq__a p { color: var(--ink-soft); max-width: 64ch; padding-bottom: 24px; margin: 0; }
.faq__item.open .faq__a { grid-template-rows: 1fr; }
.no-js .faq__a { grid-template-rows: 1fr; }

/* ---------- Photo closing ---------- */
.closing { position: relative; isolation: isolate; color: var(--paper); padding: clamp(110px, 13vw, 190px) 0; overflow: hidden; text-align: center; }
.closing > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.closing::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(22,54,42,.62), rgba(22,54,42,.82)); }
.closing h2 { font-size: clamp(2.6rem, 6vw, 5.2rem); color: var(--paper); max-width: 16ch; margin: 0 auto; }
.closing p { color: var(--mist); margin: 24px auto 0; max-width: 52ch; font-size: 1.15rem; }
.closing__actions { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 16px 28px; margin-top: 40px; }
.closing__mail { color: var(--paper); font-weight: 600; text-decoration: underline; text-decoration-color: rgba(250,250,248,.45); }
.closing__mail:hover { text-decoration-color: var(--lime); color: var(--lime); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--paper); padding: clamp(64px, 7vw, 96px) 0 32px; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; flex-wrap: wrap; padding-bottom: 56px; margin-bottom: 56px; border-bottom: 1px solid #333836; }
.footer-top p { font: 700 clamp(1.8rem, 3.4vw, 2.8rem)/1.08 var(--display); letter-spacing: -0.03em; max-width: 18ch; margin: 0; }
.footer-top p span { color: var(--lime); }
.footer-grid { display: grid; grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 0.7fr)); gap: 40px; }
.footer-brand .brand img { width: 48px; height: 48px; }
.footer-brand .brand span { font-size: 20px; }
.footer-brand p { color: #B9BFBB; margin-top: 18px; max-width: 34ch; font-size: 15.5px; }
.footer-col .footer-h { font: 600 13px/1 var(--body); letter-spacing: .06em; color: var(--lime); margin-bottom: 18px; text-transform: uppercase; }
.footer-col ul { list-style: none; display: grid; gap: 10px; }
.footer-col a { color: var(--paper); text-decoration: none; font-size: 15.5px; }
.footer-col a:hover { color: var(--lime); }
.footer-base { margin-top: 64px; padding-top: 24px; border-top: 1px solid #333836; color: #9EA6A1; font-size: 14px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

/* ---------- Page hero (interior) ---------- */
.page-hero { position: relative; background: var(--deep); color: var(--paper); padding: clamp(64px, 7vw, 108px) 0; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; width: 680px; height: 680px; left: -240px; bottom: -340px; border-radius: 50%; background: radial-gradient(closest-side, rgba(45,95,76,.9), rgba(45,95,76,0)); pointer-events: none; }
.page-hero__grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); gap: clamp(40px, 6vw, 96px); align-items: center; }
.page-hero h1 { color: var(--paper); max-width: 15ch; }
.page-hero .lede { color: var(--mist); margin-top: 24px; }
.sub-h { font: 500 clamp(1.3rem, 2vw, 1.75rem)/1.3 var(--display); color: var(--forest); letter-spacing: -0.015em; }
.page-hero .sub-h { color: var(--lime); margin-top: 18px; }
.pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; list-style: none; }
.pills a { display: inline-flex; align-items: center; gap: 10px; min-height: 44px; padding: 0 16px; border-radius: 999px; background: rgba(250,250,248,.08); border: 1px solid rgba(250,250,248,.2); text-decoration: none; font-weight: 600; font-size: 14.5px; color: var(--paper); transition: background-color 180ms ease, color 180ms ease; }
.pills a b { color: var(--lime); font-weight: 600; transition: color 180ms ease; }
.pills a:hover { background: var(--lime); color: var(--ink); border-color: var(--lime); }
.pills a:hover b { color: var(--forest); }
.hero-photos { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 16px; align-items: end; list-style: none; }
.hero-photos .window__frame { height: auto; aspect-ratio: 3 / 4; border-color: var(--lime); }
.hero-photos .window:nth-child(2) { transform: translateY(-40px); }
.hero-photos .window:nth-child(3) { grid-column: 1 / -1; margin-top: -24px; }
.hero-photos .window:nth-child(3) .window__frame { aspect-ratio: 16 / 8; border-radius: 20px; }
.hero-photos figcaption { top: auto !important; bottom: 14px; }
.single-photo { position: relative; }
.single-photo .window__frame { height: auto; aspect-ratio: 4 / 5; border-color: var(--lime); border-width: 6px; max-width: 460px; margin-left: auto; }
.single-photo .sticker { left: -10px; bottom: 40px; }
.single-photo figcaption { top: auto; bottom: -14px; }

/* ---------- Services detail ---------- */
.detail { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); gap: clamp(40px, 7vw, 110px); align-items: start; }
.detail__intro { position: sticky; top: calc(var(--header) + 40px); }
.detail__intro h2 { margin-bottom: 20px; }
.detail__intro .tag { margin-top: 36px; }
.detail__intro .fine { margin-top: 18px; font-size: 14.5px; color: var(--ink-soft); }
.detail__intro .btn { margin-top: 26px; }
.incl { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; list-style: none; }
.incl-item { background: var(--tint); border-radius: 16px; padding: 22px 22px 22px 58px; position: relative; transition: background-color 250ms ease, transform 250ms var(--ease-out); }
.incl-item:hover { background: var(--lime); transform: translateY(-3px); }
.incl-item::before { content: ""; position: absolute; left: 20px; top: 24px; width: 24px; height: 24px; border-radius: 8px; background: var(--forest); }
.incl-item::after { content: ""; position: absolute; left: 29px; top: 28px; width: 6px; height: 12px; border: solid var(--lime); border-width: 0 2px 2px 0; transform: rotate(45deg); }
.incl-item strong { display: block; font: 700 1.08rem/1.3 var(--display); letter-spacing: -0.01em; margin-bottom: 4px; }
.incl-item span { color: var(--ink-soft); font-size: 15px; }
.care { margin-top: clamp(56px, 6vw, 80px); background: var(--forest); color: var(--paper); border-radius: var(--r-card); padding: clamp(30px, 4vw, 56px); display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: clamp(28px, 5vw, 72px); align-items: center; --hole: var(--forest); }
.care h3 { font-size: clamp(1.6rem, 2.4vw, 2.1rem); margin-bottom: 12px; color: var(--paper); }
.care > div > p { color: var(--mist); }
.care .tag { margin-top: 26px; }
.care .ticks { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px 28px; }
.care .ticks span { color: var(--mist); }

.price-why { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(40px, 7vw, 110px); align-items: center; }
.price-why__big { font: 700 clamp(6rem, 16vw, 13rem)/0.85 var(--display); letter-spacing: -0.05em; color: var(--ink); }
.price-why__big small { display: block; font: 500 clamp(1.1rem, 1.5vw, 1.3rem)/1.4 var(--display); letter-spacing: -0.01em; margin-top: 26px; max-width: 26ch; }
.price-why h2 { margin-bottom: 22px; }
.price-why p { color: #33401A; }
.not-paying { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.not-paying li { font-weight: 600; font-size: 14.5px; padding: 10px 14px; border-radius: 10px; background: var(--ink); color: var(--paper); text-decoration: line-through; text-decoration-color: var(--lime); text-decoration-thickness: 2px; }
.not-paying-label { margin-top: 30px; font-weight: 700; color: var(--ink) !important; }

.compare-wrap { overflow-x: auto; border-radius: var(--r-card); border: 1px solid var(--line); background: #fff; }
.compare { width: 100%; border-collapse: collapse; min-width: 760px; }
.compare th, .compare td { padding: 20px 22px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); font-size: 15.5px; }
.compare thead th { font: 700 1.05rem/1.2 var(--display); letter-spacing: -0.01em; background: var(--tint); }
.compare thead th.us { background: var(--forest); color: var(--paper); }
.compare tbody th { font-weight: 600; width: 22%; }
.compare td.us { background: rgba(210,242,107,.4); font-weight: 600; }
.compare tr:last-child th, .compare tr:last-child td { border-bottom: 0; }
.compare-note { margin-top: 16px; font-size: 14px; color: var(--ink-soft); }

.mkt-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(14px, 1.8vw, 22px); }
.mkt-item { background: var(--forest); border-radius: var(--r-card); padding: clamp(26px, 2.6vw, 34px); transition: transform 300ms var(--ease-out); }
.mkt-item:hover { transform: translateY(-4px); }
.mkt-item .icon-chip { width: 50px; height: 50px; border-radius: 14px; background: var(--lime); display: grid; place-items: center; margin-bottom: 20px; }
.mkt-item .icon-chip svg { width: 26px; height: 26px; }
.mkt-item h3 { font-size: 1.22rem; margin-bottom: 8px; color: var(--paper); }
.mkt-item p { color: var(--mist); font-size: 15.5px; }
.trial { margin-top: clamp(40px, 5vw, 64px); background: var(--lime); color: var(--ink); border-radius: var(--r-card); padding: clamp(30px, 4vw, 56px); display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(28px, 5vw, 72px); align-items: center; }
.trial h3 { font-size: clamp(1.7rem, 2.6vw, 2.3rem); margin-bottom: 14px; color: var(--ink) !important; }
.trial p { color: #33401A; }
.months { display: grid; grid-template-columns: 1fr 1fr auto; gap: 10px; }
.month { background: var(--paper); border-radius: 14px; padding: 20px; }
.month b { display: block; font: 700 1rem/1 var(--display); color: var(--forest); margin-bottom: 10px; }
.month span { font-size: 14.5px; color: var(--ink-soft); line-height: 1.45; display: block; }
.month--then { background: var(--ink); display: flex; flex-direction: column; justify-content: center; min-width: 130px; }
.month--then b { color: var(--lime); }
.month--then span { color: var(--paper); font-weight: 600; }

.addons { border-top: 2px solid var(--ink); }
.addon { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.3fr) auto; gap: 32px; align-items: baseline; padding: 26px 0; border-bottom: 1px solid var(--line); }
.addon h3 { font-size: 1.22rem; }
.addon p { color: var(--ink-soft); font-size: 15.5px; }
.addon .quoted { font-weight: 600; font-size: 13.5px; color: var(--ink); background: var(--lime); padding: 6px 10px; border-radius: 8px; white-space: nowrap; }
.addons-note { margin-top: 28px; color: var(--ink-soft); }

/* checklist grid */
.checks { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(14px, 1.8vw, 22px); }
.check-card { background: var(--paper); border-radius: 18px; padding: 26px; display: grid; grid-template-columns: 44px minmax(0, 1fr); gap: 18px; border: 1px solid var(--line); }
.bg-tint .check-card { border-color: transparent; }
.check-n { width: 40px; height: 40px; border-radius: 12px; background: var(--lime); position: relative; }
.check-n::after { content: ""; position: absolute; left: 15px; top: 9px; width: 8px; height: 15px; border: solid var(--ink); border-width: 0 2.5px 2.5px 0; transform: rotate(45deg); }
.check-card h3 { font-size: 1.2rem; margin-bottom: 6px; }
.check-card p { color: var(--ink-soft); font-size: 15.5px; }

/* ---------- Portfolio ---------- */
.where { display: grid; grid-template-columns: minmax(0, 0.55fr) minmax(0, 1.45fr); gap: clamp(32px, 6vw, 96px); align-items: start; }
.where__label { font: 700 clamp(2.2rem, 4.2vw, 3.7rem)/1.06 var(--display); letter-spacing: -0.03em; }
.statement { font: 500 clamp(1.45rem, 2.5vw, 2.1rem)/1.4 var(--display); letter-spacing: -0.02em; max-width: 34ch; }
.statement mark { background: var(--lime); color: var(--ink); padding: 0 .15em; border-radius: 4px; }
.statement-body { margin-top: 30px; color: var(--ink-soft); max-width: 62ch; font-size: 1.08rem; }
.expect { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(18px, 2.2vw, 30px); }
.expect__card { background: var(--tint); border-radius: var(--r-card); overflow: hidden; display: flex; flex-direction: column; }
.expect__card .media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.expect__card .media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.expect__card .body { padding: clamp(24px, 2.6vw, 32px); }
.expect__card h3 { margin-bottom: 10px; }
.expect__card p { color: var(--ink-soft); font-size: 16px; }
.media-chip { position: absolute; left: 14px; top: 14px; background: var(--lime); color: var(--ink); font: 700 13px/1 var(--display); padding: 8px 11px; border-radius: 8px; z-index: 3; margin: 0; }
.ba .after { position: absolute; inset: 0; clip-path: inset(0 0 0 var(--pos, 50%)); }
.ba .before-img { filter: grayscale(1) contrast(.85) blur(1.5px) brightness(.9); }
.ba .handle { position: absolute; top: 0; bottom: 0; left: var(--pos, 50%); width: 3px; margin-left: -1.5px; background: var(--lime); z-index: 2; pointer-events: none; }
.ba .handle::after { content: ""; position: absolute; top: 50%; left: 50%; width: 38px; height: 38px; margin: -19px 0 0 -19px; border-radius: 50%; background: var(--lime); box-shadow: 0 6px 14px rgba(0,0,0,.35); }
.ba input[type=range] { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; z-index: 4; margin: 0; }
.ba:focus-within .handle::after { outline: 3px solid var(--paper); outline-offset: 2px; }
.ba .lbl { position: absolute; bottom: 14px; z-index: 3; font: 700 12.5px/1 var(--body); padding: 7px 10px; border-radius: 7px; margin: 0; }
.ba .lbl--b { left: 14px; background: rgba(26,26,26,.78); color: var(--paper); }
.ba .lbl--a { right: 14px; background: var(--lime); color: var(--ink); }
.standards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(14px, 1.8vw, 22px); }
.standard { background: var(--tint); border-radius: var(--r-card); padding: clamp(24px, 2.6vw, 34px); display: grid; grid-template-columns: 56px minmax(0, 1fr); gap: 20px; }
.standard h3 { font-size: 1.3rem; margin-bottom: 8px; }
.standard p { color: var(--ink-soft); font-size: 16px; }
.standard .how { margin-top: 12px; font-size: 14px; font-weight: 600; color: var(--forest); }
.standard--wide { grid-column: 1 / -1; background: var(--lime); }
.standard--wide p { color: #33401A; }
.standard--wide .how { color: var(--ink); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr); gap: clamp(20px, 2.6vw, 36px); align-items: stretch; }
.panel { background: var(--tint); border-radius: var(--r-card); padding: clamp(28px, 3.6vw, 48px); }
.panel--forest { background: var(--forest); color: var(--paper); }
.panel h2 { font-size: clamp(1.7rem, 2.6vw, 2.2rem); letter-spacing: -0.025em; margin-bottom: 8px; }
.panel--forest h2 { color: var(--paper); }
.panel .panel-intro { color: var(--ink-soft); margin-bottom: 28px; }
.panel--forest .panel-intro { color: var(--mist); }
.info-list { list-style: none; display: grid; }
.info-list li { padding: 22px 0; border-top: 1px solid rgba(250,250,248,.16); }
.info-list li:first-child { border-top: 0; padding-top: 0; }
.info-list .k { display: block; font-weight: 600; font-size: 13.5px; color: var(--lime); margin-bottom: 6px; letter-spacing: .02em; }
.info-list .v { font: 500 1.2rem/1.35 var(--display); letter-spacing: -0.01em; word-break: break-word; color: var(--paper); }
.info-list a.v { text-decoration: none; }
.info-list a.v:hover { color: var(--lime); }
.socials { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px; }
.socials a { display: inline-flex; align-items: center; min-height: 44px; padding: 0 16px; border-radius: var(--r-ctl); background: rgba(250,250,248,.08); border: 1px solid rgba(250,250,248,.2); font-weight: 600; font-size: 14.5px; text-decoration: none; color: var(--paper); transition: background-color 160ms ease, color 160ms ease; }
.socials a:hover { background: var(--lime); color: var(--ink); border-color: var(--lime); }
.next3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(16px, 2vw, 26px); list-style: none; }
.next3 li { background: var(--forest); border-radius: var(--r-card); padding: clamp(26px, 3vw, 36px); }
.next3 .n { width: 48px; height: 48px; border-radius: 50%; background: var(--lime); color: var(--ink); display: grid; place-items: center; font: 700 18px/1 var(--display); margin-bottom: 22px; }
.next3 b { display: block; font: 700 1.3rem/1.25 var(--display); letter-spacing: -0.02em; margin-bottom: 10px; color: var(--paper); }
.next3 p { color: var(--mist); font-size: 16px; }
.hours { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); gap: clamp(32px, 6vw, 96px); align-items: center; }
.hours-board { background: var(--ink); color: var(--paper); border-radius: var(--r-card); padding: clamp(28px, 3.6vw, 44px); }
.hours-board h3 { color: var(--lime); margin-bottom: 20px; }
.hours-row { display: flex; justify-content: space-between; gap: 20px; padding: 16px 0; border-top: 1px solid rgba(250,250,248,.16); flex-wrap: wrap; }
.hours-row span:first-child { font-weight: 600; }
.hours-row span:last-child { color: var(--mist); }

/* ---------- Reveal ---------- */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out); }
.js .reveal.in { opacity: 1; transform: none; }
.js .stagger > * { opacity: 0; transform: translateY(22px); transition: opacity 650ms var(--ease-out), transform 650ms var(--ease-out); }
.js .stagger.in > * { opacity: 1; transform: none; }
.js .stagger.in > *:nth-child(2) { transition-delay: 70ms; } .js .stagger.in > *:nth-child(3) { transition-delay: 140ms; }
.js .stagger.in > *:nth-child(4) { transition-delay: 210ms; } .js .stagger.in > *:nth-child(5) { transition-delay: 280ms; }
.js .stagger.in > *:nth-child(6) { transition-delay: 350ms; } .js .stagger.in > *:nth-child(7) { transition-delay: 420ms; }
.js .stagger.in > *:nth-child(8) { transition-delay: 490ms; } .js .stagger.in > *:nth-child(9) { transition-delay: 560ms; }
.js .rise { animation: rise 900ms var(--ease-out) both; animation-delay: calc(var(--d, 0) * 90ms); }
.js .street .window { animation: rise 1s var(--ease-out) both; animation-delay: calc(var(--i) * 90ms + 300ms); }
@keyframes rise { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .js .reveal, .js .stagger > * { opacity: 1; transform: none; transition: none; }
  .js .rise, .js .street .window { animation: none; }
  .window__frame img, .tile img { transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .signs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .quotes { grid-template-columns: 1fr 1fr; }
  .quote:nth-child(2) { margin-top: 0; }
  .quote:nth-child(3) { grid-column: 1 / -1; }
  .quote-card .sticker { right: -10px; }
  .offers--3 { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 900px) {
  .hero__grid, .page-hero__grid, .offers, .approach, .teaser, .faq-layout, .detail, .care, .price-why, .trial, .where, .contact-grid, .hours { grid-template-columns: minmax(0, 1fr); }
  .approach__head, .faq-layout .head, .detail__intro { position: static; }
  .approach__photo { max-width: 300px; }
  .quote-card { margin-top: 30px; }
  .street__row { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; padding: 22px var(--gutter) 0; margin: 0 calc(var(--gutter) * -1); gap: 14px; scrollbar-width: none; }
  .street__row::-webkit-scrollbar { display: none; }
  .street .window { flex: 0 0 44%; scroll-snap-align: start; }
  .trust { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust li:nth-child(3) { border-left: 0; padding-left: 0; }
  .trust li:nth-child(n+3) { border-top: 1px solid var(--line); }
  .bento { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: auto; grid-template-rows: repeat(6, 200px) auto; grid-template-areas: "cafe trades" "cafe retail" "well well" "pro fit" "pro fit" "events estate" "every every"; }
  .tile p { opacity: 1; transform: none; display: none; }
  .every { flex-direction: column; align-items: flex-start; }
  .arches { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .road { grid-template-columns: minmax(0, 1fr); gap: 36px; }
  .road::before, .road::after { left: 30px; right: auto; top: 0; bottom: 0; width: 3px; height: auto; }
  .road::after { transform: scaleY(0); transform-origin: top; }
  .road.in::after, .no-js .road::after { transform: scaleY(1); }
  .step { display: grid; grid-template-columns: 64px minmax(0, 1fr); column-gap: 22px; align-content: start; }
  .step__num { margin-bottom: 0; grid-row: span 3; }
  .step p { max-width: none; }
  .step .when { justify-self: start; }
  .why { grid-template-columns: minmax(0, 1fr); }
  .why__item { border-left: 0; border-top: 1px solid rgba(250,250,248,.14); }
  .why__item:first-child { border-top: 0; }
  .numbers { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .num { padding: 28px 16px 28px 0; }
  .num + .num { padding-left: 0; border-left: 0; }
  .num:nth-child(even) { padding-left: 20px; border-left: 2px solid rgba(26,26,26,.18); }
  .num:nth-child(n+3) { border-top: 2px solid rgba(26,26,26,.18); }
  .expect, .next3, .mkt-grid { grid-template-columns: minmax(0, 1fr); }
  .addon { grid-template-columns: minmax(0, 1fr); gap: 8px; }
  .addon .quoted { justify-self: start; }
  .standards, .checks { grid-template-columns: minmax(0, 1fr); }
  .hero-photos { max-width: 520px; }
  .single-photo .window__frame { margin: 0; max-width: 380px; }
  .teaser__photo .sticker { right: 12px; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .form-row { grid-template-columns: minmax(0, 1fr); }
  .incl, .care .ticks, .quotes, .signs { grid-template-columns: minmax(0, 1fr); }
  .quote:nth-child(3) { grid-column: auto; }
  .footer-grid { grid-template-columns: minmax(0, 1fr); gap: 32px; }
  .months { grid-template-columns: minmax(0, 1fr); }
  .trust { grid-template-columns: minmax(0, 1fr); }
  .trust li { border-left: 0 !important; padding: 22px 0 !important; border-top: 1px solid var(--line); }
  .trust li:first-child { border-top: 0; }
  .street .window { flex-basis: 60%; }
  .hero__actions .btn { width: 100%; }
  .quote-card .sticker { width: 104px; height: 104px; top: -44px; right: -4px; }
  .quote-card .sticker b { font-size: 22px; }
  .sticker text { font-size: 9.5px; }
  .offer__top { flex-direction: column-reverse; }
  .bento { grid-template-rows: repeat(6, 160px) auto; gap: 10px; }
  .tile h3 { left: 14px; right: 14px; bottom: 12px; font-size: 1.02rem; }
  .hero-photos .window:nth-child(2) { transform: translateY(-24px); }
}
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* launch checklist + founder note */
.checklist { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px 36px; }
.checklist li { color: var(--paper); font-weight: 600; font-size: 16.5px; padding: 16px 0 16px 38px; border-top: 1px solid rgba(250,250,248,.14); }
.checklist li::before { top: 16px; }
.checklist li::after { top: 20px; }
.founder { max-width: 980px; }
.founder__label { display: inline-block; background: var(--lime); color: var(--ink); font: 700 14px/1 var(--display); padding: 9px 13px; border-radius: 8px; transform: rotate(-2deg); margin-bottom: 28px; }
.founder__note { margin: 0; font: 500 clamp(1.5rem, 2.8vw, 2.4rem)/1.35 var(--display); letter-spacing: -0.025em; }
.founder__sig { margin-top: 30px; display: flex; flex-direction: column; gap: 4px; }
.founder__sig::before { content: ""; width: 44px; height: 4px; border-radius: 4px; background: var(--lime); margin-bottom: 14px; }
.founder__sig b { font: 700 1.15rem/1.2 var(--display); }
.founder__sig span { color: var(--ink-soft); font-size: 15px; }
@media (max-width: 900px) { .checklist { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .checklist { grid-template-columns: minmax(0, 1fr); } }

/* ================= Revision 3 ================= */
/* Services hero: two option cards + photo */
.options { list-style: none; display: grid; gap: 12px; margin-top: 34px; max-width: 520px; }
.options a { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 18px; padding: 18px 20px; border-radius: 16px; background: rgba(250,250,248,.07); border: 1px solid rgba(250,250,248,.18); text-decoration: none; color: var(--paper); transition: background-color 200ms ease, border-color 200ms ease, transform 250ms var(--ease-out); }
.options a:hover { background: var(--lime); color: var(--ink); border-color: var(--lime); transform: translateX(4px); }
.options .opt-n { width: 46px; height: 46px; border-radius: 12px; background: var(--lime); color: var(--ink); display: grid; place-items: center; font: 700 16px/1 var(--display); }
.options a:hover .opt-n { background: var(--ink); color: var(--lime); }
.options b { display: block; font: 700 1.3rem/1.2 var(--display); letter-spacing: -0.02em; }
.options small { display: block; font-size: 14px; opacity: .8; margin-top: 3px; }
.options .arrow { width: 16px; height: 16px; }
.svc-hero__photo { border-radius: 26px; overflow: hidden; border: 6px solid var(--lime); aspect-ratio: 5 / 4; background: var(--lime); }
.svc-hero__photo img { width: 100%; height: 100%; object-fit: cover; }

/* Option bands (Option 01 / Option 02 openers) */
.option-band { padding: clamp(80px, 9vw, 128px) 0; position: relative; overflow: hidden; }
.option-band__grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: clamp(40px, 6vw, 96px); align-items: center; }
.option-band h2 { font-size: clamp(3rem, 7vw, 6rem); letter-spacing: -0.045em; line-height: .95; }
.option-band.bg-forest h2 { color: var(--paper); }
.option-band .lede { margin-top: 24px; }
.option-band.bg-forest .lede { color: var(--mist); }
.option-band.bg-lime .lede { color: #33401A; }
.option-label { display: inline-block; font: 700 15px/1 var(--display); letter-spacing: .02em; padding: 10px 14px; border-radius: 10px; background: var(--lime); color: var(--ink); margin-bottom: 24px; transform: rotate(-2deg); }
.option-label--ink { background: var(--ink); color: var(--lime); }
.option-band__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 22px 28px; margin-top: 36px; }
.option-band.bg-forest .tag::before { background: var(--forest); }
.option-band.bg-lime .tag::before { background: var(--lime); }
.option-band__photo .window__frame { height: auto; aspect-ratio: 4 / 5; max-width: 460px; margin-left: auto; border-color: var(--lime); border-width: 6px; }
.option-band__photo--ink .window__frame { border-color: var(--ink); }

.incl--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.two-col { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(40px, 6vw, 96px); align-items: start; }
.two-col .lede { margin: 16px 0 28px; }
.h-sm { font-size: clamp(1.8rem, 3vw, 2.5rem); }
.checks--1 { grid-template-columns: minmax(0, 1fr); }
.addon-label { display: inline-block; font: 700 13.5px/1 var(--body); padding: 8px 12px; border-radius: 8px; background: var(--lime); color: var(--ink); margin-bottom: 18px; }
.addon { grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr) auto; }
.trial-wrap .trial { margin-top: 0; }
.trial .months { margin-top: 26px; }
.trial__photo { border-radius: 18px; overflow: hidden; aspect-ratio: 4 / 5; max-height: 460px; justify-self: end; width: 100%; max-width: 380px; }
.trial__photo img { width: 100%; height: 100%; object-fit: cover; }
.goals { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: clamp(40px, 7vw, 110px); align-items: center; }
.goals__photo .window__frame { height: auto; aspect-ratio: 4 / 5; max-width: 440px; border-color: var(--lime); border-width: 6px; }
.goals .lede { margin: 18px 0 30px; }
.goals .ticks { gap: 20px; }
.goals .ticks--lime li::before { background: var(--forest); }
.goals .ticks--lime li::after { border-color: var(--lime); }

/* Reviews carousel */
.rv-section { overflow: hidden; }
.rv-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 28px; flex-wrap: wrap; }
.rv-head .head { margin-bottom: 0; }
.rv-controls { display: flex; gap: 12px; }
.rv-btn { width: 56px; height: 56px; border-radius: 50%; border: 1.5px solid rgba(250,250,248,.3); background: transparent; color: var(--paper); cursor: pointer; display: grid; place-items: center; transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 160ms var(--ease-out); }
.rv-btn svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.rv-btn:hover { background: var(--lime); color: var(--ink); border-color: var(--lime); }
.rv-btn:active { transform: scale(0.94); }
.rv-btn[disabled] { opacity: .35; cursor: default; background: transparent; color: var(--paper); border-color: rgba(250,250,248,.3); }
.rv-carousel { margin-top: clamp(40px, 5vw, 64px); }
.rv-track { list-style: none; display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding: 24px max(var(--gutter), calc((100vw - var(--wrap)) / 2 + var(--gutter))) 48px; scroll-padding-inline: max(var(--gutter), calc((100vw - var(--wrap)) / 2 + var(--gutter))); scrollbar-width: none; outline: none; cursor: grab; }
.rv-track::-webkit-scrollbar { display: none; }
.rv-track.dragging { cursor: grabbing; scroll-snap-type: none; scroll-behavior: auto; }
.rv-track:focus-visible { outline: 2px solid var(--lime); outline-offset: -6px; }
.rv-card { flex: 0 0 clamp(290px, 30vw, 400px); scroll-snap-align: start; background: var(--paper); color: var(--ink); border-radius: 24px; padding: clamp(26px, 2.6vw, 34px); display: flex; flex-direction: column; gap: 20px; box-shadow: 0 2px 4px rgba(0,0,0,.08), 0 30px 60px -28px rgba(0,0,0,.6); transition: transform 400ms var(--ease-out), box-shadow 400ms var(--ease-out); user-select: none; }
.rv-card:nth-child(even) { transform: translateY(18px); }
.rv-card:hover { transform: translateY(-6px); box-shadow: 0 2px 4px rgba(0,0,0,.08), 0 40px 70px -28px rgba(0,0,0,.7); }
.rv-card:nth-child(3n+2) { background: var(--lime); }
.rv-card blockquote { margin: 0; font: 500 1.16rem/1.5 var(--display); letter-spacing: -0.012em; flex: 1; }
.stars { display: flex; gap: 3px; }
.stars svg { width: 20px; height: 20px; fill: var(--forest); }
.rv-who { display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px solid rgba(26,26,26,.12); }
.rv-who > span:nth-child(2) { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.rv-who b { font: 700 1rem/1.2 var(--display); }
.rv-who b + span { font-size: 13.5px; color: var(--ink-soft); }
.rv-avatar { width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0; background: var(--forest); color: var(--lime); display: grid; place-items: center; font: 700 15px/1 var(--display); }
.rv-card:nth-child(3n+2) .rv-avatar { background: var(--ink); }
.rv-sample { margin-left: auto; font: 600 11px/1 var(--body); letter-spacing: .04em; color: var(--ink-soft); border: 1px solid rgba(26,26,26,.25); border-radius: 6px; padding: 5px 7px; flex-shrink: 0; }
.rv-foot { display: flex; align-items: center; justify-content: space-between; gap: 18px 28px; flex-wrap: wrap; }
.rv-dots { display: flex; gap: 8px; }
.rv-dots button { width: 10px; height: 10px; border-radius: 999px; border: 0; padding: 0; background: rgba(250,250,248,.3); cursor: pointer; transition: width 300ms var(--ease-out), background-color 200ms ease; }
.rv-dots button.on { width: 30px; background: var(--lime); }
.rv-note { margin: 0; font-size: 13.5px; color: var(--mist); flex: 1; min-width: 220px; }
.rv-note--dark { color: var(--ink-soft); margin-top: 28px; text-align: center; }
@media (prefers-reduced-motion: reduce) { .rv-track { scroll-behavior: auto; } .rv-card, .rv-card:nth-child(even) { transition: none; } }

/* Reviews wall */
.rv-wall-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; }
.rv-wall-head > div > * + * { margin-top: 16px; }
.filters { display: flex; flex-wrap: wrap; gap: 8px; }
.filter { min-height: 44px; padding: 0 18px; border-radius: 999px; border: 1.5px solid var(--line); background: #fff; font: 600 14.5px/1 var(--body); color: var(--ink); cursor: pointer; transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease; }
.filter:hover { border-color: var(--forest); }
.filter.is-on { background: var(--forest); border-color: var(--forest); color: var(--paper); }
.rv-wall { columns: 3 320px; column-gap: 22px; }
.rv-wall .rv-card { break-inside: avoid; margin: 0 0 22px; transform: none; box-shadow: 0 1px 2px rgba(0,0,0,.06), 0 18px 40px -26px rgba(22,54,42,.45); background: var(--tint); }
.rv-wall .rv-card:nth-child(3n+2) { background: var(--lime); }
.rv-wall .rv-card:nth-child(5n+4) { background: var(--forest); color: var(--paper); }
.rv-wall .rv-card:nth-child(5n+4) .stars svg { fill: var(--lime); }
.rv-wall .rv-card:nth-child(5n+4) .rv-who { border-color: rgba(250,250,248,.18); }
.rv-wall .rv-card:nth-child(5n+4) .rv-who b + span, .rv-wall .rv-card:nth-child(5n+4) .rv-sample { color: var(--mist); border-color: rgba(250,250,248,.3); }
.rv-wall .rv-card:nth-child(5n+4) .rv-avatar { background: var(--lime); color: var(--ink); }
.rv-wall .rv-card.is-hidden { display: none; }
.standards--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.leave { display: grid; grid-template-columns: minmax(0, 1.2fr) auto; gap: 32px 64px; align-items: center; }
.leave .lede { margin-top: 18px; }
.leave__actions { display: flex; flex-direction: column; gap: 12px; }

@media (max-width: 1100px) { .incl--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 900px) {
  .option-band__grid, .two-col, .goals, .leave { grid-template-columns: minmax(0, 1fr); }
  .option-band__photo .window__frame { margin: 0; max-width: 360px; }
  .standards--3 { grid-template-columns: minmax(0, 1fr); }
  .trial__photo { justify-self: start; max-width: 320px; }
  .goals__photo .window__frame { max-width: 340px; }
  .rv-card { flex-basis: 80%; }
  .rv-card:nth-child(even) { transform: none; }
}
@media (max-width: 640px) { .incl--4 { grid-template-columns: minmax(0, 1fr); } .rv-card { flex-basis: 86%; } .options a { padding: 14px; gap: 14px; } .leave__actions .btn { width: 100%; } }
.svc-hero__photo figure { height: 100%; }
.bg-tint .standards--3 .standard { background: var(--paper); }

/* ================= Revision 4: dedicated service pages ================= */
.nav a { padding: 10px 13px; }
.svc-hero__photo-wrap { position: relative; }
.svc-hero__photo-wrap .sticker { left: -34px; bottom: -30px; }
.facts { background: var(--lime); color: var(--ink); border-bottom: 2px solid var(--ink); }
.facts__row { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.fact { padding: 30px 26px; border-left: 2px solid rgba(26,26,26,.16); display: flex; flex-direction: column; gap: 8px; }
.fact:first-child { border-left: 0; padding-left: 0; }
.fact b { font: 700 clamp(2rem, 3.6vw, 3rem)/1 var(--display); letter-spacing: -0.04em; }
.fact span { font-size: 15px; font-weight: 600; color: #33401A; max-width: 24ch; line-height: 1.4; }
.facts--forest { background: var(--forest); color: var(--paper); border-bottom-color: var(--deep); }
.facts--forest .fact { border-color: rgba(250,250,248,.16); }
.facts--forest .fact b { color: var(--lime); }
.facts--forest .fact span { color: var(--mist); }
.facts + .ticker { border-top: 0; }

.road--dark::before { background: rgba(250,250,248,.18); }
.road--dark::after { background: var(--lime); }
.road--dark .step__num { background: var(--deep); border-color: var(--lime); color: var(--lime); }
.road--dark.in .step__num { background: var(--lime); color: var(--ink); }
.road--dark .step h3 { color: var(--paper); }
.road--dark .step p { color: var(--mist); }
.road--dark .step .when { background: rgba(210,242,107,.14); color: var(--lime); }
.then-bar { margin-top: clamp(40px, 5vw, 60px); background: var(--lime); color: var(--ink); border-radius: 16px; padding: 22px 26px; font-size: 1.08rem; }
.then-bar b { font-family: var(--display); }

.typical { display: grid; grid-template-columns: minmax(0, 0.55fr) minmax(0, 1.45fr); gap: clamp(32px, 5vw, 72px); align-items: center; }
.typical__photo .window__frame { height: auto; aspect-ratio: 3 / 5; border-color: var(--lime); border-width: 6px; }
.typical .offer:not(.offer--forest) { background: var(--tint); }

.platforms-layout { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.7fr); gap: clamp(32px, 5vw, 80px); align-items: end; }
.platforms { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.platform { border-radius: var(--r-card); padding: 26px; background: var(--tint); display: flex; flex-direction: column; gap: 12px; transition: transform 300ms var(--ease-out); }
.platform:hover { transform: translateY(-4px); }
.platform:nth-child(2) { background: var(--forest); color: var(--paper); }
.platform:nth-child(2) p { color: var(--mist); }
.platform:nth-child(3) { background: var(--lime); }
.platform h3 { font-size: 1.5rem; }
.platform p { color: var(--ink-soft); font-size: 15.5px; margin: 0; }
.platform__fit { margin-top: auto !important; padding-top: 14px; border-top: 1px solid rgba(26,26,26,.14); font-weight: 600; color: var(--ink) !important; }
.platform:nth-child(2) .platform__fit { color: var(--lime) !important; border-color: rgba(250,250,248,.18); }
.platforms__photo .window__frame { height: auto; aspect-ratio: 3 / 4; border-color: var(--lime); border-width: 6px; }

.weeks { list-style: none; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.weeks li { background: var(--forest); border-radius: var(--r-card); padding: 28px; position: relative; overflow: hidden; }
.weeks li::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 4px; background: var(--lime); transform-origin: left; transform: scaleX(calc(var(--n, 1) * .25)); }
.weeks li:nth-child(1) { --n: 1; } .weeks li:nth-child(2) { --n: 2; } .weeks li:nth-child(3) { --n: 3; } .weeks li:nth-child(4) { --n: 4; }
.weeks .wk { display: inline-block; font: 700 13px/1 var(--display); background: var(--lime); color: var(--ink); padding: 7px 10px; border-radius: 7px; margin-bottom: 18px; }
.weeks b { display: block; font: 700 1.3rem/1.2 var(--display); color: var(--paper); margin-bottom: 8px; }
.weeks p { color: var(--mist); font-size: 15.5px; margin: 0; }

.report { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(40px, 7vw, 110px); align-items: center; }
.report .lede { margin-top: 20px; }
.report__card { background: var(--lime); border-radius: 24px; padding: clamp(28px, 3.4vw, 44px); box-shadow: 0 30px 60px -34px rgba(22,54,42,.55); transform: rotate(-1.2deg); }
.report__label { font: 700 1.2rem/1.2 var(--display); margin-bottom: 20px; }
.report__card .ticks { gap: 14px; }
.report__card .ticks li { font-weight: 600; }

@media (max-width: 1100px) { .platforms { grid-template-columns: minmax(0, 1fr); } .weeks { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 900px) {
  .facts__row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .fact:nth-child(3) { border-left: 0; padding-left: 0; }
  .fact:nth-child(n+3) { border-top: 2px solid rgba(26,26,26,.16); }
  .facts--forest .fact:nth-child(n+3) { border-top-color: rgba(250,250,248,.16); }
  .typical, .platforms-layout, .report { grid-template-columns: minmax(0, 1fr); }
  .typical__photo .window__frame { aspect-ratio: 4 / 3; border-radius: 20px; max-width: 520px; }
  .platforms__photo .window__frame { max-width: 340px; }
  .svc-hero__photo-wrap .sticker { left: auto; right: -6px; bottom: -34px; }
  .report__card { transform: none; }
}
@media (max-width: 640px) { .weeks { grid-template-columns: minmax(0, 1fr); } .fact { padding: 22px 14px 22px 0; } .fact:nth-child(even) { padding-left: 16px; } }
.care .addon-label { color: var(--ink) !important; }
@media (max-width: 1100px) { .two-col .addon { grid-template-columns: minmax(0, 1fr) auto; gap: 6px 16px; } .two-col .addon p { grid-column: 1 / -1; grid-row: 2; } }

/* ================= Revision 5: Google Ads ================= */
.search-demo { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: clamp(40px, 6vw, 96px); align-items: center; }
.search-demo .lede { margin-top: 20px; }
.search-demo__note { margin-top: 22px; font-size: 14px; color: var(--ink-soft); }
.gsearch { position: relative; background: var(--deep); border-radius: 28px; padding: clamp(26px, 3.4vw, 44px); box-shadow: 0 40px 80px -40px rgba(22,54,42,.7); }
.gsearch__bar { display: flex; align-items: center; gap: 14px; background: #fff; border-radius: 999px; padding: 16px 22px; box-shadow: 0 8px 24px -10px rgba(0,0,0,.4); font: 500 clamp(1rem, 1.5vw, 1.2rem)/1.2 var(--body); color: var(--ink); }
.gsearch__bar svg { width: 22px; height: 22px; flex-shrink: 0; fill: none; stroke: #6B726E; stroke-width: 2; stroke-linecap: round; }
.gsearch__caret { width: 2px; height: 1.2em; background: var(--forest); margin-left: -10px; animation: caret 1s steps(1) infinite; }
@keyframes caret { 50% { opacity: 0; } }
.gsearch__result { margin-top: 20px; background: var(--paper); border-radius: 18px; padding: 22px 24px; border: 3px solid var(--lime); position: relative; }
.gsearch__spon { font: 700 13px/1 var(--body); margin: 0 0 8px; color: var(--ink); }
.gsearch__title { font: 700 clamp(1.1rem, 1.6vw, 1.3rem)/1.3 var(--display); color: var(--forest); margin: 0 0 6px; letter-spacing: -0.01em; }
.gsearch__desc { font-size: 15px; color: var(--ink-soft); margin: 0 0 14px; }
.gsearch__chips { display: flex; flex-wrap: wrap; gap: 8px; }
.gsearch__chips span { font: 600 13.5px/1 var(--body); padding: 9px 13px; border-radius: 999px; background: var(--tint); color: var(--forest); }
.gsearch__chips span:first-child { background: var(--forest); color: var(--paper); }
.gsearch__ghost { height: 58px; margin-top: 14px; border-radius: 14px; background: rgba(250,250,248,.08); }
.gsearch__ghost--2 { opacity: .55; }
.gsearch__label { position: absolute; top: -14px; right: 26px; background: var(--lime); color: var(--ink); font: 700 13px/1 var(--display); padding: 8px 12px; border-radius: 8px; transform: rotate(3deg); margin: 0; }
.gsearch__result.flash { animation: flash 700ms var(--ease-out); }
@keyframes flash { from { transform: translateY(8px); opacity: .4; } to { transform: none; opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .gsearch__caret { animation: none; } .gsearch__result.flash { animation: none; } }
.report__photo { margin-top: 32px; border-radius: 20px; overflow: hidden; aspect-ratio: 16 / 10; max-width: 520px; }
.report__photo img { width: 100%; height: 100%; object-fit: cover; }
.soon { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; gap: 28px 44px; align-items: center; background: var(--lime); border-radius: 28px; padding: clamp(30px, 4vw, 56px); }
.soon__tag { margin: 0; align-self: start; background: var(--ink); color: var(--lime); font: 700 14px/1 var(--display); padding: 10px 14px; border-radius: 10px; transform: rotate(-3deg); white-space: nowrap; }
.soon h2 { font-size: clamp(1.8rem, 3.2vw, 2.7rem); margin-bottom: 12px; }
.soon p { color: #33401A; max-width: 60ch; }
@media (max-width: 900px) { .search-demo { grid-template-columns: minmax(0, 1fr); } .soon { grid-template-columns: minmax(0, 1fr); } .soon .btn { justify-self: start; } }
.soon .soon__tag { color: var(--lime); }
