:root {
  --black: #151515;
  --black-2: #0d0d0d;
  --gold: #b68c4d;
  --red: #c10c0c;
  --paper: #f4f2ec;
  --white: #ffffff;
  --muted: #d0cbc2;
  --text: #151515;
  --line: #d9d4c8;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Roboto", Arial, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--paper);
}

h1,
h2,
h3 {
  font-family: "Playfair Display", Georgia, serif;
  margin: 0;
  line-height: 1.08;
}

p {
  margin: 0;
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.paper-texture {
  background:
    linear-gradient(rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.96)),
    repeating-linear-gradient(
      45deg,
      rgba(0, 0, 0, 0.02) 0,
      rgba(0, 0, 0, 0.02) 1px,
      transparent 1px,
      transparent 6px
    );
}

.site-header {
  border-bottom: 1px solid #d8d2c4;
  position: sticky;
  top: 0;
  z-index: 30;
}

.header-inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--black);
}

.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--black);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 28px;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
}

.btn-primary {
  position: relative;
  color: #fff;
  background: var(--red);
  transition: transform 0.18s ease, background-color 0.18s ease;
}

.btn-primary::after {
  content: "";
  position: absolute;
  left: -6px;
  top: 6px;
  width: calc(100% + 12px);
  height: calc(100% - 12px);
  border: 2px solid #000;
  pointer-events: none;
  transition: transform 0.18s ease;
}

.btn-primary:hover {
  background: #9f0b0b;
  transform: translateY(-2px);
}

.btn-primary:hover::after {
  transform: translateY(-2px);
}

.btn-ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(3px);
}

.btn-ghost:hover {
  border-color: var(--gold);
}

.btn-sm {
  min-height: 40px;
  padding: 10px 18px;
}

.btn.is-disabled {
  opacity: 0.45;
  pointer-events: none;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 760px;
  display: flex;
  align-items: center;
  background: var(--black-2);
  overflow: hidden;
}

.hero-video-band {
  position: absolute;
  left: 0;
  right: 0;
  top: 56px;
  bottom: 56px;
  overflow: hidden;
  z-index: -2;
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    #000 14%,
    #000 86%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    #000 14%,
    #000 86%,
    transparent 100%
  );
}

.hero-video-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(13, 13, 13, 0.84) 0%,
      rgba(13, 13, 13, 0.2) 30%,
      rgba(13, 13, 13, 0.2) 70%,
      rgba(13, 13, 13, 0.86) 100%
    ),
    linear-gradient(
      90deg,
      rgba(13, 13, 13, 0.32) 0%,
      rgba(13, 13, 13, 0.08) 36%,
      rgba(13, 13, 13, 0.46) 100%
    );
}

.hero-video-band video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  opacity: 0.9;
  filter: brightness(0.78) contrast(0.95) saturate(0.88);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.74) 0%,
      rgba(0, 0, 0, 0.42) 38%,
      rgba(0, 0, 0, 0.66) 100%
    ),
    radial-gradient(circle at center, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.44));
  pointer-events: none;
  z-index: -1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 20px;
  justify-items: center;
  text-align: center;
  padding: 88px 0 112px;
}

.eyebrow {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 700;
  font-size: 0.76rem;
}

.hero h1 {
  color: var(--gold);
  text-transform: uppercase;
  font-size: clamp(2.2rem, 6.1vw, 4.5rem);
  max-width: 13ch;
  text-wrap: balance;
}

.hero-copy {
  color: #f3f3f3;
  max-width: 58ch;
  font-size: clamp(1rem, 1.9vw, 1.2rem);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.signup-form {
  display: grid;
  gap: 18px;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field-full {
  grid-column: 1 / -1;
  max-width: 420px;
}

.field label {
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: #303030;
}

.field input {
  min-height: 44px;
  border: 1px solid #7d8794;
  padding: 0 12px;
  font: inherit;
  color: var(--text);
  background: #fff;
}

.field input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(182, 140, 77, 0.16);
}

.form-actions {
  display: flex;
  justify-content: center;
  padding-top: 4px;
}

.form-actions .btn {
  min-width: 220px;
  border: 0;
}

.form-status {
  margin: 0;
  min-height: 1.4em;
  text-align: center;
  font-weight: 500;
}

.form-status[data-type="info"] {
  color: #3d3d3d;
}

.form-status[data-type="success"] {
  color: #157347;
}

.form-status[data-type="error"] {
  color: #a51414;
}

.required {
  color: #c10c0c;
}

.form-title {
  text-align: center;
  font-size: clamp(2.1rem, 4.5vw, 3.3rem);
}

.form-lead {
  margin: 10px auto 28px;
  max-width: 62ch;
  text-align: center;
  font-size: 1.06rem;
}

.section-dark {
  background:
    linear-gradient(rgba(16, 16, 16, 0.94), rgba(16, 16, 16, 0.94)),
    url("https://images.unsplash.com/photo-1470790376778-a9fbc86d70e2?auto=format&fit=crop&w=1800&q=80")
      center/cover no-repeat;
  color: #fff;
  padding: 88px 0;
}

.two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 38px;
}

.section-dark h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
}

.section-dark h2 span {
  display: block;
  color: var(--gold);
}

.bullet-list {
  margin: 24px 0 0;
  padding-left: 18px;
  max-width: 62ch;
}

.bullet-list li {
  margin: 10px 0;
}

.bullet-list li::marker {
  color: var(--gold);
}

.feature-image {
  margin: 0;
  border: 1px solid var(--gold);
  padding: 10px;
  background: rgba(255, 255, 255, 0.08);
}

.feature-image img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.section-paper {
  padding: 88px 0;
  background:
    linear-gradient(rgba(244, 242, 236, 0.96), rgba(244, 242, 236, 0.96)),
    repeating-linear-gradient(
      45deg,
      rgba(0, 0, 0, 0.02) 0,
      rgba(0, 0, 0, 0.02) 1px,
      transparent 1px,
      transparent 7px
    );
}

.center {
  text-align: center;
}

.section-paper h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  text-transform: uppercase;
}

.section-copy {
  margin: 18px auto 0;
  max-width: 65ch;
}

.media-video-card {
  width: min(980px, 100%);
  margin: 30px auto 0;
  padding: 10px;
  border: 1px solid var(--line);
  background: #0c0c0c;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.media-video-card video {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  background: #000;
}

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

.photo-grid figure {
  margin: 0;
  border: 1px solid var(--line);
  background: #fff;
  padding: 8px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.photo-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.section-light {
  padding: 72px 0;
  background: #fff;
}

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

.stats-grid article {
  border-top: 3px solid var(--gold);
  border-bottom: 1px solid #ece8df;
  padding: 28px 14px;
  text-align: center;
}

.stats-grid h3 {
  font-size: clamp(1.35rem, 2.3vw, 1.8rem);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.signup-band {
  background:
    linear-gradient(rgba(12, 12, 12, 0.92), rgba(12, 12, 12, 0.92)),
    url("https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&w=1800&q=80")
      center/cover no-repeat;
  color: #fff;
  padding: 88px 0;
  border-top: 4px solid var(--gold);
}

.signup-inner {
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 16px;
}

.signup-inner h2 {
  color: var(--gold);
  text-transform: uppercase;
  font-size: clamp(2rem, 4.8vw, 3.4rem);
}

.signup-inner p {
  max-width: 66ch;
}

.section-form {
  padding-top: 54px;
}

.form-embed {
  max-width: 860px;
  margin: 0 auto;
  border: 1px solid #d2d2d2;
  padding: 30px;
  background: #efefef;
}

.site-footer {
  background: var(--black);
  color: #fff;
  border-top: 1px solid #242424;
}

.footer-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
}

@media (max-width: 1050px) {
  .two-col,
  .photo-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .two-col {
    gap: 28px;
  }
}

@media (max-width: 820px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
    padding: 14px 0;
  }

  .nav-links {
    width: 100%;
    justify-content: center;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .field-full {
    max-width: 100%;
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: 650px;
  }

  .hero-video-band {
    top: 32px;
    bottom: 32px;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    width: min(360px, 100%);
  }

  .form-embed {
    padding: 16px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}
