/* =========================================
   NEDA & IVELIN — Wedding SPA
   Earth-tone elegant design
   ========================================= */

/* --- Custom Properties --- */
:root {
  /* Backgrounds — warm ivory/cream (matching paper swatch) */
  --color-cream: #F4ECE1;
  --color-warm-white: #EFE6DA;
  --color-sand: #E2D5C7;
  --color-sand-light: #EBE0D4;

  /* Primary — Dusty Mauve / Plum / Wine (matching Artcadia reference) */
  --color-burgundy: #7B3A4E;
  --color-burgundy-light: #956878;
  --color-burgundy-pale: #B5909B;
  --color-burgundy-dark: #5C2038;
  --color-marsala: #6B2E48;
  --color-wine: #481830;

  /* Accent — Gold Foil (warm, rich) */
  --color-gold: #C49A6C;
  --color-gold-light: #D9BA90;
  --color-gold-dark: #A67D4E;

  /* Botanical greens (muted, for SVG decorations) */
  --color-botanical: #6B8F5E;
  --color-botanical-light: #8FB182;
  --color-botanical-muted: #8A9E7E;

  /* Text */
  --color-text: #3C2232;
  --color-text-light: #6B4E5A;
  --color-text-muted: #9A828E;

  /* Typography */
  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Lora', 'Georgia', serif;
  --font-sans: 'Inter', -apple-system, sans-serif;

  /* Easings */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  --nav-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-cream);
  overflow-x: hidden;
}

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

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

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

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

/* --- Preloader --- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-cream);
  transition: opacity 0.8s var(--ease-out-expo), visibility 0.8s;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader-ring {
  position: absolute;
  inset: 0;
  color: var(--color-burgundy);
  animation: preloader-spin 8s linear infinite;
}

.preloader-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--color-burgundy);
}

@keyframes preloader-spin {
  to { transform: rotate(360deg); }
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background 0.5s, box-shadow 0.5s, backdrop-filter 0.5s;
}

.nav.scrolled {
  background: rgba(244, 236, 225, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(123, 58, 78, 0.06);
}

.nav-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--color-burgundy);
  opacity: 0;
  transition: opacity 0.5s;
}

.nav.scrolled .nav-logo {
  opacity: 1;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2.5rem;
}

.nav-link {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-light);
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.3s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-burgundy);
  transition: width 0.4s var(--ease-out-expo);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-burgundy);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--color-burgundy);
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(123, 58, 78, 0.05) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(196, 154, 108, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(123, 58, 78, 0.03) 0%, transparent 50%),
    linear-gradient(180deg, var(--color-cream) 0%, var(--color-warm-white) 50%, var(--color-cream) 100%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image:
    radial-gradient(circle at 20% 50%, var(--color-burgundy) 1px, transparent 1px),
    radial-gradient(circle at 80% 30%, var(--color-burgundy) 1px, transparent 1px),
    radial-gradient(circle at 50% 80%, var(--color-burgundy) 0.5px, transparent 0.5px);
  background-size: 80px 80px, 60px 60px, 40px 40px;
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
}

.hero-overline {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.hero-name {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: 0.04em;
  color: var(--color-burgundy-dark);
}

.hero-ampersand {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--color-gold);
  line-height: 1;
  margin: 0.25rem 0;
}

.hero-divider {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  color: var(--color-gold);
}

.hero-divider svg {
  width: 160px;
}

.hero-date {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-date-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--color-text);
}

.hero-date-separator {
  color: var(--color-burgundy-pale);
  font-size: 0.5rem;
}

.hero-date-venue {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* Countdown */
.countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 70px;
}

.countdown-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1;
  color: var(--color-burgundy-dark);
  letter-spacing: 0.05em;
  font-variant-numeric: tabular-nums;
}

.countdown-label {
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-top: 0.5rem;
}

.countdown-separator {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--color-sand);
  margin-bottom: 1.25rem;
}

/* Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 1px;
  height: 48px;
  display: flex;
  align-items: flex-end;
}

.hero-scroll-line {
  width: 1px;
  height: 100%;
  background: var(--color-gold);
  position: relative;
  overflow: hidden;
}

.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--color-burgundy);
  animation: scroll-line 2s var(--ease-in-out) infinite;
}

@keyframes scroll-line {
  0% { top: -50%; }
  100% { top: 100%; }
}

/* --- Sections --- */
.section {
  padding: 6rem 0;
  position: relative;
}

.container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-overline {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold-dark);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--color-burgundy-dark);
  margin-bottom: 1.25rem;
}

.section-divider {
  display: flex;
  justify-content: center;
  color: var(--color-gold);
}

.section-divider svg {
  width: 140px;
}

/* --- Event Section --- */
.section-event {
  background: linear-gradient(180deg, var(--color-cream) 0%, var(--color-warm-white) 30%, var(--color-warm-white) 70%, var(--color-cream) 100%);
}

/* Venue Card */
.venue-card {
  margin-bottom: 4rem;
}

.venue-card-inner {
  text-align: center;
  padding: 3rem 2rem;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(123, 58, 78, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s;
}

.venue-card-inner:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 60px rgba(92, 32, 56, 0.06);
}

.venue-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: var(--color-burgundy-pale);
  margin-bottom: 1.25rem;
}

.venue-name {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--color-burgundy-dark);
  margin-bottom: 0.5rem;
}

.venue-location {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.venue-map-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--color-burgundy);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.3s, color 0.3s;
}

.venue-map-link:hover {
  border-color: var(--color-burgundy);
  color: var(--color-marsala);
}

/* Timeline */
.timeline {
  position: relative;
  margin-bottom: 4rem;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(180deg, var(--color-sand) 0%, var(--color-gold) 50%, var(--color-sand) 100%);
}

.timeline-item {
  position: relative;
  padding-left: 2rem;
  padding-bottom: 2.5rem;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -2rem;
  top: 8px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 1.5px solid var(--color-gold);
  background: var(--color-cream);
  transition: background 0.3s, border-color 0.3s;
}

.timeline-item:hover .timeline-dot {
  background: rgba(196, 154, 108, 0.15);
  border-color: var(--color-gold-dark);
}

.timeline-content {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.timeline-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  color: var(--color-burgundy-pale);
}

.timeline-title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--color-burgundy-dark);
  margin-bottom: 0.25rem;
  letter-spacing: 0.02em;
}

.timeline-text {
  font-size: 0.9375rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* Info Cards */
.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.info-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(123, 58, 78, 0.08);
  border-radius: 12px;
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s;
}

.info-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(92, 32, 56, 0.05);
}

.info-card-icon {
  display: inline-flex;
  width: 40px;
  height: 40px;
  color: var(--color-burgundy-pale);
  margin-bottom: 1rem;
}

.info-card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-burgundy-dark);
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}

.info-card-text {
  font-size: 0.875rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

.info-card-text strong {
  color: var(--color-burgundy);
  font-weight: 600;
}

/* --- Section Break Divider --- */
.section-break {
  display: flex;
  justify-content: center;
  padding: 1rem 2rem;
  color: var(--color-gold);
}

.section-break-svg {
  width: 300px;
  max-width: 80%;
}

/* --- FAQ Section --- */
.section-faq {
  background: var(--color-cream);
}

.faq-list {
  max-width: 640px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(123, 58, 78, 0.1);
}

.faq-item:first-child {
  border-top: 1px solid rgba(123, 58, 78, 0.1);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.1875rem;
  font-weight: 500;
  color: var(--color-burgundy-dark);
  letter-spacing: 0.01em;
  transition: color 0.3s;
}

.faq-question:hover {
  color: var(--color-burgundy);
}

.faq-chevron {
  flex-shrink: 0;
  color: var(--color-text-muted);
  transition: transform 0.4s var(--ease-out-expo), color 0.3s;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--color-burgundy-pale);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out-expo), opacity 0.4s;
  opacity: 0;
}

.faq-item.open .faq-answer {
  opacity: 1;
}

.faq-answer p {
  padding-bottom: 1.5rem;
  font-size: 0.9375rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

/* --- Transport Section --- */
.section-transport {
  background: linear-gradient(180deg, var(--color-cream) 0%, var(--color-warm-white) 50%, var(--color-cream) 100%);
}

.transport-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.transport-card {
  padding: 2.5rem 2rem;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(123, 58, 78, 0.1);
  border-radius: 16px;
  text-align: center;
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s;
}

.transport-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 60px rgba(92, 32, 56, 0.06);
}

.transport-card-icon {
  display: inline-flex;
  width: 60px;
  height: 60px;
  color: var(--color-burgundy-pale);
  margin-bottom: 1.25rem;
}

.transport-card-title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--color-burgundy-dark);
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}

.transport-card-text {
  font-size: 0.875rem;
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.transport-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--color-burgundy);
  background: rgba(123, 58, 78, 0.08);
  padding: 0.5rem 1rem;
  border-radius: 100px;
}

.transport-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-burgundy-pale);
  animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.transport-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--color-burgundy);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.3s, color 0.3s;
}

.transport-link:hover {
  border-color: var(--color-burgundy);
  color: var(--color-marsala);
}

/* --- Footer --- */
.footer {
  padding: 4rem 2rem 3rem;
  text-align: center;
  background: var(--color-cream);
  border-top: 1px solid rgba(123, 58, 78, 0.06);
}

.footer-inner {
  max-width: 600px;
  margin: 0 auto;
}

.footer-botanical {
  display: flex;
  justify-content: center;
  color: var(--color-burgundy-pale);
  opacity: 0.5;
  margin-bottom: 1.5rem;
}

.footer-botanical svg {
  width: 160px;
}

.footer-names {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--color-burgundy);
  margin-bottom: 0.5rem;
}

.footer-date {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.footer-message {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-style: italic;
  font-weight: 300;
  color: var(--color-text-light);
}

/* --- Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.25s; }
.reveal-delay-3 { transition-delay: 0.4s; }
.reveal-delay-4 { transition-delay: 0.6s; }
.reveal-delay-5 { transition-delay: 0.8s; }
.reveal-delay-6 { transition-delay: 1.0s; }

/* Hero specific reveals — start from further down */
.hero .reveal {
  transform: translateY(40px);
}

.hero .hero-ampersand.reveal {
  transform: translateY(20px) scale(0.9);
}

.hero .hero-ampersand.reveal.visible {
  transform: translateY(0) scale(1);
}

/* --- Responsive --- */
@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    height: 100dvh;
    flex-direction: column;
    gap: 0;
    background: rgba(244, 236, 225, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 5rem 2rem 2rem;
    transform: translateX(100%);
    transition: transform 0.5s var(--ease-out-expo);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.05);
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-link {
    font-size: 0.9375rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(123, 58, 78, 0.06);
  }

  .nav-link::after {
    display: none;
  }

  .section {
    padding: 4rem 0;
  }

  .section-header {
    margin-bottom: 3rem;
  }

  .hero-overline {
    font-size: 0.6875rem;
    letter-spacing: 0.2em;
  }

  .info-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .transport-content {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .countdown {
    gap: 0.25rem;
  }

  .countdown-item {
    min-width: 56px;
  }

  .countdown-separator {
    font-size: 1.2rem;
  }

  .timeline {
    padding-left: 1.5rem;
  }

  .timeline-item {
    padding-left: 1.5rem;
  }

  .timeline-content {
    flex-direction: column;
    gap: 0.5rem;
  }

  .venue-card-inner {
    padding: 2rem 1.5rem;
  }

  .transport-card {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }

  .hero-name {
    font-size: clamp(2.75rem, 14vw, 4rem);
  }

  .hero-date {
    flex-direction: column;
    gap: 0.5rem;
  }

  .hero-date-separator {
    display: none;
  }

  .faq-question {
    font-size: 1.0625rem;
    padding: 1.25rem 0;
  }

  .section-title {
    font-size: 2rem;
  }
}

/* --- Overlay for mobile nav --- */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(60, 34, 50, 0.2);
  backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}

.nav-overlay.visible {
  opacity: 1;
  visibility: visible;
}

/* --- Print --- */
@media print {
  .nav,
  .hero-scroll,
  .preloader {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 2rem 0;
  }

  .section {
    padding: 2rem 0;
    break-inside: avoid;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}
