/* ==========================================================================
   Infeauxsec LLC — site styles
   ========================================================================== */

:root {
  --ink: #0B1530;
  --ink-soft: #1E2A45;
  --muted: #4A5670;
  --muted-2: #6B768C;
  --line: #E3E8F2;
  --line-strong: #CBD5E6;
  --surface: #FFFFFF;
  --surface-alt: #F4F6FB;
  --night: #070B1A;
  --night-2: #03060F;
  --night-text: #C9D2E3;
  --night-muted: #AEB8CC;
  --teal: #22D3DA;
  --teal-ink: #04121A;
  --teal-dark: #0E8A8C;
  --blue: #3B63D6;
  --blue-dark: #2C4BA8;
  --blue-soft: #8EA8FF;
  --green: #34D399;

  --font-head: "Sora", "Segoe UI", system-ui, sans-serif;
  --font-body: "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;

  --wrap: 1248px;
  --gutter: clamp(20px, 5vw, 96px);
  --section: clamp(64px, 9vw, 112px);
  --radius-s: 10px;
  --radius-m: 16px;
  --radius-l: 22px;
  --radius-xl: 28px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
svg { flex-shrink: 0; }
a { color: var(--blue); }
a:hover { color: var(--blue-dark); }
h1, h2, h3 { font-family: var(--font-head); font-weight: 600; margin: 0; letter-spacing: -0.02em; }
p { margin: 0; }
button, input, select, textarea { font: inherit; }

:focus-visible { outline: 3px solid var(--teal); outline-offset: 3px; border-radius: 4px; }

.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 100;
  padding: 12px 18px; background: var(--teal); color: var(--teal-ink);
  font-weight: 700; border-radius: var(--radius-s); text-decoration: none;
}
.skip-link:focus { top: 16px; }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.wrap { width: 100%; max-width: calc(var(--wrap) + 2 * var(--gutter)); margin: 0 auto; padding-inline: var(--gutter); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 56px; padding: 0 28px; border-radius: 12px;
  font-weight: 700; font-size: 17px; text-decoration: none; cursor: pointer;
  border: 1.5px solid transparent; transition: background-color .2s, border-color .2s, color .2s;
}
.btn-teal { background: var(--teal); color: var(--teal-ink); }
.btn-teal:hover { background: #4FE0E6; color: var(--teal-ink); }
.btn-ghost-light { border-color: rgba(255,255,255,.35); color: #FFFFFF; font-weight: 600; }
.btn-ghost-light:hover { border-color: #FFFFFF; color: #FFFFFF; background: rgba(255,255,255,.06); }
.btn-outline { border-color: var(--line-strong); color: var(--ink); min-height: 52px; padding: 0 24px; }
.btn-outline:hover { border-color: var(--ink); color: var(--ink); }
.btn-blue { background: var(--blue); color: #FFFFFF; border: none; }
.btn-blue:hover { background: var(--blue-dark); color: #FFFFFF; }
.btn-plain { background: #FFFFFF; border-color: var(--line-strong); color: var(--ink); font-weight: 600; min-height: 48px; font-size: 16px; }

.text-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 15px; text-decoration: none; min-height: 44px; }

/* ---------- Top bar ---------- */
.topbar { background: var(--night-2); color: var(--night-muted); font-size: 14px; }
.topbar .wrap { min-height: 44px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.topbar span, .topbar a { display: inline-flex; align-items: center; gap: 8px; }
.topbar a { color: #E6ECF7; text-decoration: none; }
.topbar a:hover { color: var(--teal); }
.topbar-links { display: flex; gap: 28px; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(7,11,26,.96);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
}
.site-header .wrap { height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: #FFFFFF; }
.brand:hover { color: #FFFFFF; }
.brand img { width: 44px; height: 44px; }
.brand span { font-family: var(--font-head); font-size: 19px; font-weight: 600; letter-spacing: .3em; }

.main-nav { display: flex; align-items: center; gap: 34px; font-weight: 500; }
.main-nav a:not(.btn) { color: var(--night-text); text-decoration: none; padding: 8px 0; }
.main-nav a:not(.btn):hover, .main-nav a[aria-current="page"] { color: #FFFFFF; }
.main-nav a[aria-current="page"] { font-weight: 700; }
.main-nav .btn { min-height: 48px; padding: 0 22px; font-size: 16px; border-radius: 10px; }

.nav-toggle {
  display: none; width: 48px; height: 48px; border-radius: 10px;
  background: transparent; border: 1.5px solid rgba(255,255,255,.25); color: #FFFFFF;
  align-items: center; justify-content: center; cursor: pointer;
}
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

/* ---------- Section basics ---------- */
.section { padding-block: var(--section); }
.section-alt { background: var(--surface-alt); }
.section-head { display: flex; flex-direction: column; gap: 14px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head.center { align-items: center; text-align: center; }
.section-head.split { flex-direction: row; justify-content: space-between; align-items: flex-end; gap: 32px; }
.eyebrow { font-size: 14px; font-weight: 700; letter-spacing: .14em; color: var(--blue); text-transform: uppercase; }
.on-dark .eyebrow, .eyebrow.on-dark { color: var(--teal); }
.h2 { font-size: clamp(32px, 4vw, 46px); line-height: 1.12; }
.lead { font-size: clamp(17px, 1.6vw, 19px); line-height: 1.6; color: var(--muted); max-width: 660px; }

/* ---------- Hero ---------- */
.hero { background: var(--night); color: #FFFFFF; overflow: hidden; }
.hero .wrap { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr); align-items: center; gap: 40px; padding-top: 64px; padding-bottom: 96px; }
.hero-copy { display: flex; flex-direction: column; gap: 28px; max-width: 640px; }
.pill {
  align-self: flex-start; display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px; border-radius: 999px; border: 1px solid rgba(34,211,218,.35);
  background: rgba(34,211,218,.08); font-size: 14px; font-weight: 600; color: #BDF4F6;
}
.pill::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--teal); }
.hero h1 { font-size: clamp(38px, 4.6vw, 62px); line-height: 1.08; letter-spacing: -0.03em; }
.hero h1 em { font-style: normal; color: var(--teal); }
.hero-lead { font-size: clamp(17px, 1.7vw, 20px); line-height: 1.6; color: var(--night-text); }
.btn-row { display: flex; flex-wrap: wrap; gap: 16px; }
.checks { display: flex; flex-wrap: wrap; gap: 14px 28px; font-size: 15px; color: #DDE4F0; list-style: none; padding: 0; margin: 0; }
.checks li { display: inline-flex; align-items: center; gap: 8px; }

.hero-art { position: relative; aspect-ratio: 640 / 560; width: 100%; }
.hero-art img {
  width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-xl);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 58%, transparent 78%);
  mask-image: radial-gradient(ellipse at center, #000 58%, transparent 78%);
}
.float-card {
  position: absolute; display: flex; align-items: center; gap: 14px;
  padding: 14px 18px; border-radius: var(--radius-m);
  background: rgba(13,20,48,.85); border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 18px 40px rgba(0,0,0,.4);
}
.float-card.one { left: 0; top: 12%; }
.float-card.two { right: 0; bottom: 11%; }
.float-card .ic { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; background: rgba(34,211,218,.16); }
.float-card.two .ic { background: rgba(79,123,240,.2); }
.float-card strong { display: block; font-size: 15px; }
.float-card small { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--night-muted); }
.float-card .live { color: #9FE8B8; }
.float-card .live::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--green); }

/* ---------- Trust band ---------- */
.trust { background: var(--surface-alt); padding-block: 56px 64px; }
.badges { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; list-style: none; margin: 0; padding: 0; }
.badge { display: flex; align-items: center; gap: 16px; padding: 22px; background: #FFFFFF; border: 1px solid var(--line); border-radius: var(--radius-m); }
.badge .ic { width: 56px; height: 56px; flex-shrink: 0; border-radius: 14px; background: var(--ink); display: flex; align-items: center; justify-content: center; }
.badge strong { display: block; font-family: var(--font-head); font-size: 17px; font-weight: 600; }
.badge span { font-size: 14px; line-height: 1.45; color: var(--muted); }
.trusted-by { display: flex; align-items: center; gap: 40px; margin-top: 40px; }
.trusted-by > span { flex-shrink: 0; font-size: 13px; font-weight: 700; letter-spacing: .14em; color: var(--muted-2); text-transform: uppercase; }
.trusted-by ul { flex-grow: 1; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px 28px; list-style: none; margin: 0; padding: 0; font-family: var(--font-head); font-size: 20px; font-weight: 600; color: #6F7A90; }

/* ---------- Audience cards ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.aud-card { display: flex; flex-direction: column; border-radius: var(--radius-l); overflow: hidden; background: #FFFFFF; border: 1px solid var(--line); box-shadow: 0 10px 30px rgba(11,21,48,.06); }
.aud-card img { width: 100%; aspect-ratio: 400 / 260; object-fit: cover; }
.aud-card .body { flex-grow: 1; display: flex; flex-direction: column; gap: 12px; padding: 28px 32px 30px; }
.aud-card h3 { font-size: 24px; }
.aud-card p { flex-grow: 1; color: var(--muted); }

/* ---------- Services ---------- */
.svc { display: flex; flex-direction: column; gap: 16px; padding: 32px 28px; border-radius: 18px; background: var(--surface-alt); }
.svc .ic { width: 56px; height: 56px; border-radius: 14px; background: #FFFFFF; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; }
.svc h3 { font-size: 21px; }
.svc p { color: var(--muted); }

/* ---------- Dark feature panel ---------- */
.feature { background: var(--night); color: #FFFFFF; border-radius: var(--radius-xl); padding: clamp(28px, 4.5vw, 64px); display: grid; grid-template-columns: minmax(0, 520px) minmax(0, 1fr); gap: clamp(32px, 4.5vw, 64px); align-items: center; }
.feature img { width: 100%; aspect-ratio: 520 / 395; object-fit: cover; border-radius: 20px; }
.feature-copy { display: flex; flex-direction: column; gap: 26px; }
.feature-copy h2 { font-size: clamp(30px, 3.4vw, 40px); line-height: 1.15; }
.points { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 22px; }
.points li { display: flex; gap: 16px; align-items: flex-start; }
.points .dot { width: 32px; height: 32px; flex-shrink: 0; border-radius: 50%; background: rgba(34,211,218,.15); display: flex; align-items: center; justify-content: center; }
.points strong { display: block; font-size: 18px; }
.points span { color: var(--night-muted); }

/* ---------- Steps ---------- */
.steps { list-style: none; margin: 0; padding: 0; counter-reset: step; }
.step { display: flex; flex-direction: column; gap: 12px; padding: 32px; border-radius: 18px; border: 1px solid var(--line); }
.step .num { font-family: var(--font-head); font-size: 15px; font-weight: 700; color: var(--blue); }
.step h3 { font-size: 22px; }
.step p { color: var(--muted); }

/* ---------- Testimonials ---------- */
.quote { margin: 0; display: flex; flex-direction: column; gap: 22px; padding: 34px; border-radius: 20px; background: #FFFFFF; border: 1px solid var(--line); }
.quote blockquote { margin: 0; flex-grow: 1; font-size: 18px; line-height: 1.65; color: var(--ink-soft); }
.quote figcaption { padding-top: 20px; border-top: 1px solid var(--line); font-size: 14px; color: var(--muted-2); }
.quote figcaption strong { display: block; font-size: 15px; color: var(--ink); }

/* ---------- Next steps ---------- */
.next { background: var(--night); color: #FFFFFF; }
.next .h2 { color: #FFFFFF; }
.next .lead { color: var(--night-muted); max-width: 460px; }
.grid-4 > li { display: flex; }
.tile { flex: 1; display: flex; flex-direction: column; gap: 14px; padding: 30px; border-radius: 18px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.12); color: #FFFFFF; text-decoration: none; transition: border-color .2s, background-color .2s; }
.tile:hover { color: #FFFFFF; border-color: rgba(34,211,218,.6); background: rgba(34,211,218,.06); }
.tile .ic { width: 52px; height: 52px; border-radius: 14px; background: rgba(34,211,218,.14); display: flex; align-items: center; justify-content: center; }
.tile strong { font-family: var(--font-head); font-size: 21px; font-weight: 600; }
.tile span.desc { flex-grow: 1; font-size: 15px; line-height: 1.55; color: var(--night-muted); overflow-wrap: anywhere; }
.tile span.go { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 15px; color: var(--teal); }

/* ---------- Contact ---------- */
.contact .wrap { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: clamp(32px, 6vw, 96px); align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-info .h2 { line-height: 1.1; }
.info-list { list-style: none; margin: 8px 0 0; padding: 0; display: flex; flex-direction: column; gap: 18px; }
.info-list a, .info-list .plain { display: flex; align-items: center; gap: 16px; color: var(--ink); text-decoration: none; }
.info-list a:hover strong { color: var(--blue); }
.info-list .ic { width: 52px; height: 52px; flex-shrink: 0; border-radius: 14px; background: #FFFFFF; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; }
.info-list small { display: block; font-size: 14px; color: var(--muted-2); }
.info-list strong { font-size: 18px; overflow-wrap: anywhere; }
.info-list .plain { color: var(--muted); }

.form-card { background: #FFFFFF; border: 1px solid var(--line); border-radius: 24px; padding: clamp(24px, 3.5vw, 44px); box-shadow: 0 16px 40px rgba(11,21,48,.06); }
.form-card h3 { font-size: 26px; margin-bottom: 22px; }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.field { display: flex; flex-direction: column; gap: 8px; font-size: 15px; font-weight: 600; }
.field .opt { font-weight: 400; color: var(--muted-2); }
.field input, .field select, .field textarea {
  width: 100%; min-height: 54px; padding: 0 16px; border: 1.5px solid var(--line-strong); border-radius: var(--radius-s);
  font-size: 16px; font-weight: 400; color: var(--ink); background: #FFFFFF;
}
.field textarea { padding: 14px 16px; min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(59,99,214,.18); }
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: #C2362F; }
.form-error { color: #B42318; font-size: 15px; font-weight: 600; min-height: 1em; }
.form-error:empty { display: none; }
.hp { position: absolute; left: -9999px; }
.contact-form .btn { width: 100%; min-height: 60px; }
.privacy-note { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--muted-2); }
.form-success { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 16px; padding: 64px 0; }
.form-success[hidden] { display: none; }
.form-success .ok { width: 72px; height: 72px; border-radius: 50%; background: rgba(34,211,218,.15); display: flex; align-items: center; justify-content: center; }
.form-success h4 { margin: 0; font-family: var(--font-head); font-size: 24px; font-weight: 600; }
.form-success p { color: var(--muted); max-width: 380px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--night-2); color: var(--night-muted); padding-block: 72px 36px; }
.footer-grid { display: grid; grid-template-columns: minmax(0, 5fr) repeat(2, minmax(0, 2fr)) minmax(0, 3fr); gap: 32px; }
.footer-brand { display: flex; flex-direction: column; gap: 18px; }
.footer-brand p { max-width: 380px; font-size: 15px; line-height: 1.65; }
.footer-brand .motto { font-size: 13px; font-weight: 700; letter-spacing: .16em; color: var(--teal); }
.footer-col h2 { font-family: var(--font-body); font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #FFFFFF; margin-bottom: 14px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; font-size: 15px; }
.footer-col a { color: var(--night-muted); text-decoration: none; overflow-wrap: anywhere; }
.footer-col a:hover { color: #FFFFFF; }
.footer-col a.bright { color: #E6ECF7; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px 24px; margin-top: 56px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); font-size: 13px; color: #8C97AD; }
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: 24px; }
.footer-bottom a { color: #8C97AD; text-decoration: none; }
.footer-bottom a:hover { color: #FFFFFF; }

/* ---------- About page ---------- */
.about-hero .wrap { grid-template-columns: minmax(0, 1fr) minmax(0, 420px); gap: 72px; padding-top: 88px; padding-bottom: 104px; }
.about-hero h1 { font-size: clamp(36px, 4.6vw, 58px); line-height: 1.1; }
.portrait { aspect-ratio: 420 / 480; width: 100%; border-radius: 24px; overflow: hidden; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.14); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; color: var(--night-muted); text-align: center; font-size: 15px; }
.portrait.placeholder { border-style: dashed; border-width: 2px; border-color: rgba(255,255,255,.25); }
.portrait.placeholder img { width: 72px; height: 72px; opacity: .8; }
.portrait img.photo { width: 100%; height: 100%; object-fit: cover; }
.cred { display: flex; flex-direction: column; gap: 14px; padding: 30px; border-radius: 18px; background: var(--surface-alt); }
.cred .ic { width: 56px; height: 56px; border-radius: 14px; background: var(--ink); display: flex; align-items: center; justify-content: center; }
.cred h3 { font-size: 21px; }
.cred p { color: var(--muted); }
.values-panel { background: var(--night); color: #FFFFFF; border-radius: var(--radius-xl); padding: clamp(28px, 4.5vw, 64px); display: flex; flex-direction: column; gap: 44px; }
.values-top { display: grid; grid-template-columns: minmax(0, 420px) minmax(0, 1fr); gap: clamp(28px, 4vw, 56px); align-items: center; }
.values-top img { width: 100%; aspect-ratio: 420 / 300; object-fit: cover; border-radius: 18px; }
.values-top > div { display: flex; flex-direction: column; gap: 20px; }
.values-top h2 { font-size: clamp(28px, 3.4vw, 40px); line-height: 1.15; }
.values-top p { color: var(--night-text); font-size: 17px; line-height: 1.65; }
.values { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 28px; }
.values li { display: flex; flex-direction: column; gap: 10px; padding-top: 22px; border-top: 2px solid var(--teal); }
.values strong { font-family: var(--font-head); font-size: 19px; font-weight: 600; }
.values span { font-size: 15px; color: var(--night-muted); }

/* ---------- Simple content page (privacy) ---------- */
.prose { max-width: 760px; }
.prose h1 { font-size: clamp(34px, 4vw, 46px); margin-bottom: 12px; }
.prose h2 { font-size: 24px; margin: 40px 0 12px; }
.prose p, .prose li { color: var(--muted); font-size: 17px; line-height: 1.7; }
.prose p + p { margin-top: 14px; }
.prose ul { padding-left: 22px; }

/* ==========================================================================
   Responsive
   ========================================================================== */

/* Tablet landscape / small laptop */
@media (max-width: 1180px) {
  .main-nav { gap: 24px; }
  .grid-4, .badges { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .values { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .trusted-by { flex-direction: column; align-items: flex-start; gap: 16px; }
  .trusted-by ul { justify-content: flex-start; font-size: 18px; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 40px 32px; }
}

/* Tablet portrait — nav collapses */
@media (max-width: 980px) {
  .nav-toggle { display: inline-flex; }
  .main-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 8px var(--gutter) 24px; background: var(--night);
    border-bottom: 1px solid rgba(255,255,255,.1);
    box-shadow: 0 24px 40px rgba(0,0,0,.35);
    display: none;
  }
  .main-nav.is-open { display: flex; }
  .main-nav a:not(.btn) { padding: 14px 0; font-size: 18px; border-bottom: 1px solid rgba(255,255,255,.08); }
  .main-nav .btn { margin-top: 18px; min-height: 56px; font-size: 17px; }

  .hero .wrap, .about-hero .wrap { grid-template-columns: 1fr; gap: 48px; padding-top: 48px; padding-bottom: 72px; }
  .hero-art { max-width: 600px; margin-inline: auto; }
  .about-hero .portrait { max-width: 420px; }
  .grid-3 { grid-template-columns: 1fr; max-width: 640px; margin-inline: auto; }
  .aud-card img { aspect-ratio: 16 / 9; }
  .feature, .values-top { grid-template-columns: 1fr; }
  .feature img { max-width: 560px; }
  .steps.grid-3 { max-width: none; }
  .contact .wrap { grid-template-columns: 1fr; }
  .section-head.split { flex-direction: column; align-items: flex-start; }
}

/* Mobile */
@media (max-width: 720px) {
  .topbar .wrap { justify-content: center; }
  .topbar .where { display: none; }
  .topbar-links { gap: 20px; }
  .topbar .email-text { display: none; }
  .site-header .wrap { height: 72px; }
  .brand img { width: 38px; height: 38px; }
  .brand span { font-size: 16px; letter-spacing: .24em; }

  .btn-row .btn { width: 100%; }
  .float-card { padding: 10px 14px; gap: 10px; }
  .float-card .ic { width: 36px; height: 36px; }
  .float-card strong { font-size: 13px; }
  .float-card small { font-size: 12px; }
  .float-card.one { top: 4%; }
  .float-card.two { bottom: 4%; }

  .grid-4, .badges, .values { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .aud-card .body { padding: 24px; }
}

@media (max-width: 380px) {
  .brand span { display: none; }
}

/* About page brand artwork */
.portrait.about-art { aspect-ratio: auto; background: transparent; border: 0; }
.portrait.about-art img.photo { width: 100%; height: auto; object-fit: contain; display: block; }
