:root {
  --ink: #17211d;
  --muted: #66726d;
  --paper: #fbfaf6;
  --surface: #ffffff;
  --line: #e7e0d4;
  --coral: #e4634f;
  --teal: #0d7771;
  --gold: #d89a2b;
  --night: #101816;
  --shadow: 0 22px 60px rgba(23, 33, 29, 0.14);
}

* {
  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.55;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: #fff;
  background: linear-gradient(rgba(16, 24, 22, 0.76), rgba(16, 24, 22, 0));
}

.brand,
.site-header nav,
.hero-actions,
.occasion-strip,
.pricing-heading,
.footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.site-header nav {
  gap: clamp(12px, 3vw, 30px);
  font-size: 0.95rem;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  padding: 112px clamp(18px, 6vw, 80px) 72px;
  overflow: hidden;
  color: #fff;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(12, 20, 18, 0.9) 0%, rgba(12, 20, 18, 0.62) 44%, rgba(12, 20, 18, 0.08) 100%),
    linear-gradient(0deg, rgba(12, 20, 18, 0.5), rgba(12, 20, 18, 0.02) 38%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.hero .eyebrow {
  color: #ffb18a;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.45rem, 7vw, 5.6rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
}

h3 {
  font-size: 1.28rem;
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: var(--coral);
}

.button-secondary {
  color: var(--ink);
  background: #f3eadb;
  border-color: var(--line);
}

.button-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
}

.section {
  padding: clamp(56px, 8vw, 104px) clamp(18px, 5vw, 72px);
}

.section-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.intro-band {
  padding-top: 22px;
  padding-bottom: 22px;
  color: #fff;
  background: var(--night);
}

.occasion-strip {
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.occasion-strip span {
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.84);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

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

.track-card,
.price-card,
.order-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 36px rgba(23, 33, 29, 0.06);
}

.track-card {
  min-height: 276px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  padding: 24px;
}

.track-card p {
  color: var(--muted);
}

.track-type,
.package-label {
  margin: 0 0 10px;
  color: var(--teal);
  font-weight: 800;
  font-size: 0.85rem;
}

audio {
  width: 100%;
}

.pricing-band {
  background: #f1eee7;
}

.pricing-heading {
  justify-content: space-between;
  gap: 18px;
}

.deal-timer {
  min-width: 190px;
  padding: 14px 16px;
  border: 1px solid rgba(228, 99, 79, 0.28);
  border-radius: 8px;
  background: #fff7f1;
}

.deal-timer span,
.deal-timer strong {
  display: block;
}

.deal-timer span {
  color: var(--coral);
  font-weight: 800;
}

.deal-timer strong {
  margin-top: 2px;
  font-size: 1.45rem;
}

.price-card {
  position: relative;
  padding: 26px;
}

.price-card.featured {
  border-color: rgba(13, 119, 113, 0.4);
  box-shadow: var(--shadow);
}

.price {
  margin: 18px 0;
  color: var(--ink);
  font-weight: 900;
}

.price span {
  font-size: 3rem;
  line-height: 1;
}

.price-card ul {
  min-height: 120px;
  margin: 0 0 24px;
  padding-left: 20px;
  color: var(--muted);
}

.price-card li + li {
  margin-top: 8px;
}

.package-button {
  width: 100%;
}

.loyalty-box {
  margin-top: 18px;
  padding: 18px 20px;
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  background: #fff;
}

.order-section {
  background: var(--paper);
}

.order-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
}

.order-copy {
  position: sticky;
  top: 98px;
}

.order-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.order-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
}

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

textarea {
  resize: vertical;
}

.spam-check {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(13, 119, 113, 0.18);
  border-color: var(--teal);
}

.submit-button {
  width: 100%;
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--teal);
  font-weight: 800;
}

.footer {
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.76);
  background: var(--night);
}

@media (max-width: 860px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  .site-header nav {
    display: none;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(12, 20, 18, 0.92), rgba(12, 20, 18, 0.52)),
      linear-gradient(0deg, rgba(12, 20, 18, 0.62), rgba(12, 20, 18, 0.08));
  }

  .demo-grid,
  .pricing-grid,
  .order-layout {
    grid-template-columns: 1fr;
  }

  .order-copy {
    position: static;
  }

  .pricing-heading {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .hero {
    min-height: 86vh;
    padding-top: 92px;
  }

  .button {
    width: 100%;
  }

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