/* Organic — design-system tokens and component classes. This file is the source of truth for the system's look; retune it here and see readme.md. */

:root {
  --color-bg: #eef0f1;
  --color-surface: #e1e5e7;
  --color-text: #1e2124;
  --color-accent: #5d7a8c;
  --color-accent-2: #6a8a7d;
  --color-divider: color-mix(in srgb, #201e1d 16%, transparent);

  /* Tonal ramps — generated in OKLCH on one shared lightness scale, so the
     same step of any role matches the others in visual value. */
  --color-neutral-100: #f5f6f7;
  --color-neutral-200: #e7e9ea;
  --color-neutral-300: #d3d6d8;
  --color-neutral-400: #b5babc;
  --color-neutral-500: #969b9e;
  --color-neutral-600: #777d80;
  --color-neutral-700: #5a5f62;
  --color-neutral-800: #404446;
  --color-neutral-900: #292c2e;

  --color-accent-100: #eef5fa;
  --color-accent-200: #d9e7f0;
  --color-accent-300: #b9cfdd;
  --color-accent-400: #92b0c2;
  --color-accent-500: #7093a6;
  --color-accent-600: #547689;
  --color-accent-700: #3e596a;
  --color-accent-800: #2c404d;
  --color-accent-900: #1d2a33;

  --color-accent-2-100: #ebf7f0;
  --color-accent-2-200: #d6ebdf;
  --color-accent-2-300: #b8d6c6;
  --color-accent-2-400: #96baa7;
  --color-accent-2-500: #779c8a;
  --color-accent-2-600: #5b7f6e;
  --color-accent-2-700: #436253;
  --color-accent-2-800: #2f463b;
  --color-accent-2-900: #1f2e27;

  --font-heading: "Caprasimo", system-ui, sans-serif;
  --font-heading-weight: 400;
  --font-body: "Figtree", system-ui, sans-serif;

  --space-1: 4.4px;
  --space-2: 8.8px;
  --space-3: 13.2px;
  --space-4: 17.6px;
  --space-6: 26.4px;
  --space-8: 35.2px;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;

  /* Elevation — derived from the ground: soft ink-tinted shadows on a
     light theme, a hairline edge + ambient darkness on a dark one. */
  --shadow-sm: 0 1px 2px color-mix(in srgb, #292c2e 14%, transparent);
  --shadow-md: 0 3px 10px color-mix(in srgb, #292c2e 16%, transparent);
  --shadow-lg: 0 12px 32px color-mix(in srgb, #292c2e 22%, transparent);
}

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
}
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: var(--font-heading-weight); }

.washed{filter:saturate(0.6) contrast(0.85) brightness(1.1) opacity(0.94)}

/* ══════════════════════════════════════════════════════════════════════════
   Components — built with the tokens above. Plain CSS
   on plain HTML: no JavaScript, no build step. Each class is documented in
   readme.md and demonstrated in foundations/ and components/.
   ══════════════════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; }
body { margin: 0; font-size: 15px; line-height: 1.55; font-weight: 400; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading); font-weight: var(--font-heading-weight);
  line-height: 1.12; letter-spacing: -0.015em; margin: 0 0 var(--space-2);
}
h1 { font-size: 42px; }
h2 { font-size: 32px; }
h3 { font-size: 25px; }
h4 { font-size: 20px; }
h5 { font-size: 16px; }
h6 { font-size: 13px; }
h6 { letter-spacing: 0.08em; text-transform: uppercase; }
p { margin: 0 0 var(--space-3); }
a { color: var(--color-accent); text-underline-offset: 3px; }
img { display: block; max-width: 100%; }
figure { margin: 0; }
figcaption {
  font-size: 11px; margin-top: var(--space-1);
  color: color-mix(in srgb, var(--color-text) 55%, transparent);
}
.text-muted { color: color-mix(in srgb, var(--color-text) 55%, transparent); }
:focus { outline: none; }
:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 2px; }
::selection { background: color-mix(in srgb, var(--color-accent) 30%, transparent); }

/* — rules — */
.hr {
  height: 1px; border: 0; margin: var(--space-4) 0;
  background: var(--color-divider);
}

/* — buttons — */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  cursor: pointer; text-decoration: none;
  font-family: var(--font-heading); font-weight: var(--font-heading-weight);
  font-size: 14px; line-height: 1.2; color: var(--color-text); /* matches the .input's 14px —
     the pair sits side by side in sign-up rows */
  background: transparent; border: 1px solid transparent;
  padding: var(--space-2) calc(var(--space-3) * 1.2);
  border-radius: var(--radius-md);
}
.btn svg { display: block; }
.btn:disabled { opacity: 0.45; cursor: not-allowed; }
.btn-primary { background: var(--color-accent); color: var(--color-bg); }
.btn-primary:hover { background: var(--color-accent-600); }
.btn-primary:active { background: var(--color-accent-700); }
.btn-secondary { border-color: var(--color-divider); }
.btn-secondary:hover { background: color-mix(in srgb, var(--color-text) 7%, transparent); }
.btn-secondary:active { background: color-mix(in srgb, var(--color-text) 14%, transparent); }
.btn-ghost { color: var(--color-accent); padding-inline: var(--space-1); }
.btn-ghost:hover { background: color-mix(in srgb, var(--color-accent) 10%, transparent); }
.btn-ghost:active { background: color-mix(in srgb, var(--color-accent) 18%, transparent); }
.btn-icon { width: 36px; height: 36px; padding: 0; }
.btn-block { width: 100%; margin-top: var(--space-2); }

/* — forms — */
.field > label {
  display: block; font-size: 12px; margin-bottom: 5px;
  color: color-mix(in srgb, var(--color-text) 70%, transparent);
}
.input {
  width: 100%; min-height: 36px; padding: 6px 10px; font: inherit;
  font-size: 14px; color: var(--color-text); caret-color: var(--color-accent);
  background: var(--color-surface);
  border: 1px solid var(--color-divider); border-radius: var(--radius-md);
}
.input:hover { border-color: color-mix(in srgb, var(--color-text) 45%, transparent); }
.input:focus-visible { border-color: var(--color-accent); outline-offset: 0; }
textarea.input { min-height: 90px; resize: vertical; }
.radio { display: inline-flex; align-items: center; gap: 8px; cursor: pointer; font-size: 14px; }
.radio input, .seg-opt input {
  position: absolute; opacity: 0; width: 0; height: 0; pointer-events: none;
}
.radio .dot {
  width: 16px; height: 16px; flex: none; border-radius: 50%;
  border: 1.5px solid var(--color-divider);
}
.radio:hover .dot { border-color: var(--color-accent); }
.radio input:checked + .dot {
  border-color: var(--color-accent); background: var(--color-accent);
  box-shadow: inset 0 0 0 4px var(--color-bg);
}
.radio input:focus-visible + .dot { outline: 2px solid var(--color-accent); outline-offset: 2px; }
.seg {
  display: inline-flex; overflow: hidden;
  border: 1px solid var(--color-divider); border-radius: var(--radius-md);
}
.seg-opt {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 12px; font-size: 13px; cursor: pointer;
}
.seg-opt + .seg-opt { border-left: 1px solid var(--color-divider); }
.seg-opt:has(input:checked) { background: var(--color-accent); color: var(--color-bg); }
.seg-opt:not(:has(input:checked)):hover { background: color-mix(in srgb, var(--color-text) 7%, transparent); }
.seg-opt:has(input:focus-visible) { outline: 2px solid var(--color-accent); outline-offset: -2px; }

/* — cards — */
.card {
  display: flex; flex-direction: column; gap: var(--space-2);
  padding: var(--space-3); border-radius: var(--radius-md); background: var(--color-surface);
}
.card-kicker { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-accent); }
.card-title {
  font-family: var(--font-heading); font-weight: var(--font-heading-weight);
  font-size: 17px; line-height: 1.2;
}
.card-body { margin: 0; font-size: 13px; opacity: 0.8; flex: 1; }
.card-meta {
  display: flex; align-items: center; gap: 6px; font-size: 11px;
  color: color-mix(in srgb, var(--color-text) 50%, transparent);
}
.elev-sm { box-shadow: var(--shadow-sm); }
.elev-md { box-shadow: var(--shadow-md); }
.elev-lg { box-shadow: var(--shadow-lg); }

/* — tags — */
.tag {
  display: inline-flex; align-items: center; font-size: 11px;
  letter-spacing: 0.02em; padding: 3px 10px;
  border-radius: calc(var(--radius-md) * 0.75);
}
.tag-accent { background: var(--color-accent-100); color: var(--color-accent-800); }
.tag-accent-2 { background: var(--color-accent-2-100); color: var(--color-accent-2-800); }
.tag-neutral { background: var(--color-neutral-100); color: var(--color-neutral-800); }
.tag-outline { border: 1px solid var(--color-accent); color: var(--color-accent); }

/* — navigation — */
.nav {
  display: flex; align-items: center; gap: var(--space-4);
  padding: var(--space-3) var(--space-4);
  border-bottom: none;
}
.nav-brand {
  font-family: var(--font-heading); font-weight: var(--font-heading-weight);
  font-size: 18px; margin-right: auto;
}
.nav a { color: inherit; text-decoration: none; font-size: 14px; }
.nav a:hover, .nav a[aria-current='page'] { color: var(--color-accent); }

/* — tables — */
.table { width: 100%; border-collapse: collapse; font-size: 14px; }
.table th {
  text-align: left; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: color-mix(in srgb, var(--color-text) 60%, transparent);
  padding: var(--space-2); border-bottom: 1px solid var(--color-divider);
}
.table td {
  padding: var(--space-2);
  border-bottom: 1px solid color-mix(in srgb, var(--color-text) 8%, transparent);
}
.table tbody tr:hover { background: color-mix(in srgb, var(--color-text) 4%, transparent); }

/* — dialog — */
.dialog-backdrop {
  position: fixed; inset: 0; display: grid; place-items: center;
  padding: var(--space-4);
  background: color-mix(in srgb, var(--color-neutral-900) 50%, transparent);
}
.dialog {
  width: min(440px, 100%); display: flex; flex-direction: column; gap: var(--space-3);
  padding: var(--space-4); border-radius: var(--radius-lg);
  background: var(--color-surface); box-shadow: var(--shadow-lg);
}
.dialog-title {
  font-family: var(--font-heading); font-weight: var(--font-heading-weight);
  font-size: 20px;
}
.dialog-body { font-size: 14px; opacity: 0.85; }
.dialog-actions { display: flex; justify-content: flex-end; gap: var(--space-2); margin-top: var(--space-2); }

/* — rounded frame: everything softens, small controls go pill — */
.card, .dialog { border-radius: calc(var(--radius-lg) * 1.15); }
.btn, .tag, .seg, .input { border-radius: 999px; }
.input { padding-inline: 14px; }


/* ══ OXA Home — Olive theme overrides (definitive tokens from the handoff) ══ */
:root {
  --color-bg: #f3f1e4; --color-surface: #e9e6d2; --color-text: #22211a;
  --color-accent: oklch(0.52 0.09 120); --color-accent-2: oklch(0.66 0.11 75);
  --color-card: #fffef7;
  --color-divider: color-mix(in srgb, #22211a 15%, transparent);
  --shadow-sm: 0 1px 2px color-mix(in srgb, #2e2c1e 15%, transparent);
  --shadow-md: 0 3px 10px color-mix(in srgb, #2e2c1e 17%, transparent);
  --shadow-lg: 0 12px 32px color-mix(in srgb, #2e2c1e 23%, transparent);
  --color-neutral-100: oklch(0.97 0.003 100); --color-neutral-200: oklch(0.92 0.006 100); --color-neutral-300: oklch(0.85 0.009 100); --color-neutral-400: oklch(0.75 0.014 100); --color-neutral-500: oklch(0.64 0.017 100); --color-neutral-600: oklch(0.53 0.015 100); --color-neutral-700: oklch(0.42 0.012 100); --color-neutral-800: oklch(0.32 0.009 100); --color-neutral-900: oklch(0.24 0.007 100);
  --color-accent-100: oklch(0.97 0.017 120); --color-accent-200: oklch(0.92 0.034 120); --color-accent-300: oklch(0.85 0.051 120); --color-accent-400: oklch(0.75 0.077 120); --color-accent-500: oklch(0.64 0.094 120); --color-accent-600: oklch(0.53 0.085 120); --color-accent-700: oklch(0.42 0.068 120); --color-accent-800: oklch(0.32 0.051 120); --color-accent-900: oklch(0.24 0.038 120);
  --color-accent-2-100: oklch(0.97 0.020 75); --color-accent-2-200: oklch(0.92 0.040 75); --color-accent-2-300: oklch(0.85 0.060 75); --color-accent-2-400: oklch(0.75 0.090 75); --color-accent-2-500: oklch(0.64 0.110 75); --color-accent-2-600: oklch(0.53 0.100 75); --color-accent-2-700: oklch(0.42 0.080 75); --color-accent-2-800: oklch(0.32 0.060 75); --color-accent-2-900: oklch(0.24 0.045 75);
}

/* ══ Page shell ══ */
body { margin: 0; text-wrap: pretty; }
.page { min-height: 100vh; overflow-x: clip; background: var(--color-bg); color: var(--color-text); font-family: var(--font-body); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes popIn { from { opacity: 0; transform: scale(0.6); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { * { animation: none !important; transition: none !important; } }
a { color: var(--color-accent-700); }
a:hover { color: var(--color-accent); }
.accent { color: var(--color-accent); }
.wrap { max-width: 1160px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 64px); }
.wrap-wide { max-width: 1240px; }
.info-note { font-size: 14px; line-height: 1.6; color: color-mix(in srgb, var(--color-text) 65%, transparent); margin: 18px 0 0; max-width: 62ch; }

/* ══ Nav ══ */
.nav { flex-wrap: wrap; row-gap: 8px; }
.nav .nav-brand:hover { color: var(--color-text); }
.nav a[aria-current='true'] { color: var(--color-accent); }
.lang { display: flex; margin-left: auto; border: 1px solid var(--color-divider); border-radius: 999px; padding: 3px; background: var(--color-surface); }
.lang a { padding: 6px 14px; border-radius: 999px; font-weight: 700; font-size: 12.5px; color: var(--color-text); text-decoration: none; }
.lang a.on, .lang a.on:hover { background: var(--color-accent); color: var(--color-bg); }

/* ══ Footer ══ */
.footer { background: var(--color-surface); border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.footer-in { padding: 44px clamp(20px, 5vw, 64px); display: flex; flex-wrap: wrap; gap: 26px; justify-content: space-between; font-size: 13.5px; line-height: 1.7; color: color-mix(in srgb, var(--color-text) 65%, transparent); }
.footer-brand { font-family: var(--font-heading); font-size: 17px; color: var(--color-text); }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; align-items: center; }
.footer-links a { text-decoration: none; color: var(--color-text); }
.footer-links a:hover { color: var(--color-accent); }

/* ══ Buttons ══ */
.btn-pill { border-radius: 999px; padding: 12px 26px; font-size: 16px; text-decoration: none; white-space: nowrap; }
.btn-hero-outline { white-space: nowrap; border-radius: 999px; padding: 12px 26px; font-size: 16px; text-decoration: none; color: #fff; border: 1.5px solid var(--color-accent-400); display: inline-flex; align-items: center; font-weight: 700; transition: background .2s ease; }
.btn-hero-outline:hover { background: var(--color-accent-700); color: #fff; }
.btn-back { border-radius: 999px; }

/* ══ Home: hero ══ */
.hero { margin-top: clamp(20px, 3vw, 36px); background: var(--color-accent-800); color: var(--color-accent-100); border-radius: var(--radius-lg); padding: clamp(32px, 5vw, 64px); position: relative; overflow: hidden; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(20px, 4vw, 48px); align-items: center; animation: fadeUp .7s ease-out both; }
.hero-blob { position: absolute; right: -80px; top: -80px; width: 300px; height: 300px; border-radius: 50%; background: color-mix(in srgb, var(--color-accent-700) 60%, transparent); }
.hero-copy { position: relative; }
.hero-tag { white-space: nowrap; display: inline-flex; margin-bottom: 16px; }
.hero h1 { font-size: clamp(38px, 5.4vw, 72px); line-height: 1.05; margin: 0; color: #fff; }
.hero h1 span { color: var(--color-accent-2-300); }
.hero-sub { font-size: 16.5px; line-height: 1.65; max-width: 48ch; margin: 22px 0 0; color: var(--color-accent-200); }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.hero-art { display: flex; align-items: center; justify-content: center; animation: popIn .9s cubic-bezier(.2, .7, .3, 1) both .25s; }
.hero-frame { width: min(100%, 420px); aspect-ratio: 1; background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 22px 40px rgba(0, 0, 0, .3); }
.hero-frame img { width: 100%; height: 100%; object-fit: contain; display: block; }
@media (max-width: 720px) { .hero { grid-template-columns: 1fr; } }

/* ══ Home: categories strip ══ */
.cats { padding: clamp(48px, 7vw, 80px) 0 clamp(56px, 8vw, 90px); }
.cats-head { display: flex; align-items: baseline; gap: 18px; margin-bottom: 22px; }
.cats-head h2 { font-size: clamp(26px, 3.2vw, 40px); margin: 0; }
.cats-all { margin-left: auto; font-size: 14.5px; font-weight: 700; color: var(--color-accent-700); text-decoration: none; }
.strip { display: grid; grid-auto-flow: column; grid-auto-columns: clamp(210px, 24vw, 270px); gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 14px; scrollbar-width: none; }
.strip::-webkit-scrollbar { display: none; }
.cat-card { scroll-snap-align: start; display: flex; flex-direction: column; background: var(--color-card, #fff); border-radius: var(--radius-lg); overflow: hidden; text-decoration: none; color: var(--color-text); box-shadow: var(--shadow-sm); transition: transform .22s ease, box-shadow .22s ease; animation: fadeUp .6s ease-out both; }
.cat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); color: var(--color-text); }
.cat-img { display: block; aspect-ratio: 1 / 1.05; background: var(--color-accent-2-100); border-radius: 0 0 50% 50% / 0 0 14% 14%; padding: 26px; box-sizing: border-box; }
.cat-img img { width: 100%; height: 100%; object-fit: contain; border-radius: var(--radius-md); }
.cat-body { display: flex; flex-direction: column; gap: 4px; padding: 16px 20px 20px; }
.cat-name { font-family: var(--font-heading); font-size: 17px; line-height: 1.2; }
.cat-count { font-size: 13px; color: color-mix(in srgb, var(--color-text) 60%, transparent); }

/* ══ Products: catalog / category ══ */
.cat-hero { padding: clamp(40px, 6vw, 64px) 0 24px; animation: fadeUp .6s ease-out both; }
.cat-hero .tag { display: inline-flex; }
.cat-hero h1 { font-size: clamp(34px, 4.6vw, 60px); line-height: 1.08; margin: 16px 0 0; }
.cat-desc, .cat-count-label { font-size: 15px; color: color-mix(in srgb, var(--color-text) 65%, transparent); margin: 12px 0 0; max-width: 62ch; }
.cat-desc + .cat-count-label { margin-top: 6px; }
.filters { display: flex; flex-wrap: wrap; gap: 10px; padding: 10px 0 30px; }
.filter { padding: 9px 18px; border-radius: 999px; font-weight: 600; font-size: 13.5px; border: 1px solid var(--color-divider); background: var(--color-card, #fff); color: var(--color-text); text-decoration: none; }
.filter:hover { color: var(--color-text); border-color: color-mix(in srgb, var(--color-text) 45%, transparent); }
.filter.on, .filter.on:hover { border-color: var(--color-accent); background: var(--color-accent); color: var(--color-bg); }
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; margin-bottom: 80px; }
.p-card { display: flex; flex-direction: column; background: var(--color-card, #fff); border-radius: var(--radius-lg); overflow: hidden; text-decoration: none; color: var(--color-text); box-shadow: var(--shadow-sm); transition: transform .22s ease, box-shadow .22s ease; animation: fadeUp .55s ease-out both; }
.p-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); color: var(--color-text); }
.p-img { display: block; aspect-ratio: 1; padding: 22px; box-sizing: border-box; }
.p-img img { width: 100%; height: 100%; object-fit: contain; border-radius: var(--radius-md); transition: transform .35s ease; }
.p-card:hover .p-img img { transform: scale(1.06); }
.p-body { display: flex; flex-direction: column; gap: 5px; padding: 0 20px 20px; }
.p-name { font-family: var(--font-heading); font-size: 16px; line-height: 1.25; }
.p-model { font-size: 13px; color: color-mix(in srgb, var(--color-text) 60%, transparent); }

/* ══ Products: detail ══ */
.detail-sec { padding: 38px 0 80px; }
.detail-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); gap: clamp(28px, 5vw, 64px); margin-top: 24px; align-items: start; animation: fadeUp .5s ease-out both; }
.detail-frame { background: var(--color-card, #fff); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); overflow: hidden; }
.detail-frame img { width: 100%; height: auto; aspect-ratio: 1; object-fit: contain; display: block; border-radius: var(--radius-lg); }
.thumbs { display: flex; gap: 12px; margin-top: 14px; }
.thumb { padding: 0; border-radius: 14px; border: 2px solid var(--color-divider); background: var(--color-card, #fff); cursor: pointer; line-height: 0; overflow: hidden; }
.thumb.on { border-color: var(--color-accent); }
.thumb img { width: 68px; height: 68px; object-fit: contain; display: block; background: var(--color-card, #fff); border-radius: 12px; }
.thumb img.cover { object-fit: cover; }
.detail-h1 { font-size: clamp(28px, 3.4vw, 44px); line-height: 1.12; margin: 16px 0 0; }
.detail-desc { font-size: 15.5px; line-height: 1.7; margin: 18px 0 0; max-width: 52ch; }
.specs { display: flex; flex-direction: column; margin: 30px 0 0; background: var(--color-surface); border-radius: var(--radius-lg); padding: 8px 24px; }
.specs > div { display: flex; gap: 18px; padding: 14px 0; border-bottom: 1px solid var(--color-divider); }
.specs > div:last-child { border-bottom: 0; }
.specs dt { flex: none; width: 110px; font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: color-mix(in srgb, var(--color-text) 60%, transparent); }
.specs dd { margin: 0; font-size: 15px; }
.specs dd a { text-decoration: none; }
.detail-note { margin: 24px 0 0; max-width: 50ch; }
.detail-cta { margin-top: 22px; display: inline-flex; }

/* ══ About ══ */
.about-hero, .contact-hero { padding: clamp(52px, 8vw, 92px) 0 clamp(36px, 5vw, 56px); animation: fadeUp .6s ease-out both; }
.about-hero .tag, .contact-hero .tag { display: inline-flex; }
.about-hero h1, .contact-hero h1 { font-size: clamp(40px, 6vw, 72px); line-height: 1.08; margin: 16px 0 0; }
.about-lead { font-family: var(--font-heading); font-size: clamp(19px, 2.2vw, 26px); line-height: 1.3; margin: 22px 0 0; color: var(--color-accent-2-800); }
.about-body { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: clamp(28px, 5vw, 64px); padding: 0 0 clamp(48px, 7vw, 80px); align-items: center; animation: fadeUp .6s ease-out both .15s; }
.about-body p { font-size: 17px; line-height: 1.7; margin: 0; max-width: 52ch; }
.about-body p + p { margin-top: 22px; }
.about-fig { margin: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.about-fig img { width: 100%; height: auto; aspect-ratio: 1; object-fit: cover; display: block; border-radius: var(--radius-lg); }
.values { padding: 0 0 clamp(56px, 8vw, 90px); display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); gap: 20px; animation: fadeUp .6s ease-out both .3s; }
.value { background: var(--color-surface); border-radius: var(--radius-lg); padding: 30px 28px; }
.value-num { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; color: #fff; font-family: var(--font-heading); font-size: 17px; }
.value h2 { font-size: 22px; line-height: 1.2; margin: 18px 0 0; }
.value p { font-size: 15px; line-height: 1.65; margin: 12px 0 0; color: color-mix(in srgb, var(--color-text) 75%, transparent); }

/* ══ Contact ══ */
.contact-body { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: clamp(28px, 4vw, 48px); padding: 0 0 clamp(56px, 8vw, 90px); animation: fadeUp .6s ease-out both .15s; }
.info-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
.info-card { background: var(--color-surface); border-radius: var(--radius-lg); padding: 22px 24px; }
.info-card .k { font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: color-mix(in srgb, var(--color-text) 60%, transparent); margin: 0 0 6px; }
.info-card .v { font-family: var(--font-heading); font-size: 18px; margin: 0; }
.info-card .v.soon { color: color-mix(in srgb, var(--color-text) 55%, transparent); }
.info-card a { text-decoration: none; }
.contact-text { margin-top: 34px; }
.contact-text h2 { font-size: 22px; margin: 0; }
.contact-text h2 + p { font-size: 15px; line-height: 1.65; margin: 12px 0 0; color: color-mix(in srgb, var(--color-text) 75%, transparent); max-width: 48ch; }
.contact-text p + h2 { margin-top: 30px; }
.form { display: flex; flex-direction: column; gap: 18px; background: var(--color-card, #fff); border-radius: var(--radius-lg); padding: clamp(24px, 3vw, 36px); box-shadow: var(--shadow-sm); align-self: start; position: relative; }
.form .input { border-radius: 999px; }
.form textarea.input { resize: vertical; font-family: var(--font-body); border-radius: var(--radius-lg); }
.form-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.form-note { font-size: 13px; color: color-mix(in srgb, var(--color-text) 60%, transparent); }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.status { margin: 0; font-size: 14px; font-weight: 600; padding: 12px 18px; border-radius: var(--radius-md); }
.status.ok { background: var(--color-accent-100); color: var(--color-accent-800); }
.status.bad { background: var(--color-accent-2-100); color: var(--color-accent-2-800); }
