:root {
  --bg-page: #f8f9fa;
  --bg-muted: #f1f4f5;
  --bg-soft: #ebeef0;
  --bg-footer: #f8fafc;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --surface-white: #ffffff;
  --text-strong: #2d3335;
  --text-body: #5a6062;
  --text-muted: #767c7e;
  --text-dim: #64748b;
  --text-quiet: #6b7280;
  --brand: #00697a;
  --brand-deep: #00515f;
  --brand-bright: #88e1f8;
  --border-soft: #e5e9eb;
  --border-muted: #dee3e6;
  --border-subtle: #f1f5f9;
  --shadow-soft: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-search: 0 20px 25px -5px rgba(0, 105, 122, 0.1),
    0 8px 10px -6px rgba(0, 105, 122, 0.1);
  --radius-card: 24px;
  --radius-tile: 20px;
  --radius-chip: 12px;
  --radius-pill: 999px;
  --radius-icon: 16px;
  --shell-max: 1536px;
  --blog-shell-max: 1280px;
  --shell-pad: clamp(1rem, 2.5vw, 2rem);
  --space-section: clamp(4.5rem, 8vw, 7rem);
  --font-display: "Manrope", sans-serif;
  --font-body: "Inter", sans-serif;
  --font-editorial: "Cormorant Garamond", "Times New Roman", serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg-page);
  color: var(--text-strong);
}

body.mobile-nav-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

button {
  border: 0;
  background: none;
  cursor: pointer;
}

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

.site-shell {
  width: min(100%, var(--shell-max));
  margin-inline: auto;
  padding-inline: var(--shell-pad);
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--brand);
  font-size: 0.75rem;
  line-height: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(6px);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.header-row {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.header-main {
  display: flex;
  align-items: center;
  gap: 3rem;
  min-width: 0;
}

.site-brand {
  color: var(--brand);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 2rem;
  letter-spacing: -0.05em;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.site-nav a {
  position: relative;
  color: var(--text-dim);
  font-family: var(--font-display);
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  letter-spacing: -0.025em;
  padding-bottom: 0.5rem;
  white-space: nowrap;
}

.site-nav a.is-active {
  color: var(--brand);
}

.site-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--brand);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
  flex: none;
}

.header-search {
  width: 16rem;
  position: relative;
  flex: none;
}

.header-search input {
  width: 100%;
  border: 0;
  outline: 0;
  padding: 0.5625rem 1rem 0.625rem 2.5rem;
  border-radius: var(--radius-pill);
  background: var(--border-muted);
  color: var(--text-quiet);
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.header-search input::placeholder {
  color: var(--text-quiet);
}

.header-search img {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  width: 0.625rem;
  height: 0.625rem;
  transform: translateY(-50%);
  object-fit: contain;
}

.mobile-nav-toggle,
.mobile-nav-panel {
  display: none;
}

.mobile-nav-toggle {
  align-items: center;
  gap: 0.875rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(0, 105, 122, 0.14);
  background: rgba(255, 255, 255, 0.88);
  color: var(--text-strong);
  font-family: var(--font-display);
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 700;
}

.mobile-nav-toggle-bars {
  display: grid;
  gap: 0.25rem;
}

.mobile-nav-toggle-bars span,
.mobile-nav-close span {
  display: block;
  width: 1rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.mobile-nav-panel {
  position: fixed;
  inset: 0;
  z-index: 60;
}

.mobile-nav-panel[hidden] {
  display: none !important;
}

.mobile-nav-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 29, 32, 0.42);
  backdrop-filter: blur(8px);
}

.mobile-nav-dialog {
  position: relative;
  margin-left: auto;
  width: min(100%, 24rem);
  min-height: 100dvh;
  padding: 1.5rem;
  display: grid;
  align-content: start;
  gap: 1.75rem;
  background: rgba(249, 251, 252, 0.96);
  box-shadow: -2rem 0 3rem rgba(20, 29, 32, 0.12);
}

.mobile-nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.mobile-nav-head p {
  color: var(--brand);
  font-family: var(--font-display);
  font-size: 0.75rem;
  line-height: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.mobile-nav-close {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--text-strong);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.mobile-nav-close span:first-child {
  transform: translateY(1px) rotate(45deg);
}

.mobile-nav-close span:last-child {
  transform: translateY(-1px) rotate(-45deg);
}

.mobile-nav-links {
  display: grid;
  gap: 0.5rem;
}

.mobile-nav-links a {
  padding: 1rem 1.125rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.78);
  color: var(--text-strong);
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.375rem;
  font-weight: 700;
  border: 1px solid rgba(173, 179, 181, 0.14);
}

.mobile-nav-links a.is-active {
  background: linear-gradient(135deg, rgba(136, 225, 248, 0.35), rgba(255, 255, 255, 0.95));
  color: var(--brand-deep);
  border-color: rgba(0, 105, 122, 0.16);
}

.mobile-nav-search {
  position: relative;
}

.mobile-nav-search input {
  width: 100%;
  border: 0;
  outline: 0;
  padding: 0.875rem 1rem 0.875rem 2.75rem;
  border-radius: 1rem;
  background: #fff;
  color: var(--text-quiet);
  font-size: 0.9375rem;
  line-height: 1.25rem;
  box-shadow: var(--shadow-soft);
}

.mobile-nav-search img {
  position: absolute;
  left: 1rem;
  top: 50%;
  width: 0.75rem;
  height: 0.75rem;
  transform: translateY(-50%);
}

.text-button {
  color: var(--text-dim);
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
}

.pill-button,
.pill-button-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.pill-button {
  padding: 0.625rem 1.5rem;
  background: var(--brand);
  color: #effbff;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 700;
}

.pill-button-outline {
  padding: 0.5625rem 1.5625rem;
  border: 1px solid var(--brand);
  color: var(--brand);
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 700;
}

.site-footer {
  background: var(--bg-footer);
  border-top: 1px solid var(--border-subtle);
  padding: 5rem 0;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.footer-brand {
  display: grid;
  gap: 0.5rem;
  width: min(100%, 24.75rem);
}

.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 2rem;
  letter-spacing: -0.025em;
  color: #0f172a;
}

.footer-brand p,
.footer-links a {
  color: var(--text-dim);
  font-size: 0.75rem;
  line-height: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-social a {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: var(--bg-soft);
  display: grid;
  place-items: center;
}

.footer-social img {
  width: 0.75rem;
  height: 0.75rem;
  object-fit: contain;
}

.contact-page {
  padding: 4rem 0 5rem;
}

.contact-shell {
  display: grid;
  gap: 3rem;
}

.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(20rem, 0.85fr);
  gap: 2rem;
  align-items: stretch;
}

.contact-hero-copy,
.contact-hero-card,
.contact-info-card,
.contact-form-card {
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(173, 179, 181, 0.12);
  box-shadow: 0 1.25rem 2.5rem rgba(22, 34, 39, 0.06);
}

.contact-hero-copy {
  padding: clamp(2rem, 4vw, 3.5rem);
  display: grid;
  gap: 1.5rem;
}

.contact-hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 6vw, 4.75rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  max-width: 10ch;
}

.contact-hero-copy p {
  max-width: 36rem;
  color: var(--text-body);
  font-size: 1.0625rem;
  line-height: 1.8rem;
}

.contact-hero-card {
  padding: 2rem;
  display: grid;
  gap: 1.25rem;
  background: linear-gradient(160deg, rgba(0, 105, 122, 0.92), rgba(11, 39, 48, 0.9));
  color: rgba(255, 255, 255, 0.9);
}

.contact-hero-card h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.9rem;
}

.contact-hero-card p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9375rem;
  line-height: 1.625rem;
}

.contact-highlight-list {
  display: grid;
  gap: 1rem;
}

.contact-highlight-list article {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-highlight-list strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.375rem;
}

.contact-highlight-list span {
  display: block;
  margin-top: 0.25rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8125rem;
  line-height: 1.375rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(18rem, 22rem) minmax(0, 1fr);
  gap: 2rem;
}

.contact-info-card,
.contact-form-card {
  padding: 2rem;
  display: grid;
  gap: 1.5rem;
}

.contact-card-head {
  display: grid;
  gap: 0.5rem;
}

.contact-card-head h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.9rem;
}

.contact-card-head p {
  color: var(--text-body);
  font-size: 0.9375rem;
  line-height: 1.625rem;
}

.contact-info-list {
  display: grid;
  gap: 1rem;
}

.contact-info-item {
  display: grid;
  gap: 0.25rem;
  padding: 1rem 0;
  border-top: 1px solid var(--border-soft);
}

.contact-info-item span {
  color: var(--text-muted);
  font-size: 0.75rem;
  line-height: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-info-item strong,
.contact-info-item a {
  color: var(--text-strong);
  font-family: var(--font-display);
  font-size: 0.95rem;
  line-height: 1.5rem;
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-field {
  display: grid;
  gap: 0.5rem;
}

.contact-field-full {
  grid-column: 1 / -1;
}

.contact-field span {
  color: var(--text-strong);
  font-size: 0.8125rem;
  line-height: 1rem;
  font-weight: 700;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  border: 1px solid var(--border-muted);
  border-radius: 1rem;
  background: #fff;
  padding: 0.95rem 1rem;
  color: var(--text-strong);
  font-size: 0.9375rem;
  line-height: 1.375rem;
  outline: 0;
}

.contact-field textarea {
  min-height: 10rem;
  resize: vertical;
}

.contact-submit {
  margin-top: 0.5rem;
  justify-self: start;
  padding: 0.95rem 1.5rem;
}

.policy-page {
  padding: 1.5rem 0 5.5rem;
}

.policy-shell {
  display: grid;
  gap: 1.5rem;
}

.policy-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(18rem, 0.9fr);
  gap: 1.5rem;
}

.policy-hero-copy,
.policy-summary-card,
.policy-content-card,
.policy-rail-card {
  border: 1px solid var(--border-soft);
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 60px rgba(10, 31, 46, 0.08);
}

.policy-hero-copy {
  padding: 2.25rem;
  display: grid;
  gap: 1rem;
}

.policy-hero-copy h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.policy-hero-copy p {
  margin: 0;
  max-width: 62ch;
  color: var(--text-body);
  font-size: 1rem;
  line-height: 1.75rem;
}

.policy-summary-card {
  padding: 2rem;
  display: grid;
  gap: 0.85rem;
  align-content: start;
}

.policy-summary-label {
  color: var(--text-muted);
  font-size: 0.75rem;
  line-height: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.policy-summary-card strong {
  color: var(--text-strong);
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.6rem;
}

.policy-summary-card p {
  margin: 0;
  color: var(--text-body);
  line-height: 1.7rem;
}

.policy-summary-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.policy-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(16rem, 0.75fr);
  gap: 1.5rem;
  align-items: start;
}

.policy-content-card {
  padding: 2.25rem;
  display: grid;
  gap: 2rem;
}

.policy-section {
  display: grid;
  gap: 1rem;
}

.policy-section + .policy-section {
  padding-top: 2rem;
  border-top: 1px solid var(--border-soft);
}

.policy-section h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.9rem;
}

.policy-section p,
.policy-section li {
  margin: 0;
  color: var(--text-body);
  line-height: 1.8rem;
}

.policy-section ul {
  margin: 0;
  padding-left: 1.25rem;
  display: grid;
  gap: 0.65rem;
}

.policy-rail {
  position: sticky;
  top: 6.5rem;
  display: grid;
  gap: 1rem;
}

.policy-rail-card {
  padding: 1.35rem;
  display: grid;
  gap: 0.85rem;
}

.policy-rail-card span {
  color: var(--text-muted);
  font-size: 0.75rem;
  line-height: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.policy-rail-card strong {
  color: var(--text-strong);
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.45rem;
}

.policy-rail-card p {
  margin: 0;
  color: var(--text-body);
  line-height: 1.65rem;
}

.policy-rail-card nav {
  display: grid;
  gap: 0.7rem;
}

.policy-rail-card nav a {
  color: var(--text-strong);
  text-decoration: none;
}

.policy-rail-card nav a:hover {
  color: var(--brand-primary);
}

.page-home .page {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.hero {
  position: relative;
  min-height: clamp(41rem, 67.96875vw, 54.375rem);
  display: grid;
  place-items: center;
  overflow: clip;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1.02);
}

.hero-overlay {
  background: linear-gradient(
    90deg,
    rgba(248, 249, 250, 0.82) 0%,
    rgba(248, 249, 250, 0.42) 50%,
    rgba(248, 249, 250, 0) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, 56rem);
  margin-inline: auto;
  padding-inline: var(--shell-pad);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}

.hero-copy {
  max-width: 42rem;
}

.page-home .hero .eyebrow {
  display: none;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.625vw, 4.5rem);
  line-height: clamp(3rem, 5.625vw, 4.5rem);
  letter-spacing: -0.05em;
  font-weight: 800;
}

.hero h1 span {
  display: block;
  color: var(--brand);
}

.hero-description {
  max-width: 41.125rem;
  padding-top: 1.5rem;
  color: var(--text-body);
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.search-bar {
  width: min(100%, 48rem);
  display: flex;
  align-items: stretch;
  gap: 0.5rem;
  padding: 0.5rem;
  border-radius: var(--radius-pill);
  background: var(--surface);
  backdrop-filter: blur(6px);
  box-shadow: var(--shadow-search);
}

.search-field {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
}

.search-field.has-divider {
  border-left: 1px solid var(--border-soft);
  padding-left: 1.5625rem;
}

.search-field img {
  flex: none;
  width: auto;
  height: 1.1875rem;
  object-fit: contain;
}

.search-field input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 0.6875rem 0.75rem 0.75rem;
  color: var(--text-strong);
  font-size: 1.125rem;
}

.search-field input::placeholder {
  color: var(--text-muted);
}

.search-button {
  flex: none;
  min-width: 8.875rem;
  padding: 1.21875rem 2.5rem;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, var(--brand), #005c6b);
  color: #effbff;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.section {
  padding-block: var(--space-section);
}

.section.destinations {
  padding-top: 0;
}

.section-head,
.section-copy {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.section-head {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 3.75vw, 3rem);
  line-height: clamp(2.5rem, 3.75vw, 3rem);
  letter-spacing: -0.05em;
  font-weight: 800;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  color: var(--brand);
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}

.link-arrow img {
  width: auto;
  height: 0.625rem;
  object-fit: contain;
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-areas:
    "main main main main main main sidea sidea sidea sideb sideb sideb"
    "main main main main main main sidea sidea sidea sidec sidec sidec"
    "tail tail tail tail tail tail tail tail tail tail tail tail";
  grid-template-rows: minmax(12.5rem, 15rem) minmax(12.5rem, 15rem) minmax(10.5rem, 12.5rem);
  gap: 1.5rem;
  margin-top: 4rem;
}

.destination-card {
  position: relative;
  overflow: clip;
  border-radius: var(--radius-card);
  color: #fff;
  min-height: 100%;
  background: #ebeef0;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.destination-card--layout-1 { grid-area: main; padding: 2rem; }
.destination-card--layout-2 { grid-area: sidea; }
.destination-card--layout-3 { grid-area: sideb; }
.destination-card--layout-4 { grid-area: sidec; }
.destination-card--layout-5 { grid-area: tail; padding: 1.75rem 2rem; }

.destination-card::before,
.hotel-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0) 55%,
    rgba(0, 0, 0, 0.6) 100%
  );
}

.destination-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.destination-card .card-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.25rem;
  max-width: min(100%, 24rem);
}

.destination-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 700;
}

.destination-card--layout-1 h3,
.destination-card--layout-5 h3 {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.destination-card p {
  opacity: 0.9;
  font-size: 0.75rem;
  line-height: 1rem;
}

.destination-card--layout-1 p,
.destination-card--layout-5 p {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.collections {
  background: var(--bg-muted);
  overflow: clip;
}

.collections .site-shell {
  display: grid;
  gap: 3rem;
}

.hotel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  padding-bottom: 3rem;
}

.hotel-card {
  position: relative;
  color: var(--text-strong);
}

.hotel-image {
  position: relative;
  min-height: 31.25rem;
  overflow: clip;
  border-radius: var(--radius-card);
}

.hotel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hotel-rating {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  background: var(--surface-strong);
  backdrop-filter: blur(4px);
  color: var(--text-strong);
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 700;
}

.hotel-rating img {
  width: auto;
  height: 0.9375rem;
  object-fit: contain;
}

.hotel-copy {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 1.5rem;
}

.hotel-copy-main {
  display: grid;
  gap: 0.25rem;
  min-width: 0;
}

.hotel-copy h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 700;
}

.hotel-location {
  display: inline-flex;
  align-items: center;
  gap: 0.125rem;
  color: var(--text-body);
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.hotel-location img {
  width: auto;
  height: 0.75rem;
  object-fit: contain;
}

.hotel-pricing {
  flex: none;
  display: grid;
  justify-items: end;
  color: var(--text-muted);
  font-size: 0.75rem;
  line-height: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hotel-pricing strong {
  display: inline-flex;
  align-items: baseline;
  gap: 0.125rem;
  text-transform: none;
  color: var(--brand);
  font-size: 1.5rem;
  line-height: 2rem;
  letter-spacing: 0;
}

.hotel-pricing span {
  color: var(--text-body);
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 400;
}

.benefits {
  padding-top: 0;
}

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

.benefit-card {
  display: grid;
  gap: 1.5rem;
}

.benefit-icon {
  width: 4rem;
  height: 4rem;
  border-radius: var(--radius-icon);
  background: #cfe7ec;
  display: grid;
  place-items: center;
}

.benefit-icon img {
  width: auto;
  height: 1.5rem;
  object-fit: contain;
}

.benefit-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 700;
}

.benefit-card p {
  max-width: 22.625rem;
  color: var(--text-body);
  font-size: 1rem;
  line-height: 1.625rem;
}

.listing-page {
  padding: 1.5rem 0 var(--space-section);
}

.listing-page .site-shell {
  display: grid;
  gap: 4rem;
}

.listing-hero-panel {
  position: relative;
  overflow: clip;
  border-radius: var(--radius-card);
  background: var(--bg-muted);
  padding: clamp(2.5rem, 6vw, 5rem);
}

.listing-hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.1;
}

.listing-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 4.5rem;
}

.listing-hero-copy {
  width: min(100%, 48rem);
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 1.5rem;
}

.listing-hero-copy .eyebrow {
  margin-bottom: 0;
  letter-spacing: 0.1em;
}

.listing-hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.625vw, 4.5rem);
  line-height: clamp(3rem, 5.625vw, 4.5rem);
  letter-spacing: -0.05em;
  font-weight: 800;
}

.quick-tabs {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem;
  border-radius: var(--radius-card);
  background: var(--surface-white);
  box-shadow: var(--shadow-soft);
}

.quick-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-chip);
  color: var(--text-body);
  font-family: var(--font-display);
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 600;
}

.quick-tab img {
  width: auto;
  height: 0.5rem;
  object-fit: contain;
  transition: transform 160ms ease;
}

.quick-tab.is-active {
  background: var(--brand-bright);
  color: var(--brand-deep);
  font-weight: 700;
}

.quick-tab.is-active img {
  transform: rotate(180deg);
}

.hero-filter-panel {
  width: min(100%, 72rem);
  min-height: 11rem;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 1.5rem;
}

.hero-filter-label {
  color: rgba(45, 51, 53, 0.48);
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-filter-options {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(1rem, 3vw, 3rem);
  flex-wrap: wrap;
}

.hero-filter-option {
  padding: 0.875rem 1.375rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.58);
  color: rgba(45, 51, 53, 0.42);
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  transition: background 160ms ease, color 160ms ease;
}

.hero-filter-option:hover {
  background: rgba(255, 255, 255, 0.82);
  color: rgba(45, 51, 53, 0.68);
}

.listing-layout {
  display: grid;
  grid-template-columns: 20rem minmax(0, 1fr);
  gap: 3rem;
}

.filter-sidebar {
  position: sticky;
  top: 6rem;
  align-self: start;
  display: grid;
  gap: 2rem;
}

.filter-title {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 700;
}

.filter-title img {
  width: 1.125rem;
  height: 1.125rem;
}

.filter-group {
  display: grid;
  gap: 1rem;
}

.filter-group-label {
  color: var(--text-muted);
  font-size: 0.625rem;
  line-height: 0.9375rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.price-track {
  height: 0.375rem;
  border-radius: 0.5rem;
  background: var(--border-muted);
  position: relative;
}

.price-range {
  position: absolute;
  left: 18%;
  right: 8%;
  top: 0;
  bottom: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #83dff7, var(--brand));
}

.price-scale {
  display: flex;
  justify-content: space-between;
  color: var(--text-body);
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 500;
}

.check-list {
  display: grid;
  gap: 0.75rem;
}

.check-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-body);
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.check-box {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 0.5rem;
  border: 1px solid #adb3b5;
  background: var(--surface-white);
  display: grid;
  place-items: center;
  flex: none;
}

.check-box.is-selected {
  border-color: transparent;
  background: var(--brand);
}

.check-box img {
  width: 1rem;
  height: 1rem;
}

.rating-icons {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.rating-icons img {
  width: auto;
  height: 1.1875rem;
}

.brand-list {
  display: grid;
  gap: 0.5rem;
  max-height: 12rem;
}

.brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem;
  border-radius: 0.5rem;
  color: var(--text-strong);
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.amenity-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.amenity-chip {
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-pill);
  background: var(--bg-soft);
  color: var(--text-strong);
  font-size: 0.625rem;
  line-height: 0.9375rem;
  font-weight: 500;
}

.amenity-chip.is-selected {
  background: var(--brand-bright);
  color: var(--brand-deep);
}

.results-pane {
  display: grid;
  gap: 2.5rem;
  min-width: 0;
}

.results-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
}

.results-copy {
  display: grid;
  gap: 0.25rem;
}

.results-copy h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.results-copy p {
  color: var(--text-muted);
  font-size: 0.75rem;
  line-height: 1rem;
}

.results-toolbar {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.toolbar-icon {
  display: grid;
  place-items: center;
  width: 0.875rem;
  height: 0.875rem;
}

.toolbar-icon img {
  width: auto;
  height: 0.75rem;
  object-fit: contain;
}

.listing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
  min-width: 0;
}

.listing-card {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 1.15rem;
  padding: 1rem;
  min-width: 0;
  overflow: hidden;
  border-radius: 2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 252, 253, 0.96)),
    #ffffff;
  border: 1px solid rgba(0, 105, 122, 0.1);
  box-shadow:
    0 24px 60px rgba(15, 32, 39, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition:
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.listing-card-link {
  color: inherit;
  text-decoration: none;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
}

.listing-card-link:hover {
  box-shadow:
    0 28px 68px rgba(15, 32, 39, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
  border-color: rgba(0, 105, 122, 0.16);
}

.listing-card-image {
  position: relative;
  overflow: clip;
  isolation: isolate;
  border-radius: 1.5rem;
  aspect-ratio: 7 / 5;
  min-height: 0;
  background: var(--border-muted);
}

.listing-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 24, 31, 0.04) 0%, rgba(8, 24, 31, 0) 32%, rgba(8, 24, 31, 0.38) 100%);
  pointer-events: none;
}

.listing-card-image img.card-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.listing-card-link:hover .listing-card-image img.card-photo {
  transform: scale(1.024);
}

.listing-card-image__top {
  position: absolute;
  inset: 1rem 1rem auto 1rem;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.listing-badge {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  max-width: min(100%, 12rem);
  padding: 0.42rem 0.8rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.88);
  color: #0f2027;
  font-size: 0.62rem;
  line-height: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.listing-image-meta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  margin-left: auto;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(15, 32, 39, 0.58);
  color: #f8fdff;
  font-size: 0.7rem;
  line-height: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  backdrop-filter: blur(12px);
}

.listing-card-copy {
  display: grid;
  align-content: start;
  gap: 0.75rem;
  min-width: 0;
  box-sizing: border-box;
  width: 100%;
  padding: 0.15rem 0.15rem 0.9rem;
}

.listing-topline,
.listing-bottomline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  min-width: 0;
}

.listing-bottomline {
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 0.35rem;
  padding-bottom: 0.1rem;
}

.listing-title-wrap {
  display: grid;
  flex: 1 1 auto;
  gap: 0.35rem;
  min-width: 0;
}

.listing-kicker {
  margin: 0;
  min-width: 0;
  color: rgba(0, 105, 122, 0.88);
  font-size: 0.7rem;
  line-height: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.listing-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  overflow-wrap: anywhere;
}

.listing-location {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  min-width: 0;
  color: rgba(15, 32, 39, 0.68);
  font-size: 0.84rem;
  line-height: 1.25rem;
}

.listing-location img {
  width: auto;
  height: 0.6875rem;
  flex: 0 0 auto;
}

.listing-location span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.listing-cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 2.15rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: rgba(0, 105, 122, 0.08);
  color: var(--brand-deep);
  font-size: 0.72rem;
  line-height: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.load-more-wrap {
  display: flex;
  justify-content: center;
  padding-top: 0.5rem;
}

.load-more {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 3rem;
  border-radius: var(--radius-pill);
  background: var(--bg-soft);
  color: var(--text-strong);
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 700;
}

.load-more img {
  width: auto;
  height: 0.5rem;
}

.listing-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  padding-top: 0.5rem;
  flex-wrap: wrap;
}

.listing-pagination__page,
.listing-pagination__nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.85rem;
  min-height: 2.85rem;
  padding: 0.75rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 105, 122, 0.14);
  background: #fff;
  color: var(--text-strong);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.listing-pagination__page.is-active {
  background: var(--brand);
  border-color: var(--brand);
  color: #effbff;
}

.listing-pagination__nav.is-disabled {
  opacity: 0.42;
  pointer-events: none;
}

.blog-shell,
.article-shell {
  width: min(100%, var(--blog-shell-max));
  margin-inline: auto;
  padding-inline: 2rem;
}

.blog-index-page {
  padding: 1.25rem 0 0;
}

.blog-index-page .blog-shell {
  display: grid;
  gap: 4rem;
}

.blog-feature-card {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(23rem, 1fr);
  gap: clamp(2rem, 3.75vw, 3rem);
  align-items: stretch;
  padding: 1.5rem;
  border-radius: 2rem;
  background: var(--surface-white);
  box-shadow: 0 20px 40px rgba(0, 105, 122, 0.04);
}

.blog-feature-media {
  display: block;
  min-height: clamp(19rem, 35vw, 33.3125rem);
  border-radius: 1.5rem;
  overflow: hidden;
}

.blog-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
}

.blog-feature-copy {
  display: grid;
  align-content: center;
  gap: 1.5rem;
  padding-right: 0.5rem;
}

.blog-feature-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.blog-feature-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.8125rem;
  padding: 0.375rem 0.75rem;
  border-radius: 0.375rem;
  background: var(--border-soft);
  color: var(--text-strong);
  font-size: 0.6875rem;
  line-height: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.blog-feature-category,
.blog-feature-readtime {
  color: #466182;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
}

.blog-feature-title {
  color: var(--text-strong);
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3rem);
  line-height: clamp(2.875rem, 4.4vw, 3.3rem);
  letter-spacing: -0.02em;
  font-weight: 800;
}

.blog-feature-excerpt {
  max-width: 24rem;
  color: var(--text-body);
  font-size: 1.125rem;
  line-height: 1.8125rem;
}

.blog-feature-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 0.25rem;
  flex-wrap: wrap;
}

.blog-feature-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand) 0%, #005c6b 100%);
  box-shadow: 0 10px 20px rgba(0, 105, 122, 0.15);
  color: #effbff;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 700;
}

.blog-articles-section {
  padding: 3rem 0 5rem;
}

.blog-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  padding-bottom: 1.5625rem;
  border-bottom: 1px solid var(--border-muted);
}

.blog-section-head h1 {
  color: var(--text-strong);
  font-family: var(--font-display);
  font-size: 1.875rem;
  line-height: 2.25rem;
  letter-spacing: -0.015em;
  font-weight: 700;
}

.blog-category-chips {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.blog-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.25rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: var(--border-soft);
  color: var(--text-strong);
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
}

.blog-chip.is-active {
  background: var(--brand-bright);
  color: var(--brand-deep);
}

.blog-article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4rem 2rem;
  padding-top: 2.5rem;
}

.blog-card {
  display: grid;
  gap: 1.25rem;
}

.blog-card-media {
  display: block;
  aspect-ratio: 4 / 3;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-copy {
  display: grid;
  gap: 0.75rem;
  padding: 0 0.5rem;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.blog-card-category {
  color: var(--brand);
  font-size: 0.6875rem;
  line-height: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.blog-card-readtime {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.blog-card-readtime::before {
  content: "•";
  margin-right: 0.3125rem;
}

.blog-card-title,
.related-story-title {
  color: var(--text-strong);
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.blog-card-title {
  font-size: 1.5rem;
  line-height: 1.875rem;
}

.blog-card-excerpt,
.related-story-excerpt,
.article-booking-card p,
.article-related-copy p,
.article-meta-value,
.article-share-link {
  color: var(--text-body);
  font-size: 1rem;
  line-height: 1.625rem;
}

.blog-card-excerpt,
.related-story-excerpt {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.blog-load-more-wrap {
  display: flex;
  justify-content: center;
  padding-top: 3rem;
}

.blog-load-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.75rem 2rem;
  border-radius: 999px;
  background: var(--border-soft);
  color: var(--text-strong);
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 700;
}

.article-page {
  padding-top: 1.5rem;
  background: #f7f9fa;
}

.article-hero {
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

.article-hero .article-shell {
  display: grid;
  gap: 1.75rem;
  padding-inline: 0;
}

.article-shell {
  width: min(100%, 1360px);
}

.article-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  color: var(--text-muted);
  font-size: 0.8125rem;
  line-height: 1.35rem;
}

.article-breadcrumb a,
.article-breadcrumb span {
  max-width: 100%;
}

.article-breadcrumb a {
  transition: color 180ms ease;
}

.article-breadcrumb a:hover,
.article-breadcrumb a:focus-visible {
  color: var(--brand-deep);
}

.article-breadcrumb-separator {
  color: rgba(45, 51, 53, 0.28);
}

.article-breadcrumb .is-current {
  color: var(--text-strong);
  font-weight: 700;
}

.article-hero-frame {
  position: relative;
  min-height: clamp(22rem, 40vw, 30rem);
  border-radius: 0.9rem;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at top right, rgba(136, 225, 248, 0.3), transparent 28%),
    linear-gradient(160deg, #11303b 0%, #184551 45%, #09161c 100%);
  box-shadow: 0 12px 32px rgba(10, 34, 43, 0.1);
}

.article-hero-frame--no-media {
  min-height: clamp(20rem, 38vw, 28rem);
}

.article-hero-image,
.article-hero-overlay {
  position: absolute;
  inset: 0;
}

.article-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 36%;
}

.article-hero-overlay {
  background: linear-gradient(
    180deg,
    rgba(3, 13, 18, 0.04) 0%,
    rgba(3, 13, 18, 0.12) 34%,
    rgba(3, 13, 18, 0.22) 66%,
    rgba(3, 13, 18, 0.38) 100%
  );
}

.article-hero-copy {
  position: static;
  display: grid;
  gap: 1.25rem;
  max-width: min(68rem, 100%);
  padding-top: 0.45rem;
  justify-items: center;
  margin-inline: auto;
}

.article-hero-topline {
  position: absolute;
  top: clamp(1rem, 3vw, 1.6rem);
  left: clamp(1rem, 4vw, 2rem);
  right: clamp(1rem, 4vw, 2rem);
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  z-index: 1;
}

.article-hero-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 1.7rem;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  font-size: 0.625rem;
  line-height: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-hero-tag:first-child {
  background: rgba(136, 225, 248, 0.96);
  border-color: rgba(136, 225, 248, 0.98);
  color: #083946;
}

.article-hero-heading {
  display: grid;
  gap: 0.85rem;
  max-width: 62rem;
  justify-items: center;
  text-align: center;
}

.article-hero h1 {
  color: #172126;
  font-family: var(--font-editorial);
  font-size: clamp(2.05rem, 3.2vw, 3rem);
  line-height: 1.14;
  letter-spacing: -0.015em;
  font-weight: 600;
  text-wrap: balance;
}

.article-hero-excerpt {
  max-width: 50rem;
  color: #5a686d;
  font-size: clamp(1rem, 1.05vw, 1.08rem);
  line-height: 1.9;
  text-align: center;
}

.article-hero-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(20, 37, 43, 0.1);
}

.article-hero-author {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.article-hero-avatar {
  width: 2.7rem;
  height: 2.7rem;
  padding: 0.125rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(20, 37, 43, 0.12);
  border-radius: 999px;
  background: #ffffff;
  color: #172126;
  font-family: var(--font-display);
  font-size: 0.8rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow: none;
}

.article-hero-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  object-fit: cover;
}

.article-hero-author-name {
  color: #172126;
  font-family: var(--font-display);
  font-size: 0.95rem;
  line-height: 1.25rem;
  font-weight: 700;
}

.article-hero-author-role {
  color: var(--text-muted);
  font-size: 0.8125rem;
  line-height: 1.2rem;
  font-weight: 400;
}

.article-hero-facts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.article-hero-facts span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.85rem;
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(20, 37, 43, 0.08);
  background: rgba(255, 255, 255, 0.82);
  color: #66757a;
  font-size: 0.75rem;
  line-height: 1.15rem;
  font-weight: 600;
}

.article-content-layout {
  display: grid;
  grid-template-columns: minmax(12rem, 13.5rem) minmax(0, 1fr) minmax(16rem, 18rem);
  gap: clamp(1.75rem, 3vw, 2.5rem);
  align-items: start;
  padding-bottom: clamp(3.5rem, 5vw, 5rem);
}

.article-meta-panel,
.article-booking-card {
  position: sticky;
  top: 6.75rem;
}

.article-meta-panel {
  display: grid;
  gap: 0.7rem;
}

.article-meta-card,
.article-toc-card {
  padding: 0.95rem;
  border-radius: 0.6rem;
  border: 1px solid rgba(0, 105, 122, 0.08);
  background: #ffffff;
  box-shadow: none;
  backdrop-filter: none;
}

.article-meta-card {
  display: grid;
  gap: 0.75rem;
}

.article-meta-group {
  display: grid;
  gap: 0.5rem;
}

.article-meta-card .article-meta-group + .article-meta-group {
  padding-top: 0.75rem;
  border-top: 1px solid rgba(0, 105, 122, 0.08);
}

.article-meta-label,
.related-story-category,
.article-author-label,
.article-card-eyebrow,
.article-section-eyebrow,
.article-pagination-label {
  color: var(--text-muted);
  font-size: 0.6875rem;
  line-height: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-card-eyebrow,
.article-section-eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.article-meta-value {
  color: var(--text-strong);
  font-family: var(--font-display);
  font-size: 0.95rem;
  line-height: 1.3rem;
  font-weight: 700;
}

.article-share-list {
  display: grid;
  gap: 0.75rem;
}

.article-share-link {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  width: 100%;
  padding: 0.55rem 0.65rem;
  border-radius: 0.45rem;
  background: var(--bg-muted);
  color: var(--text-body);
  font-size: 0.875rem;
  line-height: 1.3rem;
  font-weight: 600;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.article-share-link:hover,
.article-share-link:focus-visible {
  transform: translateY(-1px);
  background: rgba(0, 105, 122, 0.1);
  color: var(--brand-deep);
}

.article-share-link img {
  width: 1rem;
  height: 1rem;
  object-fit: contain;
}

.article-toc-card {
  display: block;
}

.article-toc-card > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  list-style: none;
  color: var(--text-strong);
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.4rem;
  font-weight: 700;
  cursor: pointer;
}

.article-toc-card > summary::-webkit-details-marker {
  display: none;
}

.article-toc-summary-icon {
  width: 0.7rem;
  height: 0.7rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 180ms ease;
}

.article-toc-card[open] .article-toc-summary-icon {
  transform: rotate(225deg);
  margin-top: 0.35rem;
}

.article-toc-nav {
  display: grid;
  gap: 0.35rem;
  padding-top: 0.75rem;
  margin-top: 0.75rem;
  border-top: 1px solid rgba(0, 105, 122, 0.08);
}

.article-toc-link {
  display: block;
  padding: 0.5rem 0.55rem;
  border-radius: 0.35rem;
  color: var(--text-body);
  font-size: 0.85rem;
  line-height: 1.25rem;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.article-toc-link.level-3 {
  padding-left: 1.45rem;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.article-toc-link.level-4 {
  padding-left: 2.1rem;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.article-toc-link:hover,
.article-toc-link:focus-visible,
.article-toc-link.is-active {
  background: rgba(0, 105, 122, 0.08);
  color: var(--brand-deep);
  transform: translateX(2px);
}

.article-main {
  display: grid;
  gap: 2rem;
  min-width: 0;
}

.article-summary-card {
  display: grid;
  gap: 0.95rem;
  padding: 0 0 1.4rem;
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid rgba(0, 105, 122, 0.1);
  background: transparent;
  box-shadow: none;
}

.article-lead {
  color: #24353c;
  font-family: var(--font-display);
  font-size: clamp(1.14rem, 1.55vw, 1.44rem);
  line-height: 1.72;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.article-summary-note {
  color: var(--text-body);
  font-size: 1rem;
  line-height: 1.95rem;
}

.article-rich-content {
  padding: 0;
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: #34474d;
  font-size: 1.08rem;
  line-height: 1.92;
  max-width: 62rem;
  overflow-wrap: anywhere;
}

.article-rich-content > :first-child {
  margin-top: 0 !important;
}

.article-rich-content > :last-child {
  margin-bottom: 0 !important;
}

.article-rich-content > * + * {
  margin-top: clamp(1.45rem, 2.7vw, 2.1rem);
}

.article-rich-content > :where(div, section, article):not(.article-table-wrap):not(.article-embed) {
  display: grid;
  gap: 0.95rem;
}

.article-rich-content :where(p, li, dd) {
  color: #34474d;
  font-size: 1.08rem;
  line-height: 1.92;
  text-wrap: pretty;
}

.article-rich-content p,
.article-rich-content ul,
.article-rich-content ol,
.article-rich-content dl,
.article-rich-content blockquote,
.article-rich-content figure,
.article-rich-content pre,
.article-rich-content hr {
  margin: 0;
}

.article-rich-content :where(strong, b) {
  color: var(--text-strong);
  font-weight: 800;
}

.article-rich-content :where(em, i) {
  color: #1f4f5a;
  font-style: italic;
}

.article-rich-content a {
  color: var(--brand-deep);
  font-weight: 600;
  text-decoration-line: underline;
  text-decoration-color: rgba(0, 105, 122, 0.38);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.article-rich-content a:hover,
.article-rich-content a:focus-visible {
  color: var(--brand);
  text-decoration-color: var(--brand);
}

.article-rich-content :where(h2, h3, h4, h5, h6) {
  margin: 0;
  color: #14252b;
  font-family: var(--font-editorial);
  letter-spacing: -0.012em;
  scroll-margin-top: 7rem;
  text-wrap: balance;
}

.article-rich-content h2 + p,
.article-rich-content h3 + p,
.article-rich-content h4 + p,
.article-rich-content h5 + p,
.article-rich-content h6 + p,
.article-rich-content h2 + ul,
.article-rich-content h3 + ul,
.article-rich-content h4 + ul,
.article-rich-content h5 + ul,
.article-rich-content h6 + ul,
.article-rich-content h2 + ol,
.article-rich-content h3 + ol,
.article-rich-content h4 + ol,
.article-rich-content h5 + ol,
.article-rich-content h6 + ol {
  margin-top: 1.2rem;
}

.article-rich-content h2 {
  position: relative;
  padding-top: 1rem;
  margin-top: clamp(2rem, 3.8vw, 3rem);
  font-size: clamp(1.72rem, 2.28vw, 2.24rem);
  line-height: 1.16;
  font-weight: 600;
}

.article-rich-content h2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2.75rem;
  height: 1.5px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), rgba(0, 105, 122, 0));
}

.article-rich-content h3 {
  margin-top: clamp(1.75rem, 2.8vw, 2.4rem);
  font-size: clamp(1.34rem, 1.45vw, 1.62rem);
  line-height: 1.3;
  font-weight: 600;
}

.article-rich-content h4 {
  margin-top: 1.35rem;
  font-size: 1.14rem;
  line-height: 1.4;
  font-weight: 600;
}

.article-rich-content ul,
.article-rich-content ol {
  display: grid;
  gap: 1rem;
}

.article-rich-content ul {
  padding-left: 0;
  list-style: none;
}

.article-rich-content ul > li {
  position: relative;
  padding-left: 1.75rem;
}

.article-rich-content ul > li::before {
  content: "";
  position: absolute;
  left: 0.15rem;
  top: 0.92rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), #89d2de);
  box-shadow: 0 0 0 0.22rem rgba(0, 105, 122, 0.08);
}

.article-rich-content ol {
  padding-left: 1.5rem;
}

.article-rich-content li > :where(p, ul, ol) {
  margin-top: 0.9rem;
}

.article-rich-content :where(blockquote, .article-blockquote) {
  margin: 0;
  position: relative;
  padding: 0.85rem 1rem 0.85rem 1.2rem;
  border-left: 4px solid var(--brand);
  border-radius: 0 0.4rem 0.4rem 0;
  background: rgba(0, 105, 122, 0.05);
}

.article-rich-content :where(blockquote, .article-blockquote)::before {
  content: "“";
  position: absolute;
  top: 0.1rem;
  left: 0.45rem;
  color: rgba(0, 105, 122, 0.16);
  font-family: var(--font-display);
  font-size: 2.2rem;
  line-height: 1;
}

.article-rich-content :where(blockquote, .article-blockquote) p {
  color: #0d5261;
  font-family: var(--font-display);
  font-size: clamp(1.08rem, 1.5vw, 1.24rem);
  line-height: 1.66;
}

.article-rich-content :where(blockquote cite, .article-blockquote cite) {
  display: block;
  margin-top: 0.85rem;
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.4rem;
  font-style: normal;
}

.article-rich-content hr {
  height: 1px;
  border: 0;
  background: linear-gradient(90deg, rgba(0, 105, 122, 0), rgba(0, 105, 122, 0.24), rgba(0, 105, 122, 0));
}

.article-rich-content :where(figure, .article-figure) {
  display: grid;
  gap: 0.5rem;
  margin: 0;
  padding-block: clamp(2.4rem, 4.6vw, 3.6rem);
}

.article-rich-content > :where(figure, .article-figure) {
  margin: 0;
}

.article-rich-content > :where(.article-image-grid, .article-embed, .article-table-wrap) {
  margin-top: clamp(2.8rem, 5vw, 4rem);
  margin-bottom: clamp(2.2rem, 4vw, 3.2rem);
}

.article-rich-content > :where(figure, .article-figure, .article-image-grid, .article-embed, .article-table-wrap) + * {
  margin-top: 0 !important;
}

.article-rich-content :where(img, video) {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  background: var(--bg-muted);
  box-shadow: none;
}

.article-rich-content :where(figure, .article-figure) > img:first-child {
  display: block;
}

.article-rich-content p > img:only-child {
  display: block;
  margin-block: clamp(2rem, 3.8vw, 3rem);
}

.article-rich-content .article-figure-media,
.article-rich-content .article-image-card {
  border-radius: 0.5rem;
  overflow: hidden;
  background: var(--bg-muted);
}

.article-rich-content .article-figure-media img,
.article-rich-content .article-image-card img,
.article-booking-media img,
.related-story-media img,
.article-author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: none;
}

.article-rich-content .article-figure-media {
  aspect-ratio: 16 / 10;
}

.article-rich-content figcaption {
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.55;
  font-weight: 400;
  text-align: center;
  max-width: 34rem;
  margin-top: 0;
  margin-inline: auto;
}

.article-rich-content .article-image-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.article-rich-content .article-image-card {
  min-height: 15rem;
}

.article-rich-content .article-table-wrap {
  overflow-x: auto;
  padding-bottom: 0.25rem;
}

.article-rich-content table {
  width: 100%;
  min-width: 36rem;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid rgba(0, 105, 122, 0.12);
  border-radius: 0.4rem;
  overflow: hidden;
  background: #ffffff;
  box-shadow: none;
}

.article-rich-content thead {
  background: linear-gradient(135deg, rgba(0, 105, 122, 0.1), rgba(136, 225, 248, 0.14));
}

.article-rich-content th,
.article-rich-content td {
  padding: 0.7rem 0.8rem;
  border-bottom: 1px solid rgba(0, 105, 122, 0.09);
  text-align: left;
  font-size: 0.95rem;
  line-height: 1.65;
  vertical-align: top;
}

.article-rich-content tbody tr:last-child td {
  border-bottom: 0;
}

.article-rich-content th {
  color: var(--text-strong);
  font-family: var(--font-display);
  font-weight: 700;
}

.article-rich-content :where(pre, code, kbd) {
  font-family: "SFMono-Regular", Consolas, Monaco, monospace;
}

.article-rich-content pre {
  padding: 0.85rem 0.95rem;
  border-radius: 0.45rem;
  background: #0f172a;
  color: #e2e8f0;
  overflow: auto;
  font-size: 0.92rem;
  line-height: 1.7;
  box-shadow: none;
}

.article-rich-content code {
  padding: 0.15rem 0.42rem;
  border-radius: 0.45rem;
  background: rgba(15, 23, 42, 0.08);
  color: #0f172a;
  font-size: 0.92em;
}

.article-rich-content pre code {
  padding: 0;
  background: transparent;
  color: inherit;
}

.article-rich-content details {
  padding: 0.8rem 0.9rem;
  border-radius: 0.45rem;
  border: 1px solid rgba(0, 105, 122, 0.09);
  background: rgba(0, 105, 122, 0.03);
}

.article-rich-content summary {
  cursor: pointer;
  color: var(--text-strong);
  font-family: var(--font-display);
  font-weight: 700;
}

.article-rich-content summary + * {
  margin-top: 0.85rem;
}

.article-rich-content .article-embed {
  overflow: hidden;
  border-radius: 0.5rem;
  background: #dfe8ec;
  box-shadow: none;
}

.article-rich-content iframe,
.article-rich-content video {
  width: 100%;
  min-height: clamp(16rem, 42vw, 28rem);
  display: block;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.article-rich-content mark {
  padding: 0 0.25rem;
  border-radius: 0.2rem;
  background: rgba(136, 225, 248, 0.55);
  color: #0f2430;
}

.article-rich-content dl {
  display: grid;
  gap: 0.8rem;
}

.article-rich-content dt {
  color: var(--text-strong);
  font-family: var(--font-display);
  font-weight: 700;
}

.article-rich-content dd {
  margin: 0;
}

.article-endcap {
  display: grid;
  gap: 1rem;
}

.article-end-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.article-end-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.7rem;
  padding: 0.35rem 0.7rem;
  border-radius: var(--radius-pill);
  background: rgba(0, 105, 122, 0.08);
  color: var(--brand-deep);
  font-size: 0.65rem;
  line-height: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-author-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.8rem;
  align-items: center;
  padding: 1rem;
  border-radius: 0.6rem;
  background: linear-gradient(135deg, rgba(12, 32, 38, 0.98), rgba(16, 68, 80, 0.9));
  color: #ffffff;
  box-shadow: none;
}

.article-author-avatar {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.article-author-copy {
  display: grid;
  gap: 0.35rem;
  min-width: 0;
}

.article-author-label {
  color: rgba(255, 255, 255, 0.65);
}

.article-author-card h2 {
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 1.1rem;
  line-height: 1.3;
  letter-spacing: -0.03em;
}

.article-author-role,
.article-author-meta {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.85rem;
  line-height: 1.45;
}

.article-pagination {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.article-pagination-card {
  display: grid;
  gap: 0.55rem;
  min-height: 100%;
  padding: 0.85rem 0.95rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(0, 105, 122, 0.08);
  background: #ffffff;
  box-shadow: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.article-pagination-card strong {
  color: var(--text-strong);
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 700;
}

.article-pagination-card:hover,
.article-pagination-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(0, 105, 122, 0.2);
  box-shadow: 0 20px 36px rgba(17, 38, 50, 0.1);
}

.article-booking-card {
  display: grid;
  gap: 0.9rem;
  padding: 1rem;
  border-radius: 0.7rem;
  background: linear-gradient(180deg, #0d2026 0%, #123741 100%);
  color: rgba(255, 255, 255, 0.82);
  box-shadow: none;
}

.article-booking-card .article-card-eyebrow {
  color: rgba(255, 255, 255, 0.68);
}

.article-booking-card h3 {
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.3rem;
  font-weight: 700;
}

.article-booking-card p {
  font-size: 0.85rem;
  line-height: 1.55rem;
}

.article-booking-media {
  min-height: 10rem;
  border-radius: 0.5rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.article-booking-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  padding: 0.65rem 0.85rem;
  border-radius: 999px;
  background: #f2fbfe;
  color: #0a3541;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.article-booking-button:hover,
.article-booking-button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.article-booking-link {
  width: fit-content;
  padding-bottom: 0.3125rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article-related-section {
  padding: 0 0 clamp(3rem, 5vw, 4rem);
}

.article-related-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid rgba(173, 179, 181, 0.26);
}

.article-related-copy {
  display: grid;
  gap: 0.45rem;
  max-width: 32rem;
}

.article-related-copy h2 {
  color: var(--text-strong);
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2vw, 2rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.article-related-copy p {
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.55rem;
}

.article-related-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  min-height: 2.5rem;
  padding: 0.55rem 0.85rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 105, 122, 0.08);
  box-shadow: none;
  color: var(--brand);
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 700;
}

.article-related-link img {
  width: 1.125rem;
  height: 0.5625rem;
}

.article-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding-top: 1.5rem;
}

.related-story-card {
  display: grid;
  gap: 0.75rem;
  padding: 0.7rem;
  border-radius: 0.6rem;
  border: 1px solid rgba(0, 105, 122, 0.08);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.related-story-card:hover,
.related-story-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(0, 105, 122, 0.16);
  box-shadow: 0 24px 44px rgba(17, 38, 50, 0.1);
}

.related-story-media {
  display: block;
  aspect-ratio: 16 / 11;
  border-radius: 0.45rem;
  overflow: hidden;
}

.related-story-copy {
  display: grid;
  gap: 0.55rem;
  padding: 0.05rem 0.1rem 0.15rem;
}

.related-story-title {
  color: var(--text-strong);
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.35rem;
  font-weight: 700;
}

@media (max-width: 1180px) {
  .header-row {
    gap: 1rem;
  }

  .header-main {
    gap: 2rem;
  }

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

  .filter-sidebar {
    position: static;
  }

  .listing-toolbar__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-feature-card {
    grid-template-columns: 1.4fr 1fr;
  }

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

  .article-content-layout {
    grid-template-columns: minmax(15rem, 17rem) minmax(0, 1fr);
  }

  .article-side-card {
    grid-column: 2;
  }

  .article-booking-card {
    position: static;
    max-width: 18rem;
  }

  .contact-hero,
  .contact-grid,
  .policy-hero,
  .policy-content-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  .site-footer {
    padding: 3rem 0;
  }

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

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

  .destination-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "main main"
      "sidea sideb"
      "sidec sidec"
      "tail tail";
    grid-template-rows: minmax(16rem, 22rem) repeat(3, minmax(12rem, auto));
  }

  .blog-shell,
  .article-shell {
    padding-inline: 1.5rem;
  }

  .blog-feature-card {
    grid-template-columns: 1fr;
  }

  .blog-feature-copy {
    padding-right: 0;
  }

  .article-hero {
    padding-bottom: 2.5rem;
  }

  .article-hero .article-shell {
    padding-inline: 1.5rem;
  }

  .article-hero-copy {
    gap: 1rem;
  }

  .article-content-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .article-meta,
  .article-main,
  .article-side-card {
    grid-column: auto;
  }

  .article-meta-panel {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .article-toc-card {
    grid-column: 1 / -1;
  }

  .article-booking-card {
    position: static;
    max-width: none;
  }

  .article-related-head {
    padding-top: 2.5rem;
  }

  .policy-rail {
    position: static;
  }
}

@media (max-width: 860px) {
  .header-row {
    min-height: 72px;
    padding-block: 0.875rem;
  }

  .site-nav {
    display: none;
  }

  .header-search {
    display: none;
  }

  .header-actions {
    width: auto;
  }

  .mobile-nav-toggle,
  .mobile-nav-panel {
    display: flex;
  }

  .hero {
    min-height: 43rem;
  }

  .hero-media {
    background-position: 62% center;
  }

  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(248, 249, 250, 0.92) 0%,
      rgba(248, 249, 250, 0.62) 45%,
      rgba(248, 249, 250, 0.18) 100%
    );
  }

  .hero-content {
    align-items: center;
    text-align: center;
  }

  .hero-copy,
  .hero-description {
    max-width: 100%;
  }

  .search-bar {
    flex-direction: column;
    width: min(100%, 32rem);
    border-radius: 2rem;
  }

  .search-field,
  .search-field.has-divider {
    width: 100%;
    border-left: 0;
    border-bottom: 1px solid var(--border-soft);
    padding-inline: 1rem;
  }

  .search-button {
    width: 100%;
    min-width: 0;
    padding-block: 1rem;
  }

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

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

  .blog-index-page .blog-shell {
    gap: 3rem;
  }

  .blog-section-head,
  .article-related-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .blog-category-chips {
    justify-content: flex-start;
  }

  .blog-article-grid,
  .article-related-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .article-breadcrumb {
    gap: 0.4rem;
  }

  .article-hero-frame {
    min-height: 24rem;
  }

  .article-hero h1 {
    font-size: clamp(1.95rem, 7vw, 2.75rem);
    line-height: clamp(2.25rem, 7vw, 3rem);
  }

  .article-hero-bottom {
    align-items: flex-start;
  }

  .article-hero-facts {
    justify-content: flex-start;
  }

  .article-meta-panel {
    grid-template-columns: 1fr;
  }

  .article-lead {
    font-size: 1.05rem;
    line-height: 1.65rem;
  }

  .article-rich-content h2,
  .article-related-copy h2 {
    font-size: 1.45rem;
    line-height: 1.2;
  }

  .article-rich-content h3 {
    font-size: 1.15rem;
    line-height: 1.35;
  }

  .article-rich-content blockquote p {
    font-size: 1rem;
    line-height: 1.6rem;
  }

  .article-pagination {
    grid-template-columns: 1fr;
  }

  .article-rich-content table {
    min-width: 32rem;
  }
}

@media (max-width: 640px) {
  .site-brand {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }

  .text-button {
    order: 2;
  }

  .pill-button {
    order: 3;
  }

  .page-home .page {
    gap: 0;
  }

  .hero {
    min-height: 40rem;
    padding-top: 1rem;
  }

  .hero h1,
  .listing-hero-copy h1 {
    font-size: clamp(2.5rem, 10vw, 3.5rem);
    line-height: clamp(2.75rem, 10vw, 3.75rem);
  }

  .hero-description {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .contact-page {
    padding: 2.25rem 0 3.5rem;
  }

  .policy-page {
    padding: 1.5rem 0 4rem;
  }

  .contact-hero-copy,
  .contact-hero-card,
  .contact-info-card,
  .contact-form-card {
    padding: 1.25rem;
    border-radius: 1.25rem;
  }

  .contact-hero-copy h1 {
    max-width: 100%;
  }

  .policy-hero-copy,
  .policy-summary-card,
  .policy-content-card,
  .policy-rail-card {
    padding: 1.25rem;
    border-radius: 1.25rem;
  }

  .policy-hero-copy h1 {
    font-size: clamp(2.2rem, 10vw, 3.1rem);
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding-block: 4.5rem;
  }

  .destination-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "main"
      "sidea"
      "sideb"
      "sidec"
      "tail";
    grid-template-rows: repeat(5, minmax(14rem, auto));
    gap: 1rem;
    margin-top: 2.5rem;
  }

  .destination-card {
    grid-area: auto;
    min-height: 14rem;
  }

  .destination-card--layout-1,
  .destination-card--layout-5 {
    padding: 1.5rem;
  }

  .collections .site-shell {
    gap: 2rem;
  }

  .hotel-grid {
    gap: 2.5rem;
    padding-bottom: 0;
  }

  .hotel-image {
    min-height: 21rem;
  }

  .hotel-copy {
    flex-direction: column;
    gap: 0.75rem;
  }

  .hotel-pricing {
    justify-items: start;
  }

  .benefits-grid {
    gap: 2.5rem;
  }

  .listing-page {
    padding-top: 1rem;
  }

  .listing-page .site-shell {
    gap: 2.5rem;
  }

  .listing-hero-panel {
    padding: 2rem 1rem;
  }

  .listing-toolbar {
    padding: 1rem;
  }

  .listing-toolbar__grid {
    grid-template-columns: 1fr;
  }

  .listing-toolbar__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .listing-toolbar__actions .pill-button,
  .listing-toolbar__actions .pill-button-outline {
    width: 100%;
  }

  .quick-tabs {
    width: 100%;
    flex-direction: column;
  }

  .quick-tab {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .hero-filter-panel {
    min-height: 0;
    gap: 1rem;
  }

  .hero-filter-label {
    font-size: 0.75rem;
    line-height: 1rem;
  }

  .hero-filter-options {
    gap: 0.75rem;
  }

  .hero-filter-option {
    width: 100%;
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .results-copy h2 {
    font-size: 1.75rem;
    line-height: 2.125rem;
  }

  .listing-card-image {
    min-height: 22rem;
  }

  .listing-topline,
  .listing-bottomline {
    flex-direction: column;
    align-items: flex-start;
  }

  .load-more {
    width: 100%;
    justify-content: center;
  }

  .blog-shell,
  .article-shell {
    padding-inline: 1rem;
  }

  .blog-index-page,
  .article-page {
    padding-top: 1rem;
  }

  .blog-feature-card {
    padding: 1rem;
    gap: 1.5rem;
    border-radius: 1.5rem;
  }

  .blog-feature-media {
    min-height: 16rem;
  }

  .blog-feature-title,
  .blog-card-title,
  .related-story-title {
    font-size: 2rem;
    line-height: 2.3rem;
  }

  .blog-feature-excerpt,
  .blog-card-excerpt,
  .article-related-copy p {
    font-size: 0.9375rem;
    line-height: 1.55rem;
  }

  .blog-articles-section {
    padding: 2rem 0 4rem;
  }

  .blog-load-more {
    width: 100%;
  }

  .article-hero {
    padding-bottom: 2rem;
  }

  .article-hero .article-shell {
    padding-inline: 1rem;
  }

  .article-hero-frame {
    min-height: 19rem;
    border-radius: 0.75rem;
  }

  .article-breadcrumb {
    font-size: 0.75rem;
    line-height: 1.2rem;
  }

  .article-hero-copy {
    gap: 0.9rem;
    padding-top: 0.25rem;
  }

  .article-hero-topline {
    top: 0.9rem;
    left: 0.85rem;
    right: 0.85rem;
  }

  .article-hero-excerpt {
    font-size: 0.875rem;
    line-height: 1.45rem;
  }

  .article-hero-author {
    gap: 0.75rem;
  }

  .article-hero-avatar {
    width: 2.75rem;
    height: 2.75rem;
  }

  .article-hero-facts {
    gap: 0.5rem;
  }

  .article-hero-facts span {
    min-height: 2rem;
    padding-inline: 0.75rem;
  }

  .article-content-layout {
    padding-bottom: 3rem;
  }

  .article-meta-card,
  .article-toc-card,
  .article-summary-card,
  .article-rich-content,
  .article-author-card {
    padding: 0.9rem;
  }

  .article-rich-content :where(blockquote, .article-blockquote) {
    padding: 1.2rem 1rem 1.2rem 1.35rem;
  }

  .article-rich-content :where(blockquote, .article-blockquote) p {
    font-size: 1.25rem;
    line-height: 1.875rem;
  }

  .article-rich-content .article-image-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .article-booking-card {
    padding: 0.9rem;
  }

  .article-author-card {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .article-pagination {
    grid-template-columns: 1fr;
  }

  .related-story-title {
    font-size: 1.15rem;
    line-height: 1.45rem;
  }

  .article-related-section {
    padding-bottom: 3rem;
  }

  .footer-links {
    gap: 1rem 1.25rem;
    justify-content: flex-start;
  }
}

.detail-page {
  padding: 6rem 0 5rem;
}

.detail-shell {
  display: grid;
  gap: 4rem;
}

.detail-gallery {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(18rem, 1fr);
  grid-template-rows: 300px;
  gap: 1.5rem;
  align-items: stretch;
  height: 300px;
  overflow: hidden;
}

.detail-gallery--single {
  grid-template-columns: minmax(0, 1fr);
}

.gallery-main,
.gallery-card {
  margin: 0;
  overflow: clip;
  border-radius: 0;
  background: var(--bg-soft);
  position: relative;
}

.gallery-main {
  height: 100%;
  max-height: 300px;
}

.gallery-side {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  height: 100%;
  max-height: 300px;
  min-height: 0;
}

.gallery-side--single {
  grid-template-rows: minmax(0, 1fr);
}

.gallery-card {
  height: calc((300px - 1.5rem) / 2);
  min-height: 0;
  max-height: calc((300px - 1.5rem) / 2);
}

.gallery-trigger {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.gallery-trigger:focus-visible {
  outline: 2px solid rgba(0, 105, 122, 0.72);
  outline-offset: -2px;
}

.gallery-main img,
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-card-photo-count::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(45, 51, 53, 0.24);
  pointer-events: none;
}

.gallery-card-photo-count figcaption {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 700;
  pointer-events: none;
}

.detail-gallery-modal-open {
  overflow: hidden;
}

.detail-gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 1.5rem;
}

.detail-gallery-modal[hidden] {
  display: none;
}

.detail-gallery-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 21, 24, 0.78);
  backdrop-filter: blur(10px);
}

.detail-gallery-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(68rem, 100%);
  max-height: calc(100vh - 3rem);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 0.9rem;
  padding: 1.25rem;
  border-radius: 1.5rem;
  background: rgba(251, 249, 245, 0.98);
  box-shadow: 0 28px 80px rgba(17, 24, 27, 0.24);
  overflow: hidden;
}

.detail-gallery-modal__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.detail-gallery-modal__eyebrow {
  display: block;
  color: var(--text-soft);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.detail-gallery-modal__title {
  margin: 0.2rem 0 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.4;
  color: var(--text-strong);
}

.detail-gallery-modal__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.detail-gallery-modal__counter {
  color: var(--text-soft);
  font-size: 0.95rem;
  font-weight: 600;
}

.detail-gallery-modal__close,
.detail-gallery-modal__nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: rgba(16, 21, 24, 0.08);
  color: var(--text-strong);
  cursor: pointer;
}

.detail-gallery-modal__close {
  width: 2.75rem;
  height: 2.75rem;
  font-size: 1.6rem;
  line-height: 1;
}

.detail-gallery-modal__close:hover,
.detail-gallery-modal__nav:hover {
  background: rgba(16, 21, 24, 0.14);
}

.detail-gallery-modal__close:focus-visible,
.detail-gallery-modal__nav:focus-visible,
.detail-gallery-modal__thumb:focus-visible {
  outline: 2px solid rgba(0, 105, 122, 0.72);
  outline-offset: 2px;
}

.detail-gallery-modal__stage {
  display: block;
  min-width: 0;
  min-height: 0;
}

.detail-gallery-modal__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 2.75rem;
  height: 2.75rem;
  font-size: 1.5rem;
  transform: translateY(-50%);
  background: rgba(16, 21, 24, 0.24);
  color: #fff;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 24px rgba(17, 24, 27, 0.18);
}

.detail-gallery-modal__nav--prev {
  left: 1rem;
}

.detail-gallery-modal__nav--next {
  right: 1rem;
}

.detail-gallery-modal__nav:disabled {
  opacity: 0.4;
  cursor: default;
}

.detail-gallery-modal__frame {
  margin: 0;
  overflow: hidden;
  border-radius: 1.25rem;
  background: #e9e3da;
  height: clamp(16rem, 50vh, 30rem);
  min-width: 0;
  position: relative;
  isolation: isolate;
}

.detail-gallery-modal__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: translateZ(0);
  will-change: transform, opacity;
}

.detail-gallery-modal__strip {
  display: flex;
  gap: 0.85rem;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  min-height: 6.75rem;
  padding: 0.35rem 0 0.8rem;
  scroll-padding-inline: 50%;
  scroll-behavior: auto;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.detail-gallery-modal__strip::-webkit-scrollbar {
  display: none;
}

.detail-gallery-modal__strip:empty {
  display: none;
}

.detail-gallery-modal__thumb {
  flex: 0 0 clamp(5.1rem, 10vw, 7rem);
  padding: 0;
  border: 1px solid rgba(16, 21, 24, 0.08);
  border-radius: 1rem;
  overflow: hidden;
  background: rgba(16, 21, 24, 0.06);
  cursor: pointer;
  opacity: 0.72;
  transition:
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 220ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 220ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 220ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.detail-gallery-modal__thumb:hover {
  opacity: 0.94;
  transform: translateY(-1px);
}

.detail-gallery-modal__thumb.is-active {
  opacity: 1;
  border-color: rgba(0, 105, 122, 0.42);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 24px rgba(0, 105, 122, 0.14);
  transform: translateY(-2px) scale(1.02);
}

.detail-gallery-modal__thumb img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(18rem, 23rem);
  gap: clamp(2rem, 3.5vw, 3.5rem);
}

.detail-main {
  display: grid;
  gap: clamp(2.25rem, 4vw, 3.5rem);
}

.detail-hero {
  display: grid;
  gap: 1.25rem;
  padding: 0 0 1.75rem;
  border-bottom: 1px solid rgba(15, 32, 39, 0.12);
}

.detail-hero-copy {
  display: grid;
  align-content: start;
  gap: 1rem;
}

.detail-meta-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.detail-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.15rem 0.5rem;
  border-radius: 0;
  background: transparent;
  border: 1px solid rgba(15, 32, 39, 0.22);
  color: #40555a;
  font-size: 0.625rem;
  line-height: 0.9375rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  text-transform: uppercase;
}

.detail-rating-text {
  color: rgba(15, 32, 39, 0.62);
  font-size: 0.84rem;
  line-height: 1.2rem;
  font-weight: 600;
}

.detail-stars-row {
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.detail-stars-row img {
  width: auto;
  height: 0.6875rem;
  object-fit: contain;
}

.detail-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 0.96;
  letter-spacing: -0.045em;
  font-weight: 800;
  max-width: 16ch;
}

.detail-contact-row {
  display: flex;
  align-items: center;
  gap: 0.85rem 1.25rem;
  flex-wrap: wrap;
  padding-top: 0.35rem;
}

.detail-contact {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  max-width: 100%;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  color: var(--text-body);
  font-size: 0.875rem;
  line-height: 1.2rem;
  font-weight: 500;
  overflow-wrap: anywhere;
  white-space: nowrap;
}

.detail-contact img {
  width: auto;
  height: 1rem;
  object-fit: contain;
  flex: none;
}

.detail-contact-arrow {
  height: 0.6875rem !important;
}

.detail-overview {
  display: grid;
  gap: 0.75rem;
  padding-top: 0.35rem;
  max-width: 52rem;
}

.detail-overview-lead {
  max-width: 54rem;
  color: rgba(15, 32, 39, 0.86);
  font-size: 1.08rem;
  line-height: 1.8rem;
  font-weight: 500;
}

.detail-overview-supporting {
  max-width: 52rem;
  color: rgba(15, 32, 39, 0.66);
  font-size: 0.96rem;
  line-height: 1.65rem;
}

.detail-top-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.detail-top-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.8rem;
  padding: 0.3rem 0.55rem;
  border-radius: 0;
  background: transparent;
  border: 1px solid rgba(15, 32, 39, 0.16);
  color: rgba(15, 32, 39, 0.82);
  font-size: 0.72rem;
  line-height: 1rem;
  font-weight: 700;
}

.detail-meta-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem 1.2rem;
  margin: 0;
  padding: 0.75rem 0 0;
}

.detail-meta-item {
  display: grid;
  gap: 0.2rem;
}

.detail-meta-item dt {
  color: rgba(15, 32, 39, 0.54);
  font-size: 0.68rem;
  line-height: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0;
}

.detail-meta-item dd {
  color: #0f2027;
  font-size: 0.94rem;
  line-height: 1.45rem;
  font-weight: 600;
  overflow-wrap: anywhere;
  margin: 0;
}

.detail-section {
  display: grid;
  gap: 1.15rem;
}

.detail-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.detail-map {
  overflow: hidden;
  border-top: 1px solid rgba(15, 32, 39, 0.12);
  border-bottom: 1px solid rgba(15, 32, 39, 0.12);
}

.detail-map-frame {
  width: 100%;
  min-height: 18rem;
  border: 0;
  display: block;
}

.detail-reviews {
  padding-top: 0.25rem;
}

.detail-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border-soft);
}

.detail-section-head-static {
  padding-bottom: 0;
  border-bottom: 0;
}

.detail-review-link {
  color: var(--brand);
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 700;
}

.detail-highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.5rem;
}

.detail-highlight-card {
  display: grid;
  gap: 0.3rem;
  padding: 0.25rem 0 0.25rem 1rem;
  border-left: 2px solid rgba(15, 32, 39, 0.14);
}

.detail-highlight-label {
  color: var(--text-body);
  font-size: 0.625rem;
  line-height: 0.9375rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  text-transform: uppercase;
}

.detail-highlight-card strong {
  color: var(--text-strong);
  font-family: var(--font-display);
  font-size: 1.375rem;
  line-height: 1.75rem;
  font-weight: 800;
}

.detail-highlight-card p {
  color: var(--text-body);
  font-size: 0.8125rem;
  line-height: 1.3125rem;
}

.detail-amenity-groups {
  display: grid;
  gap: 1rem;
}

.detail-amenity-group {
  display: grid;
  gap: 0.85rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(15, 32, 39, 0.12);
}

.detail-amenity-head {
  display: grid;
  gap: 0.35rem;
}

.detail-amenity-head h3 {
  color: var(--text-strong);
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.375rem;
  font-weight: 700;
}

.detail-amenity-head p {
  color: var(--text-body);
  font-size: 0.875rem;
  line-height: 1.4rem;
}

.detail-amenity-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.detail-amenity-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.9rem;
  padding: 0.3rem 0.55rem;
  border-radius: 0;
  background: transparent;
  border: 1px solid rgba(15, 32, 39, 0.14);
  color: var(--text-strong);
  font-size: 0.78rem;
  line-height: 1rem;
  font-weight: 500;
}

.detail-review-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 18.75rem);
  gap: 1.5rem;
}

.review-chart {
  display: grid;
  gap: 0.75rem;
  padding: 0.2rem 0;
}

.review-bar-row {
  display: grid;
  grid-template-columns: 5rem minmax(0, 1fr) 2rem;
  align-items: center;
  gap: 1rem;
}

.review-bar-label,
.review-bar-value {
  color: var(--text-strong);
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.review-bar-track {
  position: relative;
  height: 0.5rem;
  border-radius: var(--radius-pill);
  background: var(--bg-soft);
  overflow: clip;
}

.review-bar-fill {
  position: absolute;
  inset: 0;
  background: var(--brand);
  border-radius: inherit;
}

.review-quote {
  padding: 1rem 0 0 1rem;
  border-radius: 0;
  background: transparent;
  border-left: 2px solid rgba(15, 32, 39, 0.14);
  display: grid;
  gap: 1rem;
}

.review-quote-text {
  color: rgba(15, 32, 39, 0.72);
  font-size: 0.95rem;
  line-height: 1.65rem;
}

.review-author {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-strong);
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 700;
}

.review-author-badge {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: #cfe7ec;
  color: #40555a;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  line-height: 1rem;
}

.google-review-summary {
  display: grid;
  grid-template-columns: minmax(10rem, 12.5rem) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem;
  border-radius: 1rem;
  background: linear-gradient(180deg, rgba(207, 231, 236, 0.42), rgba(255, 255, 255, 0.95));
}

.google-review-score {
  display: grid;
  gap: 0.75rem;
}

.google-review-score strong {
  color: var(--text-strong);
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 3rem;
  font-weight: 800;
}

.google-review-score-copy {
  display: grid;
  gap: 0.35rem;
}

.google-review-score-copy span {
  color: var(--text-body);
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.google-review-summary p {
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.6rem;
}

.google-review-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.google-review-card {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(173, 179, 181, 0.14);
  background: #fff;
  box-shadow: 0 0.75rem 2rem rgba(22, 34, 39, 0.04);
}

.google-review-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.google-review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.google-review-author strong {
  display: block;
  color: var(--text-strong);
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 700;
}

.google-review-author span,
.google-review-date {
  color: var(--text-body);
  font-size: 0.75rem;
  line-height: 1rem;
}

.google-review-badge {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #d9edf1;
  color: #0c6f80;
  font-size: 0.8125rem;
  line-height: 1rem;
  font-weight: 800;
  flex: none;
}

.google-review-rating {
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.google-review-rating img {
  width: auto;
  height: 0.75rem;
}

.google-review-card p {
  color: var(--text-body);
  font-size: 0.875rem;
  line-height: 1.5rem;
}

.detail-aside {
  display: grid;
  gap: 1rem;
  align-self: start;
  position: sticky;
  top: 6rem;
}

.booking-card {
  padding: 0 0 0 1.25rem;
  border-left: 2px solid rgba(15, 32, 39, 0.16);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  display: grid;
  gap: 1.15rem;
}

.booking-card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0;
}

.booking-price {
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
}

.booking-price strong {
  font-family: var(--font-display);
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 800;
}

.booking-price span {
  color: var(--text-body);
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.booking-summary {
  display: grid;
  gap: 0.4rem;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.booking-summary p {
  color: #0f2027;
  font-size: 0.92rem;
  line-height: 1.4rem;
  font-weight: 700;
}

.booking-summary-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  color: rgba(15, 32, 39, 0.66);
  font-size: 0.8rem;
  line-height: 1.2rem;
  font-weight: 600;
}

.booking-fields {
  display: grid;
  gap: 1rem;
}

.booking-field {
  display: grid;
  gap: 0.25rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(15, 32, 39, 0.1);
  border-radius: 0;
  background: transparent;
}

.booking-label {
  color: var(--text-body);
  font-size: 0.625rem;
  line-height: 0.9375rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  text-transform: uppercase;
}

.booking-field strong {
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 700;
  color: #0f2027;
}

.booking-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1rem;
  border-radius: 0;
  background: #0f2027;
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.95rem;
  line-height: 1.35rem;
  font-weight: 700;
}

.booking-actions {
  display: grid;
  gap: 0.75rem;
}

.booking-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1rem;
  border-radius: 0;
  background: transparent;
  border: 1px solid rgba(15, 32, 39, 0.16);
  color: var(--text-strong);
  font-family: var(--font-display);
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 700;
}

.booking-secondary img {
  width: auto;
  height: 0.625rem;
}

.booking-note {
  text-align: left;
  color: var(--text-body);
  font-size: 0.72rem;
  line-height: 1.2rem;
  font-weight: 500;
}

.booking-channel-list {
  display: grid;
  gap: 0.85rem;
}

.booking-channel-list--inline {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.booking-channel-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(15, 32, 39, 0.12);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.booking-channel-item:hover {
  border-color: rgba(0, 105, 122, 0.32);
  transform: none;
  box-shadow: none;
}

.booking-channel-item div {
  display: grid;
  gap: 0.2rem;
}

.booking-channel-item strong {
  display: block;
  color: var(--text-strong);
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.booking-channel-item span {
  color: var(--text-body);
  font-size: 0.75rem;
  line-height: 1rem;
  overflow-wrap: anywhere;
}

.booking-channel-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--brand) !important;
  font-size: 0.75rem !important;
  line-height: 1rem !important;
  font-weight: 700;
  white-space: nowrap;
}

.booking-channel-cta img {
  width: auto;
  height: 0.625rem;
}

@media (max-width: 1180px) {
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .detail-aside {
    position: static;
  }

  .detail-meta-list,
  .booking-channel-list--inline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .detail-page {
    padding-top: 2rem;
  }

  .detail-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    height: auto;
    overflow: visible;
  }

  .gallery-main {
    grid-column: 1 / -1;
    aspect-ratio: 2 / 1;
    height: auto;
    max-height: none;
  }

  .gallery-side {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    height: auto;
    max-height: none;
  }

  .gallery-card {
    aspect-ratio: 1 / 1;
    height: auto;
    max-height: none;
  }

  .detail-gallery-modal {
    padding: 1rem;
  }

  .detail-gallery-modal__dialog {
    max-height: calc(100vh - 2rem);
  }

  .detail-gallery-modal__nav {
    display: none;
  }

  .detail-gallery-modal__frame {
    height: clamp(14rem, 42vh, 24rem);
  }

  .detail-title {
    font-size: 2.5rem;
    line-height: 2.75rem;
  }

  .detail-review-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .detail-meta-list,
  .booking-channel-list--inline {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .detail-shell {
    gap: 2.5rem;
  }

  .detail-main {
    gap: 2.5rem;
  }

  .detail-title {
    font-size: 2rem;
    line-height: 2.25rem;
  }

  .detail-hero {
    padding-bottom: 1.25rem;
  }

  .detail-gallery {
    gap: 0.75rem;
  }

  .detail-gallery-modal__topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .detail-gallery-modal__actions {
    width: 100%;
    justify-content: space-between;
  }

  .detail-gallery-modal__thumb {
    flex-basis: 5.5rem;
  }

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

  .detail-contact {
    width: 100%;
    justify-content: flex-start;
    white-space: normal;
  }

  .detail-highlight-grid {
    grid-template-columns: 1fr;
  }

  .detail-map {
    min-height: 16rem;
  }

  .review-bar-row {
    grid-template-columns: 4.5rem minmax(0, 1fr) 2rem;
    gap: 0.75rem;
  }

  .booking-card {
    padding-left: 0.9rem;
  }

  .booking-channel-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .booking-channel-cta {
    white-space: normal;
  }

}

.detail-subtitle {
  margin: 0 0 0.75rem;
  color: rgba(15, 32, 39, 0.7);
  font-size: 0.98rem;
}

.review-stat-row {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem 1rem;
  align-items: start;
}

.review-stat-row .review-stat-value {
  font-weight: 800;
  color: #0f2027;
}

.review-stat-row .review-stat-meta {
  grid-column: 1 / -1;
  color: rgba(15, 32, 39, 0.62);
  text-align: left;
}

.detail-review-grid-wide {
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
}

.listing-snippet {
  margin: 0;
  color: rgba(15, 32, 39, 0.72);
  font-size: 0.95rem;
  line-height: 1.65;
  min-width: 0;
  overflow-wrap: anywhere;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.listing-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  min-width: 0;
}

.listing-meta-pill {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(0, 105, 122, 0.08);
  color: var(--brand-deep);
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 700;
}

.listing-meta-pill.is-muted {
  background: #f1f5f9;
  color: #475569;
}

.listing-meta-pill.is-soft {
  background: rgba(15, 32, 39, 0.05);
  color: rgba(15, 32, 39, 0.76);
}

.listing-bottomnote {
  margin: 0;
  flex: 1 1 12rem;
  min-width: 0;
  color: rgba(15, 32, 39, 0.56);
  font-size: 0.76rem;
  line-height: 1.1rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.listing-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 2.85rem;
  padding: 0.75rem 1.2rem;
  border-radius: 999px;
  background: #0f2027;
  border: 1px solid transparent;
  color: #f4fbfd;
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
  transition:
    background-color 180ms ease,
    transform 180ms ease;
}

.listing-card-link:hover .listing-cta {
  background: #123645;
}

.hero-filter-option.is-active {
  background: #0f2027;
  color: #fff;
}

.destination-card {
  text-decoration: none;
}

.hotel-card h3 a {
  color: inherit;
  text-decoration: none;
}

.listing-card-empty {
  grid-column: 1 / -1;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translate3d(0, 14px, 0);
  transition:
    opacity 420ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  backface-visibility: hidden;
}

.reveal-on-scroll.is-revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (max-width: 1280px) {
  .listing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .detail-review-grid-wide {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }
}

.filter-reset-button {
  margin-left: auto;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 105, 122, 0.16);
  background: rgba(0, 105, 122, 0.06);
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 700;
}

.filter-count,
.brand-row-meta,
.chip-count {
  color: rgba(15, 32, 39, 0.58);
  font-size: 0.82rem;
  font-weight: 700;
}

.brand-row {
  width: 100%;
  text-align: left;
  background: transparent;
}

.brand-row.is-active,
.check-row-button.is-active {
  border-color: rgba(0, 105, 122, 0.26);
  background: rgba(0, 105, 122, 0.08);
}

.check-row-button {
  width: 100%;
  text-align: left;
}

.active-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.active-filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  background: rgba(0, 105, 122, 0.08);
  border: 1px solid rgba(0, 105, 122, 0.16);
  color: var(--brand-deep);
  font-weight: 700;
}

.hero-filter-option .filter-count {
  margin-left: 0.4rem;
}

.amenity-chip,
.hero-filter-option {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.listing-snippet {
  min-height: 2.8rem;
}

.listing-layout--single {
  grid-template-columns: minmax(0, 1fr);
}

.listing-hero-inner {
  gap: 2rem;
}

.listing-hero-copy {
  width: min(100%, 56rem);
  text-align: left;
  justify-items: start;
  gap: 1rem;
}

.listing-hero-description {
  max-width: 42rem;
  margin: 0;
  color: rgba(15, 32, 39, 0.72);
  font-size: 1rem;
  line-height: 1.75rem;
}

.listing-toolbar {
  width: 100%;
  display: grid;
  gap: 1rem;
  padding: 1.3rem;
  border-radius: 1.9rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 105, 122, 0.12);
  box-shadow: 0 20px 45px rgba(15, 32, 39, 0.08);
}

.listing-toolbar__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.listing-toolbar__field {
  display: grid;
  gap: 0.45rem;
}

.listing-toolbar__field span {
  color: rgba(15, 32, 39, 0.66);
  font-size: 0.72rem;
  line-height: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.listing-toolbar__field input,
.listing-toolbar__field select {
  width: 100%;
  min-height: 3.15rem;
  padding: 0 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(0, 105, 122, 0.14);
  background: #fff;
  color: var(--text-strong);
  font-size: 0.95rem;
  line-height: 1.35rem;
  appearance: none;
}

.listing-toolbar__field input:focus,
.listing-toolbar__field select:focus {
  outline: none;
  border-color: rgba(0, 105, 122, 0.28);
  box-shadow: 0 0 0 4px rgba(0, 105, 122, 0.08);
}

.listing-toolbar__actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.75rem;
}

.results-toolbar--summary {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.results-summary-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: rgba(0, 105, 122, 0.08);
  color: var(--brand-deep);
  font-size: 0.85rem;
  font-weight: 700;
}

/* Editorial refresh: home, listing, blog, article */

.page-home .section-head--editorial,
.page-destinations .section-head--editorial,
.page-travel-tips .blog-section-head--editorial,
.page-travel-tips-detail .article-related-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.page-home .section-intro,
.page-travel-tips .blog-index-intro,
.page-destinations .listing-hero-description {
  max-width: 42rem;
  margin: 0.85rem 0 0;
  color: rgba(15, 32, 39, 0.72);
  font-size: 1rem;
  line-height: 1.8;
}

.home-page {
  padding-bottom: 5rem;
}

.home-hero {
  padding: 2rem 0 2.5rem;
  border-bottom: 1px solid rgba(15, 32, 39, 0.12);
}

.home-hero-frame {
  position: relative;
  min-height: clamp(30rem, 72vh, 44rem);
  overflow: hidden;
}

.home-hero-media,
.home-hero-overlay,
.home-hero-layout {
  position: absolute;
  inset: 0;
}

.home-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero-overlay {
  background:
    linear-gradient(90deg, rgba(12, 20, 24, 0.8) 0%, rgba(12, 20, 24, 0.48) 42%, rgba(12, 20, 24, 0.18) 100%),
    linear-gradient(180deg, rgba(12, 20, 24, 0.08) 0%, rgba(12, 20, 24, 0.32) 100%);
}

.home-hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(21rem, 0.8fr);
  gap: 2.5rem;
  align-items: end;
  padding: clamp(2rem, 4vw, 3rem);
  padding-top: 8rem;
}

.home-hero-copy h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.home-hero-copy h1 span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
}

.home-hero-copy .eyebrow {
  color: rgba(255, 255, 255, 0.8);
}

.home-hero-description {
  max-width: 38rem;
  margin: 1.5rem 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
  line-height: 1.9;
}

.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin-top: 2rem;
}

.home-action-link {
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}

.home-hero-side {
  display: grid;
  gap: 1.5rem;
  align-self: end;
}

.home-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: rgba(10, 18, 22, 0.7);
  backdrop-filter: blur(10px);
}

.home-metric {
  padding: 1rem 1.1rem;
}

.home-metric:not(:first-child) {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.home-metric-label {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  line-height: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-metric strong {
  display: block;
  margin-top: 0.35rem;
  color: #fff;
  font-size: 1.9rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.home-hero-note {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.82);
}

.home-hero-note p {
  margin: 0;
  font-size: 0.76rem;
  line-height: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-hero-note strong {
  display: block;
  margin-top: 0.45rem;
  color: #fff;
  font-size: 1.15rem;
  line-height: 1.6;
  font-weight: 700;
}

.home-section {
  padding: 3rem 0 0;
}

.destination-grid--editorial {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-areas:
    "main main main main main main sidea sidea sidea sideb sideb sideb"
    "main main main main main main sidec sidec sidec sided sided sided";
  grid-template-rows: minmax(16rem, 18rem) minmax(16rem, 18rem);
  gap: 1px;
  padding: 1px;
  background: rgba(15, 32, 39, 0.12);
  overflow: hidden;
}

.page-home .destination-card {
  position: relative;
  min-height: 0;
  padding: 0;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
}

.page-home .destination-card--layout-1 { grid-area: main; }
.page-home .destination-card--layout-2 { grid-area: sidea; }
.page-home .destination-card--layout-3 { grid-area: sideb; }
.page-home .destination-card--layout-4 { grid-area: sidec; }
.page-home .destination-card--layout-5 { grid-area: sided; }

.page-home .destination-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 19, 23, 0.04) 0%, rgba(10, 19, 23, 0.28) 48%, rgba(10, 19, 23, 0.88) 100%);
}

.page-home .destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.02);
}

.page-home .destination-card .card-copy {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  display: grid;
  gap: 0.35rem;
  padding: 1.45rem;
  color: #fff;
}

.destination-count {
  margin: 0 0 0.55rem;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.76);
}

.page-home .destination-card .card-copy h3 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.page-home .destination-card--layout-1 .card-copy h3 {
  font-size: 2.4rem;
  line-height: 0.98;
}

.page-home .destination-card .card-copy p:last-child {
  margin: 0.5rem 0 0;
  color: rgba(255, 255, 255, 0.84);
}

.hotel-grid--editorial {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.featured-stay-card {
  display: grid;
  grid-template-columns: minmax(19rem, 23rem) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(15, 32, 39, 0.12);
}

.featured-stay-media {
  position: relative;
  display: block;
  aspect-ratio: 5 / 4;
  overflow: hidden;
  border-radius: 0;
}

.featured-stay-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-stay-rating {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.7rem;
  min-height: 2.2rem;
  padding: 0.35rem 0.6rem;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text-strong);
  font-size: 0.82rem;
  font-weight: 700;
}

.featured-stay-copy {
  display: grid;
  gap: 1.2rem;
  align-content: start;
  min-width: 0;
}

.featured-stay-head {
  display: grid;
  gap: 0.8rem;
}

.featured-stay-kicker,
.directory-card-kicker {
  margin: 0;
  color: rgba(15, 32, 39, 0.56);
  font-size: 0.76rem;
  line-height: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.featured-stay-head h3 {
  margin: 0;
  max-width: 18ch;
  font-size: clamp(2rem, 2.8vw, 2.45rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.featured-stay-head h3 a {
  display: block;
  color: var(--text-strong);
  text-decoration: none;
}

.featured-stay-meta,
.directory-card-meta {
  margin: 0;
  color: rgba(15, 32, 39, 0.62);
  font-size: 0.92rem;
  line-height: 1.6;
}

.featured-stay-summary,
.directory-card-summary {
  margin: 0;
  color: rgba(15, 32, 39, 0.76);
  font-size: 1.02rem;
  line-height: 1.9;
}

.featured-stay-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(15, 32, 39, 0.12);
}

.featured-stay-fact {
  display: grid;
  gap: 0.28rem;
}

.featured-stay-fact span {
  color: rgba(15, 32, 39, 0.54);
  font-size: 0.72rem;
  line-height: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.featured-stay-fact strong {
  color: var(--text-strong);
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 700;
}

.featured-stay-tags,
.directory-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.featured-stay-tag,
.directory-card-tag {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.3rem 0.65rem;
  border: 1px solid rgba(15, 32, 39, 0.14);
  color: var(--text-strong);
  font-size: 0.78rem;
  line-height: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.featured-stay-actions,
.directory-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(15, 32, 39, 0.12);
}

.featured-stay-support,
.directory-card-footer-copy {
  color: rgba(15, 32, 39, 0.62);
  font-size: 0.84rem;
  line-height: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.featured-stay-link,
.directory-card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  padding: 0 1rem;
  background: var(--brand-deep);
  color: #fff;
  font-size: 0.82rem;
  line-height: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}

.page-home .hotel-card,
.page-destinations .listing-card,
.page-travel-tips .blog-card,
.page-travel-tips-detail .related-story-card,
.page-home .journal-card {
  border-radius: 0;
  box-shadow: none;
}

.page-home .hotel-card {
  display: grid;
  grid-template-columns: minmax(12rem, 14rem) minmax(0, 1fr);
  gap: 1.25rem;
  padding: 0 0 1.5rem;
  border-bottom: 1px solid rgba(15, 32, 39, 0.12);
  align-items: start;
}

.page-home .hotel-image {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3.4;
  overflow: hidden;
  border-radius: 0;
}

.page-home .hotel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-home .hotel-rating {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.6rem;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text-strong);
  font-size: 0.82rem;
  font-weight: 700;
}

.page-home .hotel-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
}

.page-home .hotel-location {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  color: rgba(15, 32, 39, 0.64);
  font-size: 0.86rem;
  line-height: 1.4;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.page-home .hotel-copy h3 {
  margin: 0.5rem 0 0;
  font-size: 1.6rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.page-home .hotel-copy h3 a,
.journal-card-title,
.blog-card-title,
.blog-feature-title,
.related-story-title,
.article-related-link,
.article-breadcrumb a {
  color: var(--text-strong);
  text-decoration: none;
}

.hotel-summary {
  margin: 0.9rem 0 0;
  color: rgba(15, 32, 39, 0.74);
  line-height: 1.8;
}

.page-home .hotel-pricing {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(15, 32, 39, 0.1);
}

.page-home .hotel-pricing p {
  margin: 0;
  color: rgba(15, 32, 39, 0.62);
  font-size: 0.9rem;
  line-height: 1.6;
}

.page-home .hotel-pricing strong {
  color: var(--brand-deep);
  font-size: 0.82rem;
  line-height: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-section--journal {
  padding-bottom: 2rem;
}

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

.journal-card {
  display: grid;
  gap: 1rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(15, 32, 39, 0.12);
}

.journal-card-media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.journal-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.journal-card-copy {
  display: grid;
  gap: 0.7rem;
}

.journal-card-meta,
.blog-card-meta,
.blog-feature-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  color: rgba(15, 32, 39, 0.6);
  font-size: 0.76rem;
  line-height: 1rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.journal-card-title,
.blog-card-title,
.related-story-title {
  font-size: 1.3rem;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.journal-card-excerpt,
.blog-card-excerpt,
.related-story-excerpt {
  margin: 0;
  color: rgba(15, 32, 39, 0.72);
  line-height: 1.8;
}

.listing-page--editorial {
  padding: 2.75rem 0 5rem;
}

.listing-hero-panel--editorial,
.listing-toolbar-shell,
.blog-index-hero,
.article-hero--editorial {
  border-top: 1px solid rgba(15, 32, 39, 0.12);
  border-bottom: 1px solid rgba(15, 32, 39, 0.12);
}

.listing-hero-panel--editorial {
  padding: 2rem 0;
  background: transparent;
  border-radius: 0;
}

.listing-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(18rem, 0.85fr);
  gap: 2rem;
  align-items: end;
}

.listing-hero-copy h1,
.blog-index-hero-copy h1 {
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.listing-hero-stats,
.blog-index-hero-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.listing-hero-stat,
.blog-index-hero-meta article {
  padding-top: 1rem;
  border-top: 1px solid rgba(15, 32, 39, 0.12);
}

.listing-hero-stat span,
.blog-index-hero-meta span {
  display: block;
  color: rgba(15, 32, 39, 0.58);
  font-size: 0.76rem;
  line-height: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.listing-hero-stat strong,
.blog-index-hero-meta strong {
  display: block;
  margin-top: 0.45rem;
  font-size: 1.7rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.listing-toolbar-shell {
  padding: 1.5rem 0;
}

.listing-toolbar--editorial {
  padding: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

.listing-toolbar--editorial .listing-toolbar__field input,
.listing-toolbar--editorial .listing-toolbar__field select,
.pill-button--square,
.pill-button-outline--square,
.results-summary-pill,
.active-filter-chip,
.blog-chip,
.blog-feature-button,
.blog-load-more,
.article-booking-button {
  border-radius: 0;
}

.listing-toolbar--editorial .listing-toolbar__field input,
.listing-toolbar--editorial .listing-toolbar__field select {
  border-color: rgba(15, 32, 39, 0.12);
}

.pill-button--square,
.pill-button-outline--square {
  min-height: 3rem;
}

.results-head {
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(15, 32, 39, 0.12);
}

.results-summary-pill {
  min-height: auto;
  padding: 0.55rem 0.8rem;
  background: transparent;
  border: 1px solid rgba(15, 32, 39, 0.18);
  color: var(--text-strong);
}

.filter-reset-button {
  color: rgba(15, 32, 39, 0.68);
}

.active-filter-row {
  padding: 1rem 0 0.25rem;
}

.active-filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.65rem;
  border: 1px solid rgba(15, 32, 39, 0.14);
  background: transparent;
  color: var(--text-strong);
  text-decoration: none;
}

.listing-grid--editorial {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.directory-card {
  display: grid;
  grid-template-columns: minmax(16rem, 18rem) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(15, 32, 39, 0.12);
  color: inherit;
  text-decoration: none;
}

.directory-card-media {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
}

.directory-card-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.directory-card-media-top {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  right: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.directory-card-badge,
.directory-card-count,
.page-travel-tips .blog-chip {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.28rem 0.6rem;
  border: 1px solid rgba(15, 32, 39, 0.16);
  background: rgba(255, 255, 255, 0.92);
  color: var(--text-strong);
  font-size: 0.76rem;
  line-height: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 0;
}

.directory-card-copy {
  display: grid;
  gap: 0.85rem;
  align-content: start;
  min-width: 0;
  width: 100%;
}

.directory-card-title {
  margin: 0;
  font-size: clamp(1.8rem, 3.1vw, 2.6rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  overflow-wrap: normal;
  word-break: normal;
  white-space: normal;
  max-width: 42rem;
}

.page-destinations .filter-reset-button,
.page-destinations .results-summary-pill,
.page-destinations .active-filter-chip {
  border-radius: 0;
}

.listing-pagination {
  margin-top: 2rem;
}

.listing-pagination__page,
.listing-pagination__nav {
  border-radius: 0;
}

.blog-index-page--editorial {
  padding: 2.75rem 0 5rem;
}

.blog-index-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(14rem, 0.75fr);
  gap: 2rem;
  padding: 2rem 0;
  margin-bottom: 2rem;
}

.page-travel-tips .blog-shell {
  display: grid;
  gap: 2.5rem;
}

.page-travel-tips .blog-feature-card.blog-feature-card--editorial {
  display: grid;
  grid-template-columns: minmax(20rem, 1.05fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
  padding: 0 0 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(15, 32, 39, 0.12);
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.page-travel-tips .blog-feature-card--editorial > * {
  min-width: 0;
}

.page-travel-tips .blog-feature-media {
  display: block;
  aspect-ratio: 16 / 11;
  min-height: 0;
  overflow: hidden;
  border-radius: 0;
}

.page-travel-tips .blog-feature-media img,
.blog-card-media img,
.related-story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-travel-tips .blog-feature-copy,
.blog-card-copy {
  display: grid;
  gap: 1rem;
  align-content: start;
  padding: 0;
}

.page-travel-tips .blog-feature-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.page-travel-tips .blog-feature-title {
  display: block;
  max-width: 13ch;
  color: var(--text-strong);
  font-size: clamp(2.2rem, 3.4vw, 3.25rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.page-travel-tips .blog-feature-excerpt {
  margin: 0;
  color: rgba(15, 32, 39, 0.72);
  max-width: 32rem;
  font-size: 1.02rem;
  line-height: 1.9;
}

.page-travel-tips .blog-feature-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 0.5rem;
}

.blog-feature-button,
.blog-load-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0 1.25rem;
  border: 1px solid rgba(15, 32, 39, 0.16);
  background: var(--brand-deep);
  color: #fff;
  font-size: 0.82rem;
  line-height: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}

.blog-section-head--editorial {
  margin: 2rem 0 1.5rem;
}

.blog-category-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.blog-chip {
  gap: 0.45rem;
  background: transparent;
  color: rgba(15, 32, 39, 0.7);
  text-decoration: none;
}

.blog-chip.is-active {
  color: var(--text-strong);
  border-color: rgba(15, 32, 39, 0.28);
}

.blog-article-grid--editorial {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.blog-card--editorial {
  display: grid;
  grid-template-columns: minmax(14rem, 16rem) minmax(0, 1fr);
  gap: 1.25rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(15, 32, 39, 0.12);
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.blog-card-media,
.related-story-media {
  display: block;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  border-radius: 0;
}

.blog-load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.blog-empty-state {
  display: grid;
  gap: 0.85rem;
  max-width: 42rem;
  padding: 2rem 0 0;
  border-top: 1px solid rgba(15, 32, 39, 0.12);
}

.blog-empty-state h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.blog-empty-state p:last-of-type {
  margin: 0;
  color: rgba(15, 32, 39, 0.72);
  line-height: 1.9;
}

.article-page--editorial {
  padding-bottom: 5rem;
}

.policy-page--editorial {
  padding-bottom: 5rem;
}

.article-hero--editorial {
  padding: 2rem 0 2.5rem;
}

.article-hero--editorial .article-shell {
  display: grid;
  gap: 1.5rem;
}

.article-hero--editorial .article-breadcrumb {
  margin-bottom: 0;
}

.article-hero-copy {
  display: grid;
  gap: 1.25rem;
}

.article-hero-heading h1 {
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.article-hero-topline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.article-hero-tag,
.article-end-tag {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.28rem 0.65rem;
  border: 1px solid rgba(15, 32, 39, 0.16);
  background: transparent;
  color: rgba(15, 32, 39, 0.72);
  font-size: 0.76rem;
  line-height: 1rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.article-hero-excerpt {
  max-width: 52rem;
  margin: 1rem 0 0;
  color: rgba(15, 32, 39, 0.74);
  font-size: 1.06rem;
  line-height: 1.9;
}

.article-hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(15, 32, 39, 0.12);
}

.article-hero-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.article-hero-avatar,
.article-author-avatar {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: rgba(15, 32, 39, 0.08);
  color: var(--text-strong);
  font-weight: 700;
}

.article-hero-avatar img,
.article-author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-hero-author-name,
.article-author-copy h2 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.4;
}

.article-hero-author-role,
.article-author-role {
  margin: 0.2rem 0 0;
  color: rgba(15, 32, 39, 0.6);
  line-height: 1.6;
}

.article-hero-facts {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.85rem 1.25rem;
  color: rgba(15, 32, 39, 0.62);
  font-size: 0.82rem;
  line-height: 1rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.article-hero-frame--editorial {
  overflow: hidden;
}

.article-hero-frame--editorial .article-hero-image {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 7.6;
  object-fit: cover;
}

.article-content-layout--editorial {
  display: flex;
  align-items: flex-start;
  gap: 2.75rem;
  padding-top: 2.5rem;
}

.article-content-layout--editorial.article-content-layout--no-side {
  display: grid;
  grid-template-columns: minmax(12rem, 14rem) minmax(0, 62rem);
  justify-content: start;
}

.policy-page--editorial .article-main--editorial {
  max-width: 52rem;
}

.policy-page--editorial .article-rich-content > section {
  display: grid;
  gap: 0.95rem;
}

.policy-page--editorial .article-hero-facts {
  justify-content: flex-start;
}

.policy-page--editorial .policy-support-card {
  gap: 1rem;
}

.article-meta--editorial,
.article-side-card--editorial {
  flex: 0 0 14rem;
}

.article-main--editorial {
  flex: 1 1 auto;
  min-width: 0;
}

.article-content-layout--editorial.article-content-layout--no-side .article-main--editorial {
  max-width: 62rem;
}

.article-meta-panel {
  position: sticky;
  top: 6rem;
}

.article-meta-panel,
.article-booking-card--editorial {
  display: grid;
  gap: 1.25rem;
}

.article-side-card--editorial {
  position: sticky;
  top: 6rem;
  align-self: flex-start;
}

.article-meta-card--editorial,
.article-toc-card--editorial,
.article-author-card--editorial,
.article-booking-card--editorial {
  padding: 1rem 0 0;
  border-top: 1px solid rgba(15, 32, 39, 0.12);
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.article-meta-card--editorial,
.article-toc-card--editorial {
  padding-top: 0;
  border-top: 0;
}

.article-page--editorial .article-meta-card--editorial,
.article-page--editorial .article-toc-card--editorial,
.article-page--editorial .article-meta-card--editorial .article-meta-group,
.article-page--editorial .article-toc-card--editorial .article-meta-group,
.article-page--editorial .article-toc-nav {
  border: 0;
  box-shadow: none;
}

.article-meta-card--editorial .article-meta-group + .article-meta-group {
  margin-top: 1rem;
  padding-top: 0;
  border-top: 0;
}

.article-meta-group + .article-meta-group {
  margin-top: 1rem;
}

.article-meta-label,
.article-author-label,
.article-section-eyebrow {
  display: block;
  color: rgba(15, 32, 39, 0.58);
  font-size: 0.76rem;
  line-height: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-meta-value {
  margin: 0.45rem 0 0;
  color: var(--text-strong);
  line-height: 1.62;
}

.article-toc-nav,
.article-share-list {
  display: grid;
  gap: 0.7rem;
  margin-top: 0.8rem;
}

.article-toc-link,
.article-share-link,
.article-booking-link {
  color: rgba(15, 32, 39, 0.72);
  text-decoration: none;
}

.article-lead {
  margin: 0 0 1.75rem;
  color: #243b43;
  font-family: var(--font-body);
  font-weight: 500;
  max-width: 58rem;
  font-size: clamp(1.16rem, 1.48vw, 1.34rem);
  line-height: 1.86;
  letter-spacing: -0.01em;
}

.article-endcap--editorial {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(15, 32, 39, 0.12);
}

.article-end-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.article-author-card--editorial {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  padding: 0.9rem 0;
}

.article-author-card--editorial h2 {
  color: var(--text-strong);
  font-size: 1.22rem;
  line-height: 1.28;
}

.article-author-card--editorial .article-author-role,
.article-author-card--editorial .article-author-meta {
  color: rgba(15, 32, 39, 0.7);
  font-size: 0.96rem;
  line-height: 1.72;
}

.article-pagination {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.75rem;
}

.article-pagination-card {
  padding: 1rem 0 0;
  border-top: 1px solid rgba(15, 32, 39, 0.12);
  border-radius: 0;
  background: transparent;
  color: var(--text-strong);
  text-decoration: none;
}

.article-pagination-label {
  display: block;
  color: rgba(15, 32, 39, 0.58);
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-booking-card--editorial h3 {
  margin: 0;
  color: var(--text-strong);
  font-size: 1.35rem;
  line-height: 1.3;
}

.article-booking-card--editorial p {
  margin: 0;
  color: rgba(15, 32, 39, 0.78);
  line-height: 1.8;
}

.article-booking-card--editorial {
  position: static;
  padding: 1.25rem;
  border: 1px solid rgba(15, 32, 39, 0.12);
  background: #f4f7f8;
  color: var(--text-strong);
}

.article-booking-card--editorial .article-booking-media {
  min-height: 0;
  border-radius: 0;
  background: transparent;
}

.article-booking-card--editorial .article-booking-button {
  width: 100%;
  min-height: 3rem;
  border: 1px solid rgba(15, 32, 39, 0.16);
  background: var(--brand-deep);
  color: #fff;
}

.article-booking-card--editorial .article-booking-link {
  width: fit-content;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid rgba(15, 32, 39, 0.18);
  color: var(--text-strong);
  font-size: 0.82rem;
  line-height: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: none;
}

.article-booking-media {
  overflow: hidden;
}

.article-booking-media img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.article-booking-button {
  width: 100%;
}

.article-related-section--editorial {
  padding-top: 3rem;
}

.article-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.related-story-card {
  display: grid;
  gap: 1rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(15, 32, 39, 0.12);
}

.related-story-copy {
  display: grid;
  gap: 0.75rem;
}

.related-story-category {
  color: rgba(15, 32, 39, 0.58);
  font-size: 0.76rem;
  line-height: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 1080px) {
  .home-hero-layout,
  .listing-hero-inner,
  .blog-index-hero,
  .blog-card--editorial,
  .featured-stay-card,
  .directory-card {
    grid-template-columns: 1fr;
  }

  .page-travel-tips .blog-feature-card.blog-feature-card--editorial {
    grid-template-columns: 1fr;
  }

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

  .listing-grid--editorial {
    grid-template-columns: 1fr;
  }

  .article-content-layout--editorial {
    flex-direction: column;
  }

  .article-meta--editorial,
  .article-side-card--editorial {
    width: 100%;
    flex-basis: auto;
  }

  .article-meta-panel,
  .article-side-card--editorial {
    position: static;
  }
}

@media (max-width: 720px) {
  .home-hero,
  .listing-page--editorial,
  .blog-index-page--editorial,
  .article-page--editorial {
    padding-top: 2rem;
  }

  .home-metrics,
  .destination-grid--editorial,
  .journal-grid,
  .blog-article-grid--editorial,
  .article-related-grid,
  .listing-hero-stats,
  .blog-index-hero-meta,
  .article-pagination {
    grid-template-columns: 1fr;
  }

  .section-head--editorial,
  .blog-section-head--editorial,
  .article-related-head,
  .article-hero-bottom,
  .results-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-hero-copy h1,
  .listing-hero-copy h1,
  .blog-index-hero-copy h1,
  .article-hero-heading h1 {
    font-size: 2.5rem;
  }

  .home-hero-frame {
    min-height: 34rem;
  }

  .page-home .destination-card {
    min-height: 18rem;
  }

  .featured-stay-card,
  .directory-card,
  .page-travel-tips .blog-card--editorial {
    grid-template-columns: 1fr;
  }

  .page-travel-tips .blog-feature-card.blog-feature-card--editorial {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .featured-stay-facts {
    grid-template-columns: 1fr;
  }

  .destination-grid--editorial {
    grid-template-columns: 1fr;
    grid-template-areas: none;
    grid-template-rows: none;
  }

  .page-home .destination-card--layout-1,
  .page-home .destination-card--layout-2,
  .page-home .destination-card--layout-3,
  .page-home .destination-card--layout-4,
  .page-home .destination-card--layout-5 {
    grid-area: auto;
    min-height: 15rem;
  }
}

.header-search input,
.mobile-nav-toggle,
.mobile-nav-dialog,
.mobile-nav-search input {
  border-radius: 0;
}
