:root {
  --ink: #17211f;
  --muted: #52615d;
  --paper: #f7f3ec;
  --white: #ffffff;
  --green: #0d6b4f;
  --green-dark: #064431;
  --blue: #265f8f;
  --coral: #c44a37;
  --line: rgba(23, 33, 31, 0.14);
  --shadow: 0 22px 70px rgba(23, 33, 31, 0.18);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 20;
  transform: translateY(-160%);
  border-radius: 999px;
  background: var(--white);
  color: var(--green-dark);
  padding: 0.7rem 1rem;
  font-weight: 800;
  transition: transform 160ms ease;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  color: var(--white);
  transition: background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.site-header.is-scrolled {
  background: rgba(247, 243, 236, 0.94);
  color: var(--ink);
  box-shadow: 0 10px 34px rgba(23, 33, 31, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  width: fit-content;
  text-decoration: none;
  font-weight: 850;
  white-space: nowrap;
}

.brand-mark {
  width: 0.9rem;
  height: 0.9rem;
  border: 3px solid currentColor;
  border-radius: 50%;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.2rem);
  font-size: 0.93rem;
  font-weight: 750;
}

.nav-links a,
.header-cta {
  text-decoration: none;
}

.nav-links a {
  opacity: 0.86;
}

.nav-links a:hover {
  opacity: 1;
}

.header-cta {
  justify-self: end;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 0.68rem 1rem;
  font-size: 0.9rem;
  font-weight: 800;
}

.hero {
  position: relative;
  display: grid;
  min-height: 88svh;
  overflow: hidden;
  background: var(--ink);
}

.hero picture,
.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero img {
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 16, 14, 0.86), rgba(5, 16, 14, 0.4) 48%, rgba(5, 16, 14, 0.08)),
    linear-gradient(0deg, rgba(5, 16, 14, 0.5), rgba(5, 16, 14, 0.08) 42%);
}

.hero-content {
  position: relative;
  align-self: end;
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: 8rem 0 8vh;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--coral);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffb19f;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2.6rem, 6.2vw, 6.4rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 640px;
  margin: 1.35rem 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.65rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  border-radius: 999px;
  padding: 0.85rem 1.15rem;
  text-decoration: none;
  font-weight: 850;
  line-height: 1;
  cursor: pointer;
}

.button-primary {
  border: 1px solid var(--green);
  background: var(--green);
  color: var(--white);
}

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

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.72);
  color: var(--white);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(var(--max), calc(100% - 2rem));
  margin: -3.2rem auto 0;
  position: relative;
  z-index: 2;
  background: var(--white);
  box-shadow: var(--shadow);
}

.quick-facts article {
  min-width: 0;
  padding: 1.35rem clamp(1rem, 2vw, 1.55rem);
  border-right: 1px solid var(--line);
}

.quick-facts article:last-child {
  border-right: 0;
}

.fact-number,
.fact-label {
  display: block;
}

.fact-number {
  color: var(--green-dark);
  font-size: clamp(1.55rem, 3vw, 2.5rem);
  line-height: 1;
  font-weight: 900;
}

.fact-label {
  margin-top: 0.45rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
}

.section {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(2rem, 6vw, 5.5rem);
  align-items: start;
}

.section-copy h2,
.location-copy h2,
.audience-section h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

.section-copy p,
.location-copy p,
.contact-copy p {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.06rem;
}

.detail-list {
  display: grid;
  gap: 1rem;
}

.detail-list article,
.audience-grid article {
  min-height: 11rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
  padding: 1.35rem;
}

.detail-list h3,
.audience-grid h3 {
  margin: 0;
  color: var(--green-dark);
  font-size: 1.1rem;
}

.detail-list p,
.audience-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.location-band {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  width: 100%;
  max-width: none;
  padding: clamp(4rem, 8vw, 7rem) max(1rem, calc((100vw - var(--max)) / 2));
  background: #e7efe9;
}

.image-frame {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  color: var(--white);
  text-decoration: none;
  box-shadow: var(--shadow);
}

.image-frame img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  transition: transform 200ms ease;
}

.image-frame:hover img {
  transform: scale(1.025);
}

.image-frame span {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  border-radius: 999px;
  background: rgba(6, 68, 49, 0.9);
  padding: 0.7rem 1rem;
  font-size: 0.9rem;
  font-weight: 850;
}

.audience-section {
  display: grid;
  gap: 2rem;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.media-section {
  border-top: 1px solid var(--line);
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.media-panel {
  margin: 0;
  background: var(--white);
  box-shadow: 0 12px 36px rgba(23, 33, 31, 0.08);
}

.media-panel img,
.media-panel video {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #0c1715;
}

.media-panel figcaption {
  padding: 0.9rem 1rem 1rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
  border-top: 1px solid var(--line);
}

.contact-meta {
  display: grid;
  gap: 0.8rem;
  margin: 2rem 0 0;
}

.contact-meta div {
  display: grid;
  grid-template-columns: 8.2rem 1fr;
  gap: 1rem;
  padding: 0.8rem 0;
  border-top: 1px solid var(--line);
}

.contact-meta dt {
  color: var(--green-dark);
  font-weight: 900;
}

.contact-meta dd {
  margin: 0;
  color: var(--muted);
}

.inquiry-form {
  display: grid;
  gap: 1rem;
  border: 1px solid var(--line);
  background: var(--white);
  padding: clamp(1.2rem, 3vw, 1.7rem);
  box-shadow: 0 14px 44px rgba(23, 33, 31, 0.08);
}

.inquiry-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--green-dark);
  font-size: 0.88rem;
  font-weight: 850;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #fbfaf7;
  color: var(--ink);
  font: inherit;
  padding: 0.78rem 0.82rem;
}

.inquiry-form textarea {
  resize: vertical;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  outline: 3px solid rgba(38, 95, 143, 0.2);
  border-color: var(--blue);
}

.form-submit {
  border: 0;
  margin-top: 0.4rem;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem clamp(1rem, 4vw, 3rem);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.76);
}

.site-footer p {
  max-width: 720px;
  margin: 0;
  font-size: 0.88rem;
}

.site-footer p:first-child {
  color: var(--white);
  font-weight: 900;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 84svh;
  }

  .hero-content {
    padding-top: 7rem;
  }

  .quick-facts,
  .section-grid,
  .location-band,
  .audience-grid,
  .media-grid,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .quick-facts {
    margin-top: 0;
    width: 100%;
    box-shadow: none;
  }

  .quick-facts article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .location-band {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 0.8rem 0.9rem;
    gap: 0.6rem;
  }

  .brand {
    gap: 0.45rem;
    font-size: 0.84rem;
  }

  .brand-mark {
    width: 0.72rem;
    height: 0.72rem;
    border-width: 2px;
  }

  .header-cta {
    padding: 0.56rem 0.68rem;
    font-size: 0.74rem;
  }

  h1 {
    font-size: clamp(2.35rem, 14vw, 4.5rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .contact-meta div {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .site-footer {
    display: grid;
  }
}

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