:root {
  --bg: #FCF8F8;
  --bg-2: #FBEFEF;
  --bg-3: #F9DFDF;
  --accent: #F5AFAF;
  --accent-deep: #e89a9a;
  --ink: #2A2626;
  --muted: #5D5757;
  --muted-2: #786F6F;
  --panel: #FFFFFF;
  --line: rgba(42, 38, 38, 0.1);
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 20px 50px rgba(42, 26, 26, 0.08);
  --shadow-soft: 0 10px 28px rgba(42, 26, 26, 0.06);
  --ring: 0 0 0 4px rgba(245, 175, 175, 0.32);
  --container: 1140px;
  --gap: 20px;
  --gap-lg: 32px;
  --speed: 240ms;
  --ease: cubic-bezier(0.22, 0.8, 0.22, 1);
  --font-display: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --font-body: "Source Sans 3", system-ui, -apple-system, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(245, 175, 175, 0.18), transparent 60%),
    radial-gradient(900px 500px at 90% 0%, rgba(249, 223, 223, 0.35), transparent 55%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 45%, var(--bg) 100%);
  min-height: 100vh;
}

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

a {
  color: inherit;
}

.container {
  width: min(100% - 36px, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 9999;
  padding: 10px 14px;
  background: var(--panel);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  text-decoration: none;
}

.skip-link:focus {
  left: 18px;
  outline: none;
  box-shadow: var(--shadow-soft), var(--ring);
}

.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: 80;
  backdrop-filter: blur(12px);
  background: rgba(252, 248, 248, 0.82);
  border-bottom: 1px solid var(--line);
}

.topbar {
  background: rgba(251, 239, 239, 0.92);
  border-bottom: 1px solid var(--line);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 0;
  flex-wrap: wrap;
}

.topbar__left,
.topbar__right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 14px;
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease), background var(--speed) var(--ease);
}

.chip:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
  background: rgba(255, 255, 255, 0.92);
}

.chip--accent {
  background: rgba(245, 175, 175, 0.2);
  border-color: rgba(245, 175, 175, 0.35);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo__mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  background: rgba(245, 175, 175, 0.25);
  border: 1px solid rgba(245, 175, 175, 0.4);
}

.logo__text {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.02em;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  text-decoration: none;
  color: var(--muted);
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 15px;
  transition: background var(--speed) var(--ease), color var(--speed) var(--ease), transform var(--speed) var(--ease);
}

.nav-link:hover {
  background: rgba(251, 239, 239, 0.95);
  color: var(--ink);
  transform: translateY(-1px);
}

.nav-link.is-active {
  background: rgba(245, 175, 175, 0.28);
  color: var(--ink);
  border: 1px solid rgba(245, 175, 175, 0.38);
}

.nav-link--cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 175, 175, 0.22);
  border: 1px solid rgba(245, 175, 175, 0.35);
  color: var(--ink);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  padding: 10px 12px;
  cursor: pointer;
}

.nav-toggle__bars {
  width: 22px;
  height: 14px;
  display: block;
  background:
    linear-gradient(var(--ink), var(--ink)) 0 0 / 100% 2px no-repeat,
    linear-gradient(var(--ink), var(--ink)) 0 6px / 100% 2px no-repeat,
    linear-gradient(var(--ink), var(--ink)) 0 12px / 100% 2px no-repeat;
}

.hero {
  padding: 48px 0 28px;
}

.hero--minimal .hero__content {
  max-width: 720px;
  padding: 28px 0 8px;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.hero__title {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.hero__lead {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 1.125rem;
  max-width: 58ch;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease), background var(--speed) var(--ease), border-color var(--speed) var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(245, 175, 175, 0.5);
}

.btn:focus-visible {
  outline: none;
  box-shadow: var(--ring);
}

.btn--primary {
  background: rgba(245, 175, 175, 0.32);
  border-color: rgba(245, 175, 175, 0.5);
}

.btn--soft {
  background: rgba(251, 239, 239, 0.9);
}

.btn--ghost {
  background: transparent;
}

.btn--outline {
  background: transparent;
}

.btn--small {
  padding: 9px 12px;
  font-size: 14px;
}

.section {
  padding: 44px 0;
}

.section--tint {
  background: linear-gradient(180deg, rgba(251, 239, 239, 0.55), transparent);
  border-block: 1px solid var(--line);
}

.section-head {
  margin-bottom: 24px;
  max-width: 760px;
}

.section-head--row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  max-width: none;
}

.h2 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: -0.02em;
}

.h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 1.45rem;
}

.lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.magazine-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--gap-lg);
  align-items: start;
}

.magazine-grid--reverse {
  grid-template-columns: 0.9fr 1.1fr;
}

.editorial-card {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-soft);
}

.editorial-card__kicker {
  margin: 0 0 8px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.editorial-card p {
  margin: 0;
  color: var(--muted);
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.stat-box {
  padding: 16px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.65);
  text-align: center;
  transition: transform var(--speed) var(--ease), border-color var(--speed) var(--ease);
}

.stat-box:hover {
  transform: translateY(-3px);
  border-color: rgba(245, 175, 175, 0.45);
}

.stat-box__num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-box__label {
  font-size: 14px;
  color: var(--muted-2);
}

.season-picker {
  display: grid;
  gap: 16px;
}

.season-picker__controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.season-chip {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  padding: 10px 14px;
  cursor: pointer;
  font-size: 14px;
  color: var(--muted);
  transition: background var(--speed) var(--ease), transform var(--speed) var(--ease), border-color var(--speed) var(--ease), color var(--speed) var(--ease);
}

.season-chip:hover {
  transform: translateY(-1px);
  border-color: rgba(245, 175, 175, 0.45);
}

.season-chip.is-active {
  background: rgba(245, 175, 175, 0.28);
  border-color: rgba(245, 175, 175, 0.5);
  color: var(--ink);
}

.season-panel {
  display: none;
  padding: 18px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  animation: fadeUp 420ms var(--ease);
}

.season-panel.is-active {
  display: block;
}

.season-panel ul {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.route-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gap);
}

.route-tile {
  padding: 18px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow-soft);
  transition: transform var(--speed) var(--ease), opacity var(--speed) var(--ease), border-color var(--speed) var(--ease);
}

.route-tile.is-hidden {
  display: none;
}

.route-tile:not(.is-hidden) {
  animation: fadeUp 380ms var(--ease);
}

.route-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 175, 175, 0.45);
}

.route-tile__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.badge {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(251, 239, 239, 0.85);
  color: var(--muted);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.filter-btn {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  padding: 10px 14px;
  cursor: pointer;
  color: var(--muted);
  transition: background var(--speed) var(--ease), transform var(--speed) var(--ease), border-color var(--speed) var(--ease);
}

.filter-btn:hover,
.filter-btn.is-active {
  background: rgba(245, 175, 175, 0.28);
  border-color: rgba(245, 175, 175, 0.5);
  color: var(--ink);
  transform: translateY(-1px);
}

.planner-widget {
  display: grid;
  gap: 14px;
  padding: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.85), rgba(251, 239, 239, 0.75));
  box-shadow: var(--shadow);
}

.planner-widget label {
  display: grid;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
}

.planner-widget input[type="range"] {
  width: 100%;
  accent-color: var(--accent-deep);
}

.planner-output {
  padding: 14px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.8);
  border: 1px dashed rgba(245, 175, 175, 0.55);
  color: var(--muted);
  min-height: 72px;
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline__item {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 14px;
}

.timeline__dot {
  width: 14px;
  height: 14px;
  border-radius: 5px;
  margin-top: 8px;
  background: rgba(245, 175, 175, 0.55);
  border: 1px solid rgba(245, 175, 175, 0.7);
}

.timeline__item p {
  margin: 0;
  color: var(--muted);
}

.split-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-lg);
  align-items: center;
}

.split-media__frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.split-media__frame img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}

.split-media__frame:hover img {
  transform: scale(1.04);
}

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

.quote-card {
  padding: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
}

.quote-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.quote-card blockquote {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.35;
}

.quote-card figcaption {
  font-size: 14px;
  color: var(--muted-2);
}

.accordion {
  display: grid;
  gap: 12px;
}

.acc-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.68);
  overflow: hidden;
}

.acc-btn {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.acc-btn__label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.acc-icon {
  transition: transform var(--speed) var(--ease);
}

.acc-item[data-open="true"] .acc-icon {
  transform: rotate(180deg);
}

.acc-panel {
  padding: 0 18px 16px;
  color: var(--muted);
}

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

.trust-item {
  padding: 14px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  color: var(--muted);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.trust-item i {
  color: var(--accent-deep);
  font-size: 18px;
  margin-top: 2px;
}

.page-hero {
  padding: 36px 0 12px;
}

.page-hero__panel {
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--gap-lg);
}

.info-stack {
  display: grid;
  gap: 12px;
}

.info-row {
  display: flex;
  gap: 12px;
  padding: 14px;
  border-radius: var(--radius);
  background: rgba(251, 239, 239, 0.75);
  border: 1px solid rgba(245, 175, 175, 0.25);
}

.info-row i {
  color: var(--accent-deep);
  font-size: 20px;
}

.info-row__label {
  margin: 0 0 4px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.info-row__value {
  margin: 0;
  font-weight: 600;
}

.map-block {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-soft);
}

.map-block__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(251, 239, 239, 0.8);
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}

.map-block__frame {
  aspect-ratio: 16 / 9;
}

.map-block__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.map-block__note {
  margin: 0;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--muted-2);
}

.form-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--gap-lg);
  align-items: start;
}

.form-card {
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow-soft);
}

.form-field {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.form-field label {
  font-weight: 600;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.85);
  font: inherit;
  transition: box-shadow var(--speed) var(--ease), border-color var(--speed) var(--ease);
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: rgba(245, 175, 175, 0.6);
  box-shadow: var(--ring);
}

.form-field input[aria-invalid="true"],
.form-field textarea[aria-invalid="true"] {
  border-color: #b45454;
}

.field-error {
  min-height: 18px;
  font-size: 13px;
  color: #8f3a3a;
}

.checkline {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  cursor: pointer;
  color: var(--muted);
  font-size: 14px;
}

.checkline input {
  margin-top: 4px;
  accent-color: var(--accent-deep);
}

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

.tab-btn {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  padding: 10px 14px;
  cursor: pointer;
  color: var(--muted);
  transition: background var(--speed) var(--ease), transform var(--speed) var(--ease);
}

.tab-btn.is-active {
  background: rgba(245, 175, 175, 0.3);
  color: var(--ink);
  transform: translateY(-1px);
}

.tab-panel {
  display: none;
  margin-top: 18px;
  animation: fadeUp 400ms var(--ease);
}

.tab-panel.is-active {
  display: block;
}

.panel-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
}

.case-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.75);
}

.case-track {
  display: flex;
  transition: transform 520ms var(--ease);
}

.case-slide {
  min-width: 100%;
  padding: 24px;
}

.case-slide h3 {
  font-family: var(--font-display);
  margin: 0 0 10px;
}

.case-slide p {
  margin: 0;
  color: var(--muted);
}

.case-nav {
  display: flex;
  justify-content: space-between;
  padding: 12px 16px 16px;
}

.role-matrix {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gap);
}

.role-card {
  padding: 18px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: transform var(--speed) var(--ease), border-color var(--speed) var(--ease), background var(--speed) var(--ease);
}

.role-card:hover,
.role-card.is-selected {
  transform: translateY(-3px);
  border-color: rgba(245, 175, 175, 0.5);
  background: rgba(251, 239, 239, 0.85);
}

.role-detail {
  margin-top: 16px;
  padding: 18px;
  border-radius: var(--radius-lg);
  border: 1px dashed rgba(245, 175, 175, 0.55);
  background: rgba(255, 255, 255, 0.8);
  color: var(--muted);
  min-height: 90px;
}

.pricing-table {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gap);
}

.price-card {
  padding: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.price-card__sum {
  font-family: var(--font-display);
  font-size: 2rem;
  margin: 8px 0;
}

.price-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.legal-doc {
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow-soft);
}

.legal-doc h2 {
  font-family: var(--font-display);
  margin: 28px 0 10px;
  font-size: 1.5rem;
}

.legal-doc h2:first-child {
  margin-top: 0;
}

.legal-doc p,
.legal-doc li {
  color: var(--muted);
}

.legal-doc ul {
  padding-left: 20px;
}

.legal-updated {
  font-size: 14px;
  color: var(--muted-2);
  margin-bottom: 18px;
}

.site-footer {
  padding: 28px 0 42px;
}

.footer-cta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(245, 175, 175, 0.35);
  background: linear-gradient(135deg, rgba(245, 175, 175, 0.22), rgba(255, 255, 255, 0.7));
  box-shadow: var(--shadow);
  margin-bottom: 22px;
}

.footer-cta__title {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 1.8rem;
}

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

.footer-cta__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--gap-lg);
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.footer-brand {
  display: flex;
  gap: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.footer-links a {
  text-decoration: none;
  color: var(--muted);
  padding: 8px 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  transition: transform var(--speed) var(--ease), border-color var(--speed) var(--ease);
}

.footer-links a:hover {
  transform: translateY(-1px);
  border-color: rgba(245, 175, 175, 0.45);
  color: var(--ink);
}

.cookie-banner {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 120;
  padding: 14px 0;
  background: linear-gradient(180deg, transparent, rgba(252, 248, 248, 0.96));
  border-top: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.cookie-banner__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.cookie-banner__text {
  display: flex;
  gap: 12px;
  max-width: 68ch;
  color: var(--muted);
  font-size: 14px;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: none;
}

.cookie-modal.is-open {
  display: block;
}

.cookie-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(30, 24, 24, 0.38);
  backdrop-filter: blur(3px);
}

.cookie-modal__panel {
  position: relative;
  width: min(640px, calc(100% - 28px));
  margin: 48px auto 0;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.cookie-modal__head,
.cookie-modal__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}

.cookie-modal__foot {
  border-bottom: 0;
  border-top: 1px solid var(--line);
  justify-content: flex-end;
}

.cookie-modal__title {
  margin: 0;
  font-family: var(--font-display);
}

.cookie-modal__body {
  padding: 14px 16px;
  display: grid;
  gap: 12px;
}

.cookie-choice {
  padding: 12px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(251, 239, 239, 0.65);
}

.cookie-choice label {
  display: flex;
  gap: 10px;
  font-weight: 600;
}

.cookie-choice p {
  margin: 8px 0 0;
  font-size: 14px;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 620ms var(--ease), transform 620ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 500ms var(--ease), transform 500ms var(--ease);
}

.reveal-stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 80ms; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 140ms; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 200ms; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 260ms; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 320ms; }

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.thankyou-panel {
  text-align: center;
  padding: 36px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.thankyou-panel__icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 14px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: rgba(245, 175, 175, 0.28);
  border: 1px solid rgba(245, 175, 175, 0.45);
  font-size: 28px;
}

.ads-disclaimer {
  padding: 14px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(251, 239, 239, 0.7);
  font-size: 14px;
  color: var(--muted);
  margin-top: 18px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal,
  .reveal-stagger > *,
  .route-tile,
  .season-panel,
  .tab-panel,
  .case-track {
    transition: none !important;
    animation: none !important;
  }
}

@media (max-width: 980px) {
  .magazine-grid,
  .magazine-grid--reverse,
  .split-media,
  .form-grid,
  .page-hero__panel,
  .footer-grid,
  .panel-duo,
  .route-board,
  .quote-grid,
  .pricing-table,
  .role-matrix,
  .trust-bar,
  .stat-strip {
    grid-template-columns: 1fr;
  }

  .footer-cta {
    flex-direction: column;
  }

  .footer-cta__actions {
    width: 100%;
  }

  .section-head--row {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .primary-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    padding: 12px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    background: rgba(252, 248, 248, 0.98);
    box-shadow: var(--shadow);
  }

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

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