/* Coval Rest Studio — Periwinkle Calm
   primary #5B6CC4 · secondary #A7B0E0 · accent #0284C7 · bg #FBF8F1 · fg #1A1A1A
   One locked accent (trust-blue) · one radius scale · one neutral family */

:root {
  --primary: #5B6CC4;
  --primary-deep: #44529c;
  --secondary: #A7B0E0;
  --secondary-soft: #d3d8f0;
  --accent: #0284C7;
  --accent-deep: #0369a1;
  --bg: #FBF8F1;
  --fg: #1A1A1A;
  --surface: #ffffff;
  --surface-tint: #f3f1ea;
  --periwinkle-wash: #eef0fa;
  --periwinkle-wash-2: #e3e6f6;
  --line: #e6e2d7;
  --line-soft: #efece3;
  --muted: #56564f;
  --muted-soft: #6f6f67;

  --r-card: 14px;
  --r-sm: 10px;
  --r-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(26,26,26,.05), 0 4px 14px rgba(68,82,156,.06);
  --shadow-md: 0 10px 30px rgba(68,82,156,.10), 0 2px 8px rgba(26,26,26,.04);
  --shadow-lg: 0 24px 60px rgba(68,82,156,.16);

  --maxw: 1160px;
  --gut: clamp(20px, 5vw, 56px);

  --font-display: "Unbounded", system-ui, sans-serif;
  --font-body: "Geist", system-ui, -apple-system, sans-serif;
  --font-mono: "Ubuntu Mono", ui-monospace, monospace;

  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--fg);
  background: var(--bg);
  line-height: 1.62;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.08; letter-spacing: -.01em; color: var(--primary-deep); margin: 0 0 .5em; }
h1 { font-weight: 700; }
p { margin: 0 0 1.1em; }
img { max-width: 100%; display: block; }

a { color: var(--accent); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--accent-deep); }

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gut); }
.eyebrow {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 12.5px;
  color: var(--accent);
  font-weight: 700;
  margin: 0 0 18px;
  display: inline-block;
}
.section { padding-block: clamp(64px, 9vw, 124px); position: relative; }
.lead { font-size: clamp(18px, 2vw, 21px); color: var(--muted); max-width: 62ch; }

/* skip link */
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--accent); color: #fff; padding: 12px 18px; border-radius: 0 0 var(--r-sm) 0;
  font-weight: 600;
}
.skip:focus { left: 0; color: #fff; }

/* ---------- header ---------- */
.site-head {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.site-head__row { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 72px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--primary-deep); letter-spacing: -.02em; }
.brand:hover { color: var(--primary-deep); }
.brand__mark {
  width: 34px; height: 34px; border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: grid; place-items: center; color: #fff; font-size: 17px; box-shadow: var(--shadow-sm);
}
.nav { display: flex; align-items: center; gap: 28px; }
.nav a { color: var(--fg); font-weight: 500; font-size: 15.5px; position: relative; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0; background: var(--accent); transition: width .25s var(--ease); }
.nav a:hover, .nav a[aria-current="page"] { color: var(--primary-deep); }
.nav a:hover::after, .nav a[aria-current="page"]::after { width: 100%; }
.nav__cta { display: inline-flex; }

.btn {
  display: inline-flex; align-items: center; gap: 9px; justify-content: center;
  font-family: var(--font-body); font-weight: 600; font-size: 15.5px;
  padding: 13px 24px; border-radius: var(--r-pill); border: 1.5px solid transparent;
  cursor: pointer; transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease); text-decoration: none;
}
.btn--primary { background: var(--accent); color: #fff; box-shadow: 0 6px 18px rgba(2,132,199,.28); }
.btn--primary:hover { background: var(--accent-deep); color: #fff; transform: translateY(-2px); box-shadow: 0 10px 26px rgba(2,132,199,.34); }
.btn--ghost { background: transparent; color: var(--primary-deep); border-color: var(--secondary); }
.btn--ghost:hover { background: var(--periwinkle-wash); color: var(--primary-deep); transform: translateY(-2px); }
.btn--light { background: var(--surface); color: var(--primary-deep); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn--light:hover { color: var(--primary-deep); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--lg { padding: 16px 30px; font-size: 16.5px; }

.menu-toggle { display: none; }

/* ---------- hero ---------- */
.hero {
  position: relative; overflow: clip;
  padding-top: clamp(48px, 8vw, 96px); /* capped pt-24 */
  padding-bottom: clamp(56px, 8vw, 96px);
  background:
    radial-gradient(120% 90% at 88% -10%, var(--periwinkle-wash-2) 0%, transparent 55%),
    radial-gradient(100% 80% at 0% 110%, #f0eee5 0%, transparent 60%),
    var(--bg);
}
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.hero__eyebrow { color: var(--accent); }
.hero h1 { font-size: clamp(38px, 6vw, 67px); letter-spacing: -.025em; margin-bottom: 22px; }
.hero h1 em { font-style: italic; color: var(--primary); }
.hero__sub { font-size: clamp(17px, 1.7vw, 20px); color: var(--muted); max-width: 44ch; margin-bottom: 30px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.hero__media { position: relative; }
.hero__media img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  border-radius: var(--r-card); box-shadow: var(--shadow-lg);
}
.hero__badge {
  position: absolute; left: -22px; bottom: 30px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-card); padding: 16px 20px; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 14px; max-width: 260px;
}
.hero__badge b { font-family: var(--font-display); font-size: 22px; color: var(--primary-deep); display: block; }
.hero__badge span { font-size: 13px; color: var(--muted); }
.hero__badge .dot { width: 42px; height: 42px; border-radius: 12px; background: var(--periwinkle-wash); color: var(--accent); display: grid; place-items: center; flex-shrink: 0; }

/* ---------- trust strip ---------- */
.trust { border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); background: var(--surface-tint); }
.trust__inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding-block: 40px; }
.stat__v { font-family: var(--font-display); font-weight: 600; font-size: clamp(24px, 3vw, 34px); color: var(--primary-deep); line-height: 1; }
.stat__l { font-size: 14px; color: var(--muted); margin-top: 8px; }

/* ---------- section heads ---------- */
.shead { max-width: 60ch; margin-bottom: clamp(36px, 5vw, 56px); }
.shead h2 { font-size: clamp(28px, 4vw, 44px); }
.shead.center { margin-inline: auto; text-align: center; }

/* ---------- asymmetric split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.split__media img { width: 100%; aspect-ratio: 5/4; object-fit: cover; border-radius: var(--r-card); box-shadow: var(--shadow-md); }
.split--reverse .split__media { order: 2; }
.checklist { list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 12px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; color: var(--muted); }
.checklist svg { flex-shrink: 0; margin-top: 3px; color: var(--accent); }

/* ---------- bento services ---------- */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-card);
  padding: 30px; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--secondary); }
.bento .card--wide { grid-column: span 3; }
.bento .card--third { grid-column: span 2; }
.bento .card--feature { grid-column: span 4; }
.card__ico { width: 50px; height: 50px; border-radius: 13px; background: var(--periwinkle-wash); color: var(--primary); display: grid; place-items: center; margin-bottom: 18px; }
.card h3 { font-size: 21px; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 15.5px; margin-bottom: 16px; }
.card__points { list-style: none; padding: 0; margin: 0 0 18px; display: grid; gap: 8px; }
.card__points li { font-size: 14.5px; color: var(--muted); padding-left: 22px; position: relative; }
.card__points li::before { content: ""; position: absolute; left: 0; top: 9px; width: 8px; height: 8px; border-radius: 50%; background: var(--secondary); }
.card__link { font-weight: 600; font-size: 15px; display: inline-flex; align-items: center; gap: 6px; }
.card__link svg { transition: transform .2s var(--ease); }
.card__link:hover svg { transform: translateX(4px); }

/* ---------- approach (vertical stack with media) ---------- */
.approach { display: grid; gap: 18px; }
.approach__item {
  display: grid; grid-template-columns: 56px 1fr; gap: 22px; align-items: start;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-card); padding: 28px 30px;
}
.approach__n { font-family: var(--font-mono); color: var(--accent); font-weight: 700; font-size: 15px; padding-top: 4px; }
.approach__item h3 { font-size: 20px; margin-bottom: 6px; }
.approach__item p { margin: 0; color: var(--muted); font-size: 15.5px; }

/* ---------- full-width quote ---------- */
.quoteband {
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  color: #fff; border-radius: var(--r-card); padding: clamp(40px, 6vw, 72px);
  position: relative; overflow: hidden;
}
.quoteband::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(80% 120% at 100% 0%, rgba(167,176,224,.4) 0%, transparent 55%);
  pointer-events: none;
}
.quoteband blockquote { font-family: var(--font-display); font-weight: 500; font-size: clamp(22px, 3.4vw, 38px); line-height: 1.22; margin: 0; max-width: 22ch; position: relative; }
.quoteband cite { display: block; margin-top: 26px; font-style: normal; font-family: var(--font-body); font-size: 15px; opacity: .9; }

/* ---------- testimonials ---------- */
.tgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tcard { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-card); padding: 30px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.tcard p { font-size: 16.5px; color: var(--fg); margin-bottom: 22px; }
.tcard__who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.tcard__av { width: 42px; height: 42px; border-radius: 50%; background: var(--secondary-soft); color: var(--primary-deep); display: grid; place-items: center; font-weight: 700; font-size: 15px; }
.tcard__who b { display: block; font-size: 15px; color: var(--primary-deep); }
.tcard__who span { font-size: 13px; color: var(--muted); }
.stars { color: var(--accent); margin-bottom: 16px; letter-spacing: 2px; font-size: 14px; }

/* ---------- resources blogroll ---------- */
.resources { display: grid; gap: 14px; }
.rsrc {
  display: grid; grid-template-columns: 1fr auto; gap: 16px; align-items: center;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-card); padding: 22px 26px;
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.rsrc:hover { border-color: var(--secondary); transform: translateX(4px); }
.rsrc h3 { font-size: 18px; margin: 0 0 4px; }
.rsrc p { margin: 0; font-size: 14.5px; color: var(--muted); }
.rsrc__links { font-size: 14px; margin-top: 8px; }
.rsrc__links a { font-weight: 600; }

/* ---------- article cards ---------- */
.posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.post { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-card); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease); display: flex; flex-direction: column; }
.post:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.post__img { aspect-ratio: 16/10; overflow: hidden; background: var(--surface-tint); }
.post__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.post:hover .post__img img { transform: scale(1.05); }
.post__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.post__tag { font-family: var(--font-mono); font-size: 11.5px; text-transform: uppercase; letter-spacing: .14em; color: var(--accent); font-weight: 700; margin-bottom: 10px; }
.post__body h3 { font-size: 19px; line-height: 1.18; margin-bottom: 10px; color: var(--primary-deep); }
.post__body p { font-size: 14.5px; color: var(--muted); margin-bottom: 16px; }
.post__meta { margin-top: auto; font-size: 13px; color: var(--muted-soft); display: flex; gap: 10px; align-items: center; }

/* ---------- CTA band ---------- */
.ctaband {
  background:
    radial-gradient(90% 120% at 10% 0%, var(--periwinkle-wash-2) 0%, transparent 60%),
    var(--surface);
  border: 1px solid var(--line); border-radius: var(--r-card);
  padding: clamp(40px, 6vw, 72px); text-align: center; box-shadow: var(--shadow-md);
}
.ctaband h2 { font-size: clamp(28px, 4vw, 44px); margin-bottom: 14px; }
.ctaband p { color: var(--muted); max-width: 50ch; margin: 0 auto 28px; font-size: 18px; }
.ctaband .hero__cta { justify-content: center; }

/* ---------- footer ---------- */
.site-foot { background: var(--surface-tint); border-top: 1px solid var(--line); padding-block: 56px 30px; margin-top: 0; }
.foot__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; }
.foot__brand p { color: var(--muted); font-size: 14.5px; max-width: 34ch; margin-top: 14px; }
.foot col, .foot__col h4 { font-family: var(--font-display); font-size: 13px; text-transform: uppercase; letter-spacing: .14em; color: var(--primary-deep); margin-bottom: 16px; }
.foot__col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.foot__col a { color: var(--muted); font-size: 14.5px; }
.foot__col a:hover { color: var(--accent); }
.foot__bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--line); font-size: 13.5px; color: var(--muted-soft); }

/* ---------- page hero (interior) ---------- */
.phero { padding-block: clamp(48px, 7vw, 88px) clamp(40px, 5vw, 60px); background: radial-gradient(110% 90% at 90% -20%, var(--periwinkle-wash-2) 0%, transparent 55%), var(--bg); }
.phero h1 { font-size: clamp(34px, 5.4vw, 60px); margin-bottom: 18px; }
.phero p { max-width: 56ch; }

/* ---------- contact ---------- */
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.form { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-card); padding: clamp(26px, 4vw, 40px); box-shadow: var(--shadow-md); }
.field { margin-bottom: 22px; }
.field label { display: block; font-weight: 600; font-size: 14.5px; color: var(--primary-deep); margin-bottom: 8px; }
.field input, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 16px; color: var(--fg);
  background: var(--bg); border: 1.5px solid var(--line); border-radius: var(--r-sm);
  padding: 13px 16px; transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(2,132,199,.18); }
.field textarea { min-height: 140px; resize: vertical; }
.form .btn { width: 100%; }
.form__note { font-size: 13.5px; color: var(--muted); margin-top: 16px; text-align: center; }
.form__ok { display: none; background: var(--periwinkle-wash); border: 1px solid var(--secondary); border-radius: var(--r-sm); padding: 14px 18px; color: var(--primary-deep); font-weight: 600; font-size: 15px; margin-bottom: 20px; }
.form__ok.show { display: block; }

.contact-aside { display: grid; gap: 18px; }
.cinfo { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-card); padding: 26px; box-shadow: var(--shadow-sm); }
.cinfo h3 { font-size: 16px; margin-bottom: 14px; }
.cinfo p, .cinfo a { font-size: 15px; color: var(--muted); margin: 0 0 6px; }
.cinfo a { color: var(--accent); font-weight: 600; }
.cinfo dl { margin: 0; display: grid; gap: 8px; }
.cinfo dt { font-weight: 600; color: var(--primary-deep); font-size: 14px; }
.cinfo dd { margin: 0; font-size: 14.5px; color: var(--muted); }

/* ---------- team ---------- */
.team { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tm { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-card); padding: 30px; box-shadow: var(--shadow-sm); text-align: center; }
.tm__av { width: 70px; height: 70px; border-radius: 50%; margin: 0 auto 18px; background: linear-gradient(135deg, var(--primary), var(--secondary)); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 22px; }
.tm h3 { font-size: 19px; margin-bottom: 4px; }
.tm__role { font-family: var(--font-mono); font-size: 12.5px; text-transform: uppercase; letter-spacing: .12em; color: var(--accent); margin-bottom: 12px; }
.tm p { font-size: 14.5px; color: var(--muted); margin: 0; }

/* ---------- values grid ---------- */
.values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.value { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-card); padding: 26px; }
.value h3 { font-size: 18px; margin-bottom: 8px; }
.value p { font-size: 14.5px; color: var(--muted); margin: 0; }

/* ---------- faq ---------- */
.faq { display: grid; gap: 14px; max-width: 820px; margin-inline: auto; }
.faq details { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-card); padding: 4px 26px; transition: border-color .2s var(--ease); }
.faq details[open] { border-color: var(--secondary); }
.faq summary { font-family: var(--font-display); font-weight: 600; font-size: 17px; color: var(--primary-deep); padding: 20px 0; cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 16px; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 24px; color: var(--accent); flex-shrink: 0; transition: transform .2s var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--muted); font-size: 15.5px; padding-bottom: 22px; margin: 0; }

/* ---------- article ---------- */
.article { padding-block: clamp(36px, 5vw, 64px) clamp(56px, 8vw, 96px); }
.article__head { max-width: 820px; margin: 0 auto clamp(28px, 4vw, 44px); }
.article__head .post__tag { margin-bottom: 16px; }
.article__head h1 { font-size: clamp(30px, 4.6vw, 50px); margin-bottom: 16px; line-height: 1.1; }
.article__meta { display: flex; gap: 14px; align-items: center; font-size: 14px; color: var(--muted); margin-bottom: 30px; }
.article__hero { max-width: 1000px; margin: 0 auto clamp(32px, 4vw, 48px); }
.article__hero img { width: 100%; aspect-ratio: 16/8; object-fit: cover; border-radius: var(--r-card); box-shadow: var(--shadow-md); }
.article__body { max-width: 760px; margin: 0 auto; font-size: 17.5px; line-height: 1.72; }
.article__body[dir="rtl"] { text-align: right; }
.article__body h2 { font-size: clamp(24px, 3vw, 33px); margin: 1.6em 0 .5em; color: var(--primary-deep); }
.article__body h3 { font-size: clamp(19px, 2.2vw, 24px); margin: 1.4em 0 .4em; color: var(--primary-deep); }
.article__body p { margin-bottom: 1.2em; color: #26261f; }
.article__body a { font-weight: 600; text-decoration: underline; text-decoration-color: var(--secondary); text-underline-offset: 3px; }
.article__body a:hover { text-decoration-color: var(--accent); }
.article__body img { border-radius: var(--r-card); box-shadow: var(--shadow-sm); margin: 1.6em auto; height: auto; }
.article__body ul, .article__body ol { margin: 0 0 1.3em; padding-left: 1.4em; color: #26261f; }
.article__body li { margin-bottom: .5em; }
.article__body strong { color: var(--primary-deep); }
.article__body section { margin-top: 1.2em; }
.article__body itemscope, .article__body [itemprop] { display: block; }
.article__cta { max-width: 760px; margin: clamp(40px, 5vw, 64px) auto 0; }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
.reveal-clip { clip-path: inset(0 0 100% 0); opacity: 0; transition: clip-path .8s var(--ease), opacity .8s var(--ease); }
.reveal-clip.in { clip-path: inset(0 0 0 0); opacity: 1; }
[data-d="1"] { transition-delay: .08s; }
[data-d="2"] { transition-delay: .16s; }
[data-d="3"] { transition-delay: .24s; }
[data-d="4"] { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-clip { opacity: 1 !important; transform: none !important; clip-path: none !important; transition: none !important; }
  .post:hover .post__img img, .hero__media img { transform: none !important; }
  * { animation: none !important; }
}

/* ---------- responsive ---------- */
@media (max-width: 920px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { max-width: 460px; }
  .hero__badge { left: 0; }
  .trust__inner { grid-template-columns: repeat(2, 1fr); gap: 28px 20px; }
  .split, .contact__grid { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento .card--wide, .bento .card--third, .bento .card--feature { grid-column: span 2; }
  .tgrid, .posts, .team, .values { grid-template-columns: 1fr; }
  .foot__grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .values { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .nav { position: fixed; inset: 72px 0 auto 0; background: var(--bg); flex-direction: column; align-items: stretch; gap: 0; padding: 12px var(--gut) 22px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md); transform: translateY(-130%); transition: transform .3s var(--ease); }
  .nav.open { transform: translateY(0); }
  .nav a { padding: 14px 0; border-bottom: 1px solid var(--line-soft); font-size: 17px; }
  .nav a::after { display: none; }
  .nav__cta { margin-top: 12px; }
  .menu-toggle { display: inline-grid; place-items: center; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: var(--r-sm); background: var(--surface); cursor: pointer; }
  .posts, .team, .tgrid, .values { grid-template-columns: 1fr; }
  .values { grid-template-columns: 1fr; }
  .foot__grid { grid-template-columns: 1fr; }
}
