/* ==========================================================================
   Wharf Gold LLC — "Discovery Standard" v1.0 · 5 August 2026
   Source of truth: ../Brand essence directions for review/
                    Wharf Gold Design System.dc.html
   ========================================================================== */

/* --------------------------------------------------------------------------
   Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Color */
  --ink: #14181D;            /* hero, header, contact band */
  --ink-deep: #0F1216;       /* utility bar, footer */
  --oxide: #A32B1F;          /* iron oxide — buttons, links, mark. 6.6:1 on white */
  --oxide-hover: #8A231A;
  --oxide-active: #741D15;
  --oxide-on-ink: #D0574A;   /* eyebrows and current-page marker on ink only */
  --surface: #FFFFFF;
  --surface-alt: #F5F6F7;    /* Updates, quiet bands */
  --rule: #DDE1E4;           /* 1px hairlines, borders */
  --rule-light: #F0F2F3;
  --text: #1B2026;           /* headings, body on white */
  --text-2: #3C454C;         /* paragraphs. 9.4:1 */
  --muted: #5F686E;          /* dates, captions. 5.5:1 floor — never lighter */
  --on-ink: #DDE1E4;
  --on-ink-muted: #9AA1A6;
  --on-ink-rule: #3A4046;
  --paper: #F0EDE7;          /* wordmark on dark ground */
  --lockup-rule: #C9C4BC;    /* lockup divider on light ground */
  --disabled-bg: #E3D9D7;
  --disabled-text: #8A8683;
  --field-placeholder: #9AA1A6;

  /* Type */
  --serif: 'Playfair Display', Georgia, serif;
  --serif-zh: 'Noto Serif SC', 'Playfair Display', serif;
  --sans: 'IBM Plex Sans', 'Noto Sans SC', Arial, sans-serif;
  --sans-zh: 'Noto Sans SC', 'IBM Plex Sans', sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, 'Courier New', monospace;

  /* Surface: radius 0 default, 4 on cards + buttons. Nothing deeper than md. */
  --radius: 4px;
  --shadow-sm: 0 1px 3px rgba(20, 24, 29, 0.10);
  --shadow-md: 0 2px 10px rgba(20, 24, 29, 0.14);
  --shadow-hover: 0 6px 18px rgba(20, 24, 29, 0.18);

  /* Motion: hover transitions 160ms ease. Nothing else moves. */
  --fast: 160ms ease;
}

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

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--surface);
  color: var(--text-2);
  font-family: var(--sans);
  font-size: 14.5px;
  line-height: 1.7;
  font-variant-numeric: tabular-nums; /* on by default, everywhere */
}

body.zh { font-family: var(--sans-zh); }

h1, h2, h3, p { margin: 0; }

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

a {
  color: var(--oxide);
  text-decoration: none;
  transition: color var(--fast), border-color var(--fast), background var(--fast);
}
a:hover { color: var(--oxide-hover); }

address { font-style: normal; }

:focus-visible { outline: 2px solid var(--oxide); outline-offset: 2px; }

@media (prefers-reduced-motion: reduce) {
  .hero { animation: none; }
  * { transition-duration: 0.01ms !important; }
}

/* --------------------------------------------------------------------------
   Layout — 12 col · 1240 container · 24 gutter · 44 page padding
   -------------------------------------------------------------------------- */
.container {
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 44px;
}

.measure { max-width: 620px; } /* text measure max 620 */

/* --------------------------------------------------------------------------
   Type scale
   -------------------------------------------------------------------------- */
.display-xl {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(30px, 2.4vw + 21px, 44px);
  line-height: 1.16;
  color: var(--text);
}
.display-l {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(27px, 1.6vw + 21px, 34px);
  line-height: 1.2;
  color: var(--text);
}
.display-m {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(24px, 1vw + 22px, 28px);
  line-height: 1.25;
  color: var(--text);
}
.display-32 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(26px, 1.4vw + 21px, 32px);
  line-height: 1.25;
  color: var(--text);
}
.display-24 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(21px, 0.8vw + 18px, 24px);
  line-height: 1.3;
  color: var(--text);
}
.display-s {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 19px;
  line-height: 1.3;
  color: var(--text);
}
body.zh .display-32,
body.zh .display-s { font-family: var(--serif-zh); }
body.zh .display-32 { line-height: 1.35; }

.lead { font-size: 16px; line-height: 1.7; color: var(--text-2); }
.body-s { font-size: 13px; line-height: 1.6; }

.eyebrow {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--oxide);
}
.eyebrow--muted { color: var(--muted); }
.eyebrow--on-ink { color: var(--oxide-on-ink); }

.mono-label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.caption {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.date-line {
  font-size: 12.5px;
  color: var(--muted);
}

strong { font-weight: 600; color: var(--text); }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-block;
  border: 0;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  line-height: normal;
  padding: 11px 20px;
  cursor: pointer;
  transition: background var(--fast), color var(--fast), border-color var(--fast);
}

.btn-primary { background: var(--oxide); color: #FFFFFF; }
.btn-primary:hover { background: var(--oxide-hover); color: #FFFFFF; }
.btn-primary:active { background: var(--oxide-active); color: #FFFFFF; }

.btn-secondary {
  background: transparent;
  border: 1px solid var(--text);
  color: var(--text);
  padding: 10px 19px;
}
.btn-secondary:hover { background: var(--text); color: #FFFFFF; }

/* Ghost — dark grounds only */
.btn-ghost {
  background: transparent;
  border: 1px solid var(--muted);
  color: var(--on-ink);
  padding: 10px 19px;
}
.btn-ghost:hover { border-color: var(--on-ink); color: #FFFFFF; }

.btn[disabled],
.btn-disabled { background: var(--disabled-bg); color: var(--disabled-text); cursor: not-allowed; }

.btn-nav { padding: 9px 16px; font-size: 12.5px; }

/* --------------------------------------------------------------------------
   Links and chips
   -------------------------------------------------------------------------- */
.link-inline {
  font-size: 13.5px;
  border-bottom: 1px solid rgba(163, 43, 31, 0.35);
}
.link-inline:hover { border-bottom-color: var(--oxide-hover); }

.link-arrow { font-size: 12.5px; }

.chip {
  display: inline-block;
  border: 1px solid var(--oxide);
  color: var(--oxide);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  padding: 5px 10px;
  border-radius: 3px;
}

/* --------------------------------------------------------------------------
   Form fields — spec'd in the design system; no form ships in v1
   -------------------------------------------------------------------------- */
.field {
  width: 100%;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 11px 12px;
  font: inherit;
  font-size: 13.5px;
  color: var(--text);
  background: #FFFFFF;
}
.field::placeholder { color: var(--field-placeholder); }
.field:focus {
  outline: none;
  border-color: var(--oxide);
  box-shadow: 0 0 0 3px rgba(163, 43, 31, 0.12);
}
.field.is-error,
.field[aria-invalid="true"] { border-color: var(--oxide); }
.field-error { font-size: 11.5px; color: var(--oxide); margin-top: 5px; }
.field:disabled { background: var(--surface-alt); color: var(--field-placeholder); }

/* --------------------------------------------------------------------------
   Utility bar
   -------------------------------------------------------------------------- */
.utility {
  background: var(--ink-deep);
  color: var(--on-ink-muted);
  font-size: 11.5px;
}
.utility .container {
  display: flex;
  justify-content: space-between;
  gap: 8px 16px;
  flex-wrap: wrap;
  padding-block: 8px;
}
.utility-right { display: flex; gap: 8px 16px; flex-wrap: wrap; align-items: baseline; }
.utility a { color: var(--on-ink-muted); }
.utility a:hover { color: #FFFFFF; }

.lang { display: flex; gap: 16px; align-items: baseline; }
.lang-current {
  color: var(--on-ink);
  border-bottom: 1px solid var(--oxide-on-ink);
  padding-bottom: 1px;
}

.zh { font-family: var(--sans-zh); }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.site-header { background: var(--ink); }
.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px 24px;
  flex-wrap: wrap;
  padding-block: 16px;
}

.lockup { display: flex; align-items: center; gap: 12px; }
.lockup svg { flex: none; }
.lockup-name {
  display: block;
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: 0.13em;
  color: var(--paper);
}
.lockup-sub {
  display: block;
  border-top: 1px solid var(--on-ink-rule);
  margin-top: 3px;
  padding-top: 3px;
  font-size: 8.5px;
  letter-spacing: 0.2em;
  color: var(--on-ink-muted);
}

.site-nav {
  display: flex;
  gap: 12px 24px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 13px;
}
.site-nav a:not(.btn) {
  color: var(--on-ink);
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
}
.site-nav a:not(.btn):hover { color: #FFFFFF; border-bottom-color: #FFFFFF; }
.site-nav a[aria-current="page"] {
  color: #FFFFFF;
  border-bottom: 2px solid var(--oxide-on-ink);
}

/* --------------------------------------------------------------------------
   Hero — photograph fades in once, 900ms. The only motion on the site.
   -------------------------------------------------------------------------- */
@keyframes wgFade { from { opacity: 0; } to { opacity: 1; } }

.hero {
  position: relative;
  height: 470px;
  overflow: hidden;
  animation: wgFade 900ms ease both;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-layer {
  position: relative;
  max-width: 1240px;
  margin-inline: auto;
  height: 100%;
  padding-inline: 44px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding-bottom: 110px;
}
.hero-eyebrow {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #FFFFFF;
  text-shadow: 0 1px 6px rgba(12, 20, 10, 0.7);
}
.hero-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(30px, 2.4vw + 21px, 44px);
  line-height: 1.16;
  color: #FFFFFF;
  margin-top: 14px;
  max-width: 660px;
  text-wrap: pretty;
  text-shadow: 0 2px 14px rgba(12, 20, 10, 0.62);
}
.hero-meta {
  position: absolute;
  right: 44px;
  bottom: 110px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: #FFFFFF;
  line-height: 1.7;
  text-align: right;
  text-shadow: 0 1px 6px rgba(12, 20, 10, 0.7);
}

/* --------------------------------------------------------------------------
   Statement cards
   -------------------------------------------------------------------------- */
.card-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: -56px;
  position: relative;
}
.card {
  background: #FFFFFF;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 24px;
  transition: box-shadow var(--fast);
}
.card:hover { box-shadow: var(--shadow-hover); } /* shadow deepens — no lift, no scale */
.card p {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-2);
  margin-top: 8px;
}

/* --------------------------------------------------------------------------
   Section rhythm — 56 / 72 / 96 only
   -------------------------------------------------------------------------- */
.stage { padding: 72px 0 56px; }
.stage-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
}
.stage-grid .date-line { margin-top: 8px; }
.stage-grid h2 { margin-top: 10px; }
.stage-body p + p { margin-top: 16px; }

/* --------------------------------------------------------------------------
   Field record teaser (Home)
   -------------------------------------------------------------------------- */
.teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--rule);
}
.teaser-media { position: relative; overflow: hidden; margin: 0; }
.teaser-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}
.plate-tag {
  position: absolute;
  left: 16px;
  bottom: 16px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  color: #FFFFFF;
  background: rgba(15, 18, 22, 0.74);
  padding: 6px 10px;
}
.teaser-text {
  padding: 56px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.teaser-text p { margin-top: 14px; max-width: 460px; }
.teaser-text .btn { margin-top: 24px; }

/* --------------------------------------------------------------------------
   Updates
   -------------------------------------------------------------------------- */
.band-alt {
  background: var(--surface-alt);
  border-top: 1px solid var(--rule);
  padding: 56px 0;
}
.band-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
}
.update-rows { margin-top: 20px; }
.update-row {
  border-top: 1px solid var(--rule);
  padding: 16px 0;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 24px;
  font-size: 14px;
}
.update-row .date { color: var(--muted); }
.update-row .what { color: var(--text-2); line-height: 1.6; }

/* Updates page entries */
.entries { padding-bottom: 64px; }
.entry {
  border-top: 1px solid var(--rule);
  padding: 24px 0;
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 32px;
  transition: background var(--fast);
}
.entry:hover { background: var(--surface-alt); } /* background only, date column stays put */
.entry--first { border-top-color: var(--text); }
.entry-date { font-size: 14px; color: var(--muted); }
.entry-tag {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-top: 4px;
}
.entry-body { max-width: 700px; }
.entry-body p { margin-top: 8px; }
.entries-end {
  border-top: 1px solid var(--rule);
  padding: 24px 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--muted);
}

/* --------------------------------------------------------------------------
   Credential strip
   -------------------------------------------------------------------------- */
.credential {
  border-top: 1px solid var(--rule);
}
.credential .container {
  padding-block: 40px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px 32px;
  flex-wrap: wrap;
}
.credential-line { max-width: 640px; }
.credential-linkedin {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--muted);
}

/* --------------------------------------------------------------------------
   Contact band (dark) and CTA band
   -------------------------------------------------------------------------- */
.contact-band {
  background: var(--ink);
  color: var(--on-ink);
  padding: 48px 0;
}
.contact-band-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.email-l {
  display: block;
  font-family: var(--serif);
  font-size: clamp(21px, 1.5vw + 16px, 26px);
  color: #FFFFFF;
  margin-top: 10px;
  overflow-wrap: anywhere;
}
.email-l:hover { color: var(--oxide-on-ink); }
.contact-lines {
  font-size: 14px;
  line-height: 1.8;
  color: var(--on-ink-muted);
  margin-top: 10px;
}
.contact-band-side {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 14px;
}
.contact-band-note { font-size: 12.5px; color: var(--on-ink-muted); }

.cta-band {
  background: var(--ink);
  color: var(--on-ink);
  padding: 40px 0;
}
.cta-band .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px 32px;
  flex-wrap: wrap;
}
.cta-band p {
  color: var(--on-ink-muted);
  line-height: 1.7;
  max-width: 560px;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer { background: var(--ink-deep); }
.site-footer .container {
  padding-block: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px 24px;
  flex-wrap: wrap;
}
.footer-lockup { display: flex; align-items: center; gap: 12px; }
.footer-lockup .lockup-name { font-size: 13px; }
.legal {
  font-size: 11.5px;
  color: var(--on-ink-muted);
  line-height: 1.7;
  max-width: 680px;
}

/* --------------------------------------------------------------------------
   Page head (interior pages)
   -------------------------------------------------------------------------- */
.page-head { padding: 64px 0 40px; }
.page-head-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
}
.page-head h1 { margin-top: 12px; }
.page-head-intro { max-width: 560px; }

/* --------------------------------------------------------------------------
   Field record — targets and plates
   -------------------------------------------------------------------------- */
.target-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px 32px;
  flex-wrap: wrap;
  padding-bottom: 20px;
}
.target-head h2 { margin-top: 8px; }
.target-head-note {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--text-2);
  max-width: 520px;
}
.target-head--rule {
  border-top: 1px solid var(--rule);
  padding-top: 36px;
}

.plates-2,
.plates-3,
.plates-wide {
  display: grid;
  gap: 24px;
  padding-bottom: 40px;
}
.plates-2 { grid-template-columns: 1fr 1fr; }
.plates-3 { grid-template-columns: 1fr 1fr 1fr; }
.plates-wide { grid-template-columns: 2fr 1fr; align-items: start; }
.plates-last { padding-bottom: 56px; }

figure.plate { margin: 0; }
.plate img { width: 100%; object-fit: cover; }
.ar-65 img { aspect-ratio: 6 / 5; }
.ar-45 img { aspect-ratio: 4 / 5; }
.ar-32 img { aspect-ratio: 3 / 2; }

.plate-cap {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.plate-cap--stack { display: block; line-height: 1.7; }
.plate-note {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--text-2);
}

/* Documentation protocol */
.protocol-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
}
.protocol-list { max-width: 620px; }
.protocol-row {
  border-top: 1px solid var(--rule);
  padding: 16px 0;
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 20px;
  line-height: 1.7;
}
.protocol-row .num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--oxide);
  padding-top: 4px;
}
.protocol-cta {
  border-top: 1px solid var(--rule);
  padding-top: 24px;
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   Contact page and language pages
   -------------------------------------------------------------------------- */
.contact-main { padding: 64px 0 56px; }
.contact-main-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
}
.contact-main h1 { margin-top: 12px; }

.email-xl {
  display: inline-block;
  font-family: var(--serif);
  font-size: clamp(22px, 1.9vw + 15px, 30px);
  color: var(--oxide);
  margin-top: 28px;
  border-bottom: 1px solid rgba(163, 43, 31, 0.3);
  overflow-wrap: anywhere;
}
.email-xl:hover { border-bottom-color: var(--oxide-hover); }
.email-m {
  display: block;
  font-family: var(--serif);
  font-size: clamp(20px, 1vw + 17px, 24px);
  color: var(--oxide);
  margin-top: 14px;
  overflow-wrap: anywhere;
}
.response-note { font-size: 13px; color: var(--muted); margin-top: 10px; }
.contact-intro { margin-top: 16px; max-width: 520px; }
.btn-row { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }

.contact-divider {
  border-top: 1px solid var(--rule);
  margin-top: 40px;
  padding-top: 24px;
  max-width: 520px;
}
.contact-divider .credential-linkedin { margin-top: 10px; }

.details-card {
  background: var(--surface-alt);
  padding: 32px;
  border-radius: var(--radius);
  align-self: start;
}
.details-card dl { margin: 16px 0 0; }
.detail-row {
  border-top: 1px solid var(--rule);
  padding: 14px 0;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  font-size: 13.5px;
}
.detail-row dt { color: var(--muted); }
.detail-row dd { margin: 0; color: var(--text); }
.detail-row--narrow { grid-template-columns: 140px 1fr; gap: 16px; }
.check { color: var(--oxide); }
.details-more {
  border-top: 1px solid var(--rule);
  padding-top: 18px;
  font-size: 13.5px;
  line-height: 1.8;
  color: var(--text-2);
}

/* Language identity pages (МН / 中文) */
.identity-main { padding: 64px 0 48px; }
.identity-lead { margin-top: 20px; max-width: 560px; line-height: 1.8; }
body.zh .identity-lead { line-height: 1.9; }
.identity-block {
  border-top: 1px solid var(--rule);
  margin-top: 28px;
  padding-top: 20px;
  max-width: 560px;
}
.identity-block .date-line { margin-top: 6px; }
.identity-block p { margin-top: 12px; line-height: 1.8; }
body.zh .identity-block p { line-height: 1.9; }
.zh-name-note {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  color: var(--oxide);
  margin-top: 6px;
}
.details-card .contact-lines { color: var(--text-2); line-height: 1.9; }
.details-card .response-note { margin-top: 10px; }
.details-card .investor-note { font-size: 13.5px; line-height: 1.8; color: var(--text-2); margin-top: 14px; }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1080px) {
  .container,
  .hero-layer { padding-inline: 32px; }
  .hero-meta { right: 32px; }
  .teaser-text { padding-inline: 32px; }
}

@media (max-width: 880px) {
  .card-row,
  .stage-grid,
  .page-head-grid,
  .teaser,
  .plates-3,
  .plates-wide,
  .protocol-grid,
  .contact-band-grid,
  .contact-main-grid { grid-template-columns: 1fr; }

  .stage { padding-top: 56px; }
  .stage-grid,
  .page-head-grid { gap: 24px; }
  .contact-main-grid { gap: 40px; }

  .hero {
    height: auto;
    min-height: 460px;
  }
  .hero-layer { padding-top: 150px; padding-bottom: 96px; }
  .hero-meta {
    position: static;
    text-align: left;
    margin-top: 16px;
  }

  .teaser-media img { min-height: 300px; }
  .teaser-text { padding-block: 44px; }
}

@media (max-width: 680px) {
  .plates-2 { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .container,
  .hero-layer,
  .teaser-text { padding-inline: 20px; }
  .hero-meta { right: 20px; }

  .update-row { grid-template-columns: 1fr; gap: 6px; }
  .entry { grid-template-columns: 1fr; gap: 10px; }
  .details-card { padding: 24px 20px; }
}

@media (max-width: 440px) {
  .detail-row,
  .detail-row--narrow { grid-template-columns: 1fr; gap: 2px; }
}
