:root {
  --ink: #000000;
  --muted: #555555;
  --paper: #f7f6f2;
  --surface: #ffffff;
  --line: #e5e5e5;
  --red: #9d0a0e;
  --red-dark: #72070a;
  --charcoal: #101010;
  --soft-red: #f6e9e9;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.08);
  --radius: 4px;
  font-family: "Nunito Sans", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Nunito Sans", Arial, Helvetica, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px clamp(20px, 5vw, 72px);
  width: 100%;
  min-width: 0;
  background: rgba(16, 16, 16, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 187px;
  min-width: 150px;
}

.brand img {
  width: 187px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  min-width: 0;
  max-width: 100%;
}

.nav a {
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

.nav a:hover {
  color: #f2b9bb;
}

.hero,
.section {
  padding: clamp(64px, 9vw, 120px) clamp(20px, 6vw, 88px);
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: calc(100vh - 87px);
  display: grid;
  align-items: center;
  color: #fff;
  background: var(--charcoal);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.66) 48%, rgba(0, 0, 0, 0.34) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.44), rgba(0, 0, 0, 0.12));
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.62fr);
  gap: clamp(40px, 7vw, 96px);
  align-items: center;
  width: 100%;
  min-width: 0;
  max-width: 1360px;
  margin: 0 auto;
}

.hero-copy {
  min-width: 0;
  max-width: 850px;
}

.hero .eyebrow {
  color: #f2b9bb;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: break-word;
}

h1 {
  max-width: 860px;
  margin-bottom: 22px;
  font-size: clamp(46px, 7.2vw, 92px);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4.3vw, 54px);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 5px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.15;
}

.lead {
  max-width: 720px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(17px, 1.9vw, 22px);
  font-weight: 600;
}

.proof-note {
  max-width: 620px;
  margin-bottom: 28px;
  padding-left: 16px;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  border-left: 4px solid #f2b9bb;
}

.hero-actions,
.agenda-header {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
}

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

.button.primary:hover {
  background: var(--charcoal);
  border-color: var(--charcoal);
}

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

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

.draft-preview {
  min-width: 0;
  padding: 28px;
  color: #fff;
  background: rgba(16, 16, 16, 0.74);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.video-chip {
  display: grid;
  place-items: center;
  min-height: 230px;
  margin-bottom: 18px;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  background:
    linear-gradient(rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.38)),
    url("../assets/wine-table-video-frame.png") center / cover;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.video-chip span {
  padding: 8px 12px;
  background: rgba(0, 0, 0, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}

.draft-stack {
  display: grid;
  gap: 10px;
}

.draft-stack div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  min-width: 0;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.draft-stack span {
  color: #cfcfcf;
}

.draft-stack strong {
  color: #fff;
  text-align: right;
}

.section {
  border-top: 1px solid var(--line);
}

.section-heading {
  max-width: 900px;
  margin-bottom: clamp(28px, 5vw, 56px);
}

.section-heading p,
.phase-intro p {
  color: var(--muted);
  font-size: 17px;
  font-weight: 600;
}

.ask-section,
.process-section {
  background: #fff;
}

.mirror-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.mirror-strip p {
  min-height: 150px;
  margin: 0;
  padding: 28px;
  color: var(--ink);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 800;
  line-height: 1.13;
  border-right: 1px solid var(--line);
}

.mirror-strip p:last-child {
  border-right: 0;
}

.process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid var(--line);
  background: var(--surface);
}

.process-line::before {
  content: "";
  position: absolute;
  top: 54px;
  right: 6%;
  left: 6%;
  height: 2px;
  background: var(--red);
}

.process-line li {
  position: relative;
  min-height: 190px;
  padding: 30px 22px;
  border-right: 1px solid var(--line);
}

.process-line li:last-child {
  border-right: 0;
}

.process-line span,
.timeline span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 28px;
  color: #fff;
  background: var(--red);
  border-radius: 50%;
  font-weight: 800;
}

.process-line strong {
  display: block;
  margin-bottom: 4px;
  font-size: 17px;
  font-weight: 800;
}

.process-line p {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

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

.development-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.development-line::before {
  content: "";
  position: absolute;
  top: 11px;
  right: 10%;
  left: 10%;
  height: 2px;
  background: var(--red);
}

.development-line li {
  position: relative;
  display: block;
  padding: 0 16px;
}

.development-line li::before {
  content: "";
  display: block;
  position: relative;
  z-index: 1;
  width: 14px;
  height: 14px;
  margin: 0 auto 20px;
  background: var(--red);
  border: 4px solid var(--paper);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--red);
}

.development-line span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.development-line strong {
  display: block;
  margin-bottom: 7px;
  font-size: 18px;
  font-weight: 800;
}

.development-line p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
}

.phase-one {
  background: var(--paper);
}

.phase-two {
  color: #fff;
  background: var(--charcoal);
}

.phase-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.52fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: start;
}

.phase-intro {
  position: sticky;
  top: 120px;
}

.phase-two h2,
.phase-two h3 {
  color: #fff;
}

.phase-two .phase-intro p {
  color: #d7d7d7;
}

.timeline {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.timeline li {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 22px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.timeline p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.timeline.dark {
  border-top-color: rgba(255, 255, 255, 0.18);
}

.timeline.dark li {
  border-bottom-color: rgba(255, 255, 255, 0.18);
}

.timeline.dark span {
  color: var(--ink);
  background: #fff;
}

.timeline.dark p {
  color: #d7d7d7;
}

.roadmap-section {
  background: #fff;
}

.roadmap {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.roadmap li {
  display: grid;
  grid-template-columns: 110px minmax(210px, 0.8fr) minmax(0, 1fr);
  gap: 28px;
  align-items: baseline;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.roadmap span {
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.roadmap strong {
  font-size: 19px;
  font-weight: 800;
}

.roadmap p {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

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

.pricing-band {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: #fff;
}

.pricing-band article {
  min-height: 250px;
  padding: 28px;
  border-right: 1px solid var(--line);
}

.pricing-band article:last-child {
  border-right: 0;
}

.pricing-band span {
  display: block;
  margin-bottom: 18px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.pricing-band strong {
  display: block;
  margin-bottom: 16px;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 800;
  line-height: 0.95;
}

.pricing-band p {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.pricing-note {
  background: #fbfaf8;
}

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

.gate-line {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: #fff;
}

.gate-line div {
  min-height: 120px;
  display: grid;
  place-items: center;
  padding: 24px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 800;
  text-align: center;
  border-right: 1px solid var(--line);
}

.gate-line div:last-child {
  border-right: 0;
  color: #fff;
  background: var(--red);
}

.agenda-section {
  color: #fff;
  background: var(--charcoal);
}

.agenda-header {
  justify-content: space-between;
  margin-bottom: 28px;
}

.agenda-section h2 {
  color: #fff;
}

.agenda-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding-left: 24px;
  list-style: decimal;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.agenda-list li {
  padding: 18px 0;
  color: #e8e8e8;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(20px, 6vw, 88px);
  color: #fff;
  background: var(--charcoal);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer img {
  width: 150px;
}

.footer p {
  margin: 0;
  color: #d7d7d7;
  font-weight: 600;
}

.footer a {
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 1120px) {
  .hero-inner,
  .phase-layout {
    grid-template-columns: 1fr;
  }

  .phase-intro {
    position: static;
  }

  .process-line {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .development-line,
  .pricing-band {
    grid-template-columns: 1fr;
  }

  .development-line {
    gap: 0;
    padding-top: 0;
  }

  .development-line::before {
    top: 0;
    bottom: 0;
    left: 10px;
    width: 2px;
    height: auto;
    right: auto;
  }

  .development-line li {
    padding: 0 0 28px 38px;
  }

  .development-line li::before {
    position: absolute;
    top: 2px;
    left: 0;
    margin: 0;
  }

  .pricing-band article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .pricing-band article:last-child {
    border-bottom: 0;
  }

  .process-line::before {
    display: none;
  }

  .process-line li:nth-child(3) {
    border-right: 0;
  }

  .mirror-strip,
  .gate-line {
    grid-template-columns: 1fr;
  }

  .mirror-strip p,
  .gate-line div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .mirror-strip p:last-child,
  .gate-line div:last-child {
    border-bottom: 0;
  }
}

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

  .brand,
  .brand img {
    width: 164px;
  }

  .nav {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 3px;
  }

  .nav a {
    flex: 0 0 auto;
    font-size: 12px;
  }

  .hero,
  .section {
    padding: 54px 20px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-copy,
  .draft-preview {
    width: 100%;
    max-width: 350px;
  }

  h1 {
    font-size: 40px;
    line-height: 0.98;
  }

  h2 {
    font-size: 30px;
    line-height: 1.08;
  }

  .lead {
    font-size: 18px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .draft-preview {
    padding: 18px;
  }

  .draft-stack div {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 2px;
  }

  .draft-stack strong {
    text-align: left;
  }

  .video-chip {
    min-height: 190px;
  }

  .process-line {
    grid-template-columns: 1fr;
  }

  .process-line li,
  .process-line li:nth-child(3) {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 16px;
    min-height: auto;
    padding: 20px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-line li:last-child {
    border-bottom: 0;
  }

  .process-line span {
    grid-row: span 2;
    margin: 0;
  }

  .timeline li {
    grid-template-columns: 56px 1fr;
    gap: 16px;
  }

  .roadmap li {
    grid-template-columns: 1fr;
    gap: 7px;
  }

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

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

@media print {
  .site-header,
  .hero,
  .footer,
  .button {
    display: none;
  }

  body,
  .section,
  .phase-two,
  .agenda-section {
    color: #000;
    background: #fff;
  }

  .phase-two h2,
  .phase-two h3,
  .agenda-section h2 {
    color: #000;
  }
}
