:root {
  --ink: #1d2422;
  --muted: #5f6965;
  --paper: #fbfaf7;
  --cream: #f2eee6;
  --sage: #486c52;
  --sage-dark: #2f4b38;
  --blue: #2f5873;
  --gold: #c99a42;
  --line: #ded8cc;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(29, 36, 34, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Gothic A1", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.sr-only,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 10000;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--white);
  border-radius: 6px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 34px;
  color: var(--white);
  transition: background 220ms ease, box-shadow 220ms ease, color 220ms ease, padding 220ms ease;
}

.site-header.is-scrolled,
.site-header.nav-active {
  padding-top: 12px;
  padding-bottom: 12px;
  background: rgba(251, 250, 247, 0.94);
  color: var(--ink);
  box-shadow: 0 10px 32px rgba(29, 36, 34, 0.08);
  backdrop-filter: blur(16px);
}

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

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
}

.brand span {
  display: grid;
  line-height: 1.1;
}

.brand strong {
  font-size: 18px;
  font-weight: 800;
}

.brand small {
  margin-top: 3px;
  color: currentColor;
  opacity: 0.72;
  font-size: 12px;
}

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

.site-nav a {
  position: relative;
  padding: 10px 12px;
  border-radius: 6px;
  color: currentColor;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background 180ms ease, transform 180ms ease, color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
}

.site-header.is-scrolled .site-nav a:hover,
.site-header.is-scrolled .site-nav a:focus-visible,
.site-header.nav-active .site-nav a:hover,
.site-header.nav-active .site-nav a:focus-visible {
  background: rgba(72, 108, 82, 0.1);
}

.site-nav .nav-cta {
  margin-left: 8px;
  background: var(--white);
  color: var(--sage-dark);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
}

.site-header.is-scrolled .site-nav .nav-cta,
.site-header.nav-active .site-nav .nav-cta {
  background: var(--sage);
  color: var(--white);
  box-shadow: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 6px;
  background: transparent;
  color: currentColor;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  padding: 132px 34px 34px;
  color: var(--white);
}

.hero-video,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3;
}

.hero-scrim {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(20, 25, 22, 0.82) 0%, rgba(20, 25, 22, 0.56) 46%, rgba(20, 25, 22, 0.16) 100%),
    linear-gradient(0deg, rgba(20, 25, 22, 0.76) 0%, rgba(20, 25, 22, 0.12) 54%);
}

.hero-content {
  width: min(760px, 100%);
  padding-bottom: 70px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2 {
  margin: 0;
  font-family: "Merriweather", Georgia, serif;
  font-weight: 700;
  line-height: 1.08;
}

h1 {
  max-width: 720px;
  font-size: 64px;
}

h2 {
  font-size: 42px;
}

h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.25;
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
  line-height: 1.1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
  will-change: transform;
}

.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms ease;
}

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

.button:hover svg,
.button:focus-visible svg {
  transform: translate(2px, -2px);
}

.button-primary {
  background: var(--sage);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(47, 75, 56, 0.3);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--sage-dark);
  box-shadow: 0 18px 34px rgba(47, 75, 56, 0.34);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.button-light {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.hero-panel {
  position: absolute;
  right: 34px;
  bottom: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(110px, 1fr));
  width: min(520px, calc(100% - 68px));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
}

.hero-panel div {
  padding: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-panel div:last-child {
  border-right: 0;
}

.hero-panel strong {
  display: block;
  font-size: 22px;
  line-height: 1.1;
}

.hero-panel span {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  line-height: 1.3;
}

.service-band,
.media-story,
.billing-section,
.locations-section,
.team-section,
.cta-section {
  padding: 96px 34px;
}

.section-heading,
.billing-copy,
.story-copy {
  max-width: 760px;
}

.section-heading {
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading p:not(.eyebrow),
.billing-copy p:not(.eyebrow),
.story-copy p:not(.eyebrow),
.cta-copy p {
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1240px;
  margin: 0 auto;
}

.service-card,
.location-card,
.team-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(29, 36, 34, 0.06);
}

.service-card {
  display: grid;
  overflow: hidden;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(72, 108, 82, 0.35);
  box-shadow: var(--shadow);
}

.service-card img {
  width: 100%;
  aspect-ratio: 1 / 0.76;
  object-fit: cover;
}

.service-card div {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

.service-kicker {
  width: fit-content;
  padding: 5px 9px;
  border-radius: 6px;
  background: #eef4ef;
  color: var(--sage-dark);
  font-size: 12px;
  font-weight: 800;
}

.service-card a,
.text-link {
  color: var(--sage-dark);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.media-story {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 36px;
  align-items: center;
  background: var(--cream);
}

.media-story > * {
  max-width: 1240px;
}

.story-copy {
  justify-self: end;
}

.story-gallery {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 14px;
  width: min(720px, 100%);
}

.story-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(29, 36, 34, 0.1);
}

.story-gallery img:first-child {
  grid-row: 1 / 3;
}

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

.billing-copy {
  margin: 0 auto 34px;
  text-align: center;
}

.billing-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.logo-marquee {
  display: flex;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 56px;
  min-width: max-content;
  padding: 24px 28px;
  animation: logo-scroll 30s linear infinite;
}

.logo-track img {
  max-width: 145px;
  max-height: 44px;
  object-fit: contain;
  filter: grayscale(1) brightness(0) invert(1);
  opacity: 0.82;
}

@keyframes logo-scroll {
  to {
    transform: translateX(-100%);
  }
}

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

.location-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 1120px;
  margin: 0 auto;
}

.location-card {
  overflow: hidden;
}

.location-card img {
  width: 100%;
  aspect-ratio: 1.68 / 1;
  object-fit: cover;
}

.location-card div {
  padding: 26px;
}

.location-card p {
  margin: 10px 0;
  color: var(--muted);
}

.hours {
  font-weight: 800;
}

.team-section {
  background: #f5f8f3;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1240px;
  margin: 0 auto;
}

.team-card {
  display: grid;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.team-card:hover,
.team-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(47, 88, 115, 0.38);
  box-shadow: var(--shadow);
}

.team-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #eef0eb;
}

.team-card span {
  padding: 18px 18px 0;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.team-card strong {
  padding: 4px 18px 20px;
  font-size: 19px;
  line-height: 1.2;
}

.cta-section {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 36px;
  align-items: center;
  background: var(--sage-dark);
  color: var(--white);
}

.cta-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.26);
}

.cta-copy {
  max-width: 560px;
}

.cta-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  padding: 54px 34px 28px;
  background: #141817;
  color: var(--white);
}

.footer-brand,
.footer-columns {
  max-width: 1240px;
  margin: 0 auto;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand img {
  border-radius: 50%;
  background: var(--white);
}

.footer-brand strong,
.footer-brand span {
  display: block;
}

.footer-brand span {
  color: rgba(255, 255, 255, 0.62);
}

.footer-columns {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 24px;
  padding-top: 30px;
}

.footer-columns h2 {
  margin: 0 0 12px;
  font-family: "Gothic A1", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.2;
}

.footer-columns a {
  display: block;
  width: fit-content;
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: color 160ms ease, transform 160ms ease;
}

.footer-columns a:hover,
.footer-columns a:focus-visible {
  color: var(--white);
  transform: translateX(2px);
}

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

.social-row a {
  margin: 0;
}

.social-row img {
  border-radius: 6px;
}

.footer-note {
  max-width: 1240px;
  margin: 34px auto 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  h1 {
    font-size: 54px;
  }

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

  .media-story,
  .cta-section {
    grid-template-columns: 1fr;
  }

  .story-copy,
  .story-gallery,
  .cta-copy {
    justify-self: center;
    max-width: 860px;
  }
}

@media (max-width: 820px) {
  .site-header {
    padding: 14px 18px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 72px 14px auto;
    display: grid;
    gap: 4px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    color: var(--ink);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .site-nav a {
    padding: 13px 14px;
  }

  .site-nav .nav-cta {
    margin-left: 0;
    background: var(--sage);
    color: var(--white);
    box-shadow: none;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 88svh;
    padding: 110px 20px 22px;
  }

  .hero-content {
    padding-bottom: 126px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-panel {
    left: 20px;
    right: 20px;
    bottom: 20px;
    width: auto;
  }

  .hero-panel div {
    padding: 13px;
  }

  .service-band,
  .media-story,
  .billing-section,
  .locations-section,
  .team-section,
  .cta-section {
    padding: 70px 20px;
  }

  .location-layout,
  .footer-columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .hero-actions,
  .cta-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-panel {
    position: static;
    grid-template-columns: 1fr;
    width: 100%;
    margin-top: 28px;
  }

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

  .hero-panel div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .hero-panel div:last-child {
    border-bottom: 0;
  }

  .service-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .story-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .story-gallery img,
  .story-gallery img:first-child {
    grid-row: auto;
    aspect-ratio: 1.25 / 1;
  }

  .logo-track {
    gap: 38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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