/* Bluefin Media: site styles. Mobile first, no frameworks. */

/* ---------------------------------------------------------------------------
   Fonts: self-hosted from Google Fonts (SIL Open Font License 1.1).
   Only the Latin and Greek subsets are included; the browser downloads a
   file only when the page uses characters from its range.
--------------------------------------------------------------------------- */
@font-face {
  font-family: "Sofia Sans Condensed";
  font-style: normal;
  font-weight: 600 800;
  font-display: swap;
  src: url("../fonts/sofia-sans-condensed-greek.woff2") format("woff2");
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
@font-face {
  font-family: "Sofia Sans Condensed";
  font-style: normal;
  font-weight: 600 800;
  font-display: swap;
  src: url("../fonts/sofia-sans-condensed-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Sofia Sans Condensed";
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/sofia-sans-condensed-italic-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Commissioner";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("../fonts/commissioner-greek.woff2") format("woff2");
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
@font-face {
  font-family: "Commissioner";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("../fonts/commissioner-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ---------------------------------------------------------------------------
   Design tokens
--------------------------------------------------------------------------- */
:root {
  --blue: #0072D0;        /* brand blue, taken from assets/brand/bluefin-icon.svg */
  --blue-dark: #0063B3;   /* hover state */
  --navy: #0E2034;        /* brand navy, taken from the "BLUEFIN" lettering in the logo */
  --blue-light: #5AB1F2;  /* accent text on navy only */
  --slate: #4A5B72;       /* secondary text */
  --blue-grey: #C5D3E3;   /* body text on navy */
  --mist: #F4F8FC;        /* alternate section background */
  --foam: #DCE7F2;        /* lines and card borders */
  --white: #FFFFFF;
  --field: #7A8BA3;       /* form field borders (3:1 on white) */
  --error: #B42318;

  --font-display: "Sofia Sans Condensed", "Arial Narrow", "Roboto Condensed", sans-serif;
  --font-body: "Commissioner", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  --container: 72rem;
  --gutter: clamp(1.25rem, 5vw, 2.5rem);
  --space: clamp(4rem, 12vw, 7.5rem);
  --radius: 12px;
  --radius-lg: 20px;
  --header-h: 4rem;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* ---------------------------------------------------------------------------
   Base
--------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  color-scheme: light;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-h) + 1rem);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--navy);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
}

img, svg { display: block; max-width: 100%; }

h1, h2, h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }

a {
  color: var(--blue);
  text-decoration-thickness: 1px;
  text-underline-offset: .2em;
}
a:hover { text-decoration-thickness: 2px; }

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}
.on-dark :focus-visible { outline-color: var(--white); }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -10rem;
  left: 1rem;
  z-index: 100;
  padding: .75rem 1rem;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
}
.skip-link:focus { top: .75rem; }

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

/* ---------------------------------------------------------------------------
   Buttons
--------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 3rem;
  padding: .75rem 1.5rem;
  border: 2px solid transparent;
  border-radius: 999px;
  font: 600 1rem/1.2 var(--font-body);
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .15s, color .15s, border-color .15s, transform .15s var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn .icon { width: 1.25rem; height: 1.25rem; }

.btn-primary { background: var(--blue); color: var(--white); }
.btn-primary:hover { background: var(--blue-dark); }

.btn-light { background: var(--white); color: var(--navy); }
.btn-light:hover { background: var(--foam); }

.btn[disabled] { opacity: .7; cursor: progress; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  min-height: 3rem;
  color: inherit;
  font-weight: 600;
}
.link-arrow .icon { width: 1.15rem; height: 1.15rem; transition: transform .15s var(--ease); }
.link-arrow:hover .icon { transform: translateX(3px); }

/* ---------------------------------------------------------------------------
   Header
--------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, box-shadow .2s;
}
.site-header.is-scrolled {
  border-bottom-color: var(--foam);
  box-shadow: 0 10px 30px -24px rgba(14, 32, 52, .45);
}

/* The header is a little wider than the page so the Greek menu has room */
.site-header .container { max-width: 80rem; }

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: .75rem;
  min-height: var(--header-h);
}

/* Logo placeholder: the fin from assets/brand/bluefin-icon.svg + live text */
.brand {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin-right: auto;
  color: var(--navy);
  text-decoration: none;
}
.brand-fin { width: 1.3rem; height: auto; fill: var(--blue); }
.brand-word { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: .01em;
}
.brand-sub {
  margin-top: .2rem;
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .52em;
  color: var(--blue);
}
.brand--light { color: var(--white); }
.brand--light .brand-sub { color: var(--blue-light); }

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--navy);
  cursor: pointer;
}
.nav-toggle:hover { background: var(--mist); }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

.nav-menu { margin: 0; padding: 0; list-style: none; }

@media (max-width: 74.99em) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: .25rem var(--gutter) 1.25rem;
    background: var(--white);
    border-bottom: 1px solid var(--foam);
    box-shadow: 0 24px 30px -24px rgba(14, 32, 52, .35);
  }
  .nav-menu.is-open { display: block; }
  .nav-menu a {
    display: block;
    padding: .9rem 0;
    border-bottom: 1px solid var(--foam);
    color: var(--navy);
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
  }
  .header-cta { display: none; }
}

/* Full menu only where the Greek labels fit on one line */
@media (min-width: 75em) {
  :root { --header-h: 4.75rem; }
  .header-cta { white-space: nowrap; }
  .nav-toggle { display: none; }
  .nav-menu { display: flex; gap: 1.5rem; margin-right: 1rem; }
  .nav-menu a {
    padding: .5rem 0;
    color: var(--navy);
    font-size: .98rem;
    font-weight: 500;
    white-space: nowrap;
    text-decoration: none;
  }
  .nav-menu a:hover { color: var(--blue); }
  .brand-fin { width: 1.45rem; }
  .brand-name { font-size: 1.7rem; }
}

/* Language switch */
.lang {
  display: inline-flex;
  align-items: center;
  padding: 3px;
  border: 1.5px solid var(--foam);
  border-radius: 999px;
  font: 600 .8125rem/1 var(--font-body);
}
.lang > * {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  min-height: 2.25rem;
  padding: 0 .55rem;
  border-radius: 999px;
}
.lang-current { background: var(--navy); color: var(--white); }
.lang a { color: var(--navy); text-decoration: none; }
.lang a:hover { background: var(--mist); }
.flag {
  width: 18px;
  height: 12px;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(14, 32, 52, .15);
}
.lang-current .flag { box-shadow: 0 0 0 1px rgba(255, 255, 255, .35); }
/* Very narrow phones: flags only; the codes stay available to screen readers */
@media (max-width: 22.49em) {
  .lang-code {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }
  .lang > * { padding: 0 .6rem; }
}
/* One switch per layout, so keyboard order always matches what you see */
@media (max-width: 74.99em) { .lang--desktop { display: none; } }
@media (min-width: 75em) { .lang--mobile { display: none; } }

/* ---------------------------------------------------------------------------
   Hero
--------------------------------------------------------------------------- */
.hero {
  --fin-w: clamp(7.5rem, 30vw, 11rem);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--blue);
  color: var(--white);
}
.hero-inner {
  /* bottom padding keeps the text clear of the fin on small screens */
  padding-block: clamp(3rem, 10vw, 5rem) calc(var(--fin-w) * 1.64 - .5rem);
}
.hero-copy { position: relative; z-index: 1; max-width: 38rem; }

.hero-tagline {
  margin-bottom: 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1rem + 1vw, 1.5rem);
  font-style: italic;
  font-weight: 500;
}
.hero-title {
  font-size: clamp(2.75rem, 1.4rem + 6.8vw, 5.5rem);
  line-height: .96;
}
.hero-title .line { display: block; }
.hero-lead {
  margin-top: 1.25rem;
  max-width: 34rem;
  font-size: clamp(1.0625rem, 1rem + .4vw, 1.25rem);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .75rem 1.5rem;
  margin-top: 2rem;
}
.hero-note { margin-top: 1.5rem; max-width: 34rem; font-size: .9375rem; }

.hero-fin {
  position: absolute;
  z-index: 0;
  right: max(1rem, 6vw);
  bottom: -1.5rem;
  width: var(--fin-w);
  height: auto;
  fill: var(--white);
}

@media (min-width: 60em) {
  .hero {
    --fin-w: clamp(16rem, 26vw, 24rem);
    display: flex;
    align-items: center;
    min-height: min(44rem, calc(100svh - var(--header-h)));
  }
  .hero-inner { padding-block: 5.5rem; }
  .hero-copy { max-width: min(38rem, 58vw); }
}

@media (prefers-reduced-motion: no-preference) {
  /* Added by main.js after load, so arriving at /en/#about jumps straight to the section */
  html.smooth-scroll { scroll-behavior: smooth; }
  .hero-fin { animation: fin-rise 1.1s var(--ease) .1s both; }
  .hero-copy { animation: fade-up .8s var(--ease) both; }
}
@keyframes fin-rise { from { transform: translateY(45%); } to { transform: none; } }
@keyframes fade-up { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

/* ---------------------------------------------------------------------------
   Sections
--------------------------------------------------------------------------- */
.section { padding-block: var(--space); }
.section--mist { background: var(--mist); }

.section-head { max-width: 40rem; margin-bottom: clamp(2rem, 6vw, 3.5rem); }
.section-title { font-size: clamp(2.4rem, 1.6rem + 3.6vw, 3.75rem); }
.section-lead { margin-top: 1rem; color: var(--slate); font-size: 1.125rem; }

/* Gentle reveal while scrolling, only where the browser supports it natively */
@media (prefers-reduced-motion: no-preference) {
  @supports (animation-timeline: view()) {
    .reveal {
      animation: fade-up linear both;
      animation-timeline: view();
      animation-range: entry 0% entry 35%;
    }
  }
}

/* Lists with a small fin as the bullet */
.checklist { display: grid; gap: .65rem; margin: 0; padding: 0; list-style: none; }
.checklist li { position: relative; padding-left: 1.5rem; }
.checklist li::before {
  content: "";
  position: absolute;
  top: .3em;
  left: 0;
  width: .7em;
  height: 1.05em;
  background: var(--blue);
  -webkit-mask: url("../img/fin.svg") no-repeat center / contain;
  mask: url("../img/fin.svg") no-repeat center / contain;
}

/* Services */
.cards { display: grid; gap: 1rem; }
@media (min-width: 52em) {
  .cards { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; }
}
.card {
  padding: 1.75rem 1.5rem 2rem;
  border: 1px solid var(--foam);
  border-radius: var(--radius-lg);
  background: var(--white);
}
.card-icon {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1.25rem;
  border-radius: var(--radius);
  background: var(--mist);
  color: var(--blue);
}
.card h3 { margin-bottom: 1rem; font-size: 1.85rem; }

/* How it works */
.steps { display: grid; gap: 1rem; margin: 0; padding: 0; list-style: none; }
@media (min-width: 48em) { .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 68em) { .steps { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.25rem; } }
.step {
  padding: 1.5rem 1.5rem 1.75rem;
  border: 1px solid var(--foam);
  border-radius: var(--radius-lg);
  background: var(--white);
}
.step-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1;
  color: var(--blue);
}
.step h3 { margin: .9rem 0 .5rem; font-size: 1.6rem; line-height: 1.05; }
.step p { color: var(--slate); }

/* About */
.about-grid { display: grid; gap: 2.5rem; }
@media (min-width: 60em) {
  .about-grid { grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: 4rem; align-items: start; }
}
.about-statement {
  margin-top: 1.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 1.25rem + 2vw, 2.4rem);
  font-weight: 700;
  line-height: 1.1;
}
.about-text { margin-top: 1.25rem; max-width: 36rem; color: var(--slate); font-size: 1.125rem; }
.founder {
  padding: 1.75rem 1.5rem 2rem;
  border-radius: var(--radius-lg);
  background: var(--mist);
}
.founder h3 { margin-bottom: 1.1rem; font-size: 1.6rem; }

/* Pricing */
.quote-panel {
  display: grid;
  gap: 1.75rem;
  padding: clamp(1.75rem, 6vw, 3.25rem);
  border: 1px solid var(--foam);
  border-radius: var(--radius-lg);
  background: var(--white);
}
.quote-panel .section-lead { max-width: 38rem; }
@media (min-width: 52em) {
  .quote-panel { grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 3rem; }
}

/* ---------------------------------------------------------------------------
   Contact
--------------------------------------------------------------------------- */
.contact { background: var(--navy); color: var(--white); }
.contact .section-lead { color: var(--blue-grey); }
.contact-grid { display: grid; gap: 2.5rem; }
@media (min-width: 60em) {
  .contact-grid { grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 4rem; align-items: start; }
}

.quick { display: grid; gap: .75rem; margin-top: 2rem; }
.quick a {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: .9rem 1rem;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .05);
  color: var(--white);
  text-decoration: none;
  transition: background-color .15s, border-color .15s;
}
.quick a:hover { background: rgba(255, 255, 255, .1); border-color: rgba(255, 255, 255, .3); }
.quick-icon {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: var(--blue);
  flex: none;
}
.quick-icon .icon { width: 1.3rem; height: 1.3rem; }
.quick-label { display: block; color: var(--blue-grey); font-size: .875rem; }
.quick-value { display: block; font-size: 1.0625rem; font-weight: 600; word-break: break-word; }

/* Form */
.form {
  padding: clamp(1.5rem, 5vw, 2.25rem);
  border-radius: var(--radius-lg);
  background: var(--white);
  color: var(--navy);
}
.field { display: grid; gap: .4rem; margin: 0 0 1.15rem; }
.field-label { font-size: .9375rem; font-weight: 600; }
.field-optional { color: var(--slate); font-weight: 400; }
.field-hint { color: var(--slate); font-size: .875rem; }
.field-error { color: var(--error); font-size: .875rem; font-weight: 500; }
.field[hidden], .field-error[hidden], .field-hint[hidden], .field-optional[hidden] { display: none; }

.input {
  width: 100%;
  min-height: 3rem;
  padding: .75rem .9rem;
  border: 1.5px solid var(--field);
  border-radius: 10px;
  background: var(--white);
  color: var(--navy);
  font: inherit;
  font-size: 1rem;
}
textarea.input { min-height: 8.5rem; resize: vertical; }
.input::placeholder { color: #5E6E84; opacity: 1; }
.input:hover { border-color: var(--slate); }
.input:focus-visible { outline: 3px solid var(--blue); outline-offset: 1px; border-color: var(--blue); border-radius: 10px; }
.input[aria-invalid="true"] { border-color: var(--error); }

.choices-group { margin: 0 0 1.15rem; padding: 0; border: 0; }
.choices-group legend { padding: 0; margin-bottom: .5rem; }
.choices { display: flex; flex-wrap: wrap; gap: .5rem; }
.choice { position: relative; display: inline-flex; }
.choice input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}
.choice span {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  padding: .5rem 1.1rem;
  border: 1.5px solid var(--field);
  border-radius: 999px;
  font-weight: 500;
}
.choice input:hover + span { border-color: var(--slate); }
.choice input:checked + span { border-color: var(--navy); background: var(--navy); color: var(--white); }
.choice input:focus-visible + span { outline: 3px solid var(--blue); outline-offset: 2px; }

.hp { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

.form-footer { display: grid; gap: 1rem; margin-top: 1.5rem; }
.form-footer .btn { width: 100%; }
.form-privacy { color: var(--slate); font-size: .875rem; }
@media (min-width: 40em) {
  .form-footer { grid-template-columns: auto minmax(0, 1fr); align-items: center; gap: 1.25rem; }
  .form-footer .btn { width: auto; }
}

.on-dark .form :focus-visible { outline-color: var(--blue); }

.form-status { margin-top: 1rem; border-radius: 10px; font-weight: 500; }
.form-status:not(:empty) { padding: .9rem 1rem; }
.form-status[data-state="success"] { background: #E7F6EE; color: #11603A; }
.form-status[data-state="error"] { background: #FDECEC; color: #A61B1B; }
.form-status[data-state="info"] { background: var(--mist); color: var(--navy); }
.form-status .btn { margin-top: .75rem; min-height: 2.75rem; padding: .5rem 1.1rem; font-size: .9375rem; }

/* ---------------------------------------------------------------------------
   Footer
--------------------------------------------------------------------------- */
.site-footer {
  padding-block: 2.75rem calc(2.75rem + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(255, 255, 255, .12);
  background: var(--navy);
  color: var(--blue-grey);
  font-size: .9375rem;
}
.site-footer a { color: var(--white); }
.footer-grid { display: grid; gap: 1.75rem; }
.footer-tagline { margin-top: .75rem; font-family: var(--font-display); font-size: 1.15rem; font-style: italic; font-weight: 500; color: var(--white); }
.footer-links { display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; margin: 0; padding: 0; list-style: none; }
.footer-links a { display: inline-block; padding: .35rem 0; }
.footer-meta { color: var(--blue-grey); font-size: .875rem; }
@media (min-width: 52em) {
  .footer-grid { grid-template-columns: minmax(0, 1fr) auto; align-items: end; }
  .footer-meta { grid-column: 1 / -1; }
}

/* ---------------------------------------------------------------------------
   Sticky "Contact us" bar (phones)
--------------------------------------------------------------------------- */
.sticky-cta {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 40;
  padding: .75rem var(--gutter) calc(.75rem + env(safe-area-inset-bottom));
  border-top: 1px solid var(--foam);
  background: var(--white);
  box-shadow: 0 -12px 30px -22px rgba(14, 32, 52, .5);
  transform: translateY(110%);
  visibility: hidden;
  transition: transform .3s var(--ease), visibility 0s linear .3s;
}
.sticky-cta.is-visible {
  transform: none;
  visibility: visible;
  transition: transform .3s var(--ease);
}
.sticky-cta .btn { width: 100%; }
@media (min-width: 75em) { .sticky-cta { display: none; } }
@media (prefers-reduced-motion: reduce) { .sticky-cta, .sticky-cta.is-visible { transition: none; } }

/* ---------------------------------------------------------------------------
   Simple pages (privacy, 404)
--------------------------------------------------------------------------- */
.page-head { padding-block: clamp(3rem, 9vw, 5rem) clamp(2rem, 6vw, 3rem); background: var(--mist); }
.page-head h1 { font-size: clamp(2.5rem, 1.6rem + 4vw, 4rem); }
.page-head p { margin-top: .75rem; color: var(--slate); }

.prose { max-width: 44rem; padding-block: clamp(2.5rem, 7vw, 4rem) var(--space); }
.prose h2 { margin: 2.5rem 0 .75rem; font-size: 1.9rem; }
.prose h2:first-child { margin-top: 0; }
.prose p + p, .prose p + ul, .prose ul + p { margin-top: .9rem; }
.prose ul { margin-bottom: 0; padding-left: 1.25rem; }
.prose li + li { margin-top: .35rem; }

.not-found { padding-block: var(--space); }
.not-found h1 { font-size: clamp(2.5rem, 1.6rem + 4vw, 4rem); }
.not-found p { margin: 1rem 0 1.75rem; max-width: 34rem; color: var(--slate); }
.not-found section + section { margin-top: 3.5rem; padding-top: 3rem; border-top: 1px solid var(--foam); }
