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

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { margin: 0; padding: 0; width: 100%; }

:root {
  --stone: #2a2520;
  --parchment: #f4efe6;
  --parchment2: #ede6d8;
  --gold: #b8952a;
  --gold-light: #d4ae4e;
  --cream: #faf7f2;
  --text-dark: #1a1714;
  --text-mid: #4a4540;
  --text-light: #7a726a;
  --border: rgba(184,149,42,0.25);
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(42,37,32,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(184,149,42,0.3);
  padding: 0 1rem;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  min-height: 64px;
  overflow: visible;
}

.nav-logo {
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding-right: 1rem;
}

/* The key trick: links wrap their text into ~2 lines,
   each item gets a fixed narrow width so 16 fit in a row */
.nav-links {
  display: flex;
  align-items: stretch;
  list-style: none;
  flex: 1;
  margin: 0;
  padding: 0;
}

.nav-links li {
  display: flex;
}

.nav-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 9.5px;
  line-height: 1.25;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(244,239,230,0.7);
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
  font-weight: 500;
  /* Allow text to wrap — this is the trick from the old site */
  white-space: normal;
  word-break: break-word;
  padding: 0 6px;
  /* Each link gets equal share of the available width */
  width: 100%;
  border-right: 1px solid rgba(184,149,42,0.12);
}

.nav-links li:last-child a { border-right: none; }
.nav-links a:hover { color: var(--gold-light); background: rgba(184,149,42,0.07); }

.nav-cta {
  background: var(--gold);
  color: var(--stone);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 18px;
  border: none;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--gold-light); }

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.hero-left {
  background: var(--stone);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 4rem 5rem 4rem;
  position: relative;
}

.hero-left::after {
  content: '';
  position: absolute;
  right: -1px;
  top: 0;
  bottom: 0;
  width: 80px;
  background: linear-gradient(to right, transparent, var(--stone));
  z-index: 2;
  pointer-events: none;
}

.hero-eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.8vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--parchment);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(244,239,230,0.6);
  max-width: 380px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--stone);
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 28px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-primary:hover { background: var(--gold-light); }

.btn-ghost {
  background: transparent;
  color: var(--parchment);
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 28px;
  border: 1px solid rgba(244,239,230,0.3);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-light); }

.hero-right {
  position: relative;
  overflow: hidden;
  background: #000; /* black base is essential for screen blending */
}

/* ── RGB Channel Parallax ── */
.rgb-channel {
  position: absolute;
  top: -25%;
  left: -5%;
  width: 110%;
  height: 150%;
  background-image: url("Castle-index-image.jpg");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  mix-blend-mode: screen;
  will-change: transform;
}
.rgb-channel--red   { filter: url(#rgb-keep-red); }
.rgb-channel--green { filter: url(#rgb-keep-green); }
.rgb-channel--blue  { filter: url(#rgb-keep-blue); }

.hero-image-overlay {
  position: absolute;
  inset: 0;
  /* Softer overlay — heavy gradient would mask the colour split */
  background: linear-gradient(135deg, var(--stone) 0%, transparent 30%);
  z-index: 2;
  pointer-events: none;
}

.castle-svg-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
}

.hero-stats {
  position: absolute;
  bottom: 2.5rem;
  left: 4rem;
  display: flex;
  gap: 2.5rem;
  z-index: 3;
}

.stat { }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(244,239,230,0.5);
  margin-top: 4px;
}

.intent-bar {
  background: var(--parchment2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
  display: flex;
  overflow: hidden;
}

.intent-item {
  flex: 1;
  padding: 1.5rem 2rem;
  border-right: 1px solid var(--border);
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  display: block;
}
.intent-item:last-child { border-right: none; }
.intent-item:hover { background: rgba(184,149,42,0.08); }

.intent-icon {
  width: 24px;
  height: 24px;
  margin-bottom: 8px;
  color: var(--gold);
}

.intent-label {
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.intent-desc {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.4;
}

.section {
  padding: 5rem 4rem;
}

.section-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section-title em { font-style: italic; color: var(--gold); }

.featured-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1px;
  background: var(--border);
  margin-top: 2.5rem;
  border: 1px solid var(--border);
}

.feature-card {
  background: var(--cream);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: all 0.3s;
}

.feature-card:first-child {
  grid-row: 1 / 3;
}

.feature-card:hover .fc-image { transform: scale(1.04); }
.feature-card:hover .fc-title { color: var(--gold); }

.fc-image-wrap {
  overflow: hidden;
  position: relative;
}

.feature-card:first-child .fc-image-wrap {
  height: 340px;
}

.feature-card:not(:first-child) .fc-image-wrap {
  height: 180px;
}

.fc-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  background: var(--parchment2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.fc-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold);
  color: var(--stone);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
}

.fc-body {
  padding: 1.25rem 1.5rem 1.5rem;
}

.fc-category {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.fc-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.25;
  color: var(--text-dark);
  transition: color 0.2s;
  margin-bottom: 8px;
}

.feature-card:first-child .fc-title {
  font-size: 1.9rem;
}

.fc-excerpt {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-light);
}

.feature-card:not(:first-child) .fc-excerpt {
  display: none;
}

.country-section {
  background: var(--stone);
  padding: 5rem 4rem;
}

.country-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  margin-top: 2.5rem;
  background: rgba(184,149,42,0.15);
  border: 1px solid rgba(184,149,42,0.15);
}

.country-card {
  background: rgba(255,255,255,0.03);
  padding: 1.5rem 1.25rem;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  display: block;
  border-bottom: 2px solid transparent;
}
.country-card:hover {
  background: rgba(184,149,42,0.1);
  border-bottom-color: var(--gold);
}

.cc-count {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 6px;
}

.cc-name {
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--parchment);
  margin-bottom: 4px;
}

.cc-sub {
  font-size: 11px;
  color: rgba(244,239,230,0.4);
}

.commercial-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--parchment2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.comm-card {
  padding: 3rem 2.5rem;
  border-right: 1px solid var(--border);
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  display: block;
}
.comm-card:last-child { border-right: none; }
.comm-card:hover { background: rgba(184,149,42,0.06); }

.comm-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--stone);
  background: var(--gold);
  padding: 3px 10px;
  margin-bottom: 1rem;
}

.comm-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 300;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.comm-desc {
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-light);
  margin-bottom: 1.25rem;
}

.comm-link {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}
.comm-link::after {
  content: '→';
  transition: transform 0.2s;
}
.comm-card:hover .comm-link::after { transform: translateX(4px); }

.editorial {
  padding: 5rem 4rem;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 5rem;
  align-items: start;
}

.article-list { }
.article-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: opacity 0.2s;
}
.article-item:first-child { border-top: 1px solid var(--border); }
.article-item:hover { opacity: 0.7; }

.article-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--parchment2);
  line-height: 1;
  padding-top: 2px;
}

.article-cat {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.article-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 6px;
}

.article-meta {
  font-size: 12px;
  color: var(--text-light);
}

.sidebar { }

.newsletter-box {
  background: var(--stone);
  padding: 2.5rem;
  margin-bottom: 2rem;
}

.nl-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--parchment);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.nl-sub {
  font-size: 13px;
  color: rgba(244,239,230,0.55);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.nl-input {
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(184,149,42,0.3);
  padding: 11px 14px;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  color: var(--parchment);
  outline: none;
  margin-bottom: 10px;
}
.nl-input::placeholder { color: rgba(244,239,230,0.3); }
.nl-input:focus { border-color: var(--gold); }

.nl-btn {
  width: 100%;
  background: var(--gold);
  color: var(--stone);
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.nl-btn:hover { background: var(--gold-light); }

.sponsor-label {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sponsor-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.sponsor-card {
  border: 1px solid var(--border);
  padding: 1.25rem;
  margin-bottom: 1rem;
  cursor: pointer;
  transition: border-color 0.2s;
}
.sponsor-card:hover { border-color: var(--gold); }

.sc-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.sc-loc {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 8px;
}

.sc-price {
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
}

.footer {
  background: var(--stone);
  border-top: 1px solid rgba(184,149,42,0.2);
  padding: 3.5rem 4rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  font-family: 'Cinzel', serif;
  font-size: 16px;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  margin-bottom: 1rem;
}

.footer-tagline {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(244,239,230,0.45);
  max-width: 260px;
}

.footer-col-title {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  font-size: 13px;
  color: rgba(244,239,230,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(184,149,42,0.15);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 12px;
  color: rgba(244,239,230,0.3);
}

.gold-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 0;
}

.ornament {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.ornament::before, .ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.ornament-symbol {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--gold);
}


.fc-placeholder {
  width: 100%;
  background: var(--parchment2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.fc-placeholder svg {
  opacity: 0.25;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-left > * {
  animation: fadeUp 0.7s ease both;
}
.hero-left > *:nth-child(1) { animation-delay: 0.1s; }
.hero-left > *:nth-child(2) { animation-delay: 0.22s; }
.hero-left > *:nth-child(3) { animation-delay: 0.34s; }
.hero-left > *:nth-child(4) { animation-delay: 0.44s; }

/* ── HAMBURGER MENU ─────────────────────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--parchment);
  transition: all 0.3s;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0; right: 0; bottom: 0;
  background: rgba(26,23,20,0.98);
  backdrop-filter: blur(12px);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  overflow-y: auto;
  padding: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Cinzel', serif;
  font-size: 18px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244,239,230,0.8);
  text-decoration: none;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--gold-light); }
.mobile-menu .nav-cta {
  margin-top: 1rem;
  font-size: 13px;
  padding: 14px 32px;
}

/* ── RESPONSIVE BREAKPOINTS ─────────────────────────────────── */

/* Tablet: 900px and below */
@media (max-width: 900px) {
  nav { padding: 0.4rem 1.25rem; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  /* Hero: stack vertically */
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-left {
    padding: 4rem 2rem 6rem;
    order: 1;
  }
  .hero-left::after { display: none; }
  .hero-right {
    order: 0;
    min-height: 280px;
  }
  .castle-placeholder { min-height: 280px; }

  .hero-stats {
    position: static;
    margin-top: 2.5rem;
    gap: 2rem;
    flex-wrap: wrap;
  }

  /* Intent bar: 2-column wrap */
  .intent-bar {
    flex-wrap: wrap;
  }
  .intent-item {
    flex: 1 1 50%;
    border-bottom: 1px solid var(--border);
  }
  .intent-item:nth-child(odd) { border-right: 1px solid var(--border); }
  .intent-item:nth-child(even) { border-right: none; }
  .intent-item:last-child:nth-child(odd) {
    flex: 1 1 100%;
    border-right: none;
  }

  /* Sections padding */
  .section { padding: 3rem 2rem; }
  .country-section { padding: 3rem 2rem; }
  .editorial { padding: 3rem 2rem; gap: 3rem; }

  /* Featured grid: 2-col */
  .featured-grid {
    grid-template-columns: 1fr 1fr;
  }
  .feature-card:first-child {
    grid-column: 1 / -1;
    grid-row: auto;
  }
  .feature-card:not(:first-child) .fc-excerpt { display: none; }

  /* Country grid: 4-col */
  .country-grid { grid-template-columns: repeat(4, 1fr); }

  /* Commercial strip: stack */
  .commercial-strip { grid-template-columns: 1fr; }
  .comm-card { border-right: none; border-bottom: 1px solid var(--border); }
  .comm-card:last-child { border-bottom: none; }

  /* Editorial: single column */
  .editorial { grid-template-columns: 1fr; }
  .sidebar { order: -1; }

  /* Footer: 2-col */
  .footer { padding: 3rem 2rem 1.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }

  /* Country section header row */
  .country-section > div[style] {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 0.5rem;
  }
}

/* Mobile: 600px and below */
@media (max-width: 600px) {
  .nav-logo { font-size: 11px; letter-spacing: 0.06em; }

  .hero-left { padding: 3rem 1.25rem 5rem; }
  .hero-right { min-height: 220px; }
  .castle-placeholder { min-height: 220px; }
  .castle-placeholder svg { width: 220px; height: 200px; }

  .hero-stats { gap: 1.5rem; }
  .stat-num { font-size: 1.6rem; }

  /* Intent bar: single column */
  .intent-item {
    flex: 1 1 100%;
    border-right: none !important;
    border-bottom: 1px solid var(--border);
  }
  .intent-item:last-child { border-bottom: none; }

  .section { padding: 2.5rem 1.25rem; }
  .country-section { padding: 2.5rem 1.25rem; }

  /* Featured grid: single column */
  .featured-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .feature-card:first-child {
    grid-column: auto;
    grid-row: auto;
  }
  .feature-card:first-child .fc-image-wrap,
  .feature-card:not(:first-child) .fc-image-wrap {
    height: 200px;
  }
  .feature-card:first-child .fc-title { font-size: 1.5rem; }
  .feature-card:not(:first-child) .fc-excerpt { display: none; }

  /* Country grid: 2-col */
  .country-grid { grid-template-columns: repeat(2, 1fr); }

  /* Commercial strip */
  .comm-card { padding: 2rem 1.25rem; }
  .comm-title { font-size: 1.4rem; }

  /* Editorial */
  .editorial { padding: 2.5rem 1.25rem; gap: 2rem; }
  .article-item { grid-template-columns: 56px 1fr; gap: 0.75rem; }
  .article-num { font-size: 2.2rem; }

  /* Newsletter */
  .newsletter-box { padding: 1.75rem 1.25rem; }

  /* Footer */
  .footer { padding: 2.5rem 1.25rem 1.25rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }

  /* Section title link row */
  .section > div[style],
  .country-section > div[style] {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0.5rem;
  }

  /* Hero actions stack on very small screens */
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-ghost { text-align: center; }
}

/* ── SITE DIRECTORY ─────────────────────────────────────────── */

.site-directory {
  background: var(--cream);
  border-top: 1px solid var(--border);
  padding: 3.5rem 4rem 4rem;
}

.dir-intro {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-mid);
  max-width: 860px;
  margin: 0 auto 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.dir-intro a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s;
}
.dir-intro a:hover { border-bottom-color: var(--gold); }

.dir-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 0 3.5rem;
  align-items: start;
}

.dir-section {
  margin-bottom: 2.25rem;
}

.dir-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
  letter-spacing: 0.01em;
}

.dir-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.dir-links li {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-mid);
}

.dir-links a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.15s;
}
.dir-links a:hover { color: var(--gold-light); }
.dir-links a strong { font-weight: 600; }

/* Country list wraps into 2 columns */
.dir-links--countries {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.3rem 1rem;
}

@media (max-width: 900px) {
  .site-directory { padding: 2.5rem 2rem; }
  .dir-grid { grid-template-columns: 1fr 1fr; gap: 0 2rem; }
}

@media (max-width: 600px) {
  .site-directory { padding: 2rem 1.25rem; }
  .dir-grid { grid-template-columns: 1fr; }
}



/* ══════════════════════════════════════════════
   INNER PAGE STYLES
   Applied to all pages except the homepage
   ══════════════════════════════════════════════ */

html, body { margin: 0; padding: 0; }

/* ── Nav: locked to exact homepage values ── */
nav {
  position: sticky;
  top: 0;
  min-height: 64px;
  padding: 0 1rem;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  font-size: 0; /* prevent inherited font-size affecting children */
  background: rgba(42,37,32,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(184,149,42,0.3);
  z-index: 100;
}

nav .nav-logo {
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding-right: 1rem;
}

nav .nav-links {
  flex: 1;
  display: flex;
  align-items: stretch;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav .nav-links li {
  display: flex;
  margin: 0;
  padding: 0;
}

nav .nav-links a {
  font-size: 9.5px;
  line-height: 1.25;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
  font-family: 'Outfit', sans-serif;
  white-space: normal;
  word-break: break-word;
  padding: 0 6px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: rgba(244,239,230,0.7);
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
  border-right: 1px solid rgba(184,149,42,0.12);
}

nav .nav-links li:last-child a { border-right: none; }
nav .nav-links a:hover,
nav .nav-links a.active {
  color: var(--gold-light);
  background: rgba(184,149,42,0.07);
}

/* ── Page content ── */
.page-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 3.5rem 2rem 5rem;
}

.page-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.page-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 400;
  color: var(--text-dark);
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--border);
}

.page-content h3 {
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
  margin: 2rem 0 0.75rem;
}

.page-content p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 1.25rem;
}

.page-content a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s;
}
.page-content a:hover { border-bottom-color: var(--gold); }

.page-content ul,
.page-content ol {
  margin: 0 0 1.25rem 1.5rem;
  color: var(--text-mid);
  font-size: 15px;
  line-height: 1.8;
}
.page-content li { margin-bottom: 0.35rem; }
.page-content ul ul { margin-top: 0.3rem; margin-bottom: 0.3rem; }

.page-content strong,
.page-content b { font-weight: 600; color: var(--text-dark); }

.page-content blockquote {
  border-left: 3px solid var(--gold);
  margin: 1.5rem 0;
  padding: 0.5rem 0 0.5rem 1.5rem;
  color: var(--text-mid);
}

/* ── Images: float right alongside text like old site ── */
.page-content figure {
  margin: 0 0 1.5rem 2rem;
  float: right;
  clear: right;
  max-width: 300px;
  width: 35%;
}
.page-content figure img {
  width: 100%;
  height: auto;
  border: 1px solid var(--border);
  display: block;
}
.page-content figcaption {
  font-size: 12px;
  color: var(--text-light);
  font-style: italic;
  margin-top: 6px;
  text-align: center;
  line-height: 1.4;
}
.page-content img:not(figure img) {
  float: right;
  clear: right;
  max-width: 300px;
  width: 35%;
  height: auto;
  margin: 0 0 1.5rem 2rem;
  border: 1px solid var(--border);
  display: block;
}

/* ── Photo gallery ── */
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
  clear: both;
}
.photo-card { background: var(--parchment2); border: 1px solid var(--border); }
.photo-card img { width: 100%; height: 200px; object-fit: cover; display: block; float: none; margin: 0; border: none; }
.photo-card .photo-caption {
  padding: 0.75rem 1rem;
  font-size: 12px;
  color: var(--text-light);
  font-style: italic;
  line-height: 1.4;
}

/* ── AdSense ── */
.page-content .adsbygoogle { margin: 2rem 0; clear: both; }
.clearfix::after { content: ''; display: table; clear: both; }

/* ── Responsive ── */
@media (max-width: 900px) {
  nav { padding: 0.4rem 1.25rem; }
  nav .nav-links { display: none; }
  nav .nav-hamburger { display: flex; }
}

@media (max-width: 640px) {
  .page-content { padding: 2rem 1.25rem 3rem; }
  .page-content figure,
  .page-content img:not(figure img) {
    float: none;
    margin: 1.5rem auto;
    max-width: 100%;
    width: 100%;
  }
  .photo-gallery { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 400px) {
  .photo-gallery { grid-template-columns: 1fr; }
}
