/* ==========================================================================
   Oranien Clean — Stylesheet
   Fonts: Montserrat (self-hosted, variable) — GDPR-safe, no external calls
   ========================================================================== */

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat-variable.woff2") format("woff2-variations"),
       url("../fonts/montserrat-variable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat-italic-variable.woff2") format("woff2-variations"),
       url("../fonts/montserrat-italic-variable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

/* -------------------------------------------------------------------------
   Tokens
   ---------------------------------------------------------------------- */
:root {
  --ink: #0f2f52;
  --ink-900: #0a2038;
  --ink-700: #1c4569;
  --ink-500: #4a6580;
  --ink-300: #8fa3b8;
  --aqua: #65a8b3;
  --aqua-600: #4f8f9a;
  --aqua-300: #a7cdd3;
  --aqua-100: #e3f1f2;
  --paper: #ffffff;
  --paper-dim: #f8fafc;
  --paper-line: #e4e9ee;
  --ok: #3f8f5f;
  --err: #c0473a;

  --font: "Montserrat", "Segoe UI", sans-serif;

  --container: 1240px;
  --gutter: clamp(1.5rem, 4vw, 3.5rem);

  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 28px;

  --ease-spring: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --shadow-1: 0 1px 2px rgba(15, 47, 82, 0.06), 0 1px 1px rgba(15, 47, 82, 0.04);
  --shadow-2: 0 8px 24px -8px rgba(15, 47, 82, 0.18), 0 2px 6px rgba(15, 47, 82, 0.06);
  --shadow-3: 0 24px 60px -20px rgba(15, 47, 82, 0.28), 0 8px 16px -6px rgba(15, 47, 82, 0.1);
}

/* -------------------------------------------------------------------------
   Reset
   ---------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, picture, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }
ul { list-style: none; padding: 0; }
h1, h2, h3, h4 { font-weight: 800; letter-spacing: -0.03em; line-height: 1.08; color: var(--ink-900); }
:focus-visible { outline: 2.5px solid var(--aqua-600); outline-offset: 3px; border-radius: 4px; }

/* -------------------------------------------------------------------------
   Layout helpers
   ---------------------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section {
  position: relative;
  padding-top: clamp(4.5rem, 8vw, 7rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}
.hero + .section { padding-top: clamp(2rem, 4vw, 3.5rem); }
.section--tight { padding-top: clamp(3rem, 6vw, 5rem); padding-bottom: clamp(2rem, 4vw, 3rem); }
.section--dim { background: var(--paper-dim); }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 1rem; top: -60px; background: var(--ink);
  color: #fff; padding: 0.9rem 1.4rem; border-radius: var(--radius-sm);
  z-index: 200; transition: top 0.25s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

/* Section kicker — the editorial "01 — Label" motif that gives hierarchy
   without ever leaving the single Montserrat family. */
.kicker {
  display: flex; align-items: center; gap: 0.9rem;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--aqua-600);
  margin-bottom: 1.1rem;
}
.kicker::before {
  content: ""; width: 28px; height: 2px; background: var(--aqua-600); flex: none;
}
.kicker__num { color: var(--ink-300); font-weight: 800; }

.eyebrow-title { font-size: clamp(2rem, 4vw, 3rem); max-width: 22ch; }
.eyebrow-lede { font-size: 1.05rem; color: var(--ink-500); max-width: 56ch; margin-top: 1.1rem; }

/* -------------------------------------------------------------------------
   Buttons
   ---------------------------------------------------------------------- */
.btn {
  --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  padding: 0.95rem 1.9rem; border-radius: 999px;
  font-weight: 700; font-size: 0.95rem; letter-spacing: 0.01em;
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s var(--ease-spring), background-color 0.25s var(--ease-out);
  white-space: nowrap;
}
.btn:active { transform: scale(0.96); }
.btn-primary {
  background: var(--ink-900); color: var(--btn-fg);
  box-shadow: var(--shadow-2);
}
.btn-primary:hover { background: var(--ink); transform: translateY(-2px); box-shadow: var(--shadow-3); }
.btn-aqua {
  background: var(--aqua); color: var(--ink-900);
  box-shadow: 0 8px 24px -8px rgba(101, 168, 179, 0.55);
}
.btn-aqua:hover { background: var(--aqua-600); transform: translateY(-2px); }
.site-header .btn-aqua {
  background: var(--ink-900); color: #fff; box-shadow: var(--shadow-2);
}
.site-header .btn-aqua:hover { background: var(--ink); }
.nav-drawer__foot .btn-aqua {
  background: #fff; color: var(--ink-900); box-shadow: var(--shadow-2);
}
.nav-drawer__foot .btn-aqua:hover { background: var(--aqua-100); }
.btn-ghost {
  background: transparent; color: var(--ink); border: 1.5px solid var(--paper-line);
}
.btn-ghost:hover { border-color: var(--ink); background: var(--paper-dim); }
.btn-ghost.on-dark { color: #fff; border-color: rgba(255,255,255,0.28); }
.btn-ghost.on-dark:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.5); }
.btn svg { width: 18px; height: 18px; transition: transform 0.35s var(--ease-spring); }
.btn:hover svg.arrow { transform: translateX(3px); }

/* -------------------------------------------------------------------------
   Header
   ---------------------------------------------------------------------- */
.site-header {
  position: fixed; inset-inline: 0; top: 0; z-index: 100;
  padding-block: 1.15rem;
  transition: padding 0.35s var(--ease-out), background-color 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}
.site-header::before {
  content: ""; position: absolute; inset: 0;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: border-color 0.35s var(--ease-out), background-color .35s;
  z-index: -1;
}
.site-header.is-scrolled { padding-block: 0.7rem; }
.site-header.is-scrolled::before { border-color: var(--paper-line); box-shadow: 0 8px 24px -16px rgba(15,47,82,0.25); }

.nav { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: flex; align-items: center; gap: 0.7rem; flex: none; }
.brand__mark { width: 40px; height: 40px; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__text strong { font-weight: 800; font-size: 1.05rem; letter-spacing: -0.01em; color: var(--ink-900); }
.brand__text span { font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--aqua-600); font-weight: 700; }

.nav__links { display: flex; align-items: center; gap: 2.3rem; }
.nav__links a {
  font-size: 0.92rem; font-weight: 600; color: var(--ink-700);
  position: relative; padding-block: 0.3rem;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px;
  background: var(--aqua-600); transition: right 0.3s var(--ease-spring);
}
.nav__links a:hover::after, .nav__links a:focus-visible::after { right: 0; }
.nav__links a:hover { color: var(--ink-900); }

.nav__actions { display: flex; align-items: center; gap: 1rem; }
.nav__phone { display: flex; align-items: center; gap: 0.5rem; font-weight: 700; font-size: 0.9rem; color: var(--ink-700); }
.nav__phone svg { width: 17px; height: 17px; color: var(--aqua-600); }

.nav__toggle {
  display: none; width: 44px; height: 44px; border-radius: 50%;
  align-items: center; justify-content: center; background: var(--paper-dim);
}
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after {
  content: ""; display: block; width: 18px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform 0.3s var(--ease-spring), opacity 0.2s;
  position: relative;
}
.nav__toggle span::before { position: absolute; top: -6px; }
.nav__toggle span::after { position: absolute; top: 6px; }
.nav__toggle[aria-expanded="true"] span { background: transparent; }
.nav__toggle[aria-expanded="true"] span::before { transform: rotate(45deg) translate(4px, 4px); }
.nav__toggle[aria-expanded="true"] span::after { transform: rotate(-45deg) translate(4px, -4px); }

@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__phone { display: none; }
  .nav__toggle { display: flex; }
  .nav__actions .btn-aqua { display: none; }

  .nav-drawer {
    position: fixed; inset: 0; top: 0; z-index: 99;
    background: var(--ink-900);
    transform: translateY(-100%);
    transition: transform 0.5s var(--ease-spring);
    display: flex; flex-direction: column; justify-content: center;
    padding: 6rem var(--gutter) 3rem;
  }
  .nav-drawer.is-open { transform: translateY(0); }
  .nav-drawer__links { display: flex; flex-direction: column; gap: 0.4rem; }
  .nav-drawer__links a {
    font-size: 2rem; font-weight: 800; color: #fff; padding-block: 0.6rem;
    letter-spacing: -0.02em; opacity: 0.92;
  }
  .nav-drawer__foot { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1rem; align-items: flex-start; }
  .nav-drawer__foot a { color: var(--aqua-300); font-weight: 700; }
}
@media (min-width: 901px) { .nav-drawer { display: none; } }

/* -------------------------------------------------------------------------
   Hero
   ---------------------------------------------------------------------- */
.hero {
  position: relative;
  padding-top: clamp(7.5rem, 14vw, 10.5rem);
  padding-bottom: clamp(4rem, 8vw, 6rem);
  background: var(--paper);
  overflow: clip;
}
.hero::before {
  content: ""; position: absolute; top: -20%; right: -12%; width: 620px; height: 620px;
  background: radial-gradient(circle, var(--aqua-100) 0%, rgba(227,241,242,0) 70%);
  z-index: -1;
}
.hero__grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--aqua-100); color: var(--ink-700);
  padding: 0.5rem 1rem 0.5rem 0.6rem; border-radius: 999px;
  font-size: 0.8rem; font-weight: 700; margin-bottom: 1.6rem;
}
.hero__eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--aqua-600); animation: pulse 2.4s ease-in-out infinite; flex: none; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.55; transform: scale(0.8); } }

.hero h1 {
  font-size: clamp(2.5rem, 5.2vw, 4rem);
  max-width: 15ch;
}
.hero h1 .line {
  display: block;
  opacity: 0; transform: translateY(16px);
  animation: lineIn 0.8s var(--ease-out) both;
}
.hero h1 .line--ink { color: var(--ink-900); animation-delay: 0.05s; }
.hero h1 .line--aqua { color: var(--aqua-600); animation-delay: 0.22s; }
@keyframes lineIn { to { opacity: 1; transform: translateY(0); } }

.hero__lede { font-size: 1.12rem; color: var(--ink-500); max-width: 52ch; margin-top: 1.5rem; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.4rem; }

/* Visual: duotone facade illustration + squeegee-wipe reveal */
.hero__visual {
  position: relative; aspect-ratio: 5 / 4; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-3);
  transform: rotate(0.6deg);
}
.hero__visual .facade-photo {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 45%;
}
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { order: -1; aspect-ratio: 5/4; transform: none; }
}

/* -------------------------------------------------------------------------
   Logo strip
   ---------------------------------------------------------------------- */
.logostrip { padding-block: 2.4rem; border-block: 1px solid var(--paper-line); }
.logostrip__row { display: flex; align-items: center; gap: clamp(1.5rem, 5vw, 3.5rem); flex-wrap: wrap; justify-content: space-between; }
.logostrip__label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-300); flex: none; }
.logostrip__marks { display: flex; gap: clamp(1.5rem, 4vw, 3rem); flex-wrap: wrap; opacity: 0.75; align-items: center; }
.logostrip__marks span { font-weight: 800; font-size: 1.1rem; color: var(--ink-300); letter-spacing: -0.01em; }

/* -------------------------------------------------------------------------
   Services
   ---------------------------------------------------------------------- */
.services__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 1.4rem; flex-wrap: wrap; }
.services__head .eyebrow-lede { margin-top: 0; }
.services__grid {
  margin-top: 3.2rem; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem;
}
@media (max-width: 640px) { .services__grid { grid-template-columns: 1fr; } }

.service-card {
  position: relative; border-radius: var(--radius-md);
  background: var(--paper); border: 1px solid var(--paper-line);
  transition: transform 0.45s var(--ease-spring), box-shadow 0.45s var(--ease-spring), border-color 0.45s;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.service-card__media { position: relative; flex: none; aspect-ratio: 5/4; overflow: hidden; }
.service-card__media figure, .service-card__media picture { width: 100%; height: 100%; }
.service-card__media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.7s var(--ease-spring);
}

.service-card__body { position: relative; flex: 1; padding: 1.6rem 1.8rem 1.9rem; overflow: hidden; }
.service-card__body::before {
  content: ""; position: absolute; inset: 0; opacity: 0;
  background: linear-gradient(160deg, var(--ink) 0%, var(--ink-700) 100%);
  transition: opacity 0.45s var(--ease-out); z-index: 0;
}
.service-card__body > * { position: relative; z-index: 1; }
.service-card__ico {
  width: 52px; height: 52px; border-radius: 14px; background: var(--aqua-100);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.4rem;
  transition: background-color 0.45s;
}
.service-card__ico svg { width: 26px; height: 26px; color: var(--ink); transition: color 0.45s; }
.service-card h3 { font-size: 1.15rem; margin-bottom: 0.6rem; transition: color 0.45s; }
.service-card p { font-size: 0.92rem; color: var(--ink-500); transition: color 0.45s; }
.service-card__num {
  position: absolute; top: 1.5rem; right: 1.7rem; font-size: 0.78rem; font-weight: 800;
  color: var(--ink-300); transition: color 0.45s;
}

/* Hover-only enhancements — gated to devices with real hover (mouse/trackpad) so
   the dark-fill state can't get stuck "on" after a tap on touchscreens, which have
   no way to fire a matching mouseleave/unhover event. */
@media (hover: hover) and (pointer: fine) {
  .service-card:hover {
    transform: translateY(-6px) rotate(-0.35deg);
    box-shadow: var(--shadow-3); border-color: transparent;
  }
  .service-card:nth-child(even):hover { transform: translateY(-6px) rotate(0.35deg); }
  .service-card:hover .service-card__media img { transform: scale(1.07); }
  .service-card:hover .service-card__body::before { opacity: 1; }
  .service-card:hover .service-card__ico { background: rgba(255,255,255,0.14); }
  .service-card:hover .service-card__ico svg { color: var(--aqua-300); }
  .service-card:hover h3 { color: #fff; }
  .service-card:hover p { color: var(--aqua-100); }
  .service-card:hover .service-card__num { color: rgba(255,255,255,0.4); }
}

/* Duotone treatment: unifies photos sourced from different shoots into one
   consistent brand-tinted look (ink -> aqua), rather than raw mixed stock photography. */
.photo-duo img { filter: grayscale(1) contrast(1.05); }
.photo-duo::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(160deg, var(--ink) 0%, var(--aqua-600) 100%);
  mix-blend-mode: color; opacity: 0.65;
}

/* -------------------------------------------------------------------------
   About / Why us
   ---------------------------------------------------------------------- */
.about__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: start; }
@media (max-width: 900px) { .about__grid { grid-template-columns: 1fr; } }

.about__visual { position: relative; }
.about__frame {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 5/6; box-shadow: var(--shadow-3);
}
.about__frame figure, .about__frame picture { width: 100%; height: 100%; }
.about__frame img { width: 100%; height: 100%; object-fit: cover; display: block; }

.why-list { display: grid; gap: 1.6rem; margin-top: 2.6rem; }
.why-item { display: flex; gap: 1.1rem; padding-block: 1.3rem; border-top: 1px solid var(--paper-line); }
.why-item:first-child { border-top: none; padding-top: 0; }
.why-item__ico {
  width: 46px; height: 46px; border-radius: 12px; background: var(--ink); flex: none;
  display: flex; align-items: center; justify-content: center;
}
.why-item__ico svg { width: 22px; height: 22px; color: var(--aqua-300); }
.why-item h3 { font-size: 1.05rem; margin-bottom: 0.35rem; }
.why-item p { font-size: 0.92rem; color: var(--ink-500); }

/* -------------------------------------------------------------------------
   FAQ
   ---------------------------------------------------------------------- */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem 3rem; margin-top: 2.8rem; }
@media (max-width: 760px) { .faq-grid { grid-template-columns: 1fr; } }
.faq-item h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.faq-item p { font-size: 0.92rem; color: var(--ink-500); }

/* -------------------------------------------------------------------------
   Process strip
   ---------------------------------------------------------------------- */
.process { background: var(--ink-900); color: #fff; position: relative; overflow: clip; }
.process::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle at 15% 20%, rgba(101,168,179,0.18), transparent 45%),
              radial-gradient(circle at 85% 80%, rgba(101,168,179,0.12), transparent 45%);
}
.process .kicker { color: var(--aqua-300); }
.process .kicker::before { background: var(--aqua-300); }
.process h2 { color: #fff; }
.process .eyebrow-lede { color: rgba(255,255,255,0.68); max-width: 62ch; }
.process__grid { position: relative; margin-top: 3rem; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; list-style: none; padding: 0; }
@media (max-width: 900px) { .process__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .process__grid { grid-template-columns: 1fr; } }
.process-step { padding: 1.8rem 1.5rem; border-radius: var(--radius-md); background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); }
.process-step__num { font-size: 2.1rem; font-weight: 800; color: var(--aqua-300); letter-spacing: -0.03em; }
.process-step h3 { color: #fff; font-size: 1.02rem; margin-top: 0.7rem; margin-bottom: 0.4rem; }
.process-step p { font-size: 0.88rem; color: rgba(255,255,255,0.62); }

/* -------------------------------------------------------------------------
   Owner quote
   ---------------------------------------------------------------------- */
/* -------------------------------------------------------------------------
   Owner quote
   ---------------------------------------------------------------------- */
.quote-section {
  padding-top: clamp(3.5rem, 6vw, 5.5rem);
  padding-bottom: clamp(3.5rem, 6vw, 5.5rem);
}
.quote-section__quote {
  position: relative; max-width: 760px; margin: 0 auto; overflow: hidden;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-3); background: var(--ink);
  padding: clamp(3rem, 7vw, 4.8rem) clamp(2rem, 6vw, 4rem); text-align: center;
  transform: rotate(-0.3deg);
}
.quote-section__quote::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(115deg, transparent 55%, rgba(101, 168, 179, 0.22) 100%);
}
.quote-section__mark {
  position: absolute; top: 1.2rem; left: clamp(1.4rem, 5vw, 2rem);
  font-size: clamp(3.2rem, 10vw, 6rem); font-weight: 800;
  line-height: 1; color: rgba(167, 205, 211, 0.22); z-index: 0;
}
.quote-section__quote p {
  position: relative; z-index: 1; font-size: clamp(1.3rem, 2.7vw, 1.85rem); font-weight: 700;
  color: #fff; letter-spacing: -0.02em; line-height: 1.5; text-wrap: balance;
}
.quote-section__quote footer {
  position: relative; z-index: 1; margin-top: 1.8rem;
  display: flex; align-items: center; justify-content: center; gap: 0.9rem;
  font-size: 0.86rem; color: var(--aqua-300); font-weight: 700;
}
.quote-section__quote footer::before { content: ""; width: 28px; height: 2px; background: var(--aqua-300); flex: none; }

/* -------------------------------------------------------------------------
   Contact
   ---------------------------------------------------------------------- */
.contact__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2.5rem, 5vw, 4.5rem); }
@media (max-width: 940px) { .contact__grid { grid-template-columns: 1fr; } }

.contact__info-item { display: flex; gap: 1rem; padding-block: 1.3rem; border-top: 1px solid var(--paper-line); }
.contact__info-item:first-of-type { border-top: none; }
.contact__info-item .ico {
  width: 44px; height: 44px; border-radius: 50%; background: var(--paper-dim); flex: none;
  display: flex; align-items: center; justify-content: center; border: 1px solid var(--paper-line);
}
.contact__info-item .ico svg { width: 20px; height: 20px; color: var(--ink); }
.contact__info-item h3 { font-size: 0.98rem; margin-bottom: 0.2rem; }
.contact__info-item p, .contact__info-item a { font-size: 0.92rem; color: var(--ink-500); }
.contact__info-item a:hover { color: var(--ink); }

.contact__hours { margin-top: 1.8rem; padding: 1.4rem 1.6rem; background: var(--ink-900); border-radius: var(--radius-md); color: #fff; }
.contact__hours h3 { color: #fff; font-size: 0.95rem; margin-bottom: 0.8rem; }
.contact__hours dl { display: grid; grid-template-columns: 1fr auto; gap: 0.5rem 1rem; font-size: 0.86rem; }
.contact__hours dt { color: rgba(255,255,255,0.6); }
.contact__hours dd { font-weight: 700; }

.form-card {
  background: var(--paper-dim); border: 1px solid var(--paper-line); border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 4vw, 2.8rem);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.field { margin-bottom: 1.2rem; position: relative; }
.field label {
  display: block; font-size: 0.82rem; font-weight: 700; color: var(--ink-700);
  margin-bottom: 0.45rem;
}
.field label .req { color: var(--aqua-600); }
.field input, .field textarea, .field select {
  width: 100%; padding: 0.85rem 1rem; border-radius: var(--radius-sm);
  border: 1.5px solid var(--paper-line); background: #fff;
  font-size: 0.95rem; color: var(--ink-900);
  transition: border-color 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:hover, .field textarea:hover, .field select:hover { border-color: var(--ink-300); }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--aqua-600); box-shadow: 0 0 0 4px var(--aqua-100);
}
.field.has-error input, .field.has-error textarea { border-color: var(--err); }
.field .err-msg { display: none; font-size: 0.78rem; color: var(--err); margin-top: 0.4rem; font-weight: 600; }
.field.has-error .err-msg { display: block; }
.field input:invalid[data-touched="true"], .field textarea:invalid[data-touched="true"] { border-color: var(--err); }

.consent { display: flex; gap: 0.8rem; align-items: flex-start; margin: 1.4rem 0 1.6rem; }
.consent input[type="checkbox"] {
  width: 20px; height: 20px; flex: none; margin-top: 0.15rem; accent-color: var(--ink);
  border-radius: 4px;
}
.consent label { font-size: 0.84rem; color: var(--ink-500); line-height: 1.55; }
.consent a { color: var(--ink); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }

.form-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-status {
  display: none; align-items: center; gap: 0.7rem; padding: 0.9rem 1.1rem;
  border-radius: var(--radius-sm); font-size: 0.88rem; font-weight: 600; margin-bottom: 1.2rem;
}
.form-status.is-visible { display: flex; }
.form-status.ok { background: rgba(63,143,95,0.12); color: var(--ok); }
.form-status.err { background: rgba(192,71,58,0.12); color: var(--err); }

/* -------------------------------------------------------------------------
   CTA band
   ---------------------------------------------------------------------- */
.cta-band {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  padding: clamp(2.5rem, 6vw, 4.5rem); background: var(--ink);
  display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(115deg, transparent 55%, rgba(101,168,179,0.22) 100%);
}
.cta-band h2 { color: #fff; max-width: 18ch; position: relative; }
.cta-band p { color: rgba(255,255,255,0.65); margin-top: 0.8rem; max-width: 40ch; position: relative; }
.cta-band__actions { position: relative; display: flex; gap: 1rem; flex-wrap: wrap; }

/* -------------------------------------------------------------------------
   Footer
   ---------------------------------------------------------------------- */
.site-footer { background: var(--ink-900); color: rgba(255,255,255,0.7); }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; padding-block: clamp(3rem, 6vw, 4.5rem); }
@media (max-width: 860px) { .footer__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer__top { grid-template-columns: 1fr; } }
.footer__brand { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 1.1rem; }
.footer__brand strong { color: #fff; font-size: 1.05rem; font-weight: 800; }
.site-footer p.footer__desc { font-size: 0.88rem; max-width: 32ch; }
.footer__social { display: flex; gap: 0.7rem; margin-top: 1.4rem; }
.footer__social a {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.16);
  display: flex; align-items: center; justify-content: center; transition: background-color 0.3s, border-color 0.3s, transform 0.3s var(--ease-spring);
}
.footer__social a:hover { background: var(--aqua-600); border-color: var(--aqua-600); transform: translateY(-3px); }
.footer__social svg { width: 16px; height: 16px; }
.site-footer h3 { color: #fff; font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1.2rem; font-weight: 700; }
.site-footer ul { display: flex; flex-direction: column; gap: 0.75rem; list-style: none; padding: 0; margin: 0; }
.site-footer ul a { font-size: 0.9rem; transition: color 0.25s; }
.site-footer ul a:hover { color: #fff; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding-block: 1.6rem;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap;
  font-size: 0.82rem;
}
.footer__legal { display: flex; gap: 1.5rem; }

/* -------------------------------------------------------------------------
   Cookie / GDPR banner
   ---------------------------------------------------------------------- */
.cookie-banner {
  position: fixed; left: 1.2rem; right: 1.2rem; bottom: 1.2rem; z-index: 300;
  max-width: 560px; margin-inline: auto;
  background: var(--paper); border: 1px solid var(--paper-line); border-radius: var(--radius-md);
  box-shadow: var(--shadow-3); padding: 1.5rem 1.6rem;
  transform: translateY(140%); transition: transform 0.6s var(--ease-spring);
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner p { font-size: 0.86rem; color: var(--ink-500); margin-bottom: 1.1rem; }
.cookie-banner p a { color: var(--ink); font-weight: 700; text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.cookie-banner .btn { padding: 0.75rem 1.3rem; font-size: 0.86rem; }

/* -------------------------------------------------------------------------
   Reveal-on-scroll
   ---------------------------------------------------------------------- */
/* Hidden-until-revealed only applies once JS confirms it can reveal them
   (html.js, set by an inline script in <head>) — without JS, content is
   visible by default so a script failure never hides the page. */
html.js [data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out); will-change: opacity, transform; }
html.js [data-reveal].is-visible { opacity: 1; transform: translateY(0); }
html.js [data-reveal-group] > * { opacity: 0; transform: translateY(18px); transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out); will-change: opacity, transform; }
html.js [data-reveal-group].is-visible > * { opacity: 1; transform: translateY(0); }
[data-reveal-group].is-visible > *:nth-child(1) { transition-delay: 0.02s; }
[data-reveal-group].is-visible > *:nth-child(2) { transition-delay: 0.08s; }
[data-reveal-group].is-visible > *:nth-child(3) { transition-delay: 0.14s; }
[data-reveal-group].is-visible > *:nth-child(4) { transition-delay: 0.2s; }
[data-reveal-group].is-visible > *:nth-child(5) { transition-delay: 0.26s; }
[data-reveal-group].is-visible > *:nth-child(6) { transition-delay: 0.32s; }

/* -------------------------------------------------------------------------
   Legal pages
   ---------------------------------------------------------------------- */
.legal-page { padding-top: clamp(8rem, 14vw, 11rem); padding-bottom: 6rem; }
.legal-page h1 { font-size: clamp(2rem, 4vw, 2.6rem); margin-bottom: 2.2rem; max-width: 720px; }
.legal-page h2 { font-size: 1.3rem; margin-top: 2.4rem; margin-bottom: 0.9rem; max-width: 720px; }
.legal-page p, .legal-page li { color: var(--ink-500); font-size: 0.98rem; margin-bottom: 0.9rem; max-width: 720px; }
.legal-page li { margin-left: 1.4rem; list-style: disc; }
.legal-page a { color: var(--ink); font-weight: 700; text-decoration: underline; }
.legal-page strong { color: var(--ink-900); }
.legal-back { display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 700; font-size: 0.9rem; margin-bottom: 2.5rem; color: var(--ink-500); }
.legal-back svg { width: 16px; height: 16px; }

/* -------------------------------------------------------------------------
   404 page
   ---------------------------------------------------------------------- */
.error-page {
  min-height: 80vh; display: flex; align-items: center;
  padding-top: clamp(7rem, 13vw, 9rem); padding-bottom: 5rem;
}
.error-page__grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
@media (max-width: 900px) { .error-page__grid { grid-template-columns: 1fr; } }
.error-page .kicker { margin-bottom: 1.1rem; }
.error-page h1 { margin-bottom: 0.9rem; max-width: 14ch; }
.error-page .eyebrow-lede { margin-bottom: 2.2rem; max-width: 42ch; }
.error-page__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.error-page__visual { transform: rotate(-1.2deg); }
.error-page__visual svg { width: 100%; height: auto; }
@media (max-width: 900px) { .error-page__visual { max-width: 320px; margin: 0 auto; order: -1; } }

/* -------------------------------------------------------------------------
   Scrollspy dot nav
   ---------------------------------------------------------------------- */
.scrollspy {
  position: fixed; right: 2.2rem; top: 50%; transform: translateY(-50%); z-index: 60;
  display: flex; flex-direction: column; align-items: center; gap: 1.4rem;
}
.scrollspy::before {
  content: ""; position: absolute; left: 50%; top: 0; bottom: 0; width: 1px;
  background: var(--paper-line); transform: translateX(-50%); z-index: -1;
}
.scrollspy a {
  width: 10px; height: 10px; border-radius: 50%; background: var(--paper);
  border: 1.5px solid var(--ink-300); flex: none;
  transition: transform 0.3s var(--ease-spring), border-color 0.3s, background-color 0.3s;
}
.scrollspy a:hover { border-color: var(--aqua-600); transform: scale(1.25); }
.scrollspy a.is-active { background: var(--aqua-600); border-color: var(--aqua-600); transform: scale(1.5); }
@media (max-width: 1300px) { .scrollspy { display: none; } }

/* -------------------------------------------------------------------------
   Back to top
   ---------------------------------------------------------------------- */
.back-to-top {
  position: fixed; right: 1.6rem; bottom: 5.6rem; z-index: 90;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--ink); color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-2);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out), background-color 0.3s, visibility 0.3s;
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--aqua-600); }
.back-to-top svg { width: 20px; height: 20px; }

/* -------------------------------------------------------------------------
   Chat widget — lightweight FAQ assistant, no external calls
   ---------------------------------------------------------------------- */
.chat-widget { position: fixed; right: 1.6rem; bottom: 1.6rem; z-index: 250; }

.chat-widget__launcher {
  position: relative; width: 60px; height: 60px; border-radius: 50%;
  background: var(--ink); color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-3);
  transition: transform 0.35s var(--ease-spring), background-color 0.3s var(--ease-out);
}
.chat-widget__launcher:hover { transform: translateY(-2px) scale(1.04); background: var(--aqua-600); }
.chat-widget__launcher svg { width: 26px; height: 26px; position: absolute; transition: opacity 0.25s var(--ease-out), transform 0.3s var(--ease-spring); }
.chat-widget__launcher .ico-close { opacity: 0; transform: rotate(-45deg) scale(0.6); }
.chat-widget__launcher .ico-open { opacity: 1; transform: rotate(0) scale(1); }
.chat-widget.is-open .chat-widget__launcher .ico-open { opacity: 0; transform: rotate(45deg) scale(0.6); }
.chat-widget.is-open .chat-widget__launcher .ico-close { opacity: 1; transform: rotate(0) scale(1); }

.chat-widget__badge {
  position: absolute; top: -3px; right: -3px; width: 20px; height: 20px; border-radius: 50%;
  background: var(--aqua-600); color: #fff; font-size: 0.7rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; border: 2px solid var(--paper);
  transition: opacity 0.2s, transform 0.2s;
}
.chat-widget.is-open .chat-widget__badge, .chat-widget.is-dismissed .chat-widget__badge { opacity: 0; transform: scale(0.5); }

.chat-widget__panel {
  position: absolute; right: 0; bottom: calc(100% + 1rem);
  width: min(380px, calc(100vw - 2.4rem)); max-height: min(560px, calc(100vh - 8rem));
  background: var(--paper); border-radius: var(--radius-lg); box-shadow: var(--shadow-3);
  border: 1px solid var(--paper-line); overflow: hidden;
  display: flex; flex-direction: column;
  transform-origin: bottom right;
  opacity: 0; transform: translateY(14px) scale(0.96); pointer-events: none;
  transition: opacity 0.3s var(--ease-spring), transform 0.35s var(--ease-spring);
}
.chat-widget.is-open .chat-widget__panel { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }

.chat-widget__head {
  display: flex; align-items: center; gap: 0.8rem; padding: 1.1rem 1.2rem;
  background: var(--ink); color: #fff; flex: none;
}
.chat-widget__avatar {
  width: 38px; height: 38px; border-radius: 50%; flex: none;
  background: var(--paper); display: flex; align-items: center; justify-content: center;
  padding: 6px;
}
.chat-widget__avatar img { width: 100%; height: 100%; object-fit: contain; }
.chat-widget__head-text { display: flex; flex-direction: column; gap: 0.15rem; margin-right: auto; min-width: 0; }
.chat-widget__head-text strong { font-size: 0.94rem; }
.chat-widget__head-text span { font-size: 0.76rem; color: var(--aqua-300); display: flex; align-items: center; gap: 0.4rem; }
.chat-widget__head-text span::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #6bd08a; flex: none; }
.chat-widget__close { flex: none; width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; color: #fff; opacity: 0.8; transition: opacity 0.2s; }
.chat-widget__close:hover { opacity: 1; }
.chat-widget__close svg { width: 16px; height: 16px; }

.chat-widget__body {
  flex: 1 1 auto; overflow-y: auto; padding: 1.2rem; display: flex; flex-direction: column; gap: 0.7rem;
  background: var(--paper-dim);
  scroll-behavior: smooth;
}

.chat-bubble {
  max-width: 84%; padding: 0.75rem 1rem; border-radius: var(--radius-md); font-size: 0.9rem; line-height: 1.55;
  animation: chatIn 0.3s var(--ease-spring) both;
}
.chat-bubble--bot { align-self: flex-start; background: var(--paper); border: 1px solid var(--paper-line); border-bottom-left-radius: 4px; color: var(--ink-900); }
.chat-bubble--user { align-self: flex-end; background: var(--ink); color: #fff; border-bottom-right-radius: 4px; }
@keyframes chatIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.chat-typing { align-self: flex-start; display: flex; gap: 0.3rem; padding: 0.85rem 1rem; background: var(--paper); border: 1px solid var(--paper-line); border-radius: var(--radius-md); border-bottom-left-radius: 4px; }
.chat-typing span { width: 6px; height: 6px; border-radius: 50%; background: var(--ink-300); animation: chatTyping 1.1s ease-in-out infinite; }
.chat-typing span:nth-child(2) { animation-delay: 0.15s; }
.chat-typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes chatTyping { 0%, 60%, 100% { opacity: 0.35; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-3px); } }

.chat-widget__quick { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.2rem; }
.chat-chip {
  font-size: 0.82rem; font-weight: 600; padding: 0.55rem 0.9rem; border-radius: 999px;
  background: var(--paper); border: 1.5px solid var(--paper-line); color: var(--ink-700);
  transition: border-color 0.25s var(--ease-out), background-color 0.25s var(--ease-out), transform 0.25s var(--ease-spring);
}
.chat-chip:hover { border-color: var(--aqua-600); background: var(--aqua-100); transform: translateY(-1px); }
.chat-chip--cta { background: var(--aqua-600); border-color: var(--aqua-600); color: #fff; }
.chat-chip--cta:hover { background: var(--ink); border-color: var(--ink); }

.chat-widget__input { display: flex; align-items: center; gap: 0.6rem; padding: 0.9rem; border-top: 1px solid var(--paper-line); background: var(--paper); flex: none; }
.chat-widget__input input {
  flex: 1; padding: 0.7rem 0.9rem; border-radius: var(--radius-sm); border: 1.5px solid var(--paper-line);
  font-size: 0.88rem; background: var(--paper-dim); transition: border-color 0.25s var(--ease-out);
}
.chat-widget__input input:focus { outline: none; border-color: var(--aqua-600); }
.chat-widget__input button { flex: none; width: 38px; height: 38px; border-radius: 50%; background: var(--ink); color: #fff; display: flex; align-items: center; justify-content: center; transition: background-color 0.25s, transform 0.25s var(--ease-spring); }
.chat-widget__input button:hover { background: var(--aqua-600); transform: scale(1.05); }
.chat-widget__input button svg { width: 17px; height: 17px; }

@media (max-width: 480px) {
  .chat-widget { right: 1rem; bottom: 1rem; }
  .back-to-top { right: 1rem; bottom: 5rem; }
  .chat-widget__panel { right: -0.4rem; bottom: calc(100% + 0.8rem); }
}

/* -------------------------------------------------------------------------
   SEO note (collapsible overview, sits before the closing CTA band)
   ---------------------------------------------------------------------- */
.seo-note__details summary {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--aqua-600); cursor: pointer; list-style: none; user-select: none;
  display: flex; align-items: center; gap: 0.7rem;
}
.seo-note__details summary::-webkit-details-marker { display: none; }
.seo-note__details summary::before {
  content: ""; width: 7px; height: 7px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: rotate(-45deg); transition: transform 0.25s var(--ease-out); flex: none;
}
.seo-note__details[open] summary::before { transform: rotate(45deg); }
.seo-note__details p { max-width: 72ch; font-size: 0.92rem; line-height: 1.7; color: var(--ink-500); margin-top: 1.1rem; }
