/* =============================================================================
   Kalima Labs · كلمة
   "Illuminated atelier" — warm parchment, ink, and antique gold, with the
   khātim seal as a recurring motif. The parent house above two apps:
   Kalima Chat (the word) and Gardens of the Quran (the Word). Each child keeps
   its own jewel palette; the parent stays paper-and-gold neutral.
   ========================================================================== */

/* ----------------------------------------------------------------------------
   Design tokens
   -------------------------------------------------------------------------- */
:root {
  /* Parchment & ink (the parent's own signature) */
  --paper: #f7f1e4;
  --paper-2: #f1e8d6;
  --paper-card: #fcf8ef;
  --ink: #1c1a14;
  --ink-soft: #5b5446;
  --ink-faint: #938a78;

  /* Antique manuscript gold */
  --gold: #b1822c;
  --gold-bright: #dcb15f;
  --gold-deep: #8a6418;
  --line: rgba(28, 26, 20, 0.12);
  --line-gold: rgba(177, 130, 44, 0.34);

  /* Gardens jewel-tones (emerald + gold) */
  --emerald: #15694d;
  --emerald-bright: #2aa87c;
  --emerald-ink: #0c1511;
  --emerald-deep: #103f2e;

  /* Kalima Chat jewel-tones (indigo → azure → cyan, contained to its card) */
  --indigo: #1e3a8a;
  --azure: #2f6df0;
  --cyan: #18b6c9;

  /* Type */
  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --body: "Hanken Grotesk", system-ui, -apple-system, sans-serif;
  --ar: "Aref Ruqaa", "Amiri", serif;
  --quran: "Amiri", serif;

  /* Shape & depth */
  --radius: 14px;
  --radius-lg: 22px;
  --radius-pill: 100px;
  --maxw: 1140px;
  --shadow-soft: 0 14px 40px -22px rgba(28, 22, 8, 0.42);
  --shadow-card: 0 30px 70px -40px rgba(28, 22, 8, 0.55);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ----------------------------------------------------------------------------
   Reset & base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
  letter-spacing: -0.006em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  position: relative;
}
svg {
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
::selection {
  background: rgba(177, 130, 44, 0.26);
  color: var(--ink);
}

h1,
h2,
h3,
h4 {
  font-family: var(--display);
  font-weight: 460;
  line-height: 1.06;
  letter-spacing: -0.018em;
  color: var(--ink);
  font-optical-sizing: auto;
}

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 26px;
}

.ital {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 200;
  background: var(--ink);
  color: var(--paper);
  padding: 12px 18px;
  border-radius: 0 0 10px 0;
}
.skip:focus {
  left: 0;
}

/* ----------------------------------------------------------------------------
   Atmosphere: faint star tessellation + grain
   -------------------------------------------------------------------------- */
.atmos {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.atmos-tess {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='72' height='72' viewBox='0 0 72 72'%3E%3Cg fill='none' stroke='%23b1822c' stroke-width='0.6' opacity='0.12'%3E%3Cpath d='M36 6 66 36 36 66 6 36Z'/%3E%3Cpath d='M36 18 54 36 36 54 18 36Z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 72px 72px;
  -webkit-mask-image: radial-gradient(120% 80% at 50% 0%, #000 0%, transparent 72%);
  mask-image: radial-gradient(120% 80% at 50% 0%, #000 0%, transparent 72%);
}
.atmos-grain {
  position: absolute;
  inset: 0;
  opacity: 0.55;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
}
main,
.nav,
.footer {
  position: relative;
  z-index: 1;
}

/* ----------------------------------------------------------------------------
   The khātim seal
   -------------------------------------------------------------------------- */
.seal svg {
  width: 100%;
  height: 100%;
}
.seal .s-out {
  stroke: var(--ink);
  stroke-width: 2.4;
}
.seal .s-in {
  stroke: var(--gold);
  stroke-width: 2.2;
}
.seal .s-dot {
  fill: var(--gold);
}
.seal--sm {
  width: 30px;
  height: 30px;
  display: inline-block;
  flex: none;
}

/* ----------------------------------------------------------------------------
   Nav
   -------------------------------------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: saturate(1.3) blur(10px);
  -webkit-backdrop-filter: saturate(1.3) blur(10px);
  background: rgba(247, 241, 228, 0.72);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.nav.is-stuck {
  border-bottom-color: var(--line);
  background: rgba(247, 241, 228, 0.86);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.16rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.brand-labs {
  color: var(--gold-deep);
}
.brand-word {
  white-space: nowrap;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 0.95rem;
  font-weight: 500;
}
.nav-links a {
  color: var(--ink-soft);
  transition: color 0.18s;
  position: relative;
}
.nav-links a:hover {
  color: var(--ink);
}
.nav-mail {
  padding: 8px 17px;
  border: 1px solid var(--line-gold);
  border-radius: var(--radius-pill);
  color: var(--gold-deep) !important;
}
.nav-mail:hover {
  background: rgba(177, 130, 44, 0.08);
}

/* ----------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--body);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s, background 0.2s, color 0.2s;
}
.btn-i {
  width: 18px;
  height: 18px;
}
.btn-primary {
  background: var(--ink);
  color: var(--paper);
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover {
  transform: translateY(-2px);
  background: #2a261c;
  box-shadow: 0 18px 44px -20px rgba(28, 22, 8, 0.6);
}
.btn-ghost {
  border-color: var(--line);
  color: var(--ink);
  background: rgba(252, 248, 239, 0.5);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-deep);
  transform: translateY(-2px);
}

/* ----------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  padding: clamp(64px, 12vw, 132px) 0 clamp(40px, 7vw, 72px);
  overflow: hidden;
}
.hero-watermark {
  position: absolute;
  top: 50%;
  right: -4%;
  transform: translateY(-46%);
  font-family: var(--ar);
  font-size: clamp(13rem, 38vw, 40rem);
  line-height: 1;
  color: var(--gold);
  opacity: 0.07;
  pointer-events: none;
  user-select: none;
  direction: rtl;
}
.hero-inner {
  position: relative;
  max-width: 880px;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--ar);
  font-size: 1.04rem;
  color: var(--gold-deep);
  margin-bottom: 30px;
  letter-spacing: 0;
}
.kicker-rule {
  width: 46px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.hero-title {
  font-size: clamp(2.3rem, 7.4vw, 5.4rem);
  font-weight: 430;
  letter-spacing: -0.03em;
  line-height: 1;
  max-width: 18ch;
  text-wrap: balance;
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-deep);
}
.hero-lead {
  font-size: clamp(1.12rem, 1.7vw, 1.4rem);
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 38ch;
  margin-top: 28px;
}
.hero-lead b {
  color: var(--ink);
  font-weight: 600;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  list-style: none;
  margin-top: 44px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #6b6354;
}
.hero-trust li {
  display: flex;
  align-items: center;
  gap: 9px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero-trust li::before {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--gold);
  transform: rotate(45deg);
}

/* ----------------------------------------------------------------------------
   Verse bridge
   -------------------------------------------------------------------------- */
.verse {
  padding: clamp(44px, 7vw, 78px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(80% 140% at 50% 0%, rgba(177, 130, 44, 0.07), transparent 70%),
    var(--paper-2);
}
.verse-inner {
  position: relative;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.verse-ar {
  font-family: var(--quran);
  font-size: clamp(1.9rem, 5vw, 3.1rem);
  font-weight: 700;
  color: var(--emerald);
  direction: rtl;
  line-height: 1.7;
  margin-bottom: 18px;
}
.verse-en {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.08rem, 2vw, 1.4rem);
  color: var(--ink-soft);
  font-weight: 400;
  line-height: 1.5;
}
.verse-cite {
  display: block;
  margin-top: 14px;
  font-size: 0.82rem;
  font-style: normal;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.verse-orn {
  position: absolute;
  top: 50%;
  width: 60px;
  height: 24px;
  color: var(--gold);
  transform: translateY(-50%);
  opacity: 0.7;
}
.verse-orn.left {
  left: -8px;
}
.verse-orn.right {
  right: -8px;
}
@media (max-width: 720px) {
  .verse-orn {
    display: none;
  }
}

/* ----------------------------------------------------------------------------
   Apps diptych
   -------------------------------------------------------------------------- */
.apps {
  padding: clamp(64px, 10vw, 116px) 0;
}
.apps-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(40px, 6vw, 64px);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 18px;
}
.eyebrow-dot {
  width: 7px;
  height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
}
.eyebrow--light {
  color: var(--gold-bright);
}
.apps-head h2,
.ethos-head h2 {
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  font-weight: 440;
}
.apps-sub,
.ethos-sub {
  margin-top: 16px;
  font-size: 1.1rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

.diptych {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
@media (max-width: 880px) {
  .diptych {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }
}

.appcard {
  position: relative;
}
.appcard-frame {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: clamp(26px, 3.4vw, 40px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: var(--card-ink, #fff);
  background: var(--card-bg);
  box-shadow: var(--shadow-card);
  isolation: isolate;
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}
/* illuminated double-rule frame */
.appcard-frame::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid var(--card-frame, rgba(255, 255, 255, 0.22));
  border-radius: calc(var(--radius-lg) - 8px);
  pointer-events: none;
  z-index: 2;
  transition: border-color 0.4s;
}
.appcard-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--card-glow);
  opacity: 0.9;
  z-index: 0;
  pointer-events: none;
}
.appcard:hover .appcard-frame {
  transform: translateY(-6px);
  box-shadow: 0 44px 90px -42px rgba(12, 14, 9, 0.7);
}
.appcard:hover .appcard-frame::before {
  border-color: var(--card-frame-hover, rgba(255, 255, 255, 0.45));
}
.appcard-frame > * {
  position: relative;
  z-index: 3;
}

.appcard--kalima {
  --card-bg: linear-gradient(158deg, #16234e 0%, #1e3a8a 46%, #1c6a86 100%);
  --card-glow: radial-gradient(120% 90% at 85% 8%, rgba(24, 182, 201, 0.42), transparent 55%),
    radial-gradient(90% 70% at 8% 95%, rgba(47, 109, 240, 0.4), transparent 60%);
  --card-frame: rgba(160, 214, 235, 0.28);
  --card-frame-hover: rgba(160, 214, 235, 0.55);
  --card-accent: #8fe3ef;
}
.appcard--gardens {
  --card-bg: linear-gradient(158deg, #0c1d16 0%, #134032 48%, #15694d 100%);
  --card-glow: radial-gradient(120% 90% at 85% 8%, rgba(42, 168, 124, 0.4), transparent 55%),
    radial-gradient(90% 70% at 10% 95%, rgba(177, 130, 44, 0.34), transparent 60%);
  --card-frame: rgba(220, 177, 95, 0.32);
  --card-frame-hover: rgba(220, 177, 95, 0.6);
  --card-accent: #e9c877;
}

.appcard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 26px;
}
.appglyph {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  flex: none;
}
.appglyph svg {
  width: 32px;
  height: 32px;
}
.appglyph--gardens .g-out {
  stroke: var(--card-accent);
  stroke-width: 2.4;
}
.appglyph--gardens .g-dot {
  fill: #e9c877;
}
.appglyph--kalima .g-bubble {
  stroke: var(--card-accent);
  stroke-width: 2.2;
  stroke-linejoin: round;
  fill: rgba(143, 227, 239, 0.1);
}
.appglyph--kalima .g-wave {
  stroke: #fff;
  stroke-width: 2.2;
  stroke-linecap: round;
}
.appcard-ar {
  font-family: var(--ar);
  font-size: 1.5rem;
  color: var(--card-accent);
  direction: rtl;
  line-height: 1;
  opacity: 0.92;
}
.appcard-name {
  font-size: clamp(1.55rem, 3vw, 2.05rem);
  font-weight: 440;
  color: #fff;
  letter-spacing: -0.02em;
}
.appcard-tag {
  margin-top: 8px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--card-accent);
  letter-spacing: -0.01em;
}
.appcard-desc {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.02rem;
  line-height: 1.6;
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin-top: 22px;
}
.chips li {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 6px 13px;
  border-radius: var(--radius-pill);
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.appcard-foot {
  margin-top: auto;
  padding-top: 26px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px 16px;
}
.applink {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--display);
  font-style: italic;
  font-size: 1.18rem;
  color: #fff;
  transition: gap 0.25s var(--ease), color 0.2s;
}
.applink svg {
  width: 17px;
  height: 17px;
  color: var(--card-accent);
  transition: transform 0.25s var(--ease);
}
.appcard:hover .applink {
  color: var(--card-accent);
}
.appcard:hover .applink svg {
  transform: translate(3px, -3px);
}
.applink-note {
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

/* ----------------------------------------------------------------------------
   Ethos (dark emerald band)
   -------------------------------------------------------------------------- */
.ethos {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 11vw, 128px) 0;
  background:
    linear-gradient(180deg, var(--emerald-ink), #0a1813 60%, var(--emerald-ink));
  color: #e8efe9;
}
.ethos::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='72' height='72' viewBox='0 0 72 72'%3E%3Cg fill='none' stroke='%23e9c877' stroke-width='0.6' opacity='0.10'%3E%3Cpath d='M36 6 66 36 36 66 6 36Z'/%3E%3Cpath d='M36 18 54 36 36 54 18 36Z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 72px 72px;
  opacity: 0.6;
  pointer-events: none;
}
.ethos-glow {
  position: absolute;
  top: -20%;
  left: 50%;
  width: 80vw;
  height: 60vh;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(42, 168, 124, 0.22), transparent 65%);
  pointer-events: none;
}
.ethos .wrap {
  position: relative;
}
.ethos-head {
  text-align: center;
  max-width: 660px;
  margin: 0 auto clamp(44px, 7vw, 70px);
}
.ethos-head h2 {
  color: #fdf8ec;
}
.ethos-head .ethos-sub {
  color: rgba(232, 239, 233, 0.74);
}
.tenets {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 900px) {
  .tenets {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 520px) {
  .tenets {
    grid-template-columns: 1fr;
  }
}
.tenet {
  padding: 28px 24px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(233, 200, 119, 0.16);
  transition: transform 0.3s var(--ease), border-color 0.3s, background 0.3s;
}
.tenet:hover {
  transform: translateY(-4px);
  border-color: rgba(233, 200, 119, 0.4);
  background: rgba(255, 255, 255, 0.05);
}
.tenet-i {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 11px;
  margin-bottom: 18px;
  color: var(--gold-bright);
  background: rgba(233, 200, 119, 0.1);
  border: 1px solid rgba(233, 200, 119, 0.22);
}
.tenet-i svg {
  width: 23px;
  height: 23px;
}
.tenet h3 {
  font-size: 1.22rem;
  font-weight: 500;
  color: #fdf8ec;
  margin-bottom: 8px;
}
.tenet p {
  font-size: 0.96rem;
  line-height: 1.58;
  color: rgba(232, 239, 233, 0.66);
}

/* ----------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer {
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  padding: clamp(54px, 7vw, 80px) 0 34px;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}
.footer-brand {
  max-width: 360px;
}
.brand--footer {
  font-size: 1.3rem;
}
.footer-blurb {
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.6;
}
.footer-ar {
  margin-top: 16px;
  font-family: var(--ar);
  font-size: 1.5rem;
  color: var(--emerald);
  direction: rtl;
}
.footer-cols {
  display: flex;
  gap: 64px;
}
.footer-col h4 {
  font-family: var(--body);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  color: var(--ink-soft);
  font-size: 0.98rem;
  padding: 5px 0;
  transition: color 0.18s;
}
.footer-col a:hover {
  color: var(--gold-deep);
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: clamp(36px, 5vw, 54px);
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
  color: var(--ink-faint);
}
.footer-dua {
  font-family: var(--quran);
  font-size: 1.18rem;
  color: var(--gold-deep);
  direction: rtl;
}

/* ----------------------------------------------------------------------------
   Reveal-on-scroll
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: calc(var(--d, 0) * 90ms);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.js .reveal[data-d="1"] {
  --d: 1;
}
.js .reveal[data-d="2"] {
  --d: 2;
}
.js .reveal[data-d="3"] {
  --d: 3;
}
.js .reveal[data-d="4"] {
  --d: 4;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ----------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 620px) {
  body {
    font-size: 16px;
  }
  .nav-links {
    gap: 16px;
  }
  .nav-links a:not(.nav-mail) {
    display: none;
  }
  .hero-title {
    font-size: clamp(2.05rem, 9.4vw, 3rem);
    max-width: none;
  }
  .hero-lead {
    max-width: 100%;
  }
  .footer-cols {
    gap: 40px;
  }
}
