/* Inter (SIL Open Font License 1.1), self-hosted variable font 400-800: latin, latin-ext, vietnamese. */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../fonts/inter-vietnamese.woff2") format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../fonts/inter-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../fonts/inter-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Localis landing — design system
   moss #1D4634 · cream #F1F3E8 · orange #FD5200 (CTA) · blue #2886F2 (focus only)
   Inter 400/500/600/700/800. Display 800, tracking -0.02em. Body 500, 17px, lh 1.55. */

:root {
  --moss: #1D4634;
  --moss-deep: #112B21;
  --cream: #F1F3E8;
  --orange: #FD5200;
  --orange-dark: #E04A00;
  --blue: #2886F2;
  --text-2: #525252;
  --grey: #A3A3A3;
  --line: rgba(29, 70, 52, 0.16);
  --line-light: rgba(241, 243, 232, 0.28);
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --container: 1200px;
  --gutter: 24px;
  --radius: 12px;
  --header-h: 72px;
}
@media (min-width: 768px) { :root { --gutter: 48px; } }

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font);
  font-weight: 500;
  font-size: 17px;
  line-height: 1.55;
  color: var(--moss);
  background: var(--cream);
}
img, picture { display: block; max-width: 100%; }
img { height: auto; }

h1, h2, h3, h4 {
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0 0 0.5em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.5rem, 5.6vw, 4.25rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.75rem); max-width: 22ch; }
h3 { font-size: 1.375rem; letter-spacing: -0.01em; line-height: 1.25; }
p { margin: 0 0 1em; max-width: 68ch; }
ul, ol { max-width: 68ch; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 0.15em; }
a:hover { text-decoration-thickness: 2px; }
strong { font-weight: 700; }
address { font-style: normal; }
dl { margin: 0; }
dd { margin: 0; }

:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; border-radius: 4px; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: -999px; top: 8px; z-index: 100;
  background: var(--moss); color: var(--cream); padding: 0.6rem 1rem; border-radius: 8px;
  text-decoration: none; font-weight: 600;
}
.skip-link:focus { left: 16px; }

.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 8vw, 112px); }
.section-moss { background: var(--moss); color: var(--cream); }
.section-moss .lead, .section-moss dd, .section-moss p { color: var(--cream); }
.section-moss .label, .section-moss .try-label { color: rgba(241, 243, 232, 0.8); }

.lead { font-size: 1.125rem; color: var(--text-2); }
.label { font-size: 0.9375rem; color: var(--text-2); margin-bottom: 0.75rem; }

/* Buttons. Orange = open the app. Outline = partner actions.
   19px / 700 keeps white-on-orange above the WCAG large-text ratio. */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.1875rem; line-height: 1; letter-spacing: -0.01em;
  padding: 0.9rem 1.5rem; border-radius: 999px; text-decoration: none;
  border: 2px solid transparent; cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn-lg { padding: 1.05rem 1.8rem; }
.btn-primary { background: var(--orange); border-color: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); box-shadow: 0 6px 18px rgba(253, 82, 0, 0.25); }
.btn-outline { background: transparent; border-color: var(--moss); color: var(--moss); }
.btn-outline:hover { background: var(--moss); color: var(--cream); }
.section-moss .btn-outline { border-color: var(--cream); color: var(--cream); }
.section-moss .btn-outline:hover { background: var(--cream); color: var(--moss); }
.text-link { font-weight: 700; text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 0.2em; }
.cta-row { display: flex; flex-wrap: wrap; gap: 0.75rem 1.5rem; align-items: center; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--cream); border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 1.25rem; min-height: var(--header-h); }
.brand { display: inline-flex; flex-shrink: 0; }
.brand img { height: 30px; width: auto; }
.brand-mark { display: none; }
.site-nav { margin-left: auto; display: flex; align-items: center; gap: 1.75rem; }
.site-nav ul { display: flex; gap: 1.5rem; list-style: none; margin: 0; padding: 0; }
.site-nav ul a { text-decoration: none; font-weight: 600; font-size: 1rem; }
.site-nav ul a:hover { text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 0.25em; }
.lang-switch { display: inline-flex; align-items: center; gap: 0.2rem; color: var(--grey); }
.lang-switch button {
  background: none; border: 0; font: inherit; font-weight: 600; font-size: 0.9375rem;
  color: var(--text-2); cursor: pointer; padding: 0.3rem 0.35rem; border-radius: 6px;
}
.lang-switch button[aria-pressed="true"] { color: var(--moss); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 0.25em; }
.lang-switch-mobile { display: none; }
.btn-header { flex-shrink: 0; padding: 0.7rem 1.1rem; }
.nav-toggle {
  display: none; width: 44px; height: 44px; border: 0; background: none; cursor: pointer;
  align-items: center; justify-content: center; border-radius: 8px; color: var(--moss);
}
.nav-toggle-bars, .nav-toggle-bars::before, .nav-toggle-bars::after {
  display: block; width: 22px; height: 2px; background: currentColor; border-radius: 2px; position: relative;
}
.nav-toggle-bars::before, .nav-toggle-bars::after { content: ""; position: absolute; left: 0; }
.nav-toggle-bars::before { top: -7px; }
.nav-toggle-bars::after { top: 7px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 899px) {
  .header-inner { gap: 0.75rem; }
  .brand img { height: 26px; }
  .lang-switch-mobile { display: inline-flex; margin-left: auto; }
  .lang-switch-desktop { display: none; }
  .btn-header { font-size: 1.0625rem; padding: 0.6rem 0.85rem; }
  .nav-toggle { display: inline-flex; }
  .site-nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    margin: 0; padding: 0.75rem var(--gutter) 1.25rem;
    background: var(--cream); border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: flex-start; gap: 0.5rem;
  }
  .site-nav.is-open { display: flex; }
  .site-nav ul { flex-direction: column; gap: 0.25rem; width: 100%; }
  .site-nav ul a { display: block; padding: 0.6rem 0; font-size: 1.125rem; }
}
@media (max-width: 419px) {
  .header-inner { gap: 0.5rem; }
  .btn-header { font-size: 1rem; padding: 0.55rem 0.7rem; }
  .brand-full { display: none; }
  .brand-mark { display: block; height: 30px; }
  .lang-switch-mobile { gap: 0; }
  .lang-switch button { padding: 0.3rem 0.25rem; }
}

/* Hero */
.hero { padding-block: clamp(40px, 6vw, 88px) clamp(48px, 6vw, 88px); overflow: hidden; }
.hero-grid { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 900px) { .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 3rem; } }
.hero h1 { margin-bottom: 1.25rem; max-width: 14ch; }
.hero .lead { font-size: clamp(1.0625rem, 1.5vw, 1.25rem); max-width: 34em; }
.hero .cta-row { margin: 1.75rem 0 1.25rem; }
.hero-note { font-size: 0.9375rem; color: var(--text-2); margin: 0; }

.phone-stack { position: relative; width: 100%; aspect-ratio: 1 / 1.2; }
.phone {
  position: absolute; bottom: 0; width: 56%; aspect-ratio: 9 / 19.5;
  border: 8px solid var(--moss); border-radius: 17% / 7.8%;
  background: var(--moss); overflow: hidden;
  box-shadow: 0 24px 48px rgba(29, 70, 52, 0.18);
  transform-origin: bottom center;
}
.phone picture, .phone img { width: 100%; height: 100%; }
.phone img { object-fit: cover; object-position: top; border-radius: 13% / 6%; }
.phone-ask { left: 0; z-index: 2; }
.phone-explore { left: 44%; bottom: 9%; z-index: 1; transform: scale(0.96); }

@media (max-width: 899px) {
  /* Compact hero: headline, buttons and the top of the app screen fit one phone screen */
  .hero { padding-block: 28px 40px; }
  .hero-grid { gap: 1.5rem; }
  .hero h1 { font-size: clamp(2.125rem, 9vw, 2.75rem); margin-bottom: 0.85rem; max-width: none; }
  .hero .lead { font-size: 1rem; margin-bottom: 0; }
  .hero .cta-row { margin: 1.15rem 0 0.75rem; gap: 0.6rem; }
  .hero .cta-row .btn-lg { padding: 0.8rem 1.1rem; }
  .hero-visual { display: flex; justify-content: center; }
  .phone-stack { aspect-ratio: auto; width: auto; display: flex; justify-content: center; }
  .hero .phone { position: static; width: min(250px, 66vw); transform: none; }
  .hero .phone:not(.phone-ask) { display: none; }
}

.fade-up { animation: fade-up 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) both; }
.hero-visual.fade-up { animation-delay: 0.12s; }
@keyframes fade-up { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .fade-up { animation: none; } }

/* Three ways */
.cols-3 { display: grid; gap: 2.5rem 2rem; margin-top: 2.5rem; }
@media (min-width: 768px) { .cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.pillar {
  display: flex; flex-direction: column; scroll-margin-top: calc(var(--header-h) + 16px);
  background: #fff; border: 1px solid var(--line); border-radius: 16px; overflow: hidden;
  box-shadow: 0 8px 24px rgba(29, 70, 52, 0.06);
}
.pillar picture { aspect-ratio: 4 / 3; overflow: hidden; background: var(--moss); }
.pillar img { width: 100%; height: 100%; object-fit: cover; }
.pillar-body { display: flex; flex-direction: column; flex: 1; padding: 1.5rem 1.5rem 1.75rem; }
.pillar h3 { font-size: 1.5rem; margin-bottom: 0.6rem; }
.pillar h3::before { content: ""; display: block; width: 32px; height: 3px; background: var(--moss); margin-bottom: 0.9rem; border-radius: 2px; }
.pillar p { color: var(--text-2); }
.pillar ul { padding-left: 1.1rem; margin: 0 0 1.5rem; color: var(--text-2); }
.pillar li { margin-bottom: 0.45rem; }

/* The app */
.cols-4 { display: grid; gap: 1.75rem 1.5rem; margin-top: 2rem; }
@media (min-width: 600px) { .cols-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1000px) { .cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.app-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1.5rem 3rem; }
.app-head h2 { margin-bottom: 0; }
.app-head .btn { margin-bottom: 0.35rem; }
.app-promise { list-style: none; padding: 0; margin: 1.5rem 0 0; display: flex; flex-wrap: wrap; gap: 0.5rem 0; max-width: none; font-size: 1.0625rem; font-weight: 600; color: var(--cream); }
.app-promise li + li::before { content: "\00B7"; margin-inline: 0.75rem; color: rgba(241, 243, 232, 0.55); }
@media (max-width: 599px) { .app-promise { display: grid; gap: 0.35rem; } .app-promise li + li::before { content: none; } }
.app-demo { display: grid; gap: 2.5rem; align-items: center; margin-top: 2.5rem; }
@media (min-width: 900px) { .app-demo { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 4rem; } }
.app-tabs { display: grid; gap: 0.5rem; }
.app-tab {
  text-align: left; background: none; border: 0; border-left: 3px solid transparent; border-radius: 0 12px 12px 0;
  padding: 1rem 1.25rem; color: var(--cream); font: inherit; cursor: pointer;
}
.app-tab:hover { background: rgba(241, 243, 232, 0.06); }
.app-tab.is-active { background: rgba(241, 243, 232, 0.1); border-left-color: var(--cream); }
.app-tab-title { display: block; font-weight: 800; font-size: 1.25rem; letter-spacing: -0.01em; margin-bottom: 0.3rem; }
.app-tab-desc { display: block; font-size: 1rem; line-height: 1.5; color: rgba(241, 243, 232, 0.85); }
.app-phone { display: flex; justify-content: center; }
.phone-demo { position: relative; width: min(340px, 100%); border-color: var(--moss-deep); background: var(--moss-deep); box-shadow: 0 24px 48px rgba(0, 0, 0, 0.25); }
.app-panel { position: absolute; inset: 0; }
.app-panel[hidden] { display: none; }
.app-panel picture, .app-panel img { width: 100%; height: 100%; }
.app-panel img { object-fit: cover; object-position: top; border-radius: 13% / 6%; }
@media (max-width: 899px) {
  .app-phone { order: -1; }
  .phone-demo { width: min(280px, 72vw); }
  .app-tab { padding: 0.85rem 1rem; }
}
.try-asking { margin: 3rem 0 0; }
.try-label { margin-bottom: 0.75rem; font-size: 0.9375rem; }
.prompts { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.75rem; max-width: none; }
@media (min-width: 768px) { .prompts { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.prompts li { border: 1px solid var(--line-light); border-radius: var(--radius); padding: 1rem 1.25rem; font-size: 1rem; }

/* Two-column layout helper (Places intro, About) */
.two-col { display: grid; gap: 2.5rem; align-items: start; }
@media (min-width: 900px) { .two-col { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 4rem; } }

/* We open doors: brand statement + definition of a localis */
.doors-grid { align-items: center; }
.doors-copy h2 { max-width: 16ch; }
.doors-copy .lead { margin-bottom: 1.75rem; }
.definition { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 1.25rem 0; margin-bottom: 1.5rem; max-width: 60ch; }
.definition dt { font-weight: 800; font-size: 1.375rem; letter-spacing: -0.01em; margin-bottom: 0.4rem; }
.definition dt em { font-weight: 500; font-style: italic; font-size: 1rem; color: var(--text-2); margin-left: 0.4rem; }
.definition dd { color: var(--text-2); }
.doors-cta { margin: 0; }
.doors-cta .text-link { font-size: 1.0625rem; }
.doors-figure { margin: 0; }
.doors-figure picture { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 5; background: var(--moss); }
.doors-figure img { width: 100%; height: 100%; object-fit: cover; }
figcaption { font-size: 0.9375rem; color: var(--text-2); margin-top: 0.75rem; }
@media (max-width: 899px) { .doors-figure picture { aspect-ratio: 4 / 3; } }

/* Experiences: mosaic of image tiles, every tile opens the app */
.experiences { border-top: 1px solid var(--line); }
.exp-title { text-align: center; margin-inline: auto; max-width: 18ch; }
.mosaic {
  list-style: none; padding: 0; margin: 2.5rem 0 0; max-width: none;
  display: grid; gap: 1rem; grid-template-columns: repeat(4, minmax(0, 1fr)); grid-auto-rows: 270px;
}
.tile { position: relative; border-radius: var(--radius); overflow: hidden; background: var(--moss); }
.tile-wide { grid-column: span 2; }
.tile a { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; text-decoration: none; color: var(--cream); }
.tile picture, .tile img { position: absolute; inset: 0; width: 100%; height: 100%; }
.tile img { object-fit: cover; transition: transform 0.4s ease; }
.tile a::after { content: ""; position: absolute; inset: 0; background: rgba(29, 70, 52, 0.52); transition: background-color 0.2s ease; }
.tile a:hover::after, .tile a:focus-visible::after { background: rgba(29, 70, 52, 0.62); }
.tile a:hover img { transform: scale(1.03); }
.tile-text { position: relative; z-index: 1; text-align: center; padding: 1.5rem; max-width: 30ch; }
.tile-text strong { display: block; font-size: 1.375rem; font-weight: 800; letter-spacing: -0.01em; line-height: 1.15; margin-bottom: 0.4rem; }
.tile-text span { display: block; font-size: 0.9375rem; line-height: 1.45; color: rgba(241, 243, 232, 0.9); }
.tile-quote { display: flex; align-items: center; justify-content: center; }
.tile-quote::after { content: ""; position: absolute; inset: 0; background: rgba(29, 70, 52, 0.62); }
.tile-quote blockquote { position: relative; z-index: 1; margin: 0; padding: 1.5rem; }
.tile-quote p { margin: 0; text-align: center; font-weight: 700; font-size: 1.125rem; line-height: 1.4; color: var(--cream); max-width: 20ch; }
.exp-cta { margin: 2rem 0 0; text-align: center; max-width: none; }
.exp-cta .text-link { font-size: 1.0625rem; }
@media (max-width: 899px) {
  .mosaic { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 220px; }
}
@media (max-width: 599px) {
  .mosaic { grid-template-columns: 1fr; grid-auto-rows: 200px; gap: 0.75rem; }
  .tile-wide { grid-column: auto; }
  .tile-text strong { font-size: 1.25rem; }
}
@media (prefers-reduced-motion: reduce) { .tile img, .tile a::after { transition: none; } .tile a:hover img { transform: none; } }

/* About */
.about-grid { align-items: start; }
.about-figure { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 5; background: var(--moss); }
.about-figure img { width: 100%; height: 100%; object-fit: cover; }
.founders { list-style: none; padding: 0; margin: 2rem 0 0; display: flex; flex-wrap: wrap; gap: 1.5rem 2.5rem; max-width: none; }
.founders li { display: flex; align-items: center; gap: 1rem; }
.founders picture { width: 72px; height: 72px; border-radius: 50%; overflow: hidden; background: var(--moss); flex-shrink: 0; }
.founders img { width: 100%; height: 100%; object-fit: cover; }
.founders strong { display: block; }
.founders span { color: var(--text-2); font-size: 0.9375rem; }
.values { margin-top: 3.5rem; padding-top: 2.5rem; border-top: 1px solid var(--line); }
.values dt { font-weight: 700; margin-bottom: 0.25rem; }
.values dd { color: var(--text-2); }

/* Become a Localis: copy left, photo right */
.become-grid { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 900px) { .become-grid { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: 4rem; } }
.roles { display: grid; gap: 1.5rem 2rem; margin: 2rem 0; padding-top: 1.5rem; border-top: 1px solid var(--line-light); }
@media (min-width: 600px) { .roles { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.roles dt { font-size: 1.125rem; margin-bottom: 0.25rem; }
.become .roles dd { color: rgba(241, 243, 232, 0.88); }
.become .lead { margin-bottom: 1.75rem; max-width: 30em; }
.become-figure picture { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 5; background: var(--moss-deep); }
.become-figure img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 899px) { .become-figure picture { aspect-ratio: 4 / 3; } }

/* Footer */
.site-footer { background: var(--moss-deep); color: var(--cream); padding-block: 64px 32px; }
.footer-grid { display: grid; gap: 2.5rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.5fr 1.1fr 1fr 1fr; gap: 2rem; } }
.site-footer h2 { font-size: 1rem; font-weight: 700; letter-spacing: 0; margin-bottom: 0.75rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 0.45rem; }
.site-footer a:not(.btn) { color: var(--cream); }
.site-footer p { margin-bottom: 0.75rem; }
.footer-brand img { height: 28px; width: auto; margin-bottom: 1rem; }
.footer-brand .btn { margin-top: 0.5rem; }
.footer-contact span { color: rgba(241, 243, 232, 0.7); font-size: 0.9375rem; }
.footer-bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1rem;
  margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--line-light); font-size: 0.9375rem;
}
.footer-bottom p { margin: 0; }
.pencil { display: inline-flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.pencil img { height: 22px; width: auto; }
.pencil:hover span { text-decoration: underline; }

/* Sub-pages */
.page { padding-block: clamp(48px, 7vw, 96px); }
.page h1 { font-size: clamp(2.25rem, 4.5vw, 3.25rem); margin-bottom: 1rem; }
.prose { max-width: 72ch; }
.prose h2 { font-size: 1.5rem; margin-top: 2.5rem; max-width: none; }
.prose h3 { font-size: 1.2rem; margin-top: 1.75rem; }
.prose h4 { font-size: 1.05rem; margin-top: 1.25rem; }
.prose p, .prose li { color: var(--text-2); }
.prose ul { padding-left: 1.2rem; }
.prose li { margin-bottom: 0.4rem; }
.lang-note { font-size: 0.9375rem; color: var(--text-2); }
.lang-note:empty { display: none; }
.page-meta { color: var(--text-2); font-size: 0.9375rem; }
.contact-cards { display: grid; gap: 1.5rem; margin: 2rem 0; }
@media (min-width: 700px) { .contact-cards { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.contact-cards h2 { font-size: 1rem; margin: 0 0 0.35rem; }
.contact-cards p { margin: 0; }
