/* ==========================================================================
   SWITZERLAND — Editorial Presentation
   Swiss International Style: grid, red/ink/paper, bold grotesque type
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --paper: #F7F5F1;
  --paper-dim: #EEEAE2;
  --ink: #181818;
  --ink-soft: #3a3a38;
  --red: #D52B1E;
  --red-dim: #B4271C;
  --stone: #8C8C88;
  --line: rgba(24, 24, 24, 0.14);
  --line-on-ink: rgba(247, 245, 241, 0.18);

  --f-display: "Archivo Black", "Helvetica Neue", Arial, sans-serif;
  --f-body: "Inter", "Helvetica Neue", Arial, sans-serif;

  --pad-side: clamp(20px, 6vw, 84px);
  --container: 1360px;
  --nav-h: 74px;

  --ease: cubic-bezier(.16, .84, .44, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--f-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-side);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red);
}

.eyebrow.on-ink {
  color: #ff6a5c;
}

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(28px, 5vw, 56px);
  flex-wrap: wrap;
}

.section-head h2 {
  font-family: var(--f-display);
  font-size: clamp(34px, 5.4vw, 64px);
  line-height: .94;
  text-transform: uppercase;
  letter-spacing: -.01em;
}

.section-head .idx {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--stone);
  white-space: nowrap;
  padding-bottom: 8px;
}

.section {
  padding: clamp(64px, 10vw, 120px) 0;
  border-bottom: 1px solid var(--line);
  position: relative;
}

.section.alt {
  background: var(--paper-dim);
}

.section.on-ink {
  background: var(--ink);
  color: var(--paper);
  border-bottom-color: var(--line-on-ink);
}

.section.on-ink .stone {
  color: #a9a9a4;
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger>* {
  transition-delay: calc(var(--i, 0) * 90ms);
}

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

  html {
    scroll-behavior: auto;
  }
}

/* ============================== INTRO OVERLAY ============================== */
html,
body {
  overflow-x: hidden;
}

body.intro-lock {
  overflow: hidden;
  height: 100vh;
}

.main-content {
  opacity: 0;
  transition: opacity 1s var(--ease);
}

.main-content.revealed {
  opacity: 1;
}

.intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #fff;
  cursor: pointer;
  overflow: hidden;
  transition: opacity .7s var(--ease);
}

.intro-overlay:focus {
  outline: none;
}

.intro-overlay img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1s var(--ease), transform 1.4s var(--ease);
}

.intro-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 55%, rgba(0, 0, 0, .6));
  opacity: 0;
  transition: opacity 1s var(--ease);
  pointer-events: none;
}

.intro-overlay[data-stage="1"] img,
.intro-overlay[data-stage="2"] img {
  opacity: 1;
  transform: scale(1);
}

.intro-overlay[data-stage="1"]::after,
.intro-overlay[data-stage="2"]::after {
  opacity: 1;
}

.intro-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 56px;
  margin: 0;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0;
  transition: opacity .8s var(--ease) .25s;
}

.intro-overlay[data-stage="1"] .intro-caption {
  opacity: 1;
}

.intro-hint {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--stone);
  opacity: 0;
  animation: introHintFade 1.2s ease forwards;
  animation-delay: 1.8s;
}

.intro-overlay[data-stage="1"] .intro-hint,
.intro-overlay[data-stage="2"] .intro-hint {
  display: none;
}

.intro-overlay.fade-out {
  opacity: 0;
  pointer-events: none;
}

@keyframes introHintFade {
  to {
    opacity: .55;
  }
}

@media (prefers-reduced-motion: reduce) {

  .intro-overlay,
  .intro-overlay img,
  .intro-overlay::after,
  .main-content {
    transition: none;
  }
}

/* ============================== NAVBAR =================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 1000;
  background: rgba(247, 245, 241, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: background .3s var(--ease), border-color .3s var(--ease);
}

.navbar.solid {
  background: rgba(247, 245, 241, 0.98);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-side);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-display);
  font-size: 18px;
  letter-spacing: -.01em;
}

.brand .cross {
  width: 20px;
  height: 20px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
}

.nav-links a {
  position: relative;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 8px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-links a.active {
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 36px;
  height: 36px;
  border: none;
  background: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.nav-toggle span {
  width: 100%;
  height: 2px;
  background: var(--ink);
  display: block;
}

@media (max-width: 880px) {
  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--paper);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px var(--pad-side) 20px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s var(--ease), transform .25s var(--ease);
  }

  .nav-links.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-links a {
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-toggle {
    display: flex;
  }
}

/* ============================== HERO ======================================= */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}

.hero-contour {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: .5;
}

.hero-contour svg {
  width: 100%;
  height: 100%;
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.hero-eyebrow .cross {
  width: 22px;
  height: 22px;
}

.hero-eyebrow span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--stone);
}

.hero h1 {
  font-family: var(--f-display);
  text-transform: uppercase;
  font-size: clamp(28px, 8vw, 120px);
  line-height: .88;
  letter-spacing: -.015em;
}

.hero h1 .r {
  color: var(--red);
}

.hero-foot {
  margin-top: clamp(36px, 6vw, 72px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-tag {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-tag .cross-box {
  width: 52px;
  height: 52px;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-tag .cross-box svg {
  width: 24px;
  height: 24px;
}

.hero-tag p {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1.5;
  color: var(--ink-soft);
}

.hero-scroll {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--stone);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-scroll .line {
  width: 36px;
  height: 1px;
  background: var(--stone);
  position: relative;
  overflow: hidden;
}

.hero-scroll .line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--red);
  animation: scrollline 1.8s ease-in-out infinite;
}

@keyframes scrollline {
  0% {
    transform: translateX(-100%);
  }

  50% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(100%);
  }
}

/* ============================== LANDMARKS SECTION ============================== */
.landmarks-section {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 4vw, 48px);
}

.landmarks-image-container {
  width: 100%;
}

.landmarks-full-image {
  width: 100%;
  height: clamp(200px, 45vw, 700px);
  object-fit: cover;
  object-position: center;
  display: block;
}

.landmarks-info {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2vw, 24px);
}

.landmarks-info .tag {
  align-self: flex-start;
}

.landmark-item h3 {
  font-family: var(--f-display);
  font-size: clamp(18px, 2.4vw, 24px);
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.landmark-item p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* ============================== FLAG SECTION ================================= */
.flag-section {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 4vw, 48px);
}

.flag-image-container {
  width: 100%;
}

.flag-full-image {
  width: 100%;
  height: auto;
  display: block;
}

.flag-info {
  max-width: 800px;
}

.flag-info .tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
  display: block;
}

.flag-info h3 {
  font-family: var(--f-display);
  font-size: clamp(30px, 4.6vw, 56px);
  line-height: .98;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.flag-info .desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 28px;
}

/* ============================== POSTER PANELS ============================== */
/* Signature element: bold duotone "travel-poster" panels carrying a single
   line-art icon — stands in for photography without relying on stock imagery */
.poster {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.poster.tall {
  aspect-ratio: 3/4;
}

.poster.wide {
  aspect-ratio: 16/9;
}

.poster.short {
  aspect-ratio: 5/2;
}

.poster svg {
  width: 46%;
  height: 46%;
}

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

@media (max-width: 768px) {
  .poster {
    aspect-ratio: auto;
    min-height: 250px;
  }

  .poster.tall {
    aspect-ratio: auto;
    min-height: 300px;
  }

  .poster.wide {
    aspect-ratio: auto;
    min-height: 250px;
  }

  .poster.short {
    aspect-ratio: auto;
    min-height: 200px;
  }
}

.poster.red {
  background: var(--red);
  color: var(--paper);
}

.poster.ink {
  background: var(--ink);
  color: var(--paper);
}

.poster.stone {
  background: #DEDAD1;
  color: var(--ink);
}

.poster .poster-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line-on-ink) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-on-ink) 1px, transparent 1px);
  background-size: 14.28% 25%;
  opacity: .35;
  pointer-events: none;
}

.poster.stone .poster-grid {
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
}

.poster-label {
  position: absolute;
  left: 20px;
  bottom: 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .8;
}

.poster-mark {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 16px;
  height: 16px;
  opacity: .85;
}

/* caption card that overlaps a full-width poster (Template B) */
.feature {
  position: relative;
}

.feature-card {
  background: var(--paper);
  padding: clamp(24px, 4vw, 44px);
  max-width: 520px;
  position: relative;
  margin-top: -64px;
  margin-left: 0;
  border-top: 4px solid var(--red);
}

.feature-card.on-dark {
  background: var(--ink);
  color: var(--paper);
  border-top-color: var(--red);
}

.feature-card h3 {
  font-family: var(--f-display);
  font-size: clamp(26px, 3.4vw, 38px);
  text-transform: uppercase;
  margin-bottom: 12px;
  line-height: 1.02;
}

.feature-card p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
}

.feature-card.on-dark p {
  color: #c9c8c3;
}

/* ============================== SPLIT LAYOUT =============================== */
.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
}

.split.reverse .split-media {
  order: 2;
}

.split.reverse .split-text {
  order: 1;
}

@media (max-width:860px) {

  .split,
  .split.reverse {
    grid-template-columns: 1fr;
  }

  .split.reverse .split-media {
    order: 1;
  }

  .split.reverse .split-text {
    order: 2;
  }
}

.split-text .tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
  display: block;
}

.split-text h3 {
  font-family: var(--f-display);
  font-size: clamp(30px, 4.6vw, 56px);
  line-height: .98;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.split-text .desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 480px;
  margin-bottom: 28px;
}

.fact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 32px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.fact-grid dt {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 4px;
}

.fact-grid dd {
  font-size: 15px;
  font-weight: 600;
  margin: 0;
}

/* ============================== MAP / LOCATION ============================= */
.map-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/8.5;
  overflow: hidden;
  background: var(--stone);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.map-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(213, 43, 30, 0.06);
  pointer-events: none;
}

.map-pin {
  position: absolute;
  top: 38%;
  left: 52%;
  width: 14px;
  height: 14px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(213, 43, 30, .18);
}

.geo-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  margin-top: 1px;
}

.geo-facts div {
  background: var(--paper);
  padding: 22px clamp(16px, 3vw, 28px);
}

.geo-facts dt {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 6px;
}

.geo-facts dd {
  font-family: var(--f-display);
  font-size: clamp(18px, 2.4vw, 26px);
  margin: 0;
}

@media (max-width:760px) {
  .geo-facts {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================== LANDMARKS =================================== */
.landmark-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 36px;
  border-top: 1px solid var(--line);
}

.landmark-row {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.landmark-row .num {
  font-family: var(--f-display);
  font-size: 15px;
  color: var(--stone);
}

.landmark-row h4 {
  font-size: 19px;
  font-weight: 700;
}

.landmark-row p {
  font-size: 14px;
  color: var(--stone);
  margin-top: 2px;
}

.landmark-row .icon {
  width: 34px;
  height: 34px;
  color: var(--red);
}

/* ============================== TOURISM GRID ================================ */
.tour-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.4vw, 28px);
}

.tour-card .poster {
  aspect-ratio: 3/4;
  margin-bottom: 16px;
}

.tour-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.tour-card p {
  font-size: 14px;
  color: var(--stone);
  line-height: 1.55;
}

@media (max-width:760px) {
  .tour-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================== LANGUAGE BARS ================================ */
.lang-bars {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.lang-bar-row {
  display: grid;
  grid-template-columns: 120px 1fr 60px;
  align-items: center;
  gap: 16px;
}

.lang-bar-row .lbl {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.lang-bar-track {
  height: 14px;
  background: var(--paper-dim);
  position: relative;
}

.lang-bar-fill {
  height: 100%;
  background: var(--red);
  width: 0%;
  transition: width 1.1s var(--ease);
}

.lang-bar-row .pct {
  font-family: var(--f-display);
  font-size: 16px;
  text-align: right;
}

/* ============================== FOOD GRID ===================================== */
.food-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  margin-top: 36px;
}

.food-card {
  background: var(--paper);
  padding: clamp(20px, 3vw, 32px) clamp(16px, 2.4vw, 24px);
}

.food-card .icon {
  width: 40px;
  height: 40px;
  color: var(--red);
  margin-bottom: 22px;
}

.food-card h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.food-card p {
  font-size: 13.5px;
  color: var(--stone);
  line-height: 1.55;
}

@media (max-width:900px) {
  .food-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width:520px) {
  .food-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================== FUN FACTS ===================================== */
.fact-list {
  display: flex;
  flex-direction: column;
}

.fact-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line-on-ink);
  align-items: baseline;
}

.fact-item:first-child {
  border-top: 1px solid var(--line-on-ink);
}

.fact-item .fnum {
  font-family: var(--f-display);
  font-size: clamp(28px, 4vw, 44px);
  color: var(--red);
}

.fact-item p {
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.4;
  max-width: 720px;
}

.fact-item:nth-child(even) {
  direction: rtl;
}

.fact-item:nth-child(even) * {
  direction: ltr;
  text-align: right;
}

@media (max-width:640px) {

  .fact-item,
  .fact-item:nth-child(even) {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .fact-item:nth-child(even) * {
    text-align: left;
  }
}

/* ============================== FOOTER ========================================= */
.closing-section {
  background: var(--ink);
  padding: clamp(60px, 10vw, 100px) 0;
}

.closing-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(24px, 4vw, 48px);
  flex-wrap: wrap;
}

.closing-text {
  font-family: var(--f-display);
  font-size: clamp(32px, 6vw, 72px);
  font-weight: bold;
  text-transform: uppercase;
  color: var(--paper);
  line-height: 1;
}

.closing-text .accent {
  color: var(--red);
}

.closing-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.closing-image {
  max-width: 100%;
  width: clamp(200px, 30vw, 400px);
  height: auto;
  border: 3px solid var(--paper);
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  transform: rotate(-2deg);
  transition: transform 0.3s ease;
}

.closing-image:hover {
  transform: rotate(0deg);
}

@media (max-width: 768px) {
  .closing-content {
    flex-direction: column;
    gap: clamp(20px, 4vw, 32px);
  }

  .closing-text {
    font-size: clamp(28px, 8vw, 48px);
  }

  .closing-image {
    transform: rotate(0deg);
    width: clamp(180px, 40vw, 300px);
  }
}

.footer {
  padding: clamp(48px, 8vw, 90px) 0 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer-top {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-top span {
  font-family: var(--f-display);
  font-size: clamp(24px, 4vw, 48px);
  text-transform: uppercase;
  color: var(--paper);
}

.footer-top img {
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.footer-top h2 {
  font-family: var(--f-display);
  font-size: clamp(32px, 5vw, 58px);
  text-transform: uppercase;
  line-height: .95;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid var(--line-on-ink);
  font-size: 18px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #a9a9a4;
}

/* ============================== LIGHTBOX ============================== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.95);
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 100%;
  max-height: 100%;
}

.lightbox-image {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  display: block;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 40px;
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}

.lightbox-close:hover {
  opacity: 0.7;
}

.lightbox-trigger {
  cursor: pointer;
  transition: opacity 0.2s;
}

.lightbox-trigger:hover {
  opacity: 0.85;
}