:root {
  --ink: #15221f;
  --ink-soft: #3e4d49;
  --forest: #173b35;
  --forest-light: #245b50;
  --coral: #ff6752;
  --yellow: #f4c84b;
  --sky: #d8ebf3;
  --paper: #f5f7f5;
  --white: #ffffff;
  --line: #d8dfdc;
  --line-dark: #b9c5c1;
  --muted: #687570;
  --max: 1180px;
  --radius: 6px;
  --shadow: 0 16px 44px rgba(15, 31, 27, 0.12);
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: Georgia, "Times New Roman", serif;
  --font-hand: "Segoe Print", "Bradley Hand", "Comic Sans MS", cursive;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  line-height: 1.5;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

button,
input,
select {
  font: inherit;
  letter-spacing: 0;
}

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

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

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

svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.8;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  transform: translateY(-150%);
  background: var(--white);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: var(--radius);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 68px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(21, 34, 31, 0.1);
  backdrop-filter: blur(12px);
}

.header-inner,
.section-inner,
.footer-inner,
.footer-meta {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  font-weight: 740;
  color: var(--ink);
  white-space: nowrap;
}

.brand-mark {
  display: block;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
}

.brand-mark img {
  width: 100%;
  height: 100%;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
  color: var(--ink-soft);
}

.primary-nav a,
.footer-links a {
  transition: color 160ms ease;
}

.primary-nav a:hover,
.footer-links a:hover {
  color: var(--coral);
}

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

.language-button,
.icon-button,
.text-button {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.language-button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 40px;
  padding: 0 9px;
  color: var(--ink-soft);
  font-size: 13px;
}

.language-picker {
  position: relative;
}

.language-menu {
  position: absolute;
  top: 46px;
  right: 0;
  width: 190px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.language-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  padding: 0 10px;
  border-radius: 4px;
  color: var(--ink-soft);
  font-size: 13px;
}

.language-menu a:hover,
.language-menu a[aria-current="page"] {
  background: var(--paper);
  color: var(--forest);
}

.language-menu a span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 760;
}

.icon-button {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
}

.menu-toggle {
  display: none;
  margin-left: auto;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: var(--coral);
  color: #241814;
  font-weight: 760;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button:disabled {
  cursor: wait;
  opacity: 0.62;
  transform: none;
}

.button-small {
  min-height: 40px;
  padding: 0 14px;
  font-size: 13px;
}

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

.button-light {
  background: var(--white);
  color: var(--forest);
}

.hero {
  position: relative;
  min-height: calc(100svh - 120px);
  overflow: hidden;
  background-color: #314c46;
  background-image: url("assets/hero-flight.avif");
  background-position: center 47%;
  background-size: cover;
  color: var(--white);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 28, 24, 0.61);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 40px), var(--max));
  min-height: calc(100svh - 120px);
  margin: 0 auto;
  padding: 56px 0 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
}

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

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: inherit;
  font-size: 13px;
  font-weight: 760;
  text-transform: uppercase;
}

.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 7px;
  border-radius: 50%;
  background: #6ee7b7;
  box-shadow: 0 0 0 4px rgba(110, 231, 183, 0.18);
}

.hero h1,
.section-heading h2,
.method-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 700px;
  font-size: 64px;
  line-height: 1.01;
}

.hero-slogan {
  position: relative;
  width: fit-content;
  max-width: 100%;
  margin: 15px 0 0;
  color: #8affdf;
  font-family: var(--font-hand);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0;
  text-shadow: 0 2px 16px rgba(56, 224, 198, 0.24);
  transform: rotate(-1deg);
  transform-origin: left center;
}

.hero-slogan::after {
  content: "";
  position: absolute;
  left: 2px;
  bottom: -5px;
  width: 72%;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  opacity: 0.72;
  transform: rotate(-1deg);
  transform-origin: left center;
}

html[lang="zh"] .hero-slogan {
  font-family: "STKaiti", "KaiTi", "Kaiti SC", serif;
  font-weight: 700;
}

html[lang="ja"] .hero-slogan {
  font-family: "YuKyokasho", "Yu Kyokasho", "Hiragino Mincho ProN", serif;
}

html[lang="ko"] .hero-slogan {
  font-family: "Nanum Pen Script", "Apple SD Gothic Neo", sans-serif;
}

.hero-lead {
  max-width: 650px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
  line-height: 1.55;
}

.finder {
  width: 100%;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.42);
}

.finder-mode {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 12px;
  padding: 3px;
  border: 1px solid rgba(255,255,255,0.34);
  border-radius: var(--radius);
  background: rgba(15, 45, 38, 0.58);
}

.mode-button {
  min-height: 34px;
  padding: 0 14px;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: rgba(255,255,255,0.72);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.mode-button.is-active {
  background: var(--white);
  color: var(--forest);
}

.finder-fields {
  display: grid;
  grid-template-columns: minmax(250px, 1.35fr) minmax(170px, 0.8fr) minmax(180px, 0.85fr) auto;
  align-items: end;
  gap: 1px;
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.28);
  box-shadow: var(--shadow);
}

.field {
  min-width: 0;
  padding: 12px 16px 10px;
  background: rgba(255,255,255,0.96);
  color: var(--ink);
}

.field > span:first-child {
  display: block;
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 760;
  text-transform: uppercase;
}

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

.field-control svg {
  flex: 0 0 18px;
  color: var(--forest-light);
}

.field input,
.field select {
  width: 100%;
  min-width: 0;
  min-height: 27px;
  padding: 0 22px 0 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 15px;
  font-weight: 650;
}

.field input::placeholder {
  color: #88928e;
  font-weight: 500;
}

.finder-submit {
  min-height: 68px;
  border-radius: 0;
  padding: 0 24px;
}

.finder-foot {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 13px;
  color: rgba(255,255,255,0.75);
  font-size: 12px;
}

.finder-foot span,
.finder-foot a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.finder-foot a {
  margin-left: auto;
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.finder-foot svg {
  width: 15px;
  height: 15px;
}

.results-section,
.destination-section,
.provider-section,
.guide-section {
  padding: 84px 0;
}

.results-section {
  background: var(--sky);
  border-bottom: 1px solid #bfd9e3;
}

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

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

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

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 34px;
  margin-bottom: 30px;
}

.section-kicker {
  color: var(--forest-light);
}

.section-heading h2,
.method-copy h2 {
  max-width: 700px;
  color: var(--ink);
  font-size: 44px;
  line-height: 1.08;
}

.section-heading > p {
  max-width: 400px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.destination-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr 0.9fr;
  grid-auto-rows: 290px;
  gap: 14px;
}

.destination-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: var(--forest);
  color: var(--white);
  text-align: left;
  cursor: pointer;
}

.destination-card-wide {
  grid-row: span 2;
}

.destination-card:last-child {
  grid-column: 2 / span 2;
  grid-row: 2;
}

.destination-card img,
.destination-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.destination-card img {
  object-fit: cover;
  transition: transform 500ms ease;
}

.destination-scrim {
  background: rgba(8, 27, 23, 0.43);
}

.destination-card:hover img {
  transform: scale(1.035);
}

.destination-content {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: grid;
  gap: 6px;
}

.destination-label {
  color: rgba(255,255,255,0.75);
  font-size: 12px;
  font-weight: 720;
  text-transform: uppercase;
}

.destination-content strong {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 500;
  line-height: 1.1;
}

.destination-content > span:last-child {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
}

.text-link,
.text-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  color: var(--forest-light);
  font-size: 14px;
  font-weight: 750;
}

.provider-list {
  border-top: 1px solid var(--line-dark);
}

.provider-row {
  display: grid;
  grid-template-columns: minmax(230px, 1.25fr) minmax(200px, 1fr) minmax(165px, 0.8fr) 100px 48px;
  align-items: center;
  gap: 20px;
  min-height: 94px;
  border-bottom: 1px solid var(--line);
}

.provider-identity {
  display: flex;
  align-items: center;
  gap: 14px;
}

.provider-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: var(--radius);
  color: var(--white);
  font-weight: 800;
}

.mark-saily { background: #566b31; }
.mark-yesim { background: #8f4f59; }
.mark-nomad { background: #325f84; }

.provider-identity div,
.provider-fit,
.provider-stat,
.provider-price {
  display: grid;
  gap: 4px;
}

.provider-row span {
  color: var(--muted);
  font-size: 12px;
}

.provider-row strong {
  font-size: 14px;
}

.provider-identity strong,
.provider-price strong {
  font-size: 18px;
}

.provider-action {
  border: 1px solid var(--line);
  background: var(--paper);
}

.provider-action:hover {
  background: var(--forest);
  color: var(--white);
}

.method-section {
  background: var(--forest);
  color: var(--white);
  padding: 84px 0;
}

.method-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(420px, 0.85fr);
  gap: 100px;
  align-items: center;
}

.method-copy .section-kicker,
.method-copy h2 {
  color: var(--white);
}

.method-copy p:not(.section-kicker) {
  max-width: 620px;
  margin: 20px 0 28px;
  color: rgba(255,255,255,0.72);
}

.method-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0;
  border-top: 1px solid rgba(255,255,255,0.28);
  border-left: 1px solid rgba(255,255,255,0.28);
}

.method-stats div {
  min-height: 138px;
  padding: 25px;
  border-right: 1px solid rgba(255,255,255,0.28);
  border-bottom: 1px solid rgba(255,255,255,0.28);
}

.method-stats dt {
  font-family: var(--font-display);
  font-size: 42px;
  line-height: 1;
}

.method-stats dd {
  margin: 9px 0 0;
  color: rgba(255,255,255,0.65);
  font-size: 12px;
  text-transform: uppercase;
}

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

.guide-item {
  display: block;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.guide-item:hover {
  transform: translateY(-4px);
  color: var(--forest-light);
  box-shadow: var(--shadow);
}

.guide-media {
  display: block;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--sky);
}

.guide-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.guide-item:hover .guide-media img {
  transform: scale(1.035);
}

.guide-copy {
  position: relative;
  display: grid;
  gap: 7px;
  min-height: 184px;
  padding: 22px;
}

.guide-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 8px;
  border-radius: var(--radius);
  background: var(--sky);
  color: var(--forest);
}

.guide-item small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
}

.guide-item strong {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.15;
}

.guide-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  color: var(--forest-light);
  font-size: 13px;
  font-weight: 750;
}

.deal-strip {
  background: var(--yellow);
  padding: 28px 0;
}

.deal-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.deal-copy {
  display: flex;
  align-items: center;
  gap: 16px;
}

.deal-message {
  display: grid;
  gap: 3px;
}

.deal-message strong {
  font-size: 16px;
}

.deal-message > span {
  color: rgba(21,34,31,0.72);
  font-size: 12px;
}

.deal-label {
  padding: 6px 9px;
  border: 1px solid rgba(21,34,31,0.3);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.deal-actions {
  display: grid;
  flex: 0 0 auto;
  gap: 6px;
  justify-items: end;
}

.deal-buttons {
  display: flex;
  align-items: center;
  gap: 14px;
}

.deal-route-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 750;
  white-space: nowrap;
}

.deal-route-link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.deal-disclosure {
  max-width: 420px;
  color: rgba(21,34,31,0.66);
  font-size: 10px;
  text-align: right;
}

.site-footer {
  background: #101816;
  color: var(--white);
  padding: 54px 0 24px;
}

.footer-inner {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 50px;
}

.footer-brand {
  color: var(--white);
}

.footer-inner p {
  color: rgba(255,255,255,0.58);
  font-size: 13px;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 28px;
  color: rgba(255,255,255,0.68);
  font-size: 13px;
}

.footer-meta {
  margin-top: 42px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.46);
  font-size: 11px;
}

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

.match-card {
  display: grid;
  gap: 20px;
  padding: 24px;
  border: 1px solid rgba(23, 59, 53, 0.18);
  border-radius: var(--radius);
  background: var(--white);
}

.match-card-top,
.match-meta,
.match-actions {
  display: flex;
  align-items: center;
}

.match-card-top {
  justify-content: space-between;
  gap: 15px;
}

.match-provider {
  display: flex;
  align-items: center;
  gap: 12px;
}

.match-provider strong {
  display: block;
  font-size: 18px;
}

.match-provider span {
  color: var(--muted);
  font-size: 12px;
}

.match-rank {
  color: var(--forest-light);
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
}

.match-copy {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.match-meta {
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.match-meta span {
  display: grid;
  gap: 2px;
  color: var(--muted);
  font-size: 11px;
}

.match-meta strong {
  color: var(--ink);
  font-size: 14px;
}

.match-actions {
  justify-content: space-between;
  gap: 12px;
}

.match-actions .button {
  min-height: 42px;
  padding: 0 14px;
  font-size: 13px;
}

.results-note {
  margin: 18px 0 0;
  color: #506e77;
  font-size: 11px;
}

.results-note.affiliate-disclosure {
  margin: 0 0 14px;
}

.consent-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 100;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  width: min(calc(100% - 36px), 720px);
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 6px;
  background: #101816;
  box-shadow: 0 18px 50px rgba(8,18,16,0.28);
  color: var(--white);
}

.consent-banner strong {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
}

.consent-banner p {
  margin: 0;
  color: rgba(255,255,255,0.72);
  font-size: 12px;
  line-height: 1.5;
}

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

.consent-actions .button {
  min-height: 40px;
  white-space: nowrap;
}

.contact-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

[hidden] {
  display: none !important;
}

@media (max-width: 980px) {
  .header-inner {
    grid-template-columns: auto auto 1fr;
    gap: 16px;
  }

  .primary-nav {
    gap: 18px;
  }

  .header-actions {
    justify-self: end;
  }

  .header-actions .button {
    display: none;
  }

  .finder-fields {
    grid-template-columns: 1fr 1fr;
  }

  .finder-submit {
    min-height: 62px;
  }

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

  .destination-card:last-child {
    grid-column: 2;
  }

  .provider-row {
    grid-template-columns: minmax(220px, 1.2fr) minmax(180px, 1fr) 100px 48px;
  }

  .provider-stat {
    display: none;
  }

  .method-layout {
    grid-template-columns: 1fr;
    gap: 46px;
  }

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

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

  .guide-item:last-child {
    grid-column: 1 / span 2;
  }

  .guide-item:last-child {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .guide-item:last-child .guide-media {
    aspect-ratio: auto;
  }
}

@media (max-width: 720px) {
  .site-header {
    height: 62px;
  }

  .header-inner,
  .section-inner,
  .footer-inner,
  .footer-meta,
  .hero-inner {
    width: min(calc(100% - 32px), var(--max));
  }

  .header-inner {
    grid-template-columns: 1fr auto auto;
  }

  .menu-toggle {
    display: inline-grid;
    grid-column: 2;
    grid-row: 1;
  }

  .header-actions {
    grid-column: 3;
    grid-row: 1;
  }

  .primary-nav {
    position: absolute;
    top: 61px;
    right: 0;
    left: 0;
    bottom: auto;
    z-index: 30;
    display: none;
    width: 100vw;
    height: calc(100svh - 61px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 24px 20px;
    overflow-y: auto;
    background: var(--white);
    font-family: var(--font-display);
    font-size: 30px;
  }

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

  .primary-nav a {
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
  }

  .brand {
    font-size: 14px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
    font-size: 20px;
  }

  .language-button span {
    display: none;
  }

  .language-menu {
    position: fixed;
    top: 58px;
    right: 12px;
    width: 210px;
  }

  .hero,
  .hero-inner {
    min-height: calc(100svh - 104px);
  }

  .hero {
    background-position: 58% center;
  }

  .hero-inner {
    padding: 34px 0 18px;
    gap: 24px;
  }

  .hero h1 {
    max-width: 520px;
    font-size: 45px;
    line-height: 1.03;
  }

  .hero-lead {
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.45;
  }

  .hero-slogan {
    margin-top: 12px;
    font-size: 20px;
  }

  .eyebrow {
    font-size: 11px;
  }

  .finder-fields {
    grid-template-columns: 1fr;
    gap: 1px;
  }

  .field {
    padding: 10px 13px 9px;
  }

  .destination-field {
    padding-top: 12px;
  }

  .finder-submit {
    min-height: 52px;
    border-radius: 0;
  }

  .finder-foot {
    gap: 8px 12px;
    font-size: 11px;
  }

  .finder-foot a {
    margin-left: auto;
  }

  .results-section,
  .destination-section,
  .provider-section,
  .guide-section,
  .method-section {
    padding: 60px 0;
  }

  .destination-section {
    padding-top: 34px;
  }

  .section-heading {
    display: block;
    margin-bottom: 24px;
  }

  .section-heading h2,
  .method-copy h2 {
    font-size: 36px;
  }

  .section-heading > p,
  .section-heading > a {
    margin-top: 12px;
  }

  .destination-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .destination-card-wide,
  .destination-card:last-child {
    grid-column: auto;
    grid-row: auto;
  }

  .provider-list {
    display: grid;
    gap: 12px;
    border: 0;
  }

  .provider-row {
    grid-template-columns: 1fr auto;
    gap: 18px;
    min-height: 0;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
  }

  .provider-fit,
  .provider-stat {
    display: none;
  }

  .provider-price {
    grid-column: 1;
    grid-row: 2;
  }

  .provider-action {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
  }

  .method-stats {
    grid-template-columns: 1fr 1fr;
  }

  .method-stats div {
    min-height: 112px;
    padding: 18px;
  }

  .method-stats dt {
    font-size: 34px;
  }

  .deal-inner,
  .deal-copy,
  .footer-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .deal-copy {
    gap: 10px;
  }

  .deal-actions {
    justify-items: stretch;
    width: 100%;
  }

  .deal-buttons {
    display: grid;
    gap: 8px;
  }

  .deal-route-link {
    justify-content: center;
    min-height: 42px;
  }

  .deal-disclosure {
    max-width: none;
    text-align: left;
  }

  .deal-inner .button {
    width: 100%;
  }

  .footer-links {
    margin-top: 20px;
  }

  .consent-banner {
    right: 12px;
    bottom: 12px;
    grid-template-columns: 1fr;
    width: calc(100% - 24px);
  }

  .consent-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 420px) {
  .header-inner,
  .section-inner,
  .footer-inner,
  .footer-meta,
  .hero-inner {
    width: min(calc(100% - 24px), var(--max));
  }

  .brand > span:last-child {
    max-width: 104px;
    white-space: normal;
    line-height: 1.05;
  }

  .hero h1 {
    font-size: 39px;
  }

  .hero-slogan {
    font-size: 18px;
  }

  .finder-mode {
    width: 100%;
  }

  .mode-button {
    padding: 0 8px;
  }

  .method-stats {
    grid-template-columns: 1fr;
  }

  .guide-item {
    display: block;
  }

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

  .guide-item:last-child {
    grid-column: auto;
    display: block;
  }

  .guide-item:last-child .guide-media {
    aspect-ratio: 3 / 2;
  }

  .consent-actions {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
