/* ---------- LOCAL FONTS ---------- */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('fonts/inter-normal-300.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/inter-normal-400.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/inter-normal-500.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/inter-normal-600.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/inter-normal-700.woff2') format('woff2');
}

@font-face {
  font-family: 'Playfair Display';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/playfair-display-italic-400.woff2') format('woff2');
}

@font-face {
  font-family: 'Playfair Display';
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/playfair-display-italic-600.woff2') format('woff2');
}

@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/playfair-display-normal-400.woff2') format('woff2');
}

@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/playfair-display-normal-600.woff2') format('woff2');
}

@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/playfair-display-normal-700.woff2') format('woff2');
}

/* ============================================================
   NEXTLEVEL DEKO WARENDORF â€“ Static Site CSS
   ============================================================ */

/* ---------- CSS VARIABLES ---------- */
:root {
  --emerald:    #0a3d2f;
  --emerald-dk: #083025;
  --champagne:  #d4af87;
  --ivory:      #f5f0e8;
  --rosegold:   #e8b4a2;
  --softblack:  #1a1a1a;

  --font-sans:  'Inter', system-ui, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;

  --transition-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-ease:   cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  font-family: var(--font-sans);
  background-color: var(--ivory);
  color: var(--softblack);
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex-grow: 1; }

a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
img { display: block; max-width: 100%; }
address { font-style: normal; }

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--ivory); }
::-webkit-scrollbar-thumb { background: var(--champagne); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--rosegold); }

/* Utility */
.font-light { font-weight: 300; }
.hide-sm { display: none; }
@media (min-width: 768px) { .hide-sm { display: inline; } }

/* ---------- SCROLL REVEAL ANIMATION ---------- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s var(--transition-ease), transform 0.7s var(--transition-ease);
}
.animate-on-scroll.in-view {
  opacity: 1;
  transform: translateY(0);
}
.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }
.animate-on-scroll:nth-child(5) { transition-delay: 0.4s; }
.animate-on-scroll:nth-child(6) { transition-delay: 0.5s; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
  padding: 2rem 0;
  transition: background 0.5s ease, padding 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(212, 175, 135, 0.2);
  padding: 1rem 0;
}

.navbar__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 50;
}

.navbar__logo-icon {
  color: var(--champagne);
  filter: drop-shadow(0 0 8px rgba(212,175,135,0.5));
  transition: transform 0.4s var(--transition-spring);
}
.navbar__logo:hover .navbar__logo-icon {
  transform: rotate(180deg) scale(1.2);
}

.navbar__logo-text {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  color: white;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
  transition: color 0.5s ease;
}
.navbar.scrolled .navbar__logo-text { color: var(--emerald); text-shadow: none; }

@media (min-width: 768px) {
  .navbar__logo-text { font-size: 1.5rem; }
}

.navbar__links {
  display: none;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 768px) { .navbar__links { display: flex; } }

.navbar__link {
  position: relative;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  transition: color 0.3s ease;
  overflow: hidden;
}
.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--champagne);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--transition-spring);
}
.navbar__link:hover::after { transform: scaleX(1); }

.navbar.scrolled .navbar__link { color: var(--softblack); }
.navbar.scrolled .navbar__link:hover { color: var(--emerald); }

.navbar__cta {
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  transition: all 0.5s ease;
}
.navbar__cta:hover {
  background: white;
  color: var(--emerald);
}
.navbar.scrolled .navbar__cta {
  background: var(--emerald);
  border-color: transparent;
  color: white;
  box-shadow: 0 8px 20px rgba(10,61,47,0.3);
}
.navbar.scrolled .navbar__cta:hover { background: var(--emerald-dk); }

/* Mobile toggle */
.navbar__mobile-toggle {
  display: block;
  color: white;
  z-index: 50;
  transition: color 0.3s ease;
}
.navbar.scrolled .navbar__mobile-toggle { color: var(--emerald); }
.mobile-nav-open .navbar__mobile-toggle { color: var(--emerald); }

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

/* ---------- MOBILE NAV ---------- */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 40;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  clip-path: circle(0% at 100% 0);
  transition: clip-path 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.mobile-nav.open {
  clip-path: circle(150% at 100% 0);
  pointer-events: auto;
}
.mobile-nav__link, .mobile-nav__cta {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--emerald);
  position: relative;
  transition: color 0.3s ease;
}
.mobile-nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--champagne);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.mobile-nav__link:hover { color: var(--champagne); }
.mobile-nav__link:hover::after { transform: scaleX(1); }
.mobile-nav__cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 500;
  padding: 1rem 2.5rem;
  background: var(--emerald);
  color: white;
  border-radius: 9999px;
  box-shadow: 0 10px 30px rgba(10,61,47,0.3);
  transition: background 0.3s ease;
}
.mobile-nav__cta:hover { background: var(--emerald-dk); }
.mobile-nav__cta svg { color: var(--champagne); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  animation: heroZoom 1.5s var(--transition-ease) forwards;
}
@keyframes heroZoom {
  to { transform: scale(1); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, rgba(245,240,232,0.1) 100%);
  mix-blend-mode: multiply;
}

.hero__content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 64rem;
  margin: 0 auto;
  margin-top: 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Hero badge */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  font-size: 0.8125rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeInDown 0.8s var(--transition-ease) 0.2s forwards;
}
.hero__badge svg { color: var(--champagne); }

/* Hero title */
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 8vw, 5rem);
  color: white;
  margin-bottom: 2rem;
  line-height: 1.1;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
  opacity: 0;
  animation: fadeInUp 0.8s var(--transition-ease) 0.4s forwards;
}

@keyframes shimmerText {
  0%   { background-position: 200% center; }
  100% { background-position: 0% center; }
}

.hero__title-shimmer {
  background: linear-gradient(90deg, var(--champagne), white, var(--champagne));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmerText 3s linear infinite;
}

.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.375rem);
  color: rgba(255,255,255,0.9);
  margin-bottom: 3rem;
  max-width: 44rem;
  font-weight: 300;
  line-height: 1.7;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
  opacity: 0;
  animation: fadeInUp 0.8s var(--transition-ease) 0.6s forwards;
}

.hero__btn-wrap {
  position: relative;
  opacity: 0;
  animation: fadeInUp 0.8s var(--transition-ease) 0.8s forwards;
}

.hero__btn-glow {
  position: absolute;
  inset: -4px;
  background: linear-gradient(to right, var(--champagne), var(--rosegold));
  border-radius: 9999px;
  filter: blur(6px);
  opacity: 0.4;
  transition: opacity 0.5s ease;
}
.hero__btn-wrap:hover .hero__btn-glow { opacity: 0.75; }

.hero__btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 3rem;
  background: var(--emerald);
  color: var(--champagne);
  font-weight: 500;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-radius: 9999px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(10,61,47,0.5);
  border: 1px solid rgba(212,175,135,0.3);
  transition: transform 0.2s var(--transition-spring), box-shadow 0.3s ease;
}
.hero__btn:hover { transform: scale(1.05); }
.hero__btn:active { transform: scale(0.95); }

.hero__btn-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: translateX(-100%);
  animation: btnShimmer 3.5s linear infinite;
}
@keyframes btnShimmer {
  0%   { transform: translateX(-100%); }
  40%  { transform: translateX(200%); }
  100% { transform: translateX(200%); }
}

/* Hero scroll indicator */
.hero__scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeIn 1s ease 1.5s forwards;
}
.hero__scroll-text {
  color: rgba(255,255,255,0.6);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.hero__scroll-line {
  width: 1px;
  height: 3rem;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollBounce 1.5s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(10px); }
}

/* Hero entry animations */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px) scale(0.8); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: 8rem 1.5rem;
  background: var(--ivory);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.about__bg-orb {
  position: absolute;
  border-radius: 9999px;
  pointer-events: none;
}
.about__bg-orb--1 {
  top: -20%;
  right: -10%;
  width: 50%;
  height: 50%;
  background: rgba(212,175,135,0.05);
  filter: blur(120px);
  animation: orbRotate 150s linear infinite;
}
.about__bg-orb--2 {
  bottom: -20%;
  left: -10%;
  width: 50%;
  height: 50%;
  background: rgba(232,180,162,0.05);
  filter: blur(120px);
  animation: orbRotate 150s linear infinite reverse;
}
@keyframes orbRotate {
  to { transform: rotate(360deg); }
}

.about__inner {
  max-width: 56rem;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.about__sparkle {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--champagne);
}
.about__sparkle svg {
  animation: sparkleFloat 3s ease-in-out infinite;
}
@keyframes sparkleFloat {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-6px) rotate(10deg); }
}

.about__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 6vw, 3.75rem);
  color: var(--emerald);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.about__title-italic {
  font-style: italic;
  font-weight: 400;
  color: var(--champagne);
}

.about__divider {
  width: 0;
  height: 1px;
  background: var(--champagne);
  margin: 0 auto 2.5rem;
  transition: width 0.8s var(--transition-ease) 0.4s;
}
.about.in-view .about__divider { width: 80px; }

.about__text {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(26,26,26,0.8);
  font-weight: 300;
  line-height: 1.8;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.about__text--highlight {
  color: var(--emerald);
  font-weight: 500;
}

/* ============================================================
   PRODUCTS
   ============================================================ */
.products {
  padding: 8rem 1.5rem;
  background: white;
  position: relative;
}

.products__bg-fade {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 16rem;
  background: linear-gradient(to bottom, rgba(245,240,232,0.5), transparent);
  pointer-events: none;
}

.products__inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.products__header {
  text-align: center;
  margin-bottom: 5rem;
}
.products__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 6vw, 3.75rem);
  color: var(--emerald);
  margin-bottom: 1.5rem;
}
.products__divider {
  width: 80px;
  height: 1px;
  background: var(--champagne);
  margin: 0 auto 2rem;
}
.products__subtitle {
  color: rgba(26,26,26,0.6);
  font-weight: 300;
  max-width: 40rem;
  margin: 0 auto;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.7;
}

.products__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 640px) {
  .products__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .products__grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   CARD
   ============================================================ */
.card {
  background: white;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  border: 1px solid transparent;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.4s var(--transition-spring),
              box-shadow 0.4s ease,
              border-color 0.4s ease;
  position: relative;
}
.card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 50px rgba(10,61,47,0.15);
  border-color: rgba(212,175,135,0.5);
}

.card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, transparent, rgba(212,175,135,0.2));
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  border-radius: 1.5rem;
}
.card:hover::after { opacity: 1; }

.card__img-wrap {
  position: relative;
  height: 18rem;
  overflow: hidden;
  flex-shrink: 0;
}
.card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}
.card:hover .card__img { transform: scale(1.1); }

.card__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0.2), transparent);
  opacity: 0.6;
  transition: opacity 0.5s ease;
}
.card:hover .card__img-overlay { opacity: 0.8; }

.card__body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background: white;
  position: relative;
  z-index: 2;
}

.card__title {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  color: var(--emerald);
  margin-bottom: 1rem;
  transition: color 0.3s ease;
  padding-right: 2rem;
}
.card:hover .card__title { color: var(--champagne); }

.card__line {
  width: 2.5rem;
  height: 1px;
  background: rgba(212,175,135,0.5);
  margin-bottom: 1.25rem;
  transition: width 0.7s ease;
}
.card:hover .card__line { width: 100%; }

.card__desc {
  color: rgba(26,26,26,0.7);
  font-weight: 300;
  font-size: 0.9375rem;
  line-height: 1.7;
  flex-grow: 1;
  margin-bottom: 2rem;
}

.card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.card__price {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--champagne);
  font-weight: 600;
}

.card__btn {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background: var(--ivory);
  color: var(--emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s var(--transition-spring), box-shadow 0.3s ease;
}
.card__btn:hover {
  background: var(--emerald);
  color: var(--champagne);
  transform: scale(1.1) rotate(45deg);
  box-shadow: 0 0 15px rgba(212,175,135,0.4);
}
.card__btn:active { transform: scale(0.9); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--emerald);
  color: white;
  padding: 4rem 1.5rem;
  margin-top: auto;
}

.footer__grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  text-align: center;
}
@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: repeat(3, 1fr);
    text-align: left;
  }
}

.footer__brand { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
@media (min-width: 768px) { .footer__brand { align-items: flex-start; } }

.footer__brand-name {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.025em;
}
.footer__brand-desc {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.7;
  max-width: 20rem;
}

.footer__col { display: flex; flex-direction: column; gap: 1rem; }

.footer__col-title {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: var(--champagne);
}

.footer__address {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.8;
}

.footer__legal { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__legal-link {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  font-weight: 300;
  transition: color 0.3s ease;
}
.footer__legal-link:hover { color: var(--champagne); }

.footer__bottom {
  max-width: 1280px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* ============================================================
   BOOKING MODAL
   ============================================================ */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.modal {
  background: white;
  width: 100%;
  max-width: 32rem;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  max-height: 90vh;
  transform: scale(0.95) translateY(20px);
  transition: transform 0.35s var(--transition-spring);
}
.modal-backdrop.open .modal {
  transform: scale(1) translateY(0);
}

.modal__header {
  background: var(--emerald);
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-shrink: 0;
}
.modal__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: white;
  margin-bottom: 0.25rem;
}
.modal__product-name { color: var(--champagne); font-size: 0.875rem; }

.modal__close {
  color: rgba(255,255,255,0.7);
  transition: color 0.2s ease, transform 0.2s var(--transition-spring);
}
.modal__close:hover { color: white; transform: scale(1.2); }

.modal__body { padding: 1.5rem 2rem 2rem; overflow-y: auto; }

.modal__success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3rem 0;
  gap: 1rem;
}
.modal__success-icon {
  width: 4rem;
  height: 4rem;
  color: var(--champagne);
  animation: successPop 0.5s var(--transition-spring);
}
@keyframes successPop {
  0%   { transform: scale(0.5) rotate(-10deg); }
  60%  { transform: scale(1.2) rotate(5deg); }
  100% { transform: scale(1) rotate(0); }
}
.modal__success-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--emerald);
}
.modal__success-text { color: rgba(26,26,26,0.7); font-weight: 300; }

/* Form */
.modal__form { display: flex; flex-direction: column; gap: 1rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 480px) { .form-row { grid-template-columns: 1fr 1fr; } }

.form-field { display: flex; flex-direction: column; gap: 0.25rem; }

.form-checkbox-field {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.form-checkbox {
  width: 1.125rem;
  height: 1.125rem;
  margin-top: 0.125rem;
  accent-color: var(--emerald);
  cursor: pointer;
  flex-shrink: 0;
}

.form-checkbox-label {
  font-size: 0.8125rem;
  color: var(--softblack);
  opacity: 0.85;
  line-height: 1.4;
  cursor: pointer;
}

.form-link {
  color: var(--emerald);
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.2s ease;
}

.form-link:hover {
  color: var(--champagne);
}

.form-label {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--emerald);
}

/* Pflichtfeld-Sternchen */
.form-required {
  color: #dc2626;
  font-weight: 700;
  margin-left: 1px;
}

/* Hinweistext unter den Pflichtfeldern */
.form-hint {
  font-size: 0.75rem;
  color: rgba(26,26,26,0.45);
  margin-top: -0.25rem;
}

.form-input {
  padding: 0.75rem 1rem;
  background: rgba(245,240,232,0.5);
  border: 1px solid rgba(212,175,135,0.3);
  border-radius: 0.75rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--softblack);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}
.form-input:focus {
  border-color: var(--champagne);
  box-shadow: 0 0 0 3px rgba(212,175,135,0.15);
}
.form-textarea { resize: none; }

.form-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1rem;
  margin-top: 0.5rem;
  background: var(--emerald);
  color: white;
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: 0.75rem;
  transition: background 0.3s ease, transform 0.2s var(--transition-spring);
}
.form-submit:hover { background: var(--emerald-dk); transform: scale(1.02); }
.form-submit:active { transform: scale(0.98); }
.form-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }

/* Loading spinner inside submit button */
.form-spinner {
  width: 1rem;
  height: 1rem;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  flex-shrink: 0;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Form error message */
.form-error {
  padding: 0.875rem 1rem;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 0.75rem;
  color: #991b1b;
  font-size: 0.875rem;
  line-height: 1.5;
}


/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: center;
  pointer-events: none;
  transform: translateY(100%);
  transition: transform 0.5s var(--transition-spring);
}
.cookie-banner.visible {
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-banner__inner {
  background: white;
  border-radius: 1.5rem;
  box-shadow: 0 10px 50px rgba(10,61,47,0.2);
  border: 1px solid rgba(212,175,135,0.3);
  width: 100%;
  max-width: 56rem;
  padding: 1.5rem 2rem;
}

.cookie-banner__top {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.cookie-banner__icon {
  background: var(--ivory);
  padding: 0.75rem;
  border-radius: 9999px;
  color: var(--emerald);
  flex-shrink: 0;
}

.cookie-banner__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--emerald);
  margin-bottom: 0.5rem;
}
.cookie-banner__desc {
  color: rgba(26,26,26,0.8);
  font-size: 0.875rem;
  line-height: 1.6;
}
.cookie-banner__link {
  color: var(--emerald);
  text-decoration: underline;
  transition: color 0.2s ease;
}
.cookie-banner__link:hover { color: var(--champagne); }

.cookie-banner__details {
  border-top: 1px solid #f0f0f0;
  padding-top: 1.5rem;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cookie-toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}
.cookie-toggle-row strong { display: block; font-size: 0.875rem; margin-bottom: 0.25rem; color: var(--softblack); }
.cookie-toggle-row p { font-size: 0.75rem; color: #888; }

.cookie-toggle {
  width: 3rem;
  height: 1.5rem;
  border-radius: 9999px;
  background: #e5e5e5;
  position: relative;
  flex-shrink: 0;
  cursor: pointer;
  transition: background 0.3s ease;
  padding: 0.25rem;
  display: flex;
  align-items: center;
}
.cookie-toggle.active, .cookie-toggle--on { background: var(--emerald) !important; opacity: 0.6; cursor: default; }
.cookie-toggle.active { opacity: 1; }

.cookie-toggle__knob {
  width: 1rem;
  height: 1rem;
  background: white;
  border-radius: 9999px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}
.cookie-toggle.active .cookie-toggle__knob,
.cookie-toggle--on .cookie-toggle__knob {
  transform: translateX(1.5rem);
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #f0f0f0;
}

.cookie-btn {
  flex: 1;
  min-width: 120px;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 500;
  font-size: 0.875rem;
  transition: background 0.2s ease, transform 0.2s ease;
}
.cookie-btn:hover { transform: translateY(-1px); }
.cookie-btn:active { transform: translateY(0); }

.cookie-btn--primary {
  background: var(--emerald);
  color: white;
  box-shadow: 0 2px 8px rgba(10,61,47,0.2);
}
.cookie-btn--primary:hover { background: var(--emerald-dk); }

.cookie-btn--secondary {
  background: var(--ivory);
  color: var(--emerald);
  border: 1px solid rgba(212,175,135,0.3);
}
.cookie-btn--secondary:hover { background: #eae6db; }

.cookie-btn--ghost {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: white;
  color: var(--softblack);
  border: 1px solid #e5e5e5;
  flex: 0 0 auto;
}
.cookie-btn--ghost:hover { background: #f5f5f5; }

/* Floating cookie button */
.cookie-float-btn {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 150;
  background: white;
  padding: 0.75rem;
  border-radius: 9999px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  border: 1px solid rgba(212,175,135,0.3);
  color: var(--emerald);
  transition: color 0.3s ease, transform 0.2s var(--transition-spring);
}
.cookie-float-btn:hover { color: var(--champagne); transform: scale(1.05); }
.cookie-float-btn__tooltip {
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  margin-left: 0.75rem;
  padding: 0.375rem 0.75rem;
  background: #111;
  color: white;
  font-size: 0.75rem;
  border-radius: 0.5rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.cookie-float-btn:hover .cookie-float-btn__tooltip { opacity: 1; }

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-page {
  padding-top: 8rem;
  padding-bottom: 6rem;
  min-height: 80vh;
  background: var(--ivory);
}

.legal-page__inner {
  max-width: 48rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.legal-page__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--emerald);
  margin-bottom: 2rem;
}

.legal-page__divider {
  width: 4rem;
  height: 1px;
  background: var(--champagne);
  margin-bottom: 3rem;
}

.legal-page__content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  color: rgba(26,26,26,0.8);
  font-weight: 300;
  line-height: 1.8;
}
.legal-page__content section { display: flex; flex-direction: column; gap: 0.75rem; }
.legal-page__content h2 {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  color: var(--emerald);
  font-weight: 600;
}
.legal-page__content h3 {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: var(--emerald);
  margin-top: 0.5rem;
}
.legal-page__content ul {
  padding-left: 1.25rem;
  list-style-type: disc;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

/* ---------- UNTERSEITEN (LANDINGPAGES) ---------- */
.page-hero {
  background-size: cover;
  background-position: center 20%;
  position: relative;
  padding: 120px 20px 80px;
  text-align: center;
  color: var(--ivory);
  min-height: 45vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 61, 47, 0.8), rgba(8, 48, 37, 0.9));
  z-index: 1;
}
.page-hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}
.page-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
  line-height: 1.15;
  color: var(--champagne);
}
.page-hero__subtitle {
  font-size: 1.15rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  font-weight: 300;
}
.content-section {
  padding: 4rem 2rem;
  background: var(--ivory);
}
.content-container {
  max-width: 900px;
  margin: 0 auto;
}
.text-block { margin-bottom: 3rem; }
.text-block h2 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--emerald);
  margin-bottom: 1.25rem;
}
.text-block h3 {
  font-size: 1.2rem;
  color: var(--emerald-dk);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.text-block p {
  line-height: 1.8;
  margin-bottom: 1rem;
  color: var(--softblack);
  font-size: 1.05rem;
}
.text-block ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}
.text-block ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  line-height: 1.6;
  color: var(--softblack);
}
.text-block ul li::before {
  content: "•";
  color: var(--champagne);
  font-weight: bold;
  position: absolute;
  left: 0;
  font-size: 1.2rem;
}
.text-block strong { color: var(--emerald-dk); }

.cta-box {
  background: #fff;
  padding: 3rem 2rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  margin: 4rem 0;
}
.cta-box h3 { margin-bottom: 1rem; color: var(--emerald); font-family: var(--font-serif); font-size: 1.8rem; }
.cta-box p { margin-bottom: 2rem; color: rgba(26,26,26,0.7); }

.link-network {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(10, 61, 47, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media(min-width: 600px) {
  .link-network { flex-direction: row; justify-content: space-between; }
}
.link-network a {
  color: var(--emerald);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}
.link-network a:hover { color: var(--champagne); }


/* ===== CONTENT GRID & PRODUCT IMAGES ===== */
.content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .content-grid {
    grid-template-columns: 1.2fr 1fr;
  }
  .content-grid--reverse {
    grid-template-columns: 1fr 1.2fr;
  }
  .content-grid--reverse .content-grid__image-wrap {
    order: -1;
  }
}

.content-grid__image-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border: 1px solid rgba(212,175,135,0.2);
  aspect-ratio: 4 / 3;
  width: 100%;
}

.content-grid__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.content-grid__image-wrap:hover .content-grid__img {
  transform: scale(1.05);
}
