:root {
  --wine: #7f2435;
  --wine-dark: #561726;
  --wine-soft: #a94c5d;
  --ink: #20232a;
  --ink-soft: #5d616a;
  --ivory: #f7f1e6;
  --paper: #fffdf8;
  --sand: #e8dcc8;
  --gold: #d3a34b;
  --sky: #dce9ea;
  --blue: #355d68;
  --line: rgba(32, 35, 42, .14);
  --white-line: rgba(255, 255, 255, .2);
  --shadow: 0 26px 70px rgba(49, 31, 26, .12);
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --shell: min(1240px, calc(100% - 64px));
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Microsoft YaHei UI", "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.72;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
select,
input {
  font: inherit;
}

button,
select,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 200;
  padding: 10px 16px;
  background: white;
  color: var(--ink);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform .2s ease;
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: 76px;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  color: white;
  background: linear-gradient(to bottom, rgba(26, 17, 17, .48), rgba(26, 17, 17, 0));
  transition: background .25s ease, height .25s ease, box-shadow .25s ease, color .25s ease;
}

.site-header.scrolled {
  height: 68px;
  color: var(--ink);
  background: rgba(255, 253, 248, .94);
  box-shadow: 0 1px 0 var(--line), 0 10px 40px rgba(32, 35, 42, .08);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  line-height: 1.12;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 17px;
  font-weight: 800;
}

.brand b {
  display: block;
  font-size: 14px;
  letter-spacing: .04em;
}

.brand small {
  display: block;
  margin-top: 5px;
  font-size: 11px;
  opacity: .72;
  letter-spacing: .08em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 36px);
  font-size: 14px;
  font-weight: 700;
}

.desktop-nav a {
  position: relative;
  opacity: .84;
  transition: opacity .2s ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: currentColor;
  transition: right .2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  opacity: 1;
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  right: 0;
}

.header-actions {
  display: flex;
  gap: 8px;
}

.icon-button {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 50%;
  color: inherit;
  background: rgba(255, 255, 255, .08);
  cursor: pointer;
}

.scrolled .icon-button {
  border-color: var(--line);
  background: transparent;
}

.icon-button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero {
  position: relative;
  min-height: 820px;
  height: min(920px, 100svh);
  overflow: hidden;
  color: white;
  background: #9b6b4a;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  transform: scale(1.01);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(63, 20, 29, .93) 0%, rgba(92, 31, 36, .72) 30%, rgba(92, 31, 36, .18) 64%, rgba(34, 24, 23, .08) 100%),
    linear-gradient(0deg, rgba(35, 20, 20, .4), transparent 40%);
}

.hero-content {
  position: relative;
  z-index: 1;
  height: 100%;
  padding-top: clamp(150px, 20vh, 210px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.eyebrow {
  margin: 0 0 15px;
  color: var(--wine);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  line-height: 1.3;
}

.eyebrow.light {
  color: #ffe2ad;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(54px, 7vw, 94px);
  line-height: 1.09;
  letter-spacing: -.055em;
  font-weight: 800;
  text-wrap: balance;
}

.hero-lead {
  max-width: 600px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, .86);
  font-size: clamp(18px, 1.5vw, 21px);
  line-height: 1.75;
}

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

.button {
  min-height: 52px;
  padding: 13px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

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

.button.primary {
  background: white;
  color: var(--wine-dark);
}

.button.ghost {
  color: white;
  border-color: rgba(255, 255, 255, .45);
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(8px);
}

.button.dark {
  color: white;
  background: var(--ink);
}

.hero-meta {
  margin-top: auto;
  width: 100%;
  padding: 24px 0 34px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, .32);
}

.hero-meta div {
  padding-left: 22px;
  border-left: 1px solid rgba(255, 255, 255, .25);
}

.hero-meta div:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-meta span,
.hero-meta strong {
  display: block;
}

.hero-meta span {
  margin-bottom: 6px;
  color: rgba(255, 255, 255, .62);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
}

.hero-meta strong {
  font-size: 17px;
}

.mobile-jump {
  display: none;
}

.section {
  padding: 118px 0;
}

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

.section-wine {
  color: white;
  background:
    radial-gradient(circle at 85% 10%, rgba(235, 180, 93, .18), transparent 26%),
    var(--wine-dark);
}

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

.section-heading {
  max-width: 790px;
  margin-bottom: 55px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1.13;
  letter-spacing: -.045em;
}

.section-heading > p:not(.eyebrow) {
  margin: 22px 0 0;
  color: var(--ink-soft);
  line-height: 1.8;
}

.split-heading {
  max-width: none;
  display: grid;
  grid-template-columns: 1fr minmax(340px, 520px);
  align-items: end;
  gap: 70px;
}

.split-heading > p {
  margin: 0 !important;
}

.light-heading > p {
  color: rgba(255, 255, 255, .88) !important;
}

.section-wine .eyebrow,
.transfer-panel .eyebrow,
.sources .eyebrow {
  color: #ffe2ad;
}

.verdict-grid {
  display: grid;
  grid-template-columns: 1.15fr .92fr .92fr;
  gap: 18px;
}

.verdict-card {
  position: relative;
  min-height: 450px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 248, .65);
}

.verdict-card.featured {
  color: white;
  background: var(--wine);
  border-color: transparent;
  box-shadow: var(--shadow);
}

.verdict-card.alert-card {
  background: #e4d19d;
}

.card-index {
  position: absolute;
  top: 25px;
  right: 28px;
  color: currentColor;
  opacity: .6;
  font-size: 38px;
  font-weight: 800;
  line-height: 1;
}

.kicker {
  margin: 0 0 18px;
  color: var(--wine);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.4;
}

.featured .kicker {
  color: #ffdba1;
}

.verdict-card h3 {
  margin: 0 0 22px;
  font-size: clamp(27px, 2.3vw, 35px);
  line-height: 1.24;
  letter-spacing: -.035em;
}

.verdict-card > p:not(.kicker) {
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.75;
}

.verdict-card.alert-card > p:not(.kicker) {
  color: #454952;
}

.featured > p:not(.kicker) {
  color: rgba(255, 255, 255, .78);
}

.mini-stats {
  margin-top: auto;
  padding-top: 30px;
  display: flex;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, .2);
}

.verdict-card:not(.featured) .mini-stats {
  border-top-color: var(--line);
}

.mini-stats span {
  display: block;
  font-size: 12px;
  line-height: 1.5;
}

.mini-stats b {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
}

.text-link {
  width: fit-content;
  margin-top: 24px;
  padding-bottom: 4px;
  display: inline-flex;
  gap: 12px;
  align-items: center;
  border-bottom: 1px solid currentColor;
  font-size: 14px;
  font-weight: 800;
}

.text-link span {
  transition: transform .2s ease;
}

.text-link:hover span {
  transform: translate(3px, 3px);
}

.fact-strip {
  margin-top: 44px;
  padding: 24px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.fact-strip > div {
  padding: 0 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border-left: 1px solid var(--line);
}

.fact-strip > div:first-child {
  padding-left: 0;
  border-left: 0;
}

.fact-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: grid;
  place-items: center;
  color: var(--wine);
  border: 1px solid rgba(127, 36, 53, .26);
  border-radius: 50%;
  font-size: 16px;
  font-weight: 800;
}

.fact-strip p {
  margin: 0;
  line-height: 1.45;
}

.fact-strip small,
.fact-strip strong,
.fact-strip p > span {
  display: block;
}

.fact-strip small {
  margin-bottom: 7px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
}

.fact-strip strong {
  font-size: 14px;
}

.fact-strip p > span {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 12px;
}

.route-board {
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: var(--shadow);
}

.route-date {
  margin: 2px 0 20px;
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.route-date span {
  color: var(--wine);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -.03em;
}

.route-date small {
  color: var(--ink-soft);
  font-size: 12px;
}

.flight-leg {
  padding: 30px;
  display: grid;
  grid-template-columns: 140px 1fr 1.25fr 1fr;
  align-items: center;
  gap: 24px;
  border-radius: 22px;
  background: var(--ivory);
}

.flight-leg.international {
  background: #efe6d7;
}

.flight-number span,
.flight-number strong {
  display: block;
}

.flight-number span {
  margin-bottom: 4px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
}

.flight-number strong {
  font-size: 26px;
  letter-spacing: -.03em;
}

.airport-time time,
.airport-time b,
.airport-time small {
  display: block;
}

.airport-time time {
  margin-bottom: 4px;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.1;
}

.airport-time time sup {
  margin-left: 4px;
  color: var(--wine);
  font-size: 11px;
}

.airport-time b {
  font-size: 14px;
}

.airport-time small {
  margin-top: 5px;
  color: var(--ink-soft);
  font-size: 11px;
}

.align-right {
  text-align: right;
}

.flight-line {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 9px;
  align-items: center;
  color: var(--ink-soft);
}

.flight-line span,
.flight-line small {
  font-size: 11px;
  font-weight: 700;
}

.flight-line i {
  position: relative;
  height: 1px;
  display: block;
  background: var(--ink-soft);
}

.flight-line i::before,
.flight-line i::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 7px;
  height: 7px;
  border: 1px solid var(--ink-soft);
  border-radius: 50%;
  background: var(--ivory);
  transform: translateY(-50%);
}

.flight-line i::before {
  left: -1px;
}

.flight-line i::after {
  right: -1px;
}

.flight-line small {
  grid-column: 1 / -1;
  text-align: center;
}

.connection {
  margin: 14px 0;
  padding: 15px 28px;
  display: grid;
  grid-template-columns: 150px 1fr 1.3fr;
  gap: 20px;
  align-items: center;
  border: 1px dashed rgba(127, 36, 53, .38);
  border-radius: 14px;
  color: var(--wine-dark);
  background: #fff9ee;
}

.connection span {
  font-size: 12px;
  font-weight: 800;
}

.connection b {
  font-size: 13px;
}

.connection small {
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.5;
}

.connection.long {
  margin-bottom: 0;
  border-color: rgba(53, 93, 104, .4);
  color: var(--blue);
  background: #f0f7f7;
}

.arrival-window {
  margin: 36px 8px 8px;
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
  align-items: center;
  gap: 14px;
}

.arrival-window div {
  text-align: center;
}

.arrival-window span,
.arrival-window small {
  display: block;
}

.arrival-window span {
  font-size: 14px;
  font-weight: 800;
}

.arrival-window small {
  margin-top: 3px;
  color: var(--ink-soft);
  font-size: 10px;
}

.arrival-window i {
  height: 1px;
  display: block;
  background: var(--line);
}

.route-divider {
  margin: 44px 0 30px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
}

.route-divider::before,
.route-divider::after {
  content: "";
  height: 1px;
  flex: 1;
  background: var(--line);
}

.transfer-panel {
  margin-top: 22px;
  padding: 44px;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 70px;
  color: white;
  border-radius: var(--radius-lg);
  background: var(--ink);
}

.transfer-panel h3 {
  margin: 0;
  font-size: 34px;
  line-height: 1.3;
  letter-spacing: -.035em;
}

.transfer-panel ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.transfer-panel li {
  padding: 20px 0;
  display: flex;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, .17);
}

.transfer-panel li:first-child {
  padding-top: 0;
  border-top: 0;
}

.transfer-panel li > span {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  display: grid;
  place-items: center;
  color: #ffe2ad;
  border: 1px solid rgba(255, 226, 173, .5);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
}

.transfer-panel p {
  margin: 0;
}

.transfer-panel b,
.transfer-panel small {
  display: block;
}

.transfer-panel b {
  margin-bottom: 5px;
  font-size: 15px;
}

.transfer-panel small {
  color: rgba(255, 255, 255, .84);
  font-size: 11px;
}

.hotel-toolbar {
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--white-line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .06);
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.filter-button {
  min-height: 42px;
  padding: 9px 16px;
  color: rgba(255, 255, 255, .9);
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.filter-button:hover,
.filter-button.active {
  color: var(--wine-dark);
  background: white;
}

.stay-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .88);
  font-size: 12px;
  font-weight: 700;
}

.stay-toggle select {
  min-height: 42px;
  padding: 8px 34px 8px 13px;
  color: white;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 10px;
  background: var(--wine-dark);
  cursor: pointer;
}

.price-note {
  margin: 18px 0 36px;
  padding: 18px 24px;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  border-left: 3px solid #e8bb68;
  background: rgba(255, 255, 255, .06);
}

.price-note > span {
  color: #ffd999;
  font-size: 12px;
  font-weight: 800;
}

.price-note p {
  margin: 0;
  color: rgba(255, 255, 255, .86);
  font-size: 12px;
  line-height: 1.65;
}

.hotel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.hotel-card {
  position: relative;
  min-height: 420px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--white-line);
  border-radius: 24px;
  background: rgba(255, 255, 255, .075);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.hotel-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, .34);
  background: rgba(255, 255, 255, .11);
}

.hotel-card.recommended {
  color: var(--ink);
  background: var(--paper);
  border-color: transparent;
}

.hotel-card.hidden {
  display: none;
}

.hotel-topline {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.hotel-rank {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 50%;
  color: rgba(255, 255, 255, .6);
  font-size: 12px;
  font-weight: 800;
}

.recommended .hotel-rank {
  color: var(--wine);
  border-color: rgba(127, 36, 53, .22);
}

.hotel-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.hotel-badge {
  padding: 5px 9px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  color: rgba(255, 255, 255, .74);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .03em;
}

.recommended .hotel-badge {
  color: var(--wine);
  border-color: rgba(127, 36, 53, .22);
}

.hotel-card h3 {
  margin: 24px 0 6px;
  font-size: 23px;
  line-height: 1.28;
  letter-spacing: -.025em;
}

.hotel-area {
  margin: 0;
  color: rgba(255, 255, 255, .5);
  font-size: 11px;
  font-weight: 700;
}

.recommended .hotel-area {
  color: var(--ink-soft);
}

.hotel-price {
  margin: 28px 0 22px;
}

.hotel-price strong,
.hotel-price span,
.hotel-price small {
  display: block;
}

.hotel-price strong {
  color: #ffd999;
  font-size: 27px;
  line-height: 1.25;
  letter-spacing: -.03em;
}

.recommended .hotel-price strong {
  color: var(--wine);
}

.hotel-price span {
  margin-top: 4px;
  color: rgba(255, 255, 255, .75);
  font-size: 13px;
  font-weight: 700;
}

.recommended .hotel-price span {
  color: var(--ink);
}

.hotel-price small {
  margin-top: 7px;
  color: rgba(255, 255, 255, .44);
  font-size: 10px;
}

.recommended .hotel-price small {
  color: var(--ink-soft);
}

.hotel-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.hotel-metrics div {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 12px;
}

.recommended .hotel-metrics div {
  border-color: var(--line);
}

.hotel-metrics small,
.hotel-metrics b {
  display: block;
}

.hotel-metrics small {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, .44);
  font-size: 9px;
}

.recommended .hotel-metrics small {
  color: var(--ink-soft);
}

.hotel-metrics b {
  font-size: 12px;
}

.hotel-reason {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .62);
  font-size: 12px;
  line-height: 1.65;
}

.recommended .hotel-reason {
  color: var(--ink-soft);
}

.hotel-links {
  margin-top: auto;
  padding-top: 20px;
  display: flex;
  gap: 10px;
}

.hotel-links a {
  min-height: 40px;
  padding: 9px 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}

.recommended .hotel-links a {
  border-color: var(--line);
}

.hotel-links a:first-child {
  color: var(--wine-dark);
  background: white;
}

.recommended .hotel-links a:first-child {
  color: white;
  background: var(--wine);
}

.hotel-decision {
  margin-top: 24px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 60px;
  align-items: end;
  border-radius: var(--radius-lg);
  color: var(--ink);
  background: #e7c276;
}

.hotel-decision span {
  display: block;
  margin-bottom: 12px;
  color: var(--wine-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
}

.hotel-decision h3 {
  margin: 0;
  font-size: 31px;
  line-height: 1.35;
  letter-spacing: -.035em;
}

.hotel-decision p {
  margin: 0;
  color: rgba(32, 35, 42, .72);
  font-size: 13px;
  line-height: 1.7;
}

.day-tabs {
  margin-bottom: 28px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}

.day-tabs button {
  min-height: 126px;
  padding: 15px;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: transparent;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

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

.day-tabs button[aria-selected="true"] {
  color: white;
  border-color: var(--wine);
  background: var(--wine);
}

.day-tabs span,
.day-tabs b,
.day-tabs small {
  display: block;
}

.day-tabs span {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .16em;
}

.day-tabs b {
  margin: 5px 0;
  font-size: 30px;
  line-height: 1;
}

.day-tabs small {
  font-size: 10px;
}

.day-panel {
  padding: 46px;
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 70px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
  animation: panel-in .32s ease both;
}

@keyframes panel-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.day-panel[hidden] {
  display: none;
}

.day-label {
  margin: 0 0 14px;
  color: var(--wine);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
}

.day-intro h3 {
  margin: 0 0 20px;
  font-size: 35px;
  line-height: 1.3;
  letter-spacing: -.04em;
}

.day-intro > p:last-child {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.timeline {
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 62px;
  width: 1px;
  background: var(--line);
}

.timeline article {
  position: relative;
  padding: 0 0 24px;
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 24px;
}

.timeline article:last-child {
  padding-bottom: 0;
}

.timeline article::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 58px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--ink-soft);
  box-shadow: 0 0 0 5px var(--paper);
}

.timeline article.meeting::before {
  background: var(--wine);
}

.timeline article.city::before {
  background: var(--gold);
}

.timeline article.time-change::before {
  background: var(--blue);
}

.timeline time {
  padding-top: 1px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 800;
}

.timeline b {
  display: block;
  margin-bottom: 5px;
  font-size: 15px;
}

.timeline p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.65;
}

.route-alternative {
  grid-column: 1 / -1;
  padding: 18px 22px;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 18px;
  border-radius: 14px;
  background: var(--ivory);
}

.route-alternative span {
  color: var(--wine);
  font-size: 12px;
  font-weight: 800;
}

.route-alternative p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
}

.programme-cta {
  margin-top: 24px;
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  color: white;
  border-radius: var(--radius-lg);
  background: var(--blue);
}

.programme-cta span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, .9);
  font-size: 11px;
  font-weight: 700;
}

.programme-cta h3 {
  margin: 0;
  font-size: 25px;
  letter-spacing: -.025em;
}

.programme-cta p {
  max-width: 700px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, .9);
  font-size: 12px;
}

.programme-cta .button {
  flex: 0 0 auto;
  background: white;
  color: var(--blue);
}

.time-modules {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.time-modules article {
  min-height: 240px;
  padding: 30px;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 30px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: white;
}

.duration {
  width: 92px;
  height: 92px;
  display: grid;
  place-content: center;
  text-align: center;
  color: var(--wine);
  border: 1px solid rgba(127, 36, 53, .3);
  border-radius: 50%;
}

.duration b,
.duration span {
  display: block;
}

.duration b {
  font-size: 30px;
  line-height: 1;
}

.duration span {
  margin-top: 5px;
  font-size: 9px;
  font-weight: 800;
}

.time-modules h3 {
  margin: 0 0 10px;
  font-size: 25px;
  line-height: 1.3;
  letter-spacing: -.03em;
}

.time-modules p:not(.kicker) {
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
}

.route-pill {
  width: fit-content;
  margin-top: 18px;
  padding: 5px 10px;
  display: block;
  color: var(--blue);
  border-radius: 999px;
  background: var(--sky);
  font-size: 9px;
  font-weight: 800;
}

.map-hub {
  margin-top: 52px;
  padding: 34px;
  display: grid;
  grid-template-columns: minmax(260px, .8fr) 1.2fr;
  gap: 42px;
  align-items: center;
  color: white;
  border-radius: var(--radius-md);
  background: var(--ink);
}

.map-hub h3 {
  margin: 0;
  font-size: 28px;
  letter-spacing: -.035em;
}

.map-hub p:not(.kicker) {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, .72);
  font-size: 16px;
  line-height: 1.7;
}

.map-hub .kicker {
  margin-bottom: 8px;
  color: #ffd99b;
}

.map-hub-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.map-hub-links a {
  min-height: 78px;
  padding: 15px 17px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 14px;
  background: rgba(255, 255, 255, .06);
  transition: background .2s ease, transform .2s ease;
}

.map-hub-links a:hover {
  background: rgba(255, 255, 255, .13);
  transform: translateY(-2px);
}

.map-hub-links b {
  font-size: 16px;
}

.map-hub-links span {
  margin-top: 3px;
  color: #ffd99b;
  font-size: 14px;
}

.place-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.place-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: white;
  box-shadow: 0 18px 44px rgba(32, 35, 42, .07);
}

.place-card figure,
.daytrip-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #d9d5cc;
}

.place-card figure {
  aspect-ratio: 16 / 10;
}

.place-card img,
.daytrip-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .45s ease;
}

.place-card:hover img,
.daytrip-card:hover .daytrip-photo img {
  transform: scale(1.025);
}

.place-card figcaption,
.daytrip-photo figcaption {
  position: absolute;
  right: 9px;
  bottom: 8px;
  left: 9px;
  text-align: right;
}

.place-card figcaption a,
.daytrip-photo figcaption a {
  padding: 5px 8px;
  color: white;
  border-radius: 7px;
  background: rgba(20, 24, 29, .72);
  font-size: 11px;
  line-height: 1.3;
  backdrop-filter: blur(5px);
}

.place-card-body {
  height: 100%;
  padding: 25px;
  display: flex;
  flex-direction: column;
}

.place-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.place-card-top span {
  color: var(--wine);
  font-size: 15px;
  font-weight: 800;
}

.place-card-top b {
  padding: 6px 9px;
  color: var(--wine-dark);
  border-radius: 999px;
  background: #f2e6cd;
  font-size: 12px;
  line-height: 1.2;
}

.place-card h3 {
  margin: 22px 0 4px;
  font-size: 30px;
  letter-spacing: -.035em;
}

.place-subtitle {
  margin: 0;
  color: var(--wine);
  font-size: 15px;
  font-weight: 800;
}

.place-card-body > p:not(.place-subtitle) {
  margin: 16px 0 22px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.68;
}

.place-facts {
  margin-top: auto;
  padding-top: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  border-top: 1px solid var(--line);
}

.place-facts span {
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.45;
}

.place-facts b {
  display: block;
  color: var(--ink);
  font-size: 15px;
}

.card-actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.card-actions a {
  min-height: 42px;
  padding: 9px 12px;
  display: inline-flex;
  align-items: center;
  color: var(--wine-dark);
  border: 1px solid rgba(127, 36, 53, .2);
  border-radius: 999px;
  background: #faf3e6;
  font-size: 14px;
  font-weight: 800;
}

.card-actions a:hover {
  border-color: var(--wine);
  background: #f4e5cb;
}

.skip-trip {
  margin-top: 40px;
  padding: 34px 40px;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 28px;
  align-items: center;
  color: white;
  border-radius: 22px;
  background: var(--ink);
}

.skip-mark {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  color: #ffd99b;
  border: 1px solid rgba(255, 217, 155, .45);
  border-radius: 50%;
  font-size: 34px;
  font-weight: 300;
}

.skip-trip .kicker {
  margin-bottom: 5px;
  color: #ffd99b;
}

.skip-trip h3 {
  margin: 0;
  font-size: 24px;
}

.skip-trip p:not(.kicker) {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, .88);
  font-size: 12px;
}

.section-daytrip {
  color: white;
  background:
    radial-gradient(circle at 8% 12%, rgba(231, 194, 118, .2), transparent 28%),
    radial-gradient(circle at 92% 78%, rgba(127, 36, 53, .28), transparent 30%),
    #294650;
}

.section-daytrip .eyebrow {
  color: #ffe2ad;
}

.trip-conflict {
  margin-bottom: 24px;
  padding: 30px 34px;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  align-items: center;
  color: var(--ink);
  border-radius: var(--radius-md);
  background: #efd39c;
}

.trip-conflict-mark {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: white;
  border-radius: 50%;
  background: var(--wine);
  font-size: 28px;
  font-weight: 800;
}

.trip-conflict .kicker {
  margin: 0 0 5px;
  color: var(--wine-dark);
}

.trip-conflict h3,
.trip-conflict p:not(.kicker) {
  margin: 0;
}

.trip-conflict h3 {
  font-size: 27px;
  line-height: 1.35;
}

.trip-conflict p:not(.kicker) {
  margin-top: 7px;
  color: rgba(32, 35, 42, .75);
  font-size: 15px;
}

.trip-conflict.confirmed {
  background: #d9e6c3;
}

.trip-conflict.confirmed .trip-conflict-mark {
  background: #42664b;
}

.trip-conflict.confirmed .kicker {
  color: #42664b;
}

.daytrip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.daytrip-card {
  min-height: 420px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, .07);
}

.daytrip-card.preferred {
  grid-column: span 2;
  color: var(--ink);
  border-color: transparent;
  background: #e7c276;
}

.daytrip-top {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.daytrip-top > span {
  color: rgba(255, 255, 255, .64);
  font-size: 28px;
  font-weight: 300;
}

.daytrip-card.preferred .daytrip-top > span {
  color: rgba(32, 35, 42, .45);
}

.daytrip-top b {
  padding: 6px 10px;
  color: #ffe2ad;
  border: 1px solid rgba(255, 226, 173, .34);
  border-radius: 999px;
  font-size: 13px;
}

.daytrip-card.preferred .daytrip-top b {
  color: white;
  border-color: var(--wine);
  background: var(--wine);
}

.daytrip-photo {
  margin-bottom: 23px;
  aspect-ratio: 16 / 10;
  border-radius: 15px;
}

.daytrip-card.preferred .daytrip-photo {
  aspect-ratio: 2.15 / 1;
}

.daytrip-card .kicker {
  margin: 0 0 8px;
  color: #ffe2ad;
}

.daytrip-card.preferred .kicker {
  color: var(--wine-dark);
}

.daytrip-card h3 {
  margin: 0;
  font-size: 36px;
  line-height: 1.12;
  letter-spacing: -.035em;
}

.daytrip-card h3 span {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
}

.daytrip-card > p:not(.kicker) {
  margin: 22px 0 26px;
  color: rgba(255, 255, 255, .83);
  font-size: 15px;
}

.daytrip-card.preferred > p:not(.kicker) {
  max-width: 780px;
  color: rgba(32, 35, 42, .76);
}

.daytrip-facts {
  margin-top: auto;
  padding-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, .2);
}

.daytrip-card.preferred .daytrip-facts {
  border-top-color: rgba(32, 35, 42, .16);
}

.daytrip-facts span {
  font-size: 13px;
  line-height: 1.45;
}

.daytrip-facts b {
  display: block;
  font-size: 17px;
}

.daytrip-card .card-actions {
  margin-top: 20px;
}

.daytrip-card .card-actions a {
  color: white;
  border-color: rgba(255, 255, 255, .25);
  background: rgba(255, 255, 255, .08);
}

.daytrip-card .card-actions a:hover {
  border-color: rgba(255, 255, 255, .55);
  background: rgba(255, 255, 255, .16);
}

.daytrip-card.preferred .card-actions a {
  color: var(--wine-dark);
  border-color: rgba(127, 36, 53, .22);
  background: rgba(255, 255, 255, .42);
}

.daytrip-card.preferred .card-actions a:hover {
  border-color: var(--wine);
  background: rgba(255, 255, 255, .72);
}

.daytrip-plan {
  margin-top: 24px;
  padding: 48px;
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 70px;
  color: var(--ink);
  border-radius: var(--radius-lg);
  background: var(--paper);
}

.daytrip-plan-intro h3 {
  margin: 0;
  font-size: 38px;
  line-height: 1.25;
  letter-spacing: -.04em;
}

.daytrip-plan-intro > p:not(.eyebrow) {
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 16px;
}

.plan-budget {
  margin-top: 34px;
  padding: 22px;
  border-radius: 16px;
  background: var(--ivory);
}

.plan-budget span,
.plan-budget small,
.plan-budget strong {
  display: block;
}

.plan-budget span {
  color: var(--wine);
  font-size: 13px;
  font-weight: 800;
}

.plan-budget strong {
  margin: 4px 0;
  font-size: 28px;
}

.plan-budget small {
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.55;
}

.plan-links {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.plan-links a {
  min-height: 43px;
  padding: 9px 13px;
  display: inline-flex;
  align-items: center;
  color: var(--wine-dark);
  border: 1px solid rgba(127, 36, 53, .2);
  border-radius: 999px;
  background: white;
  font-size: 14px;
  font-weight: 800;
}

.plan-links a:hover {
  border-color: var(--wine);
}

.daytrip-steps article {
  padding: 15px 0;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  border-top: 1px solid var(--line);
}

.daytrip-steps article:first-child {
  padding-top: 0;
  border-top: 0;
}

.daytrip-steps time {
  color: var(--wine);
  font-size: 15px;
  font-weight: 800;
}

.daytrip-steps b {
  font-size: 17px;
}

.daytrip-steps p {
  margin: 3px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.weather-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.weather-main,
.weather-cards {
  min-width: 0;
}

.weather-main h2 {
  margin: 0;
  font-size: clamp(43px, 5vw, 67px);
  line-height: 1.15;
  letter-spacing: -.045em;
}

.weather-main > p:not(.eyebrow) {
  max-width: 660px;
  margin: 26px 0 0;
  color: rgba(32, 35, 42, .7);
  font-size: 15px;
}

.temp-display {
  margin-top: 52px;
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  gap: 14px;
}

.temp-display span,
.temp-display strong {
  font-size: clamp(27px, 3vw, 42px);
  line-height: 1;
}

.temp-display span {
  color: var(--blue);
}

.temp-display strong {
  color: var(--wine);
}

.temp-display i {
  height: 2px;
  display: block;
  background: linear-gradient(90deg, var(--blue), var(--wine));
}

.temp-labels {
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
  color: #48545a;
  font-size: 10px;
  font-weight: 700;
}

.dark-link {
  margin-top: 44px;
  color: var(--ink);
}

.weather-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.weather-cards article {
  min-height: 220px;
  padding: 28px;
  border: 1px solid rgba(53, 93, 104, .18);
  border-radius: 22px;
  background: rgba(255, 255, 255, .42);
}

.weather-cards article > span {
  display: block;
  margin-bottom: 34px;
  color: var(--blue);
  font-size: 21px;
}

.weather-cards b {
  display: block;
  font-size: 24px;
  letter-spacing: -.025em;
}

.weather-cards p {
  margin: 6px 0 0;
  font-size: 13px;
  font-weight: 700;
}

.weather-cards small {
  display: block;
  margin-top: 4px;
  color: #48545a;
  font-size: 10px;
}

.weather-cards .packing {
  min-height: 220px;
  grid-column: 1 / -1;
  color: white;
  background: var(--blue);
}

.weather-cards .packing > span {
  margin-bottom: 16px;
  color: #bcd4d8;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
}

.weather-cards .packing h3 {
  margin: 0;
  font-size: 27px;
  line-height: 1.35;
}

.weather-cards .packing p {
  color: rgba(255, 255, 255, .92);
  font-size: 12px;
  font-weight: 400;
}

.checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.checklist label {
  min-height: 120px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
  cursor: pointer;
  transition: background .2s ease, opacity .2s ease;
}

.checklist label:has(input:checked) {
  background: #e7eadc;
  opacity: .72;
}

.checklist input {
  appearance: none;
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  margin: 1px 0 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(32, 35, 42, .32);
  border-radius: 50%;
  background: white;
}

.checklist input::after {
  content: "✓";
  color: white;
  font-size: 13px;
  font-weight: 800;
  transform: scale(0);
  transition: transform .15s ease;
}

.checklist input:checked {
  border-color: var(--wine);
  background: var(--wine);
}

.checklist input:checked::after {
  transform: scale(1);
}

.checklist b,
.checklist small {
  display: block;
}

.checklist b {
  margin-bottom: 6px;
  font-size: 14px;
}

.checklist small {
  color: var(--ink-soft);
  font-size: 11px;
}

.sources {
  padding: 80px 0;
  color: white;
  background: var(--ink);
}

.sources .shell {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 80px;
}

.sources h2 {
  margin: 0;
  font-size: 42px;
  letter-spacing: -.04em;
}

.sources p:not(.eyebrow) {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .86);
  font-size: 12px;
}

.source-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 28px;
}

.source-links a {
  padding: 15px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.source-links b {
  font-size: 13px;
}

.source-links span {
  color: rgba(255, 255, 255, .82);
  font-size: 10px;
}

.source-links a:hover span {
  color: white;
}

footer {
  padding: 30px 0;
  color: white;
  background: #17191e;
}

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

footer p {
  margin: 0;
  line-height: 1.5;
}

footer b {
  font-size: 12px;
}

footer span,
footer a {
  color: rgba(255, 255, 255, .5);
  font-size: 10px;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 150;
  padding: 11px 18px;
  color: white;
  border-radius: 999px;
  background: var(--ink);
  box-shadow: var(--shadow);
  font-size: 12px;
  font-weight: 800;
  opacity: 0;
  transform: translate(-50%, 20px);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (max-width: 1080px) {
  :root {
    --shell: min(100% - 42px, 980px);
  }

  .desktop-nav {
    display: none;
  }

  .mobile-jump {
    position: sticky;
    top: 76px;
    z-index: 80;
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    gap: 8px;
    overflow-x: auto;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 253, 248, .96);
    backdrop-filter: blur(12px);
    scrollbar-width: none;
  }

  .mobile-jump::-webkit-scrollbar {
    display: none;
  }

  .mobile-jump a {
    flex: 0 0 auto;
    padding: 8px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
  }

  .verdict-grid {
    grid-template-columns: 1fr 1fr;
  }

  .verdict-card.featured {
    grid-column: 1 / -1;
    min-height: 390px;
  }

  .fact-strip {
    grid-template-columns: 1fr 1fr;
  }

  .fact-strip > div {
    padding: 20px;
  }

  .fact-strip > div:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }

  .hotel-grid {
    grid-template-columns: 1fr 1fr;
  }

  .day-panel {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .map-hub {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .place-grid {
    grid-template-columns: 1fr 1fr;
  }

  .daytrip-grid {
    grid-template-columns: 1fr 1fr;
  }

  .daytrip-card.preferred {
    grid-column: 1 / -1;
  }

  .daytrip-plan {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .weather-layout {
    grid-template-columns: 1fr;
    gap: 55px;
  }
}

@media (max-width: 760px) {
  :root {
    --shell: calc(100% - 30px);
    --radius-lg: 22px;
  }

  body {
    font-size: 16px;
  }

  .site-header {
    height: 62px;
    padding: 0 15px;
  }

  .site-header.scrolled {
    height: 60px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .brand small {
    display: none;
  }

  .brand b {
    font-size: 12px;
  }

  .icon-button {
    width: 36px;
    height: 36px;
  }

  .header-actions .icon-button:nth-child(2) {
    display: none;
  }

  .hero {
    min-height: 720px;
    height: 94svh;
  }

  .hero-image {
    object-position: 65% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(69, 19, 30, .94), rgba(69, 19, 30, .56) 72%, rgba(69, 19, 30, .3)),
      linear-gradient(0deg, rgba(28, 18, 18, .45), transparent 45%);
  }

  .hero-content {
    padding-top: 130px;
  }

  .hero h1 {
    font-size: clamp(47px, 14.2vw, 68px);
    line-height: 1.08;
  }

  .hero-lead {
    max-width: 92%;
    margin-top: 22px;
    font-size: 17px;
  }

  .hero-actions {
    width: 100%;
    margin-top: 26px;
  }

  .hero-actions .button {
    flex: 1;
    min-height: 48px;
    padding-inline: 14px;
    font-size: 13px;
  }

  .hero-meta {
    grid-template-columns: 1fr 1fr;
    gap: 18px 0;
    padding-bottom: 24px;
  }

  .hero-meta div {
    padding-left: 15px;
  }

  .hero-meta div:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }

  .hero-meta strong {
    font-size: 14px;
  }

  .mobile-jump {
    position: sticky;
    top: 59px;
    z-index: 80;
    padding: 10px 14px;
    display: flex;
    justify-content: flex-start;
    gap: 6px;
    overflow-x: auto;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 253, 248, .96);
    backdrop-filter: blur(12px);
    scrollbar-width: none;
  }

  .mobile-jump::-webkit-scrollbar {
    display: none;
  }

  .mobile-jump a {
    flex: 0 0 auto;
    padding: 7px 13px;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
  }

  .section {
    padding: 80px 0;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading h2 {
    font-size: 42px;
  }

  .split-heading {
    display: block;
  }

  .split-heading > p {
    margin-top: 18px !important;
  }

  .verdict-grid {
    grid-template-columns: 1fr;
  }

  .verdict-card,
  .verdict-card.featured {
    grid-column: auto;
    min-height: 420px;
    padding: 27px;
  }

  .fact-strip {
    grid-template-columns: 1fr;
  }

  .fact-strip > div,
  .fact-strip > div:nth-child(3) {
    padding: 18px 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .fact-strip > div:first-child {
    border-top: 0;
  }

  .route-board {
    padding: 22px 16px;
  }

  .flight-leg {
    padding: 22px;
    grid-template-columns: 1fr 1fr;
    gap: 22px 12px;
  }

  .flight-number {
    grid-column: 1 / -1;
    display: flex;
    align-items: baseline;
    gap: 8px;
  }

  .flight-number span,
  .flight-number strong {
    display: inline;
  }

  .flight-line {
    grid-column: 1 / -1;
    grid-row: 3;
  }

  .airport-time time {
    font-size: 26px;
  }

  .connection {
    padding: 15px;
    display: block;
  }

  .connection span,
  .connection b,
  .connection small {
    display: block;
  }

  .connection b {
    margin: 5px 0;
  }

  .arrival-window {
    margin-top: 24px;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .arrival-window i {
    display: none;
  }

  .transfer-panel {
    padding: 30px 24px;
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .transfer-panel h3 {
    font-size: 28px;
  }

  .hotel-toolbar {
    display: block;
  }

  .filter-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .stay-toggle {
    margin-top: 12px;
    justify-content: space-between;
  }

  .price-note {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hotel-grid {
    grid-template-columns: 1fr;
  }

  .hotel-card {
    min-height: 410px;
  }

  .hotel-decision {
    padding: 28px;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hotel-decision h3 {
    font-size: 26px;
  }

  .day-tabs {
    margin-right: -15px;
    padding-right: 15px;
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .day-tabs::-webkit-scrollbar {
    display: none;
  }

  .day-tabs button {
    min-width: 104px;
    min-height: 116px;
  }

  .day-panel {
    padding: 28px 22px;
  }

  .day-intro h3 {
    font-size: 29px;
  }

  .route-alternative {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .trip-conflict {
    padding: 28px 24px;
    grid-template-columns: 1fr;
  }

  .daytrip-grid {
    grid-template-columns: 1fr;
  }

  .daytrip-card,
  .daytrip-card.preferred {
    grid-column: auto;
    min-height: 0;
    padding: 27px;
  }

  .daytrip-plan {
    padding: 30px 24px;
    gap: 38px;
  }

  .daytrip-plan-intro h3 {
    font-size: 32px;
  }

  .daytrip-steps article {
    grid-template-columns: 62px 1fr;
    gap: 12px;
  }

  .programme-cta {
    padding: 30px 24px;
    display: block;
  }

  .programme-cta .button {
    width: 100%;
    margin-top: 22px;
  }

  .time-modules {
    grid-template-columns: 1fr;
  }

  .time-modules article {
    min-height: 0;
    padding: 24px;
    grid-template-columns: 78px 1fr;
    gap: 18px;
  }

  .duration {
    width: 74px;
    height: 74px;
  }

  .duration b {
    font-size: 25px;
  }

  .place-grid {
    grid-template-columns: 1fr;
  }

  .map-hub {
    padding: 28px 23px;
  }

  .map-hub-links {
    grid-template-columns: 1fr;
  }

  .place-card-body {
    padding: 23px;
  }

  .place-card h3 {
    font-size: 28px;
  }

  .skip-trip {
    padding: 28px 24px;
    grid-template-columns: 1fr;
  }

  .weather-main h2 {
    font-size: 44px;
  }

  .weather-cards {
    grid-template-columns: 1fr;
  }

  .weather-cards .packing {
    grid-column: auto;
  }

  .checklist {
    grid-template-columns: 1fr;
  }

  .sources .shell {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .source-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .hero-actions {
    flex-direction: column;
  }

  .place-grid {
    grid-template-columns: 1fr;
  }

  .temp-display {
    gap: 6px;
  }

  .temp-display span,
  .temp-display strong {
    font-size: 23px;
  }

  .timeline article {
    grid-template-columns: 52px 1fr;
    gap: 18px;
  }

  .timeline::before {
    left: 52px;
  }

  .timeline article::before {
    left: 48px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

@media print {
  @page {
    margin: 14mm;
  }

  body {
    color: #111;
    background: white;
    font-size: 11.5pt;
  }

  .site-header,
  .mobile-jump,
  .hero-actions,
  .header-actions,
  .hotel-toolbar,
  .hotel-links,
  .programme-cta .button,
  .checklist input,
  .toast,
  footer {
    display: none !important;
  }

  .hero {
    min-height: 0;
    height: auto;
    padding: 25mm 0 15mm;
    color: #111;
    background: white;
  }

  .hero-image,
  .hero-shade {
    display: none;
  }

  .hero-content {
    padding-top: 0;
  }

  .hero h1 {
    font-size: 34pt;
  }

  .hero-lead,
  .hero-meta span {
    color: #444;
  }

  .hero-meta {
    margin-top: 15mm;
    color: #111;
    border-color: #bbb;
  }

  .section {
    padding: 12mm 0;
    break-inside: avoid;
  }

  .section-wine,
  .section-daytrip,
  .sources,
  .transfer-panel,
  .programme-cta,
  .skip-trip {
    color: #111;
    background: white;
  }

  .section-wine .eyebrow,
  .section-daytrip .eyebrow,
  .transfer-panel .eyebrow,
  .sources .eyebrow,
  .skip-trip .kicker,
  .price-note > span {
    color: var(--wine) !important;
  }

  .section-wine .light-heading > p,
  .section-daytrip .light-heading > p,
  .price-note p,
  .transfer-panel small,
  .programme-cta span,
  .programme-cta p,
  .skip-trip p:not(.kicker),
  .sources p:not(.eyebrow),
  .source-links span {
    color: #444 !important;
  }

  .hotel-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hotel-card,
  .hotel-card.recommended {
    min-height: 0;
    color: #111;
    border: 1px solid #bbb;
    background: white;
    break-inside: avoid;
  }

  .hotel-area,
  .hotel-price span,
  .hotel-price small,
  .hotel-reason,
  .recommended .hotel-area,
  .recommended .hotel-price span,
  .recommended .hotel-price small,
  .recommended .hotel-reason {
    color: #444;
  }

  .day-tabs {
    display: none;
  }

  .day-panel[hidden] {
    margin-top: 8mm;
    display: grid;
  }

  .day-panel {
    break-inside: avoid;
  }

  .trip-conflict,
  .daytrip-card,
  .daytrip-card.preferred,
  .daytrip-plan {
    color: #111;
    border: 1px solid #bbb;
    background: white;
    break-inside: avoid;
  }

  .daytrip-card > p:not(.kicker),
  .daytrip-card.preferred > p:not(.kicker) {
    color: #444;
  }

  a[href^="http"]::after {
    content: "";
  }
}

/* Readability floor for labels and supporting copy. */
@media screen {
  .brand small,
  .site-header .brand b,
  .mobile-jump a,
  .eyebrow,
  .kicker,
  .hero-meta span,
  .mini-stats span,
  .fact-strip small,
  .fact-strip span,
  .route-date small,
  .flight-number span,
  .airport-time small,
  .airport-time sup,
  .flight-line span,
  .flight-line small,
  .connection span,
  .connection small,
  .arrival-window small,
  .route-divider,
  .transfer-panel li > span,
  .transfer-panel small,
  .stay-toggle,
  .stay-toggle select,
  .price-note > span,
  .hotel-decision span,
  .hotel-rank,
  .hotel-badge,
  .hotel-area,
  .hotel-price small,
  .hotel-metrics small,
  .hotel-links a,
  .day-label,
  .day-tabs span,
  .day-tabs small,
  .meeting time,
  .city time,
  .timeline time,
  .duration span,
  .programme-cta span,
  .place-grid span,
  .place-grid small,
  .packing > span,
  .route-pill,
  .temp-labels,
  .weather-cards small,
  .source-links span,
  .daytrip-top,
  .daytrip-facts span,
  .daytrip-card > a,
  .plan-budget span,
  .plan-budget small,
  .daytrip-steps time,
  .toast,
  footer .shell :where(a, b, p, span) {
    font-size: 13px !important;
  }

  .price-note p,
  .hotel-metrics b,
  .hotel-reason,
  .meeting p,
  .city p,
  .timeline p,
  .time-modules p,
  .place-grid p,
  .programme-cta p,
  .skip-trip p,
  .packing p,
  .checklist small,
  .sources .shell > div > p,
  .transfer-panel small {
    font-size: 15px !important;
    line-height: 1.6;
  }

  .trip-conflict p:not(.kicker),
  .daytrip-card > p:not(.kicker),
  .daytrip-plan-intro > p:not(.eyebrow),
  .daytrip-steps p {
    font-size: 16px !important;
    line-height: 1.65;
  }

  .hotel-area,
  .hotel-price small,
  .programme-cta span,
  .place-grid small,
  .weather-cards small,
  .source-links b,
  .source-links span {
    font-size: 14px !important;
  }

  .button,
  .filter-button,
  .stay-toggle,
  .stay-toggle select,
  .hotel-links a,
  .mobile-jump a {
    font-size: 15px !important;
  }

  .section-heading > p,
  .weather-main > p:not(.eyebrow) {
    font-size: 17px !important;
    line-height: 1.7;
  }

  .place-grid p {
    font-size: 16px !important;
  }

  .place-grid span,
  .place-grid small,
  .place-card figcaption a,
  .daytrip-photo figcaption a {
    font-size: 14px !important;
  }
}

@media screen and (max-width: 760px) {
  .price-note p,
  .hotel-metrics b,
  .hotel-reason,
  .meeting p,
  .city p,
  .timeline p,
  .time-modules p,
  .place-grid p,
  .programme-cta p,
  .skip-trip p,
  .packing p,
  .checklist small,
  .sources .shell > div > p,
  .section-heading > p,
  .weather-main > p:not(.eyebrow),
  .transfer-panel small {
    font-size: 16px !important;
    line-height: 1.7;
  }

  .trip-conflict p:not(.kicker),
  .daytrip-card > p:not(.kicker),
  .daytrip-plan-intro > p:not(.eyebrow),
  .daytrip-steps p {
    font-size: 16px !important;
    line-height: 1.7;
  }

  .button,
  .filter-button,
  .stay-toggle,
  .stay-toggle select,
  .hotel-links a {
    font-size: 16px !important;
  }

  .hotel-area,
  .hotel-price small,
  .programme-cta span,
  .place-grid small,
  .weather-cards small,
  .source-links b,
  .source-links span,
  .mobile-jump a {
    font-size: 15px !important;
  }
}
