:root {
  --ink: #171717;
  --paper: #fbf7f1;
  --soft: #efe4d7;
  --line: #ded1c2;
  --muted: #695f55;
  --accent: #e84f37;
  --accent-dark: #a92f20;
  --charcoal: #252322;
  --white: #ffffff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}

a {
  color: inherit;
}

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

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

.brand {
  text-decoration: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 32px);
  font-size: .92rem;
  font-weight: 700;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
}

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

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

.muted {
  background: var(--soft);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(520px, .9fr);
  align-items: center;
  gap: clamp(36px, 5vw, 72px);
  max-width: 1760px;
  margin: 0 auto;
  min-height: calc(100vh - 68px);
  padding-top: clamp(48px, 7vw, 86px);
  padding-bottom: clamp(40px, 6vw, 80px);
}

.hero-copy,
.section-heading,
.contact-copy {
  max-width: 680px;
}

.eyebrow,
.package-label {
  margin: 0 0 14px;
  color: var(--accent-dark);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
  line-height: .98;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3.1rem, 5vw, 5rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.25rem, 5vw, 4.3rem);
}

h3 {
  margin-bottom: 18px;
  font-size: 1.3rem;
}

.lede,
.section-heading p,
.about-layout > p,
.contact-copy p {
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  border-color: var(--ink);
  color: var(--white);
  background: var(--ink);
}

.button.secondary {
  border-color: rgba(23, 23, 23, .18);
  color: var(--ink);
  background: transparent;
}

.button:hover,
.text-link:hover {
  transform: translateY(-1px);
}

.hero-media {
  align-self: center;
  justify-self: end;
  width: 100%;
  max-width: 960px;
  aspect-ratio: 16 / 9;
  min-height: 0;
  overflow: hidden;
  border-radius: 6px;
  background: var(--charcoal);
  box-shadow: 0 34px 80px rgba(23, 23, 23, .2);
}

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

.video-section {
  display: grid;
  grid-template-columns: minmax(0, .45fr) minmax(420px, .75fr);
  align-items: center;
  gap: clamp(32px, 6vw, 80px);
}

.video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  background: var(--charcoal);
  box-shadow: 0 30px 70px rgba(23, 23, 23, .22);
}

.video-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: rgba(251, 247, 241, .92);
  transform: translate(-50%, -50%);
  box-shadow: 0 18px 34px rgba(0, 0, 0, .26);
}

.play-button::after {
  position: absolute;
  left: 32px;
  top: 24px;
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 22px solid var(--accent);
  content: "";
}

.video-caption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  color: var(--white);
  text-shadow: 0 2px 18px rgba(0, 0, 0, .55);
}

.video-caption span {
  color: rgba(255, 255, 255, .72);
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.video-caption strong {
  max-width: 260px;
  text-align: right;
  font-size: clamp(1.1rem, 2.6vw, 1.75rem);
  line-height: 1.05;
}

.narrow {
  max-width: 540px;
}

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

.price-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.price-card.featured {
  border-color: var(--charcoal);
  color: var(--paper);
  background: var(--charcoal);
}

.price-card.featured .package-label,
.price-card.featured p {
  color: rgba(251, 247, 241, .76);
}

.price {
  margin-bottom: 20px;
  color: var(--accent-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 4vw, 3.7rem);
  line-height: 1;
}

.featured .price {
  color: #ff806a;
}

.price-card p:not(.package-label):not(.price) {
  color: var(--muted);
}

.text-link {
  margin-top: auto;
  color: var(--accent-dark);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.featured .text-link {
  color: #ffad9e;
}

.about-layout,
.contact {
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(320px, .65fr);
  gap: clamp(34px, 6vw, 96px);
  align-items: start;
}

.about-layout > p {
  max-width: 680px;
  margin-top: 36px;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 32px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fffdf9;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--accent);
  outline: 3px solid rgba(232, 79, 55, .18);
}

@media (max-width: 1320px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy {
    max-width: 820px;
  }

  .hero-media {
    justify-self: stretch;
    max-width: none;
    max-height: none;
    min-height: 0;
  }
}

@media (max-width: 920px) {
  .video-section,
  .about-layout,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero-media {
    aspect-ratio: 16 / 9;
  }


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

  .price-card {
    min-height: 0;
  }

  .about-layout > p {
    margin-top: 0;
  }
}

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

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

  h1 {
    font-size: 3.2rem;
  }

  .video-caption {
    align-items: flex-start;
    flex-direction: column;
  }

  .video-caption strong {
    text-align: left;
  }

  .button {
    width: 100%;
  }
}
