/* Clay Studio — website
   Type follows the APP (src/constants/typography.ts): one geometric family,
   Poppins, with WEIGHT carrying the hierarchy — 700 headers, 500 sub-heads,
   400 body, 600 button labels. Baloo 2 ExtraBold is the wordmark face and
   nothing else, exactly as `Fonts.logo` is in the app. The Young Serif +
   Newsreader pairing this replaces was retired in the app on 2026-08-13.
   Warmth from clay grain + fired-glaze colour, never gradients. */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Baloo+2:wght@800&display=swap');

:root {
  /* Fired-stoneware palette (from the app's DESIGN.md) */
  --forest: #1A3A2A;
  --forest-deep: #15301F;
  --forest-soft: #DAE2D4;
  --midnight: #1E3145;
  --plum: #7A3551;
  --plum-deep: #6A2C46;
  --plum-soft: #E8D2DA;
  --celadon: #3F6B4F;
  --kiln-umber: #6F4A28;
  --sand: #EAD7C4;

  --bg-page: #E8DCC6;   /* toasted-oat shelf ground */
  --bg-card: #FBF4E6;   /* barely-raised warm card  */
  --bg-input: #F3E7CF;
  --cream: #F3EAD8;
  --ledge: #D8C5A6;

  --ink: #201E16;       /* kiln ink — warm near-black */
  --ink-2: #5A5142;     /* secondary (≥4.5:1 on oat & card) */
  --ink-muted: #7C7058;
  --on-forest: #F3EAD8;
  --on-forest-muted: #A4BCAC;

  --line: rgba(80, 60, 35, 0.16);
  --line-soft: rgba(80, 60, 35, 0.10);

  /* warm kiln-clay shadows, never grey/black */
  --shadow-soft: 0 2px 10px rgba(110, 90, 60, 0.10);
  --shadow-card: 0 14px 34px -16px rgba(94, 74, 48, 0.34);
  --shadow-float: 0 22px 50px -20px rgba(60, 46, 28, 0.42);

  /* One family for everything on the page; the wordmark alone gets the logo
     face. Same rule as the app: one family per surface, always. */
  --font-ui: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-logo: 'Baloo 2', 'Poppins', system-ui, sans-serif;

  /* fluid type — calm ceiling (no shouting), ≥1.25 steps */
  --t-hero: clamp(2.7rem, 1.6rem + 4.6vw, 4.6rem);
  --t-h2:   clamp(1.9rem, 1.3rem + 2.4vw, 2.9rem);
  --t-h3:   clamp(1.3rem, 1.1rem + 0.7vw, 1.6rem);
  --t-lede: clamp(1.12rem, 1rem + 0.5vw, 1.35rem);

  --maxw: 1140px;
  --z-header: 50;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg-page);
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 17px;
  line-height: 1.7;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Clay-grain material tooth over the whole page (subtle, the warmth source). */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.32  0 0 0 0 0.24  0 0 0 0 0.13  0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
body > * { position: relative; z-index: 1; }

h1, h2, h3 { font-family: var(--font-ui); font-weight: 700; line-height: 1.18; letter-spacing: -0.02em; text-wrap: balance; margin: 0; }
p { text-wrap: pretty; }
a { color: var(--plum-deep); }
img { display: block; max-width: 100%; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(20px, 5vw, 48px); }

/* Honest asymmetric "pot" corners — no surface has four equal corners. */
.pot-a { border-radius: 30px 22px 34px 20px; }
.pot-b { border-radius: 22px 32px 20px 30px; }
.pot-c { border-radius: 18px 26px 16px 24px; }

/* The potter's chop-stamp: a number framed with one squared corner. */
.stamp {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-ui); font-weight: 600; font-size: 0.82rem; letter-spacing: 0.02em;
  color: var(--plum-deep);
  padding: 5px 11px;
  border: 1.5px solid var(--plum); border-radius: 11px 11px 11px 2px;
  background: rgba(251, 244, 230, 0.6);
}
.stamp svg { width: 13px; height: 13px; }

/* ── Buttons ─────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-ui); font-weight: 600; font-size: 1.02rem;
  text-decoration: none; cursor: pointer;
  padding: 14px 26px; border-radius: 99px; border: 1px solid transparent;
  transition: transform .35s cubic-bezier(.22,1,.36,1), background-color .25s, box-shadow .35s;
}
.btn-primary { background: var(--plum); color: var(--cream); box-shadow: var(--shadow-soft); }
.btn-primary:hover { background: var(--plum-deep); transform: translateY(-2px); box-shadow: var(--shadow-card); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { background: rgba(251,244,230,0.7); transform: translateY(-2px); }
.btn svg { width: 18px; height: 18px; }

/* ── Header ──────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: var(--z-header);
  background: rgba(232, 220, 198, 0.82);
  backdrop-filter: saturate(1.15) blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background-color .3s;
}
.site-header.scrolled { border-bottom-color: var(--line-soft); }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; color: var(--ink); }
.brand svg { width: 30px; height: 30px; color: var(--forest); }
.brand b { font-family: var(--font-logo); font-weight: 800; font-size: 1.3rem; letter-spacing: -0.005em; }
.nav { display: flex; align-items: center; gap: clamp(16px, 3vw, 30px); }
.nav a { color: var(--ink-2); text-decoration: none; font-size: 1rem; }
.nav a:hover { color: var(--plum-deep); }
.nav .btn { padding: 9px 18px; font-size: 0.95rem; }
@media (max-width: 600px) { .nav a.navlink { display: none; } }

/* ── Hero ────────────────────────────────────────── */
.hero { padding: clamp(40px, 7vw, 90px) 0 clamp(48px, 7vw, 96px); }
.hero-grid { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.hero h1 { font-size: var(--t-hero); }
.hero h1 .soft { color: var(--ink-2); }
.hero .lede { font-size: var(--t-lede); color: var(--ink-2); max-width: 30ch; margin: 22px 0 30px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.hero-note { margin-top: 20px; font-size: 0.95rem; color: var(--ink-muted); }

/* Hero photograph — the work is the hero. Layered, asymmetric, warm-shadowed. */
.hero-art { position: relative; }
.hero-photo {
  width: 100%; aspect-ratio: 4 / 4.4; object-fit: cover;
  border-radius: 34px 26px 40px 24px;
  box-shadow: var(--shadow-card);
}
.hero-art .stamp { position: absolute; left: -14px; bottom: 30px; background: var(--bg-card); box-shadow: var(--shadow-soft); }
.hero-art .seal {
  position: absolute; top: -16px; right: 22px;
  width: 78px; height: 78px; border-radius: 50%;
  background: var(--forest); color: var(--cream);
  display: grid; place-items: center; box-shadow: var(--shadow-float);
  transform: rotate(-6deg);
}
.hero-art .seal svg { width: 42px; height: 42px; }

/* ── Section scaffolding ─────────────────────────── */
.section { padding: clamp(48px, 8vw, 104px) 0; }
.section-head { max-width: 34ch; margin-bottom: clamp(28px, 4vw, 52px); }
.section-head h2 { font-size: var(--t-h2); }
.section-head p { font-size: var(--t-lede); color: var(--ink-2); margin: 14px 0 0; }
.kicker { font-family: var(--font-ui); font-weight: 600; color: var(--plum-deep); font-size: 0.95rem; letter-spacing: 0.04em; text-transform: uppercase; margin: 0 0 10px; }

/* ── Lifecycle spine — an EARNED ordered sequence (forming → finish). ── */
.lifecycle { display: grid; grid-template-columns: 0.82fr 1.05fr; gap: clamp(28px, 5vw, 76px); align-items: start; }
.lifecycle .section-head { margin-bottom: 0; position: sticky; top: 104px; }
.spine { list-style: none; margin: 0; padding: 0; display: grid; gap: 2px; }
.spine em { font-style: normal; font-weight: 600; color: var(--plum-deep); }
.spine li.pending .dot { background: transparent; border-color: var(--ledge); box-shadow: none; }
.spine li { display: grid; grid-template-columns: auto 1fr; gap: 22px; align-items: start; padding: 18px 0; }
.spine .node { position: relative; display: grid; place-items: center; width: 46px; }
.spine .dot {
  width: 18px; height: 18px; border-radius: 50%;
  border: 2.5px solid var(--celadon); background: var(--celadon);
  box-shadow: 0 0 0 5px rgba(63,107,79,0.12);
}
.spine li:last-child .rail { display: none; }
.spine .rail { position: absolute; top: 24px; bottom: -20px; width: 2.5px; background: linear-gradient(var(--celadon), rgba(63,107,79,0.35)); border-radius: 2px; }
.spine li.current .dot { background: transparent; border-color: var(--plum); box-shadow: 0 0 0 5px rgba(122,53,81,0.14); }
.spine li.current .rail { background: var(--ledge); }
.spine .stage-n { font-family: var(--font-ui); font-weight: 600; font-size: 0.78rem; color: var(--ink-muted); margin-bottom: 3px; letter-spacing: 0.04em; }
.spine h3 { font-size: var(--t-h3); }
.spine p { margin: 4px 0 0; color: var(--ink-2); font-size: 1.02rem; max-width: 52ch; }

/* ── Showcase — the one bold forest moment, with the app device. ── */
.showcase { background: var(--forest); color: var(--on-forest); border-radius: 40px 30px 44px 28px; overflow: hidden; box-shadow: var(--shadow-card); }
.showcase-grid { display: grid; grid-template-columns: 1fr 0.86fr; gap: clamp(24px, 4vw, 56px); align-items: center; padding: clamp(32px, 5vw, 64px); }
.showcase h2 { font-size: var(--t-h2); color: var(--cream); }
.showcase .lede { color: var(--on-forest-muted); font-size: var(--t-lede); margin: 16px 0 26px; max-width: 36ch; }
.showcase ul { list-style: none; margin: 0 0 30px; padding: 0; display: grid; gap: 16px; }
.showcase li { display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: start; }
.showcase li svg { width: 22px; height: 22px; margin-top: 3px; color: var(--on-forest-muted); flex-shrink: 0; }
.showcase li b { font-family: var(--font-ui); font-weight: 600; color: var(--cream); display: block; }
.showcase li span { color: var(--on-forest-muted); font-size: 1rem; }

/* Phone device (CSS-built, gear-free) */
.device-stage { display: grid; place-items: center; }
.device {
  width: min(300px, 78vw);
  background: #0F2418; border-radius: 46px; padding: 12px;
  box-shadow: var(--shadow-float), inset 0 0 0 1px rgba(255,255,255,0.06);
}
.device-screen {
  position: relative; border-radius: 36px; overflow: hidden;
  background: var(--bg-page); aspect-ratio: 320 / 660; padding: 16px 14px 0;
  font-family: var(--font-ui);
}
.scr-status { display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: var(--ink); padding: 4px 6px 12px; font-weight: 600; }
.scr-status .dots { display: flex; gap: 4px; }
.scr-status .dots i { width: 5px; height: 5px; border-radius: 50%; background: var(--ink); display: block; }
.scr-title { font-family: var(--font-ui); font-weight: 700; font-size: 26px; color: var(--ink); line-height: 1; }
.scr-sub { font-size: 12px; color: var(--ink-2); margin: 4px 0 12px; }
.scr-card {
  background: var(--bg-card); border: 1px solid var(--line-soft);
  border-radius: 22px 16px 24px 16px; padding: 12px; box-shadow: var(--shadow-soft);
  position: relative; overflow: hidden;
}
.scr-card .scr-stamp { font-family: var(--font-ui); font-weight: 600; font-size: 11px; color: var(--plum-deep); border: 1.4px solid var(--plum); border-radius: 8px 8px 8px 2px; padding: 2px 7px; display: inline-block; }
.scr-vessel { display: grid; place-items: center; height: 132px; margin: 6px 0 4px; }
.scr-vessel svg { height: 116px; }
.scr-card .scr-name { font-family: var(--font-ui); font-weight: 700; font-size: 22px; color: var(--ink); }
.scr-card .scr-stage { font-size: 12px; color: var(--ink-2); }
.scr-dock {
  position: absolute; left: 14px; right: 14px; bottom: 14px; height: 50px;
  background: var(--forest); border-radius: 26px 30px 24px 28px;
  display: flex; align-items: center; padding: 0 8px; gap: 4px;
  box-shadow: var(--shadow-float);
}
.scr-dock .tab { flex: 1; display: grid; place-items: center; }
.scr-dock .tab svg { width: 20px; height: 20px; }
.scr-dock .pill { position: absolute; left: 8px; top: 7px; width: 64px; height: 36px; border-radius: 18px; background: rgba(243,234,216,0.13); }
.scr-dock .fab { width: 50px; height: 50px; border-radius: 26px 24px 26px 22px; background: var(--plum); display: grid; place-items: center; margin-left: 6px; flex-shrink: 0; box-shadow: var(--shadow-float); }

/* ── Wide photo band ─────────────────────────────── */
.band { position: relative; min-height: clamp(360px, 52vw, 540px); display: grid; align-items: end; border-radius: 40px 30px 44px 28px; overflow: hidden; box-shadow: var(--shadow-card); }
.band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.band .scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(18,30,22,0.30) 0%, rgba(18,30,22,0.05) 38%, rgba(18,30,22,0.78) 100%), linear-gradient(90deg, rgba(18,30,22,0.55) 0%, rgba(18,30,22,0) 52%); }
.band .band-copy { position: relative; padding: clamp(28px, 5vw, 56px); max-width: 40ch; }
.band h2 { color: var(--cream); font-size: var(--t-h2); }
.band p { color: rgba(243,234,216,0.86); font-size: var(--t-lede); margin: 12px 0 0; }

/* ── Closing CTA ─────────────────────────────────── */
.closing { text-align: center; padding: clamp(56px, 9vw, 120px) 0; }
.closing h2 { font-size: var(--t-h2); max-width: 18ch; margin: 0 auto; }
.closing p { color: var(--ink-2); font-size: var(--t-lede); margin: 16px auto 30px; max-width: 40ch; }
.closing .hero-cta { justify-content: center; }

/* ── Footer ──────────────────────────────────────── */
.site-footer { border-top: 1px solid var(--line); margin-top: 8px; }
.site-footer .wrap { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; padding-top: 30px; padding-bottom: 40px; }
.site-footer .brand b { font-size: 1.1rem; }
.site-footer .links { display: flex; flex-wrap: wrap; gap: 8px 22px; }
.site-footer a { color: var(--ink-2); text-decoration: none; font-size: 0.96rem; }
.site-footer a:hover { color: var(--plum-deep); }
.site-footer .copy { color: var(--ink-muted); font-size: 0.9rem; width: 100%; }

/* ── Legal / prose pages ─────────────────────────── */
.page { max-width: 720px; padding-top: clamp(40px, 6vw, 64px); padding-bottom: clamp(56px, 8vw, 96px); }
.page-back { display: inline-flex; align-items: center; gap: 7px; color: var(--ink-2); text-decoration: none; font-size: 0.96rem; margin-bottom: 26px; }
.page-back:hover { color: var(--plum-deep); }
.page-back svg { width: 16px; height: 16px; }
.page h1 { font-size: clamp(2.2rem, 1.6rem + 2.4vw, 3.1rem); }
.page .updated { color: var(--ink-muted); font-size: 0.98rem; margin: 10px 0 30px; }
.page h2 { font-family: var(--font-ui); font-size: clamp(1.4rem, 1.2rem + 0.7vw, 1.7rem); margin: 42px 0 12px; }
.page h3 { font-family: var(--font-ui); font-weight: 600; font-size: 1.2rem; margin: 26px 0 8px; }
.page p, .page li { font-size: 1.06rem; color: var(--ink); }
.page ul { padding-left: 20px; }
.page li { margin-bottom: 9px; }
.page li::marker { color: var(--plum); }

.callout { background: var(--plum-soft); border: 1px solid var(--line); border-radius: 18px 14px 20px 12px; padding: 18px 22px; margin: 26px 0; }
.callout strong { color: var(--plum-deep); }
.placeholder { background: #F6E2BE; border-radius: 5px; padding: 1px 7px; font-size: 0.92em; color: #6E5320; box-decoration-break: clone; }

.steps { counter-reset: step; list-style: none; padding-left: 0; }
.steps li { position: relative; padding-left: 46px; margin-bottom: 16px; }
.steps li::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 0; top: -1px;
  width: 30px; height: 30px; border-radius: 50% 50% 50% 4px;
  background: var(--forest); color: var(--cream);
  display: grid; place-items: center; font-family: var(--font-ui); font-weight: 600; font-size: 0.95rem;
}

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-art { max-width: 460px; }
  .showcase-grid { grid-template-columns: 1fr; }
  .device-stage { order: -1; }
}

/* ── Motion — content is ALWAYS visible (no reveal gates it). Only the hero
   gets a gentle time-based load entrance; below-fold sections stay static,
   which is calm-by-intent and bulletproof in headless/crawler renders. ── */
.hero h1, .hero .lede, .hero-cta, .hero-note { animation: rise .9s cubic-bezier(.16,1,.3,1) both; }
.hero .lede { animation-delay: .08s; }
.hero-cta { animation-delay: .16s; }
.hero-note { animation-delay: .24s; }
.hero-art { animation: rise 1s cubic-bezier(.16,1,.3,1) .1s both; }
@keyframes rise { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { animation: none !important; opacity: 1 !important; transform: none !important; }
  .hero h1, .hero .lede, .hero-cta, .hero-note, .hero-art { animation: none !important; }
  .btn:hover { transform: none !important; }
}

/* ── Contact ─────────────────────────────────────────
   Structure follows the reference the user picked (coordon.com/en/contact):
   centred eyebrow + two-tone headline + lede over a hairline, then a wide
   form beside a narrow "other ways to reach us" card.

   Accent here is FOREST, not plum. Forest is the one colour the site and the
   app still agree on byte-for-byte (#1A3A2A); plum was retired from the app
   two design systems ago and only survives on the older pages. ── */
.contact-hero { text-align: center; padding-top: clamp(38px, 6vw, 76px); padding-bottom: clamp(30px, 4vw, 52px); }
.contact-hero .eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 600; font-size: 0.95rem; color: var(--forest);
  letter-spacing: 0.01em; margin: 0 0 18px;
}
.contact-hero .eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--forest); }
.contact-hero h1 { font-size: clamp(2.3rem, 1.5rem + 3.2vw, 3.6rem); }
.contact-hero h1 .accent { color: var(--forest); }
.contact-hero .lede { font-size: var(--t-lede); color: var(--ink-2); max-width: 46ch; margin: 20px auto 0; }
.contact-rule { border: 0; border-top: 1px solid var(--line-soft); margin: 0; }

.contact-grid {
  display: grid; grid-template-columns: 1.4fr 0.85fr;
  gap: clamp(28px, 4vw, 62px); align-items: start;
  padding-top: clamp(36px, 5vw, 68px); padding-bottom: clamp(56px, 8vw, 96px);
}
.contact-grid h2 { font-size: clamp(1.6rem, 1.3rem + 1.1vw, 2.1rem); }
.contact-grid .form-lede { color: var(--ink-2); margin: 12px 0 32px; max-width: 52ch; }

/* ── Form ── */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 20px; }
.field { display: grid; gap: 8px; }
.field.wide { grid-column: 1 / -1; }
.field label { font-weight: 600; font-size: 0.96rem; color: var(--ink); }
.field .req { color: var(--kiln-umber); }
.field input, .field select, .field textarea {
  font-family: var(--font-ui); font-size: 1rem; font-weight: 400;
  color: var(--ink); background: var(--bg-card);
  border: 1px solid var(--line); border-radius: 14px;
  padding: 13px 15px; width: 100%;
  transition: border-color .2s, box-shadow .2s, background-color .2s;
}
.field textarea { min-height: 168px; resize: vertical; line-height: 1.6; }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-muted); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(26, 58, 42, 0.14);
  background: #FFFDF7;
}
/* Native select chrome is grey on every platform and reads as a foreign part
   on a warm page — so the arrow is drawn here, in ink. */
.field select {
  appearance: none; -webkit-appearance: none; cursor: pointer;
  padding-right: 42px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235A5142' 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 15px center; background-size: 17px;
}
.field select:invalid { color: var(--ink-muted); }

.btn-forest { background: var(--forest); color: var(--cream); box-shadow: var(--shadow-soft); padding: 13px 15px 13px 26px; }
.btn-forest:hover { background: var(--forest-deep); transform: translateY(-2px); box-shadow: var(--shadow-card); }
.btn-forest .plane {
  display: grid; place-items: center; width: 34px; height: 34px;
  border-radius: 50%; background: var(--cream); color: var(--forest);
}
.btn-forest .plane svg { width: 16px; height: 16px; }
.form-actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 30px; }
.form-actions .fineprint { color: var(--ink-muted); font-size: 0.92rem; margin: 0; max-width: 34ch; }

/* Submit result. Hidden until the send resolves — never a live region that
   announces itself on load. */
.form-note { display: none; border-radius: 16px; padding: 16px 20px; margin-top: 26px; font-size: 1rem; }
.form-note.show { display: block; }
.form-note.ok { background: var(--forest-soft); border: 1px solid var(--line); color: var(--forest-deep); }
.form-note.bad { background: var(--plum-soft); border: 1px solid var(--line); color: var(--plum-deep); }
.form-note b { display: block; margin-bottom: 3px; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ── "Other ways to reach us" card ── */
.contact-aside {
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: 22px; padding: clamp(24px, 3vw, 32px);
  box-shadow: var(--shadow-soft); position: sticky; top: 96px;
}
.contact-aside h2 { font-size: 1.24rem; margin-bottom: 22px; }
.contact-aside h3 { font-size: 1.02rem; font-weight: 600; letter-spacing: 0; margin: 0 0 10px; }
.aside-row { display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: start; }
.aside-row .ico { width: 24px; height: 24px; color: var(--forest); margin-top: 2px; }
.aside-row .ico svg { width: 100%; height: 100%; }
.contact-aside p { color: var(--ink-2); font-size: 0.98rem; margin: 0; }
.contact-aside a { color: var(--forest); text-decoration: none; }
.contact-aside a:hover { text-decoration: underline; }
.aside-sep { border: 0; border-top: 1px solid var(--line-soft); margin: 24px 0; }
.aside-links { display: grid; gap: 9px; }
.aside-links a { font-size: 0.99rem; }
.aside-more { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; margin-top: 12px; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-aside { position: static; }
}
@media (max-width: 620px) {
  .form-grid { grid-template-columns: 1fr; }
}
