/* ==========================================================================
   Lumo Kitchens — Melbourne kitchen renovations
   Plain CSS, no build step. Predominantly white, dark navy text,
   light green CTAs, light blue supporting accents.
   ========================================================================== */

/* --------------------------------------------------------------------------
   Palette

   White carries the page. Colour is spent only where it earns attention:
   the brand bar, the buttons, and one whisper-tint behind the two sections
   that need separating. Everything else is white with a hairline border.

   Neutrals are warmed very slightly off pure blue-grey — against the timber
   and brass in the photography, a cold grey-blue reads washed out.
   -------------------------------------------------------------------------- */
:root {
  --navy:  #0e2942;   /* primary text — a touch deeper than mid-navy, richer on white */
  --deep:  #123152;   /* headings */
  --ink:   #4a6178;   /* body copy — passes AA on white at 16px */
  --quiet: #5f7689;   /* captions, meta — 4.7:1 on white. Anything lighter fails AA. */

  --green-light: #bfe8d0;  /* brand bar + primary buttons */
  --green-fresh: #9edcbb;  /* hover — deeper than the base so the change reads */
  --green-deep:  #2c7d5a;  /* small green text on white (AA at 4.8:1) */
  --green-pale:  #f5fbf8;  /* whisper tint, not a wash */

  --blue-light: #dceefa;   /* secondary accent, used sparingly */
  --blue-soft:  #a9d8f0;
  --blue-pale:  #f8fbfd;   /* whisper tint */

  --line: #e4ecf1;         /* hairline borders do the separating instead of fills */

  --ease: cubic-bezier(.22,1,.36,1);
  --shadow: 0 1px 2px rgba(16,42,67,.04), 0 8px 24px -12px rgba(16,42,67,.16);
  --shadow-lg: 0 2px 4px rgba(16,42,67,.05), 0 22px 48px -18px rgba(16,42,67,.28);

  --bar-h: 116px;  /* green bar + nav, used for scroll offset */
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--bar-h);
  -webkit-text-size-adjust: 100%;
}

body {
  background: #fff;
  color: var(--ink);
  font: 400 16px/1.6 Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: Manrope, system-ui, sans-serif;
  color: var(--deep);
  font-weight: 800;
  letter-spacing: -.022em;
  line-height: 1.14;
  text-wrap: balance;
}
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
h3 { font-size: 1.08rem; }
p  { text-wrap: pretty; }

a { color: inherit; }
img, svg, iframe { display: block; max-width: 100%; }
img { height: auto; }

:focus-visible {
  outline: 3px solid var(--green-deep);
  outline-offset: 3px;
  border-radius: 4px;
}
::selection { background: var(--green-light); color: var(--navy); }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--navy); color: #fff; padding: .8rem 1.2rem;
  border-radius: 0 0 8px 0; font-weight: 600; text-decoration: none;
}
.skip:focus { left: 0; }

.wrap { width: 100%; max-width: 1160px; margin-inline: auto; padding-inline: 20px; }

/* --------------------------------------------------------------------------
   Sections — tight vertical rhythm to keep the page short
   -------------------------------------------------------------------------- */
.sec { padding: 58px 0; }
.sec-blue  { background: var(--blue-pale);  border-block: 1px solid var(--line); }
.sec-green { background: var(--green-pale); border-block: 1px solid var(--line); }

.head { max-width: 720px; margin-bottom: 36px; }
.head.center { margin-inline: auto; text-align: center; }
/* Not scoped to .head — the split section uses .sub on its own, and scoping it
   left that paragraph jammed against the heading with no styling at all. */
.sub { margin-top: 12px; font-size: 1.02rem; line-height: 1.7; color: var(--ink); }

.eyebrow {
  display: flex; align-items: center; gap: 10px;
  font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .16em; color: var(--green-deep); margin-bottom: 12px;
}
.head.center .eyebrow { justify-content: center; }
.rule { width: 26px; height: 2px; border-radius: 2px; background: var(--green-fresh); flex: none; }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  --sheen: transparent;
  position: relative; overflow: hidden; isolation: isolate;
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .7rem 1.3rem; border: 0; border-radius: 999px;
  font: 600 .93rem/1 Inter, sans-serif; text-decoration: none; cursor: pointer;
  transition: background .3s var(--ease), color .3s var(--ease),
              transform .3s var(--ease), box-shadow .3s var(--ease);
}
.btn-lg { padding: 1rem 1.7rem; font-size: 1rem; min-height: 52px; }

.btn::after {
  content: ""; position: absolute; inset: 0 auto 0 0; width: 45%; z-index: -1;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.6), transparent);
  transform: translateX(-130%) skewX(-18deg);
}
.btn:hover::after { animation: sheen .85s var(--ease); }
@keyframes sheen { to { transform: translateX(320%) skewX(-18deg); } }

.btn-green { background: var(--green-light); color: var(--navy); }
.btn-green:hover { background: var(--green-fresh); transform: translateY(-2px);
                   box-shadow: 0 14px 30px -12px rgba(47,138,99,.6); }

.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--deep); transform: translateY(-2px); }

.btn-line { background: rgba(255,255,255,.85); color: var(--navy);
            box-shadow: inset 0 0 0 2px rgba(16,42,67,.85); }
.btn-line:hover { background: var(--navy); color: #fff; transform: translateY(-2px); }

.btn:active { transform: translateY(0) scale(.98); }

/* --------------------------------------------------------------------------
   Header — navy brand bar + white nav

   WHY THE BAR IS NAVY, NOT LIGHT GREEN:
   the supplied logo is white artwork with a hairline keyline. On #bfe8d0 it
   measures ~1.4:1 — "Lumo" turns ghostly and "KITCHENS" disappears entirely.
   No CSS trick fixes that; white needs a dark ground. Navy gives the mark
   ~14:1 and lets the sparkle read, while light green stays the CTA colour and
   actually pops harder against it. To go back to green, set this to
   var(--green-light) and flip .bar-contact/.i/.sep to navy tones.
   -------------------------------------------------------------------------- */
.hdr { position: sticky; top: 0; z-index: 100; }

.bar { background: var(--navy); padding: 10px 0; }
.hdr.small .bar { padding: 10px 0; }

.bar-in { display: flex; align-items: center; justify-content: space-between; gap: 16px; }

.logo { display: block; flex: none; }
.logo img {
  width: auto; height: 52px;
  transition: transform .25s var(--ease);
}
.hdr.small .logo img { height: 52px; }
.logo:hover img { transform: scale(1.03); }

.bar-contact { display: flex; align-items: center; gap: 18px;
               font-size: .82rem; font-weight: 600; color: #dceefa; }
.bar-contact a { display: inline-flex; align-items: center; gap: 7px;
                 text-decoration: none; transition: color .25s; }
.bar-contact a:hover { color: #fff; }
.bar-contact span:not(.sep) { display: inline-flex; align-items: center; gap: 7px; }
.sep { width: 1px; height: 14px; background: rgba(255,255,255,.22); }
.i { width: 15px; height: 15px; fill: none; stroke: #9edcbb;
     stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; flex: none; }

.burger { display: none; width: 44px; height: 44px; border: 0; border-radius: 10px;
          background: rgba(255,255,255,.7); cursor: pointer; padding: 11px 10px; }
.burger span { display: block; height: 2px; border-radius: 2px; background: var(--navy);
               transition: transform .35s var(--ease), opacity .25s; }
.burger span + span { margin-top: 5px; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav { background: #fff; border-bottom: 1px solid var(--line); transition: box-shadow .4s; }
.hdr.small .nav { box-shadow: 0 6px 24px -14px rgba(16,42,67,.4); }
.nav-in { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.nav-list { display: flex; gap: 28px; list-style: none; }
.nav-list a {
  position: relative; display: inline-block; padding: 14px 0;
  font-size: .92rem; font-weight: 600; color: var(--navy); text-decoration: none;
  transition: color .25s;
}
.nav-list a::after {
  content: ""; position: absolute; inset: auto 0 9px 0; height: 2px; border-radius: 2px;
  background: var(--green-fresh); transform: scaleX(0); transform-origin: right;
  transition: transform .35s var(--ease);
}
.nav-list a:hover::after, .nav-list a.on::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { flex: none; }
.nav-mob { display: none; }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero { position: relative; isolation: isolate; background: var(--blue-pale); overflow: hidden; }
/* Must clip: the Ken Burns scale below makes the image wider than the viewport,
   which would otherwise push the page into horizontal scroll. */
.hero-img { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero-img img {
  width: 100%; height: 100%; object-fit: cover;
  animation: none;
  transform: none;
}
/* Hero image remains static to prevent layout jitter on all screen sizes. */
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(100deg, rgba(255,255,255,.97) 0%, rgba(255,255,255,.9) 38%, rgba(255,255,255,.45) 62%, rgba(255,255,255,.05) 100%);
}

.hero-in { padding: 64px 20px 68px; }
.hero-panel { max-width: 620px; }
.hero-panel .mark { position: relative; display: inline-block; }
.hero-panel .mark::after {
  content: ""; position: absolute; inset: auto 0 4px 0; height: 12px; z-index: -1;
  background: var(--green-light); border-radius: 3px;
}
.lede { margin-top: 18px; font-size: 1.08rem; line-height: 1.72; color: var(--ink); max-width: 34em; }
.row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.trustline { margin-top: 24px; font-size: .82rem; font-weight: 500; color: var(--quiet); }
.trustline span { color: var(--blue-soft); margin-inline: 6px; }

/* fade the hero content in on load */
.hero-panel > * { animation: up .7s var(--ease) both; }
.hero-panel > :nth-child(2) { animation-delay: .08s; }
.hero-panel > :nth-child(3) { animation-delay: .16s; }
.hero-panel > :nth-child(4) { animation-delay: .24s; }
.hero-panel > :nth-child(5) { animation-delay: .32s; }
@keyframes up { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

/* --------------------------------------------------------------------------
   Trust strip
   -------------------------------------------------------------------------- */
.trust { border-bottom: 1px solid var(--line); background: #fff; }
.trust-in { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; padding-block: 22px; }
.trust-item { display: flex; align-items: center; gap: 11px;
              font-size: .9rem; font-weight: 600; color: var(--navy); line-height: 1.3; }

.tile {
  display: inline-flex; align-items: center; justify-content: center; flex: none;
  width: 40px; height: 40px; border-radius: 11px;
  transition: background .35s var(--ease), transform .35s var(--ease);
}
.tile svg { width: 20px; height: 20px; fill: none; stroke-width: 1.6;
            stroke-linecap: round; stroke-linejoin: round; }
.tile-g { background: var(--green-light); }
.tile-g svg { stroke: var(--navy); }
.tile-b { background: var(--blue-light); }
.tile-b svg { stroke: var(--deep); }

/* --------------------------------------------------------------------------
   Cards
   -------------------------------------------------------------------------- */
.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

.card {
  border: 1px solid var(--line); border-radius: 16px; background: #fff; padding: 24px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.card:hover { transform: translateY(-5px); border-color: var(--green-fresh); box-shadow: var(--shadow-lg); }
.card:hover .tile-g { background: var(--green-fresh); transform: scale(1.06); }
.card:hover .tile-b { background: var(--blue-soft); transform: scale(1.06); }
.card h3 { margin: 16px 0 8px; }
.card p { font-size: .92rem; line-height: 1.7; }

/* --------------------------------------------------------------------------
   Before / after slider
   -------------------------------------------------------------------------- */
.ba { max-width: 900px; margin-inline: auto; }
.ba-frame {
  --p: 50%;
  position: relative; aspect-ratio: 3 / 2; overflow: hidden;
  border: 1px solid var(--line); border-radius: 16px; background: var(--blue-pale);
  box-shadow: 0 24px 60px -30px rgba(16,42,67,.45);
  touch-action: pan-y;
}
.ba-frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-before { position: absolute; inset: 0; clip-path: inset(0 calc(100% - var(--p)) 0 0); }

.ba-tag {
  position: absolute; top: 14px; z-index: 3;
  padding: 5px 11px; border-radius: 999px;
  font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
  box-shadow: 0 2px 8px rgba(16,42,67,.16);
}
.ba-tag-b { left: 14px; background: var(--green-light); color: var(--navy); }
.ba-tag-a { right: 14px; background: var(--blue-light); color: var(--deep); }

.ba-line {
  position: absolute; top: 0; bottom: 0; left: var(--p); width: 2px; z-index: 3;
  background: rgba(255,255,255,.95); transform: translateX(-1px);
  box-shadow: 0 0 0 1px rgba(16,42,67,.18); pointer-events: none;
}
.ba-knob {
  position: absolute; top: 50%; left: 50%; translate: -50% -50%;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(16,42,67,.92); border: 2px solid #fff;
  box-shadow: 0 8px 24px -6px rgba(16,42,67,.75);
  transition: scale .3s var(--ease);
}
.ba-knob::before, .ba-knob::after {
  content: ""; position: absolute; top: 50%; width: 7px; height: 7px;
  border-top: 2px solid #fff; border-right: 2px solid #fff;
}
.ba-knob::before { left: 12px; translate: 0 -50%; rotate: -135deg; }
.ba-knob::after  { right: 12px; translate: 0 -50%; rotate: 45deg; }

/* The range input is the real control: full drag + keyboard + ARIA, no JS needed
   for either. It sits invisibly over the frame and drives --p. */
.ba-range {
  position: absolute; inset: 0; z-index: 4;
  width: 100%; height: 100%; margin: 0; opacity: 0; cursor: ew-resize;
  -webkit-appearance: none; appearance: none; background: transparent;
}
.ba-range::-webkit-slider-thumb { -webkit-appearance: none; width: 56px; height: 100%; cursor: ew-resize; }
.ba-range::-moz-range-thumb { width: 56px; height: 999px; border: 0; opacity: 0; cursor: ew-resize; }
.ba-range:focus-visible + .ba-line .ba-knob,
.ba-frame:hover .ba-knob { scale: 1.1; }
.ba-range:focus-visible ~ .ba-line .ba-knob { outline: 3px solid var(--green-deep); outline-offset: 3px; }

.ba figcaption { margin-top: 14px; text-align: center; font-size: .85rem; color: var(--quiet); }

/* --------------------------------------------------------------------------
   Process
   -------------------------------------------------------------------------- */
.steps { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px 30px; }
.steps li { display: flex; gap: 15px; }
.num {
  flex: none; display: grid; place-items: center;
  width: 44px; height: 44px; border-radius: 50%;
  font: 800 1rem/1 Manrope, sans-serif;
  transition: transform .4s var(--ease), background .4s var(--ease);
}
.num-g { background: var(--green-light); color: var(--navy); }
.num-b { background: var(--blue-light);  color: var(--deep); }
.steps li:hover .num { transform: scale(1.1); }
.steps li:hover .num-g { background: var(--green-fresh); }
.steps li:hover .num-b { background: var(--blue-soft); }
.steps h3 { margin-bottom: 6px; }
.steps p { font-size: .9rem; line-height: 1.65; }

/* --------------------------------------------------------------------------
   Split (about / why)
   -------------------------------------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: center; }
.split-img { width: 100%; border-radius: 16px; border: 1px solid var(--line);
             box-shadow: 0 30px 70px -34px rgba(16,42,67,.5);
             transition: transform .9s var(--ease); }
.split-img:hover { transform: scale(1.02); }

.ticks { list-style: none; display: grid; grid-template-columns: 1fr 1fr;
         gap: 9px 18px; margin: 22px 0 26px; }
.ticks li { position: relative; padding-left: 26px; font-size: .92rem; font-weight: 500;
            color: var(--navy); line-height: 1.4; }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: 2px; width: 17px; height: 17px;
  border-radius: 50%; background: var(--blue-light);
}
.ticks li::after {
  content: ""; position: absolute; left: 5px; top: 7px; width: 6px; height: 3px;
  border-left: 2px solid var(--deep); border-bottom: 2px solid var(--deep);
  rotate: -45deg;
}

/* --------------------------------------------------------------------------
   Accordion
   -------------------------------------------------------------------------- */
.acc { max-width: 800px; margin-inline: auto;
       border: 1px solid var(--line); border-radius: 16px; overflow: hidden; background: #fff; }
.acc-item + .acc-item { border-top: 1px solid var(--line); }
.acc-item button {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  width: 100%; padding: 17px 20px; border: 0; background: none; cursor: pointer;
  text-align: left; font: 700 1rem/1.4 Manrope, sans-serif; color: var(--deep);
  transition: background .3s, color .3s;
}
.acc-item button:hover { background: var(--green-pale); }
.acc-item[data-open="true"] { background: var(--green-pale); }
.acc-item[data-open="true"] button { color: var(--green-deep); }

.acc-ico { position: relative; flex: none; width: 30px; height: 30px; border-radius: 50%;
           background: var(--blue-light); transition: background .35s var(--ease), rotate .35s var(--ease); }
.acc-ico::before, .acc-ico::after {
  content: ""; position: absolute; top: 50%; left: 50%; translate: -50% -50%;
  background: var(--deep); border-radius: 1px; transition: background .35s;
}
.acc-ico::before { width: 12px; height: 2px; }
.acc-ico::after  { width: 2px; height: 12px; }
.acc-item[data-open="true"] .acc-ico { background: var(--green-fresh); rotate: 135deg; }
.acc-item[data-open="true"] .acc-ico::before,
.acc-item[data-open="true"] .acc-ico::after { background: var(--navy); }

/* Animating grid-template-rows avoids measuring heights in JS. */
.acc-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .4s var(--ease); }
.acc-item[data-open="true"] .acc-panel { grid-template-rows: 1fr; }
.acc-panel > div { overflow: hidden; }
.acc-panel p { padding: 0 56px 18px 20px; font-size: .94rem; line-height: 1.72; }

/* --------------------------------------------------------------------------
   Form
   -------------------------------------------------------------------------- */
.form { max-width: 780px; margin-inline: auto; background: #fff;
        border: 1px solid var(--line); border-radius: 16px; padding: 26px;
        box-shadow: 0 24px 60px -34px rgba(16,42,67,.32); }

/* honeypot — visually gone, but not display:none (some bots skip those) */
.hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.f-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.f { display: flex; flex-direction: column; gap: 6px; }
.f-wide { grid-column: 1 / -1; }
.f label { font-size: .84rem; font-weight: 600; color: var(--deep); }
.req { color: var(--green-deep); }

.f input, .f select, .f textarea {
  width: 100%; padding: .72rem .9rem; border: 1px solid var(--line); border-radius: 10px;
  background: #fff; color: var(--navy); font: 400 .95rem/1.4 Inter, sans-serif;
  transition: border-color .25s, box-shadow .25s;
}
.f textarea { resize: vertical; min-height: 96px; }
.f input:focus, .f select:focus, .f textarea:focus {
  outline: 0; border-color: var(--green-fresh); box-shadow: 0 0 0 4px rgba(191,232,208,.55);
}
.f input[type="file"] { padding: .55rem; font-size: .85rem; cursor: pointer; }
.f input[type="file"]::file-selector-button {
  margin-right: 10px; padding: .45rem .8rem; border: 0; border-radius: 999px;
  background: var(--blue-light); color: var(--deep);
  font: 600 .82rem Inter, sans-serif; cursor: pointer; transition: background .25s;
}
.f input[type="file"]::file-selector-button:hover { background: var(--blue-soft); }

.f.bad input, .f.bad select, .f.bad textarea { border-color: #dc2626; }
.err { font-size: .78rem; font-weight: 500; color: #dc2626; }

.hint { font-size: .78rem; color: var(--quiet); }
.hint a { color: var(--deep); font-weight: 600; }

.consent {
  display: flex; gap: 11px; align-items: flex-start; margin-top: 16px;
  padding: 13px 15px; border: 1px solid var(--line); border-radius: 10px;
  background: var(--blue-pale); cursor: pointer; font-size: .86rem; line-height: 1.55;
  color: var(--ink); transition: border-color .25s, background .25s;
}
.consent.bad { border-color: #dc2626; background: #fef2f2; }
.consent input { width: 18px; height: 18px; margin-top: 1px; flex: none; accent-color: var(--green-deep); }

.f-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 18px; }

.f-msg { margin-top: 14px; font-size: .9rem; font-weight: 500; border-radius: 10px; }
.f-msg:not(:empty) { padding: 12px 15px; }
.f-msg.ok  { background: var(--green-pale); border: 1px solid var(--green-fresh); color: var(--deep); }
.f-msg.no  { background: #fef2f2; border: 1px solid #fca5a5; color: #b91c1c; }

/* success state replaces the form body */
.form.sent .f-grid, .form.sent .consent, .form.sent .f-actions { display: none; }
.form.sent { text-align: center; }

.spin { width: 15px; height: 15px; border: 2px solid rgba(16,42,67,.25);
        border-top-color: var(--navy); border-radius: 50%; animation: spin .7s linear infinite; }
@keyframes spin { to { rotate: 360deg; } }

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */
/* Uneven columns on purpose: the email is 27 unbroken characters and needs a
   wider cell than "0406 310 117" does, or it wraps mid-domain. */
.contact-grid { display: grid; grid-template-columns: .92fr 1.34fr 1fr 1.02fr;
                gap: 14px; margin-bottom: 26px; }
.ccard {
  display: flex; align-items: center; gap: 13px; padding: 16px;
  border: 1px solid var(--line); border-radius: 14px; background: #fff;
  text-decoration: none;
  transition: transform .35s var(--ease), border-color .35s, box-shadow .35s;
}
a.ccard:hover { transform: translateY(-4px); border-color: var(--green-fresh); box-shadow: var(--shadow); }
.ccard { min-width: 0; }
.ccard > span:last-child { min-width: 0; }
.ccard small { display: block; font-size: .7rem; font-weight: 600; text-transform: uppercase;
               letter-spacing: .1em; color: var(--quiet); }
.ccard strong { display: block; font-size: .98rem; color: var(--navy); }
.ccard .brk { font-size: .84rem; letter-spacing: -.01em; }
.brk { overflow-wrap: anywhere; }

.map { border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
.map iframe { width: 100%; height: 320px; border: 0; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.ftr { background: var(--navy); color: #fff; }
.ftr-in { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; padding-block: 48px; }
/* white artwork on navy — the logo's natural ground */
.ftr-logo { height: 52px; width: auto; }
.ftr-desc { margin-top: 16px; max-width: 34em; font-size: .93rem; line-height: 1.75; color: rgba(217,238,250,.75); }

.ftr h2 { font-size: .74rem; font-weight: 700; text-transform: uppercase;
          letter-spacing: .14em; color: var(--green-light); margin-bottom: 12px; }
.ftr ul { list-style: none; }
.ftr li { margin-bottom: 8px; }
.ftr a { color: rgba(217,238,250,.8); text-decoration: none; transition: color .25s; }
.ftr a:hover { color: #fff; }
.ftr-contact li { font-size: .92rem; color: rgba(217,238,250,.8); }

.social { display: flex; gap: 10px; margin-top: 18px; }
.social a { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 11px;
            border: 1px solid rgba(255,255,255,.15); transition: all .3s var(--ease); }
.social a:hover { border-color: var(--green-fresh); background: rgba(255,255,255,.05); transform: translateY(-2px); }
.social svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.6; }

.ftr-btm { border-top: 1px solid rgba(255,255,255,.1); padding-block: 18px;
           font-size: .84rem; color: rgba(217,238,250,.6); }

/* --------------------------------------------------------------------------
   Sticky mobile CTA
   -------------------------------------------------------------------------- */
.mcta {
  display: none; position: fixed; inset: auto 0 0 0; z-index: 90; gap: 10px; padding: 10px;
  background: rgba(255,255,255,.96); backdrop-filter: blur(8px);
  border-top: 1px solid var(--line);
  padding-bottom: calc(10px + env(safe-area-inset-bottom));
  transform: translateY(110%); transition: transform .45s var(--ease);
}
.mcta.on { transform: none; }
.mcta .btn { flex: 1; min-height: 50px; }
.mcta .btn-green { flex: 1.3; }

/* --------------------------------------------------------------------------
   Scroll reveal
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0; transform: translateY(16px);
  transition: opacity .65s var(--ease) var(--d, 0ms), transform .7s var(--ease) var(--d, 0ms);
}
.reveal.in { opacity: 1; transform: none; }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 980px) {
  .grid3, .steps { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .ftr-in { grid-template-columns: 1fr 1fr; gap: 30px; }
  .ftr-in > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  :root { --bar-h: 76px; }

  /* Keep the mobile header at one fixed height. Shrinking a sticky header while
     the page is only a few pixels from the top can repeatedly move scrollY
     across the trigger point, which looks like the whole hero is jittering. */
  .hdr.small .bar { padding: 10px 0; }
  .hdr.small .logo img { height: 52px; }

  /* The desktop Ken Burns effect can look like flicker/jitter in narrow mobile
     viewports, especially in Chrome device emulation. Use a stable hero image. */
  .hero-img img { animation: none; transform: none; }

  .bar-contact { display: none; }
  .burger { display: block; }

  /* nav collapses into a drawer under the green bar */
  .nav {
    position: absolute; inset: 100% 0 auto 0;
    display: grid; grid-template-rows: 0fr;
    transition: grid-template-rows .4s var(--ease);
    box-shadow: 0 18px 40px -20px rgba(16,42,67,.5);
  }
  .nav-in { overflow: hidden; display: block; padding-inline: 20px; }
  .hdr.open .nav { grid-template-rows: 1fr; }

  .nav-list { flex-direction: column; gap: 0; padding-top: 6px; }
  .nav-list li + li { border-top: 1px solid var(--line); }
  .nav-list a { display: block; padding: 15px 0; font-size: 1rem; }
  .nav-list a::after { display: none; }
  .nav-cta { display: none; }
  .nav-mob { display: grid; gap: 10px; padding: 14px 0 20px; }
  .nav-mob .btn { width: 100%; min-height: 50px; }

  .mcta { display: flex; }
  body { padding-bottom: 70px; }

  /* The desktop wash runs left-to-right, which leaves narrow screens with text
     sitting on the bright part of the photo. Vertical here: cover the copy at
     the top, let the kitchen come through underneath it. */
  .hero::before {
    background: linear-gradient(180deg,
      rgba(255,255,255,.96) 0%,
      rgba(255,255,255,.92) 58%,
      rgba(255,255,255,.78) 84%,
      rgba(255,255,255,.32) 100%);
  }
  /* --quiet is tuned for white; over the photo it needs the extra weight. */
  .trustline { color: var(--ink); }

  .hero-in { padding: 44px 20px 50px; }
  .sec { padding: 46px 0; }
  .trust-in { grid-template-columns: 1fr 1fr; gap: 14px; }
  .acc-panel p { padding-right: 20px; }
}

@media (max-width: 620px) {
  .grid3, .steps, .contact-grid, .f-grid, .ticks { grid-template-columns: 1fr; }
  .logo img { height: 42px; }
  .hdr.small .logo img { height: 42px; }
  .form { padding: 20px 16px; }
  .ba-knob { width: 40px; height: 40px; }
  .ftr-in { grid-template-columns: 1fr; }
  .map iframe { height: 260px; }
}

/* --------------------------------------------------------------------------
   Respect the OS reduced-motion setting
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero-img img { animation: none; }
}

@media print {
  .hdr, .mcta, .map, .ba-range { display: none; }
  .reveal { opacity: 1; transform: none; }
}
