:root {
  color-scheme: light;
  --paper: #fbf7ed;
  --paper-2: #fffdf7;
  --paper-3: #f1f6ed;
  --ink: #171511;
  --ink-soft: #343029;
  --muted: #70685d;
  --line: rgba(23, 21, 17, 0.14);
  --line-strong: rgba(23, 21, 17, 0.24);
  --leaf: #123f35;
  --leaf-2: #1f6a58;
  --gold: #efb83d;
  --gold-soft: #ffe7a6;
  --coral: #df735d;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(42, 34, 19, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(18, 63, 53, 0.022) 1px, transparent 1px),
    linear-gradient(0deg, rgba(18, 63, 53, 0.018) 1px, transparent 1px),
    var(--paper);
  background-size: 88px 88px;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body::selection {
  background: rgba(239, 184, 61, 0.45);
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a,
input,
select,
textarea {
  outline-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(239, 184, 61, 0.75);
  outline-offset: 3px;
}

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

.skip-link {
  position: fixed;
  left: 18px;
  top: 14px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: 6px;
  padding: 10px 12px;
  background: var(--ink);
  color: var(--white);
  font-weight: 850;
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 74px;
  padding: 14px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid var(--line);
  background: rgba(251, 247, 237, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.08;
}

.brand strong {
  font-size: 18px;
  font-weight: 880;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 720;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-links a,
.nav-links button {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 10px 13px;
  color: var(--muted);
  background: transparent;
  font-size: 14px;
  font-weight: 760;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.nav-links a:hover,
.nav-links a.active,
.nav-links button:hover {
  border-color: rgba(18, 63, 53, 0.12);
  background: rgba(18, 63, 53, 0.07);
  color: var(--ink);
}

.nav-links .nav-cta,
.nav-links button.nav-cta {
  margin-left: 6px;
  background: var(--leaf);
  color: var(--white);
  border-color: var(--leaf);
}

.nav-links .nav-cta:hover,
.nav-links .nav-cta.active,
.nav-links button.nav-cta:hover {
  background: var(--ink);
  color: var(--white);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-2);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.section-band {
  padding: clamp(72px, 9vw, 132px) clamp(20px, 5vw, 72px);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(360px, 0.9fr);
  align-items: center;
  gap: clamp(24px, 4vw, 58px);
  min-height: calc(100vh - 74px);
  overflow: hidden;
  padding-top: clamp(42px, 6vw, 72px);
  padding-bottom: clamp(32px, 5vw, 64px);
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "PINEAPPLE";
  position: absolute;
  left: clamp(18px, 4vw, 70px);
  bottom: clamp(8px, 2vw, 22px);
  z-index: 0;
  color: rgba(18, 63, 53, 0.055);
  font-size: clamp(78px, 15vw, 238px);
  font-weight: 950;
  line-height: 0.78;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  right: -14vw;
  top: 14%;
  z-index: 0;
  width: 48vw;
  height: 58vh;
  transform: rotate(-18deg);
  background: rgba(239, 184, 61, 0.18);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

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

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

h1,
h2,
h3 {
  max-width: 100%;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(54px, 7.8vw, 116px);
  line-height: 0.91;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(36px, 5.6vw, 76px);
  line-height: 1;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(21px, 2.1vw, 30px);
  line-height: 1.08;
}

.hero-subhead,
.section-head p,
.hero-note {
  color: var(--muted);
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.48;
}

.hero-note {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-weight: 660;
}

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

.hero-poster {
  position: relative;
  z-index: 1;
  min-height: min(78vh, 760px);
  overflow: hidden;
  border: 1px solid rgba(18, 63, 53, 0.22);
  border-radius: var(--radius);
  background: var(--leaf);
  box-shadow: 0 30px 90px rgba(23, 21, 17, 0.2);
  transform: rotate(-1.1deg);
}

.hero-poster::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  pointer-events: none;
}

.hero-poster::after {
  content: "";
  position: absolute;
  left: -20%;
  right: -20%;
  top: 51%;
  z-index: 2;
  height: 3px;
  transform: rotate(-18deg);
  background: linear-gradient(90deg, transparent, var(--coral), var(--gold), transparent);
  box-shadow: 0 0 26px rgba(239, 184, 61, 0.8);
  pointer-events: none;
}

.hero-pineapple {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: 58% 48%;
  filter: saturate(1.08) contrast(1.04);
}

.poster-label {
  position: absolute;
  z-index: 3;
  max-width: min(360px, calc(100% - 48px));
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 7px;
  padding: 13px 14px;
  background: rgba(18, 63, 53, 0.82);
  color: var(--white);
  backdrop-filter: blur(14px);
}

.poster-label.top {
  top: 34px;
  left: 34px;
}

.poster-label.bottom {
  right: 34px;
  bottom: 34px;
}

.poster-label span,
.poster-label strong {
  display: block;
}

.poster-label span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.poster-label strong {
  margin-top: 5px;
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.15;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 7px;
  padding: 12px 18px;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.button:disabled,
.nav-links button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.checkout-form {
  display: inline-flex;
  margin: 0;
}

.checkout-form .button {
  width: 100%;
}

.nav-checkout {
  display: inline-flex;
}

.button.primary {
  background: var(--leaf);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(18, 63, 53, 0.2);
}

.button.primary:hover {
  background: var(--ink);
  box-shadow: 0 18px 34px rgba(23, 21, 17, 0.22);
}

.button.secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.58);
  color: var(--ink);
}

.button.secondary:hover {
  border-color: rgba(18, 63, 53, 0.4);
  background: var(--paper-3);
}

.button.secondary.dark {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.comparison-grid ul,
.fit-card ul,
.session-card ul,
.useful-list ul {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.comparison-grid li,
.fit-card li,
.session-card li,
.useful-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.45;
}

.comparison-grid li + li,
.fit-card li + li,
.session-card li + li,
.useful-list li + li {
  margin-top: 8px;
}

.comparison-grid li::before,
.fit-card li::before,
.session-card li::before,
.useful-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 7px;
  height: 7px;
  transform: rotate(45deg);
  background: var(--gold);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 14px;
  padding: 18px clamp(18px, 4vw, 54px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

.trust-strip strong {
  color: var(--white);
  font-weight: 850;
}

.section-head {
  width: min(860px, 100%);
  margin: 0 auto 42px;
}

.section-head.wide {
  width: min(var(--max), 100%);
}

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

.almost-stack {
  display: grid;
  width: min(930px, 100%);
  margin: 0 auto;
  gap: 10px;
}

.almost-stack p {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(16px, 2vw, 24px);
  background: var(--white);
  color: var(--ink-soft);
  font-size: clamp(22px, 3.2vw, 42px);
  font-weight: 780;
  line-height: 1.08;
  box-shadow: 0 12px 28px rgba(42, 34, 19, 0.05);
}

.almost-stack span {
  color: var(--leaf);
  background: linear-gradient(transparent 62%, rgba(239, 184, 61, 0.52) 62%);
}

.cut-card {
  width: min(930px, 100%);
  margin: 18px auto 0;
  border-left: 6px solid var(--coral);
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 34px);
  background: var(--leaf);
  color: var(--white);
}

.cut-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: clamp(25px, 3vw, 40px);
  line-height: 1.06;
}

.cut-card p {
  max-width: 780px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.45;
}

.sessions-section {
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.7), rgba(241, 246, 237, 0.68)),
    var(--paper);
}

.pricing-note {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
  justify-content: space-between;
  width: min(var(--max), 100%);
  margin: 0 auto 18px;
  border: 1px solid rgba(18, 63, 53, 0.14);
  border-radius: var(--radius);
  padding: 15px 18px;
  background: rgba(255, 255, 255, 0.74);
}

.pricing-note strong {
  color: var(--leaf);
}

.pricing-note span {
  color: var(--muted);
  font-weight: 680;
}

.session-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.session-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(20px, 2.2vw, 28px);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 36px rgba(42, 34, 19, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.session-card:hover {
  transform: translateY(-4px);
  border-color: rgba(18, 63, 53, 0.28);
  box-shadow: var(--shadow);
}

.session-card.featured {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(150deg, rgba(255, 231, 166, 0.86), rgba(255, 255, 255, 0.92) 54%),
    var(--white);
  border-color: rgba(239, 184, 61, 0.48);
}

.session-card.featured::after {
  content: "Mini-sprint";
  position: absolute;
  right: 18px;
  top: 18px;
  border-radius: 999px;
  padding: 7px 9px;
  background: var(--ink);
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.session-card.featured header {
  padding-right: 82px;
}

.session-card h3 {
  margin-bottom: 8px;
}

.session-card .best-for {
  color: var(--leaf);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.35;
}

.session-card p {
  color: var(--muted);
  line-height: 1.48;
}

.session-card .leave-with {
  margin-top: 12px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.session-card footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding-top: 22px;
}

.session-price {
  color: var(--ink);
  font-size: 24px;
  font-weight: 900;
}

.session-card .button {
  min-height: 42px;
  padding: 10px 12px;
  font-size: 14px;
}

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

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: min(980px, 100%);
  margin: 0 auto;
}

.comparison-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 34px);
  background: var(--white);
}

.comparison-grid .highlight {
  background: var(--leaf);
  color: var(--white);
}

.comparison-grid .highlight li {
  color: rgba(255, 255, 255, 0.76);
}

.section-after {
  width: min(980px, 100%);
  margin: 22px auto 0;
  color: var(--ink-soft);
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 760;
}

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

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.step-card,
.fit-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(20px, 2vw, 28px);
  background: rgba(255, 255, 255, 0.8);
}

.step-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border-radius: 8px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 950;
}

.step-card p,
.fit-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.5;
}

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

.offer-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  gap: clamp(30px, 5vw, 74px);
  align-items: center;
  width: min(var(--max), 100%);
  margin: 0 auto;
}

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

.offer-panel p {
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(18px, 1.6vw, 23px);
  line-height: 1.48;
}

.useful-list {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 34px);
  background: rgba(255, 255, 255, 0.06);
}

.useful-list span {
  display: block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.useful-list li {
  color: rgba(255, 255, 255, 0.78);
}

.office-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: clamp(30px, 5vw, 80px);
  align-items: start;
  background: var(--paper-3);
}

.office-copy {
  position: sticky;
  top: 108px;
}

.office-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.5;
}

.office-form {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(18, 63, 53, 0.16);
  border-radius: var(--radius);
  padding: clamp(20px, 3vw, 34px);
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 12px 12px;
  background: #fffefa;
  color: var(--ink);
}

textarea {
  resize: vertical;
}

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

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

.fit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.fit-card.not-fit {
  grid-column: span 2;
  background: #fff8f0;
  border-color: rgba(223, 115, 93, 0.28);
}

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

.about-card {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: clamp(26px, 5vw, 70px);
  width: min(var(--max), 100%);
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 48px);
  background: var(--white);
  box-shadow: var(--shadow);
}

.about-mark {
  display: grid;
  place-items: center;
  width: 140px;
  height: 140px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(239, 184, 61, 0.3), rgba(18, 63, 53, 0.1)),
    var(--paper-3);
}

.about-card p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.55;
}

.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.proof-row span {
  border-radius: 999px;
  padding: 8px 10px;
  background: rgba(18, 63, 53, 0.08);
  color: var(--leaf);
  font-size: 13px;
  font-weight: 850;
}

.final-cta {
  padding-top: clamp(56px, 8vw, 96px);
  padding-bottom: clamp(56px, 8vw, 96px);
  background:
    radial-gradient(circle at 15% 20%, rgba(239, 184, 61, 0.24), transparent 32%),
    linear-gradient(135deg, var(--leaf), #0e211d);
  color: var(--white);
}

.final-panel {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.final-panel .eyebrow {
  color: var(--gold);
}

.final-panel p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(18px, 1.6vw, 23px);
  line-height: 1.48;
}

.footer {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto auto;
  gap: 28px;
  align-items: start;
  padding: 34px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: var(--paper-2);
}

.footer p {
  margin: 16px 0 0;
  color: var(--muted);
}

.footer nav,
.footer-contact {
  display: grid;
  gap: 10px;
}

.footer a {
  color: var(--muted);
  font-weight: 760;
}

.footer a:hover {
  color: var(--leaf);
}

.booked-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 80% 22%, rgba(239, 184, 61, 0.24), transparent 30%),
    linear-gradient(135deg, var(--paper), var(--paper-3));
}

.booked-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(24px, 5vw, 72px);
}

.booked-panel {
  width: min(760px, 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(26px, 5vw, 54px);
  background: rgba(255, 253, 247, 0.92);
  box-shadow: var(--shadow);
}

.booked-panel .brand {
  margin-bottom: clamp(32px, 5vw, 54px);
}

.booked-panel h1 {
  font-size: clamp(52px, 9vw, 98px);
}

.booked-copy {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.48;
}

.payment-status {
  margin: 26px 0 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 16px;
  color: var(--ink);
  background: var(--white);
  font-weight: 850;
}

.payment-status.success {
  border-color: rgba(18, 63, 53, 0.24);
  background: rgba(18, 63, 53, 0.08);
  color: var(--leaf);
}

.payment-status.failed {
  border-color: rgba(223, 115, 93, 0.34);
  background: rgba(223, 115, 93, 0.1);
  color: #8f3828;
}

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

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.js .reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1100px) {
  .office-section,
  .offer-panel {
    grid-template-columns: 1fr;
  }

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

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

  .office-copy {
    position: static;
  }
}

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

  .hero::before {
    top: 44%;
    bottom: auto;
  }

  .hero-poster {
    min-height: 620px;
  }
}

@media (max-width: 860px) {
  .site-header {
    align-items: center;
  }

  .nav-toggle {
    display: inline-block;
  }

  .nav-links {
    position: absolute;
    top: 74px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 12px;
    background: rgba(255, 253, 247, 0.98);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    border-radius: 7px;
  }

  .nav-checkout,
  .nav-links button.nav-cta {
    width: 100%;
  }

  .nav-links .nav-cta {
    margin-left: 0;
  }

  .comparison-grid,
  .about-card,
  .footer {
    grid-template-columns: 1fr;
  }

  .about-mark {
    width: 110px;
    height: 110px;
  }
}

@media (max-width: 680px) {
  .section-band {
    padding-left: 18px;
    padding-right: 18px;
  }

  h1 {
    font-size: clamp(43px, 13vw, 66px);
    line-height: 0.94;
  }

  .hero-actions,
  .checkout-form,
  .session-card footer {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .session-card .button {
    width: 100%;
  }

  .hero-poster {
    min-height: 520px;
    transform: rotate(0);
  }

  .poster-label {
    max-width: calc(100% - 36px);
    padding: 11px 12px;
  }

  .poster-label.top {
    top: 18px;
    left: 18px;
  }

  .poster-label.bottom {
    right: 18px;
    bottom: 18px;
  }

  .session-grid,
  .steps-grid,
  .fit-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .fit-card.not-fit {
    grid-column: span 1;
  }

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

  .trust-strip {
    justify-content: flex-start;
  }
}
