/* =====================================================================
   KoolMakers website styles
   ===================================================================== */

/* ---------- BRAND COLOURS: matched to the KoolMakers logo ---------- */
:root {
  --brand-900: #06305a;   /* deepest blue: top bar, footer */
  --brand-800: #0a5596;   /* hero and dark panels */
  --brand-700: #0068b3;
  --brand-600: #0077c2;   /* main buttons and links (white text passes contrast) */
  --brand-500: #1aa3ea;
  --brand-400: #33bbf9;   /* the logo swirl blue: bright buttons, highlights */
  --brand-300: #93d8fc;
  --brand-100: #e3f5fe;   /* light tint backgrounds */
  --on-bright: #04213b;   /* text on logo-blue buttons */
  --heat: #f2803a;        /* only used for the heating demo in the hero */
  --heat-light: #ffab73;
  --cool-light: #33bbf9;
}
/* --------------------------------------------------------------------------- */

@font-face {
  font-family: "Archivo";
  src: url("fonts/archivo-variable.woff2") format("woff2-variations"),
       url("fonts/archivo-variable.woff2") format("woff2");
  font-weight: 100 900;
  font-stretch: 62% 125%;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #0f1f33;
  --muted: #56677c;
  --line: #dde6ef;
  --soft: #f4f8fb;
  --white: #ffffff;
  --font: "Archivo", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --wrap: 76rem;
  --radius: 18px;
  --shadow-sm: 0 1px 2px rgba(15, 31, 51, 0.06), 0 2px 8px rgba(15, 31, 51, 0.04);
  --shadow-md: 0 2px 4px rgba(15, 31, 51, 0.05), 0 14px 32px -12px rgba(15, 31, 51, 0.18);
  --shadow-lg: 0 30px 60px -20px rgba(6, 20, 40, 0.45);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img, svg, iframe { max-width: 100%; }
a { color: var(--brand-600); text-underline-offset: 0.18em; }
a:hover { color: var(--brand-700); }
:focus-visible { outline: 3px solid var(--brand-500); outline-offset: 3px; border-radius: 4px; }

.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: 1.25rem; }
@media (min-width: 48rem) { .wrap { padding-inline: 2rem; } }

.skip { position: absolute; left: -999px; top: 0; z-index: 200; background: var(--ink); color: #fff; padding: 0.6rem 1rem; }
.skip:focus { left: 1rem; top: 1rem; color: #fff; }

.icon { width: 1.25em; height: 1.25em; flex: none; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- Type ---------- */

h1, h2, h3, h4 { margin: 0; color: var(--ink); line-height: 1.1; letter-spacing: -0.015em; }
h1 { font-size: clamp(2.3rem, 4.8vw, 3.7rem); font-weight: 800; font-stretch: 112%; line-height: 1.04; }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.75rem); font-weight: 780; font-stretch: 108%; }
h3 { font-size: 1.25rem; font-weight: 700; line-height: 1.25; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
.lede { font-size: clamp(1.1rem, 1.6vw, 1.25rem); color: var(--muted); line-height: 1.6; max-width: 56ch; }

.kicker {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-bottom: 1rem; padding: 0.35rem 0.8rem;
  border-radius: 999px; background: var(--brand-100); color: var(--brand-700);
  font-size: 0.9rem; font-weight: 650;
}
.kicker .icon { width: 1rem; height: 1rem; }

.section-head { max-width: 44rem; margin-bottom: 3rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { margin-top: 1rem; color: var(--muted); font-size: 1.125rem; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  min-height: 3.1rem; padding: 0.75rem 1.4rem;
  border: 2px solid transparent; border-radius: 999px;
  font: inherit; font-size: 1rem; font-weight: 700; line-height: 1.2;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s, color 0.18s, border-color 0.18s;
}
.btn .icon { width: 1.1rem; height: 1.1rem; }
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--brand-600); color: #fff; box-shadow: 0 8px 20px -8px rgba(0, 119, 194, 0.55); }
.btn-primary:hover { background: var(--brand-700); color: #fff; box-shadow: 0 12px 24px -8px rgba(0, 119, 194, 0.6); }
.btn-bright { background: var(--brand-400); color: var(--on-bright); box-shadow: 0 8px 22px -8px rgba(51, 187, 249, 0.75); }
.btn-bright:hover { background: #5fcbfb; color: var(--on-bright); }
.btn-ghost { background: #fff; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--brand-300); color: var(--brand-700); }
.btn-glass { background: rgba(255, 255, 255, 0.1); color: #fff; border-color: rgba(255, 255, 255, 0.35); backdrop-filter: blur(6px); }
.btn-glass:hover { background: rgba(255, 255, 255, 0.18); color: #fff; }
.btn-white { background: #fff; color: var(--brand-800); }
.btn-white:hover { background: var(--brand-100); color: var(--brand-800); }

.actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem; }

.text-link { display: inline-flex; align-items: center; gap: 0.35rem; font-weight: 700; text-decoration: none; }
.text-link .icon { width: 1rem; height: 1rem; transition: transform 0.18s; }
.text-link:hover .icon { transform: translateX(3px); }

/* ---------- Top bar + header ---------- */

.topbar { background: var(--brand-900); color: #d3e5f5; font-size: 0.875rem; }
.topbar .wrap { display: flex; justify-content: space-between; align-items: center; gap: 1rem; min-height: 2.5rem; }
.topbar ul { display: flex; gap: 1.75rem; margin: 0; padding: 0; list-style: none; }
.topbar li { display: inline-flex; align-items: center; gap: 0.45rem; }
.topbar .icon { width: 0.95rem; height: 0.95rem; color: var(--brand-400); }
.topbar a { color: #fff; text-decoration: none; }
.topbar a:hover { text-decoration: underline; color: #fff; }
@media (max-width: 52rem) { .topbar { display: none; } }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 6px 24px -18px rgba(15, 31, 51, 0.4); }
.site-header .wrap { position: relative; display: flex; align-items: center; gap: 2rem; min-height: 4.75rem; }

.brand { display: inline-flex; align-items: center; gap: 0.6rem; margin-right: auto; color: var(--ink); text-decoration: none; }
.brand:hover { color: var(--ink); }
.logo { display: block; width: auto; height: 3.1rem; }
@media (max-width: 25rem) { .logo { height: 2.5rem; } }

.nav ul { display: flex; align-items: center; gap: 0.25rem; margin: 0; padding: 0; list-style: none; }
.nav a {
  display: block; padding: 0.55rem 0.9rem; border-radius: 999px;
  color: var(--ink); font-size: 0.98rem; font-weight: 600; text-decoration: none;
  transition: background-color 0.15s, color 0.15s;
}
.nav a:hover { background: var(--soft); color: var(--brand-700); }
.nav a[aria-current="page"] { background: var(--brand-100); color: var(--brand-700); }

.header-call { display: inline-flex; align-items: center; gap: 0.7rem; color: var(--ink); text-decoration: none; }
.header-call .icon-bubble { display: grid; place-items: center; width: 2.6rem; height: 2.6rem; border-radius: 50%; background: var(--brand-400); color: var(--on-bright); box-shadow: 0 8px 18px -8px rgba(51, 187, 249, 0.8); }
.header-call .icon-bubble .icon { width: 1.15rem; height: 1.15rem; }
.header-call small { display: block; color: var(--muted); font-size: 0.78rem; line-height: 1.2; }
.header-call strong { display: block; font-size: 1.05rem; line-height: 1.2; }
.header-call:hover strong { color: var(--brand-700); }

.menu-toggle { display: none; }

@media (max-width: 62rem) {
  .site-header .wrap { gap: 0.75rem; min-height: 4.25rem; }
  .header-call small, .header-call strong { display: none; }
  .menu-toggle {
    display: inline-grid; place-items: center; width: 2.75rem; height: 2.75rem;
    border: 1px solid var(--line); border-radius: 50%; background: #fff; color: var(--ink); cursor: pointer;
  }
  .menu-toggle .icon { width: 1.3rem; height: 1.3rem; }
  .nav {
    display: none; position: absolute; top: calc(100% + 0.5rem); left: 1rem; right: 1rem;
    padding: 0.5rem; background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-md);
  }
  .nav.is-open { display: block; }
  .nav ul { flex-direction: column; align-items: stretch; gap: 0.15rem; }
  .nav a { padding: 0.85rem 1rem; border-radius: 10px; }
  .no-js .site-header .wrap { flex-wrap: wrap; }
  .no-js .nav { display: block; position: static; width: 100%; border: 0; box-shadow: none; padding: 0 0 0.75rem; }
  .no-js .menu-toggle { display: none; }
}

/* ---------- Hero ---------- */

.hero {
  position: relative; overflow: hidden; isolation: isolate;
  background:
    radial-gradient(60rem 40rem at 85% 5%, rgba(51, 187, 249, 0.55), transparent 60%),
    radial-gradient(40rem 30rem at 0% 100%, rgba(51, 187, 249, 0.25), transparent 60%),
    linear-gradient(160deg, var(--brand-700), var(--brand-800) 60%, #084a86);
  color: #fff;
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: 0.35;
  background-image: linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 70% 30%, #000 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 70% 30%, #000 20%, transparent 70%);
}
.hero .wrap { display: grid; gap: 3.5rem; align-items: center; padding-block: 4rem 5rem; }
@media (min-width: 64rem) { .hero .wrap { grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); padding-block: 5.5rem 7rem; } }

.hero h1 { color: #fff; max-width: 17ch; }
.hero .lede { margin-top: 1.4rem; color: #dcefff; }
.hero .kicker { background: rgba(255, 255, 255, 0.14); color: #fff; border: 1px solid rgba(255, 255, 255, 0.16); }
.hero .kicker .icon { color: var(--brand-300); }

.hero-points { display: flex; flex-wrap: wrap; gap: 0.6rem 1.5rem; margin: 2rem 0 0; padding: 0; list-style: none; color: #e3f2ff; font-size: 0.95rem; }
.hero-points li { display: inline-flex; align-items: center; gap: 0.45rem; }
.hero-points .icon { width: 1.05rem; height: 1.05rem; color: var(--brand-400); stroke-width: 2.6; }

.hero-visual { position: relative; width: 100%; max-width: 34rem; justify-self: center; padding-bottom: 5rem; }
@media (min-width: 64rem) { .hero-visual { justify-self: end; } }

.scene {
  --flow: var(--heat-light);
  position: relative; overflow: hidden;
  border-radius: 28px; aspect-ratio: 6 / 5;
  background: linear-gradient(180deg, #f7fafd 0%, #e9f0f7 100%);
  box-shadow: var(--shadow-lg), inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}
.scene[data-mode="cool"] { --flow: var(--cool-light); }
.scene svg { display: block; width: 100%; height: 100%; }
.scene .glow { transition: fill 0.5s; fill: var(--flow); }
.scene .airflow path { stroke: var(--flow); transition: stroke 0.5s; }
.scene .led { fill: var(--flow); transition: fill 0.5s; }

@media (prefers-reduced-motion: no-preference) {
  .scene .airflow path { stroke-dasharray: 14 18; animation: flow 2.4s linear infinite; }
  .scene .airflow path:nth-child(2) { animation-duration: 2.9s; }
  .scene .airflow path:nth-child(3) { animation-duration: 3.4s; }
  .scene .airflow path:nth-child(4) { animation-duration: 2.7s; }
  @keyframes flow { to { stroke-dashoffset: -64; } }
}

/* Controller card overlapping the scene */
.controller {
  --accent: var(--heat-light);
  position: absolute; left: -1rem; bottom: 0; width: min(19rem, 78%);
  padding: 0.9rem; border-radius: 22px;
  background: rgba(255, 255, 255, 0.96); color: var(--ink);
  box-shadow: var(--shadow-lg);
}
@media (max-width: 40rem) { .hero-visual { padding-bottom: 9rem; } .controller { left: 50%; transform: translateX(-50%); width: min(19rem, 92%); } }
.controller[data-mode="cool"] { --accent: var(--cool-light); }

.screen { padding: 0.9rem 1.1rem 1rem; border-radius: 14px; background: linear-gradient(160deg, #13263a, #0b1826); color: #dfe9f2; }
.screen-top { display: flex; justify-content: space-between; align-items: center; font-size: 0.88rem; }
.mode-name { display: inline-flex; align-items: center; gap: 0.4rem; color: var(--accent); font-weight: 700; transition: color 0.4s; }
.mode-name::before { content: ""; width: 0.5rem; height: 0.5rem; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px var(--accent); transition: background-color 0.4s; }
.room { color: #93a8ba; }
.setpoint { display: flex; align-items: flex-start; margin-top: 0.2rem; color: #fff; font-stretch: 70%; font-weight: 750; line-height: 0.9; }
.setpoint-value { font-size: 4.25rem; letter-spacing: -0.02em; }
.setpoint .deg { margin-top: 0.3rem; font-size: 1.8rem; color: var(--accent); transition: color 0.4s; }
.setpoint small { align-self: flex-end; margin: 0 0 0.45rem auto; color: #93a8ba; font-size: 0.8rem; font-stretch: 100%; font-weight: 500; }

.controller-buttons { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; margin-top: 0.7rem; }
.controller-buttons button {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  min-height: 2.75rem; border: 1px solid var(--line); border-radius: 12px;
  background: var(--soft); color: var(--ink); font: inherit; font-size: 0.95rem; font-weight: 700; cursor: pointer;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}
.controller-buttons .icon { width: 1rem; height: 1rem; }
.controller-buttons button:hover { border-color: var(--brand-300); }
.controller-buttons [data-set-mode="heat"][aria-pressed="true"] { background: var(--heat); border-color: var(--heat); color: #fff; }
.controller-buttons [data-set-mode="cool"][aria-pressed="true"] { background: var(--brand-400); border-color: var(--brand-400); color: var(--on-bright); }

/* ---------- Trust strip ---------- */

.trust { position: relative; z-index: 2; margin-top: -3rem; }
.trust ul {
  display: grid; gap: 0; margin: 0; padding: 0; list-style: none;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-md);
}
@media (min-width: 40rem) { .trust ul { grid-template-columns: 1fr 1fr; } }
@media (min-width: 64rem) { .trust ul { grid-template-columns: repeat(4, 1fr); } }
.trust li { display: flex; align-items: center; gap: 0.9rem; padding: 1.25rem 1.4rem; }
.trust li + li { border-top: 1px solid var(--line); }
@media (min-width: 40rem) {
  .trust li + li { border-top: 0; }
  .trust li:nth-child(n+3) { border-top: 1px solid var(--line); }
  .trust li:nth-child(even) { border-left: 1px solid var(--line); }
}
@media (min-width: 64rem) {
  .trust li:nth-child(n+3) { border-top: 0; }
  .trust li + li { border-left: 1px solid var(--line); }
}
.trust strong { display: block; font-size: 1rem; line-height: 1.3; }
.trust li > div > span { display: block; color: var(--muted); font-size: 0.9rem; line-height: 1.35; }

.icon-tile {
  display: grid; place-items: center; flex: none;
  width: 3rem; height: 3rem; border-radius: 14px;
  background: var(--brand-100); color: var(--brand-600);
}
.icon-tile .icon { width: 1.5rem; height: 1.5rem; }
.icon-tile.heat { background: var(--brand-400); color: #fff; }

/* ---------- Sections ---------- */

.section { padding-block: 5rem; }
@media (min-width: 48rem) { .section { padding-block: 7rem; } }
.section.tight-top { padding-top: 4.5rem; }
.bg-soft { background: var(--soft); }

/* Service cards */
.cards { display: grid; gap: 1.25rem; }
@media (min-width: 40rem) { .cards { grid-template-columns: 1fr 1fr; } }
@media (min-width: 64rem) { .cards { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }

.card {
  position: relative; display: flex; flex-direction: column;
  padding: 1.75rem; border-radius: var(--radius);
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  color: var(--ink); text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s;
}
a.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--brand-300); color: var(--ink); }
.card h3 { margin: 1.25rem 0 0.5rem; }
.card p { color: var(--muted); font-size: 1rem; }
.card .text-link { margin-top: auto; padding-top: 1.25rem; color: var(--brand-600); }
.card .audience-tag { position: absolute; top: 1.75rem; right: 1.75rem; padding: 0.2rem 0.6rem; border-radius: 999px; background: var(--soft); color: var(--muted); font-size: 0.8rem; font-weight: 600; }

/* Home / business panels */
.panels { display: grid; gap: 1.5rem; }
@media (min-width: 56rem) { .panels { grid-template-columns: 1fr 1fr; } }
.panel { position: relative; overflow: hidden; padding: 2.25rem; border-radius: 24px; }
@media (min-width: 48rem) { .panel { padding: 3rem; } }
.panel h2 { font-size: clamp(1.7rem, 2.8vw, 2.2rem); margin: 1.25rem 0 0.75rem; }
.panel > p { max-width: 42ch; }
.panel-home { background: linear-gradient(150deg, #effaff, #d3effd); }
.panel-home > p { color: var(--muted); }
.panel-business { background: linear-gradient(150deg, var(--brand-600), var(--brand-800)); color: #e0f0fc; }
.panel-business h2 { color: #fff; }
.panel-business .icon-tile { background: rgba(255, 255, 255, 0.12); color: #fff; }
.panel-deco { position: absolute; right: -2.5rem; bottom: -2.5rem; width: 13rem; height: 13rem; opacity: 0.12; stroke-width: 1.2; }
.panel-home .icon-tile { background: #fff; color: var(--brand-600); }
.panel-home .panel-deco { color: var(--brand-500); opacity: 0.16; }
.panel-business .panel-deco { color: #fff; }

.checks { display: grid; gap: 0.7rem; margin: 1.75rem 0 2rem; padding: 0; list-style: none; position: relative; }
.checks li { display: flex; gap: 0.7rem; align-items: flex-start; font-weight: 600; }
.checks .tick { display: grid; place-items: center; flex: none; width: 1.5rem; height: 1.5rem; margin-top: 0.1rem; border-radius: 50%; }
.checks .tick .icon { width: 0.9rem; height: 0.9rem; stroke-width: 3; }
.panel-home .tick { background: var(--brand-600); color: #fff; }
.panel-business .tick { background: var(--brand-400); color: var(--on-bright); }
.panel-business .checks li { color: #fff; }
.panel .actions { margin-top: 0; position: relative; }

/* Process */
.process { display: grid; gap: 1.25rem; margin: 0; padding: 0; list-style: none; counter-reset: step; }
@media (min-width: 40rem) { .process { grid-template-columns: 1fr 1fr; } }
@media (min-width: 64rem) { .process { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; } }
.process li { position: relative; counter-increment: step; padding: 1.75rem; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); }
.process li::before {
  content: counter(step); display: grid; place-items: center;
  width: 2.75rem; height: 2.75rem; margin-bottom: 1.25rem; border-radius: 50%;
  background: var(--brand-400); color: var(--on-bright); font-weight: 800; font-size: 1.1rem;
  box-shadow: 0 0 0 6px var(--brand-100);
}
@media (min-width: 64rem) {
  .process li:not(:last-child)::after {
    content: ""; position: absolute; top: 3.1rem; left: calc(1.75rem + 3.5rem); right: -1.5rem;
    border-top: 2px dashed var(--brand-300);
  }
}
.process h3 { margin-bottom: 0.5rem; }
.process p { color: var(--muted); font-size: 1rem; }

/* Why us */
.why { display: grid; gap: 3rem; align-items: start; }
@media (min-width: 64rem) { .why { grid-template-columns: 0.85fr 1.15fr; gap: 5rem; } .why-intro { position: sticky; top: 7rem; } }
.why-intro .lede { margin-top: 1rem; }
.features { display: grid; gap: 1.25rem; }
@media (min-width: 40rem) { .features { grid-template-columns: 1fr 1fr; } }
.feature { padding: 1.5rem; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); }
.feature h3 { margin: 1rem 0 0.4rem; font-size: 1.12rem; }
.feature p { color: var(--muted); font-size: 0.98rem; }

/* Brands marquee */
.brands-band { padding-block: 3.5rem; border-block: 1px solid var(--line); background: #fff; }
.brands-band p { margin-bottom: 1.5rem; text-align: center; color: var(--muted); font-weight: 600; }
.marquee { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.marquee ul { display: flex; gap: 3.5rem; width: max-content; margin: 0; padding: 0; list-style: none; }
.marquee li { color: #7d8ea3; font-size: clamp(1.35rem, 2.2vw, 1.7rem); font-weight: 750; font-stretch: 80%; white-space: nowrap; letter-spacing: -0.01em; }
@media (prefers-reduced-motion: no-preference) {
  .marquee ul { animation: marquee 40s linear infinite; }
  .marquee:hover ul { animation-play-state: paused; }
  @keyframes marquee { to { transform: translateX(-50%); } }
}
@media (prefers-reduced-motion: reduce) { .marquee ul { flex-wrap: wrap; justify-content: center; width: auto; gap: 1rem 2.5rem; } .marquee li[aria-hidden] { display: none; } .marquee { mask-image: none; -webkit-mask-image: none; } }

/* Booking banner */
.booking-banner {
  display: grid; gap: 1.5rem; align-items: center;
  padding: 2.25rem; border-radius: 24px;
  background: radial-gradient(30rem 20rem at 100% 0%, rgba(51, 187, 249, 0.35), transparent 60%), linear-gradient(135deg, #f2fbff, #dcf2fe);
  border: 1px solid #bfe7fc;
}
@media (min-width: 56rem) { .booking-banner { grid-template-columns: auto 1fr auto; gap: 2rem; padding: 2.5rem 3rem; } }
.booking-banner .icon-tile { width: 4rem; height: 4rem; border-radius: 18px; background: #fff; color: var(--brand-600); box-shadow: var(--shadow-sm); }
.booking-banner .icon-tile .icon { width: 2rem; height: 2rem; }
.booking-banner h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); }
.booking-banner p { margin-top: 0.4rem; color: var(--muted); }

/* Final CTA */
.cta { position: relative; overflow: hidden; isolation: isolate; background: linear-gradient(135deg, var(--brand-600), var(--brand-800)); color: #e0f0fc; }
.cta::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(40rem 25rem at 90% 120%, rgba(51, 187, 249, 0.5), transparent 60%), radial-gradient(30rem 20rem at 0% -20%, rgba(147, 216, 252, 0.3), transparent 60%); }
.cta .wrap { display: grid; gap: 2rem; align-items: center; padding-block: 4.5rem; }
@media (min-width: 56rem) { .cta .wrap { grid-template-columns: 1fr auto; padding-block: 5rem; } }
.cta h2 { color: #fff; }
.cta p { margin-top: 0.8rem; font-size: 1.125rem; max-width: 50ch; color: #e0f0fc; }
.cta .actions { margin-top: 0; }

/* ---------- Inner page hero ---------- */

.page-hero {
  position: relative; overflow: hidden; isolation: isolate;
  background: radial-gradient(50rem 30rem at 90% 0%, rgba(51, 187, 249, 0.5), transparent 60%), linear-gradient(160deg, var(--brand-700), var(--brand-800) 65%, #084a86);
  color: #dcefff;
}
.page-hero::before { content: ""; position: absolute; inset: 0; z-index: -1; opacity: 0.3; background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px); background-size: 56px 56px; mask-image: radial-gradient(ellipse at 80% 20%, #000 10%, transparent 65%); -webkit-mask-image: radial-gradient(ellipse at 80% 20%, #000 10%, transparent 65%); }
.page-hero .wrap { padding-block: 4rem 4.5rem; }
@media (min-width: 48rem) { .page-hero .wrap { padding-block: 5rem 5.5rem; } }
.page-hero h1 { color: #fff; font-size: clamp(2.2rem, 4.6vw, 3.5rem); max-width: 20ch; }
.page-hero .lede { margin-top: 1.1rem; color: #dcefff; }
.page-hero .kicker { background: rgba(255,255,255,.1); color: #dbe8f7; border: 1px solid rgba(255,255,255,.16); }
.crumbs { margin-bottom: 1.25rem; font-size: 0.9rem; }
.crumbs a { color: var(--brand-300); text-decoration: none; }
.crumbs a:hover { color: #fff; }

/* ---------- Services page ---------- */

.jumpnav { position: sticky; top: 4.75rem; z-index: 50; background: rgba(255,255,255,.95); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
@media (max-width: 62rem) { .jumpnav { top: 4.25rem; } }
.jumpnav ul { display: flex; gap: 0.4rem; margin: 0; padding: 0.75rem 0; list-style: none; overflow-x: auto; scrollbar-width: none; }
.jumpnav ul::-webkit-scrollbar { display: none; }
.jumpnav a { display: inline-flex; align-items: center; gap: 0.45rem; padding: 0.5rem 0.95rem; border-radius: 999px; border: 1px solid var(--line); color: var(--ink); font-size: 0.93rem; font-weight: 600; text-decoration: none; white-space: nowrap; transition: border-color .15s, background-color .15s, color .15s; }
.jumpnav a .icon { width: 1rem; height: 1rem; color: var(--brand-600); }
.jumpnav a:hover { border-color: var(--brand-300); background: var(--brand-100); color: var(--brand-700); }

.service-block { display: grid; gap: 2.5rem; padding-block: 5rem; border-bottom: 1px solid var(--line); scroll-margin-top: 9rem; }
.service-block:last-child { border-bottom: 0; }
@media (min-width: 64rem) { .service-block { grid-template-columns: 1.05fr 0.95fr; gap: 4.5rem; align-items: start; padding-block: 6rem; } }
.service-block .icon-tile { width: 3.5rem; height: 3.5rem; border-radius: 16px; margin-bottom: 1.25rem; }
.service-block .icon-tile .icon { width: 1.75rem; height: 1.75rem; }
.service-block .for { display: inline-block; margin: 0.75rem 0 1.25rem; padding: 0.25rem 0.75rem; border-radius: 999px; background: var(--soft); border: 1px solid var(--line); color: var(--muted); font-size: 0.9rem; font-weight: 600; }
.service-block .body p { color: var(--muted); max-width: 60ch; }
.service-block .actions { margin-top: 1.75rem; }

.spec { padding: 1.75rem; border-radius: var(--radius); background: var(--soft); border: 1px solid var(--line); }
.spec h3 { margin-bottom: 1rem; font-size: 1.05rem; color: var(--muted); font-weight: 650; }
.spec ul { display: grid; gap: 0.75rem; margin: 0; padding: 0; list-style: none; }
.spec li { display: flex; gap: 0.9rem; padding: 1rem 1.1rem; border-radius: 14px; background: #fff; border: 1px solid var(--line); }
.spec li .tick { display: grid; place-items: center; flex: none; width: 1.6rem; height: 1.6rem; border-radius: 50%; background: var(--brand-100); color: var(--brand-600); }
.spec li .tick .icon { width: 0.9rem; height: 0.9rem; stroke-width: 3; }
.spec strong { display: block; line-height: 1.35; }
.spec li > div > span { display: block; color: var(--muted); font-size: 0.95rem; line-height: 1.45; }

/* ---------- About page ---------- */

.stat-row { display: grid; gap: 1.25rem; }
@media (min-width: 48rem) { .stat-row { grid-template-columns: repeat(2, 1fr); } }
.cred { display: flex; gap: 1.25rem; padding: 2rem; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.cred .icon-tile { width: 3.5rem; height: 3.5rem; }
.cred h3 { margin-bottom: 0.5rem; font-size: 1.3rem; }
.cred p { color: var(--muted); }

.story { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 64rem) { .story { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.story .lede { margin-top: 1rem; }
.story-visual { position: relative; padding: 2rem; border-radius: 28px; background: linear-gradient(160deg, var(--brand-600), var(--brand-800)); color: #d4e2f1; overflow: hidden; }
.story-visual ul { position: relative; display: grid; gap: 1rem; margin: 0; padding: 0; list-style: none; }
.story-visual li { display: flex; gap: 1rem; align-items: center; padding: 1rem 1.2rem; border-radius: 16px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); color: #fff; font-weight: 600; }
.story-visual .icon-tile { width: 2.6rem; height: 2.6rem; border-radius: 12px; background: rgba(255,255,255,.14); color: #fff; }
.story-visual .icon-tile .icon { width: 1.3rem; height: 1.3rem; }

/* ---------- Booking page ---------- */

.booking-layout { display: grid; gap: 2rem; }
@media (min-width: 64rem) { .booking-layout { grid-template-columns: 20rem minmax(0, 1fr); gap: 3rem; align-items: start; } .booking-aside { position: sticky; top: 7rem; } }
.booking-aside { display: grid; gap: 1rem; }
.aside-card { padding: 1.5rem; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); }
.aside-card h2 { font-size: 1.15rem; font-stretch: 100%; margin: 0.9rem 0 0.4rem; }
.aside-card p { color: var(--muted); font-size: 0.98rem; }
.aside-card.dark { background: linear-gradient(160deg, var(--brand-600), var(--brand-800)); border: 0; color: #cfe0f2; }
.aside-card.dark h2 { color: #fff; }
.aside-card.dark p { color: #cfe0f2; }
.aside-card.dark a { color: #fff; }
.aside-card.dark .icon-tile { background: rgba(255,255,255,.12); color: #fff; }
.fine { margin-top: 1rem; color: var(--muted); font-size: 0.95rem; }

/* ---------- Contact page ---------- */

.contact-layout { display: grid; gap: 2rem; }
@media (min-width: 64rem) { .contact-layout { grid-template-columns: 22rem minmax(0, 1fr); gap: 3rem; align-items: start; } }
.contact-cards { display: grid; gap: 1rem; }
.contact-card { display: flex; gap: 1rem; align-items: flex-start; padding: 1.35rem; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); color: var(--ink); text-decoration: none; transition: border-color .2s, box-shadow .2s, transform .2s; }
a.contact-card:hover { border-color: var(--brand-300); box-shadow: var(--shadow-md); transform: translateY(-2px); color: var(--ink); }
.contact-card small { display: block; color: var(--muted); font-size: 0.88rem; font-weight: 600; }
.contact-card strong { display: block; font-size: 1.1rem; line-height: 1.35; word-break: break-word; }
.contact-card address { font-style: normal; line-height: 1.5; }

.enquiry { scroll-margin-top: 7rem; padding: 1.75rem; border-radius: 24px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-md); }
@media (min-width: 40rem) { .enquiry { padding: 2.5rem; } }
.enquiry h2 { font-size: clamp(1.6rem, 2.6vw, 2.1rem); }
.enquiry-intro { margin: 0.6rem 0 2rem; color: var(--muted); }
.enquiry-form { display: grid; gap: 1.15rem; }
.field-row { display: grid; gap: 1.15rem; }
@media (min-width: 36rem) { .field-row { grid-template-columns: 1fr 1fr; } }
.field label { display: block; margin-bottom: 0.4rem; font-size: 0.95rem; font-weight: 650; }
.field label .req { color: var(--brand-600); }
.field input, .field select, .field textarea {
  display: block; width: 100%; min-height: 3.1rem; padding: 0.7rem 0.95rem;
  border: 1px solid #c9d5e1; border-radius: 12px; background: var(--soft);
  color: var(--ink); font: inherit; font-size: 1rem;
  transition: border-color .15s, background-color .15s, box-shadow .15s;
}
.field select { appearance: none; -webkit-appearance: none; padding-right: 2.75rem; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2356677c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.9rem center; background-size: 1.1rem; }
.field textarea { resize: vertical; min-height: 9rem; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--brand-300); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brand-500); background-color: #fff; box-shadow: 0 0 0 4px rgba(51, 187, 249, 0.3); }
.field input:user-invalid, .field select:user-invalid, .field textarea:user-invalid { border-color: #c62828; }
.field label .optional { color: var(--muted); font-weight: 500; }
.form-divider { height: 1px; margin: 0.6rem 0; background: var(--line); }
.hint { margin: 0.4rem 0 0; color: var(--muted); font-size: 0.9rem; }
.form-footer { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.5rem; margin-top: 0.4rem; }
.form-footer p { margin: 0; color: var(--muted); font-size: 0.9rem; }
.enquiry-form .btn[disabled] { opacity: 0.7; cursor: progress; transform: none; }
.form-status { margin: 0; font-weight: 600; }
.form-status:empty { display: none; }
.form-status.is-success { padding: 1rem 1.1rem; border-radius: 12px; background: #e8f6ee; border: 1px solid #b9e2c9; color: #1c5a37; }
.form-status.is-error { padding: 1rem 1.1rem; border-radius: 12px; background: #fdecec; border: 1px solid #f3c1c1; color: #8a1f1f; }

.map { display: block; width: 100%; height: 26rem; border: 0; border-radius: 24px; background: var(--soft); box-shadow: var(--shadow-sm); }

/* ---------- 404 ---------- */
.notfound { text-align: center; }
.notfound h1, .notfound .lede { margin-inline: auto; }
.notfound .actions { justify-content: center; }

/* ---------- Footer ---------- */

.site-footer { background: var(--brand-900); color: #b5cde3; font-size: 0.95rem; }
.footer-main { display: grid; gap: 2.5rem; padding-block: 4.5rem 3.5rem; }
@media (min-width: 48rem) { .footer-main { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 3rem; } }
.site-footer .brand { color: #fff; margin-bottom: 1rem; }
.site-footer .logo { height: 3.4rem; }
.site-footer h2 { margin-bottom: 1rem; color: #fff; font-size: 1rem; font-stretch: 100%; font-weight: 700; letter-spacing: 0; }
.site-footer ul { display: grid; gap: 0.55rem; margin: 0; padding: 0; list-style: none; }
.site-footer a { color: #d4e2f1; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer address { font-style: normal; line-height: 1.7; }
.footer-contact li { display: flex; gap: 0.6rem; align-items: flex-start; }
.footer-contact .icon { width: 1.05rem; height: 1.05rem; margin-top: 0.25rem; color: var(--brand-400); }
.badges { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.25rem; }
.badges span { padding: 0.3rem 0.75rem; border-radius: 999px; border: 1px solid rgba(255,255,255,.18); color: #d4e2f1; font-size: 0.82rem; font-weight: 600; }
.legal { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.5rem 2rem; padding-block: 1.5rem; border-top: 1px solid rgba(255,255,255,.1); font-size: 0.875rem; }
.legal p { margin: 0; }

/* ---------- Scroll reveal ---------- */

@media (prefers-reduced-motion: no-preference) {
  .js .reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(.2,.7,.2,1); }
  .js .reveal.is-visible { opacity: 1; transform: none; }
  .js .hero-copy > * { animation: rise 0.8s cubic-bezier(.2,.7,.2,1) both; }
  .js .hero-copy > :nth-child(2) { animation-delay: .06s; }
  .js .hero-copy > :nth-child(3) { animation-delay: .12s; }
  .js .hero-copy > :nth-child(4) { animation-delay: .18s; }
  .js .hero-copy > :nth-child(5) { animation-delay: .24s; }
  .js .scene { animation: rise 1s .15s cubic-bezier(.2,.7,.2,1) both; }
  .js .controller { animation: fadein 1s .35s ease both; }
  @keyframes fadein { from { opacity: 0; } to { opacity: 1; } }
  @keyframes rise { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
}


/* =====================================================================
   Phone and tablet refinements
   ===================================================================== */

/* Header controls never get squashed */
.menu-toggle, .header-call, .brand { flex: none; }
.brand { flex: 0 1 auto; min-width: 0; }

/* Comfortable tap targets for small links */
.crumbs { margin-bottom: 0.6rem; }
.crumbs a { display: inline-block; padding-block: 0.6rem; }
.site-footer ul { gap: 0; }
.site-footer ul a { display: inline-block; padding-block: 0.55rem; }
.site-header .brand { padding-block: 0.3rem; }
.footer-contact li { align-items: center; }
.footer-contact li:last-child { align-items: flex-start; }
.footer-contact li:last-child .icon { margin-top: 0.3rem; }
.site-footer address { padding-block: 0.4rem 0; line-height: 1.55; }

/* Slightly larger small labels */
.card .audience-tag { font-size: 0.85rem; }
.setpoint small { font-size: 0.82rem; }

/* Pills that wrap onto two lines still look tidy */
.service-block .for { border-radius: 12px; }

/* Forms come first on the booking page when the layout stacks */
@media (max-width: 63.99rem) {
  .booking-layout > .enquiry { order: -1; }
  .booking-aside { grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); }
}

/* Tablets */
@media (min-width: 48rem) and (max-width: 63.99rem) {
  .contact-cards { grid-template-columns: 1fr 1fr; }
  .process li:not(:last-child)::after { display: none; }
}

/* Phones */
@media (max-width: 47.99rem) {
  body { font-size: 1rem; }
  .lede { font-size: 1.08rem; }

  .section { padding-block: 3.75rem; }
  .section.tight-top { padding-top: 2.5rem; }
  .section-head { margin-bottom: 2rem; }
  .section-head p { font-size: 1.04rem; }

  .hero .wrap { gap: 2.5rem; padding-block: 2.5rem 4.5rem; }
  .hero-points { margin-top: 1.5rem; }
  .page-hero .wrap { padding-block: 2rem 2.75rem; }
  .trust { margin-top: -2.5rem; }
  .trust li { padding: 1rem 1.15rem; }

  .card, .feature, .process li { padding: 1.35rem; }
  .card .audience-tag { top: 1.35rem; right: 1.35rem; }
  .card h3 { margin-top: 1rem; }
  .card .text-link { padding-top: 1rem; }

  .panel { padding: 1.75rem 1.35rem; border-radius: 20px; }
  .panel > p { max-width: none; }
  .panel-deco { width: 8rem; height: 8rem; right: -1.5rem; bottom: -1.5rem; }
  .checks { margin: 1.35rem 0 1.6rem; }

  .booking-banner { padding: 1.5rem 1.35rem; gap: 1.1rem; }
  .booking-banner .icon-tile { width: 3.25rem; height: 3.25rem; }

  .why { gap: 2rem; }

  .jumpnav ul { padding-inline: 0; mask-image: linear-gradient(90deg, #000 82%, transparent); -webkit-mask-image: linear-gradient(90deg, #000 82%, transparent); }
  .jumpnav ul::after { content: ""; flex: 0 0 2rem; }
  .service-block { gap: 1.75rem; padding-block: 3.25rem; scroll-margin-top: 8rem; }
  .service-block .icon-tile { width: 3rem; height: 3rem; margin-bottom: 1rem; }
  .spec { padding: 1rem; }
  .spec h3 { margin: 0.25rem 0 0.75rem 0.25rem; }
  .spec li { gap: 0.7rem; padding: 0.85rem; }

  .story { gap: 2rem; }
  .story-visual { padding: 1.15rem; border-radius: 20px; }
  .story-visual li { padding: 0.8rem 0.9rem; }
  .cred { flex-direction: column; gap: 1rem; padding: 1.35rem; }

  .contact-card { gap: 0.85rem; padding: 1rem; }
  .contact-card .icon-tile { width: 2.6rem; height: 2.6rem; border-radius: 12px; }
  .contact-card .icon-tile .icon { width: 1.3rem; height: 1.3rem; }
  .contact-card strong { font-size: 1.02rem; word-break: normal; overflow-wrap: anywhere; }
  .enquiry { padding: 1.5rem 1.15rem; border-radius: 20px; }
  .enquiry-intro { margin-bottom: 1.5rem; }
  .map { height: 18rem; border-radius: 18px; }

  .cta .wrap { gap: 1.5rem; padding-block: 3.5rem; }

  .footer-main { grid-template-columns: 1fr 1fr; gap: 2rem 1.25rem; padding-block: 3rem 1.5rem; }
  .footer-main > :first-child, .footer-main > :last-child { grid-column: 1 / -1; }
  .legal { flex-direction: column; }
}

/* Small phones: full-width buttons stack neatly and are easy to hit */
@media (max-width: 30rem) {
  .actions { flex-direction: column; align-items: stretch; }
  .actions .btn, .booking-banner > .btn { width: 100%; white-space: normal; text-align: center; }
  .form-footer { flex-direction: column; align-items: stretch; text-align: center; }
  .form-footer .btn { width: 100%; }
  .setpoint small { display: none; }
  .hero-visual { padding-bottom: 8.5rem; }
}

/* Very narrow phones (older iPhone SE, small Androids) */
@media (max-width: 22.5rem) {
  .wrap { padding-inline: 1rem; }
  .logo { height: 2.25rem; }
  .site-header .wrap { gap: 0.5rem; }
  .header-call .icon-bubble, .menu-toggle { width: 2.6rem; height: 2.6rem; }
  h1 { font-size: 2.05rem; }
  .page-hero h1 { font-size: 1.95rem; }
  .footer-main { grid-template-columns: 1fr; }
}
.footer-contact li:not(:last-child) .icon { margin-top: 0; }
.contact-card .directions { display: inline-flex; margin-top: 0.4rem; padding-block: 0.35rem; font-size: 0.95rem; }
.footer-contact li a address { color: #d4e2f1; }
.footer-contact li a address { padding-top: 0; }
.footer-contact li:last-child .icon { margin-top: 0.85rem; }
