/* ============================================
   CORNERS OF EUROPE — Sudut-Sudut Eropa
   Editorial travel magazine aesthetic
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Inter:wght@300;400;500;600&family=Italiana&display=swap');

:root {
  /* Palette — earthy, warm, editorial */
  --cream: #f5f0e6;
  --cream-2: #ede5d3;
  --paper: #faf6ee;
  --ink: #1a1814;
  --ink-2: #2d2820;
  --ink-3: #5c5346;
  --ink-4: #8b8275;
  --sage: #6b7556;
  --sage-dark: #4a5340;
  --terracotta: #b85a3e;
  --terracotta-dark: #9a4a32;
  --gold: #c4a667;
  --line: #d6cdb8;
  --line-2: #c4b89c;

  /* Typography */
  --display: 'Cormorant Garamond', 'Times New Roman', serif;
  --headline: 'Italiana', serif;
  --sans: 'Inter', -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

::selection { background: var(--terracotta); color: var(--cream); }

/* Custom scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--ink-3); border-radius: 0; }
::-webkit-scrollbar-thumb:hover { background: var(--ink); }

/* ===== Subtle paper grain texture ===== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.4  0 0 0 0 0.35  0 0 0 0 0.25  0 0 0 0.04 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 238, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 22px 48px;
  gap: 32px;
}
.nav-left {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-right {
  display: flex;
  gap: 36px;
  align-items: center;
  justify-content: flex-end;
}
.nav-link {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  transition: color 0.3s ease;
  position: relative;
  padding-bottom: 2px;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--terracotta);
  transition: width 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}
.nav-link:hover, .nav-link.active {
  color: var(--ink);
}
.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}
.nav-link.active::after {
  background: var(--terracotta);
}
.logo {
  text-align: center;
  line-height: 1;
}
.logo-mark {
  font-family: var(--headline);
  font-size: 28px;
  letter-spacing: 0.08em;
  color: var(--ink);
  display: block;
  font-weight: 400;
}
.logo-sub {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.34em;
  color: var(--ink-4);
  text-transform: uppercase;
  margin-top: 4px;
  display: block;
}

/* Mobile menu button */
.menu-toggle {
  display: none;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
}
.menu-toggle span {
  width: 22px;
  height: 1px;
  background: var(--ink);
  position: relative;
}
.menu-toggle span::before,
.menu-toggle span::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 1px;
  background: var(--ink);
  left: 0;
}
.menu-toggle span::before { top: -7px; }
.menu-toggle span::after { top: 7px; }

/* ===== CONTAINER ===== */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
  position: relative;
  z-index: 2;
}
.container-narrow {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}
.container-mid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}

/* ===== HERO ===== */
.hero {
  min-height: calc(100vh - 75px);
  padding: 60px 0 80px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}
.hero-text { position: relative; z-index: 3; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 36px;
  font-weight: 500;
}
.hero-eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--terracotta);
}
.hero-title {
  font-family: var(--display);
  font-size: clamp(56px, 9vw, 132px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 36px;
}
.hero-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--terracotta);
}
.hero-title .accent {
  display: block;
  font-family: var(--headline);
  font-size: 0.6em;
  letter-spacing: 0.04em;
  color: var(--sage-dark);
  font-style: normal;
  margin-top: 8px;
}
.hero-lede {
  font-family: var(--display);
  font-size: 22px;
  line-height: 1.5;
  color: var(--ink-3);
  margin-bottom: 48px;
  max-width: 460px;
  font-weight: 400;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-4);
}
.hero-meta-divider {
  width: 1px;
  height: 14px;
  background: var(--line-2);
}

/* Hero image collage */
.hero-visual {
  position: relative;
  height: 640px;
}
.hero-img {
  position: absolute;
  border-radius: 2px;
  box-shadow: 0 30px 80px -20px rgba(26, 24, 20, 0.25);
  overflow: hidden;
}
.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.hero-img:hover img {
  transform: scale(1.04);
}
.hero-img-1 {
  top: 0;
  right: 40px;
  width: 340px;
  height: 460px;
}
.hero-img-2 {
  bottom: 0;
  left: 0;
  width: 280px;
  height: 360px;
}
.hero-img-3 {
  top: 60%;
  right: 0;
  width: 180px;
  height: 220px;
  z-index: 2;
}
.hero-img-caption {
  position: absolute;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-4);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  top: 30px;
  left: 0;
}
.hero-img-caption::after {
  content: '';
  display: block;
  width: 1px;
  height: 60px;
  background: var(--line-2);
  margin-top: 16px;
  margin-left: 4px;
}

/* Decorative elements */
.hero-deco-num {
  position: absolute;
  font-family: var(--headline);
  font-size: 380px;
  color: var(--cream-2);
  bottom: -100px;
  left: -40px;
  z-index: 0;
  line-height: 1;
  pointer-events: none;
  opacity: 0.6;
}

/* ===== SECTION ===== */
.section {
  padding: 120px 0;
  position: relative;
  z-index: 2;
}
.section-cream { background: var(--cream); }
.section-dark { background: var(--ink); color: var(--cream); }

.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 80px;
}
.section-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 24px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.section-eyebrow::before {
  content: '— ';
  letter-spacing: 0;
}
.section-title {
  font-family: var(--display);
  font-size: clamp(42px, 5.5vw, 84px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.section-title em {
  font-style: italic;
  color: var(--terracotta);
  font-weight: 300;
}
.section-desc {
  font-family: var(--display);
  font-size: 19px;
  line-height: 1.65;
  color: var(--ink-3);
  font-weight: 400;
  max-width: 480px;
}

/* ===== DESTINATION CARDS ===== */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  column-gap: 32px;
}
.destination {
  position: relative;
}
.destination-img {
  aspect-ratio: 4/5;
  overflow: hidden;
  margin-bottom: 24px;
  position: relative;
  background: var(--cream-2);
}
.destination-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  filter: saturate(0.92);
}
.destination:hover .destination-img img {
  transform: scale(1.06);
}
.destination-number {
  position: absolute;
  top: 20px;
  left: 24px;
  font-family: var(--headline);
  font-size: 56px;
  color: var(--cream);
  z-index: 2;
  line-height: 1;
  mix-blend-mode: difference;
}
.destination-country {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 12px;
  font-weight: 500;
}
.destination-name {
  font-family: var(--display);
  font-size: 34px;
  line-height: 1.05;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.destination-name a:hover {
  font-style: italic;
  color: var(--terracotta);
}
.destination-desc {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ink-3);
  margin-bottom: 20px;
}
.destination-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
  padding-bottom: 2px;
  border-bottom: 1px solid var(--ink);
  transition: all 0.3s;
}
.destination-link:hover {
  color: var(--terracotta);
  border-color: var(--terracotta);
  gap: 14px;
}

/* ===== EDITORIAL FEATURE ===== */
.feature-editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.feature-editorial.reverse {
  grid-template-columns: 1fr 1fr;
  direction: rtl;
}
.feature-editorial.reverse > * { direction: ltr; }
.feature-img {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--cream-2);
}
.feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feature-content {
  padding: 40px 0;
}
.feature-tag {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.feature-tag::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--sage-dark);
}
.feature-headline {
  font-family: var(--display);
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  color: var(--ink);
}
.feature-headline em {
  font-style: italic;
  color: var(--terracotta);
}
.feature-text p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-3);
  margin-bottom: 16px;
}
.feature-text p:first-letter {
  font-family: var(--display);
  font-size: 64px;
  float: left;
  line-height: 0.85;
  padding: 6px 10px 0 0;
  color: var(--terracotta);
  font-weight: 400;
}

/* ===== REGIONS GRID ===== */
.regions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.region {
  position: relative;
  aspect-ratio: 1;
  background: var(--paper);
  overflow: hidden;
  cursor: pointer;
}
.region-img {
  position: absolute;
  inset: 0;
}
.region-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease, filter 0.6s ease;
  filter: grayscale(0.4) sepia(0.15) brightness(0.92);
}
.region:hover .region-img img {
  transform: scale(1.08);
  filter: grayscale(0) sepia(0) brightness(1);
}
.region-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,24,20,0.1) 0%, rgba(26,24,20,0.7) 100%);
  transition: background 0.4s ease;
}
.region:hover .region-overlay {
  background: linear-gradient(180deg, rgba(184,90,62,0.1) 0%, rgba(26,24,20,0.55) 100%);
}
.region-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  color: var(--cream);
  z-index: 2;
}
.region-num {
  font-family: var(--headline);
  font-size: 13px;
  letter-spacing: 0.32em;
  margin-bottom: 12px;
  color: var(--gold);
}
.region-name {
  font-family: var(--display);
  font-size: 28px;
  line-height: 1.05;
  font-weight: 400;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.region-count {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0.8;
}

/* ===== QUOTE BLOCK ===== */
.quote-block {
  padding: 140px 0;
  text-align: center;
  position: relative;
  background: var(--cream);
}
.quote-mark {
  font-family: var(--headline);
  font-size: 180px;
  color: var(--terracotta);
  line-height: 0.6;
  margin-bottom: 24px;
  opacity: 0.4;
}
.quote-text {
  font-family: var(--display);
  font-size: clamp(28px, 3.4vw, 46px);
  font-style: italic;
  line-height: 1.3;
  font-weight: 400;
  color: var(--ink);
  max-width: 880px;
  margin: 0 auto 36px;
  letter-spacing: -0.01em;
}
.quote-author {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-4);
}
.quote-author::before {
  content: '— ';
}

/* ===== NEWSLETTER ===== */
.newsletter {
  padding: 120px 0;
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.newsletter-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  font-weight: 500;
}
.newsletter-title {
  font-family: var(--display);
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.newsletter-title em {
  font-style: italic;
  color: var(--gold);
}
.newsletter-desc {
  font-family: var(--display);
  font-size: 19px;
  line-height: 1.6;
  color: rgba(245, 240, 230, 0.7);
  margin-bottom: 0;
}
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.newsletter-input-wrap {
  display: flex;
  border-bottom: 1px solid rgba(245, 240, 230, 0.3);
  padding-bottom: 14px;
  align-items: center;
  transition: border-color 0.3s;
}
.newsletter-input-wrap:focus-within {
  border-color: var(--gold);
}
.newsletter-input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--cream);
  font-family: var(--display);
  font-size: 20px;
  outline: none;
  padding: 8px 0;
}
.newsletter-input::placeholder {
  color: rgba(245, 240, 230, 0.4);
  font-style: italic;
}
.newsletter-btn {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  padding: 8px 0 8px 24px;
  border-left: 1px solid rgba(245, 240, 230, 0.3);
  transition: color 0.3s, padding 0.3s;
}
.newsletter-btn:hover {
  color: var(--cream);
  padding-left: 32px;
}
.newsletter-note {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(245, 240, 230, 0.4);
  text-transform: uppercase;
}
.newsletter-deco {
  position: absolute;
  font-family: var(--headline);
  font-size: 320px;
  color: rgba(245, 240, 230, 0.03);
  bottom: -60px;
  right: -40px;
  z-index: 1;
  line-height: 1;
  pointer-events: none;
}

/* ===== ARTICLE PAGE ===== */
.article-hero {
  padding: 80px 0 60px;
  text-align: center;
}
.article-meta-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 500;
}
.article-meta-top span:nth-child(2) {
  color: var(--ink-4);
}
.article-title {
  font-family: var(--display);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 36px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.article-title em {
  font-style: italic;
  color: var(--terracotta);
}
.article-lede {
  font-family: var(--display);
  font-size: 22px;
  line-height: 1.55;
  color: var(--ink-3);
  max-width: 680px;
  margin: 0 auto 48px;
}
.article-byline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-4);
}
.article-byline strong {
  color: var(--ink);
  font-weight: 500;
}
.article-byline-divider {
  width: 1px;
  height: 14px;
  background: var(--line-2);
}
.article-hero-img {
  width: 100%;
  height: 70vh;
  max-height: 720px;
  margin-top: 60px;
  overflow: hidden;
  background: var(--cream-2);
}
.article-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article-hero-img-caption {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-4);
  text-align: right;
  margin-top: 16px;
}

.article-body {
  padding: 80px 0 100px;
}
.article-content {
  font-family: var(--display);
  font-size: 19.5px;
  line-height: 1.8;
  color: var(--ink-2);
  max-width: 720px;
  margin: 0 auto;
}
.article-content > p:first-child::first-letter {
  font-family: var(--headline);
  font-size: 96px;
  float: left;
  line-height: 0.85;
  padding: 10px 18px 0 0;
  color: var(--terracotta);
  font-weight: 400;
}
.article-content p { margin-bottom: 28px; }
.article-content h2 {
  font-family: var(--display);
  font-size: 42px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 64px 0 28px;
  color: var(--ink);
}
.article-content h2 em {
  font-style: italic;
  color: var(--terracotta);
}
.article-content h3 {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 500;
  margin: 48px 0 20px;
  color: var(--ink);
  line-height: 1.2;
}
.article-content blockquote {
  margin: 48px -40px;
  padding: 32px 40px;
  border-left: 3px solid var(--terracotta);
  font-family: var(--display);
  font-style: italic;
  font-size: 26px;
  line-height: 1.4;
  color: var(--ink);
  background: var(--cream);
}
.article-content ul, .article-content ol {
  margin: 0 0 28px 24px;
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.75;
}
.article-content li { margin-bottom: 8px; }
.article-content strong {
  font-weight: 500;
  color: var(--ink);
}
.article-content a {
  color: var(--terracotta);
  text-decoration: none;
  border-bottom: 1px solid var(--terracotta);
  transition: all 0.3s;
}
.article-content a:hover {
  background: var(--terracotta);
  color: var(--cream);
}
.article-figure {
  margin: 48px -120px;
}
.article-figure img {
  width: 100%;
  height: auto;
}
.article-figure figcaption {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-4);
  text-align: center;
  margin-top: 16px;
}

.article-callout {
  margin: 56px -40px;
  padding: 40px 48px;
  background: var(--cream);
  position: relative;
}
.article-callout::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--terracotta);
}
.article-callout-title {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 16px;
  font-weight: 500;
}
.article-callout p {
  font-family: var(--display);
  font-size: 20px;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 0;
  font-style: italic;
}

/* Article navigation */
.article-nav {
  padding: 80px 0;
  border-top: 1px solid var(--line);
  background: var(--paper);
}
.article-nav-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
.article-nav-card {
  display: block;
  position: relative;
}
.article-nav-card.next { text-align: right; }
.article-nav-label {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.article-nav-card.next .article-nav-label {
  justify-content: flex-end;
}
.article-nav-title {
  font-family: var(--display);
  font-size: 28px;
  line-height: 1.15;
  font-weight: 400;
  color: var(--ink);
  transition: color 0.3s;
}
.article-nav-card:hover .article-nav-title {
  color: var(--terracotta);
  font-style: italic;
}

/* ===== ABOUT PAGE ===== */
.about-hero {
  padding: 120px 0 60px;
  text-align: center;
}
.about-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 32px 120px;
  font-family: var(--display);
  font-size: 19.5px;
  line-height: 1.8;
  color: var(--ink-2);
}
.about-content > p:first-child {
  font-size: 26px;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 36px;
}
.about-content p { margin-bottom: 24px; }
.about-content h2 {
  font-family: var(--display);
  font-size: 42px;
  font-weight: 400;
  line-height: 1.1;
  margin: 64px 0 28px;
  color: var(--ink);
}
.about-content h2 em {
  font-style: italic;
  color: var(--terracotta);
}

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin: 60px 0;
}
.value {
  position: relative;
}
.value-num {
  font-family: var(--headline);
  font-size: 13px;
  letter-spacing: 0.32em;
  color: var(--terracotta);
  margin-bottom: 20px;
  display: block;
}
.value-title {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 16px;
}
.value-desc {
  font-family: var(--sans);
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ink-3);
}

/* ===== CONTACT PAGE ===== */
.contact-hero {
  padding: 120px 0 60px;
  text-align: center;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  padding: 80px 0 120px;
}
.contact-info { padding-right: 40px; }
.contact-info h2 {
  font-family: var(--display);
  font-size: 36px;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 36px;
}
.contact-info h2 em { font-style: italic; color: var(--terracotta); }
.contact-info p {
  font-family: var(--display);
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink-3);
  margin-bottom: 40px;
}
.contact-item {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}
.contact-item:last-child {
  border-bottom: 1px solid var(--line);
}
.contact-item-label {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 8px;
  font-weight: 500;
}
.contact-item-value {
  font-family: var(--display);
  font-size: 22px;
  color: var(--ink);
}

.contact-form { display: flex; flex-direction: column; gap: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form-field { position: relative; }
.form-field label {
  display: block;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 10px;
  font-weight: 500;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line-2);
  padding: 10px 0;
  font-family: var(--display);
  font-size: 19px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.3s;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--terracotta);
}
.form-field textarea {
  resize: vertical;
  min-height: 100px;
}
.form-submit {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
  padding: 18px 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  transition: all 0.3s;
  cursor: pointer;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.form-submit:hover {
  background: var(--ink);
  color: var(--cream);
}

/* ===== DESTINATIONS LIST PAGE ===== */
.list-hero {
  padding: 120px 0 80px;
  text-align: center;
  background: var(--cream);
}
.list-hero .section-eyebrow { justify-content: center; }
.list-hero .section-title {
  margin-top: 24px;
  margin-bottom: 28px;
}
.list-hero .section-desc {
  margin: 0 auto;
}
.filter-bar {
  display: flex;
  justify-content: center;
  gap: 4px;
  flex-wrap: wrap;
  padding: 60px 0 0;
}
.filter-btn {
  padding: 12px 24px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-3);
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 500;
}
.filter-btn:hover { color: var(--ink); }
.filter-btn.active {
  color: var(--cream);
  background: var(--ink);
  border-color: var(--ink);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 100px 0 40px;
}
.footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid rgba(245, 240, 230, 0.1);
}
.footer-brand .logo-mark {
  color: var(--cream);
  font-size: 36px;
  margin-bottom: 16px;
}
.footer-brand .logo-sub { color: rgba(245, 240, 230, 0.5); }
.footer-tagline {
  font-family: var(--display);
  font-size: 19px;
  font-style: italic;
  color: rgba(245, 240, 230, 0.7);
  max-width: 340px;
  margin-top: 32px;
  line-height: 1.5;
}
.footer-col h4 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  font-weight: 500;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 14px; }
.footer-col a {
  font-family: var(--display);
  font-size: 17px;
  color: rgba(245, 240, 230, 0.75);
  transition: color 0.3s;
}
.footer-col a:hover {
  color: var(--cream);
  font-style: italic;
}
.footer-bottom {
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 240, 230, 0.4);
}
.footer-socials { display: flex; gap: 24px; }
.footer-socials a {
  transition: color 0.3s;
}
.footer-socials a:hover { color: var(--gold); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .nav { padding: 18px 32px; }
  .container, .footer-inner { padding: 0 32px; }
  .hero-inner, .feature-editorial, .newsletter-inner, .contact-grid, .article-nav-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-visual { height: 480px; }
  .hero-img-1 { width: 280px; height: 380px; right: 20px; }
  .hero-img-2 { width: 200px; height: 260px; }
  .hero-img-3 { width: 140px; height: 180px; }
  .destinations-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .regions { grid-template-columns: repeat(2, 1fr); }
  .section-head { grid-template-columns: 1fr; gap: 32px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 48px; }
  .article-figure { margin: 32px 0; }
  .article-callout, .article-content blockquote { margin: 40px 0; }
}
@media (max-width: 760px) {
  .nav {
    grid-template-columns: auto 1fr auto;
    padding: 16px 24px;
  }
  .nav-left, .nav-right { display: none; }
  .menu-toggle { display: flex; }
  .logo { text-align: left; }
  .logo-mark { font-size: 22px; }
  .container, .footer-inner { padding: 0 24px; }
  .container-narrow, .container-mid { padding: 0 24px; }
  .hero { min-height: auto; padding: 60px 0; }
  .hero-deco-num { font-size: 220px; bottom: -40px; left: -20px; }
  .hero-img-caption { display: none; }
  .destinations-grid { grid-template-columns: 1fr; gap: 48px; }
  .regions { grid-template-columns: 1fr; }
  .section { padding: 80px 0; }
  .quote-block { padding: 80px 0; }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-bottom: 48px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
  .article-hero { padding: 60px 0 40px; }
  .article-hero-img { height: 50vh; }
  .article-content blockquote { margin: 32px 0; padding: 24px; font-size: 22px; }
  .article-callout { margin: 32px 0; padding: 32px 24px; }
  .article-callout p { font-size: 18px; }
  .form-row { grid-template-columns: 1fr; }
  .values { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { padding: 60px 0 80px; }
  .contact-info { padding-right: 0; }
}
