:root {
  --bg: #f6f1ea;
  --bg-alt: #efe7dd;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: #ffffff;
  --surface-soft: rgba(250, 246, 241, 0.92);
  --ink: #18212c;
  --ink-soft: #47515d;
  --ink-muted: #6e7680;
  --line: rgba(24, 33, 44, 0.1);
  --line-strong: rgba(88, 49, 38, 0.18);
  --brand: #6c2b2f;
  --brand-deep: #432022;
  --brand-soft: rgba(108, 43, 47, 0.08);
  --gold: #b38858;
  --gold-soft: rgba(179, 136, 88, 0.14);
  --shadow-sm: 0 18px 40px rgba(28, 19, 17, 0.06);
  --shadow-md: 0 28px 70px rgba(28, 19, 17, 0.09);
  --shadow-lg: 0 48px 110px rgba(22, 14, 13, 0.14);
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 32px;
  --max-width: 1180px;
  --nav-height: 86px;
  --measure: 66ch;
  --transition: 180ms cubic-bezier(0.22, 1, 0.36, 1);
  --transition-slow: 320ms cubic-bezier(0.22, 1, 0.36, 1);
  --hero-art: url("/assets/hero-backdrop.svg");
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 20px);
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(179, 136, 88, 0.09), transparent 26%),
    linear-gradient(180deg, #faf7f2 0%, var(--bg) 38%, #f2ece4 100%);
  overflow-x: clip;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 88% 12%, rgba(108, 43, 47, 0.06), transparent 16%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.36), transparent 25%);
  pointer-events: none;
  z-index: -1;
}

body.nav-open {
  overflow: hidden;
}

[data-site-header] {
  display: block;
  min-height: var(--nav-height);
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

a,
button,
input,
textarea,
select {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 2px solid rgba(108, 43, 47, 0.42);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: -56px;
  left: 18px;
  z-index: 70;
  padding: 12px 16px;
  border-radius: 14px;
  background: var(--brand-deep);
  color: #fff;
}

.skip-link:focus {
  top: 14px;
}

.container {
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 104px 0;
}

.section.section-soft {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.46), rgba(247, 241, 234, 0.72)),
    var(--surface-soft);
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-bottom: 1px solid rgba(24, 33, 44, 0.04);
}

.section.section-tight {
  padding: 78px 0;
}

.kicker {
  margin: 0 0 16px;
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading h1,
.section-heading h2 {
  margin: 0 0 16px;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.02;
  font-weight: 500;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.section-heading p,
.lede,
.body-copy p,
.card-copy,
.cta-copy p {
  margin: 0;
  max-width: var(--measure);
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.82;
}

.eyebrow-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 18px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(108, 43, 47, 0.08);
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 700;
}

.pill.is-soft {
  background: rgba(108, 43, 47, 0.07);
  color: var(--brand-deep);
}

.surface-card,
.content-card,
.stat-card,
.service-card,
.timeline-card,
.team-card,
.contact-card,
.proof-card,
.directory-card,
.expect-card,
.quote-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 241, 234, 0.86));
  border: 1px solid rgba(108, 43, 47, 0.08);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 800;
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition),
    background var(--transition),
    color var(--transition);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  color: #fff;
  box-shadow: 0 18px 34px rgba(67, 32, 34, 0.18);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 22px 40px rgba(67, 32, 34, 0.22);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(108, 43, 47, 0.14);
  color: var(--brand-deep);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(108, 43, 47, 0.22);
}

.button-compact {
  min-height: 48px;
  padding: 0 18px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--brand-deep);
  font-weight: 800;
  transition: gap var(--transition), color var(--transition);
}

.text-link:hover,
.text-link:focus-visible {
  gap: 14px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transform: translateY(0);
  transition:
    transform var(--transition-slow),
    background var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
  backdrop-filter: blur(18px);
  background: rgba(250, 247, 242, 0.84);
  border-bottom: 1px solid rgba(108, 43, 47, 0.08);
}

body.header-scrolled .site-header {
  background: rgba(250, 247, 242, 0.94);
  box-shadow: 0 14px 36px rgba(25, 16, 15, 0.08);
}

body.header-hidden .site-header {
  transform: translateY(calc(-100% - 8px));
}

.header-shell {
  min-height: var(--nav-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-logo-frame {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 112px;
  height: 54px;
  padding: 7px 8px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(108, 43, 47, 0.1);
  box-shadow: 0 12px 24px rgba(28, 19, 17, 0.08);
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.brand-name {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-meta {
  color: var(--ink-muted);
  font-size: 0.76rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.nav-link {
  padding: 11px 14px;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 700;
  transition: background var(--transition), color var(--transition);
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.is-current {
  background: rgba(108, 43, 47, 0.08);
  color: var(--brand-deep);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(108, 43, 47, 0.08);
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 800;
}

.menu-toggle {
  display: none;
  position: relative;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(108, 43, 47, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--brand-deep);
}

.menu-toggle span {
  position: absolute;
  left: 50%;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
  transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle span:nth-child(1) {
  top: 18px;
  transform: translateX(-50%);
}

.menu-toggle span:nth-child(2) {
  top: 24px;
  transform: translateX(-50%);
}

.menu-toggle span:nth-child(3) {
  top: 30px;
  transform: translateX(-50%);
}

.nav-open .menu-toggle span:nth-child(1) {
  transform: translateX(-50%) translateY(6px) rotate(45deg);
}

.nav-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .menu-toggle span:nth-child(3) {
  transform: translateX(-50%) translateY(-6px) rotate(-45deg);
}

.mobile-panel {
  position: fixed;
  inset: calc(var(--nav-height) + 10px) 0 auto;
  z-index: 48;
}

.mobile-panel[hidden] {
  display: none;
}

.mobile-panel-shell {
  display: grid;
  gap: 20px;
  padding: 20px;
  border-radius: 28px;
  background: rgba(250, 247, 242, 0.98);
  border: 1px solid rgba(108, 43, 47, 0.1);
  box-shadow: var(--shadow-md);
}

.mobile-nav {
  display: grid;
  gap: 8px;
}

.mobile-nav-link {
  padding: 15px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.5);
  color: var(--ink);
  font-weight: 700;
}

.mobile-nav-link.is-current {
  background: rgba(108, 43, 47, 0.08);
  color: var(--brand-deep);
}

.mobile-panel-card-stack {
  display: grid;
  gap: 10px;
}

.mobile-panel-card {
  display: grid;
  gap: 4px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(108, 43, 47, 0.08);
}

.mobile-panel-card span {
  color: var(--ink-muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mobile-panel-card strong {
  color: var(--ink);
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.nav-scrim {
  position: fixed;
  inset: 0;
  z-index: 42;
  border: 0;
  background: rgba(18, 15, 14, 0.3);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.nav-open .nav-scrim {
  opacity: 1;
  pointer-events: auto;
}

main {
  padding-bottom: 24px;
}

.hero-home {
  padding-top: 44px;
}

.hero-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: center;
  padding: 56px;
  border-radius: 40px;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 18%, rgba(179, 136, 88, 0.12), transparent 16%),
    radial-gradient(circle at 100% 100%, rgba(108, 43, 47, 0.18), transparent 26%),
    linear-gradient(135deg, rgba(19, 14, 13, 0.98), rgba(31, 22, 20, 0.97) 58%, rgba(42, 28, 24, 0.95)),
    var(--hero-art) center right / cover no-repeat;
  box-shadow: var(--shadow-lg);
}

.hero-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 24%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02), transparent 42%);
}

.hero-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 6, 6, 0.08), transparent 28%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 20px;
  align-content: center;
}

.hero-copy .kicker {
  margin-bottom: 0;
  color: rgba(244, 224, 204, 0.84);
}

.hero-copy h1 {
  margin: 0;
  max-width: 8.4ch;
  color: #fbf7f1;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(3rem, 4.8vw, 5rem);
  line-height: 0.93;
  font-weight: 500;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.hero-copy p {
  margin: 0;
  max-width: 36ch;
  color: rgba(248, 240, 232, 0.82);
  font-size: 1.02rem;
  line-height: 1.82;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}

.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

.hero-trust-pill {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 250, 244, 0.08);
  border: 1px solid rgba(248, 240, 232, 0.14);
  color: rgba(255, 248, 239, 0.92);
  font-size: 0.8rem;
  font-weight: 700;
}

.hero-stage {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  gap: 22px;
  padding-bottom: 0;
}

.hero-media {
  position: relative;
  margin: 0;
  min-height: 560px;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(244, 238, 231, 0.96), rgba(224, 213, 201, 0.78));
  box-shadow: 0 34px 70px rgba(11, 8, 8, 0.28);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(22, 15, 13, 0.06), transparent 24%, transparent 72%, rgba(22, 15, 13, 0.16)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1), transparent 20%, transparent 80%, rgba(22, 15, 13, 0.08));
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  filter: saturate(0.92) contrast(1.02) brightness(0.96);
}

.hero-media-card,
.hero-stage-note {
  background: linear-gradient(180deg, rgba(248, 242, 236, 0.92), rgba(243, 235, 227, 0.86));
  border: 1px solid rgba(255, 255, 255, 0.46);
  box-shadow: 0 20px 44px rgba(15, 10, 10, 0.18);
  backdrop-filter: blur(16px);
}

.hero-media-card {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  max-width: 352px;
  padding: 22px 24px;
  border-radius: 28px;
  z-index: 1;
}

.hero-stage-note {
  position: relative;
  right: auto;
  bottom: auto;
  justify-self: end;
  width: min(74%, 372px);
  margin-top: 0;
  padding: 24px 26px;
  border-radius: 30px;
  z-index: 2;
}

.hero-panel-heading {
  margin: 0 0 16px;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-firm-grid {
  display: grid;
  gap: 14px;
}

.hero-firm-item {
  display: grid;
  gap: 4px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(24, 33, 44, 0.08);
}

.hero-firm-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.hero-firm-item span {
  color: var(--ink-muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-firm-item strong,
.hero-firm-item a {
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.hero-stage-note .card-list {
  gap: 12px;
}

.hero-stage-note .card-list li {
  color: var(--ink-soft);
  line-height: 1.72;
}

.hero-summary-grid,
.service-grid,
.proof-grid,
.timeline-grid,
.team-preview-grid,
.directory-grid,
.expect-grid,
.contact-grid,
.footer-grid,
.stats-grid {
  display: grid;
  gap: 20px;
}

.hero-summary-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat-card {
  padding: 22px 22px 20px;
}

.stat-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--brand-deep);
  font-size: 1.35rem;
  font-family: "Source Serif 4", Georgia, serif;
  font-weight: 600;
}

.stat-card span {
  color: var(--ink-soft);
  line-height: 1.7;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 36px;
  align-items: start;
}

.content-card,
.contact-card,
.quote-card {
  padding: 30px;
}

.content-card h3,
.service-card h3,
.proof-card h3,
.timeline-card h3,
.team-card h3,
.contact-card h3,
.quote-card h3 {
  margin: 0 0 10px;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.5rem;
  line-height: 1.12;
  font-weight: 500;
}

.content-card p,
.service-card p,
.proof-card p,
.timeline-card p,
.team-card p,
.contact-card p,
.quote-card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.74;
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  display: grid;
  gap: 14px;
  min-height: 100%;
  padding: 26px;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-3px);
  border-color: rgba(108, 43, 47, 0.16);
  box-shadow: var(--shadow-md);
}

.card-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--gold-soft);
  color: var(--brand-deep);
  font-weight: 800;
  font-size: 0.88rem;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.card-meta span {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(108, 43, 47, 0.06);
  color: var(--brand-deep);
  font-size: 0.76rem;
  font-weight: 800;
}

.card-list,
.footer-list,
.detail-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.card-list {
  display: grid;
  gap: 10px;
}

.card-list li {
  position: relative;
  padding-left: 18px;
  color: var(--ink-soft);
  line-height: 1.7;
}

.card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold), var(--brand));
}

.proof-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.proof-card {
  padding: 24px;
}

.proof-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--brand-deep);
  font-size: 0.94rem;
  letter-spacing: 0.04em;
}

.history-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: 36px;
  align-items: start;
}

.timeline-grid {
  position: relative;
  padding-left: 24px;
}

.timeline-grid::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(180deg, rgba(108, 43, 47, 0.3), rgba(108, 43, 47, 0.08));
}

.timeline-card {
  position: relative;
  padding: 24px 24px 24px 28px;
}

.timeline-card::before {
  content: "";
  position: absolute;
  left: -22px;
  top: 30px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold), var(--brand));
  box-shadow: 0 0 0 5px rgba(179, 136, 88, 0.14);
}

.timeline-year {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.team-preview-grid {
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  align-items: start;
}

.team-stack {
  display: grid;
  gap: 18px;
}

.team-card {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.team-card.is-featured {
  padding: 28px;
}

.team-top {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

.initials {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: linear-gradient(145deg, #7b4547, var(--brand-deep));
  color: #fff;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.06rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.role {
  margin: 0 0 6px;
  color: var(--brand);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.team-card h3 {
  margin-bottom: 0;
}

.team-card .role-summary {
  color: var(--ink);
  font-weight: 700;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-row span {
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(108, 43, 47, 0.06);
  color: var(--brand-deep);
  font-size: 0.76rem;
  font-weight: 800;
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
  gap: 28px;
  padding: 38px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, #211819 0%, #3c2522 46%, #6e4030 100%);
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.contact-band .kicker {
  color: rgba(243, 224, 202, 0.82);
}

.contact-band h2 {
  margin: 0 0 14px;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.04;
  font-weight: 500;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.contact-band p {
  margin: 0;
  color: rgba(249, 241, 232, 0.82);
  line-height: 1.78;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.contact-actions .button-secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.contact-card .contact-actions .button-secondary {
  background: #ffffff;
  border-color: rgba(108, 43, 47, 0.2);
  color: var(--brand-deep);
  box-shadow: 0 14px 28px rgba(67, 32, 34, 0.12);
}

.contact-card .contact-actions .button-secondary:hover,
.contact-card .contact-actions .button-secondary:focus-visible {
  background: #fff8ef;
  border-color: rgba(108, 43, 47, 0.32);
  color: var(--brand-deep);
}

.contact-band-details {
  display: grid;
  gap: 14px;
  align-content: start;
}

.detail-card {
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-card span {
  display: block;
  margin-bottom: 6px;
  color: rgba(242, 228, 214, 0.72);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.detail-card strong,
.detail-card a {
  color: #fff;
  line-height: 1.55;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.page-hero {
  padding-top: 42px;
}

.page-hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.86fr);
  gap: 30px;
  align-items: start;
}

.page-hero-copy {
  padding-top: 14px;
}

.page-hero-copy h1 {
  margin: 0 0 16px;
  max-width: 12ch;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(2.7rem, 4.2vw, 4.15rem);
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.page-hero-copy p {
  margin: 0;
  max-width: 62ch;
  color: var(--ink-soft);
  line-height: 1.84;
}

.page-aside {
  padding: 28px;
}

.page-aside h3 {
  margin-bottom: 12px;
}

.detail-list li,
.footer-list li {
  padding: 12px 0;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  line-height: 1.7;
}

.detail-list li:first-child,
.footer-list li:first-child {
  padding-top: 0;
  border-top: 0;
}

.detail-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
}

.service-directory-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.service-card[id] {
  scroll-margin-top: calc(var(--nav-height) + 18px);
}

.service-footnote {
  margin-top: 28px;
}

.service-footnote p {
  margin: 0;
  max-width: 68ch;
  color: var(--ink-soft);
  line-height: 1.78;
}

.directory-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.directory-card {
  padding: 20px;
}

.directory-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
}

.directory-card span {
  color: var(--ink-soft);
  line-height: 1.7;
}

.leader-card {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 28px;
  padding: 34px;
}

.leader-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 116px;
  height: 116px;
  border-radius: 28px;
  background: linear-gradient(145deg, #7d4547, var(--brand-deep));
  color: #fff;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.leader-copy h2 {
  margin: 0 0 12px;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(2rem, 3.1vw, 2.75rem);
  line-height: 1.02;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.leader-copy p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.82;
}

.leader-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.leader-point {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(108, 43, 47, 0.08);
}

.leader-point strong {
  display: block;
  margin-bottom: 6px;
  color: var(--brand-deep);
}

.group-stack {
  display: grid;
  gap: 44px;
}

.group-block {
  display: grid;
  gap: 22px;
  padding-top: 10px;
  border-top: 1px solid rgba(108, 43, 47, 0.08);
}

.group-block:first-child {
  padding-top: 0;
  border-top: 0;
}

.group-header {
  max-width: 60ch;
}

.group-header h2 {
  margin: 0 0 12px;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
  line-height: 1.06;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.group-header p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.78;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.team-grid.single-column {
  grid-template-columns: 1fr;
}

.service-directory-grid > .service-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.contact-grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  align-items: start;
}

.contact-stack {
  display: grid;
  gap: 18px;
}

.contact-card {
  padding: 28px;
}

.contact-card h2 {
  margin: 0 0 12px;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(1.8rem, 2.7vw, 2.35rem);
  line-height: 1.08;
  font-weight: 500;
}

.contact-card .hero-actions,
.contact-card .contact-actions {
  margin-top: 24px;
}

.map-frame {
  overflow: hidden;
  border-radius: 28px;
  min-height: 420px;
  border: 1px solid rgba(108, 43, 47, 0.08);
  box-shadow: var(--shadow-sm);
}

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

.quote-card {
  background:
    linear-gradient(145deg, #20191a 0%, #3f2624 48%, #6b4031 100%);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.quote-card p {
  color: rgba(249, 241, 232, 0.88);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(1.5rem, 2.2vw, 2.1rem);
  line-height: 1.22;
}

.quote-card span {
  display: block;
  margin-top: 16px;
  color: rgba(243, 224, 202, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-footer {
  padding: 22px 0 48px;
}

.footer-shell {
  padding: 34px;
  border-radius: 34px;
  background:
    linear-gradient(145deg, #1d1818 0%, #2d2221 42%, #533329 100%);
  color: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-lg);
}

.footer-grid {
  grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(0, 0.7fr));
  align-items: start;
}

.footer-column-wide {
  padding-right: 14px;
}

.footer-kicker,
.footer-heading {
  margin: 0 0 14px;
  color: rgba(244, 226, 204, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-lead {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.82;
}

.footer-list a {
  color: rgba(255, 255, 255, 0.82);
}

.footer-list a:hover,
.footer-list a:focus-visible {
  color: #fff;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 20px;
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-meta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

.reveal {
  --reveal-delay: 0ms;
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition:
    opacity 540ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 540ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay);
}

.reveal.in-view {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.is-hidden {
  display: none !important;
}

.field-grid {
  display: grid;
  gap: 14px;
}

.field-grid.field-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.billing-auth-page {
  padding-top: 34px;
}

.billing-auth-wrap {
  width: min(100%, 760px);
  margin: 0 auto;
}

.billing-auth-card {
  display: grid;
  gap: 20px;
}

.billing-auth-head {
  display: grid;
  gap: 18px;
}

.billing-auth-copy {
  display: grid;
  gap: 12px;
}

.billing-auth-copy h1 {
  margin: 0;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(2.35rem, 4vw, 3.4rem);
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.billing-auth-copy p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.78;
}

.billing-auth-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.billing-mini-meta {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(24, 33, 44, 0.06);
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.billing-hero-shell {
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
}

.billing-auth-grid,
.billing-dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 24px;
  align-items: start;
}

.billing-stack {
  display: grid;
  gap: 24px;
}

.billing-side-stack {
  display: grid;
  gap: 24px;
}

.billing-panel {
  padding: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(246, 239, 232, 0.9));
  border: 1px solid rgba(108, 43, 47, 0.08);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.billing-panel h2 {
  margin: 0;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.02;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.billing-panel h3 {
  margin: 0;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.billing-panel-head {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

.billing-panel-head p,
.billing-summary-copy {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.75;
}

.billing-progress-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.billing-progress-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(24, 33, 44, 0.06);
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 800;
}

.billing-progress-pill.is-current {
  background: rgba(108, 43, 47, 0.1);
  color: var(--brand-deep);
}

.billing-tab-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.billing-tab {
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(108, 43, 47, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink-soft);
  font-weight: 800;
  transition:
    border-color var(--transition),
    background var(--transition),
    color var(--transition);
}

.billing-tab.is-active,
.billing-tab:hover,
.billing-tab:focus-visible {
  border-color: rgba(108, 43, 47, 0.2);
  background: rgba(108, 43, 47, 0.08);
  color: var(--brand-deep);
}

.billing-form {
  display: grid;
  gap: 14px;
}

.billing-field {
  display: grid;
  gap: 8px;
}

.billing-field label {
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 800;
}

.billing-field input {
  width: 100%;
  min-height: 56px;
  padding: 0 18px;
  border: 1px solid rgba(108, 43, 47, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}

.billing-field input:hover,
.billing-field input:focus-visible {
  border-color: rgba(108, 43, 47, 0.24);
  box-shadow: 0 0 0 4px rgba(108, 43, 47, 0.08);
  background: #fff;
  outline: none;
}

.billing-field input.is-invalid {
  border-color: rgba(142, 45, 45, 0.38);
  box-shadow: 0 0 0 4px rgba(142, 45, 45, 0.08);
  background: rgba(255, 249, 249, 0.98);
}

.billing-inline-note,
.billing-note {
  margin: 0;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(108, 43, 47, 0.06);
  color: var(--ink-soft);
  line-height: 1.7;
}

.billing-message {
  min-height: 0;
  margin: 0;
  color: var(--ink-soft);
  font-weight: 700;
}

.billing-alert {
  display: none;
}

.billing-alert:not(:empty) {
  display: block;
  padding: 15px 18px;
  border-radius: 18px;
  background: rgba(24, 33, 44, 0.05);
}

.billing-message.is-error {
  background: rgba(142, 45, 45, 0.08);
  color: #8e2d2d;
}

.billing-message.is-success {
  background: rgba(32, 104, 69, 0.08);
  color: #206845;
}

.billing-auth-footer {
  display: grid;
  gap: 14px;
}

.billing-auth-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.billing-plan-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 12px;
}

.billing-session-card,
.billing-support-panel {
  display: grid;
  gap: 16px;
}

.billing-status-card-strong {
  gap: 16px;
  padding: 24px;
  background:
    radial-gradient(circle at top right, rgba(179, 136, 88, 0.14), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 241, 234, 0.9));
}

.billing-metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.billing-metric-card,
.billing-action-card {
  border-radius: 24px;
  border: 1px solid rgba(108, 43, 47, 0.08);
  background:
    radial-gradient(circle at top right, rgba(179, 136, 88, 0.08), transparent 22%),
    rgba(255, 255, 255, 0.72);
}

.billing-metric-card {
  display: grid;
  gap: 8px;
  padding: 20px;
}

.billing-metric-card span {
  color: var(--ink-muted);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.billing-metric-card strong {
  color: var(--brand-deep);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.38rem;
  font-weight: 500;
  line-height: 1.08;
}

.billing-metric-card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.billing-action-card {
  display: grid;
  gap: 18px;
  padding: 22px;
}

.billing-price {
  margin: 0 0 14px;
  color: var(--brand-deep);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(3rem, 5vw, 4.2rem);
  line-height: 0.94;
  font-weight: 500;
  letter-spacing: -0.05em;
}

.billing-price span {
  margin-left: 10px;
  color: var(--ink-muted);
  font-size: 1rem;
  letter-spacing: 0;
}

.billing-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(108, 43, 47, 0.08);
  color: var(--brand-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.billing-badge-success {
  background: rgba(28, 125, 79, 0.12);
  color: #1e6d47;
}

.billing-badge-warning {
  background: rgba(179, 136, 88, 0.16);
  color: #8e6336;
}

.billing-badge-neutral {
  background: rgba(24, 33, 44, 0.08);
  color: var(--ink-soft);
}

.billing-meta-list {
  margin: 24px 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.billing-meta-list li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(24, 33, 44, 0.08);
}

.billing-meta-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.billing-meta-list span {
  color: var(--ink-muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.billing-meta-list strong {
  color: var(--ink);
  font-size: 0.94rem;
}

.billing-status-card {
  display: grid;
  gap: 14px;
  padding: 22px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(179, 136, 88, 0.12), transparent 20%),
    rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(108, 43, 47, 0.08);
}

.billing-status-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.billing-detail-grid {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 14px;
}

.billing-detail-grid.billing-detail-grid-wide {
  margin-top: 22px;
}

.billing-detail-grid dt {
  margin: 0 0 6px;
  color: var(--ink-muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.billing-detail-grid dd {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.billing-dashboard-actions {
  margin-top: 6px;
}

.billing-check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.billing-check-list li {
  position: relative;
  padding-left: 22px;
  color: var(--ink-soft);
  line-height: 1.72;
}

.billing-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold), var(--brand));
}

@media (max-width: 1100px) {
  .header-shell {
    grid-template-columns: auto auto;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero-shell,
  .page-hero-shell,
  .split-layout,
  .history-layout,
  .team-preview-grid,
  .contact-band,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .directory-grid,
  .hero-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-grid,
  .service-directory-grid,
  .team-grid,
  .leader-points {
    grid-template-columns: 1fr;
  }

  .hero-stage-note {
    width: min(78%, 372px);
    margin-top: 0;
  }

  .billing-auth-grid,
  .billing-dashboard-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  :root {
    --nav-height: 76px;
  }

  .container {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .section {
    padding: 84px 0;
  }

  .section.section-tight {
    padding: 64px 0;
  }

  .header-phone,
  .header-actions .button-compact {
    display: none;
  }

  .brand-meta {
    display: none;
  }

  .hero-shell {
    gap: 28px;
    padding: 36px;
    border-radius: 32px;
  }

  .hero-copy {
    gap: 18px;
  }

  .hero-copy h1 {
    max-width: 9ch;
    font-size: clamp(2.8rem, 8vw, 4.2rem);
  }

  .page-hero-copy h1 {
    max-width: 11.5ch;
    font-size: clamp(2.3rem, 7.6vw, 3.5rem);
  }

  .hero-media {
    min-height: 480px;
  }

  .hero-media-card {
    max-width: 332px;
  }

  .hero-stage-note {
    width: min(92%, 360px);
    margin-top: 0;
  }

  .contact-band {
    padding: 30px;
  }

  .footer-shell {
    padding: 28px;
  }

  .billing-hero-shell,
  .field-grid.field-grid-2,
  .billing-detail-grid,
  .billing-metric-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .hero-summary-grid,
  .service-grid,
  .directory-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    padding-bottom: 0;
  }

  .hero-shell {
    gap: 22px;
  }

  .hero-copy {
    align-content: start;
  }

  .hero-copy h1 {
    max-width: 9.4ch;
  }

  .hero-media {
    min-height: 360px;
  }

  .hero-media-card {
    left: 18px;
    right: 18px;
    bottom: 18px;
    max-width: none;
    padding: 20px 20px 18px;
  }

  .hero-stage-note {
    position: relative;
    right: auto;
    bottom: auto;
    width: auto;
    margin: 16px 0 0;
    padding: 22px 20px;
  }

  .hero-actions,
  .contact-actions,
  .billing-dashboard-actions,
  .billing-auth-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button,
  .button-secondary,
  .button-primary {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 22px), var(--max-width));
  }

  .section {
    padding: 64px 0;
  }

  .section.section-tight {
    padding: 52px 0;
  }

  .hero-home,
  .page-hero {
    padding-top: 28px;
  }

  .hero-shell,
  .contact-band,
  .leader-card,
  .footer-shell,
  .billing-panel {
    padding: 24px 20px;
  }

  .hero-media-card,
  .hero-stage-note,
  .content-card,
  .contact-card,
  .quote-card,
  .service-card,
  .team-card,
  .proof-card,
  .timeline-card,
  .page-aside {
    padding: 22px 20px;
  }

  .hero-media {
    min-height: 320px;
    border-radius: 28px;
  }

  .hero-media img {
    object-position: 62% center;
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .section-heading h1,
  .section-heading h2,
  .contact-band h2,
  .group-header h2 {
    font-size: clamp(1.9rem, 8vw, 2.75rem);
  }

  .hero-copy h1,
  .page-hero-copy h1 {
    max-width: none;
    font-size: clamp(2.15rem, 9.2vw, 3.2rem);
    line-height: 1;
  }

  .hero-copy p,
  .section-heading p,
  .content-card p,
  .service-card p,
  .proof-card p,
  .timeline-card p,
  .team-card p,
  .contact-card p,
  .leader-copy p,
  .footer-lead {
    font-size: 0.95rem;
    line-height: 1.72;
  }

  .brand-logo-frame {
    width: 92px;
    height: 46px;
    padding: 6px 7px;
    border-radius: 13px;
  }

  .brand-name {
    font-size: 0.84rem;
  }

  .mobile-panel {
    inset: calc(var(--nav-height) + 8px) 0 auto;
  }

  .mobile-panel-shell {
    padding: 16px;
    border-radius: 24px;
  }

  .team-top {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 14px;
  }

  .initials {
    width: 54px;
    height: 54px;
    border-radius: 16px;
  }

  .leader-card {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .leader-mark {
    width: 74px;
    height: 74px;
    border-radius: 20px;
    font-size: 1.4rem;
  }

  .timeline-grid {
    padding-left: 18px;
  }

  .timeline-card::before {
    left: -18px;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 340px;
  }
}

@media (max-width: 440px) {
  .header-shell {
    gap: 14px;
  }

  .brand {
    gap: 10px;
  }

  .brand-logo-frame {
    width: 84px;
    height: 42px;
    padding: 5px 6px;
  }

  .brand-copy {
    display: none;
  }
}

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

  .reveal,
  .button,
  .service-card,
  .site-header,
  .nav-scrim {
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
