:root {
  --ink: #111827;
  --navy: #17213a;
  --steel: #314158;
  --teal: #137c80;
  --gold: #b7832f;
  --paper: #fbfaf7;
  --mist: #eef3f1;
  --line: #d8dedc;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(17, 24, 39, 0.16);
  --site-max: 1200px;
  --font-sans: "Outfit", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: "Cardo", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 20;
  transform: translateY(-140%);
  background: var(--ink);
  color: var(--white);
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 5vw, 4rem);
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 10;
}

.site-header::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: -1;
  width: 100vw;
  background: var(--white);
  pointer-events: none;
  transform: translateX(-50%);
}

.site-header::after {
  content: "";
  position: absolute;
  right: 50%;
  top: 100%;
  left: 50%;
  width: 100vw;
  height: 18px;
  background: linear-gradient(
    to bottom,
    rgba(17, 24, 39, 0.16),
    rgba(17, 24, 39, 0.08) 36%,
    rgba(17, 24, 39, 0)
  );
  pointer-events: none;
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.75rem;
  aspect-ratio: 1;
  background: var(--navy);
  color: var(--white);
  border-radius: 0.45rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand small {
  color: var(--steel);
  font-size: 0.82rem;
}

.nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

.nav a {
  padding: 0.65rem 0.85rem;
  border-radius: 0.45rem;
  color: var(--steel);
  font-weight: 600;
  text-decoration: none;
}

.nav a:hover {
  background: var(--mist);
  color: var(--ink);
}

.menu-toggle,
.menu-close {
  display: inline-grid;
  place-items: center;
  border: 0;
  cursor: pointer;
}

.menu-toggle {
  width: 40px;
  height: 40px;
  gap: 5px;
  background: transparent;
  padding: 6px;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 5px;
  background: var(--navy);
  border-radius: 999px;
}

.menu-scrim {
  position: fixed;
  inset: 0;
  z-index: 30;
  background: rgba(13, 20, 37, 0.42);
  opacity: 0;
  visibility: hidden;
  transition: opacity 240ms ease, visibility 240ms ease;
}

.mobile-menu {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 40;
  display: grid;
  align-content: start;
  gap: 2rem;
  width: min(90vw, 28rem);
  min-height: 100vh;
  padding: 1rem;
  background: var(--navy);
  color: var(--white);
  box-shadow: -24px 0 60px rgba(0, 0, 0, 0.28);
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1), visibility 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-menu-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.mobile-menu-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
  color: var(--white);
  text-decoration: none;
}

.mobile-menu-brand img {
  width: 3.25rem;
  aspect-ratio: 1;
  border: 2px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  object-fit: cover;
}

.mobile-menu-brand strong,
.mobile-menu-brand small {
  display: block;
  line-height: 1.1;
}

.mobile-menu-brand strong {
  font-size: 1.08rem;
}

.mobile-menu-brand small {
  margin-top: 0.18rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.menu-close {
  position: relative;
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  background: transparent;
  padding: 5px;
}

.menu-close span {
  position: absolute;
  width: 30px;
  height: 5px;
  background: var(--white);
  border-radius: 999px;
}

.menu-close span:first-child {
  transform: rotate(45deg);
}

.menu-close span:last-child {
  transform: rotate(-45deg);
}

.mobile-menu-nav {
  display: grid;
  gap: 0.35rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.mobile-menu-nav a {
  padding: 1rem 0.2rem;
  color: var(--white);
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none;
}

.mobile-menu-nav a:hover {
  color: #f8d184;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .menu-scrim {
  opacity: 1;
  visibility: visible;
}

body.menu-open .mobile-menu {
  transform: translateX(0);
  visibility: visible;
}

.hero {
  display: grid;
  gap: 2rem;
  padding: clamp(1rem, 3.5vw, 2.5rem) clamp(1rem, 5vw, 4rem) 1rem;
}

.hero-copy {
  max-width: 43rem;
}

.hero-media {
  order: -1;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--font-serif);
  letter-spacing: 0;
}

h1 {
  max-width: 100%;
  margin-bottom: 1rem;
  line-height: 1;
  font-size: 2rem;
}

h1 span {
  display: block;
  white-space: nowrap;
}

h2 {
  margin-bottom: 1rem;
  line-height: 1.12;
  font-size: clamp(2.25rem, 10vw, 4rem);
}

h3 {
  margin-bottom: 0.65rem;
  color: var(--navy);
  font-size: 1.2rem;
  line-height: 1.2;
}

.hero-lede {
  max-width: 34rem;
  color: var(--steel);
  font-size: clamp(1.15rem, 4vw, 1.35rem);
}

.hero-actions {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.85rem 1.2rem;
  border: 2px solid var(--navy);
  border-radius: 0.5rem;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
}

.button-primary {
  background: var(--navy);
  color: var(--white);
}

.button-primary:hover {
  background: var(--teal);
  border-color: var(--teal);
}

.button-secondary {
  background: transparent;
  color: var(--navy);
}

.button-secondary:hover {
  background: var(--white);
}

.hero-media {
  overflow: hidden;
  border-radius: 0.5rem;
  padding: 0;
}

.hero-media img {
  width: 100%;
  min-height: 18rem;
  padding: 0;
  object-fit: contain;
}

.intro,
.section,
.band,
.faq,
.contact {
  padding: clamp(3rem, 10vw, 6.5rem) clamp(1rem, 5vw, 4rem);
}

.intro {
  background: var(--navy);
  box-shadow: 0 0 0 100vmax var(--navy);
  clip-path: inset(0 -100vmax);
  color: var(--white);
}

.intro-inner {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  margin: 0 auto;
  max-width: 100%;
}

.intro-portrait {
  width: clamp(8.5rem, 42vw, 14rem);
  aspect-ratio: 1;
  justify-self: center;
  border: 0.35rem solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.25);
  object-fit: cover;
  object-position: center 18%;
}

.intro p {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.55rem, 6vw, 2.75rem);
  line-height: 1.15;
}

.section-heading {
  max-width: 46rem;
}

.service-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
  width: 100%;
}

.service-card {
  min-height: 13rem;
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 0.35rem solid var(--teal);
  border-radius: 0.5rem;
  box-shadow: 0 10px 22px rgba(17, 24, 39, 0.18);
}

.service-card p,
.copy-stack p,
.approach-list p,
.faq p,
.contact p {
  color: var(--steel);
}

.band {
  background: var(--mist);
}

.approach-list {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}

.approach-list > div {
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.step {
  display: inline-block;
  margin-bottom: 0.75rem;
  color: var(--gold);
  font-weight: 800;
}

.split {
  display: grid;
  gap: 2rem;
}

.copy-stack {
  max-width: 44rem;
  font-size: 1.08rem;
}

.faq {
  background: var(--white);
}

.faq .eyebrow {
  color: var(--teal);
}

.faq-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 2rem;
}

details {
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: var(--paper);
}

summary {
  cursor: pointer;
  padding: 1rem;
  color: var(--navy);
  font-weight: 800;
}

details p {
  padding: 0 1rem 1rem;
}

.contact {
  display: grid;
  gap: 2rem;
  background: var(--navy);
  box-shadow: 0 0 0 100vmax var(--navy);
  clip-path: inset(0 -100vmax);
  color: var(--white);
}

.contact h2 {
  max-width: 10ch;
}

.contact p {
  max-width: 35rem;
  color: #e2e8f0;
}

address {
  display: grid;
  gap: 0.35rem;
  align-self: start;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.5rem;
  font-style: normal;
}

address a {
  color: #f8d184;
  font-weight: 800;
}

.site-footer {
  display: grid;
  gap: 0.5rem;
  padding: 1.25rem clamp(1rem, 5vw, 4rem);
  background: #0d1425;
  box-shadow: 0 0 0 100vmax #0d1425;
  clip-path: inset(0 -100vmax);
  color: #e5e7eb;
  font-size: 0.92rem;
  text-align: center;
}

.site-footer p {
  margin: 0;
}

@media (min-width: 42rem) {
  .site-header,
  .hero,
  .intro,
  .section,
  .band,
  .faq,
  .contact,
  .site-footer {
    max-width: var(--site-max);
    margin-right: auto;
    margin-left: auto;
  }

  .nav {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
  }

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

  h1 {
    font-size: 3.15rem;
  }
}

@media (min-width: 60rem) {
  .hero {
    grid-template-columns: minmax(0, calc((var(--site-max) - 10rem) / 2)) minmax(0, 1fr);
    align-items: center;
    max-width: none;
    min-height: calc(100vh - 5rem);
    margin-right: 0;
    margin-left: 0;
    padding-right: 0;
    padding-left: max(4rem, calc((100vw - var(--site-max)) / 2 + 4rem));
  }

  .hero-media {
    order: 0;
    justify-self: end;
    width: min(85vw, 72.5rem);
    z-index: 1;
  }

  .hero-copy,
  .hero-lede {
    max-width: none;
  }

  .hero-copy {
    position: relative;
    z-index: 2;
  }

  h1 {
    max-width: none;
    width: max-content;
    font-size: clamp(3.55rem, 5vw, 3.95rem);
  }

  .hero-media img {
    min-height: min(72vh, 44rem);
  }

  .hero-media {
    border-radius: 0.5rem 0 0 0.5rem;
  }

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

  .split,
  .contact {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
  }

  .split .copy-stack {
    padding-top: calc(0.82rem * 1.2 + 0.75rem);
  }

  .intro-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
    align-items: center;
    gap: clamp(2rem, 5vw, 4rem);
  }

  .intro-portrait {
    width: min(100%, 20rem);
    height: auto;
    justify-self: center;
    align-self: center;
    aspect-ratio: 1;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }
}
