:root {
  --brand-sky-900: #0e2f46;
  --brand-sky-700: #1b4f72;
  --brand-sky-500: #3e7ba8;
  --brand-sky-200: #b8d8ec;
  --brand-sky-100: #dcebf5;
  --brand-sky-050: #ebf5fb;

  --brand-leaf-900: #1a4d1d;
  --brand-leaf-700: #2e7d32;
  --brand-leaf-500: #5ba058;
  --brand-leaf-200: #c8e0c5;
  --brand-leaf-100: #ddecdb;
  --brand-leaf-050: #f1f8e9;

  --accent-sail: #f5ebd5;
  --accent-sand: #e9d6a8;
  --accent-buoy: #d9633b;

  --sunset-700: #c0492c;
  --sunset-500: #e07a4f;
  --sunset-100: #fbe6d7;

  --ink-900: #0f1b24;
  --ink-700: #2a3845;
  --ink-500: #5a6b79;
  --ink-400: #8595a2;
  --ink-300: #b5c2cc;
  --ink-200: #d6dee5;
  --ink-100: #ecf1f5;
  --ink-050: #f6f8fb;
  --paper: #ffffff;

  --font-display: 'Lora', Georgia, serif;
  --font-text: 'Montserrat', 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;

  --primary: var(--brand-sky-700);
  --primary-hover: var(--brand-sky-900);
  --secondary: var(--brand-leaf-700);

  --shadow-2: 0 2px 8px rgba(15, 27, 36, 0.06), 0 1px 2px rgba(15, 27, 36, 0.04);
  --shadow-3: 0 8px 24px rgba(15, 27, 36, 0.08), 0 2px 6px rgba(15, 27, 36, 0.04);
  --shadow-4: 0 20px 48px rgba(15, 27, 36, 0.10), 0 6px 14px rgba(15, 27, 36, 0.05);
}

@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;1,400;1,500&family=JetBrains+Mono:wght@400;500&display=swap');

@font-face {
  font-family: "Montserrat";
  src: url("/assets/fonts/Montserrat-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("/assets/fonts/Montserrat-Italic-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Montserrat", "Segoe UI", sans-serif;
  color: var(--ink-900);
  background: #ffffff;
  line-height: 1.55;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #ffffff;
  border-bottom: 1px solid var(--ink-200);
  backdrop-filter: blur(8px);
}

.header-inner {
  min-height: 86px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}

.brand img {
  height: 52px;
  display: block;
}

.main-nav {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

.main-nav a,
.phone-link {
  text-decoration: none;
  color: var(--ink-700);
  font-size: 16px;
  font-weight: 600;
}

.header-actions {
  display: flex;
  gap: 14px;
  align-items: center;
}

.hero {
  padding-top: 48px;
}

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}

.eyebrow {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-leaf-700);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: currentColor;
}

.hero__content h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 4.5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 16px 0 20px;
}

.hero__content p {
  margin: 0;
  color: var(--ink-700);
  font-size: 18px;
  max-width: 640px;
}

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

.hero-stats {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  border-top: 1px solid var(--ink-200);
  padding-top: 18px;
}

.hero-stats strong {
  display: block;
  font-size: 26px;
  line-height: 1;
}

.hero-stats span {
  font-size: 12px;
  color: var(--ink-500);
}

.video-card {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--brand-sky-700) 20%, var(--ink-200));
  box-shadow: 0 24px 64px rgba(14, 47, 70, 0.22);
  background: linear-gradient(180deg, #dcebf5 0%, #1b4f72 100%);
}

.video-card video {
  width: 100%;
  min-height: 460px;
  display: block;
  object-fit: cover;
  background: transparent;
}

.video-badge {
  position: absolute;
  left: 14px;
  top: 14px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--brand-sky-900);
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 700;
}

.video-note {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  color: #fff;
  font-size: 12px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.section {
  padding: 28px 0;
}

.section h2 {
  font-family: var(--font-display);
  font-weight: 400;
  margin: 0 0 16px;
  font-size: clamp(28px, 3vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.section h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.grid {
  display: grid;
  gap: 14px;
}

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

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

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

.card {
  background: var(--ink-050);
  border: 1px solid var(--ink-200);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 2px 8px rgba(15, 27, 36, 0.04);
}

.events-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.event-highlight .meta {
  margin: 0;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-leaf-700);
}

.events-list {
  display: grid;
  gap: 8px;
}

.event-row {
  display: grid;
  grid-template-columns: 95px 1fr;
  gap: 10px;
  border-bottom: 1px solid var(--ink-200);
  padding-bottom: 8px;
}

.event-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.media {
  min-height: 110px;
  display: grid;
  place-items: center;
  color: var(--ink-500);
}

.section__title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.table-wrap {
  overflow: auto;
  border-radius: 14px;
  border: 1px solid var(--ink-200);
  background: var(--paper);
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--ink-200);
  text-align: left;
  font-size: 14px;
}

th {
  background: var(--brand-sky-050);
}

.btn {
  border: 0;
  border-radius: 999px;
  padding: 11px 18px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-hover);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}

label {
  display: grid;
  gap: 6px;
  font-size: 14px;
  color: var(--ink-500);
}

input,
select,
textarea {
  width: 100%;
  padding: 9px 10px;
  border: 1px solid var(--ink-200);
  border-radius: 10px;
  font-size: 14px;
  color: var(--ink-900);
  font-family: inherit;
}

/* ── Calculator v2 (with range calendar) ─────────────────────── */
.calc-v2 {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 28px;
  align-items: start;
  margin-bottom: 4px;
}

@media (max-width: 640px) {
  .calc-v2 { grid-template-columns: 1fr; }
}

.calc-v2__left {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.calc-v2__left button {
  width: 100%;
  margin-top: 4px;
}

/* ── Lead capture form (after calculator result) ─────────────── */
.calc-lead {
  margin-top: 16px;
  padding: 16px 20px;
  background: var(--brand-sky-050);
  border: 1px solid var(--brand-sky-200);
  border-radius: 12px;
}

.calc-lead > p {
  margin: 0 0 12px;
  font-size: 14px;
  color: var(--ink-700);
}

.calc-lead__form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.calc-lead__form input {
  flex: 1;
  min-width: 160px;
}

.calc-lead__form button { flex-shrink: 0; }

/* ── Range Calendar ───────────────────────────────────────────── */
.range-cal { user-select: none; }

.rc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.rc-month {
  font-weight: 600;
  font-size: 15px;
  color: var(--ink-900);
  text-transform: capitalize;
}

.rc-nav {
  width: 32px;
  height: 32px;
  border: none;
  background: var(--ink-050);
  border-radius: 6px;
  color: var(--primary);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}

.rc-nav:hover:not(:disabled) { background: var(--brand-sky-100); }
.rc-nav:disabled { opacity: 0.35; cursor: not-allowed; }

.rc-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 4px;
}

.rc-wd {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-400);
  padding: 4px 0;
  letter-spacing: 0.02em;
}

.rc-wd--we { color: var(--brand-sky-500); }

.rc-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
}

.rc-day {
  position: relative;
  aspect-ratio: 1;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 13px;
  color: var(--ink-900);
  border-radius: 6px;
  transition: background 0.1s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.rc-day--empty { pointer-events: none; }

.rc-day--past { color: var(--ink-300); cursor: not-allowed; }

.rc-day--today:not(.rc-day--start):not(.rc-day--end) {
  font-weight: 700;
  color: var(--primary);
}

.rc-day--today:not(.rc-day--start):not(.rc-day--end)::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: currentColor;
  border-radius: 50%;
}

.rc-day--we:not(.rc-day--past):not(.rc-day--start):not(.rc-day--end):not(.rc-day--range) {
  color: var(--brand-sky-700);
}

.rc-day:hover:not(.rc-day--past):not(.rc-day--empty):not(.rc-day--start):not(.rc-day--end) {
  background: var(--brand-sky-100);
}

.rc-day--range {
  background: var(--brand-sky-100);
  border-radius: 0;
  color: var(--brand-sky-900);
}

.rc-day--start,
.rc-day--end {
  background: var(--primary);
  color: #fff;
  font-weight: 600;
}

.rc-day--start { border-radius: 6px 0 0 6px; }
.rc-day--end   { border-radius: 0 6px 6px 0; }
.rc-day--start.rc-day--end { border-radius: 6px; }

.range-cal__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  padding: 8px 14px;
  background: var(--brand-sky-050);
  border: 1px solid var(--brand-sky-200);
  border-radius: 8px;
  font-size: 13px;
  color: var(--ink-700);
}

.range-cal__summary strong { color: var(--primary); }

.rc-reset {
  border: none;
  background: transparent;
  color: var(--ink-400);
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  padding: 0 2px;
}

.rc-reset:hover { color: var(--accent-buoy); }

.rc-hint {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 11px;
  color: var(--ink-400);
}

.rc-hint__dot--we {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-sky-500);
  flex-shrink: 0;
}

.result {
  margin-top: 14px;
  background: #edf5ff;
  border: 1px solid #c4d9f4;
  border-radius: 10px;
  padding: 12px;
}

.faq details {
  background: var(--paper);
  border: 1px solid var(--ink-200);
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 10px;
}

.footer {
  margin-top: 30px;
  background: var(--brand-sky-900);
  color: #fff;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
}

.footer-map {
  min-height: 520px;
  position: relative;
}

.footer-map iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
}

.map-card {
  position: absolute;
  top: 24px;
  left: 24px;
  max-width: 360px;
  background: var(--paper);
  border: 1px solid var(--ink-200);
  border-radius: 14px;
  padding: 18px;
  color: var(--ink-900);
}

.map-card h3 {
  margin: 0 0 8px;
}

.footer-contacts {
  padding: 44px 36px;
  display: grid;
  align-content: center;
  gap: 14px;
}

.footer-logo {
  max-width: 280px;
  width: 100%;
  margin-bottom: 12px;
}

.contact-card {
  border: 1px solid rgba(184, 216, 236, 0.24);
  border-radius: 12px;
  padding: 12px;
  display: grid;
  gap: 6px;
  background: rgba(255, 255, 255, 0.04);
}

.contact-card span {
  color: var(--brand-sky-200);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.contact-card a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.footer-bottom {
  border-top: 1px solid rgba(184, 216, 236, 0.2);
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--brand-sky-200);
  font-size: 12px;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(10, 20, 45, 0.55);
  display: grid;
  place-items: center;
  padding: 20px;
  z-index: 100;
}

.modal__dialog {
  width: min(760px, 100%);
  max-height: 90vh;
  overflow: auto;
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  position: relative;
}

.modal__close {
  position: absolute;
  right: 12px;
  top: 10px;
  border: 0;
  background: transparent;
  font-size: 24px;
  cursor: pointer;
}

.progress {
  height: 6px;
  background: #e4edf9;
  border-radius: 99px;
}

#progressBar {
  height: 100%;
  width: 0;
  background: var(--primary);
  border-radius: 99px;
  transition: width 0.2s ease;
}

.wizard-actions {
  margin-top: 16px;
  display: flex;
  gap: 10px;
}

/* ── Progress bar + step counter ─────────────────────────────── */
.progress-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.progress-wrap .progress {
  flex: 1;
  margin-bottom: 0;
}

.step-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-500);
  white-space: nowrap;
  min-width: 72px;
  text-align: right;
}

/* ── Step slide animation ─────────────────────────────────────── */
@keyframes stepSlideRight {
  from { opacity: 0; transform: translateX(24px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes stepSlideLeft {
  from { opacity: 0; transform: translateX(-24px); }
  to   { opacity: 1; transform: translateX(0); }
}

.step--slide-right {
  animation: stepSlideRight 0.22s ease both;
}

.step--slide-left {
  animation: stepSlideLeft 0.22s ease both;
}

/* ── Additional services grid (step 4) ───────────────────────── */
.step-hint {
  font-size: 13px;
  color: var(--ink-500);
  margin: 0 0 12px;
}

.step3-checks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
  padding: 12px 14px;
  background: var(--ink-050);
  border: 1px solid var(--ink-200);
  border-radius: 10px;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.service-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s;
}

.service-row:hover {
  background: var(--brand-sky-050);
}

.service-row__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.service-row__name {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-900);
}

.service-row__hint {
  font-size: 12px;
  color: var(--ink-500);
}

.service-row .stepper {
  width: auto;
  flex-shrink: 0;
}

/* ── Stepper: custom +/− number input ───────────────────────── */

/* Hide native browser spinners everywhere in the wizard */
#applicationForm input[type="number"]::-webkit-inner-spin-button,
#applicationForm input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
#applicationForm input[type="number"] {
  -moz-appearance: textfield;
}

.stepper {
  display: inline-flex;
  align-items: stretch;
  border: 1px solid var(--ink-200);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  width: 100%; /* fill label grid cell by default */
}

.stepper__btn {
  flex-shrink: 0;
  width: 36px;
  border: none;
  background: var(--ink-050);
  color: var(--primary);
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  user-select: none;
}

.stepper__btn:hover {
  background: var(--brand-sky-100);
  color: var(--brand-sky-900);
}

.stepper__btn:active {
  background: var(--brand-sky-200);
}

.stepper input[type="number"] {
  flex: 1;
  min-width: 40px;
  width: auto; /* override global input 100% */
  border: none;
  border-left: 1px solid var(--ink-200);
  border-right: 1px solid var(--ink-200);
  border-radius: 0;
  text-align: center;
  padding: 7px 4px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-900);
  background: #fff;
}

.stepper input[type="number"]:focus {
  outline: none;
  background: var(--brand-sky-050);
}

/* ── Live quote bar ──────────────────────────────────────────── */
.live-quote {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  padding: 8px 16px;
  background: var(--brand-sky-050);
  border: 1px solid var(--brand-sky-200);
  border-radius: 8px;
  font-size: 14px;
  color: var(--ink-700);
}

.live-quote__label {
  color: var(--ink-500);
}

.live-quote strong {
  font-size: 16px;
  color: var(--primary);
}

/* ── Success screen ──────────────────────────────────────────── */
.wizard-success {
  text-align: center;
  padding: 32px 16px 24px;
}

.wizard-success__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--brand-leaf-100);
  color: var(--brand-leaf-700);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
}

.wizard-success h3 {
  margin: 0 0 10px;
  font-size: 20px;
  color: var(--ink-900);
}

.wizard-success p {
  color: var(--ink-500);
  margin: 0 0 24px;
}

/* ── Form message ────────────────────────────────────────────── */
.form-message {
  min-height: 20px;
  font-size: 13px;
  color: var(--accent-buoy);
  margin: 6px 0 0;
}

.row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.row input {
  width: auto;
}

/* ── Canopy toggle card ────────────────────────────────────────────── */
.canopy-toggle {
  display: block;
  margin-top: 16px;
  cursor: pointer;
}

.canopy-toggle input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.canopy-toggle__content {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  border: 2px solid var(--ink-200);
  border-radius: 12px;
  background: var(--ink-050);
  transition: border-color 0.18s, background 0.18s, box-shadow 0.18s;
  user-select: none;
}

.canopy-toggle:hover .canopy-toggle__content {
  border-color: var(--brand-sky-500);
  background: var(--brand-sky-050);
}

.canopy-toggle input:checked ~ .canopy-toggle__content {
  border-color: var(--brand-sky-700);
  background: var(--brand-sky-100);
  box-shadow: 0 0 0 1px var(--brand-sky-700);
}

.canopy-toggle__icon {
  font-size: 26px;
  line-height: 1;
  flex-shrink: 0;
}

.canopy-toggle__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.canopy-toggle__text strong {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-900);
}

.canopy-toggle__text span {
  font-size: 12px;
  color: var(--ink-500);
  line-height: 1.4;
}

.canopy-toggle__check {
  width: 22px;
  height: 22px;
  border: 2px solid var(--ink-300);
  border-radius: 6px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, border-color 0.15s;
  background: #fff;
}

.canopy-toggle__check::after {
  content: '';
  width: 5px;
  height: 9px;
  border: 2px solid transparent;
  border-left: none;
  border-top: none;
  transform: rotate(45deg) translateY(-1px);
  transition: border-color 0.15s;
}

.canopy-toggle input:checked ~ .canopy-toggle__content .canopy-toggle__check {
  background: var(--brand-sky-700);
  border-color: var(--brand-sky-700);
}

.canopy-toggle input:checked ~ .canopy-toggle__content .canopy-toggle__check::after {
  border-color: #fff;
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 1px;
  width: 1px;
}

.turnstile-placeholder {
  margin-top: 8px;
  color: var(--ink-500);
  font-size: 13px;
}

.hidden {
  display: none !important;
}

/* ============================================================
   Hero ticker strip
   ============================================================ */
.hero-ticker {
  margin-top: 56px;
  padding: 20px 0;
  border-top: 1px solid var(--ink-200);
  border-bottom: 1px solid var(--ink-200);
  overflow: hidden;
  white-space: nowrap;
}

.hero-ticker__inner {
  display: inline-flex;
  gap: 48px;
  animation: ticker 24s linear infinite;
}

.hero-ticker__item {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 26px;
  letter-spacing: -0.02em;
  color: var(--ink-900);
  flex-shrink: 0;
}

.hero-ticker__item--dot {
  color: var(--brand-leaf-700);
  font-size: 18px;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   Section layout improvements
   ============================================================ */
.section-head {
  margin-bottom: 48px;
}

.section-head .eyebrow {
  margin-bottom: 16px;
}

.section-head--row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

/* ============================================================
   Events — filter tabs, timeline, cards
   ============================================================ */
.events-filters {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.filter-tabs {
  display: flex;
  gap: 4px;
  padding: 4px;
  background: var(--paper);
  border-radius: 999px;
  border: 1px solid var(--ink-200);
}

.filter-tab {
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 500;
  font-family: var(--font-text);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  background: transparent;
  color: var(--ink-500);
  transition: background 200ms, color 200ms;
}

.filter-tab.is-active {
  background: var(--brand-sky-700);
  color: #fff;
}

.events-timeline {
  background: var(--paper);
  border: 1px solid var(--ink-200);
  border-radius: 18px;
  padding: 28px 32px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.timeline-label {
  flex: 0 0 auto;
}

.timeline-label .tl-caption {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-400);
}

.timeline-label .tl-date {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--ink-900);
  letter-spacing: -0.01em;
}

.timeline-track {
  flex: 1;
  position: relative;
  padding: 20px 0;
}

.timeline-track__bar {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  background: var(--ink-200);
  transform: translateY(-50%);
}

.timeline-track__progress {
  position: absolute;
  left: 0;
  top: 50%;
  height: 2px;
  width: 38%;
  background: linear-gradient(90deg, var(--brand-leaf-700), var(--brand-sky-700));
  transform: translateY(-50%);
  border-radius: 2px;
}

.timeline-track__now {
  position: absolute;
  left: 38%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  z-index: 2;
}

.timeline-track__now-label {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  color: var(--brand-sky-700);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.timeline-track__now-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--brand-sky-700);
  border: 3px solid #fff;
  box-shadow: 0 0 0 1px var(--brand-sky-700);
}

.timeline-months {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.timeline-month {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.timeline-month__roman {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--ink-400);
  letter-spacing: 0.1em;
}

.timeline-month__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--ink-200);
}

.timeline-month__dot.is-past {
  border-color: var(--brand-leaf-700);
}

.timeline-month__name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink-900);
}

.timeline-month__events {
  display: flex;
  gap: 3px;
}

.timeline-month__ev-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand-sky-200);
}

.timeline-month__ev-dot.has-event {
  background: var(--brand-sky-700);
  opacity: 0.7;
}

.events-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
}

.event-featured {
  background: var(--paper);
  border-radius: 18px;
  border: 1px solid var(--ink-200);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.event-featured__visual {
  height: 280px;
  background: linear-gradient(180deg, var(--brand-sky-100) 0%, var(--brand-sky-200) 35%, var(--brand-sky-500) 75%, var(--brand-sky-700) 100%);
  position: relative;
}

.event-featured__badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: rgba(255,255,255,0.92);
  color: var(--brand-sky-700);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.event-featured__badge::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sunset-700);
}

.event-featured__date-block {
  position: absolute;
  bottom: 18px;
  left: 18px;
  color: #fff;
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.event-featured__day {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.03em;
}

.event-featured__month-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  line-height: 1;
}

.event-featured__dow {
  font-family: var(--font-mono);
  font-size: 10px;
  opacity: 0.8;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
}

.event-featured__crew {
  position: absolute;
  bottom: 18px;
  right: 18px;
  background: rgba(15,27,36,0.45);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 999px;
}

.event-featured__body {
  padding: 28px 32px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.event-featured__kind {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--brand-sky-700);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

.event-featured__title {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink-900);
  margin: 10px 0 14px;
}

.event-featured__desc {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-700);
}

.event-featured__footer {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--ink-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.event-featured__fee-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink-400);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.event-featured__fee {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--ink-900);
  letter-spacing: -0.01em;
}

.event-featured__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.event-list-card {
  background: var(--paper);
  border-radius: 18px;
  border: 1px solid var(--ink-200);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.event-list-card__header {
  padding: 18px 24px;
  border-bottom: 1px solid var(--ink-200);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.event-list-card__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--ink-900);
}

.event-list-card__count {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-400);
  margin-left: 10px;
}

.event-list-card__link {
  font-size: 13px;
  font-weight: 500;
  color: var(--brand-sky-700);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
}

.event-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 16px;
  padding: 18px 24px;
  align-items: center;
  border-top: 1px solid var(--ink-200);
  cursor: pointer;
  transition: background 200ms;
}

.event-item:first-child {
  border-top: 0;
}

.event-item:hover {
  background: var(--ink-050);
}

.event-item__date-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink-900);
}

.event-item__date-meta {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink-400);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 2px;
}

.event-item__tags {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.event-tag {
  display: inline-block;
  padding: 2px 9px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.event-tag--regatta {
  background: var(--brand-sky-100);
  color: var(--brand-sky-900);
}

.event-tag--school {
  background: var(--brand-leaf-100);
  color: var(--brand-leaf-900);
}

.event-tag--promo {
  background: var(--sunset-100);
  color: #8a4520;
}

.event-tag--corp {
  background: var(--ink-100);
  color: var(--ink-700);
}

.event-tag--season {
  background: var(--brand-leaf-100);
  color: var(--brand-leaf-900);
}

.event-item__spots {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-400);
}

.event-item__name {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-900);
  line-height: 1.3;
}

.event-item__sub {
  font-size: 12px;
  color: var(--ink-400);
  margin-top: 2px;
}

.event-item__arrow {
  color: var(--brand-sky-700);
  font-size: 16px;
  opacity: 0.6;
}

.event-list-card__footer {
  padding: 18px 24px;
  background: var(--ink-050);
  border-top: 1px solid var(--ink-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.event-list-card__footer p {
  font-size: 13px;
  color: var(--ink-700);
  line-height: 1.45;
  margin: 0;
  max-width: 280px;
}

/* ============================================================
   Editorial quote section — full-width photo with text overlay
   ============================================================ */
.editorial {
  position: relative;
  min-height: 560px;
  overflow: hidden;
}

.editorial__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Two legibility gradients — matches design prototype */
.editorial__wash-left {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(95deg, rgba(20,12,8,0.62) 0%, rgba(20,12,8,0.35) 40%, rgba(20,12,8,0) 70%);
}

.editorial__wash-bottom {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(20,12,8,0) 55%, rgba(20,12,8,0.45) 100%);
}

.editorial__content {
  position: relative;
  padding: 80px 72px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  align-items: flex-end;
  min-height: 560px;
  box-sizing: border-box;
}

.editorial__body {
  color: #F5EBD5; /* cream */
  max-width: 560px;
}

.editorial__eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #F4C57A; /* golden glow */
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}

.editorial__eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: currentColor;
}

.editorial__quote {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  color: #F5EBD5;
  text-shadow: 0 4px 28px rgba(20,12,8,0.45);
}

.editorial__quote em {
  font-style: italic;
  color: #F4C57A;
}

.editorial__text {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(245,235,213,0.78);
  margin: 0 0 36px;
  text-shadow: 0 2px 12px rgba(20,12,8,0.4);
}

.editorial__items {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.editorial__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(245,235,213,0.78);
}

.editorial__item::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #F4C57A;
  box-shadow: 0 0 10px #F4C57A;
  flex: 0 0 auto;
}

.editorial__actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.editorial__caption {
  justify-self: end;
  align-self: flex-end;
  padding: 14px 18px;
  background: rgba(20,12,8,0.42);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(245,235,213,0.22);
  border-radius: 12px;
  color: #F5EBD5;
  max-width: 280px;
}

.editorial__caption-meta {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #F4C57A;
  opacity: 0.9;
}

.editorial__caption-text {
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: -0.01em;
  margin-top: 4px;
  color: #F5EBD5;
}

.btn-cream {
  background: #F5EBD5;
  color: #3A2614;
  border: 1px solid #F5EBD5;
}

.btn-cream:hover {
  background: #ede0c5;
}

.btn-ghost-cream {
  background: transparent;
  color: #F5EBD5;
  border: 1px solid rgba(245,235,213,0.55);
}

/* ============================================================
   Testimonials
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.testimonial-card {
  background: var(--ink-050);
  border-radius: 20px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  min-height: 280px;
}

.testimonial-card__quote-mark {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 72px;
  line-height: 0.7;
  color: var(--brand-leaf-700);
  margin-bottom: 12px;
}

.testimonial-card__text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-900);
  flex: 1;
  margin: 0;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--ink-200);
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex: 0 0 auto;
}

.testimonial-card__avatar--blue {
  background: var(--brand-sky-100);
  color: var(--brand-sky-900);
}

.testimonial-card__avatar--green {
  background: var(--brand-leaf-100);
  color: var(--brand-leaf-900);
}

.testimonial-card__avatar--sun {
  background: var(--sunset-100);
  color: #8a4520;
}

.testimonial-card__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-900);
}

.testimonial-card__sub {
  font-size: 12px;
  color: var(--ink-400);
  margin-top: 2px;
}

.testimonials-stat {
  display: flex;
  align-items: flex-end;
  gap: 36px;
  margin-bottom: 8px;
}

.testimonials-stat__num {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 300;
  color: var(--ink-900);
  line-height: 1;
  letter-spacing: -0.03em;
}

.testimonials-stat__caption {
  font-size: 16px;
  color: var(--ink-400);
  padding-bottom: 10px;
  max-width: 260px;
  line-height: 1.45;
}

/* ============================================================
   Review Photos Grid (from /api/reviews)
   ============================================================ */
.review-photos {
  margin-top: 48px;
}

.review-photos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.review-photo-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 12px;
  background: var(--ink-100);
  cursor: pointer;
}

.review-photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.review-photo-item:hover img {
  transform: scale(1.05);
}

.review-photo-item__author {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 12px 10px;
  background: linear-gradient(transparent, rgba(0,0,0,0.55));
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.review-photo-item:hover .review-photo-item__author {
  opacity: 1;
}

.review-photos__more {
  display: inline-block;
  margin-top: 20px;
  font-size: 14px;
  color: var(--brand-sky-700, #1565c0);
  text-decoration: none;
  font-weight: 500;
}

.review-photos__more:hover {
  text-decoration: underline;
}

/* ============================================================
   Gallery Section
   ============================================================ */
.gallery-section {
  margin-bottom: 0;
}

.gallery-grid {
  columns: 3;
  column-gap: 8px;
  margin-top: 32px;
}

.gallery-grid:empty {
  display: none;
}

.gallery-section:has(.gallery-grid:empty) {
  display: none;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 8px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: var(--ink-100);
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item__caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 12px 10px;
  background: linear-gradient(transparent, rgba(0,0,0,0.55));
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.gallery-item:hover .gallery-item__caption {
  opacity: 1;
}

/* ============================================================
   Lightbox
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9990;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: all;
}

.lightbox__img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 90vw;
  max-height: 85vh;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  display: block;
  user-select: none;
}

.lightbox__caption {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  text-align: center;
  max-width: 600px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0;
}

.lightbox__close {
  position: absolute;
  top: 16px; right: 20px;
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  opacity: 0.65;
  line-height: 1;
  padding: 4px 8px;
  transition: opacity 0.15s;
}

.lightbox__close:hover { opacity: 1; }

.lightbox__prev,
.lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  padding: 6px 16px;
  border-radius: 8px;
  line-height: 1;
  transition: background 0.15s;
}

.lightbox__prev { left: 16px; }
.lightbox__next { right: 16px; }

.lightbox__prev:hover,
.lightbox__next:hover {
  background: rgba(255, 255, 255, 0.25);
}

@media (max-width: 600px) {
  .gallery-grid { columns: 2; }
  .lightbox__prev { left: 8px; }
  .lightbox__next { right: 8px; }
  .lightbox__caption { display: none; }
}

@media (max-width: 600px) {
  .review-photos__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .events-timeline {
    padding: 14px 12px;
    gap: 8px;
  }
  .timeline-label {
    display: none;
  }
  .timeline-month__name {
    font-size: 13px;
  }
  .timeline-month__roman {
    font-size: 8px;
  }
}

/* ============================================================
   Yandex Reviews Widget
   ============================================================ */
.yandex-reviews-wrap {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: 800px;
  margin-top: 48px;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--ink-200);
}

.yandex-reviews-iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.yandex-reviews-link {
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 10px;
  color: var(--ink-300);
  text-decoration: none;
  padding: 0 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
  box-sizing: border-box;
}

.yandex-reviews-link:hover {
  color: var(--ink-500);
}

/* ============================================================
   Friends section
   ============================================================ */
.friends-section {
  padding: 64px 0;
  border-top: 1px solid var(--ink-200);
}

.friends-section > div {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 64px;
  align-items: center;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 80px;
  align-items: start;
}

.friends-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.friend-card {
  padding: 24px;
  border-radius: 14px;
  border: 1px solid var(--ink-200);
  background: var(--ink-050);
}

.friend-card__abbr {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--ink-900);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.friend-card__name {
  font-size: 12px;
  color: var(--ink-400);
  line-height: 1.5;
}

/* ============================================================
   FAQ improvements
   ============================================================ */
.faq details {
  background: var(--paper);
  border: 1px solid var(--ink-200);
  border-radius: 14px;
  padding: 0;
  margin-bottom: 10px;
  overflow: hidden;
}

.faq details summary {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--ink-900);
  cursor: pointer;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
}

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

.faq details summary::after {
  content: '+';
  font-family: var(--font-text);
  font-weight: 300;
  font-size: 24px;
  color: var(--ink-400);
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border: 1px solid var(--ink-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: transform 0.25s;
}

.faq details[open] summary::after {
  transform: rotate(45deg);
}

.faq details p {
  margin: 0;
  padding: 0 28px 24px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-700);
}

/* ============================================================
   Pill / tag component
   ============================================================ */
.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.pill--line {
  border: 1px solid var(--ink-200);
  color: var(--ink-700);
}

.pill--blue {
  background: var(--brand-sky-100);
  color: var(--brand-sky-900);
}

.pill--green {
  background: var(--brand-leaf-100);
  color: var(--brand-leaf-900);
}

/* ============================================================
   Hero stats — 4 items in design, update layout
   ============================================================ */
.hero-stats {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 1080px) {
  .header-inner {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 10px;
    padding: 12px 0;
  }

  .hero-split,
  .events-wrap,
  .events-grid,
  .editorial,
  .testimonials-grid,
  .friends-grid,
  .grid-4,
  .grid-3,
  .grid-2,
  .calc,
  .footer-top {
    grid-template-columns: 1fr;
  }

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

  .editorial__content {
    grid-template-columns: 1fr;
    padding: 48px 32px;
    gap: 32px;
  }

  .editorial__caption {
    justify-self: start;
  }

  .event-item {
    grid-template-columns: 48px 1fr auto;
  }

  .friends-section > div,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .hero-ticker__item {
    font-size: 20px;
  }

  .testimonials-stat {
    flex-direction: column;
    gap: 8px;
  }

  .testimonials-stat__num {
    font-size: 52px;
  }

  .main-nav {
    justify-content: flex-start;
  }

  .video-card video {
    min-height: 280px;
  }

  .footer-map iframe,
  .footer-map {
    min-height: 360px;
  }

  .map-card {
    position: static;
    margin: 12px;
  }
}

/* ============================================================
   Mobile burger navigation (≤768px)
   ============================================================ */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  background: none;
  border: 1px solid var(--ink-200);
  border-radius: 8px;
  cursor: pointer;
  flex-shrink: 0;
}

.nav-burger__line {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink-700);
  border-radius: 2px;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.nav-burger[aria-expanded="true"] .nav-burger__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-burger[aria-expanded="true"] .nav-burger__line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-burger[aria-expanded="true"] .nav-burger__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 20, 45, 0.35);
  z-index: 38;
}

.nav-backdrop.is-visible {
  display: block;
}

@media (max-width: 768px) {
  .header-inner {
    grid-template-columns: auto 1fr auto !important;
    min-height: 64px !important;
    gap: 12px !important;
    padding: 0 !important;
  }

  .brand img {
    height: 40px;
  }

  .nav-burger {
    display: flex;
  }

  .phone-link {
    display: none !important;
  }

  .main-nav {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    padding: 8px 20px 20px;
    border-bottom: 1px solid var(--ink-200);
    box-shadow: var(--shadow-4);
    z-index: 39;
    gap: 0;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    font-size: 17px;
    padding: 13px 0;
    border-bottom: 1px solid var(--ink-100);
    color: var(--ink-900);
    justify-content: flex-start;
  }

  .main-nav a:last-child {
    border-bottom: none;
  }

  .header-actions .btn-primary {
    font-size: 13px;
    padding: 9px 14px;
  }
}
