/* Sab Around — design system + homepage styles
   Aman/Aesop quiet luxury · Fraunces + Inter Tight · warm putty palette */

/* ── Tokens ─────────────────────────────────────────────────────────────── */
:root {
  /* Color — warm putty / espresso */
  --ivory: #F2EDE5;
  --ivory-2: #E8E1D5;
  --paper: #FBF8F2;
  --sand: #DCCEB1;
  --sand-2: #C9B69A;
  --clay: #B59B7A;
  --umber: #7A6548;
  --stone: #6E6856;
  --espresso: #3D3528;
  --ink: #1F1B14;
  --gold: #A88A52;

  /* Type */
  --serif: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter Tight', 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  /* Type scale */
  --t-display: clamp(56px, 8.5vw, 132px);
  --t-h1: clamp(48px, 6vw, 92px);
  --t-h2: clamp(36px, 4.4vw, 68px);
  --t-h3: clamp(22px, 1.8vw, 28px);
  --t-lead: clamp(17px, 1.3vw, 20px);
  --t-body: 16px;
  --t-small: 13px;
  --t-mono: 11px;

  /* Layout */
  --maxw: 1440px;
  --gutter: clamp(20px, 4vw, 64px);
  --rail: 1px;
}

/* ── Reset-ish ──────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: var(--t-body);
  line-height: 1.5;
  color: var(--espresso);
  background: var(--paper);
  font-feature-settings: 'ss01', 'cv11';
}
h1, h2, h3, h4, p, ul, ol { margin: 0; padding: 0; }
ul, ol { list-style: none; }
button { font: inherit; color: inherit; background: transparent; border: 0; padding: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

/* ── Layout primitives ─────────────────────────────────────────────────── */
.section {
  padding: clamp(80px, 9vw, 140px) var(--gutter);
  max-width: var(--maxw);
  margin: 0 auto;
}
.section + .section { padding-top: 0; }

.sec-hd { margin-bottom: clamp(48px, 5vw, 80px); max-width: 920px; }
.sec-hd-center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-kicker {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--mono); font-size: var(--t-mono); letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--umber); margin-bottom: 24px;
}
.sec-hd-center .sec-kicker { justify-content: center; }
.sec-rule { display: inline-block; width: 28px; height: 1px; background: var(--clay); }
.sec-title {
  font-family: var(--serif); font-weight: 350; font-size: var(--t-h2);
  line-height: 1.02; letter-spacing: -0.02em; color: var(--ink);
  font-variation-settings: 'opsz' 96, 'SOFT' 50;
  text-wrap: balance;
}
.sec-lead {
  font-family: var(--serif); font-weight: 350; font-style: italic;
  font-size: var(--t-lead); line-height: 1.45; color: var(--stone);
  margin-top: 18px; max-width: 56ch; text-wrap: pretty;
}

/* ── Buttons ───────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 28px; font-family: var(--mono); font-size: var(--t-mono);
  letter-spacing: 0.18em; text-transform: uppercase; line-height: 1;
  border: 1px solid transparent; transition: all 0.4s ease;
  cursor: pointer; white-space: nowrap;
}
.btn-sm { padding: 12px 20px; }
.btn-primary { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn-primary:hover { background: transparent; color: var(--ink); }
.btn-ghost { color: var(--paper); border-color: rgba(255, 253, 248, 0.5); }
.btn-ghost:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.btn-arrow { font-style: normal; font-size: 14px; transition: transform 0.3s ease; }
.btn:hover .btn-arrow { transform: translateX(3px); }

.link-underline {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: var(--t-mono);
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink);
  padding-bottom: 4px; border-bottom: 1px solid var(--clay);
  transition: border-color 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}
.link-underline i { font-style: normal; transition: transform 0.3s ease; }
.link-underline:hover { color: var(--gold); border-color: var(--gold); }
.link-underline:hover i { transform: translateX(3px); }
.link-small { font-size: 10px; letter-spacing: 0.14em; }

/* ── Topbar ────────────────────────────────────────────────────────────── */
.topbar {
  border-bottom: 1px solid var(--ivory-2);
  background: var(--paper);
}
.topbar-inner {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: center; gap: 14px;
  padding: 14px var(--gutter);
  font-family: var(--mono); font-size: var(--t-mono);
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--stone);
}
.topbar-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--clay); }
.topbar-spacer { flex: 1; }
.lang { display: flex; align-items: center; gap: 8px; }
.lang button {
  font-family: var(--mono); font-size: var(--t-mono); letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--stone); transition: color 0.3s;
}
.lang button[data-on="true"] { color: var(--ink); }
.lang button:hover { color: var(--ink); }
.lang span { color: var(--clay); }

/* ── Nav ───────────────────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 248, 242, 0.92);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--ivory-2);
}
.nav-inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; gap: 32px;
  padding: 32px var(--gutter);
}
.nav-list { display: flex; gap: clamp(18px, 2vw, 36px); }
.nav-right { justify-content: flex-end; }
.nav-list a {
  font-family: var(--mono); font-size: var(--t-mono);
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--stone);
  transition: color 0.3s;
}
.nav-list a:hover { color: var(--ink); }

.wordmark {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  text-align: center;
}
.wm-logo { height: 88px; width: auto; display: block; }
.footer-logo { height: 80px; width: auto; display: block; }
.wm-mark {
  font-family: var(--serif); font-weight: 350; font-size: 22px;
  letter-spacing: 0.16em; color: var(--ink);
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
}
.wm-mark-lg { font-size: 56px; line-height: 1; letter-spacing: 0.08em; }
.wm-name {
  font-family: var(--mono); font-size: 9px;
  letter-spacing: 0.34em; text-transform: uppercase; color: var(--umber);
}

/* ── Photo placeholder ─────────────────────────────────────────────────── */
.ph {
  position: relative; overflow: hidden; width: 100%;
  background: var(--sand);
}
.ph-stripes {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    var(--angle, 90deg),
    transparent 0,
    transparent 14px,
    rgba(255, 253, 248, 0.06) 14px,
    rgba(255, 253, 248, 0.06) 15px
  );
  pointer-events: none;
}
.ph-grain {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.4;
  background-image: radial-gradient(rgba(0,0,0,0.03) 1px, transparent 1px);
  background-size: 3px 3px;
}
.ph-label {
  position: absolute; left: 14px; bottom: 14px; right: 14px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(31, 27, 20, 0.6);
  display: flex; align-items: center; gap: 10px;
}
.ph-label::before {
  content: ''; flex: 0 0 18px; height: 1px; background: currentColor;
}
.ph-label[data-dark="1"] { color: rgba(251, 248, 242, 0.65); }

/* ── Hero ──────────────────────────────────────────────────────────────── */
.hero {
  position: relative; height: clamp(640px, 92vh, 880px);
  overflow: hidden; background-color: var(--espresso);
  background-size: cover; background-position: center;
}
.hero .ph { position: absolute; inset: 0; aspect-ratio: auto !important; }
.hero-grad {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(31,27,20,0.4) 0%, rgba(31,27,20,0.0) 30%, rgba(31,27,20,0.0) 60%, rgba(31,27,20,0.6) 100%),
    linear-gradient(90deg, rgba(31,27,20,0.35) 0%, rgba(31,27,20,0) 50%);
}
.hero-content {
  position: absolute; left: 0; right: 0;
  top: 50%; transform: translateY(-50%);
  padding: 0 var(--gutter); max-width: var(--maxw); margin: 0 auto;
  z-index: 2;
}
.hero-eyebrow {
  display: inline-block;
  font-family: var(--mono); font-size: var(--t-mono); letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(251, 248, 242, 0.8);
  padding-bottom: 28px;
  position: relative;
}
.hero-eyebrow::before {
  content: ''; position: absolute; left: 0; top: -1px; width: 36px; height: 1px;
  background: rgba(251, 248, 242, 0.6); transform: translateY(-14px);
}
.hero-title {
  font-family: var(--serif); font-weight: 300; color: var(--paper);
  font-size: var(--t-display); line-height: 0.95; letter-spacing: -0.025em;
  font-variation-settings: 'opsz' 144, 'SOFT' 60;
  max-width: 14ch;
}
.hero-line { display: block; }
.hero-line:nth-child(2) { font-style: italic; padding-left: clamp(20px, 3vw, 60px); }
.hero-line:nth-child(4) { font-style: italic; }
.hero-sub {
  font-family: var(--serif); font-weight: 350; font-style: italic;
  font-size: var(--t-lead); line-height: 1.45; color: rgba(251, 248, 242, 0.85);
  max-width: 50ch; margin-top: 36px; text-wrap: pretty;
}
.hero-ctas { display: flex; gap: 14px; margin-top: 40px; flex-wrap: wrap; }

.hero-meta {
  position: absolute; left: 0; right: 0; bottom: 32px;
  padding: 0 var(--gutter); max-width: var(--maxw); margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(251, 248, 242, 0.65);
  z-index: 2;
}
.hero-scroll { display: flex; align-items: center; gap: 10px; }
.hero-scroll::after {
  content: ''; width: 1px; height: 28px;
  background: linear-gradient(to bottom, rgba(251,248,242,0.6), transparent);
  animation: scrollPulse 2.4s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.7); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ── Destinations ──────────────────────────────────────────────────────── */
.dest-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(36px, 4vw, 60px) clamp(28px, 3vw, 44px);
}
.dest-card { display: flex; flex-direction: column; }
.dest-img { aspect-ratio: 4 / 5; overflow: hidden; width: 100%; }
.dest-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.7s ease; }
.dest-card:hover .dest-img img { transform: scale(1.02); }
.dest-meta { display: flex; gap: 18px; padding-top: 20px; }
.dest-num {
  font-family: var(--serif); font-weight: 350; font-style: italic;
  font-size: 28px; color: var(--clay); line-height: 1;
  font-variation-settings: 'opsz' 144;
}
.dest-body { flex: 1; }
.dest-row {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 16px; padding-bottom: 6px;
  border-bottom: 1px solid var(--ivory-2);
}
.dest-name {
  font-family: var(--serif); font-weight: 350; font-size: 26px;
  letter-spacing: -0.01em; color: var(--ink); line-height: 1.1;
  font-variation-settings: 'opsz' 144;
}
.dest-country {
  font-family: var(--mono); font-size: var(--t-mono);
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--stone);
}
.dest-style {
  display: inline-block; font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--umber);
  margin-top: 12px;
}
.dest-desc {
  font-size: 14.5px; line-height: 1.55; color: var(--stone);
  margin-top: 10px;
}
.dest-card .link-underline { margin-top: 16px; align-self: flex-start; }

/* ── Guides ────────────────────────────────────────────────────────────── */
.guides-grid {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 5vw, 80px);
}
.guide-feature .ph { margin-bottom: 28px; }
.guide-feature-img { aspect-ratio: 15 / 16; overflow: hidden; width: 100%; margin-bottom: 28px; }
.guide-feature-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.guide-meta-row {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  font-family: var(--mono); font-size: var(--t-mono);
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--umber);
  margin-bottom: 14px; white-space: nowrap;
}
.guide-cat, .guide-read { white-space: nowrap; }
.guide-cat { color: var(--ink); }
.guide-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--clay); }
.guide-title {
  font-family: var(--serif); font-weight: 350;
  font-size: 24px; line-height: 1.15; letter-spacing: -0.01em;
  color: var(--ink); font-variation-settings: 'opsz' 144;
  text-wrap: balance;
}
.guide-title-lg { font-size: clamp(32px, 3.4vw, 48px); line-height: 1.05; }
.guide-excerpt {
  font-size: 15px; line-height: 1.6; color: var(--stone);
  margin-top: 12px; max-width: 50ch;
}
.guide-feature .link-underline { margin-top: 22px; }

.guides-stack { display: flex; flex-direction: column; gap: clamp(28px, 3vw, 40px); }
.guide-row {
  display: grid; grid-template-columns: 180px 1fr;
  gap: 24px;
  padding-bottom: clamp(28px, 3vw, 40px);
  border-bottom: 1px solid var(--ivory-2);
}
.guide-row:last-child { border-bottom: 0; padding-bottom: 0; }
.guide-row-img .ph { transition: transform 0.7s ease; }
.guide-row:hover .ph { transform: scale(1.02); }
.guide-row-real-img { width: 100%; aspect-ratio: 5 / 6; object-fit: cover; display: block; transition: transform 0.7s ease; }
.guide-row:hover .guide-row-real-img { transform: scale(1.02); }

/* ── Hotel Spotlight ───────────────────────────────────────────────────── */
.hotel-spot-card {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 5vw, 72px); align-items: start;
}
.hotel-spot-img { overflow: hidden; }
.hotel-spot-img img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; }
.hotel-spot-tag {
  display: block; font-family: var(--mono); font-size: var(--t-mono);
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--umber);
  margin-bottom: 20px;
}
.hotel-spot-name {
  font-family: var(--serif); font-weight: 350; font-size: clamp(32px, 3.8vw, 52px);
  line-height: 1.05; letter-spacing: -0.02em; color: var(--ink);
  font-variation-settings: 'opsz' 144; margin-bottom: 10px;
}
.hotel-spot-loc {
  display: block; font-family: var(--mono); font-size: var(--t-mono);
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--stone);
  margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--ivory-2);
}
.hotel-spot-desc {
  font-size: 16px; line-height: 1.65; color: var(--stone);
  margin-top: 24px; margin-bottom: 28px; max-width: 42ch;
}
@media (max-width: 1024px) { .hotel-spot-card { grid-template-columns: 1fr; } }

/* ── Planning grid ─────────────────────────────────────────────────────── */
.plan-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ivory-2);
}
.plan-item {
  position: relative;
  padding: clamp(32px, 3.4vw, 48px);
  border-right: 1px solid var(--ivory-2);
  border-bottom: 1px solid var(--ivory-2);
  transition: background 0.4s ease;
  cursor: pointer;
  min-height: 220px;
  display: flex; flex-direction: column;
}
.plan-item:nth-child(3n) { border-right: 0; }
.plan-item:hover { background: var(--ivory); }
.plan-num {
  font-family: var(--serif); font-weight: 350; font-style: italic;
  font-size: 28px; color: var(--clay); line-height: 1;
  font-variation-settings: 'opsz' 144; margin-bottom: 22px;
}
.plan-title {
  font-family: var(--serif); font-weight: 350;
  font-size: 26px; line-height: 1.15; letter-spacing: -0.01em;
  color: var(--ink); font-variation-settings: 'opsz' 144;
  margin-bottom: 12px;
}
.plan-desc {
  font-size: 14.5px; line-height: 1.55; color: var(--stone);
  flex: 1;
}
.plan-arrow {
  position: absolute; bottom: clamp(32px, 3.4vw, 48px); right: clamp(32px, 3.4vw, 48px);
  font-family: var(--serif); font-size: 22px; color: var(--clay);
  opacity: 0; transform: translateX(-6px); transition: all 0.4s ease;
}
.plan-item:hover .plan-arrow { opacity: 1; transform: translateX(0); }

/* ── Business ──────────────────────────────────────────────────────────── */
.biz-grid {
  display: grid; grid-template-columns: 5fr 6fr;
  gap: clamp(48px, 5vw, 80px); align-items: start;
}
.biz-content .sec-hd { margin-bottom: 40px; }
.biz-list { display: flex; flex-direction: column; }
.biz-item {
  display: grid; grid-template-columns: 56px 1fr 28px;
  gap: 20px; align-items: start;
  padding: 28px 0;
  border-top: 1px solid var(--ivory-2);
  transition: padding 0.3s ease;
  cursor: pointer;
}
.biz-list .biz-item:last-child { border-bottom: 1px solid var(--ivory-2); }
.biz-item:hover { padding-left: 12px; }
.biz-num {
  font-family: var(--serif); font-weight: 350; font-style: italic;
  font-size: 28px; color: var(--clay); line-height: 1;
  font-variation-settings: 'opsz' 144;
}
.biz-title {
  font-family: var(--serif); font-weight: 350;
  font-size: 22px; letter-spacing: -0.005em; color: var(--ink);
  margin-bottom: 6px; font-variation-settings: 'opsz' 144;
}
.biz-desc { font-size: 14.5px; color: var(--stone); line-height: 1.55; max-width: 52ch; }
.biz-arrow {
  font-family: var(--serif); font-size: 22px; color: var(--clay);
  margin-top: 4px; transition: transform 0.3s ease;
}
.biz-item:hover .biz-arrow { transform: translateX(4px); color: var(--ink); }

/* ── Hotels ────────────────────────────────────────────────────────────── */
.filter-row {
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; flex-wrap: wrap;
  margin-bottom: clamp(32px, 3.6vw, 48px);
  padding-bottom: 20px; border-bottom: 1px solid var(--ivory-2);
}
.filter-tabs { display: flex; flex-wrap: wrap; gap: 4px; }
.filter-tabs button {
  font-family: var(--mono); font-size: var(--t-mono);
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 10px 16px; color: var(--stone);
  border: 1px solid transparent; border-radius: 999px;
  transition: all 0.3s ease;
}
.filter-tabs button:hover { color: var(--ink); }
.filter-tabs button[data-on="true"] {
  color: var(--ink); border-color: var(--ink);
}

.hotel-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: clamp(40px, 4vw, 64px);
}
.hotel-card { display: flex; flex-direction: column; }
.hotel-img { position: relative; }
.hotel-img .ph { transition: transform 0.7s ease; }
.hotel-card:hover .hotel-img .ph { transform: scale(1.02); }
.hotel-num {
  position: absolute; top: 16px; left: 16px;
  font-family: var(--serif); font-style: italic; font-weight: 350;
  font-size: 18px; color: var(--paper);
  font-variation-settings: 'opsz' 144;
  background: rgba(31, 27, 20, 0.5); padding: 6px 14px; border-radius: 999px;
  backdrop-filter: blur(8px);
}
.hotel-body { padding-top: 24px; }
.hotel-head {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 16px; padding-bottom: 8px; border-bottom: 1px solid var(--ivory-2);
  flex-wrap: wrap;
}
.hotel-name { min-width: 0; text-wrap: balance; }
.hotel-loc { white-space: nowrap; flex-shrink: 0; }
.hotel-name {
  font-family: var(--serif); font-weight: 350; font-size: 28px;
  letter-spacing: -0.01em; color: var(--ink); line-height: 1.1;
  font-variation-settings: 'opsz' 144;
}
.hotel-loc {
  font-family: var(--mono); font-size: var(--t-mono);
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--stone);
}
.hotel-why { font-size: 15px; line-height: 1.6; color: var(--stone); margin-top: 14px; max-width: 52ch; }
.hotel-foot {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap; margin-top: 18px;
}
.hotel-best {
  font-size: 13px; color: var(--umber); font-style: italic;
}
.hotel-best em { font-style: normal; font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink); margin-right: 6px; }

/* ── Essentials ────────────────────────────────────────────────────────── */
.ess-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 3.4vw, 48px);
}
.ess-card { display: flex; flex-direction: column; }
.ess-card .ph { transition: transform 0.7s ease; }
.ess-card:hover .ph { transform: scale(1.02); }
.ess-body { padding-top: 18px; }
.ess-head {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.16em; text-transform: uppercase;
}
.ess-cat { color: var(--umber); }
.ess-num { color: var(--clay); font-style: italic; font-family: var(--serif); font-size: 16px; letter-spacing: 0; }
.ess-name {
  font-family: var(--serif); font-weight: 350; font-size: 22px;
  letter-spacing: -0.005em; color: var(--ink); line-height: 1.15;
  margin-top: 8px; font-variation-settings: 'opsz' 144;
}
.ess-benefit {
  font-size: 14px; line-height: 1.55; color: var(--stone);
  margin-top: 8px; max-width: 40ch;
}
.ess-card .link-underline { margin-top: 14px; align-self: flex-start; }
.affiliate-note {
  margin-top: clamp(48px, 5vw, 72px);
  padding: 24px clamp(24px, 3vw, 40px);
  border: 1px solid var(--ivory-2);
  font-size: 13px; line-height: 1.6; color: var(--stone);
  font-style: italic; font-family: var(--serif);
  max-width: 84ch; margin-left: auto; margin-right: auto;
  text-align: center;
}

/* ── YouTube ───────────────────────────────────────────────────────────── */
.yt-grid {
  display: grid; grid-template-columns: 1.6fr 1fr;
  gap: clamp(40px, 4vw, 64px); align-items: start;
}
.yt-feature .ph { position: relative; }
.yt-play {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 72px; height: 72px; border-radius: 50%;
  display: grid; place-items: center;
  transition: transform 0.4s ease;
}
.yt-play:hover { transform: translate(-50%, -50%) scale(1.06); }
.yt-meta { padding-top: 24px; display: flex; justify-content: space-between; align-items: baseline; gap: 16px; flex-wrap: wrap; }
.yt-title {
  font-family: var(--serif); font-weight: 350; font-size: 32px;
  letter-spacing: -0.01em; color: var(--ink); font-variation-settings: 'opsz' 144;
}
.yt-sub {
  font-family: var(--mono); font-size: var(--t-mono);
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--umber);
}
.yt-playlist { padding-top: 4px; }
.yt-pl-h {
  font-family: var(--mono); font-size: var(--t-mono);
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--umber);
  padding-bottom: 16px; margin-bottom: 4px;
  border-bottom: 1px solid var(--ivory-2);
}
.yt-playlist ul { display: flex; flex-direction: column; }
.yt-playlist li a {
  display: grid; grid-template-columns: 130px 1fr;
  gap: 16px; padding: 16px 0;
  border-bottom: 1px solid var(--ivory-2);
  align-items: center;
  transition: padding 0.3s ease;
}
.yt-playlist li a:hover { padding-left: 8px; }
.yt-pl-thumb { overflow: hidden; }
.yt-pl-body { display: flex; flex-direction: column; gap: 4px; }
.yt-pl-ep {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--umber);
}
.yt-pl-title {
  font-family: var(--serif); font-weight: 350; font-size: 18px;
  color: var(--ink); line-height: 1.2; font-variation-settings: 'opsz' 144;
}
.yt-pl-dur { font-family: var(--mono); font-size: 10px; color: var(--clay); }
.yt-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }

/* ── Sponsored ─────────────────────────────────────────────────────────── */
.sponsored-list { border-top: 1px solid var(--ivory-2); }
.sponsored-row {
  display: grid;
  grid-template-columns: 60px 220px 200px 1fr 28px;
  gap: 24px; align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--ivory-2);
  transition: padding 0.3s ease, background 0.3s ease;
  cursor: pointer;
}
.sponsored-row:hover { padding-left: 16px; background: var(--ivory); padding-right: 16px; margin: 0 -16px;}
.sponsored-num {
  font-family: var(--serif); font-style: italic; font-weight: 350;
  font-size: 22px; color: var(--clay);
  font-variation-settings: 'opsz' 144;
}
.sponsored-tag {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--umber);
  border: 1px solid var(--clay); border-radius: 999px;
  padding: 6px 12px; justify-self: start; white-space: nowrap;
}
.sponsored-partner {
  font-family: var(--mono); font-size: var(--t-mono);
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink);
}
.sponsored-title {
  font-family: var(--serif); font-weight: 350; font-style: italic;
  font-size: 22px; color: var(--ink); line-height: 1.2;
  font-variation-settings: 'opsz' 144;
}
.sponsored-arrow {
  font-family: var(--serif); font-size: 22px; color: var(--clay);
  text-align: right; transition: transform 0.3s ease;
}
.sponsored-row:hover .sponsored-arrow { transform: translateX(4px); color: var(--ink); }

/* ── Newsletter ────────────────────────────────────────────────────────── */
.sec-newsletter {
  background: var(--ink); color: var(--paper);
  max-width: none; padding-left: 0; padding-right: 0;
  margin-top: clamp(80px, 9vw, 140px);
}
.section.sec-newsletter { padding-top: clamp(80px, 9vw, 140px); padding-bottom: clamp(80px, 9vw, 140px); }
.news-inner {
  max-width: 760px; margin: 0 auto; padding: 0 var(--gutter);
  text-align: center;
}
.news-kicker {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  font-family: var(--mono); font-size: var(--t-mono); letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--clay); margin-bottom: 28px;
}
.news-kicker .sec-rule { background: var(--clay); }
.news-title {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(48px, 6vw, 88px); line-height: 1; letter-spacing: -0.025em;
  color: var(--paper); font-variation-settings: 'opsz' 144, 'SOFT' 60;
}
.news-lead {
  font-family: var(--serif); font-style: italic; font-weight: 350;
  font-size: var(--t-lead); line-height: 1.45;
  color: rgba(251, 248, 242, 0.75); margin-top: 20px; max-width: 50ch;
  margin-left: auto; margin-right: auto;
}
.news-form {
  display: flex; gap: 0; max-width: 480px; margin: 40px auto 0;
  border-bottom: 1px solid rgba(251, 248, 242, 0.4);
  transition: border-color 0.3s;
}
.news-form:focus-within { border-color: var(--paper); }
.news-form input {
  flex: 1; background: transparent; border: 0; outline: 0;
  padding: 16px 0; color: var(--paper); font-family: var(--sans);
  font-size: 15px;
}
.news-form input::placeholder { color: rgba(251, 248, 242, 0.5); }
.news-form button {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: var(--t-mono); letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--paper);
  padding: 16px 0 16px 24px;
}
.news-form button i { font-style: normal; transition: transform 0.3s ease; }
.news-form button:hover i { transform: translateX(4px); }
.news-fine {
  display: block; margin-top: 18px;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(251, 248, 242, 0.4);
}

/* ── Footer ────────────────────────────────────────────────────────────── */
.footer {
  background: var(--paper);
  padding: clamp(64px, 7vw, 96px) var(--gutter) 28px;
  border-top: 1px solid var(--ivory-2);
}
.footer-top {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 2fr;
  gap: clamp(48px, 5vw, 80px);
  padding-bottom: clamp(48px, 5vw, 72px);
  border-bottom: 1px solid var(--ivory-2);
}
.footer-brand { display: flex; flex-direction: column; gap: 22px; align-items: flex-start; }
.footer-tagline {
  font-family: var(--serif); font-weight: 350; font-style: italic;
  font-size: 18px; line-height: 1.4; color: var(--stone);
  font-variation-settings: 'opsz' 96;
}
.footer-social {
  display: flex; gap: 18px; align-items: center;
}
.footer-social a {
  color: var(--stone); transition: color 0.3s;
  display: flex; align-items: center;
}
.footer-social a:hover { color: var(--ink); }
.footer-cols {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 2vw, 40px);
}
.footer-col h4 {
  font-family: var(--mono); font-size: var(--t-mono);
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink); margin-bottom: 18px;
}
.footer-col li { padding: 6px 0; }
.footer-col a { font-size: 14px; color: var(--stone); transition: color 0.3s; }
.footer-col a:hover { color: var(--ink); }
.footer-bot {
  max-width: var(--maxw); margin: 28px auto 0;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--umber);
}

/* ── Responsive ────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .nav-list { display: none; }
  .nav-inner { grid-template-columns: 1fr auto 1fr; padding: 22px var(--gutter); }
  .wm-logo { height: 64px; }
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .guides-grid { grid-template-columns: 1fr; }
  .plan-grid { grid-template-columns: repeat(2, 1fr); }
  .plan-item:nth-child(3n) { border-right: 1px solid var(--ivory-2); }
  .plan-item:nth-child(2n) { border-right: 0; }
  .biz-grid { grid-template-columns: 1fr; }
  .biz-img { max-width: 480px; }
  .hotel-grid, .ess-grid { grid-template-columns: repeat(2, 1fr); }
  .yt-grid { grid-template-columns: 1fr; }
  .sponsored-row { grid-template-columns: 40px 140px 1fr 28px; }
  .sponsored-partner { display: none; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .topbar-mid { display: none; }
  .dest-grid { grid-template-columns: 1fr; }
  .guide-row { grid-template-columns: 100px 1fr; gap: 16px; }
  .plan-grid { grid-template-columns: 1fr; }
  .plan-item, .plan-item:nth-child(2n) { border-right: 0; }
  .hotel-grid, .ess-grid { grid-template-columns: 1fr; }
  .sponsored-row { grid-template-columns: 32px 1fr 24px; gap: 16px; }
  .sponsored-tag { display: none; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .hero-content { bottom: 100px; }
  .hero-line:nth-child(2) { padding-left: 0; }
}
