    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    :root {
      --cream: #F5EDD7; --off-white: #FAF7F0;
      --chocolate: #2C1A0E; --dark: #0E0906;
      --hazelnut: #B8956A; --gold: #C8963E; --gold-light: #D9B070; --mid-brown: #6B4226;
      --font: 'Lexend', sans-serif;
      --ease-premium: cubic-bezier(0.25, 0.46, 0.45, 0.94);
      --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
      --dur-slow: 1.3s;
    }

    html { scroll-behavior: smooth; font-size: 16px; }
    body { font-family: var(--font); background: var(--dark); color: var(--chocolate); line-height: 24px; overflow-x: hidden; -webkit-font-smoothing: antialiased; }

    /* ── GRAIN ── */
    .grain {
      position: fixed; inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23grain)' opacity='1'/%3E%3C/svg%3E");
      opacity: 0.032; pointer-events: none; z-index: 9000;
    }

    /* ── SCROLLBAR ── */
    ::-webkit-scrollbar { width: 2px; }
    ::-webkit-scrollbar-track { background: var(--dark); }
    ::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

    /* ── NAV ── */
    .nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; justify-content: space-between; align-items: center;
      padding: 32px 64px;
      background: rgba(14, 9, 6, 0.83);
      transition: background 0.8s var(--ease-premium), padding 0.8s var(--ease-premium);
    }
    .nav.scrolled { background: rgba(14, 9, 6, 0.92); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); padding: 20px 64px; }
    .nav-logo { text-decoration: none; flex-shrink: 0; display: flex; align-items: center; }
    .nav-logo img { height: 40px; width: auto; display: block; filter: brightness(0) invert(1); }
    .nav-links { display: flex; gap: 36px; list-style: none; }
    .nav-links a { font-size: .68rem; font-weight: 300; letter-spacing: .16em; text-transform: capitalize; color: rgba(245,237,215,.7); text-decoration: none; transition: color .35s; position: relative; white-space: nowrap; }
    .nav-links a::after { content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 1px; background: var(--gold); transition: width .4s var(--ease-premium); }
    .nav-links a:hover { color: var(--cream); }
    .nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
    .nav-links a.active { color: var(--cream); }
    /* ── SUBMENU ── */
    .nav-links li.has-submenu { position: relative; }
    .nav-links .submenu { position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(-8px); background: rgba(14,9,6,.96); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); border: 1px solid rgba(200,150,62,.15); padding: 18px 0 6px; min-width: 148px; list-style: none; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .3s var(--ease-premium), transform .3s var(--ease-premium), visibility .3s; }
    .nav-links li.has-submenu:hover .submenu { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
    .submenu a { display: block; padding: 10px 20px; font-size: .62rem; font-weight: 300; letter-spacing: .14em; color: rgba(245,237,215,.58); white-space: nowrap; text-decoration: none; transition: color .25s, background .25s; }
    .submenu a::after { display: none !important; }
    .submenu a:hover, .submenu a.active { color: var(--cream); background: rgba(200,150,62,.07); }
    .nav-lang { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
    .nav-lang-btn { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 26px; border-radius: 100px; background: var(--chocolate); color: var(--cream); font-family: var(--font); font-size: .6rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; text-decoration: none; transition: background .3s; }
    .nav-lang-btn:hover { background: var(--mid-brown); }
    .nav-lang a { font-family: var(--font); font-size: .6rem; font-weight: 300; letter-spacing: .14em; text-transform: uppercase; color: rgba(245,237,215,.5); text-decoration: none; transition: color .3s; }
    .nav-lang a:hover { color: var(--cream); }


    /* ── nav fits between 768 and 1200 ── */
    @media (max-width: 1200px) {
      .nav { padding: 26px 36px; }
      .nav.scrolled { padding: 16px 36px; }
      .nav-logo img { height: 34px; }
      .nav-links { gap: 22px; }
      .nav-links a { font-size: .62rem; letter-spacing: .1em; }
      .nav-lang { gap: 8px; }
    }
    @media (max-width: 980px) {
      .nav { padding: 22px 28px; }
      .nav.scrolled { padding: 14px 28px; }
      .nav-logo img { height: 30px; }
      .nav-links { gap: 14px; }
      .nav-links a { font-size: .58rem; letter-spacing: .04em; }
      .nav-lang-btn { width: 30px; height: 22px; }
    }


    /* ── MOBILE MENU ── */
    .nav-burger {
      display: none; position: relative; z-index: 2;
      width: 44px; height: 44px; margin-right: -12px;
      align-items: center; justify-content: center;
      background: none; border: 0; padding: 0; cursor: pointer;
      -webkit-tap-highlight-color: transparent;
    }
    .nav-burger span {
      position: absolute; left: 11px; width: 22px; height: 1px;
      background: var(--cream); border-radius: 1px;
      transition: transform .45s var(--ease-spring);
    }
    .nav-burger span:nth-child(1) { transform: translateY(-4px); }
    .nav-burger span:nth-child(2) { transform: translateY(4px); }
    .nav-burger[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg); }
    .nav-burger[aria-expanded="true"] span:nth-child(2) { transform: rotate(-45deg); }

    .nav-mobile {
      position: fixed; inset: 0; z-index: 90;
      display: flex; flex-direction: column; justify-content: center;
      padding: 116px 28px 44px;
      background: rgba(14, 9, 6, .985);
      backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px);
      opacity: 0; visibility: hidden; pointer-events: none;
      transition: opacity .45s var(--ease-premium), visibility .45s;
    }
    .nav-mobile.open { opacity: 1; visibility: visible; pointer-events: auto; }
    .nav-mobile-list { list-style: none; margin: 0; padding: 0; }
    .nav-mobile-list li { overflow: hidden; }
    .nav-mobile-list a {
      display: block; padding: 15px 0;
      font-family: var(--font); font-size: clamp(1.45rem, 7.5vw, 2rem);
      font-weight: 200; letter-spacing: -.02em; line-height: 1.15;
      color: rgba(245, 237, 215, .8); text-decoration: none;
      border-bottom: 1px solid rgba(245, 237, 215, .08);
      transform: translateY(115%);
      transition: transform .75s var(--ease-spring), color .3s;
    }
    .nav-mobile.open .nav-mobile-list a { transform: translateY(0); }
    .nav-mobile-list li:nth-child(1) a { transition-delay: .05s; }
    .nav-mobile-list li:nth-child(2) a { transition-delay: .10s; }
    .nav-mobile-list li:nth-child(3) a { transition-delay: .15s; }
    .nav-mobile-list li:nth-child(4) a { transition-delay: .20s; }
    .nav-mobile-list li:nth-child(5) a { transition-delay: .25s; }
    .nav-mobile-list li:nth-child(6) a { transition-delay: .30s; }
    .nav-mobile-list a.active { color: var(--gold-light); }
    .nav-mobile-foot {
      display: flex; align-items: center; gap: 20px; margin-top: 40px;
      opacity: 0; transition: opacity .5s .38s var(--ease-premium);
    }
    .nav-mobile.open .nav-mobile-foot { opacity: 1; }
    .nav-mobile-foot a {
      font-family: var(--font); font-size: .66rem; font-weight: 300;
      letter-spacing: .22em; text-transform: uppercase;
      color: rgba(245, 237, 215, .42); text-decoration: none; transition: color .3s;
    }
    .nav-mobile-foot a.is-current { color: var(--cream); }

    @media (max-width: 768px) { .nav-burger { display: flex; } }
    @media (min-width: 769px) { .nav-mobile { display: none; } }
    @media (prefers-reduced-motion: reduce) {
      .nav-mobile, .nav-mobile-list a, .nav-mobile-foot, .nav-burger span { transition-duration: .01ms; }
      .nav-mobile-list a { transform: none; }
    }

    /* ── KEYFRAMES ── */
    @keyframes slideUp { to { opacity: 1; transform: translateY(0); } }
    @keyframes fadeUp  { to { opacity: 1; transform: translateY(0); } }
    @keyframes threadPulse {
      0%, 100% { opacity: .3; transform: scaleY(.8); transform-origin: top; }
      50%       { opacity: 1; transform: scaleY(1);  transform-origin: top; }
    }

    /* ── SCROLL REVEAL ── */
    .r { opacity: 0; transform: translateY(48px); transition: opacity var(--dur-slow) var(--ease-premium), transform var(--dur-slow) var(--ease-premium); }
    .r.on { opacity: 1; transform: translateY(0); }
    .r-left  { opacity: 0; transform: translateX(-52px); transition: opacity var(--dur-slow) var(--ease-premium), transform var(--dur-slow) var(--ease-premium); }
    .r-right { opacity: 0; transform: translateX( 52px); transition: opacity var(--dur-slow) var(--ease-premium), transform var(--dur-slow) var(--ease-premium); }
    .r-left.on, .r-right.on { opacity: 1; transform: translate(0, 0); }

    /* ── HERO ── */
    .cn-hero {
      position: relative; padding: 140px 64px 80px;
      height: clamp(520px, 50vh, 780px);
      overflow: hidden; background: var(--dark);
    }
    .cn-hero-video {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      object-fit: cover;
      opacity: 0.32;
      pointer-events: none;
    }
    .cn-hero-bg {
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 80% 60% at 72% 18%, rgba(44,26,14,.6) 0%, transparent 65%),
        radial-gradient(ellipse 50% 70% at 12% 88%, rgba(200,150,62,.06) 0%, transparent 55%),
        linear-gradient(158deg, rgba(200,150,62,.04) 0%, transparent 50%);
    }
    .cn-hero-vline {
      position: absolute; top: 0; left: 64px;
      width: 1px; height: 100%;
      background: linear-gradient(to bottom, transparent 5%, rgba(200,150,62,.22) 30%, rgba(200,150,62,.1) 75%, transparent);
    }
    .cn-hero-content {
      position: relative; z-index: 2; width: 100%; max-width: 1300px;
    }
    .cn-hero-eyebrow {
      display: block; font-size: .7rem; font-weight: 300; letter-spacing: .36em; text-transform: uppercase;
      color: var(--gold-light); margin-bottom: 36px;
      opacity: 0; transform: translateY(16px); animation: fadeUp 1s .4s var(--ease-premium) forwards;
    }
    .cn-hero-title {
      font-size: clamp(38px, 5vw, 80px); font-weight: 700;
      line-height: .88; color: var(--cream); letter-spacing: -.028em;
    }
    .cn-hero-title .line { display: block; overflow: hidden; }
    .cn-hero-title .line-inner { display: block; opacity: 0; transform: translateY(110%); animation: slideUp 1.3s var(--ease-spring) forwards; }
    .cn-hero-title .line:nth-child(1) .line-inner { animation-delay: .2s; }
    .cn-hero-title .line:nth-child(2) .line-inner { animation-delay: .4s; color: var(--gold-light); font-weight: 200; font-style: italic; }
    .cn-hero-sub {
      max-width: 540px; margin-top: 48px;
      font-size: clamp(.84rem, 1vw, .96rem); font-weight: 300; line-height: 1.88;
      color: rgba(245,237,215,.52); letter-spacing: .022em;
      opacity: 0; animation: fadeUp 1s 1s var(--ease-premium) forwards;
    }
    .cn-hero-scroll { display: none; }
    .cn-hero-scroll span { font-size: .6rem; font-weight: 300; letter-spacing: .28em; text-transform: uppercase; color: rgba(245,237,215,.45); writing-mode: vertical-rl; }
    .cn-hero-scroll-thread { width: 1px; height: 64px; background: linear-gradient(to bottom, var(--gold), transparent); animation: threadPulse 2.4s ease-in-out infinite; }

    /* ── CONNECT SECTION ── */
    .cn-section { background: var(--chocolate); padding: clamp(96px,11vw,152px) 0; }
    .cn-inner {
      max-width: 1400px; margin: 0 auto; padding: 0 64px;
      display: grid; grid-template-columns: 1.2fr 0.8fr;
      gap: clamp(64px,7vw,120px); align-items: start;
    }

    /* — Form side — */
    .cn-form-hd { margin-bottom: 56px; }
    .cn-form-label { display: block; font-size: .68rem; font-weight: 300; letter-spacing: .34em; text-transform: uppercase; color: var(--hazelnut); margin-bottom: 24px; }
    .cn-form-title { font-size: clamp(30px, 4vw, 58px); font-weight: 300; line-height: 1.06; letter-spacing: -.016em; color: var(--cream); }
    .cn-form-title em { font-style: italic; font-weight: 200; color: var(--gold-light); }
    .cn-form-rule { width: 44px; height: 1px; background: rgba(200,150,62,.4); margin: 32px 0 0; }

    .cn-form { display: flex; flex-direction: column; gap: 30px; }
    .cn-row { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
    .cn-field { display: flex; flex-direction: column; gap: 9px; }
    .cn-label {
      font-size: .55rem; font-weight: 300; letter-spacing: .32em; text-transform: uppercase;
      color: rgba(245,237,215,.32);
    }
    .cn-input, .cn-select, .cn-textarea {
      background: transparent; border: none;
      border-bottom: 1px solid rgba(245,237,215,.1);
      color: var(--cream); font-family: var(--font);
      font-size: .9rem; font-weight: 300;
      padding: 11px 0 13px; outline: none;
      transition: border-color .35s var(--ease-premium);
      width: 100%; letter-spacing: .025em;
    }
    .cn-input::placeholder, .cn-textarea::placeholder { color: rgba(245,237,215,.15); }
    .cn-input:focus, .cn-select:focus, .cn-textarea:focus { border-color: var(--gold); }

    .cn-textarea { resize: none; min-height: 148px; line-height: 1.72; }

    .cn-select-wrap { position: relative; }
    .cn-select-wrap::after {
      content: ''; position: absolute; right: 2px; top: 15px;
      width: 7px; height: 7px;
      border-right: 1px solid rgba(245,237,215,.28);
      border-bottom: 1px solid rgba(245,237,215,.28);
      transform: rotate(45deg); pointer-events: none;
    }
    .cn-select { appearance: none; -webkit-appearance: none; cursor: pointer; padding-right: 24px; }
    .cn-select option { background: var(--chocolate); color: var(--cream); }

    .cn-submit-row { display: flex; align-items: center; margin-top: 10px; }
    .cn-submit {
      display: inline-flex; align-items: center; gap: 18px;
      background: var(--gold); color: var(--dark);
      font-family: var(--font); font-size: .62rem; font-weight: 600;
      letter-spacing: .22em; text-transform: uppercase;
      padding: 18px 44px; border: none; cursor: pointer;
      transition: background .3s var(--ease-premium), transform .15s;
    }
    .cn-submit:hover { background: var(--gold-light); transform: translateY(-1px); }
    .cn-submit:active  { transform: translateY(0); }
    .cn-submit-arrow {
      display: inline-flex; align-items: center;
      width: 18px; height: 1px; background: currentColor;
      position: relative; flex-shrink: 0;
    }
    .cn-submit-arrow::after {
      content: ''; position: absolute; right: -1px; top: -3px;
      width: 7px; height: 7px;
      border-right: 1.5px solid currentColor;
      border-top: 1.5px solid currentColor;
      transform: rotate(45deg);
    }

    /* Success state */
    .cn-success {
      display: none; padding: 52px 0;
    }
    .cn-success.visible { display: block; animation: fadeUp .7s var(--ease-premium) forwards; }
    .cn-success-check {
      width: 52px; height: 52px; border-radius: 50%;
      border: 1px solid rgba(200,150,62,.5);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 32px;
    }
    .cn-success-check svg { width: 20px; height: 20px; }
    .cn-success-title {
      font-size: clamp(26px, 3.4vw, 44px); font-weight: 300;
      color: var(--cream); letter-spacing: -.012em; margin-bottom: 18px; line-height: 1.1;
    }
    .cn-success-title em { font-style: italic; font-weight: 200; color: var(--gold-light); }
    .cn-success-body {
      font-size: .9rem; font-weight: 300; color: rgba(245,237,215,.44);
      line-height: 1.88; max-width: 420px; letter-spacing: .02em;
    }

    /* — Info side — */
    .cn-info-sticky { position: sticky; top: 128px; }
    .cn-info-block { padding: 36px 0; border-top: 1px solid rgba(245,237,215,.065); }
    .cn-info-block:first-child { padding-top: 0; border-top: none; }
    .cn-info-lbl { display: block; font-size: .57rem; font-weight: 300; letter-spacing: .34em; text-transform: uppercase; color: var(--hazelnut); margin-bottom: 18px; }
    .cn-info-name { font-size: .94rem; font-weight: 300; color: var(--cream); letter-spacing: .02em; line-height: 1.5; }
    .cn-info-addr {
      font-style: normal; font-size: .84rem; font-weight: 300;
      color: rgba(245,237,215,.42); letter-spacing: .025em;
      line-height: 1.88; margin-top: 12px;
    }
    .cn-info-hours { font-size: .74rem; font-weight: 300; color: rgba(245,237,215,.26); letter-spacing: .04em; margin-top: 12px; }
    .cn-info-email {
      display: inline-block; font-size: .84rem; font-weight: 300;
      color: var(--gold-light); letter-spacing: .04em; text-decoration: none;
      margin-top: 16px; transition: color .3s;
    }
    .cn-info-email:hover { color: var(--cream); }

    .cn-desk-note { font-size: .74rem; font-weight: 300; color: rgba(245,237,215,.3); letter-spacing: .04em; margin-bottom: 22px; }
    .cn-contacts { display: flex; flex-direction: column; gap: 22px; }
    .cn-contact-name { font-size: .9rem; font-weight: 400; color: var(--cream); letter-spacing: .025em; }
    .cn-contact-email {
      display: inline-block; font-size: .76rem; font-weight: 300;
      color: rgba(245,237,215,.38); letter-spacing: .04em; text-decoration: none;
      margin-top: 5px; transition: color .3s;
    }
    .cn-contact-email:hover { color: var(--gold-light); }

    .cn-parent-name { font-size: .94rem; font-weight: 300; color: var(--cream); letter-spacing: .02em; line-height: 1.5; }
    .cn-parent-note { font-size: .76rem; font-weight: 300; color: rgba(245,237,215,.32); letter-spacing: .04em; margin-top: 8px; }
    .cn-parent-link {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: .6rem; font-weight: 300; letter-spacing: .2em; text-transform: uppercase;
      color: var(--gold-light); text-decoration: none; margin-top: 18px; transition: color .3s;
    }
    .cn-parent-link:hover { color: var(--cream); }
    .cn-parent-link-arrow { font-size: .72rem; transition: transform .3s; }
    .cn-parent-link:hover .cn-parent-link-arrow { transform: translate(2px,-2px); }

    .cn-legal-list { display: flex; flex-direction: column; gap: 11px; }
    .cn-legal-item { display: flex; gap: 14px; font-size: .78rem; font-weight: 300; color: rgba(245,237,215,.36); letter-spacing: .025em; line-height: 1.5; }
    .cn-legal-key { color: rgba(245,237,215,.17); min-width: 90px; flex-shrink: 0; font-size: .7rem; letter-spacing: .05em; text-transform: uppercase; padding-top: 1px; }

    /* ── FOOTER ── */
    footer { background: var(--dark); padding: 88px 0 52px; }
    .footer-grid { max-width: 1400px; margin: 0 auto; padding: 0 64px 64px; display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 64px; border-bottom: 1px solid rgba(245,237,215,.055); }
    .footer-brand .brand-mark { display: inline-block; }
    .footer-brand .brand-mark img { height: 34px; width: auto; display: block; filter: brightness(0) invert(1); opacity: .92; transition: opacity .3s; }
    .footer-brand .brand-mark:hover img { opacity: 1; }
    .footer-brand .brand-tag { margin-top: 18px; font-size: .82rem; font-weight: 300; line-height: 1.78; color: rgba(245,237,215,.36); letter-spacing: .03em; max-width: 280px; }
    .footer-col h4 { font-size: .63rem; font-weight: 400; letter-spacing: .3em; text-transform: uppercase; color: var(--hazelnut); margin-bottom: 28px; }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 16px; }
    .footer-col a { font-size: .84rem; font-weight: 300; letter-spacing: .05em; color: rgba(245,237,215,.48); text-decoration: none; transition: color .32s; }
    .footer-col a:hover { color: var(--cream); }
    .footer-bottom { max-width: 1400px; margin: 44px auto 0; padding: 0 64px; display: flex; justify-content: space-between; align-items: center; }
    .footer-bottom p, .footer-bottom-links a { font-size: .67rem; font-weight: 300; letter-spacing: .13em; color: rgba(245,237,215,.22); text-decoration: none; transition: color .3s; }
    .footer-bottom-links { display: flex; gap: 36px; list-style: none; }
    .footer-bottom-links a:hover { color: rgba(245,237,215,.55); }

    /* ── RESPONSIVE ── */
    @media (max-width: 1100px) {
      .cn-inner { grid-template-columns: 1fr; gap: 80px; }
      .cn-info-sticky { position: relative; top: auto; }
    }
    @media (max-width: 768px) {
      .nav { padding: 24px 28px; }
      .nav.scrolled { padding: 16px 28px; }
      .nav-links, .nav-lang { display: none; }
      .cn-hero { padding: 120px 28px 60px; }
      .cn-hero-vline { left: 28px; }
      .cn-section { padding: 72px 0; }
      .cn-inner { padding-left: 28px; padding-right: 28px; grid-template-columns: 1fr; gap: 80px; }
      .cn-row { grid-template-columns: 1fr; gap: 24px; }
      footer { padding: 64px 0 40px; }
      .footer-grid { padding-left: 28px; padding-right: 28px; grid-template-columns: 1fr; gap: 44px; }
      .footer-bottom { padding-left: 28px; padding-right: 28px; flex-direction: column; gap: 20px; text-align: center; }
      .footer-bottom-links { justify-content: center; }
    }

/* ─────────────────────────────────────────
   FORM: honeypot + server-side error notice
   ───────────────────────────────────────── */

/* Off-screen rather than display:none — some bots skip hidden inputs. */
/* .cn-form sets display:flex, which outranks the browser's own
   [hidden] { display: none }. Without this the form stays on screen next to
   the success panel after a successful send. */
.cn-form[hidden] {
  display: none !important;
}

.cn-hp {
  position: absolute !important;
  left: -9999px !important;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.cn-form-error {
  margin-bottom: 28px;
  padding: 14px 18px;
  border-left: 2px solid rgba(200, 80, 60, .8);
  background: rgba(200, 80, 60, .07);
  color: #8d3a2c;
  font-size: 14px;
  line-height: 1.5;
}

.cn-input.is-invalid,
.cn-textarea.is-invalid {
  border-bottom-color: rgba(200, 80, 60, .7);
}

/* ─────────────────────────────────────────
   MOBILE TAP TARGETS
   The design's link sizes come from desktop pointer accuracy. On touch the
   mobile-menu language switcher measured 19x24px and the footer links 17px
   tall — well under the 44x44 minimum in WCAG 2.5.5 and Apple's HIG.
   Padding only: nothing here moves the visual design, the hit area just
   grows around the text.
   ───────────────────────────────────────── */
@media (max-width: 768px) {

  /* Language switcher inside the mobile menu */
  .nav-mobile-foot {
    gap: 4px;
  }

  .nav-mobile-foot a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    padding: 0 8px;
    font-size: .78rem;
  }

  /* Footer navigation */
  .footer-col ul li a,
  .footer-bottom-links a {
    display: inline-block;
    padding: 12px 0;
    line-height: 20px;
  }

  .footer-col ul li,
  .footer-bottom-links li {
    line-height: 1;
  }

  .footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 20px;
  }

  /* Hero call-to-action: the primary action on most pages, and only ~24px
     tall from its text alone. */
  .hero-cta,
  .jn-hero-cta,
  .hz-hero-cta,
  .s-cta-btn {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  /* Logos: wide enough to hit, but short. */
  .nav-logo,
  .brand-mark {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }

  /* Footer bottom row: 44px tall already, widen the short ones. */
  .footer-bottom-links a {
    min-width: 44px;
    text-align: center;
  }
}
