/* ================================================
   HYGGE HEAD SPA — Main Stylesheet
   Skandinavisch-japanisch inspiriertes Luxus-Design
   ================================================ */

/* === 1. DESIGN TOKENS === */
:root {
  /* Farben */
  --cream:          #F7F3ED;
  --sand:           #EDE3D5;
  --warm-bg:        #F2EBE0;
  --earth:          #261710;
  --espresso:       #4A2E1F;
  --warm-gray:      #8B7B6B;
  --light-tan:      #C5B8AB;
  --gold:           #C0954E;
  --gold-light:     #D4AA69;
  --gold-dim:       rgba(192,149,78,0.15);
  --sage:           #7B9282;
  --sage-light:     #A8BDB1;
  --white:          #FDFCFA;
  --overlay-dark:   rgba(26, 14, 8, 0.62);
  --overlay-warm:   rgba(60, 30, 15, 0.45);

  /* Typografie */
  --font-display:  'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body:     'DM Sans', system-ui, -apple-system, sans-serif;

  /* Abstände */
  --space-2xs: 0.25rem;
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  7rem;
  --space-2xl: 11rem;

  /* Übergänge */
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:    cubic-bezier(0.7, 0, 0.84, 0);
  --ease-soft:  cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --dur-fast:   180ms;
  --dur-mid:    360ms;
  --dur-slow:   640ms;
  --dur-slower: 900ms;

  /* Schatten */
  --shadow-xs:  0 2px 8px  rgba(38,23,16,0.06);
  --shadow-sm:  0 4px 20px rgba(38,23,16,0.09);
  --shadow-md:  0 8px 40px rgba(38,23,16,0.12);
  --shadow-lg:  0 16px 64px rgba(38,23,16,0.16);
  --shadow-xl:  0 32px 96px rgba(38,23,16,0.2);

  /* Radien */
  --r-xs:   4px;
  --r-sm:   8px;
  --r-md:   16px;
  --r-lg:   28px;
  --r-pill: 100px;

  /* Container */
  --max-width: 1280px;
  --container-px: clamp(1.25rem, 5vw, 5rem);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--earth);
  background-color: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.js-loading {
  overflow: hidden;
}

body.nav-open {
  overflow: hidden;
}

img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
address { font-style: normal; }
strong { font-weight: 500; }

/* === 3. LOADER === */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--espresso);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity var(--dur-slow) var(--ease-out), visibility var(--dur-slow);
}

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

.loader__inner {
  text-align: center;
}

.loader__wordmark {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  margin-bottom: 2.5rem;
}

.loader__hygge {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 5.5rem);
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.12em;
  opacity: 0;
  transform: translateY(12px);
  animation: loaderWord 0.6s var(--ease-out) 0.2s forwards;
}

.loader__head {
  font-family: var(--font-body);
  font-size: clamp(0.65rem, 2vw, 0.85rem);
  font-weight: 300;
  color: var(--gold-light);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-top: 0.5rem;
  opacity: 0;
  animation: loaderWord 0.6s var(--ease-out) 0.5s forwards;
}

.loader__bar {
  width: 120px;
  height: 1px;
  background: rgba(255,255,255,0.15);
  margin: 0 auto;
  overflow: hidden;
}

.loader__fill {
  height: 100%;
  width: 0;
  background: var(--gold);
  animation: loaderBar 1.4s var(--ease-out) 0.4s forwards;
}

@keyframes loaderWord {
  to { opacity: 1; transform: none; }
}
@keyframes loaderBar {
  to { width: 100%; }
}

/* === 4. CUSTOM CURSOR (desktop only) === */
@media (pointer: fine) {
  .cursor { pointer-events: none; }
  .cursor__dot,
  .cursor__ring {
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9000;
    transform: translate(-50%, -50%);
    will-change: transform;
    transition: transform var(--dur-fast) linear, opacity var(--dur-mid);
  }
  .cursor__dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    transition-duration: 80ms;
  }
  .cursor__ring {
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(192,149,78,0.5);
    transition-duration: 120ms;
  }
  body:not(.cursor-ready) .cursor__dot,
  body:not(.cursor-ready) .cursor__ring { opacity: 0; }

  .cursor--hover .cursor__ring {
    transform: translate(-50%, -50%) scale(1.5);
    border-color: var(--gold);
    background: var(--gold-dim);
  }
}

/* === 5. TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  font-weight: 400;
}

h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(2rem, 4.5vw, 3.5rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: clamp(1rem, 1.8vw, 1.3rem); }

em { font-style: italic; }

p { max-width: 68ch; }

/* === 6. LAYOUT UTILITIES === */
.container {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--container-px);
}
.container--narrow {
  max-width: 780px;
}
.text-center { text-align: center; }
.text-center p { margin-inline: auto; }

.section {
  padding-block: clamp(var(--space-lg), 10vw, var(--space-2xl));
}
.section--sand {
  background-color: var(--sand);
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.section-header .section-label { display: block; }

.section-title {
  margin-bottom: 1.2rem;
}
.section-title em {
  color: var(--gold);
}

.section-sub {
  color: var(--warm-gray);
  font-size: 1.05rem;
  max-width: 56ch;
  margin-inline: auto;
}

/* === 7. BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85em 2.2em;
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition:
    background var(--dur-mid) var(--ease-soft),
    color var(--dur-mid) var(--ease-soft),
    border-color var(--dur-mid) var(--ease-soft),
    box-shadow var(--dur-mid) var(--ease-soft),
    transform var(--dur-fast);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: opacity var(--dur-fast);
}
.btn:hover::after { opacity: 1; }
.btn:active { transform: scale(0.98); }

.btn--primary {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(192,149,78,0.3);
}
.btn--primary:hover {
  background: var(--gold-light);
  box-shadow: 0 6px 28px rgba(192,149,78,0.45);
  transform: translateY(-1px);
}

.btn--primary-sm {
  background: var(--gold);
  color: var(--white);
  padding: 0.65em 1.7em;
  font-size: 0.8rem;
}
.btn--primary-sm:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.btn--ghost {
  border: 1.5px solid rgba(255,255,255,0.5);
  color: var(--white);
}
.btn--ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}

.btn--ghost-dark {
  border: 1.5px solid var(--light-tan);
  color: var(--espresso);
}
.btn--ghost-dark:hover {
  border-color: var(--espresso);
  background: rgba(38,23,16,0.04);
}

.btn--outline-light {
  border: 1.5px solid rgba(255,255,255,0.6);
  color: rgba(255,255,255,0.9);
  backdrop-filter: blur(4px);
}
.btn--outline-light:hover {
  border-color: var(--white);
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.btn--large {
  padding: 1em 2.8em;
  font-size: 0.9rem;
}

/* === 8. NAVIGATION === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 800;
  padding-block: 1.4rem;
  transition:
    background var(--dur-mid) var(--ease-soft),
    padding var(--dur-mid) var(--ease-soft),
    box-shadow var(--dur-mid);
}

.nav.is-scrolled {
  background: rgba(253,252,250,0.9);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  padding-block: 0.9rem;
  box-shadow: 0 1px 0 rgba(38,23,16,0.08);
}

.nav--dark-mode .nav__link,
.nav--dark-mode .nav__logo-text { color: var(--white); }
.nav--dark-mode.is-scrolled .nav__link,
.nav--dark-mode.is-scrolled .nav__logo-text { color: var(--earth); }

.nav__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__logo {
  flex-shrink: 0;
}
.nav__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  color: var(--white);
  transition: color var(--dur-mid);
}
.nav.is-scrolled .nav__logo-text { color: var(--earth); }

.nav__logo-hygge {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.06em;
}
.nav__logo-sub {
  font-family: var(--font-body);
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-inline: auto;
}

.nav__link {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  position: relative;
  padding-bottom: 2px;
  transition: color var(--dur-mid);
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--dur-mid) var(--ease-out);
}
.nav__link:hover,
.nav__link--active { color: var(--gold); }
.nav__link:hover::after,
.nav__link--active::after { width: 100%; }

.nav.is-scrolled .nav__link {
  color: var(--warm-gray);
}
.nav.is-scrolled .nav__link:hover,
.nav.is-scrolled .nav__link--active {
  color: var(--gold);
}

.nav__cta {
  margin-left: auto;
  font-size: 0.78rem;
  padding: 0.6em 1.6em;
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--dur-mid) var(--ease-out), opacity var(--dur-mid);
}
.nav.is-scrolled .nav__burger span { background: var(--earth); }
.nav-open .nav__burger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-open .nav__burger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-open .nav__burger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* === 9. MOBILE MENU === */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 700;
  background: var(--espresso);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity var(--dur-slow) var(--ease-out),
    visibility var(--dur-slow);
}
.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}
.mobile-menu__inner {
  text-align: center;
  padding: 2rem;
}
.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 3rem;
}
.mobile-menu__link {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 8vw, 3.2rem);
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
  padding: 0.15em 0;
  transition: color var(--dur-mid) var(--ease-soft);
  opacity: 0;
  transform: translateY(20px);
}
.mobile-menu.is-open .mobile-menu__link {
  opacity: 1;
  transform: none;
  transition:
    opacity var(--dur-slow) var(--ease-out),
    transform var(--dur-slow) var(--ease-out),
    color var(--dur-mid);
}
.mobile-menu.is-open .mobile-menu__link:nth-child(1) { transition-delay: 0.1s, 0.1s, 0s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(2) { transition-delay: 0.17s, 0.17s, 0s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(3) { transition-delay: 0.24s, 0.24s, 0s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(4) { transition-delay: 0.31s, 0.31s, 0s; }
.mobile-menu__link:hover,
.mobile-menu__link.active { color: var(--white); }
.mobile-menu__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}
.mobile-menu__contact {
  color: var(--gold-light);
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
}
.mobile-menu__social {
  display: flex;
  gap: 1.2rem;
}
.mobile-menu__social a {
  color: rgba(255,255,255,0.5);
  transition: color var(--dur-fast);
}
.mobile-menu__social a:hover { color: var(--white); }

/* === 10. FLASH MESSAGES === */
.flash-container {
  position: fixed;
  top: calc(70px + 1rem);
  left: 50%;
  transform: translateX(-50%);
  z-index: 500;
  width: min(calc(100vw - 2rem), 600px);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.flash {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: var(--r-md);
  font-size: 0.9rem;
  box-shadow: var(--shadow-md);
  animation: flashIn 0.4s var(--ease-out) forwards;
}
@keyframes flashIn {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: none; }
}
.flash--success {
  background: #f0faf4;
  color: #1a5c35;
  border-left: 3px solid #3aaa6b;
}
.flash--error {
  background: #fdf2f2;
  color: #8b1a1a;
  border-left: 3px solid #e05555;
}
.flash__close {
  font-size: 1.3rem;
  line-height: 1;
  color: inherit;
  opacity: 0.5;
  flex-shrink: 0;
}
.flash__close:hover { opacity: 1; }

/* === 11. HERO === */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  background: var(--espresso);
}

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

.hero__bg-layer {
  position: absolute;
  inset: 0;
}

.hero__bg-layer--1 {
  background: radial-gradient(ellipse 80% 80% at 30% 40%,
    #3d2010 0%, #261710 50%, #160d07 100%);
}

.hero__bg-layer--2 {
  background: radial-gradient(ellipse 60% 60% at 75% 65%,
    rgba(192,149,78,0.12) 0%, transparent 70%);
  animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  from { opacity: 0.6; transform: scale(1); }
  to   { opacity: 1;   transform: scale(1.08); }
}

.hero__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__particle {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: rgba(192,149,78,0.35);
  left: calc(var(--i) * 7.5% + 5%);
  top: 100%;
  animation: floatUp calc(12s + var(--i) * 1.3s) linear calc(var(--i) * 0.8s) infinite;
}
@keyframes floatUp {
  to { top: -5%; opacity: 0; }
}

.hero__content {
  position: relative;
  z-index: 10;
  padding-top: 8rem;
  padding-bottom: 4rem;
  max-width: 760px;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2.2rem;
  opacity: 0;
  transition: opacity var(--dur-slow), transform var(--dur-slow);
}
.hero__eyebrow.revealed { opacity: 1; transform: none; }

.hero__line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero__headline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25em;
  row-gap: 0;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 2rem;
  font-weight: 300;
}

.hero__word {
  display: block;
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity var(--dur-slower) var(--ease-out) calc(var(--w) * 180ms),
    transform var(--dur-slower) var(--ease-out) calc(var(--w) * 180ms);
}
.hero__word.revealed { opacity: 1; transform: none; }
.hero__word--italic {
  font-style: italic;
  color: var(--gold-light);
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 300;
  color: rgba(253,252,250,0.7);
  line-height: 1.7;
  margin-bottom: 2.8rem;
  max-width: 46ch;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out);
}
.hero__sub.revealed { opacity: 1; transform: none; }

.hero__br { display: none; }
@media (min-width: 640px) { .hero__br { display: block; } }

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out);
}
.hero__actions.revealed { opacity: 1; transform: none; }

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  z-index: 10;
  animation: scrollBob 2.5s ease-in-out infinite;
}
@keyframes scrollBob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}
.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  flex-shrink: 0;
}

/* Decorative image frame floating on right side */
.hero__image-frame {
  position: absolute;
  right: max(3%, calc((100vw - var(--max-width)) / 2));
  top: 50%;
  transform: translateY(-50%);
  width: clamp(200px, 30vw, 420px);
  z-index: 5;
  opacity: 0;
  animation: heroImgReveal 1.2s var(--ease-out) 1.2s forwards;
}
@keyframes heroImgReveal {
  from { opacity: 0; transform: translateY(calc(-50% + 30px)); }
  to   { opacity: 1; transform: translateY(-50%); }
}
.hero__image-inner {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 3/4;
}
.hero__image-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.92) saturate(1.1);
}

@media (max-width: 900px) {
  .hero__image-frame { display: none; }
  .hero__content { max-width: 100%; }
}

/* === 12. INTRO SECTION === */
.intro {
  background: var(--cream);
}
.intro .section-label {
  display: block;
  margin-bottom: 1.2rem;
}
.intro__headline {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1.8rem;
}
.intro__headline em { color: var(--gold); }
.intro__text {
  font-size: 1.05rem;
  color: var(--warm-gray);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.intro__link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--espresso);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: gap var(--dur-mid) var(--ease-out), color var(--dur-mid);
}
.intro__link:hover { color: var(--gold); gap: 1rem; }
.intro__link svg { transition: transform var(--dur-mid) var(--ease-out); }
.intro__link:hover svg { transform: translateX(4px); }

/* === 13. PILLARS === */
.pillars__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.pillar {
  padding: 2.5rem 2rem;
  border-radius: var(--r-md);
  background: var(--white);
  border: 1px solid rgba(197,184,171,0.4);
  transition:
    transform var(--dur-mid) var(--ease-out),
    box-shadow var(--dur-mid) var(--ease-out);
}
.pillar:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.pillar__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-dim);
  border-radius: var(--r-sm);
  margin-bottom: 1.5rem;
  color: var(--gold);
}
.pillar__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}
.pillar__text {
  font-size: 0.9rem;
  color: var(--warm-gray);
  line-height: 1.7;
  max-width: none;
}

/* === 14. SERVICES PREVIEW === */
.services-preview__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.service-card {
  position: relative;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 2.4rem 2rem;
  border: 1px solid rgba(197,184,171,0.4);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition:
    transform var(--dur-mid) var(--ease-out),
    box-shadow var(--dur-mid) var(--ease-out);
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.service-card--featured {
  background: var(--espresso);
  border-color: transparent;
  box-shadow: var(--shadow-md);
}
.service-card--featured .service-card__duration,
.service-card--featured .service-card__items li,
.service-card--featured .service-card__name {
  color: rgba(253,252,250,0.85);
}
.service-card--featured .service-card__amount { color: var(--gold-light); }

.service-card__badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--gold);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3em 0.9em;
  border-radius: var(--r-pill);
}

.service-card__header { display: flex; flex-direction: column; gap: 0.4rem; }
.service-card__duration {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm-gray);
}
.service-card__name {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1;
}
.service-card__price { display: flex; align-items: baseline; gap: 0.2rem; margin-top: 0.3rem; }
.service-card__amount {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.service-card__currency {
  font-size: 1.1rem;
  color: var(--warm-gray);
}

.service-card__items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.service-card__items li {
  font-size: 0.875rem;
  color: var(--warm-gray);
  padding-left: 1.25rem;
  position: relative;
}
.service-card__items li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--light-tan);
  font-size: 0.8rem;
}
.service-card--featured .service-card__items li::before { color: rgba(192,149,78,0.5); }

.services-preview__more { text-align: center; }

/* === 15. EXPERIENCE SPLIT === */
.experience__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.experience__image-wrap {
  position: relative;
  border-radius: var(--r-lg);
  overflow: visible;
}
.experience__image-wrap img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
}
.experience__stat {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  background: var(--espresso);
  color: var(--white);
  padding: 1.5rem;
  border-radius: var(--r-md);
  text-align: center;
  box-shadow: var(--shadow-md);
  min-width: 130px;
}
.experience__stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
}
.experience__stat-text {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
  margin-top: 0.4rem;
  max-width: none;
}

.experience__content .section-label { display: block; margin-bottom: 1rem; }
.experience__content .section-title { font-size: clamp(1.8rem, 3.5vw, 3rem); margin-bottom: 1.5rem; }
.experience__text {
  font-size: 0.97rem;
  color: var(--warm-gray);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}
.experience__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .experience__grid { grid-template-columns: 1fr; }
  .experience__stat { bottom: -1rem; right: 1rem; }
}

/* === 16. ATMOSPHERE QUOTE === */
.atmosphere {
  position: relative;
  padding-block: clamp(6rem, 14vw, 11rem);
  color: var(--white);
  overflow: hidden;
}
.atmosphere__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.atmosphere__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.atmosphere__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,14,8,0.8) 0%, rgba(60,30,15,0.7) 100%);
}
.atmosphere__quote {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.atmosphere__quote p {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.4;
  color: var(--white);
  margin: 0 auto 1.5rem;
  max-width: 100%;
}
.atmosphere__quote cite {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-style: normal;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* === 17. CTA SECTION === */
.cta-section {
  background: var(--cream);
}
.cta-section__headline {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 300;
  margin-bottom: 1.2rem;
}
.cta-section__sub {
  font-size: 1rem;
  color: var(--warm-gray);
  margin-bottom: 2.5rem;
  max-width: 100%;
}
.cta-section__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* === 18. PAGE HEADER (inner pages) === */
.page-header {
  position: relative;
  padding-top: clamp(7rem, 14vw, 11rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
  overflow: hidden;
  color: var(--white);
}

.page-header__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-header--leistungen .page-header__bg {
  background: linear-gradient(135deg, #2e1810 0%, #3d2210 40%, #4a2d1a 100%);
}
.page-header--salon .page-header__bg {
  background: linear-gradient(135deg, #1a240d 0%, #263318 40%, #2e3c1c 100%);
}
.page-header--kontakt .page-header__bg {
  background: linear-gradient(135deg, #1a1a24 0%, #262033 40%, #1a1824 100%);
}

.page-header__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 30% 50%, rgba(192,149,78,0.15) 0%, transparent 70%);
}

.page-header--minimal {
  padding-top: clamp(8rem, 14vw, 11rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
  color: var(--earth);
  background: var(--cream);
}

.page-header__content { position: relative; z-index: 10; }
.page-header__label {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}
.page-header__title {
  font-weight: 300;
  font-size: clamp(2.8rem, 7vw, 5rem);
  line-height: 1.1;
  margin-bottom: 1.2rem;
}
.page-header__title--dark { color: var(--earth); }
.page-header__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  max-width: 52ch;
}

/* === 19. PACKAGES PAGE === */
.packages__intro .section-sub em { font-style: italic; color: var(--warm-gray); }

.packages__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.package-card {
  position: relative;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 2.5rem 2rem;
  border: 1px solid rgba(197,184,171,0.4);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: transform var(--dur-mid) var(--ease-out), box-shadow var(--dur-mid);
}
.package-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.package-card--featured {
  background: var(--espresso);
  border-color: var(--espresso);
  box-shadow: var(--shadow-lg);
  grid-row: span 1;
}
.package-card__badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--gold);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.3em 0.9em;
  border-radius: var(--r-pill);
}
.package-card__top { display: flex; flex-direction: column; gap: 0.5rem; }
.package-card__meta {}
.package-card__duration {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm-gray);
}
.package-card--featured .package-card__duration { color: rgba(255,255,255,0.5); }
.package-card__name {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--earth);
  line-height: 1;
  margin-top: 0.2rem;
}
.package-card--featured .package-card__name { color: var(--white); }
.package-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
}
.package-card__amount {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.package-card__currency {
  font-size: 1.2rem;
  color: var(--warm-gray);
}
.package-card--featured .package-card__currency { color: rgba(255,255,255,0.4); }

.package-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  flex: 1;
}
.package-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--warm-gray);
  line-height: 1.5;
}
.package-card--featured .package-card__list li { color: rgba(253,252,250,0.75); }
.package-card__list svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--sage);
}
.package-card--featured .package-card__list svg { color: var(--gold); }

.package-card__btn { margin-top: auto; text-align: center; justify-content: center; }

/* === 20. ADD-ONS === */
.addons__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.2rem;
}
.addon-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 1.4rem 1.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  border: 1px solid rgba(197,184,171,0.4);
  transition: box-shadow var(--dur-mid), transform var(--dur-fast);
}
.addon-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateX(3px);
}
.addon-card__name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.2rem;
}
.addon-card__desc {
  font-size: 0.8rem;
  color: var(--warm-gray);
  max-width: none;
}
.addon-card__price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}

/* === 21. BOOKING CTA === */
.booking-cta {
  background: var(--espresso);
  color: var(--white);
}
.booking-cta__inner { margin: 0 auto; }
.booking-cta .section-label { color: var(--gold); }
.booking-cta__headline {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 300;
  margin-bottom: 1.2rem;
}
.booking-cta__headline em { color: var(--gold-light); }
.booking-cta__text {
  color: rgba(255,255,255,0.65);
  margin-bottom: 2.5rem;
  max-width: 100%;
}
.booking-cta__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}
.booking-cta__actions .btn--ghost-dark {
  border-color: rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.7);
}
.booking-cta__actions .btn--ghost-dark:hover {
  border-color: var(--white);
  color: var(--white);
  background: rgba(255,255,255,0.05);
}
.booking-cta__note {
  font-size: 1.1rem;
  color: var(--gold);
  font-family: var(--font-display);
  font-style: italic;
  max-width: none;
  margin: 0 auto;
}

/* === 22. SALON PAGE === */
.salon-about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.salon-about__content .section-label { display: block; margin-bottom: 1rem; }
.salon-about__content .section-title { margin-bottom: 1.5rem; }
.salon-about__text {
  font-size: 0.97rem;
  color: var(--warm-gray);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}
.salon-about__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1.5rem;
}
.salon-about__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.9rem;
  color: var(--espresso);
}
.salon-about__features svg { color: var(--sage); flex-shrink: 0; margin-top: 3px; }

.salon-about__image-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.salon-about__image-wrap img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.salon-about__accent-card {
  margin-top: 1.5rem;
  background: var(--gold-dim);
  border: 1px solid rgba(192,149,78,0.25);
  border-radius: var(--r-md);
  padding: 1.2rem 1.4rem;
}
.salon-about__accent-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--espresso);
  max-width: none;
}

@media (max-width: 768px) {
  .salon-about__grid { grid-template-columns: 1fr; }
  .salon-about__visual { order: -1; }
}

/* Gallery */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}
.gallery__item { overflow: hidden; border-radius: var(--r-md); }
.gallery__item--large { grid-column: span 7; }
.gallery__item--small { grid-column: span 5; }

.gallery__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.gallery__item--large .gallery__img-wrap { aspect-ratio: 4/3; }

.gallery__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-soft);
}
.gallery__item:hover .gallery__img-wrap img { transform: scale(1.04); }

.gallery__overlay {
  position: absolute;
  inset: 0;
  background: rgba(38,23,16,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--dur-mid);
}
.gallery__item:hover .gallery__overlay { background: rgba(38,23,16,0.25); }

.gallery__zoom {
  color: var(--white);
  opacity: 0;
  transform: scale(0.7);
  transition: opacity var(--dur-mid), transform var(--dur-mid) var(--ease-out);
}
.gallery__item:hover .gallery__zoom { opacity: 1; transform: scale(1); }

.gallery__caption {
  padding: 0.75rem 0.5rem 0.25rem;
  font-size: 0.8rem;
  color: var(--warm-gray);
  letter-spacing: 0.04em;
}

@media (max-width: 640px) {
  .gallery__grid { grid-template-columns: 1fr; }
  .gallery__item--large,
  .gallery__item--small { grid-column: span 1; }
}

/* === 23. PRODUCTS INFO === */
.products-info { background: var(--cream); }
.products-info__text {
  font-size: 1rem;
  color: var(--warm-gray);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 100%;
}

/* === 24. CONTACT PAGE === */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}
.contact__info-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  margin-bottom: 2.5rem;
  line-height: 1.2;
}
.contact__info-title em { color: var(--gold); }

.contact__channels {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2.4rem;
}
.contact__channel {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem;
  background: var(--white);
  border: 1px solid rgba(197,184,171,0.4);
  border-radius: var(--r-md);
  transition: box-shadow var(--dur-mid), transform var(--dur-fast), border-color var(--dur-mid);
  text-decoration: none;
  color: var(--earth);
}
.contact__channel:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--gold);
  transform: translateX(3px);
}
.contact__channel--address { cursor: default; pointer-events: none; }
.contact__channel--address:hover { transform: none; box-shadow: none; border-color: rgba(197,184,171,0.4); }

.contact__channel-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-dim);
  border-radius: var(--r-sm);
  flex-shrink: 0;
  color: var(--gold);
}
.contact__channel-text { display: flex; flex-direction: column; gap: 0.15rem; }
.contact__channel-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm-gray);
}
.contact__channel-value {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--earth);
}
.contact__channel-value address { font-style: normal; }

.contact__social { margin-bottom: 1.5rem; }
.contact__social-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: 0.8rem;
}
.contact__social-links { display: flex; gap: 1rem; }
.contact__social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--espresso);
  padding: 0.5rem 1rem;
  border: 1px solid rgba(197,184,171,0.4);
  border-radius: var(--r-pill);
  transition: border-color var(--dur-mid), color var(--dur-mid), background var(--dur-mid);
}
.contact__social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-dim);
}
.contact__note {
  font-size: 0.85rem;
  color: var(--warm-gray);
  font-style: italic;
}
.contact__note p { max-width: none; }

/* Contact Form */
.contact-form {
  background: var(--white);
  padding: clamp(2rem, 4vw, 3.5rem);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
}
.contact-form__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  margin-bottom: 0.5rem;
}
.contact-form__sub {
  font-size: 0.9rem;
  color: var(--warm-gray);
  margin-bottom: 2rem;
  max-width: none;
}

/* Floating Label Fields */
.form-field {
  position: relative;
  margin-bottom: 1.6rem;
}
.form-field__input {
  width: 100%;
  padding: 1.2rem 0 0.5rem;
  background: transparent;
  border: none;
  border-bottom: 1.5px solid var(--light-tan);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--earth);
  outline: none;
  transition: border-color var(--dur-mid);
  appearance: none;
  resize: none;
}
.form-field__input--textarea {
  min-height: 110px;
  resize: vertical;
}
.form-field__input:focus { border-color: var(--gold); }

.form-field__label {
  position: absolute;
  top: 1.2rem;
  left: 0;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--warm-gray);
  pointer-events: none;
  transform-origin: left;
  transition:
    transform var(--dur-mid) var(--ease-out),
    font-size var(--dur-mid) var(--ease-out),
    top var(--dur-mid) var(--ease-out),
    color var(--dur-mid);
}
.form-field__input:focus + .form-field__label,
.form-field__input:not(:placeholder-shown) + .form-field__label {
  top: 0;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.form-field__border {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width var(--dur-mid) var(--ease-out);
}
.form-field__input:focus ~ .form-field__border { width: 100%; }

/* Checkbox */
.form-field--checkbox { margin-bottom: 0.5rem; }
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  cursor: pointer;
}
.form-checkbox input[type="checkbox"] { position: absolute; opacity: 0; pointer-events: none; }
.form-checkbox__box {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--light-tan);
  border-radius: 4px;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--dur-fast), background var(--dur-fast);
}
.form-checkbox input:checked ~ .form-checkbox__box {
  background: var(--gold);
  border-color: var(--gold);
}
.form-checkbox input:checked ~ .form-checkbox__box::after {
  content: '';
  display: block;
  width: 10px;
  height: 6px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(-45deg) translateY(-2px);
}
.form-checkbox__text {
  font-size: 0.82rem;
  color: var(--warm-gray);
  line-height: 1.55;
  max-width: none;
}

.form-required-note {
  font-size: 0.75rem;
  color: var(--light-tan);
  margin-top: 0.4rem;
  margin-bottom: 1.8rem;
  max-width: none;
}

.form-submit {
  width: 100%;
  justify-content: center;
}

@media (max-width: 768px) {
  .contact__grid { grid-template-columns: 1fr; }
}

/* === 25. LEGAL PAGE === */
.legal__content {
  padding-block: 1rem 3rem;
  max-width: 66ch;
}
.legal__content h2 {
  font-size: 1.3rem;
  font-family: var(--font-display);
  font-weight: 500;
  margin-top: 2.5rem;
  margin-bottom: 0.8rem;
  color: var(--espresso);
}
.legal__content h3 {
  font-size: 1.05rem;
  font-family: var(--font-body);
  font-weight: 500;
  margin-top: 1.4rem;
  margin-bottom: 0.5rem;
  color: var(--earth);
}
.legal__content p,
.legal__content address {
  font-size: 0.9rem;
  color: var(--warm-gray);
  line-height: 1.8;
  margin-bottom: 0.8rem;
}
.legal__content a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal__content a:hover { color: var(--espresso); }

/* === 26. ERROR PAGES === */
.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
}
.error-page__code {
  font-family: var(--font-display);
  font-size: clamp(6rem, 20vw, 12rem);
  font-weight: 300;
  color: var(--sand);
  line-height: 1;
  margin-bottom: 1rem;
  max-width: none;
}
.error-page__title {
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  font-weight: 300;
  margin-bottom: 1.2rem;
}
.error-page__text {
  color: var(--warm-gray);
  margin-bottom: 2.5rem;
  max-width: 100%;
}

/* === 27. FOOTER === */
.footer {
  background: var(--espresso);
  color: rgba(253,252,250,0.65);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-top: clamp(3.5rem, 7vw, 5.5rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}
.footer__logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  margin-bottom: 1rem;
}
.footer__logo-hygge {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.06em;
}
.footer__logo-sub {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 3px;
}
.footer__tagline {
  font-size: 0.82rem;
  margin-bottom: 1.5rem;
  max-width: none;
}
.footer__social {
  display: flex;
  gap: 0.8rem;
}
.footer__social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  color: rgba(255,255,255,0.5);
  transition: border-color var(--dur-fast), color var(--dur-fast), background var(--dur-fast);
}
.footer__social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-dim);
}
.footer__heading {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer__nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer__nav li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--dur-fast);
}
.footer__nav li a:hover { color: var(--white); }
.footer__contact address {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.85rem;
  margin-bottom: 0.8rem;
}
.footer__contact a {
  color: rgba(255,255,255,0.55);
  transition: color var(--dur-fast);
}
.footer__contact a:hover { color: var(--white); }
.footer__note {
  font-size: 0.78rem;
  font-style: italic;
  color: rgba(255,255,255,0.35);
  max-width: none;
}
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-block: 1.4rem;
}
.footer__bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  max-width: none;
}
.footer__bottom a {
  color: rgba(255,255,255,0.4);
  transition: color var(--dur-fast);
}
.footer__bottom a:hover { color: rgba(255,255,255,0.7); }
@media (max-width: 768px) {
  .footer__inner { grid-template-columns: 1fr; }
}

/* === 28. SCROLL REVEAL === */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity var(--dur-slow) var(--ease-out),
    transform var(--dur-slow) var(--ease-out);
}
.reveal[data-reveal="fade-right"] { transform: translateX(-28px); }
.reveal[data-reveal="fade-left"]  { transform: translateX(28px); }

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* === 29. RESPONSIVE === */
@media (max-width: 1024px) {
  .nav__links { gap: 1.5rem; }
  .nav__cta { display: none; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .packages__grid { grid-template-columns: 1fr; }
  .service-card--featured { order: -1; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .experience__stat { right: 0.5rem; bottom: -1rem; padding: 1rem; }
  .experience__stat-num { font-size: 1.8rem; }
}

/* === 30. UTILITY / ACCESSIBILITY === */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

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

/* Smooth scrollbar styling */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--sand); }
::-webkit-scrollbar-thumb {
  background: var(--light-tan);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: var(--warm-gray); }
