@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 300 400;
  font-display: swap;
  src: local('Playfair Display'), local('PlayfairDisplay-Regular');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: italic;
  font-weight: 300 400;
  font-display: swap;
  src: local('Playfair Display Italic'), local('PlayfairDisplay-Italic');
}
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 300 400;
  font-display: swap;
  src: local('Lato Light'), local('Lato-Light'), local('Lato Regular'), local('Lato-Regular');
}

:root {
  --bg: #F5EDE4;
  --surface: #FFFDF9;
  --surface-2: #F0E8DE;
  --ink: #2C1810;
  --ink-soft: #5A4A3F;
  --accent: #8B5CF6;
  --accent-2: #C8956C;
  --line: rgba(44, 24, 16, 0.12);
  --line-strong: rgba(44, 24, 16, 0.25);
  --header-h: 72px;
  --radius: 6px;
  --container-max: 1400px;
  --pad: clamp(2rem, 5vw, 4rem);
  interpolate-size: allow-keywords;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

html, body {
  overflow-x: hidden;
  max-width: 100vw;
  margin: 0;
}

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html.no-js .reveal { opacity: 1; transform: none; }

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

a {
  color: var(--ink);
  text-decoration: none;
  transition: color 240ms cubic-bezier(.4,0,.2,1);
}

a:hover { color: var(--accent); }

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-weight: 300;
  font-style: italic;
  line-height: 1.15;
}

h1 { font-size: clamp(2.25rem, 5vw, 4.5rem); letter-spacing: -0.012em; }
h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

.eyebrow {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-2);
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--accent);
  color: var(--surface);
  padding: 8px 16px;
  border-radius: var(--radius);
  z-index: 9999;
  font-size: 0.875rem;
}
.skip-link:focus {
  top: 8px;
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Container */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: clamp(16px, 4vw, 32px);
  padding-right: clamp(16px, 4vw, 32px);
}

/* =========================================
   HEADER — sticky with morph
   ========================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1080;
  background: rgba(245, 237, 228, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 240ms ease, box-shadow 240ms ease, height 240ms ease;
  height: var(--header-h);
  display: flex;
  align-items: center;
}

.site-header.scrolled {
  background: rgba(245, 237, 228, 1);
  box-shadow: 0 8px 24px -16px rgba(0,0,0,.18);
  height: 56px;
}

.scroll-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: width 60ms linear;
  z-index: 1;
  pointer-events: none;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 32px);
}

.logo {
  font-family: 'Playfair Display', serif;
  font-weight: 300;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--ink);
  white-space: nowrap;
}

.logo span {
  color: var(--accent-2);
}

/* Nav desktop */
.nav-desktop {
  display: none;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: 32px;
  }
  .nav-desktop a {
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 400;
    color: var(--ink);
    position: relative;
    padding: 4px 0;
    transition: color 240ms cubic-bezier(.4,0,.2,1);
  }
  .nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--accent);
    transition: width 320ms cubic-bezier(.2,.7,.2,1);
  }
  .nav-desktop a:hover::after,
  .nav-desktop a.is-active::after {
    width: 100%;
  }
  .nav-desktop a.is-active {
    color: var(--accent);
  }
  .nav-desktop .nav-cta {
    background: var(--ink);
    color: var(--surface);
    padding: 10px 24px;
    border-radius: 3px;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    transition: background 240ms cubic-bezier(.4,0,.2,1), color 240ms cubic-bezier(.4,0,.2,1), transform 180ms ease;
  }
  .nav-desktop .nav-cta::after { display: none; }
  .nav-desktop .nav-cta:hover {
    background: var(--accent);
    color: var(--surface);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px -6px rgba(139,92,246,0.35);
  }
  .nav-desktop .nav-cta.is-active {
    color: var(--surface);
  }
}

/* Hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
  position: relative;
  gap: 5px;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1), opacity 200ms ease;
  transform-origin: center;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

@media (min-width: 1024px) {
  .nav-toggle { display: none; }
}

/* Mobile drawer */
.mobile-drawer-backdrop {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1040;
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease;
}
.mobile-drawer-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(360px, 92vw);
  background: var(--surface);
  z-index: 1050;
  visibility: hidden;
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1), visibility 0ms linear 320ms;
  padding: calc(var(--header-h) + 32px) 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mobile-drawer.is-open {
  visibility: visible;
  transform: translateX(0);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1), visibility 0ms linear 0ms;
}

.drawer-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 1.4rem;
  color: var(--ink);
  cursor: pointer;
  transition: background 240ms ease, color 240ms ease;
  z-index: 2;
  line-height: 1;
}
.drawer-close:hover {
  background: var(--surface-2);
  color: var(--accent);
}

.mobile-drawer a {
  display: block;
  font-size: 1.1rem;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  transition: color 280ms cubic-bezier(.22,.61,.36,1), transform 280ms cubic-bezier(.22,.61,.36,1), padding-left 280ms cubic-bezier(.22,.61,.36,1);
}
.mobile-drawer a:hover,
.mobile-drawer a:active {
  color: var(--accent);
  transform: translateX(6px);
  padding-left: 4px;
}
.mobile-drawer a.is-active {
  color: var(--accent);
}

/* Main offset */
main {
  padding-top: var(--header-h);
}

/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative;
  height: min(calc(100vh - var(--header-h)), 1000px);
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: #0a0a1a;
}

.hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, rgba(10,10,26,0.3) 0%, rgba(10,10,26,0.6) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  color: var(--surface);
  max-width: 720px;
  padding: 0 clamp(16px, 4vw, 32px);
}

.hero-content .eyebrow {
  color: var(--accent-2);
  margin-bottom: 24px;
  opacity: 1;
}

.js .hero-content .eyebrow {
  opacity: 0;
  animation: heroFadeUp 900ms cubic-bezier(.2,.7,.2,1) 300ms forwards;
}

.hero-content h1 {
  color: var(--surface);
  margin-bottom: 20px;
  opacity: 1;
}

.js .hero-content h1 {
  opacity: 0;
  animation: heroFadeUp 900ms cubic-bezier(.2,.7,.2,1) 500ms forwards;
}

.hero-content .hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,253,249,0.8);
  margin-bottom: 40px;
  line-height: 1.8;
  opacity: 1;
}

.js .hero-content .hero-sub {
  opacity: 0;
  animation: heroFadeUp 900ms cubic-bezier(.2,.7,.2,1) 700ms forwards;
}

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

@media (prefers-reduced-motion: reduce) {
  .js .hero-content .eyebrow,
  .js .hero-content h1,
  .js .hero-content .hero-sub,
  .js .hero-cta {
    opacity: 1 !important;
    animation: none !important;
    transform: none !important;
  }
}

.hero-cta {
  display: inline-block;
  background: var(--accent);
  color: var(--surface);
  padding: 16px 48px;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 400;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  transition: background 240ms ease, transform 180ms ease, box-shadow 240ms ease;
  opacity: 1;
}

.js .hero-cta {
  opacity: 0;
  animation: heroFadeUp 900ms cubic-bezier(.2,.7,.2,1) 900ms forwards,
             ctaGlow 4s ease-in-out 2.5s infinite;
}

.hero-cta:hover {
  background: var(--accent-2);
  color: var(--surface);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px -8px rgba(139,92,246,0.45), 0 0 24px rgba(139,92,246,0.15);
}

.hero-cta:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 3px;
}

@keyframes ctaGlow {
  0%, 100% { box-shadow: 0 0 16px rgba(139,92,246,0.2), 0 0 48px rgba(139,92,246,0.05); }
  50% { box-shadow: 0 0 28px rgba(139,92,246,0.4), 0 0 64px rgba(139,92,246,0.1); }
}

/* Star twinkle ambient animation */
@keyframes twinkle {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* Shooting star */
@keyframes shootingStar {
  0% { transform: translateX(0) translateY(0) rotate(-35deg); opacity: 0; }
  5% { opacity: 1; }
  15% { opacity: 0.6; }
  20% { transform: translateX(300px) translateY(150px) rotate(-35deg); opacity: 0; }
  100% { opacity: 0; }
}

.hero::after {
  content: '';
  position: absolute;
  top: 15%;
  left: 10%;
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, rgba(139,92,246,0.8), transparent);
  z-index: 2;
  opacity: 0;
  animation: shootingStar 12s cubic-bezier(.4,0,.2,1) 3s infinite;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .hero::after { animation: none !important; display: none; }
}

/* =========================================
   SECTIONS COMMON
   ========================================= */
.section {
  padding: clamp(80px, 12vh, 140px) 0;
  background: var(--bg);
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(48px, 8vw, 80px);
}

.section-header .eyebrow {
  margin-bottom: 12px;
}

/* Constellation divider */
.constellation-divider {
  display: block;
  width: 120px;
  height: 40px;
  margin: 0 auto 32px;
  opacity: 0.4;
}

/* Sand texture overlay */
.sand-texture {
  /* position: relative already set by .section */
}
.sand-texture::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* =========================================
   EXPERIENCIAS — Masonry 2col
   ========================================= */
.experiencias-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

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

.exp-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer;
  background: var(--ink);
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms cubic-bezier(.2,.7,.2,1);
}

.exp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px -8px rgba(139,92,246,0.28);
}

@media (min-width: 768px) {
  .exp-card:nth-child(2) { margin-top: 60px; }
  .exp-card:nth-child(3) { margin-top: -40px; }
}

.exp-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(.22,.61,.36,1), filter 700ms cubic-bezier(.22,.61,.36,1);
}

.exp-card:hover img {
  transform: scale(1.05);
  filter: brightness(1.06) saturate(1.08);
}

.exp-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 24px;
  background: linear-gradient(0deg, rgba(10,10,26,0.85) 0%, transparent 100%);
  color: var(--surface);
  transition: opacity 360ms ease;
}

.exp-card-overlay h3 {
  color: var(--surface);
  margin-bottom: 8px;
  font-size: 1.5rem;
}

.exp-card-overlay p {
  font-size: 0.85rem;
  opacity: 0.8;
  line-height: 1.6;
}

/* =========================================
   ALOJAMIENTO — Full width + specs
   ========================================= */
.alojamiento-img-wrap {
  position: relative;
  width: 100%;
  max-width: min(90%, 1280px);
  margin: 0 auto 48px;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 21/9;
}

@media (max-width: 767px) {
  .alojamiento-img-wrap {
    aspect-ratio: 16/9;
    max-width: 100%;
  }
}

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

.lodge-specs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.spec-item {
  text-align: center;
  padding: 24px;
}

.spec-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 16px;
  color: var(--accent);
  transition: color 320ms ease, filter 320ms ease;
}

.spec-item h4 {
  font-size: 1rem;
  margin-bottom: 8px;
  font-style: normal;
  font-weight: 400;
}

.spec-item p {
  font-size: 0.85rem;
  color: var(--ink-soft);
}

/* =========================================
   GALERÍA — Horizontal scroll
   ========================================= */
.galeria-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0 clamp(16px, 4vw, 32px) 24px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-2) transparent;
}

.galeria-scroll::-webkit-scrollbar {
  height: 4px;
}
.galeria-scroll::-webkit-scrollbar-track {
  background: transparent;
}
.galeria-scroll::-webkit-scrollbar-thumb {
  background: var(--accent-2);
  border-radius: 2px;
}

.galeria-item {
  flex: 0 0 auto;
  width: clamp(280px, 60vw, 560px);
  aspect-ratio: 3/2;
  border-radius: var(--radius);
  overflow: hidden;
  scroll-snap-align: start;
}

.galeria-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(.22,.61,.36,1), filter 600ms ease;
}

.galeria-item:hover img {
  transform: scale(1.03);
}

/* =========================================
   PRICING
   ========================================= */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
}

.price-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 40px);
  text-align: center;
  transition: transform 360ms cubic-bezier(.2,.7,.2,1), box-shadow 360ms cubic-bezier(.2,.7,.2,1);
  position: relative;
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px -12px rgba(139,92,246,0.18), 0 0 0 1px rgba(139,92,246,0.08);
}

.price-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 8px 24px -8px rgba(139,92,246,0.12);
}

.price-card.featured:hover {
  box-shadow: 0 0 0 1px var(--accent), 0 24px 56px -12px rgba(139,92,246,0.25);
}

.price-card .eyebrow {
  margin-bottom: 16px;
}

.price-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.price-amount {
  font-family: 'Lato', sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--accent);
  margin-bottom: 24px;
}

.price-amount small {
  font-size: 0.75rem;
  color: var(--ink-soft);
  display: block;
  margin-top: 4px;
}

.price-includes {
  list-style: none;
  text-align: left;
  margin-bottom: 24px;
}

.price-includes li {
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.85rem;
  position: relative;
  padding-left: 20px;
}

.price-includes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.price-excludes li::before {
  background: var(--line-strong);
}

.price-disclaimer {
  font-size: 0.75rem;
  color: var(--ink-soft);
  text-align: center;
  margin-top: 32px;
  font-style: italic;
}

/* =========================================
   RESERVA FORM
   ========================================= */
.reserva-wrap {
  max-width: 640px;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }
  .form-grid .field-full { grid-column: 1 / -1; }
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field label {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 400;
}

.field input,
.field select,
.field textarea {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--ink);
  transition: border-color 240ms ease, box-shadow 240ms ease;
  letter-spacing: 0.02em;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(139,92,246,0.12);
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.field input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: auto;
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  padding: 0;
  border: 0;
  margin: 2px 0 0;
  accent-color: var(--accent);
}

.field-checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
}

.field-checkbox label {
  text-transform: none;
  font-size: 0.8rem;
  letter-spacing: 0;
  line-height: 1.5;
}

.honeypot { position: absolute; left: -9999px; opacity: 0; }

/* =========================================
   BUTTONS
   ========================================= */
.btn-primary {
  display: inline-block;
  background: var(--ink);
  color: var(--surface);
  padding: 16px 40px;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  transition: background 240ms cubic-bezier(.4,0,.2,1), color 240ms ease, transform 180ms ease, box-shadow 240ms ease;
}
.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--accent);
  color: var(--surface);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px -8px rgba(139,92,246,0.4), 0 0 24px rgba(139,92,246,0.12);
}
.btn-primary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--ink);
  padding: 14px 32px;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  border: 1px solid var(--line-strong);
  border-radius: 3px;
  cursor: pointer;
  transition: background 240ms ease, color 240ms ease, border-color 240ms ease, transform 180ms ease;
}
.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--ink);
  transform: translateY(-2px);
}

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .testimonials-grid .testimonial-card:first-child {
    grid-column: 1 / -1;
  }
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 36px);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  left: 24px;
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
}

.testimonial-card blockquote {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 16px;
  padding-top: 24px;
  color: var(--ink);
}

.testimonial-author {
  font-size: 0.75rem;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}

.testimonial-author strong {
  color: var(--ink);
  font-weight: 400;
}

/* =========================================
   PROCESS TIMELINE
   ========================================= */
.process-timeline {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  padding-left: 40px;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--line-strong);
}

.process-step {
  position: relative;
  padding-bottom: 48px;
}

.process-step::before {
  content: '';
  position: absolute;
  left: -34px;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--bg);
  box-shadow: 0 0 0 2px var(--accent);
  transition: box-shadow 320ms cubic-bezier(.2,.7,.2,1);
}

.process-step .step-time {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-2);
  margin-bottom: 6px;
}

.process-step h4 {
  font-style: normal;
  font-weight: 400;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

/* =========================================
   FAQ — Pure CSS accordion
   ========================================= */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  padding: 20px 40px 20px 0;
  font-size: 0.95rem;
  font-weight: 400;
  cursor: pointer;
  list-style: none;
  position: relative;
  color: var(--ink);
  transition: color 240ms ease;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 200;
  color: var(--accent);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
}

.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

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

.faq-item > .faq-body {
  height: 0;
  padding: 0 clamp(18px, 3vw, 28px);
  overflow: hidden;
  transition: height 360ms cubic-bezier(.4,0,.2,1),
              padding-block-end 360ms cubic-bezier(.4,0,.2,1);
}

.faq-item[open] > .faq-body {
  height: auto;
  padding-block-end: 26px;
}

@media (prefers-reduced-motion: reduce) {
  .faq-item > .faq-body { transition: none; }
}

.faq-body p {
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.8;
}

/* =========================================
   STATS COUNTER
   ========================================= */
.stats-band {
  background: var(--ink);
  padding: clamp(48px, 8vw, 80px) 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.stats-band::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139,92,246,0.3), transparent);
}

.stats-band::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(139,92,246,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

.stat-item .stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 300;
  font-style: italic;
  color: var(--surface);
  margin-bottom: 8px;
}

.stat-item .stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-2);
}

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
  background: var(--ink);
  color: rgba(255,253,249,0.7);
  padding: clamp(60px, 10vw, 100px) 0 32px;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

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

.footer-brand .logo {
  color: var(--surface);
  margin-bottom: 16px;
  display: inline-block;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.8;
  max-width: 280px;
}

.footer-col h4 {
  color: var(--surface);
  font-style: normal;
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 0.8rem;
  color: rgba(255,253,249,0.6);
  padding: 6px 0;
  transition: color 240ms ease, transform 240ms ease;
}
.footer-col a:hover {
  color: var(--accent-2);
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,253,249,0.1);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.72rem;
  color: rgba(255,253,249,0.4);
}

.footer-bottom a {
  color: rgba(255,253,249,0.4);
  font-size: 0.72rem;
}
.footer-bottom a:hover { color: var(--accent-2); }

/* =========================================
   CONTACT PAGE
   ========================================= */
.contact-channels {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 48px;
}

@media (min-width: 640px) {
  .contact-channels {
    grid-template-columns: 1fr 1fr;
  }
}

.channel-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
  border-radius: var(--radius);
  transition: background 280ms cubic-bezier(.22,.61,.36,1), transform 280ms cubic-bezier(.22,.61,.36,1), box-shadow 280ms cubic-bezier(.22,.61,.36,1);
}

.channel-item:hover {
  background: var(--surface-2);
  transform: translateX(6px);
  box-shadow: -4px 0 0 0 var(--accent);
}

.channel-item svg {
  width: 20px;
  height: 20px;
  color: var(--ink-soft);
  transition: color 240ms ease, transform 240ms ease;
  margin-top: 2px;
}

.channel-item:hover svg {
  color: var(--accent);
  transform: scale(1.08);
}

.channel-item .channel-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  margin-bottom: 4px;
}

.channel-item .channel-value {
  font-size: 0.9rem;
  color: var(--ink);
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* =========================================
   REVEAL ANIMATIONS
   ========================================= */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 900ms cubic-bezier(.22,.61,.36,1), transform 900ms cubic-bezier(.22,.61,.36,1);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

.reveal[style*="--i"] {
  transition-delay: calc(var(--i, 0) * 140ms);
}

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

/* =========================================
   NICHE ANIMATIONS — Astro/Desert
   ========================================= */

/* 1. Constellation line-draw */
@keyframes constellationDraw {
  from { stroke-dashoffset: 200; }
  to { stroke-dashoffset: 0; }
}

.constellation-line {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: constellationDraw 2s cubic-bezier(.2,.7,.2,1) forwards;
}

/* 2. Sand drift ambient */
@keyframes sandDrift {
  0%, 100% { transform: translateX(0) translateY(0); }
  25% { transform: translateX(2px) translateY(-1px); }
  50% { transform: translateX(-1px) translateY(1px); }
  75% { transform: translateX(1px) translateY(-0.5px); }
}

.sand-particle {
  animation: sandDrift 12s ease-in-out infinite;
}

/* 3. Moon glow pulse */
@keyframes moonGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(139,92,246,0.15), 0 0 60px rgba(139,92,246,0.05); }
  50% { box-shadow: 0 0 30px rgba(139,92,246,0.25), 0 0 80px rgba(139,92,246,0.1); }
}

.moon-glow {
  animation: moonGlow 4s ease-in-out infinite;
}

/* 4. Steam/mist rising */
@keyframes steamRise {
  0% { transform: translateY(0) scaleX(1); opacity: 0.6; }
  50% { transform: translateY(-20px) scaleX(1.5); opacity: 0.3; }
  100% { transform: translateY(-40px) scaleX(2); opacity: 0; }
}

.steam-particle {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,149,108,0.2), transparent);
  animation: steamRise 8s ease-out infinite;
}

/* 5. Star pulse on card hover */
@keyframes starPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.4); opacity: 1; }
}

.exp-card::after {
  content: '';
  position: absolute;
  top: 16px;
  right: 16px;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 360ms ease;
  box-shadow: 0 0 8px rgba(139,92,246,0.6);
  z-index: 2;
}
.exp-card:hover::after {
  opacity: 1;
  animation: starPulse 2s ease-in-out infinite;
}

/* 6. Card hover star-trail glow */
.exp-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  opacity: 0;
  background: radial-gradient(ellipse at 30% 0%, rgba(139,92,246,0.15) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 100%, rgba(200,149,108,0.1) 0%, transparent 50%);
  transition: opacity 600ms cubic-bezier(.2,.7,.2,1);
  z-index: 1;
  pointer-events: none;
}
.exp-card:hover::before {
  opacity: 1;
}

/* 7. Price card hover glow */
.price-card::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px; bottom: -1px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(139,92,246,0.08) 0%, transparent 50%, rgba(200,149,108,0.06) 100%);
  opacity: 0;
  transition: opacity 400ms ease;
  pointer-events: none;
  z-index: 0;
}
.price-card:hover::before {
  opacity: 1;
}

/* 8. Testimonial card subtle lift */
.testimonial-card {
  transition: transform 400ms cubic-bezier(.22,.61,.36,1), box-shadow 400ms cubic-bezier(.22,.61,.36,1), border-color 400ms ease;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px -8px rgba(0,0,0,0.1), 0 0 0 1px rgba(139,92,246,0.06);
  border-color: rgba(139,92,246,0.15);
}

/* 9. FAQ summary hover indicator */
.faq-item summary::before {
  content: '';
  position: absolute;
  left: -16px;
  top: 50%;
  width: 3px;
  height: 0;
  background: var(--accent);
  border-radius: 2px;
  transition: height 320ms cubic-bezier(.22,.61,.36,1), top 320ms cubic-bezier(.22,.61,.36,1);
  transform: translateY(-50%);
}
.faq-item summary:hover::before {
  height: 24px;
}
.faq-item[open] summary::before {
  height: 100%;
  opacity: 0.3;
}

/* 10. Spec item icon hover */
.spec-item {
  transition: transform 400ms cubic-bezier(.22,.61,.36,1), background 400ms ease;
  border-radius: var(--radius);
}
.spec-item:hover {
  transform: translateY(-6px);
  background: rgba(139,92,246,0.03);
}
.spec-item:hover .spec-icon {
  color: var(--accent-2);
  filter: drop-shadow(0 0 10px rgba(139,92,246,0.3));
}

/* 11. Trust badge subtle shimmer */
@keyframes badgeShimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.trust-badge {
  transition: border-color 320ms ease, background 320ms ease;
}
.trust-badge:hover {
  border-color: rgba(255,253,249,0.3);
  background: rgba(255,253,249,0.18);
}

/* 12. Process step hover glow dot */
.process-step {
  transition: padding-left 300ms ease;
}
.process-step:hover {
  padding-left: 4px;
}
.process-step:hover::before {
  box-shadow: 0 0 0 3px var(--accent), 0 0 16px rgba(139,92,246,0.45), 0 0 32px rgba(139,92,246,0.15);
}

/* 13. Gallery item hover caption glow */
.galeria-item {
  transition: box-shadow 500ms cubic-bezier(.22,.61,.36,1), transform 500ms cubic-bezier(.22,.61,.36,1);
}
.galeria-item:hover {
  box-shadow: 0 16px 40px -8px rgba(139,92,246,0.28), 0 0 0 1px rgba(139,92,246,0.08);
  transform: translateY(-6px);
}
.galeria-item:hover img {
  filter: brightness(1.05) saturate(1.1);
}

/* 14. Footer link underline reveal */
.footer-col a {
  position: relative;
}
.footer-col a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-2);
  transition: width 280ms cubic-bezier(.2,.7,.2,1);
}
.footer-col a:hover::after {
  width: 100%;
}

@media (prefers-reduced-motion: reduce) {
  .constellation-line,
  .sand-particle,
  .moon-glow,
  .steam-particle,
  .exp-card::after,
  .hero-cta,
  .hero::after {
    animation: none !important;
  }
  .exp-card,
  .exp-card::before,
  .exp-card img,
  .galeria-item img,
  .price-card::before,
  .price-card,
  .testimonial-card,
  .spec-item,
  .galeria-item,
  .footer-col a::after,
  .process-step,
  .process-step::before,
  .faq-item summary::before,
  .team-member,
  .channel-item,
  .mobile-drawer a,
  .btn-primary,
  .btn-ghost,
  .nav-desktop .nav-cta {
    transition: none !important;
  }
}

/* =========================================
   TRUST STRIP
   ========================================= */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: rgba(255,253,249,0.12);
  border: 1px solid rgba(255,253,249,0.15);
  border-radius: 20px;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  color: rgba(255,253,249,0.8);
}

.trust-badge svg {
  width: 14px;
  height: 14px;
  opacity: 0.7;
}

/* =========================================
   COOKIE BANNER
   ========================================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 100%;
  margin: 0;
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-radius: 0;
  padding: 16px clamp(16px, 4vw, 24px);
  z-index: 9999;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 360ms cubic-bezier(.2,.7,.2,1), opacity 280ms ease;
  box-shadow: 0 -8px 32px -12px rgba(0,0,0,.12);
}

@media (min-width: 768px) {
  .cookie-banner {
    bottom: 24px;
    left: 24px;
    right: auto;
    max-width: 420px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 20px 24px;
    box-shadow: 0 16px 48px -12px rgba(0,0,0,.15);
  }
}

.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 767px) {
  .cookie-banner {
    padding: 20px clamp(16px, 4vw, 24px) calc(20px + env(safe-area-inset-bottom, 0px));
  }
  .cookie-buttons {
    gap: 10px;
  }
  .cookie-btn {
    padding: 12px 20px;
    font-size: 0.75rem;
  }
}

.cookie-banner h4 {
  font-style: normal;
  font-weight: 400;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.cookie-banner p {
  font-size: 0.78rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 14px;
}

.cookie-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 10px 18px;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 3px;
  border: 1px solid var(--line);
  cursor: pointer;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  transition: background 240ms ease, color 240ms ease, border-color 240ms ease, transform 180ms ease;
  min-height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.cookie-btn[data-consent="accept"] {
  background: var(--ink);
  color: var(--surface);
  border-color: var(--ink);
  font-weight: 400;
}
.cookie-btn[data-consent="accept"]:hover {
  background: var(--accent);
  color: var(--surface);
  border-color: var(--accent);
  transform: translateY(-1px);
}

.cookie-btn[data-consent="reject"] {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
  font-weight: 400;
}
.cookie-btn[data-consent="reject"]:hover {
  background: var(--surface-2);
  color: var(--ink);
  border-color: var(--ink-soft);
  transform: translateY(-1px);
}

.cookie-btn[data-consent="settings"] {
  background: transparent;
  color: var(--ink-soft);
  border-color: transparent;
  font-weight: 300;
}
.cookie-btn[data-consent="settings"]:hover {
  background: var(--surface-2);
  color: var(--ink);
  border-color: var(--line);
}

/* =========================================
   FORM STATUS
   ========================================= */
.form-status {
  padding: 16px 20px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  margin-top: 16px;
  display: none;
}
.form-status.is-success {
  display: block;
  background: rgba(139,92,246,0.08);
  border: 1px solid rgba(139,92,246,0.2);
  color: var(--ink);
}
.form-status.is-error {
  display: block;
  background: rgba(200,60,60,0.08);
  border: 1px solid rgba(200,60,60,0.2);
  color: #7a2020;
}

/* =========================================
   PAGE CONTENT (policies, about)
   ========================================= */
.page-content {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(48px, 8vw, 80px) 0;
}

.page-content h1 {
  margin-bottom: 32px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.page-content h2 {
  margin-top: 48px;
  margin-bottom: 16px;
  font-size: clamp(1.4rem, 3vw, 2rem);
}

.page-content h3 {
  margin-top: 32px;
  margin-bottom: 12px;
}

.page-content p {
  margin-bottom: 16px;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

.page-content ul, .page-content ol {
  margin: 16px 0;
  padding-left: 24px;
}

.page-content li {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 8px;
}

.page-content a {
  word-break: break-word;
  overflow-wrap: anywhere;
}

section[id] {
  scroll-margin-top: calc(var(--header-h) + 16px);
}

/* Table scroll wrapper */
.table-scroll {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 18px 0;
  border: 1px solid var(--line);
  border-radius: 6px;
}
.table-scroll > table {
  margin: 0 !important;
  min-width: 480px;
  width: 100%;
}
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) { min-width: 0; }

.page-content table {
  border-collapse: collapse;
}

.page-content th,
.page-content td {
  padding: 12px 16px;
  text-align: left;
  font-size: 0.85rem;
  border-bottom: 1px solid var(--line);
}

.page-content th {
  font-weight: 400;
  color: var(--ink);
  background: var(--surface-2);
}

.page-content td {
  color: var(--ink-soft);
}

/* =========================================
   ABOUT PAGE TEAM
   ========================================= */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .team-grid { grid-template-columns: 1fr 1fr; }
}

.team-member {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 32px);
  transition: transform 400ms cubic-bezier(.2,.7,.2,1), box-shadow 400ms cubic-bezier(.2,.7,.2,1);
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px -8px rgba(0,0,0,0.1), 0 0 0 1px rgba(139,92,246,0.06);
  border-color: rgba(139,92,246,0.12);
}

.team-member h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.team-member .team-role {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 16px;
}

.team-member p {
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.8;
}

/* =========================================
   COUNTER ANIMATION
   ========================================= */
.counter-value {
  display: inline-block;
  min-width: 2ch;
}

/* =========================================
   404 PAGE
   ========================================= */
.page-404 {
  height: min(calc(100vh - var(--header-h)), 800px);
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px;
}

.page-404 h1 {
  font-size: clamp(4rem, 12vw, 8rem);
  color: var(--accent);
  margin-bottom: 16px;
}

.page-404 p {
  color: var(--ink-soft);
  margin-bottom: 32px;
}

/* =========================================
   FOCUS STYLES
   ========================================= */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* =========================================
   PRINT
   ========================================= */
@media print {
  .site-header, .cookie-banner, .mobile-drawer, .mobile-drawer-backdrop,
  .nav-toggle { display: none !important; }
  main { padding-top: 0; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
