:root {
  --ink: #15120f;
  --paper: #efe7d4;
  --paper-deep: #ded0b2;
  --red: #c8332b;
  --blue: #244d5a;
  --gold: #d1a23a;
  --line: rgba(21, 18, 15, 0.22);
  --shadow: 12px 12px 0 rgba(21, 18, 15, 0.92);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 0%, rgba(200, 51, 43, 0.18), transparent 28rem),
    radial-gradient(circle at 90% 12%, rgba(36, 77, 90, 0.18), transparent 30rem),
    linear-gradient(135deg, #f7f0df 0%, var(--paper) 45%, #e4d5b9 100%);
  font-family: Georgia, "Times New Roman", serif;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 10;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(21, 18, 15, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 18, 15, 0.05) 1px, transparent 1px);
  background-size: 7px 7px;
  mix-blend-mode: multiply;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  border-bottom: 2px solid var(--ink);
  background: rgba(239, 231, 212, 0.9);
  backdrop-filter: blur(14px);
}

.brand,
.nav a,
.button,
button {
  font-family: "Trebuchet MS", Verdana, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 800;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 2.45rem;
  height: 2.45rem;
  place-items: center;
  color: var(--paper);
  background: var(--ink);
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--red);
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.5rem);
}

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

.nav-cta {
  padding: 0.7rem 0.9rem;
  border: 2px solid var(--ink);
  background: var(--gold);
}

.section,
.hero {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.hero {
  min-height: calc(100vh - 80px);
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.eyebrow,
.tag,
.form-note {
  font-family: "Trebuchet MS", Verdana, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 800;
}

.eyebrow {
  color: var(--red);
}

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

h1 {
  max-width: 10ch;
  margin-bottom: 1.2rem;
  font-size: clamp(4rem, 10vw, 9rem);
  line-height: 0.82;
  letter-spacing: -0.08em;
}

h2 {
  max-width: 12ch;
  font-size: clamp(2.4rem, 5vw, 5.2rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
}

h3 {
  font-size: 1.55rem;
  line-height: 1;
}

.hero-text,
.rights-copy p,
.contact p {
  max-width: 42rem;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button,
button {
  display: inline-flex;
  min-height: 3.2rem;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.1rem;
  border: 2px solid var(--ink);
  color: var(--ink);
  text-decoration: none;
  cursor: pointer;
}

.primary,
button {
  color: var(--paper);
  background: var(--ink);
  box-shadow: 6px 6px 0 var(--red);
}

.secondary {
  background: transparent;
}

.hero-board {
  position: relative;
  min-height: 620px;
  border: 3px solid var(--ink);
  background:
    linear-gradient(90deg, transparent 48%, var(--line) 49%, transparent 50%),
    linear-gradient(var(--paper), #dbc9a7);
  box-shadow: var(--shadow);
  transform: rotate(1deg);
}

.panel {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
  border: 3px solid var(--ink);
  background: #f9f4e6;
  box-shadow: 8px 8px 0 rgba(21, 18, 15, 0.9);
}

.panel span {
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-weight: 900;
}

.panel strong {
  max-width: 8ch;
  font-size: clamp(1.3rem, 2.5vw, 2.2rem);
  line-height: 0.92;
}

.panel-a {
  top: 7%;
  left: 8%;
  width: 45%;
  height: 36%;
  background: var(--red);
  color: var(--paper);
}

.panel-b {
  top: 18%;
  right: 8%;
  width: 33%;
  height: 53%;
}

.panel-c {
  bottom: 8%;
  left: 13%;
  width: 48%;
  height: 31%;
  background: var(--blue);
  color: var(--paper);
}

.waveform {
  position: absolute;
  right: 6%;
  bottom: 7%;
  display: flex;
  align-items: end;
  gap: 0.35rem;
  height: 7rem;
  padding: 0.9rem;
  border: 3px solid var(--ink);
  background: var(--gold);
}

.waveform i {
  display: block;
  width: 0.7rem;
  background: var(--ink);
  animation: pulse 1.2s ease-in-out infinite alternate;
}

.waveform i:nth-child(1) { height: 30%; }
.waveform i:nth-child(2) { height: 72%; animation-delay: 0.1s; }
.waveform i:nth-child(3) { height: 48%; animation-delay: 0.2s; }
.waveform i:nth-child(4) { height: 90%; animation-delay: 0.3s; }
.waveform i:nth-child(5) { height: 38%; animation-delay: 0.4s; }
.waveform i:nth-child(6) { height: 84%; animation-delay: 0.5s; }
.waveform i:nth-child(7) { height: 56%; animation-delay: 0.6s; }
.waveform i:nth-child(8) { height: 68%; animation-delay: 0.7s; }

@keyframes pulse {
  to { transform: scaleY(0.55); }
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto 5rem;
  border: 2px solid var(--ink);
  background: var(--ink);
  gap: 2px;
}

.proof-strip div {
  padding: 1.2rem;
  background: var(--paper);
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip strong {
  font-size: 1.6rem;
  line-height: 1;
}

.proof-strip span {
  margin-top: 0.35rem;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof .section-heading {
  align-items: flex-start;
  flex-direction: column;
}

.proof-intro {
  max-width: 42rem;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.proof-intro + .button {
  align-self: flex-start;
}

.proof-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  grid-template-rows: auto auto;
  gap: 1.2rem;
}

.proof-card--wide {
  grid-column: 1;
  grid-row: 1 / 3;
}

.proof-card--wide .proof-embed {
  aspect-ratio: auto;
}

.proof-card--link {
  display: flex;
  flex-direction: column;
}

.proof-link-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 1rem;
  padding: 2rem 1.5rem;
  text-align: center;
  text-decoration: none;
  color: var(--paper);
  background: var(--ink);
  transition: background 0.15s;
}

.proof-link-card:hover {
  background: var(--blue);
}

.proof-link-icon {
  display: grid;
  width: 4rem;
  height: 4rem;
  place-items: center;
  font-size: 1.6rem;
  line-height: 1;
  border: 3px solid var(--paper);
  border-radius: 0.6rem;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
}

.proof-link-icon--tt {
  background: #fff;
  color: #000;
  border-radius: 0;
}

.proof-link-body h3 {
  color: var(--paper);
  margin: 0;
  font-size: 1.3rem;
}

.proof-link-body p {
  color: rgba(239, 231, 212, 0.8);
  margin: 0.5rem 0 0;
  font-size: 0.88rem;
  line-height: 1.45;
}

.proof-link-cta {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.6rem 1.2rem;
  border: 2px solid var(--paper);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-card {
  border: 2px solid var(--ink);
  background: rgba(249, 244, 230, 0.75);
  padding: 0;
  overflow: hidden;
}

.proof-card h3 {
  margin: 0;
  padding: 1rem 1.2rem 0.25rem;
}

.proof-card p {
  margin: 0;
  padding: 0 1.2rem 1.2rem;
  font-size: 0.92rem;
  line-height: 1.4;
}

.proof-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--ink);
  overflow: hidden;
}

.proof-embed iframe {
  border: 0;
}

.follow-bar {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
  padding: 1.2rem 1.5rem;
  border: 2px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.follow-label {
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0;
}

.follow-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--paper);
  text-decoration: none;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border: 2px solid var(--paper);
  transition: background 0.15s, color 0.15s;
}

.follow-link:hover {
  background: var(--paper);
  color: var(--ink);
}

.follow-icon {
  display: inline-grid;
  width: 1.4rem;
  height: 1.4rem;
  place-items: center;
  font-size: 0.7rem;
  line-height: 1;
  border-radius: 0.2rem;
}

.follow-icon--yt {
  background: #ff0000;
  color: #fff;
  border-radius: 0.25rem;
}

.follow-icon--ig {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
}

.follow-icon--tt {
  background: #fff;
  color: #000;
  border-radius: 0;
}

.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2rem, 5vw, 5rem);
  border-top: 2px solid var(--ink);
}

.steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.steps article,
.package-card,
.contact-form {
  border: 2px solid var(--ink);
  background: rgba(249, 244, 230, 0.75);
  padding: 1.2rem;
}

.steps span {
  display: grid;
  width: 2.2rem;
  height: 2.2rem;
  place-items: center;
  margin-bottom: 1rem;
  color: var(--paper);
  background: var(--ink);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-weight: 900;
}

.steps p,
.package-card p,
.package-card li,
.footer p {
  line-height: 1.45;
}

.rights-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  padding: clamp(2rem, 5vw, 4rem);
  border: 3px solid var(--ink);
  background: var(--blue);
  color: var(--paper);
  box-shadow: var(--shadow);
}

.rights-card .eyebrow {
  color: var(--gold);
}

.rights-list {
  display: grid;
  gap: 0.8rem;
  align-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rights-list li {
  padding: 1rem;
  border: 2px solid var(--paper);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.package-card {
  min-height: 25rem;
}

.package-card.featured {
  background: var(--red);
  color: var(--paper);
  box-shadow: 8px 8px 0 var(--ink);
}

.package-card ul {
  display: grid;
  gap: 0.7rem;
  margin: 1.4rem 0 0;
  padding-left: 1.1rem;
}

.tag {
  color: var(--red);
}

.featured .tag {
  color: var(--gold);
}

.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 5rem);
  border-top: 2px solid var(--ink);
}

.contact-form {
  display: grid;
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.45rem;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

input,
textarea {
  width: 100%;
  border: 2px solid var(--ink);
  padding: 0.9rem;
  background: #fff9ea;
  color: var(--ink);
  font: 1rem Georgia, "Times New Roman", serif;
}

textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  color: rgba(21, 18, 15, 0.68);
  line-height: 1.4;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem clamp(1rem, 4vw, 3rem);
  border-top: 2px solid var(--ink);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer p {
  margin: 0;
}

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

  .nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 0.25rem;
  }

  .section-grid,
  .split,
  .rights-card,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-board {
    min-height: 520px;
  }

  .proof-strip,
  .package-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .proof-card--wide {
    grid-row: auto;
  }

  .proof-link-card {
    padding: 1.5rem 1rem;
  }
}

@media (max-width: 620px) {
  .nav a:not(.nav-cta) {
    display: none;
  }

  h1 {
    font-size: clamp(3.4rem, 18vw, 5rem);
  }

  h2 {
    font-size: clamp(2.25rem, 13vw, 3.4rem);
  }

  .hero-board {
    min-height: 430px;
    box-shadow: 7px 7px 0 var(--ink);
  }

  .panel {
    box-shadow: 5px 5px 0 rgba(21, 18, 15, 0.9);
  }

  .proof-strip,
  .steps,
  .package-grid {
    grid-template-columns: 1fr;
  }

  .follow-bar {
    flex-wrap: wrap;
  }

  .rights-card {
    box-shadow: 7px 7px 0 var(--ink);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .waveform i {
    animation: none;
  }
}
