:root {
  --ink: #0b0f0d;
  --ink-soft: #151a17;
  --paper: #f1efe6;
  --paper-deep: #e5e1d4;
  --white: #fffdf7;
  --muted: #777b73;
  --line: rgba(11, 15, 13, .14);
  --light-line: rgba(255, 255, 255, .16);
  --orange: #ff5a35;
  --orange-dark: #db3d1c;
  --lime: #d8f56a;
  --blue: #5d8cff;
  --gold: #e8b64a;
  --violet: #aa86ff;
  --shell: min(1280px, calc(100vw - 56px));
  --header-height: 74px;
  --bar-height: 30px;
  --radius: 3px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + var(--bar-height) + 16px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
::selection { color: var(--ink); background: var(--lime); }

.shell { width: var(--shell); margin-inline: auto; }
.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; }
.skip-link { position: fixed; z-index: 999; top: 8px; left: 8px; padding: 10px 14px; color: var(--ink); background: var(--lime); transform: translateY(-150%); transition: transform .2s; }
.skip-link:focus { transform: translateY(0); }

:focus-visible { outline: 3px solid var(--lime); outline-offset: 4px; }

.independent-bar {
  position: fixed;
  z-index: 101;
  inset: 0 0 auto;
  height: var(--bar-height);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding-inline: 20px;
  color: rgba(255, 255, 255, .82);
  background: #080b09;
  border-bottom: 1px solid rgba(255,255,255,.1);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.pulse { width: 6px; height: 6px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 5px rgba(216,245,106,.1); }

.site-header {
  position: fixed;
  z-index: 100;
  top: var(--bar-height);
  left: 0;
  width: 100%;
  height: var(--header-height);
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.16);
  transition: background .35s var(--ease), height .35s var(--ease), box-shadow .35s var(--ease);
}

.site-header.is-scrolled { background: rgba(11,15,13,.94); box-shadow: 0 10px 40px rgba(0,0,0,.22); backdrop-filter: blur(16px); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 13px; }
.brand-mark { display: grid; place-items: center; width: 45px; height: 45px; border: 1px solid currentColor; font-size: 14px; font-weight: 900; letter-spacing: -.06em; }
.brand-mark span { color: var(--orange); padding-inline: 1px; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.05; }
.brand-copy b { font-size: 16px; letter-spacing: -.02em; }
.brand-copy small { margin-top: 5px; opacity: .55; font-size: 8px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }

.main-nav { display: flex; align-items: center; gap: 30px; font-size: 12px; font-weight: 700; letter-spacing: .03em; }
.main-nav a:not(.nav-cta) { opacity: .76; transition: opacity .2s, color .2s; }
.main-nav a:not(.nav-cta):hover { opacity: 1; color: var(--lime); }
.nav-cta { padding: 11px 17px; color: var(--ink); background: var(--lime); border-radius: 1px; }
.nav-cta:hover { background: var(--white); }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 0; background: transparent; border: 1px solid rgba(255,255,255,.3); }
.menu-toggle span:not(.sr-only) { display: block; width: 18px; height: 1px; margin: 5px auto; background: currentColor; transition: transform .2s; }

.hero {
  position: relative;
  min-height: 850px;
  height: 100svh;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 54% center; transform: scale(1.01); }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,8,6,.94) 0%, rgba(5,8,6,.72) 33%, rgba(5,8,6,.17) 67%, rgba(5,8,6,.25) 100%), linear-gradient(0deg, rgba(5,8,6,.72) 0%, transparent 40%, rgba(5,8,6,.35) 100%); }
.hero-layout { position: relative; z-index: 1; height: 100%; display: grid; grid-template-columns: minmax(0, 1fr) 385px; align-items: end; gap: 9vw; padding-top: calc(var(--header-height) + var(--bar-height) + 70px); padding-bottom: 94px; }
.hero-copy { align-self: center; max-width: 760px; padding-top: 52px; }
.eyebrow { margin: 0 0 24px; color: var(--lime); font-size: 10px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow.dark { color: var(--orange-dark); }
.hero h1, .section-heading h2, .myth-copy h2, .planner-intro h2, .faq-section h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -.06em;
  line-height: .84;
}
.hero h1 { font-size: clamp(76px, 8.5vw, 142px); }
.hero h1 em, .section-heading h2 em, .myth-copy h2 em, .planner-intro h2 em, .faq-section h2 em { color: var(--orange); font-weight: 400; }
.hero-lead { max-width: 600px; margin: 34px 0 0; color: rgba(255,255,255,.72); font-size: clamp(17px, 1.6vw, 22px); line-height: 1.5; }
.hero-actions { display: flex; align-items: center; gap: 14px; margin-top: 34px; }

.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; gap: 24px; padding: 0 20px; border: 1px solid transparent; border-radius: 1px; font-size: 11px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; cursor: pointer; transition: color .2s, background .2s, border .2s, transform .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--ink); background: var(--lime); }
.button-primary:hover { background: var(--white); }
.button-ghost { color: var(--white); border-color: rgba(255,255,255,.4); background: rgba(255,255,255,.04); }
.button-ghost:hover { border-color: var(--white); background: rgba(255,255,255,.1); }
.button-dark { color: var(--white); background: var(--ink); }
.button-dark:hover { background: #252b27; }
.button-outline { color: var(--ink); border-color: var(--line); background: transparent; }
.button-outline:hover { border-color: var(--ink); }
.button-outline-light { color: var(--white); border-color: rgba(255,255,255,.35); background: transparent; }
.button-outline-light:hover { border-color: var(--white); }

.glass { border: 1px solid rgba(255,255,255,.2); background: rgba(8,12,9,.55); box-shadow: 0 25px 80px rgba(0,0,0,.22); backdrop-filter: blur(20px); }
.next-opening { margin-bottom: 34px; padding: 25px; }
.status-line { display: flex; align-items: center; gap: 9px; padding-bottom: 16px; color: rgba(255,255,255,.62); border-bottom: 1px solid rgba(255,255,255,.16); font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 6px rgba(216,245,106,.1); }
#next-opening { min-height: 112px; display: flex; align-items: center; gap: 18px; padding-block: 22px 18px; }
.loading-copy { color: rgba(255,255,255,.6); }
.next-date { display: flex; min-width: 72px; flex-direction: column; align-items: center; padding-right: 17px; border-right: 1px solid rgba(255,255,255,.18); line-height: 1; }
.next-date strong { font-family: Georgia, serif; font-size: 52px; font-weight: 400; letter-spacing: -.07em; }
.next-date span { margin-top: 7px; color: var(--orange); font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.next-time { display: flex; flex-direction: column; line-height: 1.25; }
.next-time b { font-size: 21px; }
.next-time span { margin-top: 7px; color: rgba(255,255,255,.58); font-size: 11px; }
.next-time small { margin-top: 8px; color: var(--lime); font-size: 9px; text-transform: uppercase; }
.open-now { margin: 0; font-family: Georgia, serif; font-size: 35px; line-height: 1; }
.open-now span { display: block; margin-bottom: 10px; color: var(--lime); font-family: Inter, sans-serif; font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.next-sub { margin: 0; color: rgba(255,255,255,.62); font-size: 12px; }
.next-state { margin: 0; font-family: Georgia, serif; font-size: 29px; line-height: 1.05; }
.weather-mini { display: flex; align-items: center; gap: 10px; min-height: 42px; margin-bottom: 19px; padding: 9px 12px; color: rgba(255,255,255,.7); background: rgba(255,255,255,.06); font-size: 11px; }
.weather-mini b { color: var(--white); }
.weather-icon { display: grid; width: 24px; height: 24px; place-items: center; color: var(--lime); font-size: 18px; }
.text-link { display: inline-flex; align-items: center; gap: 9px; padding-bottom: 4px; color: var(--ink); border-bottom: 1px solid currentColor; font-size: 10px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.text-link:hover { color: var(--orange-dark); }
.light-link { color: rgba(255,255,255,.78); }
.light-link:hover { color: var(--lime); }
.scroll-cue { position: absolute; z-index: 2; right: 28px; bottom: 34px; display: flex; flex-direction: column; align-items: center; gap: 12px; color: rgba(255,255,255,.48); font-size: 8px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; writing-mode: vertical-rl; }
.scroll-cue i { width: 1px; height: 40px; background: linear-gradient(var(--orange), transparent); }

.fact-strip { color: var(--white); background: var(--orange-dark); }
.fact-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.fact-grid article { display: flex; min-height: 150px; flex-direction: column; justify-content: center; padding: 25px 7%; border-left: 1px solid rgba(255,255,255,.2); }
.fact-grid article:last-child { border-right: 1px solid rgba(255,255,255,.2); }
.fact-grid strong { font-family: Georgia, serif; font-size: clamp(38px, 4vw, 60px); font-weight: 400; letter-spacing: -.05em; line-height: 1; }
.fact-grid span { margin-top: 10px; color: rgba(255,255,255,.65); font-size: 9px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }

.section { padding: 140px 0; }
.section-heading { margin-bottom: 68px; }
.section-heading h2, .planner-intro h2, .faq-section h2 { font-size: clamp(62px, 7vw, 104px); }
.split-heading { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(260px, .55fr); align-items: end; gap: 10%; }
.heading-note { max-width: 380px; margin: 0 0 5px; color: #666b64; font-size: 15px; line-height: 1.65; }
.update-note { margin: 18px 0 0; color: var(--ink); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.update-note span { color: #41a960; }
.light-heading { max-width: 850px; color: var(--white); }
.light-heading > p:last-child { max-width: 600px; margin: 30px 0 0; color: rgba(255,255,255,.58); font-size: 18px; }

.calendar-section { background: var(--paper); }
.calendar-warning { display: grid; grid-template-columns: 36px 1fr; gap: 18px; align-items: start; margin-bottom: 28px; padding: 18px 21px; color: #54330e; background: #f5dfaf; border-left: 3px solid #ba7216; }
.calendar-warning svg { width: 27px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.calendar-warning p { margin: 0; font-size: 13px; }
.calendar-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 25px; margin-bottom: 16px; }
.filter-group { display: flex; flex-wrap: wrap; gap: 7px; }
.filter-button { display: inline-flex; min-height: 38px; align-items: center; gap: 8px; padding: 0 13px; color: #686c66; background: transparent; border: 1px solid var(--line); cursor: pointer; font-size: 9px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; transition: background .2s, color .2s, border .2s; }
.filter-button:hover, .filter-button.is-active { color: var(--white); background: var(--ink); border-color: var(--ink); }
.filter-dot, .event-dot, .calendar-legend i { display: inline-block; width: 7px; height: 7px; border-radius: 50%; }
.dot-all { background: var(--white); box-shadow: -3px 0 var(--orange), 3px 0 var(--blue); }
.dot-tourist, .dot-turistica { background: var(--orange); }
.dot-trackday { background: var(--blue); }
.dot-race, .dot-gara { background: var(--gold); }
.dot-experience, .dot-esperienza { background: var(--violet); }
.month-controls { display: flex; min-width: 235px; align-items: center; justify-content: space-between; border: 1px solid var(--line); }
.month-controls button { width: 42px; height: 42px; background: transparent; border: 0; cursor: pointer; transition: background .2s; }
.month-controls button:hover:not(:disabled) { color: var(--white); background: var(--ink); }
.month-controls button:disabled { opacity: .25; cursor: default; }
.month-controls strong { font-family: Georgia, serif; font-size: 16px; font-weight: 400; }
.calendar-layout { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(330px, .55fr); background: var(--white); border: 1px solid var(--line); }
.calendar-panel { padding: 28px; border-right: 1px solid var(--line); }
.weekdays, .calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); }
.weekdays span { padding: 0 8px 13px; color: #8d908b; font-size: 8px; font-weight: 800; letter-spacing: .12em; text-align: center; text-transform: uppercase; }
.calendar-grid { border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.calendar-day { position: relative; min-height: 83px; padding: 10px; background: transparent; border: 0; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); cursor: pointer; text-align: left; transition: background .18s, color .18s; }
.calendar-day:hover { background: #f2efe5; }
.calendar-day.is-outside { cursor: default; background: rgba(11,15,13,.02); }
.calendar-day.is-today .day-number { display: grid; width: 24px; height: 24px; place-items: center; color: var(--white); background: var(--ink); border-radius: 50%; }
.calendar-day.is-selected { color: var(--white); background: var(--ink); }
.calendar-day.is-selected:hover { background: #202621; }
.day-number { font-family: Georgia, serif; font-size: 16px; }
.day-dots { position: absolute; left: 10px; bottom: 10px; display: flex; gap: 4px; }
.event-dot { flex: 0 0 auto; }
.calendar-legend { display: flex; flex-wrap: wrap; gap: 20px; padding-top: 18px; color: #777b75; font-size: 9px; font-weight: 700; text-transform: uppercase; }
.calendar-legend span { display: flex; align-items: center; gap: 7px; }
.agenda-panel { display: flex; min-height: 575px; flex-direction: column; padding: 28px; }
.agenda-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 15px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.micro-label { margin: 0 0 9px; color: var(--orange-dark); font-size: 8px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.agenda-head h3 { margin: 0; font-family: Georgia, serif; font-size: 24px; font-weight: 400; letter-spacing: -.03em; }
.icon-button { display: grid; width: 37px; height: 37px; flex: 0 0 auto; place-items: center; background: transparent; border: 1px solid var(--line); cursor: pointer; }
.icon-button:hover { color: var(--white); background: var(--ink); }
.icon-button svg { width: 17px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.agenda-list { flex: 1; margin-bottom: 20px; }
.agenda-item { display: grid; width: 100%; grid-template-columns: 49px 1fr 18px; gap: 13px; align-items: center; padding: 16px 0; background: transparent; border: 0; border-bottom: 1px solid var(--line); cursor: pointer; text-align: left; transition: padding .2s, color .2s; }
.agenda-item:hover { color: var(--orange-dark); padding-left: 6px; }
.agenda-date { display: flex; flex-direction: column; align-items: center; padding-right: 12px; border-right: 1px solid var(--line); line-height: 1; }
.agenda-date b { font-family: Georgia, serif; font-size: 26px; font-weight: 400; }
.agenda-date small { margin-top: 4px; color: var(--orange-dark); font-size: 8px; font-weight: 800; text-transform: uppercase; }
.agenda-copy { display: grid; grid-template-columns: 8px 1fr; gap: 5px 8px; min-width: 0; }
.agenda-copy .event-dot { grid-row: 1; align-self: center; }
.agenda-copy b { grid-column: 2; overflow: hidden; font-size: 12px; text-overflow: ellipsis; white-space: nowrap; }
.agenda-copy small { grid-column: 2; color: #7f827d; font-size: 9px; }
.agenda-arrow { font-size: 12px; }
.agenda-empty { display: grid; min-height: 280px; place-items: center; align-content: center; gap: 10px; color: #8b8e89; text-align: center; }
.agenda-empty span { font-size: 35px; }
.agenda-empty p { margin: 0; font-size: 12px; }
.mode-explainer { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 32px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.mode-explainer article { padding: 36px 38px 38px; border-right: 1px solid var(--line); }
.mode-explainer article:last-child { border-right: 0; }
.number-label { margin: 0 0 35px; color: var(--orange-dark); font-size: 8px; font-weight: 900; letter-spacing: .13em; }
.mode-explainer h3 { margin: 0 0 14px; font-family: Georgia, serif; font-size: 28px; font-weight: 400; letter-spacing: -.03em; }
.mode-explainer p:not(.number-label) { margin: 0; color: #686c65; font-size: 13px; }
.price-tag { display: inline-block; margin-top: 22px; padding: 6px 9px; color: #6b381a; background: #f5d9c8; font-size: 8px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.price-tag.neutral { color: #4e5350; background: #dedfd9; }

.first-lap-section { color: var(--white); background: var(--ink); }
.journey { display: grid; grid-template-columns: 280px 1fr; min-height: 560px; border: 1px solid var(--light-line); }
.journey-nav { display: flex; flex-direction: column; border-right: 1px solid var(--light-line); }
.journey-tab { display: grid; flex: 1; grid-template-columns: 36px 1fr; gap: 12px; align-items: center; padding: 20px 22px; color: rgba(255,255,255,.42); background: transparent; border: 0; border-bottom: 1px solid var(--light-line); cursor: pointer; text-align: left; transition: color .2s, background .2s; }
.journey-tab:last-child { border-bottom: 0; }
.journey-tab:hover { color: var(--white); background: rgba(255,255,255,.04); }
.journey-tab.is-active { color: var(--ink); background: var(--lime); }
.journey-tab b { font-family: Georgia, serif; font-size: 20px; font-weight: 400; }
.journey-tab span { font-size: 11px; font-weight: 800; letter-spacing: .03em; }
.journey-content { position: relative; overflow: hidden; }
.journey-panel { min-height: 100%; grid-template-columns: 145px minmax(0, 650px); gap: 50px; align-items: center; padding: 70px 9%; }
.journey-panel.is-active { display: grid; animation: panelIn .45s var(--ease); }
@keyframes panelIn { from { opacity: 0; transform: translateX(18px); } to { opacity: 1; transform: none; } }
.panel-index { color: rgba(255,255,255,.08); font-family: Georgia, serif; font-size: 135px; line-height: 1; letter-spacing: -.08em; }
.journey-panel h3 { margin: 0 0 22px; max-width: 630px; font-family: Georgia, serif; font-size: clamp(43px, 5vw, 70px); font-weight: 400; letter-spacing: -.05em; line-height: .98; }
.journey-panel p:not(.micro-label) { max-width: 620px; margin: 0; color: rgba(255,255,255,.6); font-size: 16px; }
.check-list { display: grid; gap: 12px; margin: 30px 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 23px; color: rgba(255,255,255,.82); font-size: 12px; }
.check-list li::before { position: absolute; left: 0; content: "↳"; color: var(--lime); }
.critical-rule { display: grid; grid-template-columns: 66px 1fr auto; gap: 28px; align-items: center; margin-top: 30px; padding: 28px; color: var(--white); background: var(--orange-dark); }
.critical-icon { display: grid; width: 60px; height: 60px; place-items: center; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; font-family: Georgia, serif; font-size: 35px; }
.critical-rule .micro-label { color: rgba(255,255,255,.6); }
.critical-rule h3 { margin: 0 0 5px; font-family: Georgia, serif; font-size: 25px; font-weight: 400; }
.critical-rule p:last-child { margin: 0; color: rgba(255,255,255,.68); font-size: 12px; }

.rules-section { background: var(--paper-deep); }
.rules-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.rule-card { position: relative; min-height: 310px; padding: 35px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.rule-card > span { position: absolute; top: 20px; right: 22px; color: #9d9e97; font-size: 8px; font-weight: 800; }
.rule-card svg { width: 48px; height: 48px; margin-bottom: 53px; fill: none; stroke: var(--orange-dark); stroke-width: 1.35; stroke-linecap: round; stroke-linejoin: round; }
.rule-card h3 { margin: 0 0 12px; font-family: Georgia, serif; font-size: 29px; font-weight: 400; letter-spacing: -.03em; }
.rule-card p { margin: 0; color: #666a64; font-size: 13px; }
.emergency-bar { display: grid; grid-template-columns: 1fr auto auto; gap: 30px; align-items: center; margin-top: 30px; padding: 30px 34px; color: var(--white); background: var(--orange-dark); }
.emergency-bar h3 { margin: 0; font-family: Georgia, serif; font-size: 25px; font-weight: 400; }
.emergency-bar .micro-label { color: rgba(255,255,255,.62); }
.emergency-number { font-family: Georgia, serif; font-size: clamp(28px, 4vw, 48px); letter-spacing: -.04em; white-space: nowrap; }
.emergency-number:hover { color: var(--lime); }
.emergency-bar > p { grid-column: 1 / -1; margin: -10px 0 0; padding-top: 18px; color: rgba(255,255,255,.62); border-top: 1px solid rgba(255,255,255,.2); font-size: 10px; }
.emergency-bar > p a { color: var(--white); text-decoration: underline; }

.myth-section { position: relative; min-height: 980px; display: flex; flex-direction: column; justify-content: center; overflow: hidden; color: var(--white); background: var(--ink); }
.myth-image-wrap { position: absolute; inset: 0; }
.myth-image-wrap::after { position: absolute; inset: 0; content: ""; background: linear-gradient(90deg, rgba(8,11,9,.98) 0%, rgba(8,11,9,.86) 47%, rgba(8,11,9,.35) 100%), linear-gradient(0deg, rgba(8,11,9,.9), transparent 50%, rgba(8,11,9,.35)); }
.myth-image-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(.75) contrast(1.05); }
.myth-layout { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(330px, .65fr); gap: 10%; align-items: center; }
.myth-copy h2 { max-width: 780px; font-size: clamp(61px, 7vw, 108px); }
.large-copy { max-width: 680px; margin: 35px 0 20px; color: rgba(255,255,255,.82); font-size: 19px; line-height: 1.58; }
.myth-copy > p:not(.eyebrow):not(.large-copy) { max-width: 650px; color: rgba(255,255,255,.52); font-size: 14px; }
.myth-copy .text-link { margin-top: 17px; }
.myth-reasons { border-top: 1px solid var(--light-line); }
.myth-reasons article { display: grid; grid-template-columns: 34px 1fr; gap: 16px; padding: 25px 0; border-bottom: 1px solid var(--light-line); }
.myth-reasons article > b { color: var(--orange); font-family: Georgia, serif; font-size: 18px; font-weight: 400; }
.myth-reasons h3 { margin: 0 0 6px; font-family: Georgia, serif; font-size: 25px; font-weight: 400; }
.myth-reasons p { margin: 0; color: rgba(255,255,255,.52); font-size: 12px; }
.sector-ribbon { position: absolute; z-index: 2; right: 0; bottom: 0; left: 0; overflow: hidden; color: var(--ink); background: var(--lime); white-space: nowrap; }
.sector-track { width: max-content; padding: 16px 0; font-family: Georgia, serif; font-size: 18px; animation: ribbon 35s linear infinite; }
.sector-track span { margin-inline: 24px; }
.sector-track i { color: var(--orange-dark); }
@keyframes ribbon { to { transform: translateX(-45%); } }

.sectors-section { background: var(--paper); }
.sector-list { border-top: 1px solid var(--line); }
.sector-item { display: grid; grid-template-columns: 75px 1fr 100px; gap: 28px; align-items: center; padding: 29px 13px; border-bottom: 1px solid var(--line); transition: color .2s, background .2s, padding .2s; }
.sector-item:hover { padding-inline: 25px; color: var(--white); background: var(--ink); }
.sector-item > span { color: var(--orange-dark); font-family: Georgia, serif; font-size: 19px; }
.sector-item h3 { margin: 0 0 4px; font-family: Georgia, serif; font-size: 29px; font-weight: 400; letter-spacing: -.03em; }
.sector-item p { margin: 0; color: #73766f; font-size: 12px; }
.sector-item:hover p { color: rgba(255,255,255,.6); }
.sector-item small { color: #8d908a; font-size: 8px; font-weight: 900; letter-spacing: .14em; text-align: right; }

.travel-section { color: var(--white); background: #111612; }
.travel-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--light-line); border-left: 1px solid var(--light-line); }
.travel-card { min-height: 410px; padding: 38px; border-right: 1px solid var(--light-line); border-bottom: 1px solid var(--light-line); }
.travel-card-head { display: flex; align-items: baseline; gap: 18px; margin-bottom: 28px; }
.travel-card-head span { color: var(--orange); font-family: Georgia, serif; font-size: 18px; }
.travel-card h3 { margin: 0; font-family: Georgia, serif; font-size: 31px; font-weight: 400; letter-spacing: -.03em; }
.travel-card > p { color: rgba(255,255,255,.55); font-size: 13px; }
.route-buttons { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 30px; }
.route-buttons a { display: flex; min-width: 102px; align-items: center; justify-content: space-between; padding: 11px 13px; color: rgba(255,255,255,.78); border: 1px solid var(--light-line); font-size: 10px; font-weight: 800; }
.route-buttons a:hover { color: var(--ink); background: var(--lime); border-color: var(--lime); }
.address-list { margin: 0; }
.address-list > div { position: relative; display: grid; grid-template-columns: 1fr 1fr 30px; gap: 15px; padding: 18px 0; border-bottom: 1px solid var(--light-line); }
.address-list dt { color: rgba(255,255,255,.48); font-size: 9px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.address-list dd { margin: 0; font-size: 12px; }
.address-list a { display: grid; width: 28px; height: 28px; place-items: center; border: 1px solid var(--light-line); }
.address-list a:hover { color: var(--ink); background: var(--lime); }
.small-note { margin-top: 21px; color: rgba(255,255,255,.42) !important; font-size: 10px !important; }
.plain-list { margin: 27px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--light-line); }
.plain-list li { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 13px 0; border-bottom: 1px solid var(--light-line); font-size: 11px; }
.plain-list b { font-family: Georgia, serif; font-size: 17px; font-weight: 400; }
.plain-list span { color: rgba(255,255,255,.43); text-align: right; }
.spot-list { margin-top: 25px; border-top: 1px solid var(--light-line); }
.spot-list a { display: grid; grid-template-columns: 130px 1fr 20px; gap: 12px; align-items: center; padding: 15px 0; border-bottom: 1px solid var(--light-line); font-size: 11px; }
.spot-list a:hover { color: var(--lime); }
.spot-list b { font-family: Georgia, serif; font-size: 17px; font-weight: 400; }
.spot-list span { color: rgba(255,255,255,.43); }
.spot-list i { font-style: normal; }
.packing-list { display: grid; grid-template-columns: .7fr 1.3fr; gap: 8%; align-items: center; margin-top: 30px; padding: 42px; color: var(--ink); background: var(--lime); }
.packing-list h3 { margin: 0; font-family: Georgia, serif; font-size: 40px; font-weight: 400; letter-spacing: -.04em; line-height: 1; }
.packing-list p:last-child { margin: 16px 0 0; font-size: 11px; }
.packing-list ul { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 30px; margin: 0; padding: 0; list-style: none; }
.packing-list li { padding: 12px 0; border-bottom: 1px solid rgba(11,15,13,.2); font-size: 11px; font-weight: 800; }
.packing-list li span { margin-right: 10px; color: var(--orange-dark); }

.planner-section { background: var(--paper); }
.planner-layout { display: grid; grid-template-columns: .65fr 1.35fr; gap: 9%; align-items: start; }
.planner-intro { position: sticky; top: 130px; }
.planner-intro > p:not(.eyebrow) { max-width: 410px; color: #686c65; }
.cost-facts { display: flex; gap: 20px; margin-top: 30px; padding-top: 22px; border-top: 1px solid var(--line); }
.cost-facts span { display: flex; flex-direction: column; color: #6d716a; font-size: 9px; text-transform: uppercase; }
.cost-facts b { color: var(--ink); font-family: Georgia, serif; font-size: 30px; font-weight: 400; }
.cost-calculator { padding: 38px; background: var(--white); border: 1px solid var(--line); }
.form-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px 18px; }
.form-grid label { display: flex; flex-direction: column; }
.form-grid label > span, .cost-calculator legend { margin-bottom: 8px; font-size: 8px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.form-grid input { width: 100%; height: 49px; padding: 0 12px; color: var(--ink); background: var(--paper); border: 1px solid transparent; border-bottom-color: #babbb5; border-radius: 0; font-family: Georgia, serif; font-size: 23px; }
.form-grid input:focus { border-color: var(--orange-dark); outline: 0; }
.form-grid small { margin-top: 5px; color: #989b95; font-size: 8px; }
.cost-calculator fieldset { margin: 30px 0 0; padding: 0; border: 0; }
.range-row { display: grid; grid-template-columns: 1fr 90px; gap: 20px; align-items: center; }
input[type="range"] { width: 100%; accent-color: var(--orange-dark); }
.range-row output { padding: 9px; color: var(--white); background: var(--ink); font-family: Georgia, serif; font-size: 16px; text-align: center; }
.day-choice { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.day-choice legend { grid-column: 1 / -1; }
.day-choice label { cursor: pointer; }
.day-choice input { position: absolute; opacity: 0; }
.day-choice span { display: flex; align-items: center; justify-content: space-between; padding: 14px; color: #666a64; border: 1px solid var(--line); font-size: 10px; }
.day-choice input:checked + span { color: var(--white); background: var(--ink); border-color: var(--ink); }
.day-choice input:focus-visible + span { outline: 3px solid var(--orange); outline-offset: 3px; }
.estimate-box { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 34px; color: var(--white); background: var(--ink); }
.estimate-box > div { display: flex; flex-direction: column; padding: 18px; border-right: 1px solid var(--light-line); border-bottom: 1px solid var(--light-line); }
.estimate-box span { color: rgba(255,255,255,.48); font-size: 8px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.estimate-box b { margin-top: 6px; font-family: Georgia, serif; font-size: 24px; font-weight: 400; }
.estimate-total { grid-column: 1 / -1; display: grid !important; grid-template-columns: 1fr auto; align-items: center; color: var(--ink); background: var(--lime); border: 0 !important; }
.estimate-total span { color: rgba(11,15,13,.55); }
.estimate-total b { font-size: 42px; }
.estimate-box > p { grid-column: 1 / -1; margin: 0; padding: 11px 18px; color: rgba(255,255,255,.55); font-size: 9px; text-align: right; }

.faq-section { background: var(--paper-deep); }
.faq-layout { display: grid; grid-template-columns: .55fr 1fr; gap: 10%; align-items: start; }
.faq-section .section-heading { position: sticky; top: 130px; margin-bottom: 0; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 25px 0; cursor: pointer; font-family: Georgia, serif; font-size: 22px; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { display: grid; width: 30px; height: 30px; flex: 0 0 auto; place-items: center; border: 1px solid var(--line); font-family: Inter, sans-serif; font-size: 16px; transition: transform .2s, color .2s, background .2s; }
.faq-list details[open] summary span { color: var(--white); background: var(--orange-dark); border-color: var(--orange-dark); transform: rotate(45deg); }
.faq-list details p { max-width: 680px; margin: -6px 0 26px; color: #686c65; font-size: 14px; }

.sources-section { padding: 80px 0; color: var(--white); background: var(--orange-dark); }
.sources-layout { display: grid; grid-template-columns: .65fr 1.35fr; gap: 9%; }
.sources-layout h2 { margin: 0; font-family: Georgia, serif; font-size: 48px; font-weight: 400; letter-spacing: -.04em; }
.sources-layout > div > p:last-child { color: rgba(255,255,255,.66); font-size: 12px; }
.sources-layout .micro-label { color: var(--lime); }
.sources-layout ul { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.25); }
.sources-layout li { border-bottom: 1px solid rgba(255,255,255,.25); }
.sources-layout a { display: grid; grid-template-columns: 34px 1fr auto; gap: 15px; align-items: center; padding: 15px 0; transition: padding .2s, color .2s; }
.sources-layout a:hover { padding-left: 10px; color: var(--lime); }
.sources-layout a > span { color: rgba(255,255,255,.5); font-family: Georgia, serif; }
.sources-layout a { font-family: Georgia, serif; font-size: 18px; }
.sources-layout small { font-family: Inter, sans-serif; font-size: 8px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }

.site-footer { color: var(--white); background: #080b09; }
.footer-top { display: grid; grid-template-columns: 1fr 1.2fr; gap: 8%; padding: 85px 0 70px; }
.footer-brand { display: flex; align-items: flex-start; gap: 24px; }
.footer-brand h2 { margin: 0; font-family: Georgia, serif; font-size: clamp(40px, 4vw, 60px); font-weight: 400; letter-spacing: -.05em; line-height: .95; }
.footer-brand p { color: rgba(255,255,255,.42); font-size: 11px; }
.footer-top nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.footer-top nav > div { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.footer-top nav b { margin-bottom: 9px; color: var(--lime); font-size: 8px; letter-spacing: .15em; text-transform: uppercase; }
.footer-top nav a { color: rgba(255,255,255,.58); font-size: 11px; }
.footer-top nav a:hover { color: var(--white); }
.footer-bottom { display: flex; align-items: flex-end; justify-content: space-between; gap: 50px; padding: 24px 0 30px; color: rgba(255,255,255,.35); border-top: 1px solid var(--light-line); font-size: 8px; }
.footer-bottom p:first-child { max-width: 810px; }
.footer-bottom p:last-child { white-space: nowrap; }
.footer-bottom a { text-decoration: underline; }

.event-dialog { width: min(590px, calc(100vw - 34px)); padding: 42px; color: var(--ink); background: var(--white); border: 0; box-shadow: 0 35px 100px rgba(0,0,0,.45); }
.event-dialog::backdrop { background: rgba(5,8,6,.78); backdrop-filter: blur(7px); }
.dialog-close { position: absolute; top: 14px; right: 14px; display: grid; width: 34px; height: 34px; place-items: center; background: transparent; border: 1px solid var(--line); cursor: pointer; font-size: 21px; }
.event-type-label { margin: 0 0 15px; color: var(--orange-dark); font-size: 8px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.event-dialog h2 { margin: 0; padding-right: 20px; font-family: Georgia, serif; font-size: 42px; font-weight: 400; letter-spacing: -.04em; line-height: 1; }
.dialog-date { margin-top: 18px; padding: 12px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); font-size: 10px; font-weight: 800; text-transform: uppercase; }
.event-dialog > p:not(.event-type-label) { margin: 22px 0; color: #666a64; font-size: 14px; }
.dialog-actions { display: flex; flex-wrap: wrap; gap: 9px; }

.toast { position: fixed; z-index: 500; right: 24px; bottom: 24px; padding: 13px 18px; color: var(--ink); background: var(--lime); box-shadow: 0 15px 45px rgba(0,0,0,.25); font-size: 10px; font-weight: 800; text-transform: uppercase; transform: translateY(30px); opacity: 0; pointer-events: none; transition: transform .25s, opacity .25s; }
.toast.is-visible { transform: none; opacity: 1; }
.noscript { position: fixed; z-index: 900; right: 15px; bottom: 15px; left: 15px; padding: 14px; color: var(--ink); background: var(--lime); font-size: 12px; text-align: center; }

.reveal { opacity: 0; transform: translateY(25px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1080px) {
  :root { --shell: min(1280px, calc(100vw - 40px)); }
  .main-nav { gap: 18px; }
  .hero-layout { grid-template-columns: 1fr 330px; gap: 35px; }
  .hero h1 { font-size: clamp(69px, 9.5vw, 105px); }
  .calendar-layout { grid-template-columns: 1fr 330px; }
  .calendar-day { min-height: 68px; }
  .mode-explainer article { padding-inline: 24px; }
  .journey { grid-template-columns: 230px 1fr; }
  .journey-panel { grid-template-columns: 100px 1fr; gap: 28px; padding-inline: 6%; }
  .panel-index { font-size: 100px; }
  .critical-rule { grid-template-columns: 60px 1fr; }
  .critical-rule .button { grid-column: 2; justify-self: start; }
  .myth-layout { gap: 6%; }
  .planner-layout { gap: 5%; }
  .form-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  :root { --shell: min(100% - 32px, 720px); --header-height: 65px; }
  .independent-bar { justify-content: flex-start; overflow: hidden; font-size: 8px; white-space: nowrap; }
  .site-header { background: rgba(11,15,13,.92); backdrop-filter: blur(12px); }
  .brand-copy { display: none; }
  .menu-toggle { display: block; }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(2) { transform: translateY(3px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(3) { transform: translateY(-3px) rotate(-45deg); }
  .main-nav { position: fixed; top: calc(var(--bar-height) + var(--header-height)); right: 0; bottom: 0; left: 0; display: flex; flex-direction: column; align-items: stretch; gap: 0; padding: 38px var(--shell); color: var(--white); background: rgba(8,11,9,.98); transform: translateX(100%); transition: transform .3s var(--ease); }
  .main-nav.is-open { transform: none; }
  .main-nav a, .nav-cta { padding: 18px 0 !important; color: var(--white) !important; background: transparent !important; border-bottom: 1px solid var(--light-line); font-family: Georgia, serif; font-size: 27px; font-weight: 400; }
  .hero { min-height: 810px; height: auto; }
  .hero-image { object-position: 65% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(5,8,6,.93), rgba(5,8,6,.45)), linear-gradient(0deg, rgba(5,8,6,.88), transparent 55%); }
  .hero-layout { min-height: 810px; grid-template-columns: 1fr; align-content: center; gap: 32px; padding-top: 160px; padding-bottom: 60px; }
  .hero-copy { align-self: auto; padding-top: 0; }
  .hero h1 { font-size: clamp(63px, 16vw, 98px); }
  .hero-lead { max-width: 510px; font-size: 16px; }
  .next-opening { width: min(100%, 390px); margin: 0; }
  .scroll-cue { display: none; }
  .fact-grid { grid-template-columns: repeat(2, 1fr); }
  .fact-grid article { min-height: 125px; border-bottom: 1px solid rgba(255,255,255,.2); }
  .section { padding: 95px 0; }
  .section-heading { margin-bottom: 48px; }
  .section-heading h2, .planner-intro h2, .faq-section h2 { font-size: clamp(56px, 13vw, 88px); }
  .split-heading { grid-template-columns: 1fr; gap: 28px; }
  .calendar-toolbar { align-items: stretch; flex-direction: column-reverse; }
  .month-controls { width: 100%; }
  .calendar-layout { grid-template-columns: 1fr; }
  .calendar-panel { border-right: 0; border-bottom: 1px solid var(--line); }
  .agenda-panel { min-height: 480px; }
  .mode-explainer { grid-template-columns: 1fr; }
  .mode-explainer article { border-right: 0; border-bottom: 1px solid var(--line); }
  .journey { grid-template-columns: 1fr; }
  .journey-nav { flex-direction: row; overflow-x: auto; border-right: 0; border-bottom: 1px solid var(--light-line); }
  .journey-tab { min-width: 150px; min-height: 80px; border-right: 1px solid var(--light-line); border-bottom: 0; }
  .journey-panel { grid-template-columns: 70px 1fr; padding-block: 55px; }
  .panel-index { font-size: 70px; }
  .rules-grid { grid-template-columns: repeat(2, 1fr); }
  .emergency-bar { grid-template-columns: 1fr auto; }
  .emergency-number { grid-column: 1 / -1; }
  .myth-section { min-height: auto; padding-bottom: 110px; }
  .myth-layout { grid-template-columns: 1fr; gap: 55px; }
  .myth-reasons { max-width: 620px; }
  .travel-grid { grid-template-columns: 1fr; }
  .travel-card { min-height: 0; }
  .packing-list { grid-template-columns: 1fr; }
  .planner-layout { grid-template-columns: 1fr; gap: 50px; }
  .planner-intro, .faq-section .section-heading { position: static; }
  .faq-layout { grid-template-columns: 1fr; gap: 50px; }
  .sources-layout { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr; gap: 55px; }
}

@media (max-width: 540px) {
  :root { --shell: calc(100vw - 24px); }
  .independent-bar { padding-inline: 12px; }
  .hero-layout { padding-top: 145px; }
  .hero h1 { font-size: clamp(58px, 18vw, 83px); }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .next-opening { padding: 20px; }
  .fact-grid article { padding-inline: 18px; }
  .section { padding: 75px 0; }
  .section-heading h2, .planner-intro h2, .faq-section h2, .myth-copy h2 { font-size: clamp(51px, 15.5vw, 72px); }
  .calendar-warning { grid-template-columns: 1fr; }
  .filter-group { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 4px; }
  .filter-button { flex: 0 0 auto; }
  .calendar-panel { padding: 12px; }
  .calendar-day { min-height: 51px; padding: 6px; }
  .day-number { font-size: 13px; }
  .day-dots { left: 6px; bottom: 6px; gap: 2px; }
  .event-dot, .day-dots i { width: 5px; height: 5px; }
  .calendar-legend { gap: 10px; }
  .agenda-panel { padding: 20px; }
  .mode-explainer article { padding: 28px 20px; }
  .journey-panel { grid-template-columns: 1fr; padding: 42px 25px; }
  .panel-index { display: none; }
  .journey-panel h3 { font-size: 43px; }
  .critical-rule { grid-template-columns: 1fr; }
  .critical-rule .button { grid-column: auto; }
  .rules-grid { grid-template-columns: 1fr; }
  .rule-card { min-height: 270px; }
  .emergency-bar { grid-template-columns: 1fr; padding: 25px; }
  .emergency-number { grid-column: auto; font-size: 30px; }
  .emergency-bar .button { justify-self: start; }
  .sector-item { grid-template-columns: 35px 1fr; gap: 15px; }
  .sector-item small { display: none; }
  .sector-item h3 { font-size: 24px; }
  .travel-card { padding: 28px 22px; }
  .address-list > div { grid-template-columns: 1fr 30px; }
  .address-list dd { grid-row: 2; }
  .address-list a { grid-column: 2; grid-row: 1 / 3; }
  .spot-list a { grid-template-columns: 105px 1fr 16px; }
  .packing-list { padding: 28px 22px; }
  .packing-list ul { grid-template-columns: 1fr; }
  .cost-calculator { padding: 25px 19px; }
  .form-grid { grid-template-columns: 1fr; }
  .day-choice { grid-template-columns: 1fr; }
  .estimate-box { grid-template-columns: 1fr; }
  .estimate-box > div { border-right: 0; }
  .estimate-total { grid-column: 1; }
  .estimate-box > p { grid-column: 1; }
  .faq-list summary { font-size: 18px; }
  .sources-layout a { grid-template-columns: 28px 1fr; }
  .sources-layout small { grid-column: 2; }
  .footer-brand { flex-direction: column; }
  .footer-top nav { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 15px; }
  .event-dialog { padding: 34px 24px 25px; }
  .event-dialog h2 { font-size: 35px; }
  .dialog-actions { align-items: stretch; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .independent-bar, .site-header, .hero-actions, .scroll-cue, .calendar-toolbar, .icon-button, .button, .toast, dialog { display: none !important; }
  .hero { min-height: auto; height: auto; padding: 60px 0; }
  .hero-image, .hero-shade { display: none; }
  .hero-layout { display: block; height: auto; padding: 0; }
  .hero-copy, .next-opening { color: #000; }
  .next-opening { margin-top: 30px; background: #fff; }
  .section { padding: 45px 0; break-inside: avoid; }
  body { color: #000; background: #fff; }
}
