/* =========================================
   Чёрный Лебедь Венеции — Premium Styles
   ========================================= */

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

:root {
  /* Color Palette */
  --black: #0A0A0A;
  --graphite: #1A1A1A;
  --gold: #C9A96E;
  --bronze: #8B7355;
  --cream: #F5F0EB;
  --walnut: #2C1810;
  --mist: rgba(245, 240, 235, 0.5);
  --ghost: rgba(245, 240, 235, 0.08);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, 'Segoe UI', system-ui, sans-serif;

  /* Easing */
  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-smooth: cubic-bezier(0.33, 1, 0.68, 1);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Skip link */
.skip-link {
  position: fixed;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--black);
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  z-index: 99999;
  border-radius: 0 0 4px 4px;
  transition: top 0.3s ease;
}

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

::selection {
  background: var(--gold);
  color: var(--black);
}

/* Focus visible */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: 2px;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--bronze); }

/* =========================================
   Loader
   ========================================= */

#loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 1.6s var(--ease-expo), visibility 0s 1.6s;
}

#loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.loader-ornament {
  width: 100px;
  opacity: 0;
  animation: loaderFade 1s 0.2s var(--ease-expo) forwards;
}

.loader-ornament svg {
  width: 100%;
  height: auto;
}

.loader-line {
  width: 60px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  animation: loaderLine 1.8s 0.4s var(--ease-expo) forwards;
}

.loader-text {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0;
  animation: loaderFade 1s 0.8s var(--ease-expo) forwards;
}

@keyframes loaderLine {
  to { transform: scaleX(1); }
}

@keyframes loaderFade {
  to { opacity: 1; }
}

/* =========================================
   Navigation
   ========================================= */

#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 48px;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 1s var(--ease-expo), transform 1s var(--ease-expo);
}

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

.nav-brand {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.08em;
  color: var(--cream);
  cursor: pointer;
  transition: color 0.4s ease;
}

.nav-brand:hover,
.nav-brand:focus-visible {
  color: var(--gold);
}

.nav-brand:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: 2px;
}

/* Hamburger button */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.nav-hamburger:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: 2px;
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--cream);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.nav-hamburger.active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  opacity: 0.5;
  transition: opacity 0.5s ease;
  position: relative;
}

.nav-links a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: 2px;
}

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

.nav-links a:hover,
.nav-links a:focus-visible {
  opacity: 1;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  width: 100%;
}

/* =========================================
   Hero
   ========================================= */

#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  overflow: hidden;
  z-index: 1;
}

#hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 35%;
  background: linear-gradient(to bottom, transparent, rgba(10, 10, 10, 0.8));
  z-index: 1;
  pointer-events: none;
}

#canvas-container {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

#gondola-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

/* =========================================
   Moon & Clouds — Hero Sky
   ========================================= */

.hero-sky {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.moon {
  position: absolute;
  top: 6%;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 38%,
    #FFF8EE 0%,
    #F0E8D8 30%,
    #D8CDB8 60%,
    #C0B8A0 100%
  );
  box-shadow:
    0 0 40px 15px rgba(255, 248, 230, 0.15),
    0 0 80px 30px rgba(200, 210, 230, 0.08),
    0 0 120px 50px rgba(180, 195, 220, 0.04);
  opacity: 0;
  animation: moonFadeIn 3s 2.5s ease-out forwards;
}

/* Moon craters */
.moon::before {
  content: '';
  position: absolute;
  top: 25%;
  left: 30%;
  width: 18%;
  height: 18%;
  border-radius: 50%;
  background: rgba(138, 128, 112, 0.12);
}

.moon::after {
  content: '';
  position: absolute;
  top: 45%;
  left: 55%;
  width: 12%;
  height: 12%;
  border-radius: 50%;
  background: rgba(138, 128, 112, 0.1);
}

@keyframes moonFadeIn {
  to { opacity: 0.9; }
}

/* Clouds */
.cloud {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(ellipse at center,
    rgba(15, 20, 35, 0.7) 0%,
    rgba(10, 15, 28, 0.4) 40%,
    transparent 70%
  );
  filter: blur(8px);
  opacity: 0;
}

.cloud--1 {
  top: 3%;
  left: 38%;
  width: 180px;
  height: 50px;
  animation: cloudFadeIn 4s 2.8s ease-out forwards, cloudDrift1 45s 3s ease-in-out infinite;
}

.cloud--2 {
  top: 8%;
  left: 48%;
  width: 220px;
  height: 60px;
  animation: cloudFadeIn 4s 3s ease-out forwards, cloudDrift2 55s 3.2s ease-in-out infinite;
}

.cloud--3 {
  top: 1%;
  left: 42%;
  width: 160px;
  height: 45px;
  animation: cloudFadeIn 4s 3.2s ease-out forwards, cloudDrift3 50s 3.4s ease-in-out infinite;
}

@keyframes cloudFadeIn {
  to { opacity: 0.6; }
}

@keyframes cloudDrift1 {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(25px); }
}

@keyframes cloudDrift2 {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(-20px); }
}

@keyframes cloudDrift3 {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(15px); }
}

/* Moonlight cone */
.moon-cone {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 0;
  background: linear-gradient(to bottom,
    rgba(255, 248, 230, 0.08) 0%,
    rgba(255, 248, 230, 0.03) 50%,
    transparent 100%
  );
  clip-path: polygon(45% 0%, 55% 0%, 85% 100%, 15% 100%);
  opacity: 0;
  animation: coneFadeIn 4s 3.5s ease-out forwards;
}

@keyframes coneFadeIn {
  to { opacity: 1; height: 75%; }
}

.hero-water-reflection {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 20%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(10, 10, 10, 0.3) 60%,
    rgba(10, 10, 10, 0.6) 100%
  );
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 24px;
  pointer-events: none;
  margin-top: -30vh;
}

.hero-overline {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(15px);
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 7vw, 100px);
  line-height: 1;
  color: var(--cream);
  margin-bottom: 24px;
}

.hero-line {
  display: block;
  opacity: 0;
  transform: translateY(30px);
}

.hero-line--italic {
  font-style: italic;
  font-weight: 400;
  font-size: 0.6em;
  color: var(--gold);
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.85;
  letter-spacing: 0.02em;
  color: var(--cream);
  max-width: 500px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(15px);
}

/* Hero bricole */
.hero-bricole {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.bricole-left {
  position: absolute;
  left: 4%;
  bottom: 8%;
  width: 40px;
  opacity: 0;
}

.bricole-right {
  position: absolute;
  right: 4%;
  bottom: 8%;
  width: 40px;
  opacity: 0;
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  opacity: 0;
}

.scroll-line {
  width: 2px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.5s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.2; transform: scaleY(0.5); transform-origin: top; }
  50% { opacity: 0.7; transform: scaleY(1); transform-origin: top; }
}

/* =========================================
   Sections — Shared
   ========================================= */

.section {
  position: relative;
  padding: 160px 48px;
  overflow: hidden;
  background: transparent;
  z-index: 1;
}

.section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.65) 0%,
    rgba(10, 10, 10, 0.55) 50%,
    rgba(10, 10, 10, 0.65) 100%
  );
  z-index: -1;
  pointer-events: none;
}

.section--dark::before {
  background: linear-gradient(
    to bottom,
    rgba(26, 26, 26, 0.7) 0%,
    rgba(26, 26, 26, 0.6) 50%,
    rgba(26, 26, 26, 0.7) 100%
  );
}

.section-bg-ill {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 0;
}

.section-bg-ill svg {
  width: 100%;
  max-width: 1200px;
  height: auto;
  transform: scale(1.08);
  opacity: 0.9;
}

.section-content {
  position: relative;
  z-index: 1;
  max-width: 750px;
  margin: 0 auto;
}

.section-content--wide {
  max-width: 1100px;
}

.section-content--center {
  text-align: center;
  max-width: 680px;
}

/* Eyebrow */
.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(15px);
}

.eyebrow-line {
  width: 40px;
  height: 2px;
  background: var(--gold);
}

.eyebrow-text {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Title */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(25px);
}

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

.section-title--large {
  font-size: clamp(40px, 6.5vw, 80px);
}

/* Divider */
.section-divider {
  width: 50px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 36px;
  transform: scaleX(0);
  transform-origin: left;
}

.section-divider--center {
  margin-left: auto;
  margin-right: auto;
  transform-origin: center;
}

/* Lead */
.section-lead {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--cream);
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(15px);
}

/* Body */
.section-body {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(245, 240, 235, 0.75);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(15px);
}

.section-body:last-child {
  margin-bottom: 0;
}

/* =========================================
   Heritage — Stats
   ========================================= */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 56px;
}

.stat-item {
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-unit {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 300;
  color: rgba(245, 240, 235, 0.6);
  line-height: 1.85;
}

/* =========================================
   Craft — Grid
   ========================================= */

.craft-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 20px;
}

.craft-item {
  opacity: 0;
  transform: translateY(25px);
}

.craft-ill {
  width: 100%;
  max-width: 160px;
  margin: 0 auto 28px;
  aspect-ratio: 2/3;
}

.craft-ill svg {
  width: 100%;
  height: 100%;
}

.craft-name {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 16px;
  text-align: center;
}

.craft-desc {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(245, 240, 235, 0.7);
  text-align: center;
}

/* =========================================
   Journey — Landmarks
   ========================================= */

.journey-landmarks {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.landmark {
  opacity: 0;
  transform: translateY(20px);
}

.landmark-number {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 12px;
}

.landmark-name {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
  margin-bottom: 16px;
}

.landmark-desc {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(245, 240, 235, 0.7);
  max-width: 580px;
}

/* =========================================
   Contact
   ========================================= */

.contact-quote {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.55;
  color: var(--cream);
  margin-bottom: 36px;
  padding: 0 24px;
  opacity: 0;
  transform: translateY(15px);
}

.contact-body {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(245, 240, 235, 0.7);
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(15px);
}

.contact-ornament {
  width: 120px;
  margin: 0 auto 32px;
}

.contact-ornament svg {
  width: 100%;
  height: auto;
}

.contact-cta-text {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--gold);
  opacity: 0.7;
}

/* =========================================
   Footer
   ========================================= */

#footer {
  position: relative;
  padding: 100px 48px 48px;
  background: var(--graphite);
  text-align: center;
  overflow: hidden;
  z-index: 2;
}

.footer-ill {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  pointer-events: none;
  opacity: 0.9;
}

.footer-ill svg {
  width: 100%;
  height: 100%;
  opacity: 1;
}

.footer-content {
  position: relative;
  z-index: 1;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  color: var(--gold);
}

.footer-tagline {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  color: rgba(245, 240, 235, 0.5);
  margin-bottom: 32px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-bottom: 32px;
}

.footer-links a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  opacity: 0.5;
  transition: opacity 0.4s ease;
}

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

.footer-copy {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: rgba(245, 240, 235, 0.3);
}

/* =========================================
   Responsive — Desktop (1025px+)
   ========================================= */

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

/* =========================================
   Responsive — Tablet (769–1024px)
   ========================================= */

@media (max-width: 1024px) {
  #nav { padding: 20px 28px; }

  .nav-links a { font-size: 16px; }

  .craft-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    max-width: 500px;
    margin: 20px auto 0;
  }

  .section { padding: 140px 28px; }

  .stats-grid { gap: 32px; }
}

/* =========================================
   Responsive — Large Phone / Small Tablet (481–768px)
   ========================================= */

@media (max-width: 768px) {
  /* Nav — hamburger menu */
  .nav-hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0s 0.4s;
    z-index: 999;
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.4s ease, visibility 0s 0s;
  }

  .nav-links a {
    font-size: 26px;
    padding: 18px 40px;
    opacity: 0.7;
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .nav-links a:hover,
  .nav-links a:focus-visible {
    opacity: 1;
  }

  .nav-links a::after { display: none; }

  /* Hero */
  #hero { min-height: 100vh; min-height: 100dvh; }
  .hero-content { margin-top: -15vh; }
  .hero-title { font-size: clamp(36px, 10vw, 60px); }
  .hero-overline { font-size: 16px; letter-spacing: 0.08em; }
  .hero-subtitle { font-size: 16px; max-width: 320px; }
  .hero-bricole { display: none; }
  .hero-scroll-hint { bottom: 24px; }
  .scroll-line { height: 40px; }

  .moon { width: 70px; height: 70px; }
  .cloud--1 { width: 140px; height: 40px; }
  .cloud--2 { width: 170px; height: 48px; }
  .cloud--3 { width: 120px; height: 36px; }

  /* Sections */
  .section { padding: 100px 24px; }
  .section-title { font-size: clamp(28px, 7vw, 48px); }
  .section-title--large { font-size: clamp(32px, 8vw, 56px); }
  .section-lead { font-size: 16px; margin-bottom: 36px; }
  .section-body { font-size: 16px; }
  .section-divider { margin-bottom: 28px; }

  .eyebrow-text { font-size: 16px; }

  /* Stats */
  .stats-grid { grid-template-columns: 1fr; gap: 40px; margin-bottom: 40px; }
  .stat-number { font-size: clamp(40px, 10vw, 60px); }
  .stat-unit { font-size: 16px; }
  .stat-label { font-size: 16px; }

  /* Craft */
  .craft-name { font-size: 24px; }
  .craft-desc { font-size: 16px; }
  .craft-ill { max-width: 120px; }

  /* Journey */
  .journey-landmarks { gap: 40px; }
  .landmark-name { font-size: clamp(22px, 5vw, 32px); }
  .landmark-desc { font-size: 16px; max-width: 100%; }

  /* Contact */
  .contact-quote { font-size: clamp(18px, 4.5vw, 26px); padding: 0 16px; }
  .contact-body { font-size: 16px; }

  /* Footer */
  #footer { padding: 60px 24px 32px; }
  .footer-brand { font-size: 20px; }
  .footer-tagline { font-size: 14px; margin-bottom: 24px; }
  .footer-links { flex-wrap: wrap; gap: 16px 24px; justify-content: center; }
  .footer-links a { font-size: 12px; }
}

/* =========================================
   Responsive — Mobile (≤480px)
   ========================================= */

@media (max-width: 480px) {
  #nav { padding: 14px 14px; }
  .nav-brand { font-size: 16px; }

  .nav-links a { font-size: 20px; padding: 14px 28px; }

  .hero-content { margin-top: -8vh; padding: 0 14px; }
  .hero-title { font-size: clamp(30px, 12vw, 48px); }
  .hero-overline { font-size: 13px; margin-bottom: 10px; letter-spacing: 0.06em; }
  .hero-subtitle { font-size: 14px; max-width: 240px; line-height: 1.65; }

  .moon { width: 45px; height: 45px; box-shadow: 0 0 25px 10px rgba(255, 248, 230, 0.12), 0 0 50px 20px rgba(200, 210, 230, 0.06); }
  .cloud--1 { width: 80px; height: 24px; left: 25%; }
  .cloud--2 { width: 100px; height: 28px; left: 38%; }
  .cloud--3 { width: 70px; height: 22px; left: 30%; }

  .section { padding: 60px 14px; }
  .section-title { font-size: clamp(22px, 8vw, 36px); }
  .section-title--large { font-size: clamp(24px, 9vw, 40px); }
  .section-lead { font-size: 14px; margin-bottom: 20px; line-height: 1.65; }
  .section-body { font-size: 14px; line-height: 1.65; }
  .section-divider { margin-bottom: 20px; width: 36px; }

  .eyebrow-text { font-size: 12px; letter-spacing: 0.06em; }
  .eyebrow-line { width: 20px; }
  .section-eyebrow { gap: 10px; margin-bottom: 16px; }

  .stats-grid { gap: 24px; margin-bottom: 28px; }
  .stat-number { font-size: clamp(32px, 12vw, 48px); }
  .stat-unit { font-size: 13px; }
  .stat-label { font-size: 13px; line-height: 1.5; }

  .craft-grid { gap: 28px; max-width: 280px; }
  .craft-name { font-size: 18px; }
  .craft-desc { font-size: 13px; line-height: 1.65; }
  .craft-ill { max-width: 80px; }

  .journey-landmarks { gap: 24px; }
  .landmark-name { font-size: clamp(18px, 6vw, 24px); }
  .landmark-desc { font-size: 13px; line-height: 1.65; }
  .landmark-number { font-size: 14px; }

  .contact-quote { font-size: clamp(15px, 5vw, 19px); padding: 0 6px; }
  .contact-body { font-size: 13px; line-height: 1.65; }
  .contact-ornament { width: 70px; }

  #footer { padding: 36px 14px 18px; }
  .footer-brand { font-size: 15px; }
  .footer-tagline { font-size: 11px; margin-bottom: 16px; }
  .footer-links { gap: 8px 14px; }
  .footer-links a { font-size: 9px; letter-spacing: 0.06em; }
  .footer-copy { font-size: 8px; }
  .footer-ill { height: 50px; }
}

/* =========================================
   Reduced Motion
   ========================================= */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .scroll-line { animation: none; opacity: 0.4; }
}

/* Mobile performance — reduce heavy effects */
@media (max-width: 768px) {
  .moon { box-shadow: 0 0 30px 12px rgba(255, 248, 230, 0.12), 0 0 60px 24px rgba(200, 210, 230, 0.06); }
  .cloud { filter: blur(6px); }
  .section-bg-ill svg { transform: none; }
}
