﻿:root {
  --white: #ffffff;
  --milk: #f7f3ea;
  --mist: #e9edf2;
  --ink: #1f2328;
  --muted: #636b75;
  --orange: #ff6a00;
  --blue: #0066ff;
  --deep-blue: #0b2a4a;
  --line: rgba(31, 35, 40, 0.14);
  --shadow: 14px 14px 0 rgba(31, 35, 40, 0.92);
  --display: "Arial Black", Impact, Haettenschweiler, sans-serif;
  --body: Manrope, "Segoe UI", "Trebuchet MS", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--milk);
  font-family: var(--body);
  line-height: 1.45;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(31, 35, 40, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 35, 40, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
}

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

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

h1,
h2,
h3 {
  letter-spacing: 0;
}

h1 {
  max-width: 1040px;
  margin-bottom: 20px;
  font-family: var(--display);
  font-size: clamp(4.2rem, 11vw, 9.5rem);
  line-height: 0.78;
  text-transform: uppercase;
  text-wrap: balance;
}

h2 {
  margin-bottom: 0;
  font-family: var(--display);
  font-size: clamp(2.35rem, 6vw, 6rem);
  line-height: 0.88;
  text-transform: uppercase;
  text-wrap: balance;
}

h3 {
  margin-bottom: 14px;
  font-family: var(--display);
  font-size: clamp(1.55rem, 3vw, 3rem);
  line-height: 0.95;
  text-transform: uppercase;
}

p {
  margin-bottom: 0;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 16px clamp(18px, 5vw, 72px);
  color: var(--white);
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 30px rgba(31, 35, 40, 0.1);
  backdrop-filter: blur(16px);
}

.brand,
.main-nav,
.header-phone {
  display: flex;
  align-items: center;
}

.brand {
  min-width: 0;
  gap: 10px;
  font-weight: 950;
  text-transform: uppercase;
}

.brand-logo {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  padding: 3px;
  border: 2px solid currentColor;
  background: var(--white);
  object-fit: contain;
  transform: rotate(-6deg);
}

.brand-name {
  white-space: nowrap;
}

.main-nav {
  gap: clamp(14px, 2.4vw, 32px);
  font-size: 0.92rem;
  font-weight: 900;
  text-transform: uppercase;
}

.main-nav a,
.header-phone {
  position: relative;
}

.main-nav a::after,
.header-phone::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 0;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.header-phone:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-phone {
  font-weight: 950;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: 96vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  padding: 132px clamp(20px, 6vw, 86px) 96px;
  color: var(--white);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-image {
  filter: saturate(1.05) contrast(1.04);
  transform: scale(1.04);
  animation: heroDrift 14s ease-in-out infinite alternate;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(4, 10, 18, 0.88), rgba(4, 10, 18, 0.38) 52%, rgba(4, 10, 18, 0.68)),
    linear-gradient(145deg, rgba(255, 106, 0, 0.58), transparent 34%),
    radial-gradient(circle at 82% 22%, rgba(0, 102, 255, 0.65), transparent 28%);
}

.hero-content {
  max-width: 980px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-lead {
  max-width: 720px;
  margin-bottom: 30px;
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  line-height: 1.42;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 15px 22px;
  border: 2px solid currentColor;
  font-weight: 950;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-3px) rotate(-1deg);
}

.button-primary {
  color: var(--ink);
  background: var(--orange);
  border-color: var(--orange);
  box-shadow: 7px 7px 0 var(--white);
}

.button-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

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

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

.button-full {
  width: 100%;
}

.section {
  padding: clamp(64px, 10vw, 132px) clamp(20px, 6vw, 86px);
}

.section-light {
  background:
    linear-gradient(132deg, transparent 0 62%, rgba(0, 102, 255, 0.1) 62%),
    var(--milk);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.75fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: end;
}

.manifesto-grid p,
.section-heading p,
.format-copy > p,
.proof-copy p,
.trial p {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.32rem);
  line-height: 1.62;
}

.directions {
  background: var(--white);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.66fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: end;
  margin-bottom: clamp(30px, 6vw, 68px);
}

.section-heading.compact {
  display: block;
  max-width: 840px;
}

.section-heading.compact h2 {
  margin-bottom: 22px;
}

.direction-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 3px solid var(--ink);
}

.direction-card {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(22px, 3.2vw, 36px);
  border-right: 3px solid var(--ink);
}

.direction-card:last-child {
  border-right: 0;
}

.direction-card p {
  font-size: 1.02rem;
  line-height: 1.5;
}

.card-number {
  font-weight: 950;
}

.mini,
.adults {
  background: var(--milk);
}

.kids {
  background: var(--orange);
}

.teens {
  color: var(--white);
  background: var(--blue);
}

.pro {
  color: var(--white);
  background: var(--ink);
}

.image-band {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  color: var(--white);
}

.image-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 10, 18, 0.82), transparent 58%),
    linear-gradient(0deg, rgba(4, 10, 18, 0.4), transparent);
}

.image-band-text {
  position: absolute;
  z-index: 2;
  left: clamp(20px, 6vw, 86px);
  bottom: clamp(28px, 6vw, 76px);
  max-width: 620px;
}

.image-band-text span,
.image-band-text strong {
  display: block;
}

.image-band-text span {
  width: fit-content;
  margin-bottom: 14px;
  padding: 8px 10px;
  color: var(--ink);
  background: var(--orange);
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.image-band-text strong {
  font-family: var(--display);
  font-size: clamp(2.2rem, 6vw, 6rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.benefits {
  background:
    linear-gradient(90deg, rgba(255, 106, 0, 0.12), transparent 52%),
    var(--milk);
}

.benefit-grid,
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.benefit-grid article,
.trust-grid article {
  min-height: 260px;
  padding: 28px;
  border: 3px solid var(--ink);
  background: var(--white);
}

.benefit-grid article:nth-child(2) {
  color: var(--white);
  background: var(--blue);
}

.benefit-grid article:nth-child(3) {
  background: var(--orange);
}

.benefit-grid p {
  color: inherit;
  opacity: 0.82;
}

.trust {
  background:
    linear-gradient(135deg, rgba(0, 102, 255, 0.1), transparent 44%),
    var(--white);
}

.trust-grid article:nth-child(1) {
  background: var(--orange);
}

.trust-grid article:nth-child(2) {
  color: var(--white);
  background: var(--deep-blue);
}

.trust-grid article:nth-child(3) {
  color: var(--white);
  background: var(--blue);
}

.trust-grid span {
  display: block;
  margin-bottom: 34px;
  font-weight: 950;
}

.trust-grid p {
  color: inherit;
  opacity: 0.82;
}

.format {
  display: grid;
  grid-template-columns: minmax(300px, 0.88fr) minmax(0, 1.12fr);
  gap: 0;
  padding: 0;
  color: var(--white);
  background: var(--deep-blue);
}

.format-media {
  min-height: 720px;
}

.format-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(44px, 7vw, 96px);
  background:
    linear-gradient(145deg, rgba(255, 106, 0, 0.7), transparent 42%),
    linear-gradient(24deg, transparent 0 66%, rgba(255, 255, 255, 0.12) 66%),
    var(--deep-blue);
}

.format-copy h2 {
  margin-bottom: 30px;
}

.step-list {
  display: grid;
  gap: 18px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.step-list li {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px 18px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.32);
}

.step-list span {
  grid-row: span 2;
  font-weight: 950;
}

.step-list strong {
  font-size: 1.24rem;
  text-transform: uppercase;
}

.step-list p {
  color: rgba(255, 255, 255, 0.76);
}

.schedule {
  background:
    linear-gradient(90deg, rgba(255, 106, 0, 0.12), transparent 52%),
    var(--milk);
}

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

.schedule-grid article {
  min-height: 320px;
  padding: 26px;
  border: 3px solid var(--ink);
  background: var(--white);
}

.schedule-grid h3 {
  font-size: clamp(1.35rem, 2vw, 2.1rem);
  line-height: 1;
  overflow-wrap: anywhere;
}

.schedule-grid article:nth-child(2) {
  color: var(--white);
  background: var(--blue);
}

.schedule-grid article:nth-child(3) {
  background: var(--orange);
}

.schedule-grid p {
  margin-top: 14px;
}

.schedule-grid strong {
  display: block;
  margin-bottom: 4px;
  font-weight: 950;
  text-transform: uppercase;
}

.price {
  background: var(--white);
}

.price-essentials {
  margin-bottom: clamp(26px, 4vw, 38px);
  border-top: 1px solid var(--line);
}

.price-entry {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(24px, 5vw, 70px);
  padding: clamp(25px, 4vw, 37px) 0;
  border-bottom: 1px solid var(--line);
}

.price-entry span {
  display: block;
  margin-bottom: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.price-entry h3 {
  margin-bottom: 8px;
  font-size: clamp(1.55rem, 2.5vw, 2.3rem);
}

.price-entry p {
  margin: 0;
  line-height: 1.55;
}

.price-entry strong {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  white-space: nowrap;
}

.price-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: clamp(34px, 5vw, 48px);
}

.price-actions p {
  max-width: 390px;
  margin: 0;
  line-height: 1.55;
}

.price-details {
  border: 1px solid var(--line);
}

.price-details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: clamp(20px, 3vw, 26px);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.price-details summary::-webkit-details-marker {
  display: none;
}

.details-action {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.details-action-close {
  display: none;
}

details[open] .details-action-open {
  display: none;
}

details[open] .details-action-close {
  display: inline;
}

.details-action::after {
  content: "+";
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 1.25rem;
  line-height: 1;
}

details[open] .details-action::after {
  content: "-";
}

.price-details-content {
  border-top: 1px solid var(--line);
}

.price-detail-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: clamp(20px, 3vw, 26px);
  border-bottom: 1px solid var(--line);
}

.price-detail-row:last-child {
  border-bottom: 0;
}

.price-detail-row h3 {
  margin-bottom: 6px;
  font-size: 1.16rem;
}

.price-detail-row p {
  margin: 0;
  line-height: 1.5;
}

.price-detail-row strong {
  line-height: 1.75;
  text-align: right;
  white-space: nowrap;
}

.proof {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  gap: 0;
  padding: 0;
  color: var(--white);
  background: var(--ink);
}

.pro-section .proof-copy {
  background:
    linear-gradient(145deg, rgba(0, 102, 255, 0.5), transparent 45%),
    var(--ink);
}

.pro-section .section-kicker,
.pro-section .proof-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.pro-button {
  width: fit-content;
  margin-top: 30px;
  box-shadow: 7px 7px 0 var(--blue);
}

.proof-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(44px, 7vw, 96px);
}

.proof-copy h2 {
  margin-bottom: 28px;
}

.proof-media {
  min-height: 620px;
}

.trial {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  gap: clamp(34px, 7vw, 92px);
  align-items: center;
  padding: clamp(70px, 10vw, 140px) clamp(20px, 6vw, 86px);
  background:
    linear-gradient(135deg, rgba(0, 102, 255, 0.12), transparent 45%),
    var(--milk);
}

.trial h2 {
  margin-bottom: 24px;
}

.contact-panel {
  display: grid;
  gap: 12px;
  padding: 26px;
  border: 3px solid var(--ink);
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-phone {
  display: block;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--ink);
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 6vw, 86px);
  color: var(--white);
  background: var(--ink);
  font-weight: 900;
  text-transform: uppercase;
}

.mobile-bar {
  display: none;
}

@keyframes heroDrift {
  from {
    transform: scale(1.04) translateX(0);
  }

  to {
    transform: scale(1.1) translateX(-18px);
  }
}

@media (max-width: 1120px) {
  .main-nav {
    display: none;
  }

  .direction-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .direction-card {
    min-height: 320px;
    border-right: 0;
    border-bottom: 3px solid var(--ink);
  }

  .direction-card:nth-child(odd) {
    border-right: 3px solid var(--ink);
  }

  .direction-card:nth-last-child(-n + 1) {
    border-bottom: 0;
  }

  .benefit-grid,
  .trust-grid,
  .schedule-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .manifesto-grid,
  .section-heading,
  .format,
  .proof,
  .trial {
    grid-template-columns: 1fr;
  }

  .format-media,
  .proof-media {
    min-height: 420px;
  }

  .proof-copy {
    order: 2;
  }

  .proof-media {
    order: 1;
  }

  .footer {
    display: grid;
    padding-bottom: 98px;
  }

  .mobile-bar {
    position: fixed;
    z-index: 60;
    right: 10px;
    bottom: 10px;
    left: 10px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border: 2px solid var(--ink);
    background: var(--white);
    box-shadow: 0 10px 34px rgba(31, 35, 40, 0.2);
  }

  .mobile-bar a {
    display: grid;
    min-height: 54px;
    place-items: center;
    padding: 8px 6px;
    border-right: 2px solid var(--ink);
    font-size: 0.78rem;
    font-weight: 950;
    text-align: center;
    text-transform: uppercase;
  }

  .mobile-bar a:last-child {
    color: var(--white);
    background: var(--blue);
    border-right: 0;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 12px 14px;
  }

  .brand-name {
    max-width: 132px;
    white-space: normal;
    line-height: 1;
  }

  .header-phone {
    max-width: 116px;
    justify-content: flex-end;
    text-align: right;
    line-height: 1.08;
  }

  h1 {
    max-width: calc(100vw - 40px);
    font-size: clamp(2.4rem, 13vw, 4.15rem);
    line-height: 0.86;
  }

  .hero {
    min-height: 88vh;
    padding-bottom: 116px;
  }

  .hero-lead {
    font-size: 1.08rem;
  }

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

  .direction-grid,
  .benefit-grid,
  .trust-grid,
  .schedule-grid {
    grid-template-columns: 1fr;
  }

  .price-entry,
  .price-detail-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .price-actions {
    display: grid;
    gap: 16px;
  }

  .price-entry strong,
  .price-detail-row strong {
    text-align: left;
  }

  .direction-card,
  .direction-card:nth-child(odd) {
    min-height: 280px;
    border-right: 0;
  }

  .direction-card:not(:last-child) {
    border-bottom: 3px solid var(--ink);
  }

  .format-copy,
  .proof-copy {
    padding: 54px 20px;
  }

  .contact-panel {
    box-shadow: 9px 9px 0 rgba(31, 35, 40, 0.92);
  }
}

