/* OAM Agency — signed-policy design system */
:root {
  --ink: #0b1f3a;
  --ink-2: #132a4a;
  --ink-3: #1c3a5f;
  --red: #e11931;
  --red-deep: #a40a32;
  --gold: #c4a15a;
  --gold-soft: #e8d5a3;
  --paper: #f3f5f8;
  --card: #ffffff;
  --quote: #f7f3ea;
  --fog: #5b6978;
  --mist: #8794a1;
  --line: #d5dce4;
  --line-dark: rgba(255, 255, 255, 0.12);
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(11, 31, 58, 0.18);
  --shadow-sm: 0 8px 24px rgba(11, 31, 58, 0.08);
  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body: "Source Sans 3", "Source Sans Pro", "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
  --wrap: 1160px;
  --gutter: clamp(20px, 4vw, 40px);
  --radius: 6px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 76px;
  --spine: 4px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 200;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

body.nav-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 1000;
  background: var(--white);
  color: var(--ink);
  padding: 10px 14px;
  font-weight: 600;
}

.skip:focus {
  top: 12px;
}

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

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 80;
  height: var(--header-h);
  color: var(--white);
  transition: background 220ms var(--ease), box-shadow 220ms var(--ease), color 220ms var(--ease);
}

.site-header.is-scrolled,
.site-header.theme-solid {
  background: rgba(11, 31, 58, 0.94);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--line-dark);
}

.site-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-height: 44px;
}

.brand__mark {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}

.brand__sub {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-top: 3px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  opacity: 0.9;
}

.nav a:hover,
.nav a[aria-current="page"] {
  opacity: 1;
  color: var(--gold-soft);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  background: transparent;
  color: #fff;
  cursor: pointer;
  padding: 0;
  flex: 0 0 auto;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before {
  top: -7px;
}

.nav-toggle span::after {
  top: 7px;
}

.drawer {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--ink);
  color: var(--white);
  padding: 32px var(--gutter) 48px;
  z-index: 79;
}

.drawer nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.drawer a {
  text-decoration: none;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 6vw, 2.4rem);
  padding: 8px 0;
  min-height: 48px;
  display: flex;
  align-items: center;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  text-decoration: none;
  font-weight: 650;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 180ms var(--ease), background 180ms var(--ease), color 180ms var(--ease), border-color 180ms var(--ease);
}

.btn:active {
  transform: scale(0.98);
}

.btn--red {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(225, 25, 49, 0.32);
}

.btn--red:hover {
  background: var(--red-deep);
  box-shadow: 0 14px 32px rgba(164, 10, 50, 0.38);
}

.btn--gold {
  background: var(--gold);
  color: var(--ink);
}

.btn--gold:hover {
  background: var(--gold-soft);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold-soft);
}

.btn--line {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.btn--line:hover {
  background: var(--ink);
  color: var(--white);
}

.btn--full {
  width: 100%;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100dvh;
  color: var(--white);
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-h) + 32px) 0 56px;
  overflow-x: clip;
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% 40%;
  transform: scale(1.06);
  animation: ken 28s var(--ease) alternate infinite;
}

@keyframes ken {
  from { transform: scale(1.06) translate3d(0, 0, 0); }
  to { transform: scale(1.12) translate3d(-1.4%, 1%, 0); }
}

.hero__shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 78% 28%, rgba(196, 161, 90, 0.16), transparent 55%),
    linear-gradient(90deg, rgba(11, 31, 58, 0.9) 0%, rgba(11, 31, 58, 0.58) 48%, rgba(11, 31, 58, 0.3) 100%),
    linear-gradient(180deg, rgba(11, 31, 58, 0.28) 0%, rgba(11, 31, 58, 0.12) 38%, rgba(11, 31, 58, 0.78) 100%);
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 380px);
  gap: 40px;
  align-items: end;
}

.hero__grid > * {
  min-width: 0;
}

.kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin: 0 0 16px;
}

.kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 560;
  font-size: clamp(2.15rem, 6.4vw, 5.4rem);
  line-height: 0.96;
  letter-spacing: -0.035em;
  margin: 0 0 18px;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold-soft);
}

.lede {
  max-width: 38rem;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.86);
  margin: 0 0 28px;
  overflow-wrap: anywhere;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.hero__meta a,
.hero__meta span {
  overflow-wrap: anywhere;
  max-width: 100%;
}

.hero__meta a {
  color: var(--gold-soft);
  text-decoration: none;
}

/* Quote card — the signature object */
.quote-card {
  background:
    linear-gradient(180deg, rgba(255, 252, 245, 0.55), transparent 28%),
    var(--quote);
  color: var(--ink);
  border-radius: 2px;
  box-shadow: var(--shadow), 0 0 0 1px rgba(196, 161, 90, 0.28);
  padding: 22px 22px 20px;
  position: relative;
}

.quote-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: var(--spine);
  background: linear-gradient(180deg, var(--gold), var(--red) 40%, var(--red-deep));
}

.quote-card::after {
  content: "OFFICIAL";
  position: absolute;
  top: 18px;
  left: -34px;
  transform: rotate(-90deg);
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  color: var(--gold);
}

.quote-card__seal {
  width: 58px;
  height: 58px;
  margin: 0 0 10px auto;
  filter: drop-shadow(0 8px 12px rgba(164, 10, 50, 0.28));
  transition: transform 500ms var(--ease);
}

.quote-card:hover .quote-card__seal {
  transform: rotate(-8deg) scale(1.04);
}

.quote-card h2 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  margin: 0 0 6px;
  letter-spacing: -0.02em;
}

.quote-card p {
  margin: 0 0 16px;
  color: var(--fog);
  font-size: 0.95rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}

.field label,
.field-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fog);
  display: block;
  margin-bottom: 6px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #d8d0c2;
  background: #fffdf8;
  border-radius: var(--radius);
  padding: 10px 12px;
  color: var(--ink);
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.quote-card__hint {
  margin: 10px 0 0;
  font-size: 0.78rem;
  color: var(--fog);
}

.quote-card__hint a {
  color: var(--red-deep);
}

.form-error {
  color: var(--red-deep);
  font-size: 0.85rem;
  margin: 0 0 10px;
}

/* ---------- Bars / sections ---------- */
.trust {
  background: var(--ink);
  color: var(--white);
  padding: 18px 0;
  border-top: 1px solid var(--line-dark);
}

.trust__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 24px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.trust__row strong {
  color: var(--gold-soft);
  font-weight: 500;
}

.section {
  padding: clamp(64px, 8vw, 104px) 0;
}

.section--paper {
  background: var(--paper);
}

.section--white {
  background: var(--card);
}

.section--ink {
  background: var(--ink);
  color: var(--white);
}

.section__head {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: 24px 48px;
  margin-bottom: 40px;
  align-items: end;
}

.section__head h2,
.page-hero h1,
.display {
  font-family: var(--font-display);
  font-weight: 560;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.section__head h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin: 0;
}

.section__head p {
  margin: 0;
  color: var(--fog);
  max-width: 40rem;
}

.section--ink .section__head p {
  color: rgba(255, 255, 255, 0.72);
}

/* Coverage mosaic */
.mosaic {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

.tile {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  min-height: 280px;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: flex-end;
}

.tile--tall {
  grid-row: 1 / span 2;
  min-height: 576px;
}

.tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}

.tile:hover img {
  transform: scale(1.04);
}

.tile__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 31, 58, 0.05) 20%, rgba(11, 31, 58, 0.82) 100%);
}

.tile__body {
  position: relative;
  z-index: 1;
  padding: 24px;
}

.tile__body span {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.tile__body h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  margin: 6px 0 8px;
}

.tile__body p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  max-width: 28rem;
}

/* Policy schedule */
.schedule {
  border-top: 1px solid var(--line);
}

.schedule__row {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 16px 24px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.schedule__row:hover .schedule__name {
  color: var(--red);
}

.schedule__line {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mist);
}

.schedule__name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 4px;
  transition: color 180ms var(--ease);
}

.schedule__copy {
  margin: 0;
  color: var(--fog);
}

.schedule__cta {
  font-weight: 650;
  color: var(--red);
  white-space: nowrap;
}

/* About split */
.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: center;
}

.portrait {
  background: var(--ink);
  color: var(--white);
  min-height: 460px;
  padding: 0 0 32px;
  position: relative;
  overflow: hidden;
}

.portrait::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: var(--spine);
  background: var(--red);
  z-index: 2;
}

.portrait__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #c5cdd6;
}

.portrait__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
}

.portrait__seal {
  position: absolute;
  right: 16px;
  bottom: -22px;
  width: 72px;
  height: 72px;
  z-index: 3;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.28));
}

.portrait__body {
  padding: 36px 28px 0 32px;
}

.hero-face {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 18%;
  border: 2px solid var(--gold);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
  flex: 0 0 auto;
}

.kicker--face {
  gap: 12px;
}

.kicker--face::before {
  display: none;
}

.portrait h3 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin: 0 0 8px;
}

.portrait .role {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin: 0 0 24px;
}

.portrait dl {
  margin: 0;
  display: grid;
  gap: 14px;
}

.portrait dt {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mist);
}

.portrait dd {
  margin: 4px 0 0;
}

.portrait a {
  color: var(--gold-soft);
}

.prose h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  margin: 0 0 16px;
}

.prose p {
  color: var(--fog);
  margin: 0 0 16px;
}

.prose p:last-child {
  margin-bottom: 0;
}

.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.fact {
  border-top: 2px solid var(--red);
  padding-top: 12px;
}

.fact b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.fact span {
  color: var(--fog);
  font-size: 0.92rem;
}

/* Process */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.step {
  background: var(--card);
  padding: 24px;
  border: 1px solid var(--line);
  min-height: 220px;
}

.step b {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: var(--red);
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin: 10px 0 8px;
}

.step p {
  margin: 0;
  color: var(--fog);
}

/* CTA band */
.cta-band {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 32px;
  align-items: center;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  margin: 0 0 12px;
}

.cta-band p {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 36rem;
}

.cta-band .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* FAQ */
.faq {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.faq__item {
  border-bottom: 1px solid var(--line);
}

.faq__item button {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 20px 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  min-height: 56px;
}

.faq__item button span {
  font-family: var(--font-mono);
  color: var(--red);
}

.faq__item [data-faq-panel] {
  padding: 0 0 20px;
  color: var(--fog);
  max-width: 46rem;
}

.faq__item [data-faq-panel] a {
  color: var(--red-deep);
}

/* Page chrome */
.page-hero {
  background: var(--ink);
  color: var(--white);
  padding: calc(var(--header-h) + 56px) 0 56px;
  position: relative;
}

.page-hero::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: var(--spine);
  background: var(--red);
}

.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  margin: 0 0 12px;
}

.page-hero p {
  margin: 0;
  max-width: 40rem;
  color: rgba(255, 255, 255, 0.76);
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 22px;
  display: flex;
  flex-direction: column;
  min-height: 260px;
}

.card__icon {
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  color: var(--red);
}

.card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin: 0 0 8px;
}

.card p {
  margin: 0 0 18px;
  color: var(--fog);
  flex: 1;
}

.card a {
  color: var(--red);
  font-weight: 700;
  text-decoration: none;
}

.office {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.map {
  min-height: 360px;
  background: #d9e0e8;
}

.map iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

.office__card {
  background: var(--ink);
  color: var(--white);
  padding: 32px;
}

.office__card h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin: 0 0 16px;
}

.office__card p,
.office__card a {
  color: rgba(255, 255, 255, 0.82);
}

.office__card a {
  color: var(--gold-soft);
}

.pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* Footer */
.site-footer {
  background: #081628;
  color: rgba(255, 255, 255, 0.74);
  padding: 56px 0 28px;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr;
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line-dark);
}

.site-footer h2,
.site-footer h3 {
  color: var(--white);
}

.site-footer h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin: 0 0 10px;
}

.site-footer h3 {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 12px;
  color: var(--gold-soft);
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li + li {
  margin-top: 8px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--gold-soft);
}

.footer__legal {
  padding-top: 22px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer__legal p {
  margin: 0 0 10px;
  max-width: 70rem;
}

/* Reveals */
[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 600ms var(--ease), transform 600ms var(--ease);
}

[data-reveal].is-in {
  opacity: 1;
  transform: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hero__grid,
  .section__head,
  .mosaic,
  .split,
  .steps,
  .cta-band,
  .coverage-grid,
  .office,
  .pair,
  .footer__top,
  .facts {
    grid-template-columns: minmax(0, 1fr);
  }

  .tile--tall {
    grid-row: auto;
    min-height: 360px;
  }

  .schedule__row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .hero {
    align-items: stretch;
    padding-bottom: 32px;
  }
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 2.05rem;
  }

  .lede {
    font-size: 1rem;
  }

  .brand__sub {
    display: none;
  }

  .hero__actions .btn {
    flex: 1 1 100%;
  }
}

/* ---------- Appeal layer ---------- */
.phone-pill {
  display: none;
  align-items: center;
  gap: 8px;
  color: var(--gold-soft);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  min-height: 44px;
}

.phone-pill i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3dce7a;
  box-shadow: 0 0 0 0 rgba(61, 206, 122, 0.7);
  animation: pulse 1.8s ease-out infinite;
}

@keyframes pulse {
  70% { box-shadow: 0 0 0 8px transparent; }
}

@media (min-width: 1100px) {
  .phone-pill { display: inline-flex; }
}

.lobs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.lob {
  min-height: 36px;
  padding: 6px 11px;
  border: 1px solid #d8d0c2;
  background: #fffdf8;
  color: var(--ink);
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 600;
  transition: background 180ms var(--ease), color 180ms var(--ease), border-color 180ms var(--ease);
}

.lob.is-on,
.lob[aria-pressed="true"] {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.ribbon {
  background: #091525;
  color: var(--gold-soft);
  overflow: hidden;
  border-top: 1px solid rgba(196, 161, 90, 0.18);
  border-bottom: 1px solid rgba(196, 161, 90, 0.08);
}

.ribbon__track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee 42s linear infinite;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 12px 0;
}

.ribbon__track span {
  padding: 0 22px;
  white-space: nowrap;
  opacity: 0.82;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.tile {
  isolation: isolate;
}

.tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.14) 48%, transparent 62%);
  transform: translateX(-120%);
  transition: transform 700ms var(--ease);
  z-index: 1;
  pointer-events: none;
}

.tile:hover::after {
  transform: translateX(120%);
}

.card {
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms var(--ease);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
  border-color: #c4a15a66;
}

.step {
  position: relative;
  overflow: hidden;
  transition: transform 220ms var(--ease), border-color 220ms var(--ease);
}

.step:hover {
  transform: translateY(-3px);
  border-color: #c4a15a88;
}

.page-hero--photo {
  background: #0b1f3a;
  overflow: hidden;
}

.page-hero--photo .page-hero__media {
  position: absolute;
  inset: 0;
}

.page-hero--photo .page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 35%;
  opacity: 0.38;
}

.page-hero--photo .wrap {
  position: relative;
  z-index: 1;
}

.cta-photo {
  position: relative;
  overflow: hidden;
}

.cta-photo__media {
  position: absolute;
  inset: 0;
}

.cta-photo__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
}

.cta-photo .wrap {
  position: relative;
  z-index: 1;
}

.dock {
  display: none;
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 90;
  background: rgba(11, 31, 58, 0.94);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(196, 161, 90, 0.25);
  border-radius: 999px;
  padding: 8px;
  gap: 8px;
}

.dock a {
  flex: 1;
}

@media (max-width: 900px) {
  .dock {
    display: flex;
  }

  body {
    padding-bottom: 80px;
  }

  .quote-card::after {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
