/* ============================================================
   FONTES LAW FIRM — landing page
   Palette (brand): sand #CCBCAF · teal #439A86 · slate #46494C
   No icons: headlines, spacing, and color do the work.
   Single light theme. One accent: teal. Pill buttons, soft cards.
   ============================================================ */

:root {
  --sand:        #ccbcaf;
  --sand-50:     #f6f1ec;
  --sand-100:    #ece2d9;
  --teal:        #439a86;
  --teal-dark:   #357a6b;
  --teal-deep:   #2f6c5e;
  --slate:       #46494c;
  --slate-900:   #2c2e30;
  --ink:         #34373a;
  --muted:       #6c6f72;

  --bg:          #fbf8f4;
  --surface:     #ffffff;

  --radius:      14px;
  --radius-lg:   22px;
  --shadow:      0 18px 50px rgba(70, 73, 76, 0.10);
  --shadow-sm:   0 6px 20px rgba(70, 73, 76, 0.08);

  --maxw:        1180px;
  --ease:        cubic-bezier(0.16, 1, 0.3, 1);

  --font-serif:  "Playfair Display", Georgia, serif;
  --font-sans:   "Figtree", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  margin: 0; background: var(--bg); color: var(--ink);
  font-family: var(--font-sans); font-size: 1.0625rem; line-height: 1.65;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}

img { display: block; max-width: 100%; }
h1, h2, h3 { font-family: var(--font-serif); font-weight: 600; line-height: 1.08; margin: 0; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 2.5rem); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-sans); font-weight: 600; font-size: .98rem; letter-spacing: .01em;
  padding: .9rem 1.7rem; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; white-space: nowrap;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.btn--solid { background: var(--teal); color: #fff; box-shadow: 0 10px 24px rgba(67,154,134,.28); }
.btn--solid:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(67,154,134,.34); }
.btn--solid:active { transform: translateY(0) scale(.985); }
.btn--ghost { background: rgba(255,255,255,.10); color: #fff; border-color: rgba(255,255,255,.65); backdrop-filter: blur(4px); }
.btn--ghost:hover { background: rgba(255,255,255,.92); color: var(--slate); border-color: #fff; transform: translateY(-2px); }
.btn--full { width: 100%; }
.btn--sm { padding: .6rem 1.25rem; font-size: .9rem; }

.br-lg { display: inline; }

/* ============================================================
   NAV
   ============================================================ */
.nav { position: fixed; inset: 0 0 auto 0; z-index: 50; border-bottom: 1px solid transparent;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease); }
.nav__inner { max-width: var(--maxw); margin-inline: auto; height: 72px;
  padding: .9rem clamp(1.25rem, 4vw, 2.5rem); display: flex; align-items: center; gap: 1.5rem; }
.nav__logo { display: inline-flex; align-items: center; }
.nav__logo img { height: 38px; width: auto; }
.nav__logo-dark { display: none; }
.nav.is-scrolled .nav__logo-white { display: none; }
.nav.is-scrolled .nav__logo-dark { display: block; }

.nav__links { display: flex; gap: 1.9rem; margin-left: auto; }
.nav__links a { font-weight: 500; font-size: .98rem; color: #fff; position: relative; padding: .25rem 0; }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0; background: var(--teal); transition: width .3s var(--ease); }
.nav__links a:hover::after { width: 100%; }
.nav__cta { margin-left: .25rem; }

/* language toggle (EN / ES) */
.nav__lang { display: inline-flex; border: 1px solid rgba(255,255,255,.55); border-radius: 999px; overflow: hidden; flex: none; }
.lang__opt { background: transparent; border: 0; cursor: pointer; font-family: var(--font-sans); font-weight: 600; font-size: .8rem; letter-spacing: .04em; color: #fff; padding: .35rem .7rem; transition: background .25s var(--ease), color .25s var(--ease); }
.lang__opt.is-active { background: #fff; color: var(--slate); }
.nav.is-scrolled .nav__lang { border-color: var(--sand-100); }
.nav.is-scrolled .lang__opt { color: var(--slate); }
.nav.is-scrolled .lang__opt.is-active { background: var(--teal); color: #fff; }

.nav.is-scrolled { background: rgba(251,248,244,.92); backdrop-filter: blur(10px); box-shadow: var(--shadow-sm); border-color: var(--sand-100); }
.nav.is-scrolled .nav__links a { color: var(--slate); }

/* CSS hamburger (no icon library) */
.nav__toggle { display: none; width: 30px; height: 22px; position: relative; margin-left: auto; background: none; border: 0; cursor: pointer; color: #fff; }
.nav.is-scrolled .nav__toggle { color: var(--slate); }
.nav__toggle span { position: absolute; left: 0; right: 0; height: 2px; background: currentColor; border-radius: 2px; transition: transform .3s var(--ease), opacity .2s var(--ease), top .3s var(--ease); }
.nav__toggle span:nth-child(1) { top: 2px; }
.nav__toggle span:nth-child(2) { top: 10px; }
.nav__toggle span:nth-child(3) { top: 18px; }
.nav.menu-open .nav__toggle span:nth-child(1) { top: 10px; transform: rotate(45deg); }
.nav.menu-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.menu-open .nav__toggle span:nth-child(3) { top: 10px; transform: rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 100dvh; display: flex; align-items: center; overflow: hidden; background: #3e3c3a; }
.hero__media { position: absolute; inset: 0; z-index: 0; background: #3e3c3a; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 60% 50%; opacity: 0; animation: heroFade 2.2s var(--ease) .15s forwards; }
@keyframes heroFade { from { opacity: 0; } to { opacity: 1; } }
.hero__scrim { position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(44,46,48,.84) 0%, rgba(44,46,48,.55) 42%, rgba(44,46,48,.12) 78%),
    linear-gradient(0deg, rgba(44,46,48,.55) 0%, rgba(44,46,48,0) 45%); }

.hero__content { position: relative; z-index: 1; max-width: 840px; padding-top: 84px; padding-left: clamp(1.25rem, 6vw, 4rem); padding-right: clamp(1.25rem, 4vw, 2.5rem); }
.hero__eyebrow { color: rgba(255,255,255,.9); font-weight: 600; letter-spacing: .14em; text-transform: uppercase; font-size: .8rem; margin: 0 0 1.2rem; }
.hero__title { color: #fff; font-size: clamp(2.6rem, 5.4vw, 4.1rem); letter-spacing: -.01em; text-shadow: 0 2px 30px rgba(0,0,0,.25); }
.hero__sub { color: rgba(255,255,255,.92); font-size: clamp(1.05rem, 1.6vw, 1.28rem); line-height: 1.6; max-width: 44ch; margin: 1.5rem 0 2.3rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ============================================================
   SECTION SHELL
   ============================================================ */
.section-head { max-width: 760px; margin-bottom: clamp(2.5rem, 5vw, 3.75rem); }
.section-title { font-size: clamp(2.1rem, 4.4vw, 3.25rem); color: var(--slate-900); letter-spacing: -.01em; }
.section-lead { color: var(--muted); font-size: 1.15rem; margin: 1.1rem 0 0; max-width: 60ch; }

.services, .about, .memberships, .contact, .countries { padding-block: clamp(4.5rem, 9vw, 7.5rem); }

/* ============================================================
   SERVICES — typographic, two columns, no icons
   ============================================================ */
.services { background: var(--bg); }
.services__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); }
.service { background: var(--surface); border: 1px solid var(--sand-100); border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 3.5vw, 2.75rem); position: relative; overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease); }
.service::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--teal); transform: scaleY(0); transform-origin: top; transition: transform .4s var(--ease); }
.service:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.service:hover::before { transform: scaleY(1); }
.service__num { font-family: var(--font-serif); font-style: italic; font-size: 1.1rem; color: var(--teal); }
.service__title { font-size: clamp(1.7rem, 3vw, 2.3rem); color: var(--slate-900); margin: .6rem 0 1rem; }
.service__desc { color: var(--muted); margin: 0; max-width: 48ch; }

/* ============================================================
   BAND — second hero
   ============================================================ */
.band { position: relative; min-height: 70vh; display: flex; align-items: center; justify-content: center; overflow: hidden; text-align: center; }
.band__media { position: absolute; inset: -12% 0; z-index: 0; will-change: transform; }
.band__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 55%; }
.band__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(44,46,48,.55), rgba(44,46,48,.42)); }
.band__content { position: relative; z-index: 1; max-width: 880px; padding: 4rem clamp(1.5rem, 5vw, 3rem); }
.band__quote { font-family: var(--font-serif); font-style: italic; font-weight: 500; color: #fff; font-size: clamp(1.6rem, 3.6vw, 2.6rem); line-height: 1.3; margin: 0; text-shadow: 0 2px 24px rgba(0,0,0,.3); }
.band__attr { color: rgba(255,255,255,.85); letter-spacing: .14em; text-transform: uppercase; font-size: .82rem; font-weight: 600; margin: 1.6rem 0 0; }

/* ============================================================
   ABOUT — wide image, no overlay
   ============================================================ */
.about { background: var(--sand-50); }
.about__subhead { font-family: var(--font-serif); font-weight: 500; font-size: clamp(1.45rem, 2.8vw, 2.05rem); line-height: 1.32; color: var(--slate-900); margin: 1.25rem 0 0; max-width: 28ch; }
.about__media { margin-bottom: clamp(2.25rem, 5vw, 3.5rem); }
.about__media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow); aspect-ratio: 16/8.5; object-fit: cover; object-position: center 30%; }
.about__cols { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); }
.about__lead { font-size: clamp(1.35rem, 2vw, 1.6rem); line-height: 1.5; color: var(--ink); margin: 0 0 1.2rem; }
.about__col p { color: var(--muted); margin: 0 0 1.2rem; }
.about__col p.about__lead { color: var(--ink); }
.about__barlink { margin-top: 1.8rem; }
.about__col p { color: var(--muted); margin: 0 0 1.1rem; }
.about__facts { margin: 1.8rem 0 0; padding: 0; display: grid; gap: 0; }
.about__facts div { display: grid; grid-template-columns: 130px 1fr; gap: 1rem; padding: .9rem 0; border-top: 1px solid var(--sand-100); }
.about__facts div:last-child { border-bottom: 1px solid var(--sand-100); }
.about__facts dt { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--teal); font-weight: 600; padding-top: .15rem; }
.about__facts dd { margin: 0; color: var(--slate); font-weight: 500; }

/* ============================================================
   VALUES — teal color block (color does the work)
   ============================================================ */
.values { background: var(--teal); color: #fff; padding-block: clamp(4.5rem, 9vw, 7rem); }
.values__head { max-width: 820px; margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.values__eyebrow { color: rgba(255,255,255,.82); letter-spacing: .14em; text-transform: uppercase; font-size: .82rem; font-weight: 600; margin: 0 0 1.1rem; }
.values__title { color: #fff; font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -.01em; }
.values__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0 clamp(1rem, 2.5vw, 2rem); }
.value { padding: 1.75rem clamp(0.75rem, 1.5vw, 1.25rem) 0.5rem 0; border-top: 2px solid rgba(255,255,255,.4); }
.value__index { display: block; font-family: var(--font-serif); font-style: italic; font-size: clamp(2.4rem, 4vw, 3.4rem); line-height: 1; color: rgba(255,255,255,.6); margin-bottom: 1.1rem; }
.value h3 { color: #fff; font-size: clamp(1.5rem, 2.4vw, 2rem); margin: 0; line-height: 1.22; font-weight: 500; }

/* ============================================================
   MEMBERSHIPS — typographic list, no icons
   ============================================================ */
.memberships { background: var(--bg); }
.memberships__list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0 clamp(2rem, 5vw, 4rem); border-top: 1px solid var(--sand-100); }
.memberships__list li { font-family: var(--font-serif); font-size: clamp(1.25rem, 2.2vw, 1.6rem); color: var(--slate-900); padding: 1.4rem 0 1.4rem 2.5rem; border-bottom: 1px solid var(--sand-100); position: relative; transition: padding-left .3s var(--ease), color .3s var(--ease); }
.memberships__list li::before { content: ""; position: absolute; left: 0; top: 50%; width: 1.4rem; height: 2px; background: var(--teal); transform: translateY(-50%); transition: width .3s var(--ease); }
.memberships__list li a { display: block; color: inherit; }
.memberships__list li:hover { padding-left: 3rem; color: var(--teal-deep); }
.memberships__list li:hover::before { width: 2rem; }
.memberships__cta { margin-top: 2.75rem; }
.link-arrow { display: inline-flex; align-items: center; gap: .5rem; color: var(--teal); font-weight: 600; border-bottom: 1.5px solid transparent; transition: gap .25s var(--ease), border-color .25s var(--ease); }
.link-arrow::after { content: "\2192"; transition: transform .25s var(--ease); }
.link-arrow:hover { border-color: var(--teal); }
.link-arrow:hover::after { transform: translateX(4px); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--slate-900); color: rgba(255,255,255,.86); }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: start; }
.contact__eyebrow { color: var(--teal); font-weight: 600; letter-spacing: .14em; text-transform: uppercase; font-size: .8rem; margin: 0 0 1rem; }
.contact .section-title { color: #fff; }
.contact__lead { color: rgba(255,255,255,.78); font-size: 1.12rem; margin: 1rem 0 2rem; max-width: 46ch; }
.contact__details { margin: 0; }
.contact__details div { display: grid; grid-template-columns: 110px 1fr; gap: 1rem; padding: .95rem 0; border-top: 1px solid rgba(255,255,255,.14); }
.contact__details div:last-child { border-bottom: 1px solid rgba(255,255,255,.14); }
.contact__details dt { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--teal); font-weight: 600; padding-top: .15rem; }
.contact__details dd { margin: 0; color: #fff; font-weight: 500; }
.contact__details a:hover { text-decoration: underline; }

.contact__form { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-lg); padding: clamp(1.5rem, 3vw, 2.25rem); display: grid; gap: 1.1rem; }
.field { display: grid; gap: .45rem; }
.field label { font-size: .9rem; font-weight: 600; color: rgba(255,255,255,.9); }
.field__opt { font-weight: 400; color: rgba(255,255,255,.55); }
.field input, .field textarea { width: 100%; font-family: var(--font-sans); font-size: 1rem; color: #fff;
  background: rgba(255,255,255,.06); border: 1.5px solid rgba(255,255,255,.18); border-radius: 10px; padding: .8rem .95rem;
  transition: border-color .25s var(--ease), background .25s var(--ease); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--teal); background: rgba(255,255,255,.10); }
.field textarea { resize: vertical; }
.field__error { font-size: .82rem; color: #f0a8a0; display: none; }
.field.is-invalid input, .field.is-invalid textarea { border-color: #e08a80; }
.field.is-invalid .field__error { display: block; }
.contact__success { color: #9fe3d3; font-weight: 500; margin: .25rem 0 0; }

/* GHL embedded form — the form's own card provides the surface, so no double frame */
.contact__form--embed { background: transparent; border: none; padding: 0; border-radius: 0; box-shadow: none; }
.ghl-form { width: 100%; min-height: 489px; border: none; border-radius: var(--radius-lg); display: block; background: transparent; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--slate); color: rgba(255,255,255,.8); padding: clamp(3rem,6vw,4.5rem) 0 2rem; }
.footer__inner { display: grid; grid-template-columns: 1.4fr 1fr 1.4fr; gap: 2.5rem; align-items: start; }
.footer__logo { height: 40px; margin-bottom: 1rem; }
.footer__brand p { color: rgba(255,255,255,.6); max-width: 40ch; font-size: .95rem; margin: 0; }
.footer__nav { display: grid; gap: .7rem; }
.footer__nav a { color: rgba(255,255,255,.8); transition: color .2s var(--ease); }
.footer__nav a:hover { color: #fff; }
.footer__actions { display: flex; align-items: center; gap: 1.25rem; margin-bottom: 1.4rem; }
.footer__totop { color: var(--teal); font-weight: 600; }
.footer__totop:hover { text-decoration: underline; }
.footer__legal p { margin: 0 0 .6rem; font-size: .88rem; color: rgba(255,255,255,.6); }
.footer__disclaimer { color: rgba(255,255,255,.42) !important; font-size: .8rem !important; }
.footer__privacy { background: none; border: 0; padding: 0; margin-top: .4rem; cursor: pointer;
  font-family: var(--font-sans); font-size: .88rem; color: rgba(255,255,255,.6);
  text-decoration: underline; text-underline-offset: 3px; transition: color .2s var(--ease); }
.footer__privacy:hover { color: #fff; }

/* ============================================================
   PRIVACY MODAL
   ============================================================ */
.modal { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 1.5rem;
  visibility: hidden; opacity: 0; transition: opacity .4s var(--ease), visibility .4s var(--ease); }
.modal.is-open { visibility: visible; opacity: 1; }
.modal__overlay { position: absolute; inset: 0; background: rgba(28,30,32,.62); backdrop-filter: blur(3px); }
.modal__dialog { position: relative; width: min(640px, 100%); max-height: 85vh; overflow-y: auto;
  background: var(--surface); border-radius: var(--radius-lg); padding: clamp(1.75rem, 4vw, 2.75rem);
  box-shadow: 0 30px 80px rgba(28,30,32,.4); transform: translateY(18px) scale(.98);
  transition: transform .45s var(--ease); }
.modal.is-open .modal__dialog { transform: none; }
.modal__close { position: absolute; top: 1rem; right: 1.1rem; width: 40px; height: 40px; border: 0; border-radius: 999px;
  background: var(--sand-50); color: var(--slate); font-size: 1.6rem; line-height: 1; cursor: pointer;
  transition: background .2s var(--ease), transform .2s var(--ease); }
.modal__close:hover { background: var(--sand-100); transform: rotate(90deg); }
.modal__tag { display: inline-block; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 600;
  color: var(--teal); background: rgba(67,154,134,.12); padding: .3rem .7rem; border-radius: 999px; margin-bottom: 1rem; }
.modal__title { font-size: clamp(1.8rem, 3.5vw, 2.4rem); color: var(--slate-900); margin: 0 0 1.25rem; }
.modal__body { color: var(--muted); }
.modal__body h3 { font-family: var(--font-serif); font-size: 1.2rem; color: var(--slate-900); margin: 1.5rem 0 .4rem; }
.modal__body p { margin: 0 0 .9rem; max-width: none; }
.modal__body p:first-child { color: var(--slate); background: var(--sand-50); border-radius: var(--radius); padding: .9rem 1.1rem; }
body.modal-open { overflow: hidden; }

@media (prefers-reduced-motion: reduce) {
  .modal, .modal__dialog { transition: none; }
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(38px); transition: opacity 1.5s var(--ease), transform 1.5s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.service.reveal:nth-child(2) { transition-delay: .22s; }
.value.reveal:nth-child(2) { transition-delay: .16s; }
.value.reveal:nth-child(3) { transition-delay: .32s; }
.value.reveal:nth-child(4) { transition-delay: .48s; }
.memberships__list li.reveal:nth-child(2) { transition-delay: .12s; }
.memberships__list li.reveal:nth-child(3) { transition-delay: .24s; }
.memberships__list li.reveal:nth-child(4) { transition-delay: .36s; }
.memberships__list li.reveal:nth-child(5) { transition-delay: .48s; }
.memberships__list li.reveal:nth-child(6) { transition-delay: .60s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .services__grid { grid-template-columns: 1fr; }
  .about__cols { grid-template-columns: 1fr; }
  .values__grid { grid-template-columns: repeat(2, 1fr); }
  .memberships__list { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 1.8rem; }
  .br-lg { display: none; }
}

@media (max-width: 760px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: block; }
  .nav.menu-open .nav__links { display: flex; flex-direction: column; gap: 0;
    position: absolute; top: 72px; left: 0; right: 0;
    background: rgba(251,248,244,.98); backdrop-filter: blur(10px);
    padding: .5rem clamp(1.25rem,4vw,2.5rem) 1.25rem; box-shadow: var(--shadow-sm); border-bottom: 1px solid var(--sand-100); }
  .nav.menu-open .nav__links a { color: var(--slate); padding: .9rem 0; border-bottom: 1px solid var(--sand-100); }
  .hero__content { padding-left: clamp(1.25rem, 4vw, 2.5rem); }
  .band { min-height: 60vh; }
  .values__grid { grid-template-columns: 1fr; }
  .about__facts div { grid-template-columns: 1fr; gap: .2rem; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .band__media { transform: none !important; }
  .hero__media img { opacity: 1 !important; animation: none !important; }
  * { transition-duration: .01ms !important; }
}

/* ============================================================
   COUNTRIES / REACH
   ============================================================ */
.countries { background: var(--surface); }
.countries__num { color: var(--teal); font-style: italic; }
.countries__grid { list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  border-top: 1px solid var(--sand-100); }
.countries__grid li { font-family: var(--font-serif); font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  color: var(--slate-900); padding: 1.05rem 1rem 1.05rem 0; border-bottom: 1px solid var(--sand-100); }

/* ============================================================
   LANGUAGE TOGGLE — mobile placement
   ============================================================ */
@media (max-width: 760px) {
  .nav__lang { margin-left: auto; }
  .nav__toggle { margin-left: .75rem; }
}
