:root {
  --bg:      oklch(98.1% 0.005 67.8);
  --surface: oklch(99.4% 0.003 67.8);
  --fg:      oklch(29.1% 0.003 48.6);
  --muted:   oklch(43.1% 0.000 89.9);
  --border:  oklch(91.0% 0.018 26.1);
  --accent:  oklch(72.9% 0.118 20.3);
  --accent-soft: oklch(94.5% 0.027 20.3);
  --paper: oklch(96.8% 0.008 67.8);

  --font-display: 'Cormorant Garamond', 'Iowan Old Style', 'Charter', Georgia, serif;
  --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-serif: 'Cormorant Garamond', 'Iowan Old Style', 'Charter', Georgia, serif;
}

* { box-sizing: border-box; }

html {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, transparent 0, transparent calc(50% - 0.5px), color-mix(in oklch, var(--border), transparent 52%) 50%, transparent calc(50% + 0.5px)),
    var(--bg);
  color: var(--fg);
}

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

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

.site {
  min-height: 100vh;
}

.shell {
  width: min(100% - 72px, 1320px);
  margin: 0 auto;
}

.page-shell {
  width: min(100% - 48px, 1480px);
  margin: 0 auto;
}

.masthead {
  height: 108px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-top: 10px;
  border-bottom: 1px solid var(--border);
}

.brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand img {
  width: 188px;
  height: auto;
}

.language {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.language a {
  position: relative;
  padding: 8px 0;
}

.language a.active {
  color: var(--fg);
}

.language a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1px;
  background: var(--accent);
}

.meta,
.section-label,
.caption,
.footer-meta {
  font-size: 11px;
  letter-spacing: 0.14em;
  line-height: 1.5;
  text-transform: uppercase;
  color: var(--muted);
}

.featured {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: clamp(520px, 48.5vw, 640px);
  border-bottom: 1px solid var(--border);
}

.photo {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(140deg, color-mix(in oklch, var(--accent), white 68%), transparent 42%),
    linear-gradient(25deg, oklch(62% 0.025 225), oklch(88% 0.02 78) 52%, oklch(76% 0.035 36));
  min-height: 360px;
  isolation: isolate;
}

.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(0.98);
}

.photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent, rgba(45,43,42,0.16)),
    radial-gradient(circle at 18% 30%, rgba(255,255,255,0.44), transparent 28%),
    radial-gradient(circle at 70% 18%, rgba(255,255,255,0.2), transparent 32%);
  mix-blend-mode: soft-light;
  z-index: -1;
}

.photo.hotel { background:
  linear-gradient(140deg, color-mix(in oklch, var(--accent), white 72%), transparent 44%),
  linear-gradient(27deg, oklch(54% 0.028 220), oklch(82% 0.022 88) 48%, oklch(73% 0.042 33));
}

.photo.flight { background:
  linear-gradient(145deg, oklch(91% 0.012 235), transparent 43%),
  linear-gradient(20deg, oklch(61% 0.015 245), oklch(96% 0.005 255) 56%, oklch(76% 0.02 30));
}

.photo.lounge { background:
  linear-gradient(140deg, color-mix(in oklch, var(--accent), white 78%), transparent 40%),
  linear-gradient(22deg, oklch(37% 0.012 52), oklch(78% 0.025 74) 54%, oklch(93% 0.006 68));
}

.photo.sea { background:
  linear-gradient(145deg, oklch(89% 0.018 205), transparent 45%),
  linear-gradient(22deg, oklch(48% 0.03 225), oklch(83% 0.024 105) 52%, oklch(78% 0.036 31));
}

.photo-label {
  position: absolute;
  left: 26px;
  bottom: 24px;
  color: rgba(255,255,255,0.84);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.featured-copy {
  background: color-mix(in oklch, var(--surface), transparent 8%);
  padding: 58px 58px 52px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-left: 1px solid var(--border);
}

.meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.meta span + span::before {
  content: "/";
  margin-right: 12px;
  color: color-mix(in oklch, var(--muted), transparent 45%);
}

.featured h2 {
  font-family: var(--font-display);
  font-size: clamp(38px, 3.45vw, 58px);
  line-height: 1.04;
  font-weight: 400;
  margin: 28px 0 20px;
  text-wrap: balance;
}

.summary {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
  max-width: 520px;
  margin: 0;
}

.read-link {
  align-self: flex-start;
  margin-top: 42px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--accent);
  color: var(--fg);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  padding: 70px 0 24px;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1;
  font-weight: 400;
  margin: 0;
}

.section-head p {
  margin: 0 0 6px;
  max-width: 390px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.archive-head {
  padding: 62px 0 18px;
  border-bottom: 1px solid var(--border);
}

.latest-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  padding-bottom: 78px;
  border-bottom: 1px solid var(--border);
}

.review-teaser {
  display: grid;
  gap: 22px;
}

.review-teaser .photo {
  aspect-ratio: 1.28 / 1;
  min-height: 0;
}

.review-teaser h3 {
  font-family: var(--font-display);
  font-size: clamp(34px, 3.1vw, 48px);
  line-height: 1.05;
  font-weight: 400;
  margin: 14px 0 12px;
  text-wrap: balance;
}

.review-teaser p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  max-width: 540px;
}

.archive {
  padding: 18px 0 76px;
}

.archive-row {
  display: grid;
  grid-template-columns: 245px 1fr 190px;
  gap: 34px;
  align-items: stretch;
  padding: 30px 0;
  border-bottom: 1px solid var(--border);
}

.archive-row .photo {
  width: 245px;
  height: 100%;
  min-height: 172px;
}

.archive-title h3 {
  font-family: var(--font-display);
  font-size: clamp(30px, 2.7vw, 44px);
  line-height: 1.05;
  font-weight: 400;
  margin: 0 0 10px;
  text-wrap: balance;
}

.archive-title p {
  margin: 0;
  color: var(--muted);
  max-width: 620px;
  font-size: 14px;
  line-height: 1.75;
}

.archive-date {
  justify-self: end;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.load-more-wrap {
  display: flex;
  justify-content: center;
  padding: 42px 0 0;
}

.load-more-button {
  appearance: none;
  border: 1px solid var(--accent);
  border-radius: 0;
  background: transparent;
  color: var(--fg);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.15em;
  line-height: 1;
  padding: 15px 22px;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

.load-more-button:hover,
.load-more-button:focus-visible {
  background: var(--accent);
  color: white;
}

.footer {
  border-top: 1px solid var(--border);
  padding: 34px 0 48px;
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 42px;
}

.footer img {
  width: 142px;
  opacity: 0.88;
}

.footer-note {
  max-width: 560px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
}

@media (max-width: 920px) {
  .shell {
    width: min(100% - 40px, 720px);
  }

  .page-shell {
    width: min(100% - 32px, 760px);
  }

  .masthead {
    height: 78px;
    padding-top: 8px;
  }

  .brand img {
    width: 152px;
  }

  .featured,
  .latest-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .featured {
    min-height: 0;
  }

  .featured-copy {
    border-left: 0;
    border-top: 1px solid var(--border);
    padding: 34px 0 42px;
    background: transparent;
  }

  .archive-row {
    grid-template-columns: 132px 1fr;
    gap: 18px;
  }

  .archive-row .photo {
    width: 132px;
    min-height: 150px;
  }

  .archive-date {
    display: none;
  }
}

@media (max-width: 620px) {
  body {
    background: var(--bg);
  }

  .section-head {
    display: block;
    padding-top: 56px;
  }

  .section-head p {
    margin-top: 16px;
  }

  .archive-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .archive-row .photo {
    width: 100%;
    aspect-ratio: 1.45 / 1;
    height: auto;
  }

  .footer {
    grid-template-columns: 1fr;
    align-items: flex-start;
    gap: 18px;
  }
}
