:root {
  --bg: #f4f1ec;
  --bg-soft: #ebe6df;
  --text: #161616;
  --muted: #5d5a55;
  --dark: #111111;
  --white: #ffffff;
  --border: rgba(0, 0, 0, 0.08);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.container {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.narrow {
  width: min(760px, calc(100% - 48px));
  margin: 0 auto;
}

.center {
  text-align: center;
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  background: #d8d3cd;
}

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

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.08) 45%,
    rgba(0, 0, 0, 0.02) 100%
  );
}

.hero-overlay {
  position: absolute;
  left: 7%;
  bottom: 9%;
  z-index: 2;
  max-width: 640px;
  color: var(--white);
}

.eyebrow,
.section-label {
  margin: 0 0 12px;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-family: Arial, Helvetica, sans-serif;
}

.with-line {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.with-line::before,
.with-line::after {
  content: "";
  display: inline-block;
  width: 56px;
  height: 1px;
  background: rgba(0, 0, 0, 0.18);
}

.light {
  color: rgba(255, 255, 255, 0.75);
}

h1,
h2 {
  margin: 0 0 16px;
  font-weight: 400;
  line-height: 1.05;
}

h1 {
  font-size: clamp(52px, 8vw, 104px);
}

h2 {
  font-size: clamp(34px, 5vw, 64px);
}

.subtitle {
  margin: 0 0 28px;
  font-size: 18px;
  max-width: 520px;
  font-family: Arial, Helvetica, sans-serif;
}

.section {
  padding: 110px 0;
}

.section-soft {
  background: var(--bg-soft);
}

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

.grid-2 {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
}

.align-center {
  align-items: center;
}

.content p,
.download-panel p,
.narrow p {
  margin: 0 0 18px;
  font-size: 18px;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
}

.section-dark p {
  color: rgba(255, 255, 255, 0.8);
}

.facts-card {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.fact {
  padding: 30px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.fact:nth-child(2n) {
  border-right: 0;
}

.fact:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.fact strong {
  display: block;
  margin-bottom: 8px;
  font-size: 50px;
  font-weight: 400;
}

.fact span {
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--muted);
}

.editorial-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.download-panel {
  padding: 28px 0;
}

.btn {
  display: inline-block;
  margin-top: 12px;
  padding: 16px 28px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  font-family: Arial, Helvetica, sans-serif;
  transition: 0.25s ease;
}

.btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.16);
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

.btn-dark:hover {
  background: #2a2a2a;
}

.contact-card {
  margin-top: 26px;
  font-size: 18px;
}

.site-footer {
  background: #0b0b0b;
  color: rgba(255, 255, 255, 0.55);
  padding: 24px 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  letter-spacing: 0.03em;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-img {
    height: 86vh;
  }

  .hero-overlay {
    left: 24px;
    right: 24px;
    bottom: 32px;
  }

  .section {
    padding: 84px 0;
  }

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

@media (max-width: 640px) {
  .container,
  .narrow {
    width: min(100% - 32px, 1200px);
  }

  .hero {
    min-height: 82vh;
  }

  .hero-img {
    height: 82vh;
  }

  .subtitle,
  .content p,
  .download-panel p,
  .narrow p {
    font-size: 16px;
  }

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

  .fact {
    border-right: 0;
  }

  .fact:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--border);
  }

  .fact:last-child {
    border-bottom: 0;
  }

  .footer-inner {
    flex-direction: column;
  }
}

/* video embed styles */
.video-section {
  padding: 0; /* remove vertical padding so video sits flush */
}

.video-container {
  position: relative;
  width: 100vw;
  max-width: 100%;
  overflow: hidden;
}

/* maintain 16:9 aspect ratio */
.video-container::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}