/* FixIt Kitchen & Bathroom Fitter, Leeds — demo site v2
   Palette: porcelain, fitter's green, brand teal, sage, oak.
   Type: Schibsted Grotesk (everything we say), Newsreader italic (what customers say). */

:root {
  --bg: #F7F8F5;
  --surface: #FFFFFF;
  --sage-50: #EEF3EC;
  --sage-100: #DEE8DB;
  --sage-400: #93AB92;
  --green-900: #0F3531;
  --green-800: #174641;
  --teal-700: #1D6D6E;
  --teal-500: #298286;
  --oak-500: #C68C51;
  --oak-700: #8B5A29;
  --ink: #122824;
  --text: #33443F;
  --muted: #5F6E69;
  --line: #DCE3DA;
  --line-dark: rgba(255, 255, 255, .14);
  --on-dark: #E3ECE8;
  --on-dark-2: #A9BFB9;

  --sans: 'Schibsted Grotesk', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --serif: 'Newsreader', Georgia, 'Times New Roman', serif;

  --wrap: 1280px;
  --gut: clamp(20px, 4.5vw, 48px);
  --r-xl: 28px;
  --r-lg: 18px;
  --r-md: 12px;
  --head-h: 76px;
  --shadow-float: 0 30px 60px -28px rgba(15, 53, 49, .45);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--head-h) + 20px); }
body {
  margin: 0; background: var(--bg); color: var(--text);
  font: 400 1.0625rem/1.6 var(--sans); -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
@media (min-width: 900px) { body { font-size: 1.125rem; } }
img { display: block; max-width: 100%; height: auto; }
a { color: var(--teal-700); text-underline-offset: .18em; text-decoration-thickness: 1px; }
a:hover { color: var(--green-900); }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; }
button { font: inherit; }
:focus-visible { outline: 3px solid var(--oak-500); outline-offset: 3px; border-radius: 6px; }
[hidden] { display: none !important; }
.wrap { width: min(100% - 2 * var(--gut), var(--wrap)); margin-inline: auto; }
.skip { position: absolute; left: -999px; top: 10px; z-index: 200; padding: .7rem 1rem; background: var(--surface); color: var(--ink); font-weight: 700; border-radius: 8px; }
.skip:focus { left: 10px; }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---------- Type ---------- */
h1, h2, h3, h4 { color: var(--ink); margin: 0; font-weight: 800; text-wrap: balance; }
h1 { font-size: clamp(2.6rem, 1.5rem + 4.3vw, 4.7rem); line-height: 1.01; letter-spacing: -.038em; }
h2 { font-size: clamp(2rem, 1.35rem + 2.5vw, 3.15rem); line-height: 1.06; letter-spacing: -.032em; }
h3 { font-size: 1.375rem; line-height: 1.2; letter-spacing: -.018em; font-weight: 700; }
h4 { font-size: 1.1rem; line-height: 1.3; letter-spacing: -.01em; font-weight: 700; }
.lead { font-size: clamp(1.14rem, 1rem + .45vw, 1.3rem); line-height: 1.55; color: var(--text); max-width: 34em; }
.muted { color: var(--muted); }
.measure { max-width: 62ch; }
.kicker { display: block; margin-bottom: .9rem; font-weight: 600; font-size: 1rem; color: var(--teal-700); letter-spacing: -.005em; }
.on-dark .kicker { color: var(--oak-500); }
.quote-serif { font-family: var(--serif); font-style: italic; font-weight: 400; letter-spacing: -.005em; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  min-height: 52px; padding: .75rem 1.6rem; border-radius: 999px; border: 1.5px solid transparent;
  font: 600 1rem/1.2 var(--sans); letter-spacing: -.005em; text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: background-color .18s, color .18s, border-color .18s, box-shadow .18s;
}
.btn svg { width: 20px; height: 20px; flex: none; }
.btn-primary { background: var(--teal-700); color: #fff; }
.btn-primary:hover { background: var(--green-900); color: #fff; }
.btn-outline { border-color: rgba(18, 40, 36, .28); color: var(--ink); background: transparent; }
.btn-outline:hover { border-color: var(--ink); color: var(--ink); background: rgba(18, 40, 36, .04); }
.btn-light { background: #fff; color: var(--green-900); }
.btn-light:hover { background: var(--sage-50); color: var(--green-900); }
.btn-ghost-light { border-color: rgba(255, 255, 255, .38); color: #fff; }
.btn-ghost-light:hover { border-color: #fff; color: #fff; background: rgba(255, 255, 255, .06); }
.btn-wa { background: #25D366; color: #06301B; }
.btn-wa:hover { background: #1EBE5A; color: #06301B; }
.btn-sm { min-height: 44px; padding: .55rem 1.15rem; font-size: .95rem; }
.btn-block { width: 100%; }
.text-link { font-weight: 600; text-decoration: none; border-bottom: 1.5px solid currentColor; padding-bottom: 1px; }
.text-link:hover { color: var(--green-900); }

/* ---------- Utility bar + header ---------- */
.topbar { background: var(--green-900); color: var(--on-dark); font-size: .875rem; }
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 40px; }
.topbar a { color: #fff; text-decoration: none; font-weight: 600; }
.topbar a:hover { text-decoration: underline; }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 1.6rem; }
.topbar-item { display: inline-flex; align-items: center; gap: .45rem; white-space: nowrap; }
.topbar svg { width: 15px; height: 15px; opacity: .8; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: #9AA7A3; flex: none; }
.is-open .status-dot, .status-dot.is-open { background: #3FC27A; box-shadow: 0 0 0 3px rgba(63, 194, 122, .25); }
@media (max-width: 1180px) { .topbar-left .topbar-item:not(:first-child) { display: none; } }
@media (max-width: 760px) { .topbar-right .topbar-item:first-child { display: none; } }
@media (max-width: 420px) { .topbar { font-size: .8rem; } }
@media (max-width: 400px) { .topbar-left { display: none; } .topbar .wrap { justify-content: center; } }

.site-head { position: sticky; top: 0; z-index: 80; background: rgba(255, 255, 255, .92); backdrop-filter: saturate(160%) blur(12px); -webkit-backdrop-filter: saturate(160%) blur(12px); border-bottom: 1px solid transparent; transition: border-color .2s, box-shadow .2s; }
.site-head.scrolled { border-color: var(--line); box-shadow: 0 10px 30px -24px rgba(15, 53, 49, .5); }
.head-in { display: flex; align-items: center; gap: 1.5rem; height: var(--head-h); }
.brand { display: flex; align-items: center; gap: .75rem; text-decoration: none; margin-right: auto; color: var(--ink); }
.brand:hover { color: var(--ink); }
.brand-mark { width: 44px; height: 44px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-weight: 900; font-size: 1.45rem; letter-spacing: -.04em; }
.brand-sub { font-size: .76rem; color: var(--muted); margin-top: 5px; font-weight: 500; letter-spacing: 0; white-space: nowrap; }
.nav > ul { display: flex; align-items: center; gap: .2rem; list-style: none; }
.nav > ul a { display: block; padding: .55rem .8rem; border-radius: 999px; color: var(--ink); text-decoration: none; font-weight: 600; font-size: .98rem; letter-spacing: -.005em; }
.nav > ul a:hover { background: var(--sage-50); color: var(--ink); }
.nav > ul a[aria-current="page"] { background: var(--sage-100); }
.nav-extra { display: none; }
.menu-btn {
  display: none; align-items: center; gap: .55rem; min-height: 46px; padding: .5rem 1.05rem;
  border: 1.5px solid var(--line); border-radius: 999px; background: #fff; color: var(--ink); font-weight: 600; cursor: pointer;
}
.menu-btn .bars { position: relative; width: 18px; height: 12px; }
.menu-btn .bars::before, .menu-btn .bars::after, .menu-btn .bars span { content: ""; position: absolute; left: 0; right: 0; height: 2px; background: currentColor; border-radius: 2px; transition: transform .2s, opacity .2s; }
.menu-btn .bars::before { top: 0; } .menu-btn .bars span { top: 5px; } .menu-btn .bars::after { top: 10px; }
.menu-btn[aria-expanded="true"] .bars::before { transform: translateY(5px) rotate(45deg); }
.menu-btn[aria-expanded="true"] .bars::after { transform: translateY(-5px) rotate(-45deg); }
.menu-btn[aria-expanded="true"] .bars span { opacity: 0; }

@media (max-width: 1180px) {
  /* backdrop-filter makes the header the containing block for position:fixed children,
     which squashed the menu panel into the header. Solid header on small screens instead. */
  .site-head { background: var(--surface); -webkit-backdrop-filter: none; backdrop-filter: none; }
  .menu-btn { display: inline-flex; }
  .head-cta { display: none; }
  .nav {
    position: fixed; top: var(--nav-top, var(--head-h)); left: 0; right: 0; bottom: 0; z-index: 95;
    display: none; overflow-y: auto; overscroll-behavior: contain; -webkit-overflow-scrolling: touch;
    background: var(--surface); border-top: 1px solid var(--line);
    padding: .5rem var(--gut) calc(2rem + env(safe-area-inset-bottom));
  }
  .nav.open { display: block; }
  .nav > ul { flex-direction: column; align-items: stretch; gap: 0; }
  .nav > ul a { padding: 1rem .25rem; border-radius: 0; font-size: 1.3rem; font-weight: 700; letter-spacing: -.02em; border-bottom: 1px solid var(--line); }
  .nav > ul a:hover, .nav > ul a[aria-current="page"] { background: none; color: var(--teal-700); }
  .nav-extra { display: grid; gap: .7rem; margin-top: 1.5rem; }
  html.menu-open, body.menu-open { overflow: hidden; }
  body.menu-open .mbar { display: none; }
}
@media (max-width: 1180px) and (min-width: 700px) { .nav-extra { grid-template-columns: 1fr 1fr; } }
@media (max-width: 400px) { .brand-sub { display: none; } }

/* ---------- Sections ---------- */
.section { padding-block: clamp(72px, 9vw, 128px); }
.section-tight { padding-block: clamp(48px, 6vw, 80px); }
.section-sage { background: var(--sage-50); }
.section-white { background: var(--surface); }
.on-dark { background: var(--green-900); color: var(--on-dark); }
.on-dark h1, .on-dark h2, .on-dark h3, .on-dark h4 { color: #fff; }
.on-dark .lead, .on-dark p { color: var(--on-dark-2); }
.on-dark a:not(.btn) { color: #fff; }
.head-row { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 1.5rem 3rem; margin-bottom: clamp(36px, 4.5vw, 60px); }
.head-row > div { max-width: 40rem; }
.head-row h2 + .lead, .head-row h2 + p { margin-top: 1.1rem; margin-bottom: 0; }
.center { text-align: center; }
.center .lead { margin-inline: auto; }

/* ---------- Home hero ---------- */
.hero { padding-block: clamp(28px, 4.5vw, 64px) clamp(56px, 7vw, 96px); }
.hero-grid { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); gap: clamp(32px, 5vw, 80px); align-items: center; }
.hero h1 { margin-bottom: 1.5rem; }
.hero .lead { margin-bottom: 2rem; }
.actions { display: flex; flex-wrap: wrap; gap: .75rem; }
.hero-proof { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.75rem; margin-top: 2.25rem; padding-top: 1.75rem; border-top: 1px solid var(--line); }
.proof-item { display: flex; align-items: center; gap: .7rem; font-size: .95rem; line-height: 1.3; color: var(--text); text-decoration: none; }
a.proof-item:hover { color: var(--ink); }
.proof-item strong { display: block; color: var(--ink); font-weight: 700; }
.proof-icon { width: 42px; height: 42px; flex: none; border-radius: 50%; display: grid; place-items: center; background: var(--sage-100); color: var(--green-900); }
.proof-icon svg { width: 20px; height: 20px; }
.stars { color: var(--oak-500); letter-spacing: .06em; font-size: 1rem; line-height: 1; }

.hero-media { position: relative; }
.tile-frame { position: relative; border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 4 / 4.25; background: var(--sage-100); }
.tile-frame > img { width: 100%; height: 100%; object-fit: cover; object-position: 38% 55%; }
.tiles { position: absolute; inset: 0; display: grid; grid-template-columns: repeat(var(--cols, 7), 1fr); grid-template-rows: repeat(var(--rows, 7), 1fr); pointer-events: none; }
.tiles span { background: var(--bg); box-shadow: inset 0 0 0 1px rgba(147, 171, 146, .35); }
@media (prefers-reduced-motion: no-preference) {
  .tiles span { animation: tile-in .55s cubic-bezier(.3, .7, .2, 1) var(--d, 0s) both; }
  .tile-frame > img { animation: settle 2.2s cubic-bezier(.2, .7, .2, 1) .1s both; }
}
@media (prefers-reduced-motion: reduce) { .tiles { display: none; } }
@keyframes tile-in { 0% { opacity: 1; transform: scale(1); } 100% { opacity: 0; transform: scale(.86); } }
@keyframes settle { from { transform: scale(1.07); } }
.hero-card {
  position: absolute; left: clamp(-56px, -4vw, -24px); bottom: clamp(24px, 4vw, 44px); width: min(330px, 78%);
  background: var(--surface); border-radius: var(--r-lg); padding: 1.15rem 1.25rem 1.1rem; box-shadow: var(--shadow-float);
}
.hero-card p { font-size: 1.12rem; line-height: 1.4; color: var(--ink); margin: .55rem 0 .65rem; }
.hero-card .who { font-size: .88rem; color: var(--muted); }
.hero-thumb { position: absolute; right: clamp(-28px, -2vw, -12px); top: clamp(-28px, -2vw, -12px); width: 34%; aspect-ratio: 3 / 4; border-radius: var(--r-lg); overflow: hidden; border: 6px solid var(--bg); box-shadow: var(--shadow-float); }
.hero-thumb img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { margin-top: .5rem; }
  .hero-card { left: 14px; bottom: 14px; }
  .hero-thumb { right: 12px; top: -22px; width: 30%; }
}
@media (max-width: 560px) {
  .tile-frame { aspect-ratio: 4 / 4.6; }
  .hero-card { position: relative; left: auto; bottom: auto; width: auto; margin: -64px 14px 0; }
  .hero-thumb { display: none; }
  .actions .btn { flex: 1 1 100%; }
}

/* ---------- Marquee ---------- */
.marquee { position: relative; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.marquee-track { display: flex; width: max-content; gap: var(--gap, 16px); animation: marquee var(--speed, 70s) linear infinite; }
.marquee.reverse .marquee-track { animation-direction: reverse; }
.marquee:hover .marquee-track, .marquee:focus-within .marquee-track, .marquee.paused .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(calc(-50% - var(--gap, 16px) / 2)); } }
@media (prefers-reduced-motion: reduce) {
  .marquee { overflow-x: auto; -webkit-mask-image: none; mask-image: none; }
  .marquee-track { animation: none; }
  .marquee-track [aria-hidden="true"] { display: none; }
}
.photo-marquee { padding-block: 8px 0; }
.photo-marquee .marquee-track > a { flex: none; display: block; height: clamp(220px, 26vw, 340px); border-radius: var(--r-lg); overflow: hidden; }
.photo-marquee img { height: 100%; width: auto; object-fit: cover; transition: transform .6s cubic-bezier(.2, .7, .2, 1); }
.photo-marquee a:hover img { transform: scale(1.04); }
.marquee-controls { display: flex; justify-content: center; margin-top: 1.25rem; }
.pause-btn { display: inline-flex; align-items: center; gap: .5rem; min-height: 40px; padding: .4rem .9rem; border-radius: 999px; border: 1px solid var(--line); background: var(--surface); color: var(--muted); font-size: .88rem; cursor: pointer; }
.pause-btn:hover { color: var(--ink); border-color: var(--sage-400); }
.on-dark .pause-btn { background: transparent; border-color: var(--line-dark); color: var(--on-dark-2); }

/* ---------- Service mosaic ---------- */
.mosaic { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.m-card { position: relative; display: flex; flex-direction: column; justify-content: flex-end; min-height: 300px; border-radius: var(--r-lg); overflow: hidden; color: #fff; text-decoration: none; isolation: isolate; }
.m-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .8s cubic-bezier(.2, .7, .2, 1); }
.m-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(10, 36, 33, 0) 35%, rgba(10, 36, 33, .82) 100%); }
.m-card:hover img { transform: scale(1.04); }
.m-card:hover { color: #fff; }
.m-body { padding: clamp(20px, 2.4vw, 32px); }
.m-card h3 { color: #fff; font-size: clamp(1.45rem, 1.1rem + 1.1vw, 2rem); letter-spacing: -.03em; }
.m-card p { color: rgba(255, 255, 255, .86); margin: .5rem 0 0; font-size: 1rem; max-width: 30em; }
.m-price { display: inline-block; margin-top: .9rem; padding: .35rem .8rem; border-radius: 999px; background: rgba(255, 255, 255, .16); backdrop-filter: blur(6px); font-size: .9rem; font-weight: 600; }
.m-lg { grid-column: span 7; min-height: 520px; }
.m-md { grid-column: span 5; min-height: 520px; }
.m-list { grid-column: span 12; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.s-item { display: block; padding: 1.5rem 1.4rem; border-radius: var(--r-lg); background: var(--surface); border: 1px solid var(--line); text-decoration: none; color: var(--text); transition: border-color .2s, transform .2s; }
.s-item:hover { border-color: var(--sage-400); color: var(--text); }
.s-item .ico { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: var(--sage-50); color: var(--teal-700); margin-bottom: 1rem; }
.s-item .ico svg { width: 22px; height: 22px; }
.s-item h3 { font-size: 1.15rem; margin-bottom: .35rem; }
.s-item p { font-size: .96rem; margin: 0; color: var(--muted); line-height: 1.5; }
.s-item .from { display: block; margin-top: .8rem; font-weight: 600; color: var(--oak-700); font-size: .95rem; }
@media (max-width: 1000px) { .m-lg, .m-md { grid-column: span 12; min-height: 420px; } .m-list { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .m-lg, .m-md { min-height: 340px; } .m-list { grid-template-columns: 1fr; } }

/* ---------- Two ways ---------- */
.ways { display: grid; grid-template-columns: 1fr 1fr; border-radius: var(--r-xl); overflow: hidden; border: 1px solid var(--line); background: var(--surface); }
.way { padding: clamp(28px, 4vw, 56px); display: flex; flex-direction: column; }
.way + .way { background: var(--green-900); color: var(--on-dark); }
.way + .way h3, .way + .way .price { color: #fff; }
.way + .way p, .way + .way li { color: var(--on-dark-2); }
.way h3 { font-size: clamp(1.6rem, 1.2rem + 1.3vw, 2.25rem); letter-spacing: -.03em; margin-bottom: .8rem; }
.way p { max-width: 34em; }
.ticks { list-style: none; display: grid; gap: .55rem; margin: 1rem 0 1.75rem; }
.ticks li { position: relative; padding-left: 1.9rem; line-height: 1.45; }
.ticks li::before { content: ""; position: absolute; left: 0; top: .15em; width: 1.2rem; height: 1.2rem; border-radius: 50%; background: var(--sage-100) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M5.5 10.5l3 3 6-7' fill='none' stroke='%231D6D6E' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 72% no-repeat; }
.on-dark .ticks li::before, .way + .way .ticks li::before { background-color: rgba(255, 255, 255, .12); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M5.5 10.5l3 3 6-7' fill='none' stroke='%23C68C51' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
.way-foot { margin-top: auto; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.way + .way .way-foot { border-color: var(--line-dark); }
.price { font-size: 1rem; color: var(--muted); }
.price strong { display: block; font-size: 1.9rem; letter-spacing: -.03em; color: var(--ink); line-height: 1.1; }
.way + .way .price { color: var(--on-dark-2); }
.way + .way .price strong { color: #fff; }
@media (max-width: 860px) { .ways { grid-template-columns: 1fr; } }

/* ---------- Process ---------- */
.process { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; counter-reset: step; }
.process li { position: relative; padding: 0 1.75rem 0 0; }
.process li::before { counter-increment: step; content: counter(step); display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%; background: var(--surface); border: 1.5px solid var(--sage-400); color: var(--green-900); font-weight: 800; font-size: 1.2rem; position: relative; z-index: 1; margin-bottom: 1.4rem; }
.process li::after { content: ""; position: absolute; top: 26px; left: 52px; right: 0; height: 1.5px; background: var(--sage-400); opacity: .6; }
.process li:last-child::after { display: none; }
.process h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.process p { font-size: 1rem; color: var(--muted); margin: 0; max-width: 24em; }
.on-dark .process li::before { background: var(--green-900); border-color: var(--oak-500); color: #fff; }
.on-dark .process li::after { background: var(--oak-500); opacity: .4; }
@media (max-width: 900px) {
  .process { grid-template-columns: 1fr; gap: 0; }
  .process li { display: grid; grid-template-columns: 52px 1fr; column-gap: 1.2rem; padding: 0 0 2rem; }
  .process li::before { grid-row: span 2; margin: 0; }
  .process li::after { top: 52px; bottom: 0; left: 26px; right: auto; width: 1.5px; height: auto; }
  .process li:last-child { padding-bottom: 0; }
}

.process.vertical { grid-template-columns: 1fr; gap: 0; }
.process.vertical li { display: grid; grid-template-columns: 44px 1fr; column-gap: 1rem; padding: 0 0 1.5rem; }
.process.vertical li::before { grid-row: span 2; margin: 0; width: 44px; height: 44px; font-size: 1rem; }
.process.vertical li::after { top: 44px; bottom: 0; left: 22px; right: auto; width: 1.5px; height: auto; }
.process.vertical li:last-child { padding-bottom: 0; }
.process.vertical h3 { font-size: 1.08rem; margin-bottom: .2rem; padding-top: .55rem; }
.process.vertical p { font-size: .95rem; }

/* ---------- Story stepper (home) ---------- */
.story { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(28px, 5vw, 80px); align-items: center; }
.story-steps { list-style: none; display: grid; gap: 10px; margin-top: 2rem; }
.story-steps button {
  width: 100%; display: grid; grid-template-columns: 44px 1fr; gap: 1rem; align-items: center; text-align: left;
  padding: 1rem 1.1rem; border-radius: var(--r-md); border: 1px solid var(--line-dark); background: transparent; color: var(--on-dark); cursor: pointer;
  transition: background-color .2s, border-color .2s;
}
.story-steps button:hover { border-color: rgba(255, 255, 255, .3); }
.story-steps button[aria-selected="true"] { background: rgba(255, 255, 255, .07); border-color: var(--oak-500); }
.story-steps .n { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; font-weight: 800; border: 1.5px solid rgba(255, 255, 255, .25); }
.story-steps button[aria-selected="true"] .n { background: var(--oak-500); border-color: var(--oak-500); color: var(--green-900); }
.story-steps strong { display: block; color: #fff; font-size: 1.08rem; }
.story-steps small { display: block; color: var(--on-dark-2); font-size: .95rem; line-height: 1.4; margin-top: .15rem; }
.story-stage { position: relative; aspect-ratio: 4 / 4.6; border-radius: var(--r-xl); overflow: hidden; background: #0a2623; }
.story-stage img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .6s ease; }
.story-stage img.on { opacity: 1; }
.story-stage .cap { position: absolute; left: 16px; bottom: 16px; padding: .45rem .85rem; border-radius: 999px; background: rgba(15, 53, 49, .78); backdrop-filter: blur(6px); color: #fff; font-size: .9rem; font-weight: 600; }
@media (max-width: 900px) { .story { grid-template-columns: 1fr; } .story-stage { order: -1; aspect-ratio: 4 / 4.2; } }

/* ---------- Why us ---------- */
.why { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line); }
.why > div { padding: 2rem 2rem 2rem 0; border-bottom: 1px solid var(--line); }
.why > div:not(:nth-child(3n + 1)) { padding-left: 2rem; border-left: 1px solid var(--line); }
.why .ico { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; background: var(--sage-100); color: var(--green-900); margin-bottom: 1.1rem; }
.why .ico svg { width: 24px; height: 24px; }
.why h3 { font-size: 1.2rem; margin-bottom: .4rem; }
.why p { color: var(--muted); font-size: 1rem; margin: 0; }
@media (max-width: 900px) {
  .why { grid-template-columns: 1fr 1fr; }
  .why > div, .why > div:not(:nth-child(3n + 1)) { padding: 1.6rem 1.25rem 1.6rem 0; border-left: 0; }
  .why > div:nth-child(2n) { padding-left: 1.25rem; border-left: 1px solid var(--line); }
}
@media (max-width: 560px) { .why { grid-template-columns: 1fr; } .why > div:nth-child(2n) { padding-left: 0; border-left: 0; } }

/* ---------- Reviews ---------- */
.rating-hero { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 2rem; }
.rating-num { font-size: clamp(3.5rem, 2.4rem + 3vw, 5.25rem); font-weight: 800; letter-spacing: -.05em; line-height: .9; color: var(--ink); }
.on-dark .rating-num { color: #fff; }
.rating-meta .stars { font-size: 1.35rem; }
.rating-meta p { margin: .35rem 0 0; font-size: 1rem; }
.review-marquee { --gap: 18px; }
.review-marquee + .review-marquee { margin-top: 18px; }
.r-card { flex: none; width: clamp(290px, 30vw, 400px); padding: 1.5rem 1.6rem 1.4rem; border-radius: var(--r-lg); background: var(--surface); border: 1px solid var(--line); display: flex; flex-direction: column; }
.on-dark .r-card { background: #fff; border-color: transparent; }
.r-card blockquote { margin: .8rem 0 1.2rem; font-family: var(--serif); font-style: italic; font-size: 1.28rem; line-height: 1.4; color: var(--ink); }
.r-who { margin-top: auto; display: flex; align-items: center; gap: .75rem; }
.avatar { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: var(--sage-100); color: var(--green-900); font-weight: 700; font-size: .95rem; flex: none; }
.r-who strong { display: block; color: var(--ink); font-size: .98rem; line-height: 1.2; }
.r-who span { font-size: .88rem; color: var(--muted); }
.g-badge { margin-left: auto; font-size: .78rem; font-weight: 600; color: var(--muted); padding: .25rem .6rem; border: 1px solid var(--line); border-radius: 999px; white-space: nowrap; }
.topics { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin-top: 1.25rem; }
.topics li { padding: .4rem .85rem; border-radius: 999px; background: var(--surface); border: 1px solid var(--line); font-size: .92rem; }
.topics b { color: var(--oak-700); font-weight: 700; margin-left: .25rem; }
.review-list { columns: 2 380px; column-gap: 20px; }
.review-list .r-card { width: auto; break-inside: avoid; margin-bottom: 20px; }
.reply { margin-top: 1rem; padding: .9rem 1rem; border-radius: var(--r-md); background: var(--sage-50); font-size: .95rem; color: var(--text); }
.reply strong { display: block; color: var(--ink); font-size: .88rem; margin-bottom: .2rem; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; border-radius: var(--r-xl); overflow: hidden; background: var(--green-900); color: var(--on-dark); display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); isolation: isolate; }
.cta-contact a { overflow-wrap: anywhere; }
.cta-copy { padding: clamp(32px, 5vw, 72px); }
.cta-copy h2 { color: #fff; margin-bottom: 1rem; }
.cta-copy p { color: var(--on-dark-2); max-width: 32em; }
.cta-copy .actions { margin-top: 1.75rem; }
.cta-img { position: relative; min-height: 320px; }
.cta-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cta-contact { display: flex; flex-wrap: wrap; gap: .6rem 1.6rem; margin-top: 1.75rem; padding-top: 1.5rem; border-top: 1px solid var(--line-dark); font-size: .98rem; }
.cta-contact a { color: #fff; font-weight: 600; text-decoration: none; }
.cta-contact a:hover { text-decoration: underline; }
@media (max-width: 860px) { .cta-band { grid-template-columns: minmax(0, 1fr); } .cta-img { min-height: 240px; order: -1; } .cta-copy .actions .btn { white-space: normal; } }
h2 + .lead { margin-top: 1rem; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { padding-block: clamp(28px, 4vw, 56px) clamp(48px, 6vw, 88px); }
.page-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.crumbs { display: flex; flex-wrap: wrap; gap: .4rem; list-style: none; font-size: .92rem; color: var(--muted); margin-bottom: 1.4rem; }
.crumbs li + li::before { content: "/"; margin-right: .4rem; color: var(--sage-400); }
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--ink); text-decoration: underline; }
.page-hero h1 { font-size: clamp(2.4rem, 1.5rem + 3.4vw, 4rem); margin-bottom: 1.2rem; }
.page-hero .lead { margin-bottom: 1.8rem; }
.page-hero-img { position: relative; border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 5 / 4.4; }
.page-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-simple { padding-block: clamp(28px, 4vw, 56px) clamp(28px, 3.5vw, 48px); }
.page-hero-simple h1 { max-width: 16em; font-size: clamp(2.4rem, 1.5rem + 3.4vw, 4rem); margin-bottom: 1.1rem; }
@media (max-width: 900px) { .page-hero-grid { grid-template-columns: 1fr; } .page-hero-img { aspect-ratio: 4 / 3; } }

/* ---------- Content blocks ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 80px); align-items: center; }
.split-img { border-radius: var(--r-xl); overflow: hidden; }
.split-img img { width: 100%; aspect-ratio: 4 / 4.4; object-fit: cover; }
.split.flip .split-img { order: 2; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } .split.flip .split-img { order: 0; } .split-img img { aspect-ratio: 4 / 3; } }

.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.price-card { display: flex; flex-direction: column; padding: clamp(24px, 2.6vw, 34px); border-radius: var(--r-lg); background: var(--surface); border: 1px solid var(--line); }
.price-card.featured { background: var(--green-900); border-color: var(--green-900); color: var(--on-dark); }
.price-card.featured h3, .price-card.featured .amount { color: #fff; }
.price-card.featured p, .price-card.featured li, .price-card.featured .note { color: var(--on-dark-2); }
.price-card h3 { font-size: 1.25rem; margin-bottom: .4rem; }
.price-card .amount { font-size: 2.6rem; font-weight: 800; letter-spacing: -.045em; color: var(--ink); line-height: 1; margin: .9rem 0 .25rem; }
.price-card .amount small { font-size: 1rem; font-weight: 500; letter-spacing: 0; color: var(--muted); margin-right: .3rem; }
.price-card.featured .amount small { color: var(--on-dark-2); }
.price-card .note { font-size: .9rem; color: var(--muted); margin-bottom: 1.2rem; }
.price-card .ticks { margin-bottom: 1.5rem; font-size: 1rem; }
.price-card .btn { margin-top: auto; }
.tag { display: inline-block; align-self: flex-start; padding: .25rem .7rem; border-radius: 999px; font-size: .82rem; font-weight: 600; background: var(--sage-100); color: var(--green-900); margin-bottom: .9rem; }
.price-card.featured .tag { background: var(--oak-500); color: var(--green-900); }
.fineprint { margin-top: 1.5rem; font-size: .92rem; color: var(--muted); max-width: 60em; }
@media (max-width: 960px) { .price-grid { grid-template-columns: 1fr; } }

.incl-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .1rem 2.5rem; list-style: none; }
.incl-grid li { display: flex; gap: .9rem; align-items: flex-start; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.incl-grid .ico { width: 36px; height: 36px; flex: none; border-radius: 10px; display: grid; place-items: center; background: var(--sage-50); color: var(--teal-700); }
.incl-grid .ico svg { width: 19px; height: 19px; }
.incl-grid strong { display: block; color: var(--ink); line-height: 1.3; }
.incl-grid span { font-size: .96rem; color: var(--muted); line-height: 1.45; }
@media (max-width: 700px) { .incl-grid { grid-template-columns: 1fr; } }

.brands { display: flex; flex-wrap: wrap; gap: 12px; list-style: none; margin-top: 1.5rem; }
.brands li { padding: .8rem 1.4rem; border-radius: 999px; background: var(--surface); border: 1px solid var(--line); font-weight: 700; font-size: 1.1rem; color: var(--ink); letter-spacing: -.02em; }
.brands li.any { background: transparent; border-style: dashed; color: var(--muted); font-weight: 600; }

.stages { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: st; }
.stages li { counter-increment: st; }
.stages figure { margin: 0 0 1rem; position: relative; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 3 / 4; }
.stages img { width: 100%; height: 100%; object-fit: cover; }
.stages figure::after { content: counter(st); position: absolute; left: 12px; top: 12px; width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; background: var(--oak-500); color: var(--green-900); font-weight: 800; font-size: .98rem; }
.stages h3 { font-size: 1.15rem; margin-bottom: .35rem; }
.stages p { font-size: .98rem; margin: 0; }
@media (max-width: 900px) { .stages { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .stages { grid-template-columns: 1fr; } .stages figure { aspect-ratio: 4 / 3.4; } }

.pair { display: grid; grid-template-columns: 1.35fr 1fr; gap: 16px; }
.pair figure { margin: 0; }
.pair img { width: 100%; height: clamp(260px, 30vw, 440px); object-fit: cover; border-radius: var(--r-lg); }
.pair figcaption { margin-top: .6rem; font-size: .92rem; }
.pair figcaption b { color: var(--oak-500); font-weight: 700; margin-right: .35rem; }
@media (max-width: 520px) { .pair { grid-template-columns: 1fr; } .pair img { height: 280px; } }

.strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.strip a { display: block; border-radius: var(--r-md); overflow: hidden; aspect-ratio: 1; }
.strip img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2, .7, .2, 1); }
.strip a:hover img { transform: scale(1.05); }
@media (max-width: 700px) { .strip { grid-template-columns: 1fr 1fr; } }

.svc-block { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(24px, 4vw, 64px); padding-block: clamp(40px, 5vw, 64px); border-top: 1px solid var(--line); }
.svc-block:first-of-type { border-top: 0; padding-top: 0; }
.svc-block h2 { font-size: clamp(1.7rem, 1.25rem + 1.6vw, 2.4rem); margin-bottom: .8rem; }
.svc-block .from { display: inline-block; margin-bottom: 1rem; font-weight: 700; color: var(--oak-700); }
.svc-block .ticks { grid-template-columns: 1fr 1fr; column-gap: 1.5rem; }
.svc-media img { width: 100%; aspect-ratio: 16 / 11; object-fit: cover; border-radius: var(--r-lg); }
@media (max-width: 860px) { .svc-block { grid-template-columns: 1fr; } }
@media (max-width: 520px) { .svc-block .ticks { grid-template-columns: 1fr; } }

.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stat-row > div { padding: 1.5rem; border-radius: var(--r-lg); background: var(--surface); border: 1px solid var(--line); }
.stat-row strong { display: block; font-size: 1.6rem; letter-spacing: -.03em; color: var(--ink); line-height: 1.1; margin-bottom: .35rem; }
.stat-row span { color: var(--muted); font-size: .98rem; }
@media (max-width: 900px) { .stat-row { grid-template-columns: 1fr 1fr; } }

.badge-card { display: grid; grid-template-columns: 180px 1fr; gap: 1.75rem; align-items: center; padding: 1.5rem; border-radius: var(--r-lg); background: var(--surface); border: 1px solid var(--line); }
.badge-card img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--r-md); }
.badge-card h3 { margin-bottom: .4rem; }
.badge-card p { margin: 0; color: var(--muted); }
@media (max-width: 560px) { .badge-card { grid-template-columns: 1fr; } .badge-card img { aspect-ratio: 16 / 10; } }

/* ---------- FAQ ---------- */
.faq-grid { display: grid; grid-template-columns: .8fr 1.4fr; gap: clamp(28px, 5vw, 80px); }
.faq details { border-bottom: 1px solid var(--line); }
.faq details:first-child { border-top: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; gap: 1.5rem; padding: 1.3rem 0; font-weight: 700; font-size: 1.12rem; color: var(--ink); letter-spacing: -.01em; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: ""; flex: none; width: 28px; height: 28px; border-radius: 50%; background: var(--sage-50) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M10 5v10M5 10h10' stroke='%23122824' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E") center / 60% no-repeat; transition: transform .25s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin: -.3rem 0 1.4rem; color: var(--text); max-width: 60ch; }
@media (max-width: 860px) { .faq-grid { grid-template-columns: 1fr; } }

/* ---------- Gallery ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 1.75rem; }
.filters button { min-height: 44px; padding: .5rem 1.1rem; border-radius: 999px; border: 1.5px solid var(--line); background: var(--surface); color: var(--ink); font-weight: 600; cursor: pointer; }
.filters button span { margin-left: .4rem; color: var(--muted); font-weight: 500; }
.filters button[aria-pressed="true"] { background: var(--green-900); border-color: var(--green-900); color: #fff; }
.filters button[aria-pressed="true"] span { color: var(--on-dark-2); }
.masonry { columns: 3 300px; column-gap: 16px; }
.tile { break-inside: avoid; margin: 0 0 16px; }
.tile button { display: block; width: 100%; padding: 0; border: 0; background: var(--sage-100); border-radius: var(--r-md); overflow: hidden; cursor: zoom-in; }
.tile img { width: 100%; transition: transform .7s cubic-bezier(.2, .7, .2, 1); }
.tile button:hover img { transform: scale(1.035); }
.tile figcaption { padding: .55rem .15rem 0; font-size: .92rem; color: var(--muted); line-height: 1.4; }
.lightbox { width: 100vw; height: 100vh; height: 100dvh; max-width: 100vw; max-height: 100dvh; margin: 0; padding: 0; border: 0; background: transparent; color: #fff; }
.lightbox { touch-action: pinch-zoom; overscroll-behavior: contain; }
.lightbox::backdrop { background: rgba(8, 28, 26, .95); }
.lb-inner { height: 100%; display: grid; grid-template-rows: 1fr auto; place-items: center; padding: 64px 72px 24px; }
.lb-inner img { max-width: 100%; max-height: calc(100vh - 150px); max-height: calc(100dvh - 150px); width: auto; height: auto; border-radius: var(--r-md); }

/* Bigger tap areas for small inline links on touch screens, without changing the layout */
@media (pointer: coarse), (max-width: 760px) {
  .topbar a, .cta-contact a, .site-foot ul a, .crumbs a { display: inline-flex; align-items: center; padding-block: 11px; margin-block: -11px; }
  .text-link { position: relative; }
  .text-link::after { content: ""; position: absolute; inset: -11px -6px; }
}
.lb-cap { padding-top: 1rem; font-size: .98rem; color: var(--on-dark); text-align: center; }
.lb-btn { position: absolute; width: 50px; height: 50px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .3); background: rgba(15, 53, 49, .7); color: #fff; cursor: pointer; display: grid; place-items: center; }
.lb-btn svg { width: 22px; height: 22px; }
.lb-btn:hover { background: var(--teal-700); }
.lb-close { top: 14px; right: 14px; }
.lb-prev { left: 14px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 14px; top: 50%; transform: translateY(-50%); }
@media (max-width: 640px) { .lb-inner { padding: 70px 10px 90px; } .lb-prev, .lb-next { top: auto; bottom: 18px; transform: none; } .lb-prev { left: calc(50% - 64px); } .lb-next { right: calc(50% - 64px); } }

/* ---------- Forms ---------- */
.form-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-xl); padding: clamp(22px, 3.5vw, 44px); }
.fieldset { border: 0; margin: 0 0 2rem; padding: 0; min-width: 0; }
.fieldset > legend { padding: 0; margin-bottom: 1rem; font-size: 1.3rem; font-weight: 700; color: var(--ink); letter-spacing: -.02em; }
.fieldset > legend .step { display: block; font-size: .95rem; font-weight: 600; color: var(--teal-700); letter-spacing: 0; margin-bottom: .2rem; }
.sub-legend { padding: 0; margin: 1.35rem 0 .7rem; font-weight: 700; color: var(--ink); font-size: 1rem; }
.opts { display: grid; grid-template-columns: repeat(auto-fill, minmax(165px, 1fr)); gap: 10px; }
.opt { position: relative; display: block; }
.opt input { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: pointer; z-index: 1; }
.opt span { overflow-wrap: anywhere; display: block; height: 100%; padding: .95rem 1rem; border-radius: var(--r-md); border: 1.5px solid var(--line); background: var(--bg); font-weight: 600; color: var(--ink); line-height: 1.3; transition: border-color .15s, background-color .15s, box-shadow .15s; }
.opt small { display: block; margin-top: .25rem; font-weight: 400; font-size: .88rem; color: var(--muted); }
.opt:hover span { border-color: var(--sage-400); }
.opt input:checked + span { background: #fff; border-color: var(--teal-700); box-shadow: inset 0 0 0 1px var(--teal-700); }
.opt input:focus-visible + span { outline: 3px solid var(--oak-500); outline-offset: 2px; }
.opt input:disabled + span { opacity: .45; cursor: not-allowed; }
.opt-check span { padding-left: 2.7rem; position: relative; }
.opt-check span::before { content: ""; position: absolute; left: 1rem; top: 1.05rem; width: 1.1rem; height: 1.1rem; border-radius: 5px; border: 1.5px solid var(--muted); background: #fff; }
.opt-check input:checked + span::before { background: var(--teal-700) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3.5 8.5l3 3 6-7' fill='none' stroke='%23fff' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 80% no-repeat; border-color: var(--teal-700); }
.fields { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.full { grid-column: 1 / -1; }
.field label { display: block; margin-bottom: .45rem; font-weight: 600; color: var(--ink); font-size: 1rem; }
.field label small { font-weight: 400; color: var(--muted); }
.field input, .field select, .field textarea {
  width: 100%; min-height: 52px; padding: .8rem 1rem; border-radius: var(--r-md); border: 1.5px solid var(--line); background: var(--bg);
  font: inherit; font-size: 1rem; color: var(--ink); transition: border-color .15s, box-shadow .15s, background-color .15s;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--teal-700); background: #fff; box-shadow: 0 0 0 4px rgba(29, 109, 110, .15); }
.field.invalid input, .field.invalid select { border-color: #B3261E; }
.err { display: none; margin-top: .35rem; font-size: .9rem; color: #B3261E; }
.field.invalid .err, .fieldset.invalid .err { display: block; }
.form-note { font-size: .92rem; color: var(--muted); margin: 1rem 0 0; }
@media (max-width: 560px) { .fields { grid-template-columns: minmax(0, 1fr); } .opts { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 400px) { .opts:has(.opt-check) { grid-template-columns: minmax(0, 1fr); } }

/* Date picker */
.days { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 8px; }
.day { position: relative; }
.day input { position: absolute; inset: 0; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; z-index: 1; }
.day span { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .1rem; min-height: 74px; border-radius: var(--r-md); border: 1.5px solid var(--line); background: var(--bg); line-height: 1.1; transition: border-color .15s, background-color .15s; }
.day b { font-size: 1.3rem; color: var(--ink); letter-spacing: -.02em; }
.day small { font-size: .78rem; color: var(--muted); }
.day:hover span { border-color: var(--sage-400); }
.day input:checked + span { background: var(--teal-700); border-color: var(--teal-700); }
.day input:checked + span b, .day input:checked + span small { color: #fff; }
.day input:disabled + span { opacity: .4; background: transparent; }
.day input:disabled { cursor: not-allowed; }
.day input:focus-visible + span { outline: 3px solid var(--oak-500); outline-offset: 2px; }
@media (max-width: 560px) { .days { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

/* Job sheet / summary card */
.q-layout { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, .9fr); gap: clamp(24px, 4vw, 56px); align-items: start; }
.sheet { position: sticky; top: calc(var(--head-h) + 24px); background: var(--surface); border-radius: var(--r-xl); border: 1px solid var(--line); overflow: hidden; box-shadow: var(--shadow-float); }
.sheet-head { padding: 1.4rem 1.6rem 1.1rem; display: flex; justify-content: space-between; gap: 1rem; border-bottom: 1px solid var(--line); }
.sheet-head h2 { font-size: 1.25rem; letter-spacing: -.02em; }
.sheet-head p { margin: .2rem 0 0; font-size: .9rem; color: var(--muted); }
.sheet-ref { text-align: right; font-size: .85rem; color: var(--muted); white-space: nowrap; }
.sheet-lines { list-style: none; padding: .5rem 1.6rem; }
.sheet-lines li { display: grid; grid-template-columns: 6.5rem 1fr; gap: .9rem; padding: .6rem 0; border-bottom: 1px dashed var(--line); font-size: .98rem; }
.sheet-lines li:last-child { border-bottom: 0; }
.sheet-lines .k { color: var(--muted); }
.sheet-lines .v { color: var(--ink); font-weight: 600; word-break: break-word; }
.sheet-total { padding: 1.3rem 1.6rem; background: var(--green-900); color: var(--on-dark); }
.sheet-total .lbl { font-size: .95rem; color: var(--on-dark-2); }
.sheet-total .amt { display: block; font-size: clamp(1.9rem, 1.4rem + 1.4vw, 2.5rem); font-weight: 800; letter-spacing: -.04em; line-height: 1.05; color: #fff; margin: .2rem 0 .45rem; }
.sheet-total small { display: block; font-size: .88rem; color: var(--on-dark-2); line-height: 1.45; }
.sheet-actions { display: grid; gap: .6rem; padding: 1.3rem 1.6rem 1.6rem; }
.sheet-actions .row { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; }
.sheet-tip { margin: 0; padding: 0 1.6rem 1.5rem; font-size: .92rem; color: var(--muted); }
@media (max-width: 960px) { .q-layout { grid-template-columns: minmax(0, 1fr); } .sheet { position: static; } }
.sheet-actions .row .btn { padding-inline: .8rem; }
@media (max-width: 400px) {
  .btn { padding-inline: 1.15rem; white-space: normal; text-align: center; }
  .sheet-actions .row { grid-template-columns: 1fr; }
  .sheet-head, .sheet-lines, .sheet-total, .sheet-actions { padding-inline: 1.1rem; }
  .sheet-tip { padding-inline: 1.1rem; }
  .sheet-lines li { grid-template-columns: 5.2rem 1fr; }
}

.confirm { text-align: left; }
.confirm-icon { width: 60px; height: 60px; border-radius: 50%; display: grid; place-items: center; background: var(--sage-100); color: var(--teal-700); margin-bottom: 1.25rem; }
.confirm-icon svg { width: 30px; height: 30px; }

/* ---------- Contact ---------- */
.contact-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.c-card { display: flex; flex-direction: column; gap: .35rem; padding: 1.5rem; border-radius: var(--r-lg); background: var(--surface); border: 1px solid var(--line); text-decoration: none; color: var(--text); transition: border-color .2s; }
a.c-card:hover { border-color: var(--teal-700); color: var(--text); }
.c-card .ico { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: var(--sage-50); color: var(--teal-700); margin-bottom: .6rem; }
.c-card .ico svg { width: 22px; height: 22px; }
.c-card strong { color: var(--ink); font-size: 1.1rem; }
.c-card span { font-size: .96rem; color: var(--muted); word-break: break-word; }
@media (max-width: 1000px) { .contact-cards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .contact-cards { grid-template-columns: 1fr; } }
.hours { width: 100%; border-collapse: collapse; }
.hours th, .hours td { padding: .8rem 0; border-bottom: 1px solid var(--line); text-align: left; font-weight: 400; }
.hours td { text-align: right; white-space: nowrap; padding-left: 1rem; }
.hours tr.today th, .hours tr.today td { font-weight: 700; color: var(--teal-700); }
.map-frame { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); background: var(--sage-50); aspect-ratio: 16 / 11; }
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---------- Footer ---------- */
.site-foot { background: var(--green-900); color: var(--on-dark-2); padding: clamp(56px, 7vw, 96px) 0 calc(28px + env(safe-area-inset-bottom)); font-size: 1rem; }
.foot-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 2.5rem; }
.site-foot .brand { color: #fff; margin: 0 0 1.25rem; }
.site-foot .brand-sub { color: var(--on-dark-2); }
.foot-slogan { font-size: clamp(1.6rem, 1.2rem + 1.2vw, 2.2rem); font-weight: 800; letter-spacing: -.035em; color: #fff; line-height: 1.1; margin-bottom: 1rem; }
.site-foot h2 { font-size: 1rem; color: #fff; letter-spacing: 0; margin-bottom: 1rem; font-weight: 700; }
.site-foot ul { list-style: none; display: grid; gap: .55rem; }
.site-foot a { color: var(--on-dark); text-decoration: none; overflow-wrap: anywhere; }
.site-foot li { min-width: 0; overflow-wrap: anywhere; }
.site-foot a:hover { color: #fff; text-decoration: underline; }
.foot-base { margin-top: 3.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line-dark); display: flex; flex-wrap: wrap; justify-content: space-between; gap: .75rem 2rem; font-size: .9rem; }
@media (max-width: 1000px) { .foot-top { grid-template-columns: 1fr 1fr; } .foot-brand { grid-column: 1 / -1; } }
@media (max-width: 520px) { .foot-top { grid-template-columns: 1fr; } }

/* ---------- Mobile action bar ---------- */
.mbar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; display: none; grid-template-columns: 1fr 1fr 1.35fr; gap: 8px; padding: 10px 12px calc(10px + env(safe-area-inset-bottom)); background: rgba(255, 255, 255, .96); backdrop-filter: blur(10px); border-top: 1px solid var(--line); }
.mbar a { display: flex; align-items: center; justify-content: center; gap: .45rem; min-height: 50px; border-radius: 999px; font-weight: 600; font-size: .98rem; text-decoration: none; border: 1.5px solid var(--line); color: var(--ink); }
.mbar a.pri { background: var(--teal-700); border-color: var(--teal-700); color: #fff; }
.mbar svg { width: 19px; height: 19px; }
@media (max-width: 760px) { .mbar { display: grid; } body { padding-bottom: 78px; } }
.mbar a { white-space: nowrap; }
@media (max-width: 360px) { .mbar { gap: 6px; padding-inline: 8px; } .mbar a { font-size: .92rem; gap: .35rem; } .mbar a:not(.pri) svg { display: none; } }
