:root {
  --ink: #152019;
  --muted: #5f675d;
  --paper: #fbf7ed;
  --cream: #f3ead6;
  --green: #173f2a;
  --green-2: #23643d;
  --gold: #c99a4b;
  --copper: #9f5b37;
  --line: rgba(21, 32, 25, 0.16);
  --white: #fffdf7;
  --shadow: 0 22px 60px rgba(32, 30, 22, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(251, 247, 237, 0.93);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 2px solid var(--green);
  border-radius: 50%;
  color: var(--green);
  font-size: 13px;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
  max-width: 100%;
  min-width: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav a {
  text-decoration: none;
}

.nav a:hover {
  color: var(--green);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: #0f2d1e;
}

.button.secondary {
  background: transparent;
  color: var(--green);
  border-color: rgba(23, 63, 42, 0.28);
}

.button.secondary:hover {
  background: rgba(23, 63, 42, 0.08);
}

.hero {
  min-height: min(840px, calc(100vh - 78px));
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
  align-items: stretch;
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 7vw, 106px) clamp(24px, 6vw, 86px);
}

h1,
h2,
h3,
.display {
  font-family: "Archivo Black", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  line-height: 0.98;
  letter-spacing: 0;
  margin: 0;
}

h1 {
  max-width: 580px;
  font-size: clamp(52px, 7.2vw, 92px);
  text-transform: uppercase;
}

.lead {
  max-width: 620px;
  margin: 26px 0 0;
  color: #324238;
  font-size: clamp(18px, 2vw, 24px);
}

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

.hero-photo {
  position: relative;
  min-height: 560px;
  overflow: hidden;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(23, 63, 42, 0.05), rgba(23, 63, 42, 0));
  pointer-events: none;
}

.hero-card {
  position: absolute;
  left: clamp(18px, 4vw, 48px);
  bottom: clamp(18px, 4vw, 48px);
  max-width: 420px;
  padding: 26px;
  background: rgba(255, 253, 247, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.section {
  padding: clamp(64px, 9vw, 118px) clamp(20px, 5vw, 72px);
}

.section.alt {
  background: var(--cream);
}

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

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.62fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 42px;
}

.section h2 {
  font-size: clamp(36px, 5.4vw, 76px);
  text-transform: uppercase;
}

.section-head p,
.copy-block p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.dark .section-head p,
.dark .copy-block p,
.dark .muted {
  color: rgba(255, 253, 247, 0.78);
}

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

.location-card,
.press-card,
.quote-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.location-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  padding: clamp(26px, 4vw, 42px);
}

.location-card h3,
.press-card h3 {
  margin: 0 0 12px;
  font-family: Poppins, Inter, system-ui, sans-serif;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.1;
}

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

.meta-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #2b372e;
  font-size: 15px;
}

.location-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-self: end;
}

.feature-split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(340px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.feature-image {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.feature-image img {
  width: 100%;
  aspect-ratio: 1.32;
  object-fit: cover;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.stat {
  padding: 20px;
  border: 1px solid rgba(255, 253, 247, 0.18);
  border-radius: 8px;
}

.stat strong {
  display: block;
  font-size: 26px;
  line-height: 1;
}

.stat span {
  color: rgba(255, 253, 247, 0.76);
  font-size: 13px;
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.press-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  padding: 26px;
}

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

.press-card a {
  margin-top: auto;
  color: var(--green);
  font-weight: 800;
  text-decoration: none;
}

.press-date {
  display: block;
  margin-bottom: 18px;
  color: var(--copper);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.quotes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.quote-card {
  padding: 26px;
}

.quote-card p {
  margin: 0 0 16px;
  font-size: 19px;
}

.quote-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.5fr);
  gap: 28px;
  padding: clamp(28px, 5vw, 54px);
  background: var(--white);
  border-radius: 8px;
  color: var(--ink);
}

.contact-panel h2 {
  font-size: clamp(32px, 5vw, 64px);
}

.contact-panel p {
  color: var(--muted);
}

.fine-print {
  max-width: 1180px;
  margin: 0 auto;
  color: rgba(255, 253, 247, 0.7);
  font-size: 12px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  padding: 30px clamp(20px, 5vw, 72px);
  background: #101711;
  color: rgba(255, 253, 247, 0.72);
  font-size: 13px;
}

.site-footer a {
  color: var(--white);
  text-decoration: none;
}

@media (max-width: 960px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero,
  .section-head,
  .feature-split,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-photo {
    min-height: 460px;
    order: -1;
  }

  .locations,
  .press-grid,
  .quotes {
    grid-template-columns: 1fr;
  }

  .location-card {
    grid-template-columns: 1fr;
  }

  .location-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (max-width: 620px) {
  .site-header {
    position: relative;
    overflow: hidden;
  }

  .nav {
    display: grid;
    grid-template-columns: repeat(3, max-content);
    gap: 10px 16px;
    overflow: visible;
    font-size: 13px;
  }

  h1 {
    font-size: 43px;
  }

  .hero-copy {
    max-width: 100vw;
    padding: 42px 24px 54px;
  }

  .lead {
    max-width: min(310px, calc(100vw - 48px));
    overflow-wrap: anywhere;
  }

  .hero-card {
    position: static;
    max-width: none;
    margin: 18px;
    background: var(--white);
  }

  .stat-row {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}
