/* ═══════════════════════════════════════════════════════
   VERLUKA | Mobile Beauté — Kompletní stylesheet
   Verze: 2.0 | Duben 2026
   ═══════════════════════════════════════════════════════ */

/* ─── PROMĚNNÉ ─────────────────────────────────────────── */
:root {
  --cream:          #F9F4EE;
  --cream-dark:     #F0E8DC;
  --cream-deeper:   #E8DDD0;
  --gold:           #C9A84C;
  --gold-light:     #E8D5A3;
  --gold-dark:      #A8882A;
  --gold-gradient:  linear-gradient(135deg, #BF9B30, #E8D5A3, #C9A84C);
  --gold-gradient-h: linear-gradient(90deg, #BF9B30, #E8D5A3, #C9A84C);
  --dark-brown:     #2C2015;
  --text:           #5C4A35;
  --text-light:     #8B7355;
  --white:          #FFFFFF;
  --border-gold:    rgba(201, 168, 76, 0.3);
  --border-gold-s:  rgba(201, 168, 76, 0.15);
  --shadow-gold:    0 4px 24px rgba(201, 168, 76, 0.15);
  --shadow-gold-h:  0 8px 32px rgba(201, 168, 76, 0.35);

  --font-display:   'Playfair Display', Georgia, serif;
  --font-elegant:   'Cormorant Garamond', Georgia, serif;
  --font-script:    'Great Vibes', cursive;
  --font-body:      'DM Sans', system-ui, sans-serif;

  --radius:         2px;
  --radius-md:      6px;
  --transition:     0.3s ease;
  --transition-slow: 0.7s ease;

  --container:      1200px;
  --nav-h:          72px;
}

/* ─── RESET & BASE ─────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background-color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

a:hover { color: var(--gold); }

ul { list-style: none; }

button {
  cursor: pointer;
  font-family: var(--font-body);
  border: none;
  background: none;
}

input, select, textarea {
  font-family: var(--font-body);
  font-size: 1rem;
}

/* ─── LOADER ────────────────────────────────────────────── */
#loader {
  position: fixed;
  inset: 0;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.loader-tulip {
  width: 60px;
  height: 80px;
  animation: loader-bloom 1s ease-out forwards, loader-float 2s ease-in-out 1s infinite;
}

.tulip-petal {
  transform-origin: 40px 60px;
  animation: petal-open 0.8s ease-out forwards;
  opacity: 0;
}
.tulip-petal--1 { animation-delay: 0.1s; }
.tulip-petal--2 { animation-delay: 0.3s; }
.tulip-petal--3 { animation-delay: 0.4s; }

@keyframes petal-open {
  from { opacity: 0; transform: scaleY(0); }
  to   { opacity: 1; transform: scaleY(1); }
}

@keyframes loader-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

.loader-text {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--dark-brown);
  letter-spacing: 0.1em;
  animation: fadeInUp 0.6s ease 0.5s both;
}

.loader-sub {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 300;
  color: var(--text-light);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  animation: fadeInUp 0.6s ease 0.7s both;
}

/* ─── KONTEJNER ─────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ─── SEKCE ZÁKLADY ─────────────────────────────────────── */
section {
  padding: 6rem 0;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  color: var(--dark-brown);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-sub {
  font-family: var(--font-elegant);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 3rem;
}

/* ─── TLAČÍTKA ──────────────────────────────────────────── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--gold-gradient);
  color: var(--dark-brown);
  padding: 14px 36px;
  border: none;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.btn-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  opacity: 0;
  transition: opacity var(--transition);
}

.btn-gold:hover {
  box-shadow: var(--shadow-gold-h);
  transform: translateY(-2px);
  color: var(--dark-brown);
}

.btn-gold:hover::before { opacity: 1; }
.btn-gold:active { transform: translateY(0); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 32px;
  border: 1px solid var(--gold);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all var(--transition);
  border-radius: var(--radius);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 168, 76, 0.05);
}

/* ─── SCROLL REVEAL ANIMACE ────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delay pro potomky */
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background var(--transition), box-shadow var(--transition);
}

#navbar.scrolled {
  background: rgba(249, 244, 238, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border-gold), 0 4px 24px rgba(44, 32, 21, 0.06);
}

.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Logo */
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-svg { width: 160px; height: 48px; }

/* Desktop nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  position: relative;
  padding-bottom: 2px;
  transition: color var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-gradient-h);
  transition: width var(--transition);
}

.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { width: 100%; }

/* Nav actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* Audio button */
.audio-btn {
  background: none;
  border: 1px solid var(--border-gold);
  color: var(--gold);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.audio-btn:hover {
  background: rgba(201, 168, 76, 0.1);
  border-color: var(--gold);
}

.audio-btn.active {
  background: rgba(201, 168, 76, 0.12);
  border-color: var(--gold);
}

.audio-btn.active .audio-icon {
  animation: pulse-audio 1.5s ease-in-out infinite;
}

@keyframes pulse-audio {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(1.2); }
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  padding: 4px 0;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 1px;
  background: var(--dark-brown);
  transition: all var(--transition);
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 6px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -6px); }

/* Mobile menu */
.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(249, 244, 238, 0.98);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-gold);
  padding: 2rem;
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  box-shadow: 0 8px 32px rgba(44, 32, 21, 0.1);
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-menu ul { display: flex; flex-direction: column; gap: 0; }

.mobile-link {
  display: block;
  padding: 0.875rem 0;
  font-size: 1rem;
  color: var(--text);
  border-bottom: 1px solid var(--border-gold-s);
  letter-spacing: 0.05em;
  transition: color var(--transition), padding var(--transition);
}

.mobile-link:hover { color: var(--gold); padding-left: 0.5rem; }

.mobile-contact a {
  display: block;
  margin-top: 1rem;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* ═══════════════════════════════════════════════════════
   HERO SEKCE
═══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}

/* Pozadí */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: rgba(249, 244, 238, 0.72);
}

/* Dekorativní rohy */
.hero-corner {
  position: absolute;
  width: 80px;
  height: 80px;
  z-index: 2;
}
.hero-corner--tl { top: calc(var(--nav-h) + 1.5rem); left: 1.5rem; }
.hero-corner--tr { top: calc(var(--nav-h) + 1.5rem); right: 1.5rem; }
.hero-corner--bl { bottom: 1.5rem; left: 1.5rem; }
.hero-corner--br { bottom: 1.5rem; right: 1.5rem; }

/* Plovoucí tulipán */
.hero-tulip-float {
  position: absolute;
  right: 8%;
  top: 20%;
  width: 200px;
  height: 260px;
  z-index: 1;
  animation: float-tulip 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes float-tulip {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33%       { transform: translateY(-15px) rotate(2deg); }
  66%       { transform: translateY(-8px) rotate(-1deg); }
}

/* Hero obsah */
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 2rem;
  max-width: 780px;
}

.hero-pre {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #8B6A25;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 700;
  color: var(--dark-brown);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-title em {
  font-style: italic;
  background: linear-gradient(135deg, #7A6020, #A8882A, #8B6A25);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-family: var(--font-elegant);
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-style: italic;
  color: var(--text);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-note {
  font-size: 0.85rem;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero-note a { color: #8B6A25; font-weight: 500; }
.hero-sep { color: var(--border-gold); }

/* Scroll indikátor */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 3;
  animation: hero-scroll-pulse 2s ease-in-out infinite;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-line-extend 2s ease-in-out infinite;
}

@keyframes scroll-line-extend {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

.hero-scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
}

/* ═══════════════════════════════════════════════════════
   PROČ MOBILNÍ SALON
═══════════════════════════════════════════════════════ */
.proc-section {
  background: var(--white);
  text-align: center;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.pillar-card {
  padding: 2.5rem 2rem;
  border: 1px solid var(--border-gold-s);
  border-radius: var(--radius-md);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold-gradient-h);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold-h);
  border-color: var(--border-gold);
}

.pillar-card:hover::before { transform: scaleX(1); }

.pillar-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.5rem;
}

.pillar-icon svg { width: 100%; height: 100%; }

.pillar-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark-brown);
  margin-bottom: 0.75rem;
}

.pillar-text {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* Quote */
.proc-quote {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  padding: 3rem 2rem;
  position: relative;
}

.quote-marks {
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--gold-light);
  line-height: 0.5;
  margin-bottom: 1rem;
  display: block;
}

.proc-quote p {
  font-family: var(--font-elegant);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.proc-quote cite {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-style: normal;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════
   CENÍK — MENU RITUÁLŮ
═══════════════════════════════════════════════════════ */
.cenik-section {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.cenik-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201, 168, 76, 0.05) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(201, 168, 76, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.cenik-header {
  text-align: center;
  margin-bottom: 3rem;
}

.gold-ornament {
  color: var(--gold-light);
  font-size: 0.9rem;
  letter-spacing: 0.5em;
  margin: 0.5rem 0;
}

.cenik-category-title {
  text-align: center;
  position: relative;
  margin-bottom: 1.5rem;
}

.cenik-category-title span {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-light);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  position: relative;
  padding: 0 2rem;
  background: var(--cream);
}

.cenik-category-title::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border-gold);
  transform: translateY(-50%);
}

.cenik-category-note {
  text-align: center;
  font-family: var(--font-elegant);
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

/* Rituály grid */
.ritualy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-bottom: 3rem;
}

.ritual-card {
  background: var(--white);
  border: 1px solid var(--border-gold-s);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.ritual-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold-h);
  border-color: var(--border-gold);
}

.ritual-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-gradient);
  color: var(--dark-brown);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 0 0 6px 6px;
  white-space: nowrap;
}

.ritual-emoji {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ritual-emoji svg {
  width: 100%;
  height: 100%;
}

.ritual-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark-brown);
}

.ritual-desc {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
  flex: 1;
}

.ritual-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.ritual-time {
  font-size: 0.8rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

.ritual-divider { color: var(--border-gold); }

.ritual-price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--gold);
}

.btn-ritual {
  margin-top: auto;
  display: inline-block;
  padding: 10px 28px;
  border: 1px solid var(--border-gold);
  color: var(--text-light);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all var(--transition);
  border-radius: var(--radius);
}

.btn-ritual:hover {
  background: var(--gold-gradient);
  color: var(--dark-brown);
  border-color: transparent;
}

/* Doplňkové služby */
.doplnky-grid {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.doplnek-item {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--border-gold-s);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

.doplnek-item:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-gold);
}

.doplnek-dot { color: var(--gold); font-size: 0.7rem; }

.doplnek-name {
  font-size: 0.95rem;
  color: var(--text);
}

.doplnek-brand {
  font-size: 0.72rem;
  color: var(--text-light);
  letter-spacing: 0.08em;
  padding: 2px 8px;
  border: 1px solid var(--border-gold-s);
  border-radius: 20px;
}

.doplnek-price {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
}

/* Poznámka ceník */
.cenik-note {
  max-width: 600px;
  margin: 3rem auto 0;
  text-align: center;
  padding: 1.5rem 2rem;
  border: 1px solid var(--border-gold-s);
  border-radius: var(--radius-md);
  background: rgba(201, 168, 76, 0.04);
}

.cenik-note p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
}

.cenik-note p + p { margin-top: 0.5rem; }

/* ═══════════════════════════════════════════════════════
   KROKY — JAK PROBÍHÁ RITUÁL
═══════════════════════════════════════════════════════ */
.steps-section {
  background: var(--cream-dark);
  text-align: center;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 1rem;
  margin-top: 3rem;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 0 1rem;
}

.step-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: #8B6A25;
  line-height: 1;
}

.step-icon {
  width: 48px;
  height: 48px;
}

.step-icon svg { width: 100%; height: 100%; }

.step-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark-brown);
}

.step-text {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.6;
}

.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 3.5rem;
  color: var(--gold-light);
  font-size: 1.2rem;
}

.step-connector::after {
  content: '→';
  font-size: 1.2rem;
  color: var(--gold-light);
}

/* ═══════════════════════════════════════════════════════
   O VERONICE
═══════════════════════════════════════════════════════ */
.about-section {
  background: var(--white);
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* Foto */
.about-image-wrap {
  position: relative;
}

.about-image-frame {
  position: absolute;
  inset: -12px;
  pointer-events: none;
  z-index: 0;
}

.about-frame-line {
  position: absolute;
  border: 1px solid var(--border-gold);
}

.about-frame-line--outer { inset: 0; }
.about-frame-line--inner { inset: 8px; opacity: 0.5; }

.about-img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  object-position: center top;
  display: block;
  position: relative;
  z-index: 1;
  filter: sepia(5%) contrast(1.03);
}

.about-badge {
  position: absolute;
  bottom: 2rem;
  right: -1.5rem;
  z-index: 2;
  background: var(--dark-brown);
  color: var(--gold-light);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  min-width: 120px;
  text-align: center;
}

.about-badge svg { width: 20px; height: 20px; margin-bottom: 0.25rem; }
.about-badge span { font-size: 0.9rem; font-weight: 500; letter-spacing: 0.05em; }
.about-badge small { font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.7; }

/* Text */
.about-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 600;
  color: var(--dark-brown);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.about-title em {
  font-style: italic;
  color: var(--gold);
}

.about-intro {
  font-family: var(--font-elegant);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  border-left: 2px solid var(--gold-light);
  padding-left: 1.25rem;
}

.about-body {
  font-size: 0.93rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* Badges */
.about-badges {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 1.75rem 0;
}

.about-badge-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--text);
}

.badge-check {
  color: var(--gold-dark);
  font-size: 0.7rem;
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════
   KARTA VĚRNOSTI
═══════════════════════════════════════════════════════ */
.loyalty-section {
  background: var(--cream-dark);
  text-align: center;
}

.loyalty-card {
  max-width: 780px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border-gold-s);
  border-radius: var(--radius-md);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-gold);
}

.loyalty-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.loyalty-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  position: relative;
}

.loyalty-cell svg { width: 36px; height: 48px; }

.loyalty-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  color: var(--text-light);
}

.loyalty-tag {
  position: absolute;
  bottom: -0.25rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--dark-brown);
  background: var(--gold-gradient);
  padding: 2px 6px;
  border-radius: 20px;
  white-space: nowrap;
}

.loyalty-tag--reward {
  background: var(--dark-brown);
  color: var(--gold-light);
}

.loyalty-rewards {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border-gold-s);
  border-bottom: 1px solid var(--border-gold-s);
  margin-bottom: 2rem;
}

.loyalty-reward-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  text-align: left;
}

.loyalty-reward-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  flex-shrink: 0;
}

.loyalty-reward-item strong {
  display: block;
  font-size: 0.9rem;
  color: var(--dark-brown);
  margin-bottom: 0.25rem;
}

.loyalty-reward-item p {
  font-size: 0.82rem;
  color: var(--text-light);
}

.loyalty-reward-divider {
  width: 1px;
  height: 60px;
  background: var(--border-gold);
  flex-shrink: 0;
}

.loyalty-btn { font-size: 0.78rem; }

/* ═══════════════════════════════════════════════════════
   GALERIE
═══════════════════════════════════════════════════════ */
.gallery-section {
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}

.gallery-item { overflow: hidden; border-radius: var(--radius); }

.gallery-btn {
  width: 100%;
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: block;
  background: var(--cream-dark);
  border: none;
  padding: 0;
}

.gallery-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--cream-dark) 0%, var(--cream-deeper) 100%);
}

.gallery-placeholder svg { width: 40px; height: 54px; }

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  position: absolute;
  inset: 0;
}

.gallery-btn:hover .gallery-img { transform: scale(1.05); }

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(to top, rgba(44, 32, 21, 0.7), transparent);
  transform: translateY(100%);
  transition: transform var(--transition);
}

.gallery-btn:hover .gallery-overlay { transform: translateY(0); }
.gallery-btn:focus-visible .gallery-overlay { transform: translateY(0); }

.gallery-label {
  color: var(--cream);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(20, 14, 8, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox[hidden] { display: none; }

.lightbox-content {
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.lightbox-image {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox-caption {
  color: var(--gold-light);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(44, 32, 21, 0.7);
  color: var(--gold-light);
  border: 1px solid var(--border-gold);
  cursor: pointer;
  transition: all var(--transition);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  width: 48px;
  height: 48px;
}

.lightbox-close { top: 1.5rem; right: 1.5rem; }
.lightbox-prev  { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 1.5rem; top: 50%; transform: translateY(-50%); }

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--gold);
  color: var(--dark-brown);
}

/* ═══════════════════════════════════════════════════════
   KONTAKT
═══════════════════════════════════════════════════════ */
.contact-section {
  background: var(--cream);
  text-align: center;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
  text-align: left;
}

/* Formulář */
.contact-form-wrap {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-gold-s);
}

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text);
  text-transform: uppercase;
}

.form-group label span { color: var(--gold); }

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1px solid var(--cream-deeper);
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--text);
  font-size: 0.92rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
  background: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); opacity: 0.6; }

.form-group textarea { resize: vertical; min-height: 100px; }

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.form-checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  min-width: 16px;
  margin-top: 2px;
  accent-color: var(--gold);
  cursor: pointer;
}

.form-checkbox label {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.5;
  cursor: pointer;
}

.link-gold { color: var(--gold); }
.link-gold:hover { text-decoration: underline; }

.form-message {
  padding: 0.875rem 1rem;
  border-radius: var(--radius);
  font-size: 0.88rem;
  line-height: 1.5;
}

.form-message.success {
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid var(--border-gold);
  color: var(--dark-brown);
}

.form-message.error {
  background: rgba(200, 60, 60, 0.08);
  border: 1px solid rgba(200, 60, 60, 0.3);
  color: #8B2020;
}

.btn-submit {
  width: 100%;
  padding: 16px;
  font-size: 0.85rem;
}

/* Kontaktní info */
.contact-info-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark-brown);
}

.contact-list { display: flex; flex-direction: column; gap: 1rem; }

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg { width: 16px; height: 16px; }

.contact-list small {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.2rem;
}

.contact-value {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 400;
}

a.contact-value:hover { color: var(--gold); }

/* CTA tlačítka */
.contact-ctas {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
}

@media (max-width: 600px) {
  .contact-ctas {
    flex-direction: column;
  }
  .contact-ctas .btn-whatsapp,
  .contact-ctas .btn-instagram {
    width: 100%;
    justify-content: center;
  }
}

.btn-whatsapp,
.btn-instagram {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-whatsapp svg,
.btn-instagram svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn-whatsapp {
  background: var(--gold-gradient);
  color: var(--dark-brown);
  padding: 13px 24px;
  border: none;
}
.btn-whatsapp::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  opacity: 0;
  transition: opacity var(--transition);
}
.btn-whatsapp:hover { box-shadow: var(--shadow-gold-h); transform: translateY(-2px); color: var(--dark-brown); }
.btn-whatsapp:hover::before { opacity: 1; }

.btn-instagram {
  background: transparent;
  color: var(--text-light);
  padding: 12px 24px;
  border: 1px solid var(--border-gold);
}
.btn-instagram:hover { border-color: var(--gold); color: var(--gold); background: rgba(201, 168, 76, 0.05); transform: translateY(-2px); }

/* Mapa */
.contact-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-gold-s);
}

/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
.footer {
  background: var(--dark-brown);
  color: var(--gold-light);
  position: relative;
}

.footer-top { display: block; margin-bottom: -2px; }
.footer-top svg { display: block; }

.footer-content {
  padding: 3rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.footer-logo svg { width: 160px; height: 48px; }

.footer-motto {
  font-family: var(--font-elegant);
  font-style: italic;
  font-size: 1rem;
  color: #C4A97D;
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav a {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #C4A97D;
  transition: color var(--transition);
}

.footer-nav a:hover { color: var(--gold); }
.footer-nav span { color: rgba(139, 115, 85, 0.4); }

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C4A97D;
  transition: all var(--transition);
}

.footer-social a svg { width: 16px; height: 16px; }

.footer-social a:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
}

.footer-bottom { border-top: 1px solid rgba(201, 168, 76, 0.1); padding-top: 1.5rem; width: 100%; }

.footer-bottom p {
  font-size: 0.78rem;
  color: #A88A68;
  text-align: center;
}

.footer-love { margin-top: 0.3rem; }
.footer-credit { margin-top: 1rem; font-size: 0.72rem; opacity: 0.6; }
.footer-credit a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }
.footer-credit a:hover { opacity: 1; color: var(--gold); }

/* ═══════════════════════════════════════════════════════
   MODÁLNÍ OKNO — Klientská karta
═══════════════════════════════════════════════════════ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 2rem 1rem;
  overflow-y: auto;
}

.modal[hidden] { display: none; }

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 14, 8, 0.7);
  backdrop-filter: blur(4px);
  z-index: -1;
}

.modal-content {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-gold-s);
  padding: 3rem 2.5rem;
  width: 100%;
  max-width: 720px;
  box-shadow: 0 24px 60px rgba(20, 14, 8, 0.3);
  margin: auto;
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border-gold-s);
  border-radius: 50%;
  color: var(--text-light);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  background: none;
  cursor: pointer;
}

.modal-close:hover { border-color: var(--gold); color: var(--gold); }

.modal-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-gold-s);
}

.modal-header h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--dark-brown);
  margin-bottom: 0.5rem;
}

.modal-header p {
  font-size: 0.88rem;
  color: var(--text-light);
}

/* Klientská karta form */
.klientska-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.klientska-form fieldset {
  border: 1px solid var(--border-gold-s);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.klientska-form legend {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark-brown);
  padding: 0 0.5rem;
  letter-spacing: 0.05em;
}

.fieldset-hint {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.fieldset-warning { border-color: rgba(201, 100, 50, 0.2); }
.fieldset-warning legend { color: #8B4020; }

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
}

.cb-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text);
  cursor: pointer;
  transition: color var(--transition);
}

.cb-label:hover { color: var(--gold); }

.cb-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  min-width: 16px;
  accent-color: var(--gold);
  cursor: pointer;
}

.cb-warn input { accent-color: #C86432; }
.cb-critical input { accent-color: #C83232; }
.cb-critical { color: #8B2020; font-weight: 500; }

.contra-alert {
  background: rgba(200, 50, 50, 0.05);
  border: 1px solid rgba(200, 50, 50, 0.2);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.contra-alert > p {
  font-size: 0.82rem;
  font-weight: 600;
  color: #8B2020;
  margin-bottom: 0.25rem;
}

.kk-declaration {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
  background: var(--cream);
  padding: 1rem;
  border-radius: var(--radius);
  border-left: 3px solid var(--gold-light);
}

.cb-gdpr {
  font-weight: 500;
}

.cb-gdpr span { color: var(--gold); }

/* Digitální podpis */
.signature-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.signature-wrap label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text);
  text-transform: uppercase;
}

#signature-canvas {
  width: 100%;
  height: 120px;
  border: 1px solid var(--cream-deeper);
  border-radius: var(--radius);
  background: var(--cream);
  cursor: crosshair;
  touch-action: none;
  display: block;
}

.signature-actions { display: flex; gap: 0.5rem; }

.btn-small {
  padding: 6px 14px;
  font-size: 0.75rem;
  border: 1px solid var(--border-gold-s);
  color: var(--text-light);
  border-radius: var(--radius);
  background: none;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-small:hover { border-color: var(--gold); color: var(--gold); }

.input-readonly {
  background: var(--cream-dark) !important;
  color: var(--text-light) !important;
  cursor: default;
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 1024px)
═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {

  .pillars-grid { gap: 1.25rem; }
  .ritualy-grid { gap: 1.25rem; }
  .about-layout { gap: 3rem; }
  .steps-grid { gap: 0.5rem; }

  .contact-layout { gap: 2.5rem; }

  .about-badge { right: 0; }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — MOBILNÍ (≤ 768px)
═══════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  :root { --nav-h: 60px; }

  section { padding: 4rem 0; }

  .container { padding: 0 1.25rem; }

  /* Navbar */
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .logo-svg { width: 130px; height: 40px; }

  /* Hero */
  .hero-title { font-size: clamp(2rem, 10vw, 3rem); }
  .hero-subtitle { font-size: 1rem; }
  .hero-actions { flex-direction: column; gap: 0.75rem; width: 100%; }
  .hero-actions .btn-gold,
  .hero-actions .btn-outline { width: 100%; text-align: center; justify-content: center; }
  .hero-tulip-float { display: none; }
  .hero-corner { width: 50px; height: 50px; }

  /* Pilíře */
  .pillars-grid { grid-template-columns: 1fr; }
  .proc-quote p { font-size: 1.05rem; }

  /* Ceník */
  .ritualy-grid { grid-template-columns: 1fr; }
  .doplnek-item { grid-template-columns: auto 1fr auto; gap: 0.75rem; }
  .doplnek-brand { display: none; }

  /* Kroky */
  .steps-grid { grid-template-columns: 1fr; }
  .step-connector { display: none; }
  .step { flex-direction: row; text-align: left; padding: 1rem; background: var(--white); border-radius: var(--radius-md); border: 1px solid var(--border-gold-s); }
  .step-number { font-size: 1.8rem; min-width: 2.5rem; }

  /* O mně */
  .about-layout { grid-template-columns: 1fr; gap: 2rem; }
  .about-img { height: 350px; }
  .about-badge { right: 1rem; bottom: 1rem; }

  /* Loyality */
  .loyalty-grid { grid-template-columns: repeat(5, 1fr); gap: 0.75rem; }
  .loyalty-cell svg { width: 28px; height: 38px; }
  .loyalty-rewards { flex-direction: column; gap: 1rem; }
  .loyalty-reward-divider { width: 60px; height: 1px; }

  /* Galerie */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }

  /* Kontakt */
  .contact-layout { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 1.5rem; }

  /* Lightbox */
  .lightbox { padding: 1rem; }
  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }

  /* Modal */
  .modal-content { padding: 2rem 1.25rem; }
  .checkbox-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-nav { gap: 0.75rem; }
}

/* ═══════════════════════════════════════════════════════
   MALÉ MOBILY (≤ 380px)
═══════════════════════════════════════════════════════ */
@media (max-width: 380px) {
  .hero-title { font-size: 1.9rem; }
  .loyalty-grid { gap: 0.5rem; }
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════
   PRINT
═══════════════════════════════════════════════════════ */
@media print {
  #navbar, #loader, .audio-btn, .hero-scroll,
  .contact-ctas, .contact-map, footer { display: none !important; }
  body { background: white; color: #000; }
  .hero { min-height: auto; padding: 2rem 0; }
}

/* ═══════════════════════════════════════════════════════
   ACCESSIBILITY — focus styles
═══════════════════════════════════════════════════════ */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
