/* ── Custom properties ── */
:root {
  --color-dark-primary:   #3D2716;
  --color-dark-secondary: #2C1810;
  --color-dark-card:      #4A3020;
  --color-gold:           #C9A96E;
  --color-gold-dim:       #BA8767;
  --color-gold-line:      #7A5F35;
  --color-cream:          #F4ECDA;
  --color-sand:           #DBC7B8;
  --color-olive:          #7D7055;
  --color-terra:          #8A5E3F;

  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'DM Sans', sans-serif;

  --text-hero:    clamp(3.5rem, 8vw, 7rem);
  --text-h2:      clamp(2rem, 4vw, 3.5rem);
  --text-h3:      clamp(1.25rem, 2vw, 1.75rem);
  --text-body:    1rem;
  --text-caption: 0.875rem;

}

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

html { scroll-behavior: smooth; }

body {
  background-color: var(--color-dark-primary);
  color: var(--color-sand);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: var(--text-body);
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Particle canvas ── */
#particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ── Texture utilities ── */
.texture-dark {
  position: relative;
  background-color: var(--color-dark-primary);
  background-image: radial-gradient(
    circle at 50% 45%,
    rgba(100, 60, 20, 0.50) 0%,
    rgba(61, 39, 22, 0.20) 35%,
    rgba(10, 3, 0, 0.85) 100%
  );
}
.texture-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.38;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='250' height='250'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.62' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='250' height='250' filter='url(%23grain)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 120px 120px;
}
.texture-dark::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(
    ellipse at center,
    transparent 30%,
    rgba(10, 3, 0, 0.75) 100%
  );
}
.texture-dark > * {
  position: relative;
  z-index: 1;
}
.texture-light {
  position: relative;
  background-color: var(--color-cream);
  background-image: radial-gradient(
    ellipse at 50% 40%,
    rgba(255, 253, 245, 0.95) 0%,
    rgba(240, 232, 213, 0.60) 50%,
    rgba(200, 175, 140, 0.40) 100%
  );
}
.texture-light::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.08;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='250' height='250'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.62' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='250' height='250' filter='url(%23grain)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 150px 150px;
}
.texture-light > * {
  position: relative;
  z-index: 1;
}

/* ── Orchid images ── */
.orchid-img {
  pointer-events: none;
  position: absolute;
  user-select: none;
  mix-blend-mode: normal;
}

/* ── Gold line ── */
.gold-line {
  width: 60px;
  height: 1px;
  background: var(--color-gold);
}
.gold-line--center {
  margin: 2rem auto 0;
}
.gold-line--footer {
  width: 80px;
  margin: 1.5rem auto;
}

/* ── Eyebrow ── */
.eyebrow {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: var(--text-caption);
  letter-spacing: 0.18em;
  color: var(--color-cream);
  margin-bottom: 1rem;
}

/* ── Section header ── */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

/* ── Section title ── */
.section-title {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  font-weight: 300;
  font-style: italic;
  color: var(--color-gold);
  line-height: 1.1;
}

/* ── Outline button ── */
.btn-outline {
  display: inline-block;
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--text-caption);
  letter-spacing: 0.09em;
  padding: 14px 36px;
  transition: background 0.3s, color 0.3s;
  cursor: pointer;
  text-align: center;
}
.btn-outline:hover,
.btn-outline:focus-visible {
  background: var(--color-gold);
  color: var(--color-dark-primary);
  outline: none;
}

/* ── Scroll reveal ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1), transform 0.9s cubic-bezier(0.16,1,0.3,1);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ════════════════════════════════════
   NAVBAR
════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: 68px;
  background: transparent;
  border-bottom: none;
  transition: background 0.4s ease,
              backdrop-filter 0.4s ease,
              border-color 0.4s ease;
}
.navbar.scrolled {
  background: rgba(26, 13, 6, 0.90);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(122, 95, 53, 0.25);
}
.navbar.scrolled .nav-logo {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.nav-logo-wrap {
  flex: 0 0 auto;
}
.nav-logo {
  height: 56px;
  width: auto;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
  display: block;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex: 0 0 auto;
}
.nav-menu a {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: #F4ECDA;
  text-decoration: none;
  transition: color 0.3s ease;
}
.nav-menu a:hover {
  color: #C9A96E;
}
.nav-cta {
  border: 1px solid #C9A96E !important;
  color: #C9A96E !important;
  padding: 0.5rem 1.25rem !important;
  transition: all 0.3s ease !important;
}
.nav-cta:hover {
  background: #C9A96E !important;
  color: #3D2716 !important;
}
.nav-hamburger { display: none; }

/* ════════════════════════════════════
   HERO
════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30,15,5,0.62);
  z-index: 1;
}
.hero-frame {
  position: absolute;
  top: 76px;
  left: 32px;
  right: 32px;
  bottom: 32px;
  border: 1px solid var(--color-gold-line);
  z-index: 2;
  pointer-events: none;
}
.hero-orchid {
  position: absolute;
  bottom: -120px;
  left: -30px;
  width: 380px;
  opacity: 1.0;
  z-index: 999;
  pointer-events: none;
  transform: rotate(5deg) scaleX(-1);
}
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 1.5rem;
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: var(--text-caption);
  letter-spacing: 0.18em;
  color: var(--color-cream);
  margin-bottom: 1.5rem;
}
.hero-logo {
  width: 320px;
  max-width: 80%;
  margin: 0 auto 1rem;
  display: block;
  position: relative;
  z-index: 4;
  filter: drop-shadow(0 0 25px rgba(201,169,110,0.18));
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--color-gold);
  line-height: 1.0;
  letter-spacing: -0.02em;
  white-space: nowrap;
  margin-top: 1.2rem;
  margin-bottom: 1rem;
}
.hero-subline {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--color-sand);
  font-size: 1.1rem;
  margin-bottom: 0;
}
.hero-cta { margin-top: 2.5rem; }

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: var(--color-gold);
  opacity: 0.7;
  animation: chevron-bounce 2s ease-in-out infinite;
}
@keyframes chevron-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ════════════════════════════════════
   INTRO
════════════════════════════════════ */
.section-intro {
  position: relative;
  padding: 120px 2rem 9rem;
  overflow: hidden;
  z-index: 1;
  background-color: #F4ECDA;
  background-image: radial-gradient(
    ellipse 85% 70% at 50% 40%,
    rgba(255, 252, 242, 0.95) 0%,
    rgba(244, 236, 218, 0.80) 45%,
    rgba(210, 185, 148, 0.55) 100%
  );
}
.section-intro::before {
  opacity: 0.07;
}
.intro-orchid {
  top: -30px;
  right: -40px;
  width: 300px;
  opacity: 0.18;
  transform: rotate(-10deg);
  z-index: 2;
}
.intro-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 65%;
  max-width: 480px;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
  display: block;
  filter: grayscale(100%) brightness(0.6);
}
.intro-eyebrow {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8A5E3F;
  text-align: center;
  margin-bottom: 1.5rem;
}
.intro-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.quote-mark { position: relative; z-index: 1; }
.intro-quote { position: relative; z-index: 1; }
.intro-body { position: relative; z-index: 1; }
.section-intro .gold-line { position: relative; z-index: 1; }
.quote-mark {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-style: italic;
  font-size: 6rem;
  color: var(--color-gold);
  line-height: 0.5;
  margin-bottom: 1.5rem;
}
.intro-quote {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: 1.6rem;
  color: var(--color-cream);
  line-height: 1.8;
  border: none;
}
.intro-body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--color-dark-primary);
  line-height: 1.8;
  margin-top: 1.5rem;
}
.section-intro .gold-line { margin: 2.5rem auto; }

/* Light section overrides */
.texture-light .intro-quote {
  color: var(--color-terra);
}
.texture-light .quote-mark {
  color: var(--color-gold);
}
.section-intro .intro-quote {
  color: #2C1810;
}
.section-intro .intro-body {
  color: #3D2716;
}

/* ════════════════════════════════════
   SERVICES
════════════════════════════════════ */
.section-services {
  position: relative;
  padding: 7rem 2rem;
  overflow: hidden;
}
.services-orchid {
  bottom: -20px;
  right: -30px;
  width: 340px;
  opacity: 0.09;
  z-index: 2;
}
.services-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0;
}

/* Service card */
.service-card {
  background: var(--color-dark-card);
  border: 1px solid var(--color-gold-line);
  border-radius: 3px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16,1,0.3,1);
}
.service-card:hover {
  border-color: var(--color-gold);
  box-shadow: 0 0 25px rgba(201,169,110,0.12), 0 20px 50px rgba(0,0,0,0.35);
  transform: translateY(-5px);
}
.card-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.service-card:hover .card-image img { transform: scale(1.04); }

.card-body { padding: 1.8rem 1.8rem 2rem; }
.card-body h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.1rem;
  color: var(--color-gold);
  margin-bottom: 0.8rem;
  line-height: 1.4;
}
.card-line {
  width: 30px;
  height: 1px;
  background: var(--color-gold-line);
  margin: 0.8rem 0 1rem;
}
.card-body p {
  font-family: var(--font-body);
  font-weight: 300;
  color: #DBC7B8;
  font-size: 0.85rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}
.card-price {
  font-family: var(--font-body);
  font-weight: 500;
  color: #F4ECDA;
  font-size: 0.88rem;
  line-height: 1.9;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(122, 95, 53, 0.20);
  letter-spacing: 0.02em;
  margin-top: 0;
}

/* ════════════════════════════════════
   LOYALTY
════════════════════════════════════ */
.section-loyalty {
  position: relative;
  padding: 7rem 2rem;
  overflow: hidden;
  background-color: #3D2716;
  background-image: radial-gradient(
    circle at 55% 40%,
    rgba(130, 75, 20, 0.60) 0%,
    rgba(61, 39, 22, 0.25) 28%,
    rgba(8, 2, 0, 0.88) 65%,
    rgba(4, 1, 0, 0.96) 100%
  );
}
.section-loyalty::before {
  opacity: 0.35;
}
.loyalty-frame {
  position: absolute;
  inset: 2rem;
  border: 1px solid var(--color-gold-line);
  pointer-events: none;
  z-index: 0;
}
.loyalty-orchid {
  top: 20px;
  right: 40px;
  width: 280px;
  opacity: 0.28;
  transform: rotate(-5deg);
  z-index: 2;
}
.loyalty-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.loyalty-body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--color-cream);
  line-height: 1.9;
  margin-top: 2rem;
}
.loyalty-box {
  border: 1px solid var(--color-gold-line);
  padding: 2rem;
  margin: 2rem auto 0;
  max-width: 480px;
}
.loyalty-box p {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--color-cream);
  font-size: 1.2rem;
  line-height: 1.7;
}

/* ════════════════════════════════════
   CONTACT
════════════════════════════════════ */
.section-contact {
  position: relative;
  padding: 9rem 2rem;
  overflow: hidden;
  background-color: #5C3A1E;
  background-image: radial-gradient(
    circle at 50% 45%,
    rgba(160, 100, 40, 0.55) 0%,
    rgba(92, 58, 30, 0.25) 35%,
    rgba(25, 10, 2, 0.80) 70%,
    rgba(12, 4, 0, 0.90) 100%
  );
}
.section-contact::before {
  opacity: 0.25;
}
.contact-orchid {
  bottom: -20px;
  left: -20px;
  width: 240px;
  opacity: 0.18;
  transform: rotate(10deg);
  z-index: 2;
}
.footer-orchid {
  bottom: 0;
  right: 0;
  width: 280px;
  opacity: 0.85;
  z-index: 2;
  transform: rotate(0deg);
}
.orchid-divider {
  position: relative;
  width: 100%;
  height: 0;
  overflow: visible;
  pointer-events: none;
  background: transparent !important;
}
.orchid-divider-img {
  position: absolute;
  left: -10px;
  top: -130px;
  width: 260px;
  opacity: 1.0;
  z-index: 10;
  pointer-events: none;
  transform: rotate(-10deg);
}
.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.contact-label {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: #C9A96E;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
  margin-top: 1.2rem;
}
.contact-value {
  display: block;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.95rem;
  color: #F4ECDA;
  line-height: 1.7;
  transition: color 0.2s;
}
a.contact-value:hover { color: var(--color-gold); }

.hours-title {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #C9A96E;
  margin-bottom: 1rem;
  margin-top: 1.2rem;
}
.hours-table {
  border-collapse: collapse;
  width: 100%;
  max-width: 380px;
}
.hours-table tr {
  display: flex;
  justify-content: space-between;
  max-width: 260px;
  padding: 0.25rem 0;
  border-bottom: 1px solid rgba(122, 95, 53, 0.12);
}
.hours-table td {
  font-family: var(--font-body);
  font-weight: 300;
  color: #DBC7B8;
  font-size: 0.9rem;
  vertical-align: top;
}
.hours-table td:first-child {
  color: #DBC7B8;
  padding-right: 1.5rem;
  white-space: nowrap;
}

.contact-ctas {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
  max-width: 260px;
}
.contact-ctas .btn-outline { width: 100%; }

.contact-map iframe {
  width: 100%;
  height: 400px;
  border: 1px solid var(--color-gold-line);
  border-radius: 2px;
  display: block;
}

/* ════════════════════════════════════
   IMPRESSUM
════════════════════════════════════ */
.section-impressum {
  position: relative;
  padding: 5rem 2rem;
  border-top: 1px solid rgba(122, 95, 53, 0.25);
  overflow: hidden;
  background-color: #3D2716;
  background-image: radial-gradient(
    ellipse 60% 40% at 50% 20%,
    rgba(90, 52, 18, 0.40) 0%,
    rgba(61, 39, 22, 0.15) 45%,
    rgba(10, 4, 0, 0.88) 100%
  );
}
.section-impressum::before {
  opacity: 0.28;
}
.impressum-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.impressum-eyebrow {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: var(--text-caption);
  letter-spacing: 0.1em;
  color: var(--color-gold-dim);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.impressum-content {
  text-align: left;
  font-family: var(--font-body);
  font-weight: 300;
  color: #DBC7B8;
  line-height: 1.9;
  font-size: 0.88rem;
  margin-top: 1.5rem;
}
.impressum-subheading {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--color-gold);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 2.5rem;
  margin-bottom: 0.5rem;
}
.impressum-placeholder {
  color: #BA8767;
  font-style: italic;
}
.footer-impressum-link {
  margin-top: 1rem;
}
.footer-impressum-link a {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.8rem;
  color: var(--color-olive);
  transition: color 0.2s;
}
.footer-impressum-link a:hover {
  color: var(--color-gold);
}

/* ════════════════════════════════════
   FOOTER
════════════════════════════════════ */
.footer {
  overflow: hidden;
  border-top: 1px solid rgba(122, 95, 53, 0.18);
  padding: 4rem 2rem;
  background-color: #0D0804;
  background-image: none;
}
.footer::before {
  opacity: 0.10;
}
.footer-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.footer-logo {
  width: 220px;
  max-width: 70%;
  margin: 0 auto 1.5rem;
  display: block;
  filter: drop-shadow(0 0 15px rgba(201,169,110,0.15));
}
.footer-address {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: var(--text-caption);
  color: var(--color-sand);
  margin-bottom: 1.5rem;
  text-align: center;
}
.footer-disclaimer {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.8rem;
  color: var(--color-olive);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  text-align: center;
}
.footer-copy {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.8rem;
  color: var(--color-olive);
  text-align: center;
  display: block;
  width: 100%;
  margin: 0 auto;
}

/* ════════════════════════════════════
   RESPONSIVE — TABLET (768–1024)
════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .nav-links { gap: 1.5rem; }
}

/* ════════════════════════════════════
   RESPONSIVE — MOBILE (< 768)
════════════════════════════════════ */
@media (max-width: 768px) {
  .section-intro,
  .section-services,
  .section-loyalty,
  .section-contact { padding: 5rem 1.5rem; }

  /* Navbar mobile */
  .navbar { padding: 0 1.25rem; height: 60px; }
  .nav-logo { height: 38px; }

  /* Hamburger button */
  .nav-hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1001;
  }
  .nav-hamburger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: #F4ECDA;
    transition: transform 0.3s, opacity 0.3s;
  }
  .nav-hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
  .nav-hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  /* Mobile nav dropdown */
  .nav-menu {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 0.5rem 0 1.5rem;
    background: rgba(20, 10, 4, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(122, 95, 53, 0.3);
    z-index: 1000;
  }
  .nav-menu.is-open { display: flex; }
  .nav-menu a {
    font-size: 0.9rem;
    padding: 0.9rem 2rem;
    width: 100%;
    text-align: center;
    letter-spacing: 0.12em;
    border-bottom: 1px solid rgba(122, 95, 53, 0.12);
  }
  .nav-menu a:last-child { border-bottom: none; }
  .nav-cta {
    margin-top: 0.75rem;
    padding: 0.5rem 1.5rem !important;
    width: auto !important;
    border-bottom: none !important;
  }

  /* Hero mobile */
  .hero-headline {
    white-space: normal;
    font-size: clamp(1.5rem, 6.5vw, 2.2rem);
  }
  .hero-frame { display: none; }
  .hero-orchid { width: 160px; bottom: -24px; left: -18px; }

  /* Orchid divider mobile */
  .orchid-divider-img {
    width: 110px;
    top: -80px;
    left: -10px;
  }

  /* Footer orchid mobile */
  .footer-orchid { width: 110px; }

  /* Intro orchid */
  .intro-orchid { width: 168px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; padding: 0; }
  .services-orchid { width: 180px; }

  /* Loyalty */
  .loyalty-frame { inset: 1rem; }
  .loyalty-orchid { width: 156px; right: -10px; }

  /* Contact */
  .contact-orchid { width: 144px; }
  .contact-ctas { max-width: 100%; }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { transition: none; }
  .scroll-indicator { animation: none; }
}

/* ── Effect 2: Bonuskarte card flip ── */
.card-scene {
  width: 220px;
  height: 360px;
  perspective: 1000px;
  margin: 2rem auto 1.5rem;
}
.card-flipper {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}
.card-flipper.is-flipped {
  transform: rotateY(180deg);
}
.card-face {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 20px 60px rgba(0,0,0,0.5),
    0 0 30px rgba(201,169,110,0.10);
}
.card-back {
  transform: rotateY(180deg);
}
.card-face img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.card-hint {
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 0.85rem;
  color: #DBC7B8;
  max-width: 320px;
  margin: 0 auto;
  line-height: 1.7;
  font-style: italic;
}
.bonus-details {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin: 2rem auto 0;
  max-width: 400px;
  padding: 1.5rem 2rem;
  border: 1px solid rgba(122, 95, 53, 0.30);
  border-radius: 2px;
}
.bonus-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.bonus-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: #C9A96E;
  line-height: 1;
}
.bonus-label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #DBC7B8;
}
.bonus-divider {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: #7A5F35;
  opacity: 0.6;
}

/* ── Effect 3: Candle cursor glow ── */
.candle-glow {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(201, 169, 110, 0.18) 0%,
    rgba(186, 135, 103, 0.10) 35%,
    rgba(138, 94, 63, 0.05) 60%,
    transparent 75%
  );
  transform: translate(-50%, -50%);
  transition: opacity 0.4s ease;
  mix-blend-mode: screen;
  opacity: 0;
}

/* ── Effect 4: Stagger reveal ── */
.stagger-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.stagger-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}
