:root {
  --blue: #1f5e9f;
  --blue-strong: #15599f;
  --navy: #07172b;
  --navy-soft: #0d2745;
  --ink: #111927;
  --muted: #647084;
  --line: #d8e3ef;
  --paper: #f7f9fc;
  --white: #ffffff;
  --gold: #c9a45d;
  --gold-light: #ead8aa;
  --shadow: 0 24px 70px rgba(8, 23, 43, 0.18);
  --serif: "Times New Roman", Times, serif;
  --sans: "Montserrat", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  line-height: 1.65;
  overflow-x: hidden;
  width: 100%;
  min-width: 100%;
}

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

a {
  color: inherit;
}

.container {
  width: min(1600px, calc(100vw - 96px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(32px, 5vw, 96px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(31, 94, 159, 0.14);
  backdrop-filter: blur(16px);
}

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

.nav {
  display: flex;
  gap: 26px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
}

.nav a {
  text-decoration: none;
}

section {
  position: relative;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: clamp(72px, 9vw, 132px) 0;
}

.section-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 76% 15%, rgba(31, 94, 159, 0.42), transparent 34%),
    linear-gradient(135deg, var(--navy), #06111f 62%, #0a1e37);
}

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

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

.outcomes {
  background:
    radial-gradient(circle at 72% 22%, rgba(31, 94, 159, 0.24), transparent 28%),
    linear-gradient(90deg, var(--white) 0%, var(--white) 44%, rgba(255, 255, 255, 0.92) 50%, rgba(13, 49, 90, 0.72) 57%, #061323 68%, #0d315a 100%);
}

.outcomes::after {
  content: "";
  position: absolute;
  inset: 0 0 0 48%;
  pointer-events: none;
  opacity: 0.16;
  background:
    url("data:image/svg+xml,%3Csvg width='760' height='760' viewBox='0 0 760 760' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23ead8aa' stroke-width='2'%3E%3Cpath d='M380 70v120M210 270h340M210 270v90M380 190v170M550 270v90'/%3E%3Ccircle cx='380' cy='70' r='18'/%3E%3Ccircle cx='210' cy='360' r='12'/%3E%3Ccircle cx='380' cy='360' r='12'/%3E%3Ccircle cx='550' cy='360' r='12'/%3E%3Cpath d='M160 590c80-120 150-160 220-300 70 140 140 180 220 300'/%3E%3Cpath d='M250 590h260M300 640h160'/%3E%3C/g%3E%3C/svg%3E") center / 78% auto no-repeat;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 870px;
  font-size: clamp(42px, 5.7vw, 82px);
}

h1 span,
.maxim,
.price {
  color: var(--gold-light);
}

h2 {
  font-size: clamp(34px, 4vw, 56px);
  color: inherit;
}

h3 {
  margin-top: 42px;
  font-size: clamp(28px, 3vw, 42px);
  color: var(--blue);
}

p {
  margin: 20px 0 0;
}

.lead {
  max-width: 820px;
  font-size: 19px;
  color: var(--muted);
}

.hero {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: clamp(104px, 11vh, 128px) 0 clamp(36px, 6vh, 62px);
  background:
    linear-gradient(90deg, rgba(3, 12, 24, 0.96) 0%, rgba(3, 12, 24, 0.86) 35%, rgba(3, 12, 24, 0.28) 58%, rgba(3, 12, 24, 0.10) 100%),
    linear-gradient(180deg, rgba(3, 12, 24, 0.10) 0%, rgba(3, 12, 24, 0.08) 72%, rgba(3, 12, 24, 0.76) 100%),
    url("hero-executive-bg.png") center center / cover no-repeat;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: 0;
}

.hero-copy {
  max-width: min(790px, 46vw);
}

.hero h1 {
  max-width: 790px;
  font-size: clamp(38px, 2.65vw, 56px);
  line-height: 1.04;
}

.hero-copy p {
  max-width: 780px;
  font-size: clamp(14px, 0.82vw, 17px);
  line-height: 1.62;
  color: rgba(255, 255, 255, 0.84);
}

.hero-brand {
  position: absolute;
  top: clamp(26px, 4.6vh, 44px);
  left: 50%;
  z-index: 3;
  transform: translateX(-50%);
}

.hero-brand img {
  display: block;
  width: 120px;
  height: 120px;
  object-fit: contain;
  filter: drop-shadow(0 8px 22px rgba(0, 0, 0, 0.4));
}

.date-row,
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 20px;
}

.date-choice-label {
  margin-top: 28px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.date-card {
  min-width: 176px;
  padding: 16px 20px 17px;
  border: 1px solid rgba(234, 216, 170, 0.58);
  background: rgba(5, 20, 38, 0.52);
  backdrop-filter: blur(4px);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.date-card:hover {
  transform: translateY(-2px);
  border-color: var(--gold-light);
  background: rgba(5, 20, 38, 0.68);
}

.date-card em,
.session-options em {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.date-card strong {
  display: block;
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1;
  color: var(--gold-light);
}

.date-card span {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.btn-gold {
  color: #07172b;
  background: linear-gradient(135deg, #f2dfac, var(--gold));
  box-shadow: 0 14px 34px rgba(201, 164, 93, 0.25);
}

.btn-line {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.04);
}

.micro {
  max-width: 640px;
  font-size: 13px !important;
  font-weight: 600;
  color: var(--gold-light) !important;
}

.hero-panel {
  justify-self: end;
  width: 100%;
}

.glass-card {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 14px;
  padding: 34px;
  border: 1px solid rgba(234, 216, 170, 0.26);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    repeating-linear-gradient(90deg, transparent, transparent 42px, rgba(201, 164, 93, 0.12) 43px),
    repeating-linear-gradient(0deg, transparent, transparent 42px, rgba(201, 164, 93, 0.10) 43px);
  box-shadow: var(--shadow);
}

.glass-card span {
  color: var(--gold-light);
  font-weight: 700;
  text-transform: uppercase;
}

.glass-card strong {
  font-family: var(--serif);
  font-size: 30px;
}

.split,
.booking-grid,
.social-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: start;
}

.copy-stack h2,
.outcomes h2,
.social h2,
.next-step h2 {
  color: var(--blue);
}

.statement-list {
  margin-top: 34px;
  border-left: 3px solid var(--gold);
  padding-left: 22px;
}

.statement-list p {
  margin-top: 10px;
  font-weight: 700;
  color: var(--navy-soft);
}

blockquote {
  margin: 34px 0 0;
  padding: 26px 28px;
  border-left: 3px solid var(--gold);
  background: var(--white);
  box-shadow: 0 18px 40px rgba(8, 23, 43, 0.08);
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.25;
}

.photo-stage {
  position: sticky;
  top: 120px;
  justify-self: end;
  width: min(100%, 520px);
  min-height: 640px;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 54px 44px 42px;
  overflow: hidden;
  border: 1px solid rgba(234, 216, 170, 0.24);
  background:
    radial-gradient(circle at 78% 20%, rgba(46, 121, 191, 0.52), transparent 34%),
    linear-gradient(145deg, #061323 0%, #0d3765 58%, #061323 100%);
  box-shadow: var(--shadow);
}

.photo-stage::before {
  content: none;
}

.photo-stage::after {
  content: "";
  position: absolute;
  inset: auto 38px 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(234, 216, 170, 0.84), transparent);
}

.photo-stage img {
  position: relative;
  z-index: 1;
  width: min(285px, 78%);
  height: auto;
  object-fit: contain;
  border: 0;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.photo-stage div {
  position: relative;
  z-index: 1;
  width: min(285px, 78%);
  padding: 18px 0 0;
  color: var(--white);
  text-align: center;
}

.photo-stage strong,
.photo-stage span {
  display: block;
}

.photo-stage strong {
  font-family: var(--serif);
  font-size: 27px;
  line-height: 1.1;
}

.photo-stage span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 600;
}

.narrow .container {
  max-width: 1120px;
  text-align: center;
}

.narrow p {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  margin: 44px 0 38px;
}

.quote-grid div {
  grid-column: span 2;
  min-height: 148px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px 22px;
  border: 1px solid rgba(234, 216, 170, 0.18);
  border-top: 3px solid var(--gold);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.045));
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.16);
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(20px, 1.18vw, 24px);
  line-height: 1.22;
  text-align: center;
  text-wrap: balance;
}

.quote-grid div:nth-child(4) {
  grid-column: 2 / span 2;
}

.quote-grid div:nth-child(5) {
  grid-column: 4 / span 2;
}

.maxim {
  margin-top: 36px;
  margin-left: auto;
  margin-right: auto;
  max-width: 940px;
  font-family: var(--serif);
  font-size: clamp(32px, 3.4vw, 50px);
  line-height: 1.04;
  text-align: center;
}

.points {
  background:
    radial-gradient(circle at 50% 10%, rgba(31, 94, 159, 0.46), transparent 38%),
    linear-gradient(135deg, #061323, #082340 56%, #05101d);
  text-align: center;
}

.points h2,
.points h3 {
  color: var(--gold);
}

.points .lead {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.78);
}

.point-symbols {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.points-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(13, minmax(92px, 1fr));
  gap: 0;
  margin-top: 44px;
  padding-top: 42px;
  padding-bottom: 8px;
}

.points-timeline::before {
  content: "";
  position: absolute;
  top: 58px;
  left: calc(100% / 26);
  right: calc(100% / 26);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(234, 216, 170, 0.74), transparent);
}

.points-timeline article {
  position: relative;
  min-width: 0;
  padding: 0 8px;
  color: rgba(255, 255, 255, 0.78);
}

.points-timeline article::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 50%;
  width: 1px;
  height: 27px;
  background: rgba(234, 216, 170, 0.56);
  transform: translateX(-50%);
}

.points-timeline span {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin: 0 auto 22px;
  border: 2px solid rgba(234, 216, 170, 0.92);
  border-radius: 50%;
  color: var(--gold-light);
  background: #09223e;
  box-shadow: 0 0 0 6px rgba(6, 19, 35, 0.95), 0 0 24px rgba(201, 164, 93, 0.18);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.points-timeline svg {
  width: clamp(38px, 3.2vw, 56px);
  height: clamp(38px, 3.2vw, 56px);
  margin: 0 auto 16px;
  color: var(--gold);
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.points-timeline h4 {
  min-height: 48px;
  margin: 0;
  color: var(--white);
  font-size: clamp(11px, 0.72vw, 14px);
  line-height: 1.18;
}

.points-timeline p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.58);
  font-size: clamp(10px, 0.62vw, 12px);
  line-height: 1.35;
}

.points-timeline h4,
.points-timeline p {
  display: none;
}

.check-list,
.icon-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.icon-list li {
  position: relative;
  margin-top: 14px;
  padding-left: 28px;
}

.check-list li::before,
.icon-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 13px;
  height: 2px;
  background: var(--gold);
}

.boxed {
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.highlight-box {
  position: relative;
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  align-items: center;
  gap: 22px;
  margin-top: 22px;
  padding: 28px 30px;
  overflow: hidden;
  border: 1px solid rgba(201, 164, 93, 0.38);
  background:
    radial-gradient(circle at 10% 20%, rgba(201, 164, 93, 0.22), transparent 30%),
    linear-gradient(135deg, #ffffff, #f4f7fb);
  box-shadow: 0 18px 44px rgba(8, 23, 43, 0.09);
}

.highlight-box::after {
  content: "";
  position: absolute;
  inset: 12px;
  pointer-events: none;
  border: 1px solid rgba(31, 94, 159, 0.08);
}

.highlight-box svg {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  padding: 12px;
  border-radius: 50%;
  color: var(--gold);
  background: linear-gradient(145deg, var(--navy), var(--blue));
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  box-shadow: 0 14px 32px rgba(8, 23, 43, 0.22);
}

.highlight-box p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(25px, 2.1vw, 36px);
  font-weight: 700;
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.for-box {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(127, 91, 28, 0.24);
  background:
    radial-gradient(circle at 88% 10%, rgba(255, 255, 255, 0.42), transparent 28%),
    linear-gradient(145deg, #f3dfaa 0%, #d3ac5d 48%, #9f7430 100%);
  box-shadow: 0 24px 62px rgba(8, 23, 43, 0.28);
  color: #10213a;
}

.for-box::before {
  content: "";
  position: absolute;
  inset: 22px;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.34);
}

.for-box > * {
  position: relative;
  z-index: 1;
}

.for-box h2 {
  font-size: clamp(32px, 3.5vw, 48px);
  color: #0a2d55;
}

.for-box p,
.for-box li {
  color: #10213a;
}

.for-box .check-list li::before {
  top: 0.35em;
  width: 16px;
  height: 9px;
  border-left: 2px solid #0a2d55;
  border-bottom: 2px solid #0a2d55;
  background: transparent;
  transform: rotate(-45deg);
}

.booking-grid {
  align-items: center;
}

.event-title {
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1.12;
}

.booking-label {
  margin-top: 28px;
  color: var(--gold-light);
}

.session-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 190px));
  gap: 14px;
  margin-top: 12px;
}

.session-options a {
  display: block;
  padding: 18px 20px;
  border: 1px solid rgba(234, 216, 170, 0.58);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.session-options a:hover {
  transform: translateY(-2px);
  border-color: var(--gold-light);
  background: rgba(255, 255, 255, 0.1);
}

.session-options strong {
  display: block;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1;
}

.session-options span {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.price {
  display: inline-block;
  margin-top: 8px;
  font-family: var(--serif);
  font-size: 46px;
  line-height: 1;
}

.signup-form {
  padding: clamp(24px, 4vw, 42px);
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow);
}

.signup-form h2 {
  margin-bottom: 22px;
  color: var(--blue);
}

.signup-form label,
.signup-form legend {
  display: block;
  margin-top: 15px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.signup-form label span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
}

input,
select {
  width: 100%;
  min-height: 48px;
  margin-top: 7px;
  padding: 12px 14px;
  border: 1px solid #cdd9e5;
  border-radius: 0;
  color: var(--ink);
  background: #fbfdff;
  font-family: var(--sans);
  font-size: 14px;
  outline-color: var(--blue);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 14px;
}

fieldset {
  margin: 20px 0 22px;
  padding: 16px;
  border: 1px solid #cdd9e5;
}

fieldset label {
  display: flex !important;
  align-items: center;
  gap: 10px;
  margin-top: 12px !important;
  font-weight: 600 !important;
}

fieldset input {
  width: auto;
  min-height: auto;
  margin: 0;
}

.privacy-consent {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  margin: 18px 0 22px !important;
  padding: 14px 16px;
  border: 1px solid rgba(31, 94, 159, 0.18);
  background: #f7f9fc;
  font-weight: 600 !important;
  line-height: 1.45;
}

.privacy-consent input {
  width: auto;
  min-height: auto;
  margin: 3px 0 0;
}

.privacy-consent span {
  display: inline !important;
  color: var(--navy) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
}

.privacy-consent a {
  color: var(--blue);
  font-weight: 800;
}

.hidden {
  display: none;
}

.next-step .container {
  max-width: 900px;
}

.next-step p,
.next-step li {
  font-size: 18px;
}

.social blockquote {
  font-size: 22px;
}

cite {
  display: block;
  margin-top: 16px;
  color: var(--blue);
  font-family: var(--sans);
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
}

details {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}

summary {
  cursor: pointer;
  color: var(--navy);
  font-weight: 800;
}

details p {
  color: var(--muted);
}

.closing {
  text-align: center;
}

.closing .container {
  max-width: 980px;
}

.closing h2 {
  color: var(--white);
}

.closing p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 20px;
}

.closing .hero-actions {
  justify-content: center;
}

.footer {
  padding: 28px 0;
  background: var(--white);
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-logo {
  width: 190px;
}

.credit {
  width: 350px;
}

.credit-link {
  display: inline-block;
}

@media (max-width: 980px) {
  .outcomes {
    background: var(--white);
  }

  .hero-grid,
  .split,
  .booking-grid,
  .social-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    display: none;
  }

  .photo-stage {
    position: relative;
    top: auto;
    justify-self: stretch;
    width: 100%;
    min-height: 520px;
  }

  .hero {
    background:
      linear-gradient(90deg, rgba(3, 12, 24, 0.96) 0%, rgba(3, 12, 24, 0.88) 58%, rgba(3, 12, 24, 0.48) 100%),
      linear-gradient(180deg, rgba(3, 12, 24, 0.12) 0%, rgba(3, 12, 24, 0.82) 100%),
      url("hero-executive-bg.png") 64% center / cover no-repeat;
  }

  .hero-copy {
    max-width: 680px;
  }

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

  .points-timeline {
    grid-template-columns: repeat(13, minmax(58px, 1fr));
    gap: 0;
    padding-top: 0;
  }

  .points-timeline::before {
    display: block;
    top: 18px;
  }

  .points-timeline article::before {
    display: none;
  }

  .points-timeline article {
    padding: 0 3px;
    border: 0;
    background: transparent;
  }

  .points-timeline span {
    width: 30px;
    height: 30px;
    margin-bottom: 16px;
    font-size: 15px;
    box-shadow: 0 0 0 4px rgba(6, 19, 35, 0.95), 0 0 20px rgba(201, 164, 93, 0.18);
  }

  .points-timeline svg {
    width: 34px;
    height: 34px;
    margin-bottom: 10px;
  }

  .points-timeline h4 {
    min-height: auto;
    font-size: 10px;
    line-height: 1.1;
  }

  .points-timeline p {
    display: none;
  }
}

@media (min-width: 701px) and (max-width: 1280px) {
  .points .container {
    width: calc(100vw - 8px);
  }

  .points-timeline {
    grid-template-columns: repeat(13, minmax(0, 1fr));
    gap: 0;
  }

  .points-timeline article {
    padding-left: 1px;
    padding-right: 1px;
  }

  .points-timeline span {
    width: 28px;
    height: 28px;
    margin-bottom: 14px;
    font-size: 14px;
  }

  .points-timeline svg {
    width: 30px;
    height: 30px;
    margin-bottom: 8px;
  }

  .points-timeline h4 {
    font-size: clamp(8px, 1.05vw, 11px);
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .points-timeline p {
    display: none;
  }
}

@media (max-width: 700px) {
  section,
  .footer {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .brand img {
    width: 178px;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    font-size: 10px;
  }

  .container {
    width: min(100% - 32px, 1600px);
  }

  h1,
  h2 {
    overflow-wrap: anywhere;
  }

  .hero {
    min-height: auto;
    padding: 154px 0 48px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero h1 {
    font-size: clamp(28px, 8.6vw, 35px);
    line-height: 1.06;
  }

  .hero-copy p {
    font-size: 14px;
    line-height: 1.55;
  }

  .hero-brand {
    top: 24px;
  }

  .hero-brand img {
    width: 98px;
    height: 98px;
  }

  .date-row,
  .hero-actions {
    gap: 10px;
  }

  .date-card {
    min-width: 0;
    flex: 1 1 145px;
    padding: 14px 12px;
  }

  .date-card strong {
    font-size: 28px;
  }

  .copy-stack h2,
  .narrow h2,
  .points h2,
  .outcomes h2,
  .booking h2,
  .social h2,
  .next-step h2,
  .closing h2 {
    font-size: clamp(25px, 7.2vw, 31px);
    line-height: 1.08;
  }

  .statement-list {
    margin-top: 24px;
    padding-left: 16px;
  }

  .statement-list p {
    font-size: 15px;
    line-height: 1.55;
    overflow-wrap: normal;
  }

  blockquote {
    padding: 22px 22px;
    font-size: 20px;
    line-height: 1.3;
  }

  .price {
    font-size: 38px;
  }

  .highlight-box {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 16px;
    padding: 26px 22px;
    text-align: center;
  }

  .highlight-box p {
    font-size: clamp(24px, 7vw, 30px);
  }

  .quote-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .points-timeline {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px 6px;
    max-width: 360px;
    margin: 30px auto 0;
    padding: 20px 12px;
    border: 1px solid rgba(234, 216, 170, 0.22);
    background:
      radial-gradient(circle at 50% 18%, rgba(31, 94, 159, 0.32), transparent 42%),
      rgba(255, 255, 255, 0.035);
  }

  .points-timeline::before {
    display: none;
  }

  .points-timeline article {
    padding: 0;
    border: 0;
    background: transparent;
  }

  .points-timeline article::before {
    display: none;
  }

  .points-timeline article:nth-child(11) {
    grid-column: 2;
  }

  .points-timeline span {
    width: 26px;
    height: 26px;
    margin-bottom: 7px;
    box-shadow: 0 0 0 4px rgba(6, 19, 35, 0.9), 0 0 18px rgba(201, 164, 93, 0.16);
    font-size: 14px;
  }

  .points-timeline svg {
    width: 26px;
    height: 26px;
    margin-bottom: 0;
    stroke-width: 2.4;
  }

  .points-timeline p {
    display: none;
    font-size: 12px;
  }

  .quote-grid div,
  .quote-grid div:nth-child(4),
  .quote-grid div:nth-child(5) {
    grid-column: auto;
  }

  .quote-grid q {
    min-height: 110px;
  }

  .btn {
    width: 100%;
  }

  .session-options {
    grid-template-columns: 1fr;
  }

  .photo-stage {
    min-height: 440px;
    padding: 42px 24px 34px;
  }

  .photo-stage img,
  .photo-stage div {
    width: min(250px, 82%);
  }

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