:root {
  --ink: #142a3c;
  --ink-soft: #516575;
  --navy: #17354f;
  --navy-deep: #0d263b;
  --teal: #167a6a;
  --teal-dark: #0e6256;
  --teal-pale: #e6f2ef;
  --gold: #b7782e;
  --gold-pale: #fbf1e3;
  --red: #a54545;
  --red-pale: #f9eaea;
  --surface: #ffffff;
  --surface-soft: #f4f6f5;
  --line: #d9e0e2;
  --shadow: 0 18px 44px rgba(23, 53, 79, 0.09);
  --radius: 18px;
  --container: 1180px;
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", YuGothic, Meiryo, sans-serif;
  color: var(--ink);
  background: var(--surface-soft);
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--surface-soft);
  color: var(--ink);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

body,
button,
a {
  font: inherit;
}

a {
  color: inherit;
}

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

:focus-visible {
  outline: 3px solid rgba(22, 122, 106, 0.42);
  outline-offset: 3px;
}

[hidden] {
  display: none !important;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--surface);
  color: var(--navy);
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(217, 224, 226, 0.9);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  text-decoration: none;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--navy);
  color: var(--surface);
  font-size: 18px;
  font-weight: 800;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.brand-name {
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-subtitle {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #405565;
  font-size: 14px;
  font-weight: 700;
}

.primary-nav a {
  text-decoration: none;
}

.primary-nav a:hover {
  color: var(--teal);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 84px 0 92px;
  background:
    linear-gradient(115deg, rgba(13, 38, 59, 0.98) 0%, rgba(23, 53, 79, 0.96) 58%, rgba(18, 86, 83, 0.92) 100%);
  color: var(--surface);
}

.hero::before,
.hero::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.hero::before {
  width: 480px;
  height: 480px;
  top: -260px;
  right: -80px;
}

.hero::after {
  width: 340px;
  height: 340px;
  right: 130px;
  bottom: -250px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr);
  gap: 72px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero .eyebrow,
.methodology-section .eyebrow {
  color: #8bd1c5;
}

.hero h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.2;
  letter-spacing: 0.025em;
}

.hero h1 span {
  color: #a8ddd3;
}

.hero-lead {
  max-width: 640px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
}

.hero-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin-top: 32px;
  padding: 0 24px;
  border-radius: 8px;
  background: var(--surface);
  color: var(--navy-deep);
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease;
}

.hero-link::after {
  margin-left: 12px;
  content: "↓";
}

.hero-link:hover {
  background: #eaf5f2;
  transform: translateY(-2px);
}

.research-summary {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(10px);
}

.summary-kicker {
  margin: 0 0 18px;
  color: #a8ddd3;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.summary-list {
  margin: 0;
}

.summary-list > div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.summary-list dt {
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
}

.summary-list dd {
  margin: 0;
  font-weight: 700;
}

.summary-note {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.recommendations-section,
.methodology-section,
.notice-section {
  scroll-margin-top: 76px;
}

.recommendations-section {
  padding: 92px 0 108px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.62fr);
  gap: 56px;
  align-items: end;
  margin-bottom: 40px;
}

.section-heading h2,
.notice-grid h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.4;
  letter-spacing: 0.015em;
}

.section-heading > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.weekly-editorial-content {
  margin: 0 0 28px;
  padding: 26px 28px;
  border: 1px solid #bfd8d2;
  border-radius: var(--radius);
  background: linear-gradient(120deg, #eef7f4 0%, #fbf5e9 100%);
}

.weekly-editorial-content .eyebrow {
  margin-bottom: 8px;
}

.weekly-editorial-content .static-weekend-label {
  margin: 0 0 8px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 800;
}

.weekly-editorial-content h2 {
  margin: 0;
  color: var(--navy-deep);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.45;
}

.weekly-editorial-content > p:last-child {
  margin: 10px 0 0;
  color: #365163;
  font-size: 14px;
}

.share-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: -10px 0 28px;
}

.share-actions button {
  min-height: 44px;
  padding: 9px 16px;
  border: 1px solid var(--teal);
  border-radius: 8px;
  background: var(--surface);
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.share-actions button:first-child {
  background: var(--teal);
  color: var(--surface);
}

.share-actions button:hover {
  background: var(--teal-dark);
  color: var(--surface);
}

#share-status {
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 700;
}

#share-status.share-status-error {
  color: var(--red);
}

.share-copy-fallback {
  flex: 1 1 100%;
  display: grid;
  gap: 4px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 700;
}

.share-copy-fallback input {
  width: 100%;
  min-height: 44px;
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--surface);
  color: var(--ink);
  font-size: 12px;
}

.static-weekly-content {
  margin-bottom: 30px;
}

.js .static-weekly-content[data-weekly-static="true"]:not(.static-state-confirmed) {
  display: none;
}

.static-recommendations-grid {
  margin-top: 26px;
}

.fixture-notice {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin: -10px 0 28px;
  padding: 14px 18px;
  border: 1px solid #dcb578;
  border-radius: 10px;
  background: var(--gold-pale);
  color: #714619;
  font-size: 13px;
}

.fixture-notice strong {
  flex: none;
}

.status-panel {
  min-height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  text-align: left;
}

.status-panel h3 {
  margin: 0 0 6px;
  color: var(--navy);
  font-size: 19px;
}

.status-panel p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.status-panel-error {
  border-color: #e7c4c4;
  background: #fffafa;
}

.loading-indicator {
  width: 38px;
  height: 38px;
  flex: none;
  border: 3px solid #d9e8e5;
  border-top-color: var(--teal);
  border-radius: 50%;
  animation: spin 800ms linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.retry-button {
  margin-top: 18px;
  padding: 9px 16px;
  border: 1px solid var(--navy);
  border-radius: 7px;
  background: var(--surface);
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.recommendations-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.recommendation-card {
  position: relative;
  scroll-margin-top: 92px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.recommendation-card::before {
  display: block;
  height: 5px;
  background: linear-gradient(90deg, var(--teal) 0%, #54a999 100%);
  content: "";
}

.weekly-hotel-spotlight {
  display: block;
  color: inherit;
  text-decoration: none;
  background: #f8faf9;
  border-bottom: 1px solid #e5eaeb;
}

.weekly-hotel-image-frame {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #eef3f2;
}

.weekly-hotel-image-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 180ms ease;
}

.weekly-hotel-image-frame img[src*="/HIMG/90/"] {
  padding: 18px;
  background: #f5f8f7;
  object-fit: contain;
}

.weekly-hotel-caption {
  display: grid;
  gap: 5px;
  padding: 14px 28px 16px;
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.55;
}

.weekly-hotel-caption strong {
  color: var(--navy-deep);
  font-size: 16px;
  line-height: 1.45;
}

.weekly-hotel-kicker {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  color: var(--teal-dark);
  font-weight: 800;
}

.weekly-hotel-spotlight:hover .weekly-hotel-image-frame img {
  transform: scale(1.015);
}

.weekly-hotel-spotlight:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: -3px;
}

.card-header,
.card-body,
.booking-area {
  padding-right: 28px;
  padding-left: 28px;
}

.card-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 26px;
  padding-bottom: 22px;
  border-bottom: 1px solid #e9edee;
}

.destination-heading {
  display: flex;
  gap: 15px;
  min-width: 0;
}

.rank-badge {
  width: 42px;
  height: 42px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--surface);
  font-size: 13px;
  font-weight: 800;
}

.destination-prefecture {
  margin: 0 0 2px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
}

.destination-name {
  margin: 0;
  color: var(--navy-deep);
  font-size: 24px;
  line-height: 1.4;
}

.score-badge {
  flex: none;
  align-self: flex-start;
  padding: 6px 10px;
  border-radius: 7px;
  background: var(--teal-pale);
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 800;
}

.card-body {
  flex: 1;
  padding-top: 24px;
  padding-bottom: 26px;
}

.recommendation-summary {
  margin: 0 0 22px;
  color: #334b5d;
  font-size: 15px;
}

.promotion-content {
  margin-bottom: 22px;
}

.promotion-headline {
  margin: 0;
  color: var(--navy-deep);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.5;
}

.promotion-verdict {
  margin: 8px 0 0;
  color: #365163;
  font-size: 13px;
}

.theme-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.theme-list li {
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--teal-pale);
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 800;
}

.traveler-fit {
  margin: 16px 0 0;
  padding: 12px 14px;
  border-left: 3px solid var(--gold);
  background: var(--gold-pale);
  color: #60472b;
  font-size: 13px;
}

.traveler-fit strong {
  display: block;
  margin-bottom: 2px;
  color: #85551d;
  font-size: 11px;
}

.promotion-highlights {
  margin-top: 18px;
}

.promotion-highlights h4,
.trip-plan h4 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 13px;
}

.promotion-highlights ul,
.trip-plan ul {
  margin: 0;
  padding-left: 20px;
  color: #334b5d;
  font-size: 13px;
}

.trip-plan {
  margin-top: 18px;
  border: 1px solid #dce5e5;
  border-radius: 10px;
  background: #fbfcfb;
}

.trip-plan > summary {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 9px 14px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.trip-plan[open] > summary {
  border-bottom: 1px solid #e3e9e9;
}

.trip-plan dl,
.trip-plan > h4,
.trip-plan > ul,
.trip-plan > a {
  margin-right: 14px;
  margin-left: 14px;
}

.trip-plan dl {
  margin-top: 14px;
  margin-bottom: 14px;
}

.trip-plan dl > div {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 10px;
  padding: 7px 0;
  font-size: 12px;
}

.trip-plan dt {
  color: var(--ink-soft);
  font-weight: 800;
}

.trip-plan dd {
  margin: 0;
  color: var(--ink);
}

.official-tourism-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  margin-top: 14px;
  margin-bottom: 14px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 800;
}

.weekly-evidence {
  margin-top: 18px;
  border: 1px solid #d8e1e3;
  border-radius: 10px;
  background: #f6f9f8;
}

.weekly-evidence > summary {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 9px 14px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.weekly-evidence[open] > summary {
  border-bottom: 1px solid #dfe7e8;
}

.weekly-evidence-list {
  margin: 8px 14px 0;
}

.weekly-evidence-list > div {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid #e2e9e9;
  font-size: 11px;
  line-height: 1.6;
}

.weekly-evidence-list dt {
  color: var(--ink-soft);
  font-weight: 800;
}

.weekly-evidence-list dd {
  min-width: 0;
  margin: 0;
  color: #334b5d;
  overflow-wrap: anywhere;
}

.weekly-evidence-sources {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 12px;
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
}

.weekly-evidence-sources a {
  color: var(--teal-dark);
  font-weight: 700;
}

.weekly-evidence-note {
  margin: 10px 14px 14px;
  color: var(--ink-soft);
  font-size: 10px;
  line-height: 1.65;
}

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

.metric-card {
  padding: 18px;
  border: 1px solid #e1e7e8;
  border-radius: 12px;
  background: #fafbfa;
}

.metric-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin: 0 0 12px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 800;
}

.price-main {
  margin: 0;
  color: var(--navy-deep);
  font-size: 25px;
  font-weight: 800;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.price-main small {
  margin-left: 4px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 600;
}

.discount-label,
.historical-deal-label,
.confidence-label,
.quality-label {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
}

.discount-label {
  margin-top: 8px;
  padding: 6px 9px;
  background: var(--gold-pale);
  color: #8a5418;
}

.historical-deal-label,
.historical-deal-fact {
  color: #155d45;
  background: #e6f6ee;
  border-color: #a8dbc4;
}

.historical-deal-label {
  margin-top: 8px;
  padding: 6px 9px;
}

.historical-deal-fact {
  border-width: 1px;
  border-style: solid;
}

.quality-label,
.confidence-label {
  padding: 5px 7px;
  background: #e9edef;
  color: #455b6b;
}

.weather-summary {
  margin: 0;
  color: var(--navy-deep);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.4;
}

.weather-detail,
.comparison-note {
  margin: 7px 0 0;
  color: var(--ink-soft);
  font-size: 11px;
}

.daily-weather-list {
  display: grid;
  gap: 6px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.daily-weather-list li {
  display: grid;
  gap: 1px;
  padding-top: 7px;
  border-top: 1px solid #e1e7e8;
  color: #365163;
  font-size: 11px;
}

.daily-weather-list strong {
  color: var(--navy);
  font-size: 12px;
}

.static-fact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.static-fact-grid p {
  margin: 0;
  padding: 12px;
  border: 1px solid #e1e7e8;
  border-radius: 10px;
  background: #fafbfa;
  color: var(--navy-deep);
  font-size: 13px;
  font-weight: 800;
}

.static-fact-grid strong {
  display: block;
  margin-bottom: 3px;
  color: var(--ink-soft);
  font-size: 10px;
}

.detail-block {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e9edee;
}

.detail-block h4 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 13px;
}

.breakdown-list {
  margin: 0;
}

.breakdown-list > div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 4px 0;
  color: var(--ink-soft);
  font-size: 12px;
}

.breakdown-list dt,
.breakdown-list dd {
  margin: 0;
}

.breakdown-list dt {
  flex: 0 0 126px;
}

.breakdown-list dd {
  min-width: 0;
  color: var(--ink);
  font-weight: 700;
  overflow-wrap: anywhere;
  text-align: right;
}

.breakdown-list .breakdown-total {
  margin-top: 6px;
  padding-top: 10px;
  border-top: 1px solid #dfe5e7;
  color: var(--navy);
  font-weight: 800;
}

.reason-list {
  margin: 0;
  padding-left: 20px;
  color: #334b5d;
  font-size: 13px;
}

.reason-list li + li {
  margin-top: 5px;
}

.warning-list {
  margin: 18px 0 0;
  padding: 12px 14px 12px 32px;
  border-left: 3px solid #d59a55;
  background: #fff8ee;
  color: #704d27;
  font-size: 12px;
}

.warning-list li + li {
  margin-top: 4px;
}

.booking-area {
  padding-top: 22px;
  padding-bottom: 26px;
  border-top: 1px solid #e5eaeb;
  background: #f9fbfa;
}

.booking-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.booking-heading h4 {
  margin: 0;
  color: var(--navy);
  font-size: 13px;
}

.ad-label {
  padding: 3px 7px;
  border: 1px solid #aebbc2;
  border-radius: 4px;
  color: #526774;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
}

.booking-links {
  display: grid;
  gap: 9px;
}

.booking-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 48px;
  padding: 10px 16px;
  border: 1px solid var(--teal);
  border-radius: 8px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.booking-link-copy {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.booking-product,
.booking-cta-type {
  display: block;
  width: fit-content;
  padding: 2px 6px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
  line-height: 1.2;
  opacity: 0.84;
}

.booking-link-label {
  overflow-wrap: anywhere;
}

.booking-price,
.booking-price-copy {
  display: block;
  font-size: 11px;
  font-weight: 700;
  opacity: 0.88;
}

.booking-link:first-child {
  background: var(--teal);
  color: var(--surface);
}

.booking-link::after {
  flex: none;
  content: "↗";
}

.booking-link:hover {
  background: var(--teal-dark);
  color: var(--surface);
  transform: translateY(-1px);
}

.booking-program {
  display: block;
  margin-top: 2px;
  font-size: 10px;
  font-weight: 500;
  opacity: 0.76;
}

.booking-note {
  margin: 11px 0 0;
  color: var(--ink-soft);
  font-size: 10px;
}

.demo-booking-notice,
.no-booking-notice {
  margin: 0;
  padding: 13px 15px;
  border: 1px solid #dfc08e;
  border-radius: 8px;
  background: var(--gold-pale);
  color: #704817;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.no-booking-notice {
  border-color: var(--line);
  background: var(--surface-soft);
  color: var(--ink-soft);
}

/* Destination directory and evergreen destination guides */
.destination-directory-section {
  scroll-margin-top: 76px;
  padding: 92px 0 104px;
  border-top: 1px solid #e4e9ea;
  background:
    radial-gradient(circle at 94% 12%, rgba(22, 122, 106, 0.09), transparent 28%),
    linear-gradient(180deg, #f9fbfa 0%, var(--surface-soft) 100%);
}

.destination-directory-grid,
.related-destination-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin: 28px 0 0;
}

.destination-directory-card,
.related-destination-card {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 24px 52px 24px 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  color: inherit;
  box-shadow: 0 12px 30px rgba(23, 53, 79, 0.07);
  text-decoration: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.destination-card-guide-link {
  position: relative;
  min-width: 0;
  display: flex;
  flex: 1;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}

.destination-card-guide-link::after,
.related-destination-card::after {
  position: absolute;
  top: 0;
  right: -30px;
  color: var(--teal-dark);
  content: "→";
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  transition: transform 160ms ease;
}

.related-destination-card::after {
  top: 24px;
  right: 22px;
}

.destination-card-hotel-mount:empty,
.destination-hotels-mount:empty {
  display: none;
}

[data-evergreen-hotel-module]:not([data-runtime-authorized="true"]) {
  display: none !important;
}

.destination-card-hotel-mount:not(:empty) {
  margin: 0 -28px 20px 0;
}

.destination-card-hotel-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.destination-card-hotel-image {
  margin: 0;
}

.destination-card-hotel-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  display: block;
  border: 1px solid #e6ebec;
  border-radius: 10px;
  background: #f8faf9;
  object-fit: contain;
}

.destination-card-hotel-image figcaption {
  margin-top: 7px;
  color: var(--ink-soft);
  font-size: 10px;
  line-height: 1.45;
}

.destination-directory-card h2,
.destination-directory-card h3,
.related-destination-card h2,
.related-destination-card h3 {
  margin: 3px 0 9px;
  color: var(--navy-deep);
  font-size: 20px;
  line-height: 1.45;
}

.destination-directory-card p,
.related-destination-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.destination-directory-card .destination-prefecture,
.related-destination-card .destination-prefecture,
.destination-card-prefecture {
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.destination-directory-card .destination-theme-list,
.related-destination-card .destination-theme-list {
  margin-top: auto;
  padding-top: 18px;
}

.destination-card-themes {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: auto 0 0;
  padding: 18px 0 0;
  list-style: none;
}

.destination-card-themes li {
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--teal-pale);
  color: var(--teal-dark);
  font-size: 10px;
  font-weight: 800;
}

.destination-detail-link {
  color: inherit;
  text-decoration-color: rgba(22, 122, 106, 0.35);
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
  transition: color 160ms ease, text-decoration-color 160ms ease;
}

.destination-detail-link:hover {
  color: var(--teal-dark);
  text-decoration-color: currentColor;
}

.destination-main {
  min-height: calc(100vh - 202px);
  padding-bottom: 84px;
  background:
    radial-gradient(circle at 100% 52%, rgba(22, 122, 106, 0.06), transparent 30%),
    var(--surface-soft);
}

.destination-breadcrumbs {
  padding: 20px 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.destination-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.destination-breadcrumbs li {
  min-width: 0;
  overflow-wrap: anywhere;
}

.destination-breadcrumbs li:not(:last-child)::after {
  margin-left: 7px;
  color: #9aa7ae;
  content: "/";
}

.destination-breadcrumbs a {
  color: var(--teal-dark);
  font-weight: 700;
  text-underline-offset: 3px;
}

.destination-hero {
  position: relative;
  overflow: hidden;
  padding: 70px 0 74px;
  background:
    linear-gradient(112deg, rgba(13, 38, 59, 0.99) 0%, rgba(23, 53, 79, 0.97) 58%, rgba(18, 86, 83, 0.94) 100%);
  color: var(--surface);
}

.destination-hero::before,
.destination-hero::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.destination-hero::before {
  width: 380px;
  height: 380px;
  top: -230px;
  right: -70px;
}

.destination-hero::after {
  width: 260px;
  height: 260px;
  right: 170px;
  bottom: -210px;
}

.destination-hero .container {
  position: relative;
  z-index: 1;
}

.destination-hero .eyebrow {
  color: #91d3c7;
}

.destination-hero h1 {
  max-width: 820px;
  margin: 0;
  color: var(--surface);
  font-size: clamp(36px, 6vw, 62px);
  line-height: 1.25;
  letter-spacing: 0.02em;
}

.destination-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
}

.destination-theme-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.destination-theme-list li {
  padding: 5px 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  color: inherit;
  font-size: 12px;
  font-weight: 800;
}

.destination-directory-card .destination-theme-list li,
.related-destination-card .destination-theme-list li {
  border-color: #c7ded9;
  background: var(--teal-pale);
  color: var(--teal-dark);
}

.destination-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  gap: 30px;
  align-items: start;
  padding-top: 46px;
}

.destination-stack {
  min-width: 0;
  display: grid;
  gap: 24px;
}

.destination-layout > aside.destination-stack {
  position: sticky;
  top: 100px;
}

.destination-panel {
  min-width: 0;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 14px 36px rgba(23, 53, 79, 0.07);
}

.destination-panel h2,
.destination-panel h3 {
  margin-top: 0;
  margin-bottom: 16px;
  color: var(--navy);
  line-height: 1.45;
}

.destination-panel h2 {
  font-size: clamp(21px, 3vw, 28px);
}

.destination-panel h3 {
  font-size: 18px;
}

.destination-panel p,
.destination-panel li,
.destination-panel dd {
  overflow-wrap: anywhere;
}

.destination-panel > p,
.destination-panel > ul {
  color: #334b5d;
}

.destination-panel > ul {
  padding-left: 21px;
}

.destination-panel > ul li::marker {
  color: var(--teal);
}

.destination-panel p:last-child,
.destination-panel ul:last-child,
.destination-panel dl:last-child {
  margin-bottom: 0;
}

.destination-panel li + li {
  margin-top: 8px;
}

.destination-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 22px;
}

.destination-facts div {
  min-width: 0;
  padding: 15px;
  border: 1px solid #e6ebec;
  border-radius: 10px;
  background: #f8faf9;
}

.destination-facts dt {
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 800;
}

.destination-facts dd {
  margin: 4px 0 0;
  color: var(--navy-deep);
  font-size: 14px;
  font-weight: 800;
}

.destination-itinerary {
  display: grid;
  gap: 18px;
  margin: 0;
}

.destination-itinerary div {
  position: relative;
  min-width: 0;
  padding: 2px 0 2px 22px;
  border-left: 3px solid var(--teal);
}

.destination-itinerary dt {
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 800;
}

.destination-itinerary dd {
  margin: 5px 0 0;
  color: #334b5d;
  font-size: 14px;
}

.destination-source-list {
  margin: 0;
  padding-left: 20px;
  color: var(--ink-soft);
  font-size: 13px;
}

.destination-source-list a,
.destination-official-link {
  color: var(--teal-dark);
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.destination-source-list a {
  overflow-wrap: anywhere;
}

.destination-official-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  margin-top: 8px;
}

.destination-official-link::after {
  content: "↗";
  text-decoration: none;
}

.destination-weekly {
  position: relative;
  overflow: hidden;
  border-color: #d8b878;
  background:
    linear-gradient(130deg, rgba(255, 255, 255, 0.82), rgba(251, 241, 227, 0.94)),
    var(--gold-pale);
}

[data-weekly-destination-module][data-runtime-authorization-required="true"]:not([data-runtime-authorized="true"]) {
  display: none !important;
}

.destination-weekly::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--gold);
  content: "";
}

.destination-weekly .eyebrow {
  color: #86531b;
}

.destination-weekly .booking-heading .eyebrow {
  margin: 0;
}

.destination-weekly-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 20px 0;
}

.destination-weekly-meta p {
  min-width: 0;
  margin: 0;
  padding: 13px;
  border: 1px solid rgba(183, 120, 46, 0.16);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--navy-deep);
  font-size: 13px;
}

.destination-weekly-meta strong {
  display: block;
  margin-bottom: 3px;
  color: #76502a;
  font-size: 10px;
  letter-spacing: 0.03em;
}

.destination-weekly .booking-area {
  margin: 24px -30px -30px;
  background: rgba(255, 255, 255, 0.68);
}

.destination-weekly .ad-label {
  border-color: #8b704c;
  background: var(--surface);
  color: #60472b;
}

.destination-weekly .booking-links {
  margin-top: 22px;
}

.destination-weekly .booking-note {
  color: #655239;
  line-height: 1.65;
}

.destination-weekly .weekly-evidence {
  border-color: rgba(139, 112, 76, 0.28);
  background: rgba(255, 255, 255, 0.72);
}

.destination-hotels-mount {
  padding-top: 52px;
}

.destination-hotels {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 14px 36px rgba(23, 53, 79, 0.07);
}

.destination-hotels-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.destination-hotels-heading .eyebrow {
  margin-bottom: 9px;
}

.destination-hotels-heading h2 {
  max-width: 820px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(22px, 3vw, 31px);
  line-height: 1.4;
}

.destination-hotels-heading .ad-label {
  flex: 0 0 auto;
}

.destination-hotels-scope {
  max-width: 900px;
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.75;
}

.destination-flight-package {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px 24px;
  margin-top: 24px;
  padding: 20px;
  border: 1px solid #dfc08e;
  border-radius: 12px;
  background: var(--gold-pale);
}

.destination-flight-package .eyebrow {
  margin-bottom: 7px;
  color: #71522f;
}

.destination-flight-package h3,
.destination-flight-package p {
  margin: 0;
}

.destination-flight-package h3 {
  color: var(--navy-deep);
  font-size: 20px;
}

.destination-flight-package div > p:last-child,
.destination-flight-package-note {
  margin-top: 7px;
  color: #655239;
  font-size: 12px;
  line-height: 1.65;
}

.destination-flight-package-note {
  grid-column: 1 / -1;
}

.destination-flight-package-note span {
  display: block;
}

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

.evergreen-hotel-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fbfcfc;
}

.evergreen-hotel-image {
  margin: 0;
  padding: 12px 12px 0;
  background: var(--surface);
}

.evergreen-hotel-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  display: block;
  background: #f5f7f7;
  object-fit: contain;
}

.evergreen-hotel-card-body {
  padding: 18px;
}

.evergreen-hotel-rank {
  margin: 0 0 7px;
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.evergreen-hotel-card h3 {
  min-height: 3em;
  margin: 0;
  color: var(--navy-deep);
  font-size: 17px;
  line-height: 1.5;
}

.evergreen-hotel-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 16px 0;
}

.evergreen-hotel-facts div {
  min-width: 0;
  padding: 10px;
  border: 1px solid #e6ebec;
  border-radius: 8px;
  background: var(--surface);
}

.evergreen-hotel-facts dt {
  color: var(--ink-soft);
  font-size: 9px;
  font-weight: 800;
}

.evergreen-hotel-facts dd {
  margin: 3px 0 0;
  color: var(--navy-deep);
  font-size: 12px;
  font-weight: 800;
}

.evergreen-hotel-cta,
.destination-flight-package-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 13px;
  border-radius: 8px;
  background: var(--teal-dark);
  color: var(--surface);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
}

.destination-hotels-disclosure {
  margin: 22px 0 0;
  padding: 14px 16px;
  border: 1px solid #dfc08e;
  border-radius: 9px;
  background: var(--gold-pale);
  color: #655239;
  font-size: 12px;
  line-height: 1.65;
}

.rakuten-developers-credit {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 11px;
  text-align: right;
}

.destination-related {
  padding-top: 52px;
}

.destination-related > h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.4;
}

.destination-directory {
  min-height: calc(100vh - 202px);
  padding: 54px 0 94px;
  background:
    radial-gradient(circle at 92% 8%, rgba(22, 122, 106, 0.09), transparent 26%),
    var(--surface-soft);
}

.destination-directory h1 {
  max-width: 840px;
  margin: 0;
  color: var(--navy-deep);
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.3;
}

.destination-directory-lead {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 16px;
}

@media (hover: hover) {
  .destination-directory-card:hover,
  .related-destination-card:hover {
    border-color: #8abeb4;
    box-shadow: 0 18px 38px rgba(23, 53, 79, 0.12);
    transform: translateY(-3px);
  }

  .destination-directory-card:hover .destination-card-guide-link::after,
  .related-destination-card:hover::after {
    transform: translateX(3px);
  }

  .destination-card-hotel-link:hover img {
    border-color: #8abeb4;
  }

  .evergreen-hotel-cta:hover,
  .destination-flight-package-cta:hover {
    background: var(--navy);
  }

  .destination-source-list a:hover,
  .destination-official-link:hover,
  .destination-breadcrumbs a:hover {
    color: var(--navy);
  }
}

.methodology-section {
  padding: 92px 0;
  background: var(--navy-deep);
  color: var(--surface);
}

.section-heading-light h2,
.section-heading-light > p {
  color: var(--surface);
}

.section-heading-light > p {
  opacity: 0.68;
}

.methodology-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  overflow: hidden;
  list-style: none;
}

.methodology-list li {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  background: rgba(255, 255, 255, 0.045);
}

.method-number {
  color: #7ec5b8;
  font-size: 13px;
  font-weight: 800;
}

.methodology-list h3 {
  margin: 0 0 8px;
  font-size: 19px;
}

.methodology-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.notice-section {
  padding: 82px 0;
  background: var(--surface);
}

.notice-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 80px;
}

.notice-content {
  padding-left: 32px;
  border-left: 3px solid var(--teal);
  color: var(--ink-soft);
  font-size: 13px;
}

.notice-content p {
  margin: 0;
}

.notice-content p + p {
  margin-top: 16px;
}

.site-footer {
  padding: 42px 0;
  background: #0a2032;
  color: rgba(255, 255, 255, 0.6);
}

.footer-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  font-size: 12px;
}

.footer-inner p {
  margin: 0;
}

.footer-brand {
  margin-bottom: 5px !important;
  color: var(--surface);
  font-size: 15px;
  font-weight: 800;
}

.copyright {
  white-space: nowrap;
}

.not-found-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px 24px;
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  color: var(--surface);
  text-align: center;
}

.not-found-page section {
  width: min(100%, 620px);
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.not-found-page h1 {
  margin: 0;
  font-size: clamp(30px, 6vw, 48px);
}

.not-found-page p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .research-summary {
    max-width: 620px;
  }

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

  .section-heading,
  .notice-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .methodology-list {
    grid-template-columns: 1fr;
  }

  .methodology-list li {
    min-height: 170px;
  }

  .notice-content {
    padding-top: 4px;
  }

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

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

  .destination-layout > aside.destination-stack {
    position: static;
  }

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

  .evergreen-hotel-card {
    display: grid;
    grid-template-columns: minmax(180px, 0.8fr) minmax(0, 1.2fr);
  }

  .evergreen-hotel-image {
    padding: 12px;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .header-inner {
    min-height: 68px;
  }

  .brand-subtitle,
  .primary-nav {
    display: none;
  }

  .hero {
    padding: 64px 0 70px;
  }

  .hero-grid {
    gap: 38px;
  }

  .hero h1 {
    font-size: clamp(38px, 12.5vw, 54px);
  }

  .hero-lead {
    font-size: 15px;
  }

  .research-summary {
    padding: 22px;
  }

  .summary-list > div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .recommendations-section,
  .methodology-section {
    padding: 68px 0 76px;
  }

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

  .fixture-notice {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .status-panel {
    min-height: 200px;
    flex-direction: column;
    padding: 30px 24px;
    text-align: center;
  }

  .card-header,
  .card-body,
  .booking-area {
    padding-right: 20px;
    padding-left: 20px;
  }

  .weekly-hotel-caption {
    padding: 13px 20px 15px;
  }

  .weekly-hotel-caption strong {
    font-size: 15px;
  }

  .weekly-hotel-image-frame img[src*="/HIMG/90/"] {
    padding: 12px;
  }

  .card-header {
    flex-direction: column;
  }

  .score-badge {
    margin-left: 57px;
  }

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

  .weekly-editorial-content {
    padding: 22px 20px;
  }

  .share-actions button {
    flex: 1 1 150px;
  }

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

  .breakdown-list > div {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2px;
    padding: 7px 0;
  }

  .breakdown-list dt {
    color: var(--ink-soft);
    font-weight: 700;
  }

  .breakdown-list dd {
    text-align: left;
  }

  .weekly-evidence-list > div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .methodology-list li {
    min-height: 160px;
    padding: 24px;
  }

  .notice-section {
    padding: 64px 0;
  }

  .notice-content {
    padding-left: 20px;
  }

  .destination-directory-section {
    padding: 68px 0 76px;
  }

  .destination-directory-grid,
  .related-destination-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .destination-directory-card,
  .related-destination-card {
    padding: 21px 48px 21px 20px;
  }

  .related-destination-card::after {
    top: 22px;
    right: 19px;
  }

  .destination-card-guide-link::after {
    right: -28px;
  }

  .destination-card-hotel-mount:not(:empty) {
    margin-right: -26px;
  }

  .destination-main {
    padding-bottom: 64px;
  }

  .destination-breadcrumbs {
    padding: 15px 0;
    font-size: 12px;
  }

  .destination-hero {
    padding: 54px 0 58px;
  }

  .destination-hero p:not(.eyebrow) {
    font-size: 15px;
  }

  .destination-layout {
    gap: 20px;
    padding-top: 30px;
  }

  .destination-stack {
    gap: 20px;
  }

  .destination-panel {
    padding: 22px 20px;
  }

  .destination-hotels-mount {
    padding-top: 38px;
  }

  .destination-hotels {
    padding: 24px 20px;
  }

  .destination-hotels-heading {
    gap: 14px;
  }

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

  .destination-flight-package-note {
    grid-column: auto;
  }

  .evergreen-hotel-card {
    display: block;
  }

  .destination-facts,
  .destination-weekly-meta {
    grid-template-columns: 1fr;
  }

  .destination-weekly .booking-area {
    margin: 22px -20px -22px;
  }

  .destination-directory {
    padding: 42px 0 70px;
  }

  .destination-related {
    padding-top: 38px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }
}

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

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