/* ═══════════════════════════════════════════════════════════
   Leela Temple — Main Stylesheet
   Mobile-first, CSS custom properties, no framework
   ═══════════════════════════════════════════════════════════ */

/* ─── CSS Custom Properties ─── */
:root {
  --cream: #F5EFE6;
  --cream-soft: #E8DCC8;
  --burgundy: #6B1A2E;
  --burgundy-hover: #8B2538;
  --emerald-rich: #1B4D3E;
  --teal-deep: #1B3838;
  --saffron: #B8743A;
  --saffron-hover: #D08850;
  --gold: #D4B07A;
  --text-dark: #3C2E1F;
  --text-cream: #F5EFE6;
  --text-muted: #6B5C4A;

  --font-heading: 'EB Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  --max-width: 1200px;
  --prose-width: 680px;
  --section-padding: 56px;
  --section-gap: 80px;
  --card-padding: 24px;
  --shadow-subtle: 0 2px 12px rgba(60, 46, 31, 0.06);

  font-size: 16px;
}

@media (min-width: 1024px) {
  :root {
    --section-padding: 80px;
    --section-gap: 120px;
    --card-padding: 32px;
    font-size: 17px;
  }
}

/* ─── Reset & Base ─── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px; /* Account for sticky header on anchor navigation */
  -webkit-text-size-adjust: 100%;
}

/* Ensure sections have scroll margin for anchor links under sticky header */
[id] {
  scroll-margin-top: 80px;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  color: var(--text-dark);
  background-color: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ─── Logo Mark (header, hero, space, footer) ─── */
.logo-mark {
  object-fit: cover;
  object-position: center center;
  border-radius: 6px;
}

/* ─── Skip Link (Accessibility) ─── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 1000;
  padding: 8px 16px;
  background: var(--burgundy);
  color: var(--text-cream);
  font-size: 0.875rem;
  border-radius: 0 0 4px 4px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
}

/* ─── Visually Hidden (honeypot, sr-only) ─── */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ─── Typography ─── */
h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h1 {
  font-size: 2.25rem;
}

h2 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

h3 {
  font-size: 1.375rem;
  margin-bottom: 0.75rem;
}

@media (min-width: 1024px) {
  h1 { font-size: 3.5rem; }
  h2 { font-size: 2.5rem; }
  h3 { font-size: 1.75rem; }
}

p {
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

em {
  font-style: italic;
}

/* ─── Layout ─── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.container-prose {
  max-width: var(--prose-width);
}

@media (min-width: 768px) {
  .container {
    padding: 0 40px;
  }
}

.section {
  padding: var(--section-padding) 0;
}

.section + .section {
  /* Sections on the same bg color don't double-pad */
}

.section-cream {
  background-color: var(--cream);
  color: var(--text-dark);
}

.section-burgundy {
  background-color: var(--burgundy);
  color: var(--text-cream);
}

.section-burgundy h2 {
  color: var(--gold);
}

.section-emerald {
  background-color: var(--emerald-rich);
  color: var(--text-cream);
}

.section-emerald h2 {
  color: var(--gold);
}

/* ─── Gold Divider ─── */
.gold-divider {
  height: 1px;
  background-color: var(--gold);
  max-width: var(--max-width);
  margin: 0 auto;
  opacity: 0.5;
}

.gold-divider-accent {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}

.gold-divider-accent span {
  display: block;
  width: 80px;
  height: 1px;
  background-color: var(--gold);
  position: relative;
}

.gold-divider-accent span::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--gold);
}

.gold-underline {
  width: 60px;
  height: 1px;
  background-color: var(--gold);
  margin-bottom: 1.5rem;
}

/* ─── Quote Block with mandala background ─── */
.quote-block {
  position: relative;
  padding: 100px 20px;
  overflow: hidden;
  background-color: var(--burgundy);
}

.quote-block-bg {
  position: absolute;
  inset: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.40;
  mix-blend-mode: screen;
}

.quote-block-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  /* Fade-in animation */
  animation: quoteReveal 1.2s ease-out both;
}

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

.quote-block blockquote {
  margin: 0;
}

.quote-block blockquote p {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.625rem;
  line-height: 1.5;
  color: #FFFFFF;
  margin-bottom: 16px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

@media (min-width: 1024px) {
  .quote-block blockquote p {
    font-size: 1.875rem;
  }
}

.quote-block cite {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.875rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ─── Section Prelude ─── */
/* Step 7: preludes use burgundy on cream backgrounds, gold on dark */
.section-prelude {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-style: italic;
  font-weight: 400;
  color: var(--burgundy);
  text-align: center;
  text-transform: lowercase;
  letter-spacing: 0.15em;
  margin-bottom: 8px;
}

.section-prelude-light {
  color: var(--gold);
}

/* ─── Image Captions ─── */
.image-caption {
  font-size: 0.8125rem;
  font-style: italic;
  font-weight: 400;
  color: var(--text-muted);
  margin-top: 12px;
}

.image-caption-light {
  color: rgba(245, 239, 230, 0.6);
}

/* ─── Reading Progress Bar ─── */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background-color: var(--gold);
  z-index: 200;
  transition: width 50ms linear;
}

/* ─── Side Navigation (desktop only) ─── */
.side-nav {
  display: none;
}

@media (min-width: 1024px) {
  .side-nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: fixed;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 90;
  }

  .side-nav-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--gold);
    opacity: 0.3;
    border: none;
    padding: 0;
    cursor: pointer;
    position: relative;
    transition: opacity 0.3s ease, width 0.3s ease, height 0.3s ease;
  }

  .side-nav-dot.active {
    opacity: 1;
    width: 10px;
    height: 10px;
  }

  .side-nav-label {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    white-space: nowrap;
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 0.8125rem;
    color: var(--gold);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .side-nav-dot:hover .side-nav-label {
    opacity: 1;
  }
}

/* ─── Buttons ─── */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 14px 36px;
  border-radius: 4px;
  transition: background-color 0.2s ease, opacity 0.2s ease;
  text-align: center;
}

.btn-cta {
  background-color: var(--saffron);
  color: var(--text-cream);
  transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  position: relative;
  overflow: hidden;
}

/* Thin gold underline that draws in on hover */
.btn-cta::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 50%;
  width: 0;
  height: 1px;
  background-color: var(--gold);
  transition: width 0.4s ease, left 0.4s ease;
}

.btn-cta:hover::after {
  width: 40%;
  left: 30%;
}

.btn-cta:hover,
.btn-cta:focus-visible {
  background-color: var(--saffron-hover);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15);
}

.btn-cta:active {
  transform: scale(0.98);
}

.btn-cta:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ═══════════════════════════════════════════════════════════
   Header
   ═══════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 12px 0;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* Scrolled state applied by JS */
.site-header.scrolled {
  background-color: var(--cream);
  box-shadow: 0 1px 8px rgba(60, 46, 31, 0.08);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .header-inner {
    padding: 0 40px;
  }
}

/* Logo as text wordmark */
.logo-text {
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.header-logo .logo-text {
  font-size: 1.125rem;
  color: var(--text-dark);
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Only show header logo once scrolled past hero */
.site-header.scrolled .header-logo .logo-text {
  opacity: 1;
}

/* Section decorative wordmark (e.g. Space section — on dark bg, use lighter burgundy-rose) */
.logo-text--section {
  font-size: 1.25rem;
  color: #C4526E;
  display: block;
  text-align: center;
}

/* Footer wordmark */
.logo-text--footer {
  font-size: 1.25rem;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}

.lang-switcher {
  display: flex;
  gap: 4px;
}

.lang-btn {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  padding: 4px 10px;
  color: var(--text-muted);
  border-radius: 3px;
  transition: color 0.2s ease;
  position: relative;
}

.lang-btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background-color: var(--gold);
  transition: width 0.3s ease, left 0.3s ease;
}

.lang-btn:hover::after {
  width: 100%;
  left: 0;
}

.lang-btn:hover {
  color: var(--text-dark);
}

.lang-btn.active {
  color: var(--text-dark);
}

.lang-btn.active::after {
  width: 100%;
  left: 0;
}

/* On dark hero background, lighten lang buttons when not scrolled */
.site-header:not(.scrolled) .lang-btn {
  color: rgba(245, 239, 230, 0.7);
}

.site-header:not(.scrolled) .lang-btn:hover,
.site-header:not(.scrolled) .lang-btn.active {
  color: var(--text-cream);
}

/* ─── Desktop Navigation ─── */
.desktop-nav {
  display: none; /* Hidden on mobile by default */
  align-items: center;
  gap: 28px;
}

.desktop-nav a {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.desktop-nav a:hover {
  color: var(--burgundy);
}

/* On dark hero background, lighten nav links when not scrolled */
.site-header:not(.scrolled) .desktop-nav a {
  color: rgba(245, 239, 230, 0.85);
}

.site-header:not(.scrolled) .desktop-nav a:hover {
  color: var(--text-cream);
}

/* Show desktop nav on tablet+ */
@media (min-width: 768px) {
  .desktop-nav {
    display: flex;
  }
}

/* ─── Hamburger button (mobile only) ─── */
.hamburger {
  display: flex; /* Visible on mobile by default */
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-dark);
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* On dark hero background, lighten hamburger lines */
.site-header:not(.scrolled) .hamburger span {
  background-color: var(--text-cream);
}

/* Hamburger open state — X shape */
.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hide hamburger on desktop */
@media (min-width: 768px) {
  .hamburger {
    display: none;
  }
}

/* ─── Mobile dropdown menu ─── */
.mobile-menu {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 32px 20px 40px;
  background-color: var(--cream);
  border-top: 1px solid rgba(212, 176, 122, 0.3);
  /* Full width under header */
  width: 100%;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.2s;
}

.mobile-menu a:hover {
  color: var(--burgundy);
}

.mobile-menu .lang-switcher {
  margin-top: 8px;
}

/* Override dark-hero color for lang buttons inside mobile dropdown (cream bg).
   Higher specificity needed to beat .site-header:not(.scrolled) .lang-btn */
.site-header .mobile-menu .lang-btn {
  color: var(--text-muted);
}

.site-header .mobile-menu .lang-btn:hover,
.site-header .mobile-menu .lang-btn.active {
  color: var(--text-dark);
}

/* ═══════════════════════════════════════════════════════════
   Section 1: Hero
   ═══════════════════════════════════════════════════════════ */
.hero {
  background-color: var(--burgundy);
  color: var(--text-cream);
  text-align: center;
  padding: 120px 20px 64px;
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Subtle aged paper texture overlay on hero */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.08'/%3E%3C/svg%3E");
  background-size: 256px 256px;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.hero-logo-wrap {
  margin-bottom: 32px;
}

.hero-logo {
  width: 240px;
  height: auto;
  border-radius: 6px;
  animation: heroLogoFade 1.2s ease both;
}

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

@media (min-width: 1024px) {
  .hero-logo {
    width: 360px;
  }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 400;
  color: var(--text-cream);
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  opacity: 0;
  animation: heroFadeIn 800ms ease 400ms forwards;
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.5rem;
  }
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--gold);
  margin-bottom: 16px;
  opacity: 0;
  animation: heroFadeIn 600ms ease 1000ms forwards;
}

@media (min-width: 1024px) {
  .hero-subtitle {
    font-size: 1.5rem;
  }
}

.hero-dates {
  font-size: 1rem;
  letter-spacing: 0.02em;
  margin-bottom: 0;
  opacity: 0;
  animation: heroFadeIn 600ms ease 1400ms forwards;
}

.hero-location {
  font-size: 0.9375rem;
  color: rgba(245, 239, 230, 0.75);
  margin-bottom: 32px;
  opacity: 0;
  animation: heroFadeIn 600ms ease 1400ms forwards;
}

.hero .btn-cta {
  margin-top: 16px;
  opacity: 0;
  animation: heroFadeUp 600ms ease 1800ms forwards;
}

@keyframes heroFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

.hero-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: var(--gold);
  opacity: 0.4;
}

/* ═══════════════════════════════════════════════════════════
   Section 2: What is Leela
   ═══════════════════════════════════════════════════════════ */
.sanskrit-decoration {
  display: block;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 8px;
  opacity: 0.7;
}

#leela {
  padding-top: var(--section-gap);
}

#leela h2 {
  text-align: center;
}

#leela p {
  text-align: left;
}

.leela-layout {
  display: grid;
  gap: 40px;
  margin-top: 32px;
}

@media (min-width: 768px) {
  .leela-layout {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: stretch; /* Image matches text height — top and bottom aligned */
  }

  .leela-board-image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
  }

  .leela-board-image img {
    max-height: 100%;
  }
}

.leela-board-image img {
  border-radius: 6px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

/* Image constrained to text column height — no sticky, text is priority */

/* Leela photos row — 4 photos in a row under the Leela section */
.leela-photos-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 40px;
}

@media (min-width: 768px) {
  .leela-photos-row {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 16px;
  }
}

.leela-photos-row img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 6px;
}

/* Crop ceiling from leela6 and leela8 (photos 3 & 4) by anchoring to bottom */
.leela-photos-row img:nth-child(3),
.leela-photos-row img:nth-child(4) {
  object-position: center 70%;
}

/* ═══════════════════════════════════════════════════════════
   Section 3: The Experience
   ═══════════════════════════════════════════════════════════ */
.experience-content {
  display: grid;
  gap: 40px;
}

@media (min-width: 1024px) {
  .experience-content {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    /* Step 3: image column stretches to match text height */
    align-items: stretch;
  }

  .experience-image {
    display: flex;
    flex-direction: column;
  }

  .experience-image img {
    flex: 1;
    min-height: 0;
    object-fit: cover;
  }
}

.experience-intro,
.experience-outro {
  max-width: var(--prose-width);
}

.experience-list-title {
  margin-bottom: 0.5rem;
}

.experience-list {
  margin-bottom: 1.25rem;
  padding-left: 0;
}

.experience-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

/* Gold dot marker */
.experience-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--gold);
}

.experience-image img {
  border-radius: 6px;
  width: 100%;
  object-fit: cover;
}

/* Image constrained to text height — no sticky, text is priority */

/* ═══════════════════════════════════════════════════════════
   Section 4: Peter Marchand
   ═══════════════════════════════════════════════════════════ */
.peter-layout {
  display: grid;
  gap: 40px;
}

@media (min-width: 768px) {
  .peter-layout {
    grid-template-columns: 1fr 3fr;
    gap: 48px;
    align-items: start;
  }
}

/* Peter heading above the grid */
.peter-heading {
  text-align: left;
  color: var(--gold);
}

.peter-underline {
  margin-bottom: 32px;
}

.peter-image {
  /* Photo and text top-aligned in the grid */
}

.peter-image img {
  border-radius: 6px;
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  object-position: center top;
}

.peter-text h2 {
  text-align: left;
  color: var(--gold);
}

/* ═══════════════════════════════════════════════════════════
   Section 5: Your Guides
   ═══════════════════════════════════════════════════════════ */
/* ─── Guide grid: all 4 cards in a uniform gallery ─── */
.guides-grid {
  display: grid;
  gap: 32px;
  margin-top: 40px;
}

.guides-grid-all {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .guides-grid-all {
    grid-template-columns: 1fr 1fr;
  }
}

.guide-card {
  background-color: var(--cream-soft);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
  transition: box-shadow 0.45s ease, transform 0.45s ease, filter 0.45s ease;
  filter: saturate(0.88);
}

.guide-card:hover {
  box-shadow: 0 8px 28px rgba(60, 46, 31, 0.12);
  transform: translateY(-4px);
  filter: saturate(1);
}

/* Guide photos — original proportions, no crop, no zoom, centered */
.guide-image-wrap {
  padding: 20px 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.guide-image-wrap img {
  width: 100%;
  max-height: 290px;
  object-fit: contain;
  border-radius: 6px;
  transition: opacity 0.3s ease;
}

.guide-card:hover .guide-image-wrap img {
  transform: scale(1.02);
}

/* Joint photos — bigger, centered under guide cards, generous spacing */
.guide-joint-photos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px; /* Tight on mobile */
  margin-top: 48px;
}

.guide-joint-photos img {
  width: 160px;
  height: 210px;
  border-radius: 6px;
  object-fit: contain;
}

@media (min-width: 768px) {
  .guide-joint-photos {
    gap: 60px; /* Generous spacing on desktop */
  }
  .guide-joint-photos img {
    width: 260px;
    height: 320px;
  }
}

.guide-info {
  padding: var(--card-padding);
  transition: transform 0.45s ease;
}

.guide-card:hover .guide-info {
  transform: translateY(-4px);
}

.guide-role {
  font-style: italic;
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.guide-bio {
  font-size: 0.9375rem;
  line-height: 1.65;
  margin-bottom: 1rem;
}

.guide-combines-label {
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.guide-combines {
  padding-left: 0;
}

.guide-combines li {
  position: relative;
  padding-left: 16px;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
  color: var(--text-muted);
}

.guide-combines li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--gold);
}

/* ═══════════════════════════════════════════════════════════
   Section 6: The Space
   ═══════════════════════════════════════════════════════════ */
.space-logo-wrap {
  text-align: center;
  margin-bottom: 16px;
}

.space-logo {
  width: 50px;
  height: auto;
  margin: 0 auto;
}

.space-layout {
  display: grid;
  gap: 40px;
  margin-top: 32px;
}

.space-image img {
  border-radius: 6px;
  width: 100%;
  object-fit: cover;
}

/* Desktop: primary image + secondary image in left column, text in right */
@media (min-width: 768px) {
  .space-layout {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 24px 60px;
    align-items: stretch;
  }

  .space-image-primary {
    grid-column: 1;
    grid-row: 1;
  }

  .space-image-secondary {
    grid-column: 1;
    grid-row: 2;
  }

  .space-text {
    grid-column: 2;
    grid-row: 1 / -1;
  }

  .space-image img {
    height: 100%;
    object-fit: cover;
  }
}

/* ═══════════════════════════════════════════════════════════
   Section 7: What is Included
   ═══════════════════════════════════════════════════════════ */
.included-grid {
  display: grid;
  gap: 24px;
  margin-top: 32px;
}

@media (min-width: 768px) {
  .included-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

.included-card {
  background-color: var(--cream-soft);
  border-radius: 8px;
  padding: var(--card-padding);
  box-shadow: var(--shadow-subtle);
}

/* Step 7: H3 on cream backgrounds use burgundy accent */
.section-cream h3 {
  color: var(--burgundy);
}

.included-card h3 {
  color: var(--burgundy);
}

.included-price {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--saffron);
  margin-bottom: 1rem;
}

.included-subtitle {
  font-style: italic;
  color: var(--burgundy);
  opacity: 0.7;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.included-card ul {
  margin-bottom: 1rem;
}

.included-card li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 0.375rem;
  font-size: 0.9375rem;
}

.included-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--gold);
}

.included-note {
  font-size: 0.875rem;
  font-style: italic;
  color: var(--text-muted);
}

/* Sub-headings for room / foyer photo groups */
.included-sub {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  color: var(--burgundy);
  margin-top: 40px;
  margin-bottom: 8px;
}

/* Old included-images kept for backward compat */
.included-images {
  display: grid;
  gap: 24px;
  margin-top: 16px;
}

@media (min-width: 768px) {
  .included-images {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

/* New unified accommodation photos grid */
.included-photos-grid {
  display: grid;
  gap: 16px;
  margin-top: 16px;
}

/* Mobile: rooms first, then foyer (CSS order) */
.included-photos-grid .included-room { order: 1; }
.included-photos-grid .included-foyer { order: 2; }

/* Desktop: 2x2 grid, natural order (room+foyer per row) */
@media (min-width: 768px) {
  .included-photos-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .included-photos-grid .included-room,
  .included-photos-grid .included-foyer { order: unset; }
}

.included-image img {
  border-radius: 6px;
  width: 100%;
  max-height: 400px;
  object-fit: cover;
}

/* ═══════════════════════════════════════════════════════════
   Section 8: Practical Information
   ═══════════════════════════════════════════════════════════ */
.practical-layout {
  display: grid;
  gap: 40px;
}

/* Mobile: hide the desktop-only image, show bottom copy after what-to-bring */
.practical-image-desktop {
  display: none;
}

.practical-image-bottom {
  margin-top: 32px;
}

.practical-image-bottom img {
  width: 100%;
  border-radius: 6px;
  object-fit: cover;
  max-height: 400px;
}

@media (min-width: 768px) {
  .practical-layout {
    grid-template-columns: 3fr 2fr;
    gap: 60px;
    align-items: stretch;
  }

  /* Desktop: show image in grid, hide bottom copy */
  .practical-image-desktop {
    display: flex;
  }

  .practical-image-desktop img {
    flex: 1;
    min-height: 0;
    object-fit: cover;
    border-radius: 6px;
  }

  .practical-image-bottom {
    display: none;
  }
}

.practical-list {
  margin-bottom: 2rem;
}

.practical-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 8px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(212, 176, 122, 0.3);
}

@media (min-width: 768px) {
  .practical-item {
    grid-template-columns: 140px 1fr;
  }
}

.practical-item dt {
  font-weight: 500;
  color: var(--text-dark);
  font-size: 0.9375rem;
}

.practical-item dd {
  font-size: 0.9375rem;
  color: var(--text-dark);
}

.practical-details h3 {
  font-size: 1.125rem;
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
}

.practical-bring {
  margin-bottom: 1rem;
}

.practical-bring li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 0.5rem;
}

.practical-bring li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--gold);
}

.practical-note {
  font-size: 0.875rem;
  font-style: italic;
  color: var(--text-muted);
}

.practical-image img {
  border-radius: 6px;
  width: 100%;
  object-fit: cover;
}

/* Image constrained to text height — text is priority */

/* ═══════════════════════════════════════════════════════════
   Section 9: Getting There
   ═══════════════════════════════════════════════════════════ */
.getting-layout {
  display: grid;
  gap: 40px;
}

@media (min-width: 768px) {
  .getting-layout {
    grid-template-columns: 3fr 2fr;
    gap: 60px;
    /* Step 3: image matches text height */
    align-items: stretch;
  }

  .getting-image {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .getting-image img {
    flex: 1;
    min-height: 0;
    object-fit: cover;
    position: static;
  }
}

.getting-sub {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  color: var(--saffron);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  text-align: left;
}

.getting-image img {
  border-radius: 6px;
  width: 100%;
  object-fit: cover;
}

/* Image constrained to text height — text is priority */

/* ═══════════════════════════════════════════════════════════
   Section 10: FAQ
   ═══════════════════════════════════════════════════════════ */
.faq-list {
  margin-top: 32px;
}

.faq-item {
  border-bottom: 1px solid rgba(212, 176, 122, 0.3);
}

.faq-item summary {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  padding: 20px 32px 20px 0;
  cursor: pointer;
  position: relative;
  list-style: none;
  line-height: 1.35;
}

/* Remove default marker */
.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::marker {
  display: none;
  content: '';
}

/* Gold plus/minus icon */
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 20px;
  font-family: var(--font-body);
  font-size: 1.25rem;
  color: var(--gold);
  font-weight: 400;
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  content: '\2212';
}

.faq-item summary:hover {
  color: var(--saffron);
}

.faq-item summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.faq-item p {
  padding: 0 0 20px;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════════
   Section 11: Reservation
   ═══════════════════════════════════════════════════════════ */
#reservation h2 {
  color: var(--gold);
}

.reservation-intro,
.reservation-note {
  color: var(--text-cream);
  opacity: 0.9;
}

.reservation-form {
  margin-top: 32px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-cream);
  margin-bottom: 6px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  background-color: rgba(245, 239, 230, 0.1);
  border: 1px solid var(--gold);
  border-radius: 4px;
  color: var(--text-cream);
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(245, 239, 230, 0.4);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--saffron);
  background-color: rgba(245, 239, 230, 0.15);
  box-shadow: 0 0 0 3px rgba(184, 116, 58, 0.12);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23D4B07A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group select option {
  background-color: var(--burgundy);
  color: var(--text-cream);
}

.form-row {
  display: grid;
  gap: 16px;
}

@media (min-width: 480px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 4px;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9375rem;
  color: var(--text-cream);
  cursor: pointer;
}

.radio-label input[type="radio"] {
  accent-color: var(--gold);
  width: 16px;
  height: 16px;
}

.btn-submit {
  width: 100%;
  margin-top: 8px;
  padding: 16px;
  font-size: 1rem;
}

@media (min-width: 480px) {
  .btn-submit {
    width: auto;
    min-width: 240px;
  }
}

.reservation-confirmation {
  padding: 48px 0;
}

.reservation-confirmation h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--gold);
  text-align: center;
  margin-bottom: 1rem;
}

.reservation-confirmation > p {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  color: var(--text-cream);
  text-align: center;
  opacity: 0.9;
}

/* Payment methods grid — side by side on desktop, stacked on mobile */
.payment-methods {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin: 32px 0;
}

@media (min-width: 768px) {
  .payment-methods {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

.payment-method {
  background-color: rgba(245, 239, 230, 0.08);
  border: 1px solid rgba(212, 176, 122, 0.3);
  border-radius: 8px;
  padding: 28px 24px;
}

.payment-method h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--gold);
  margin-bottom: 20px;
}

.payment-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.payment-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(212, 176, 122, 0.15);
}

.payment-item:last-child {
  border-bottom: none;
}

.payment-item dt {
  font-weight: 500;
  font-size: 0.875rem;
  color: rgba(245, 239, 230, 0.7);
}

.payment-item dd {
  font-size: 0.9375rem;
  color: var(--text-cream);
  font-weight: 500;
  word-break: break-all; /* IBAN can be long */
}

/* QR code display area */
.payment-qr {
  margin-top: 20px;
  text-align: center;
  padding-top: 16px;
  border-top: 1px solid rgba(212, 176, 122, 0.15);
}

.payment-qr canvas {
  width: 150px;
  height: 150px;
  border-radius: 4px;
}

/* Mobile: smaller QR since user can't scan own screen easily */
@media (max-width: 767px) {
  .payment-qr canvas {
    width: 120px;
    height: 120px;
  }
}

.payment-qr-hint {
  font-size: 0.8125rem;
  color: rgba(245, 239, 230, 0.6);
  margin-top: 8px;
  font-style: italic;
}

.payment-qr-fallback {
  font-size: 0.8125rem;
  color: rgba(245, 239, 230, 0.5);
  font-style: italic;
}

/* Alternative payment method buttons */
.payment-alt-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.payment-alt-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border: 1px solid rgba(212, 176, 122, 0.3);
  border-radius: 6px;
  color: var(--text-cream);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: background-color 200ms ease, border-color 200ms ease;
}

.payment-alt-btn:hover {
  background-color: rgba(212, 176, 122, 0.12);
  border-color: var(--gold);
}

.payment-alt-icon {
  flex-shrink: 0;
  opacity: 0.8;
}

.payment-alt-note {
  margin-top: 16px;
  font-size: 0.8125rem;
  color: rgba(245, 239, 230, 0.6);
  font-style: italic;
}

.payment-deadline {
  font-weight: 500;
  color: var(--gold);
  text-align: center;
  margin-top: 24px;
}

.payment-accom-note {
  font-style: italic;
  font-size: 0.9375rem;
  color: rgba(245, 239, 230, 0.7);
  text-align: center;
}

/* ═══════════════════════════════════════════════════════════
   Footer
   ═══════════════════════════════════════════════════════════ */
.site-footer {
  background-color: var(--teal-deep);
  color: var(--text-cream);
  padding: var(--section-padding) 0 0;
}

.footer-grid {
  display: grid;
  gap: 40px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
  }
}

.footer-logo {
  width: 60px;
  height: auto;
  margin-bottom: 12px;
}

.footer-dates {
  font-size: 0.9375rem;
  margin-bottom: 4px;
}

.footer-location {
  font-size: 0.875rem;
  color: rgba(245, 239, 230, 0.7);
}

.footer-contacts h3 {
  font-family: var(--font-heading);
  color: var(--gold);
  margin-bottom: 8px;
}

.footer-contacts p {
  font-size: 0.9375rem;
  margin-bottom: 6px;
}

.footer-phone a {
  color: var(--text-cream);
  transition: color 0.2s ease;
}

.footer-phone a:hover {
  color: var(--gold);
}

.footer-contacts .footer-note {
  font-size: 0.8125rem;
  color: rgba(245, 239, 230, 0.6);
  font-style: italic;
  margin-top: 8px;
  margin-bottom: 0; /* Align bottom edge with other footer columns */
}

.footer-nav-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 32px;
}

.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links nav a {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  color: rgba(245, 239, 230, 0.8);
  transition: color 0.2s ease;
  position: relative;
  display: inline-block;
}

.footer-links nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--gold);
  transition: width 0.3s ease;
}

.footer-links nav a:hover {
  color: var(--gold);
}

.footer-links nav a:hover::after {
  width: 100%;
}

.footer-lang {
  display: flex;
  gap: 4px;
  margin-top: 16px;
}

.footer-lang .lang-btn {
  color: rgba(245, 239, 230, 0.6);
}

.footer-lang .lang-btn:hover,
.footer-lang .lang-btn.active {
  color: var(--text-cream);
}

.footer-bottom {
  margin-top: 40px;
  padding-bottom: 24px;
}

.footer-bottom .gold-divider {
  opacity: 0.3;
  margin-bottom: 20px;
}

.footer-bottom p {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ─── Externsteine Section ─── */
.externsteine-layout {
  display: grid;
  gap: 40px;
  margin-top: 32px;
}

@media (min-width: 768px) {
  .externsteine-layout {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
  }

  .externsteine-images {
    display: flex;
    align-items: center;
  }

  .externsteine-images img {
    max-height: 100%;
    object-fit: contain;
  }
}

.externsteine-list {
  margin-bottom: 1.25rem;
}

.externsteine-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.externsteine-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--gold);
}

.externsteine-images img {
  border-radius: 6px;
  width: 100%;
  object-fit: cover;
}

/* Two nature photos in a full-width row under the Externsteine block */
.externsteine-photos-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.externsteine-photos-row img {
  width: 100%;
  object-fit: contain;
  border-radius: 6px;
}

/* ─── FAQ hero image ─── */
.faq-hero-image {
  margin-bottom: 48px;
}

.faq-hero-image img {
  border-radius: 6px;
  width: 100%;
  max-height: 300px;
  object-fit: cover;
}

.faq-closing-image {
  margin-top: 48px;
}

.faq-closing-image img {
  border-radius: 6px;
  width: 100%;
  max-height: 300px;
  object-fit: cover;
}

/* ─── Lead paragraphs ─── */
.leela-text > p:first-child,
.experience-intro,
.peter-text > p:first-of-type,
.space-text > p:first-child {
  font-size: 1.125rem;
}

@media (min-width: 1024px) {
  .leela-text > p:first-child,
  .experience-intro,
  .peter-text > p:first-of-type,
  .space-text > p:first-child {
    font-size: 1.1875rem;
  }
}

/* ─── Form Polish: Floating Labels ─── */
.form-group {
  position: relative;
}

.reservation-form .form-group input[type="text"],
.reservation-form .form-group input[type="email"],
.reservation-form .form-group input[type="tel"],
.reservation-form .form-group textarea {
  border-color: rgba(212, 176, 122, 0.3);
}

.reservation-form .form-group input:focus,
.reservation-form .form-group textarea:focus,
.reservation-form .form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 176, 122, 0.15);
}

/* ═══════════════════════════════════════════════════════════
   Scroll Reveal Animation (applied by Intersection Observer)
   ═══════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 800ms ease-out, transform 800ms ease-out;
}

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

/* ─── Image Reveal (slow developing photograph) ─── */
.image-reveal {
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1200ms ease-out, transform 1500ms ease-out;
}

.image-reveal.visible {
  opacity: 1;
  transform: scale(1.0);
}

/* ─── Step 8: What to bring two-column layout ─── */
.bring-layout {
  display: grid;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(212, 176, 122, 0.25);
}

/* Desktop: image on left (order -1), text on right — natural HTML order is text first for mobile */
@media (min-width: 768px) {
  .bring-image { order: -1; }
}

@media (min-width: 768px) {
  .bring-layout {
    grid-template-columns: 2fr 3fr;
    gap: 40px;
    align-items: stretch;
  }

  .bring-image {
    display: flex;
  }

  .bring-image img {
    flex: 1;
    min-height: 0;
    object-fit: cover;
    border-radius: 6px;
  }
}

.bring-image img {
  width: 100%;
  border-radius: 6px;
}

/* ─── Step 11: Externsteine as subsection within Space ─── */
.externsteine-subheading {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  color: var(--gold);
  text-align: center;
  margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
  .externsteine-subheading {
    font-size: 1.75rem;
  }
}

/* Externsteine text inherits light color from emerald parent */
.externsteine-subsection .externsteine-text {
  color: var(--text-cream);
}

.externsteine-subsection .externsteine-list li {
  color: var(--text-cream);
}

/* ─── Getting There secondary image ─── */
.getting-image-secondary {
  margin-top: 16px;
}

/* Footer column alignment: top items at top, bottom items at bottom */
@media (min-width: 768px) {
  .footer-grid {
    align-items: stretch;
  }

  .footer-col {
    display: flex;
    flex-direction: column;
  }

  /* Push the bottom items in each column to the same level */
  .footer-brand .footer-location,
  .footer-contacts .footer-note,
  .footer-links .footer-lang {
    margin-top: auto;
  }
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .image-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero-logo,
  .hero-title,
  .hero-subtitle,
  .hero-dates,
  .hero-location,
  .hero .btn-cta {
    animation: none;
    opacity: 1;
  }
  html {
    scroll-behavior: auto;
  }
}

/* ═══════════════════════════════════════════════════════════
   Lightbox — simple fullscreen image viewer for leela photos
   ═══════════════════════════════════════════════════════════ */
.lightbox-trigger {
  cursor: zoom-in;
}

.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.2s;
}

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