/* ============================================
   GLOWERAKLINIKKEN — DESIGN SYSTEM
   ============================================ */

:root {
  /* Color palette — warm, calm, Scandinavian luxury */
  --cream:       #FAF6F0;
  --cream-warm:  #F3EBE0;
  --cream-deep:  #EBE0D2;
  --blush:       #EFD9CD;
  --blush-soft:  #F7E8DF;
  --rose:        #D3A99B;
  --rose-deep:   #B5836F;
  --wine:        #5A2A35;
  --wine-deep:   #3A1B23;
  --ink:         #2A1A1F;
  --ink-soft:    #4A3A3F;
  --mute:        #8B7B7E;
  --line:        #E5DCD0;
  --line-light:  #EFE9E0;
  --gold:        #B8956F;
  --gold-soft:   #D4B89A;
  --sage:        #9DAA92;
  --sage-deep:   #6F8068;
  --white:       #FFFFFF;
  --shadow-sm:   0 1px 3px rgba(58, 27, 35, 0.06);
  --shadow-md:   0 8px 24px rgba(58, 27, 35, 0.08);
  --shadow-lg:   0 20px 60px rgba(58, 27, 35, 0.12);

  /* Typography */
  --font-display: 'Lora', Georgia, 'Times New Roman', serif;
  --font-sans:    'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --max-w:        1280px;
  --max-w-wide:   1400px;
  --max-w-narrow: 960px;
  --max-w-text:   680px;

  /* Motion */
  --ease:         cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft:    cubic-bezier(0.4, 0, 0.2, 1);
  --dur-fast:     200ms;
  --dur:          400ms;
  --dur-slow:     700ms;
}

/* ============================================
   RESET
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, picture, video, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; transition: color var(--dur-fast) var(--ease-soft); }
button { font: inherit; background: none; border: none; cursor: pointer; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
ul, ol { list-style: none; }
::selection { background: var(--rose-deep); color: var(--cream); }

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--wine-deep);
}
.display {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.8rem, 6.5vw, 6rem);
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--wine-deep);
}
.h1 { font-size: clamp(2.2rem, 4.8vw, 3.8rem); }
.h2 { font-size: clamp(1.85rem, 3.6vw, 2.9rem); }
.h3 { font-size: clamp(1.35rem, 2vw, 1.7rem); }
.h4 { font-size: clamp(1.1rem, 1.5vw, 1.25rem); }
em { font-style: italic; }
.italic-accent {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--rose-deep);
}
.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--rose-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--rose-deep);
  display: inline-block;
}
.lead {
  font-size: clamp(1.05rem, 1.4vw, 1.18rem);
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 56ch;
}
.muted { color: var(--mute); }

/* ============================================
   LAYOUT
   ============================================ */
.wrap {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}
.wrap-wide {
  width: 100%;
  max-width: var(--max-w-wide);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}
.wrap-narrow {
  width: 100%;
  max-width: var(--max-w-narrow);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}
.section { padding-block: clamp(4.5rem, 9vw, 8rem); }
.section-sm { padding-block: clamp(3rem, 6vw, 5rem); }
.section-tight { padding-block: clamp(2rem, 4vw, 3.5rem); }

.divider-thin { height: 1px; background: var(--line); width: 100%; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 100;
  background: rgba(250, 246, 240, 0.78);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  border: 1px solid rgba(229, 220, 208, 0.7);
  border-radius: 999px;
  padding: 0.7rem 1.1rem 0.7rem 1.75rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  max-width: 1340px;
  margin: 0 auto;
  transition: box-shadow var(--dur) var(--ease-soft), background var(--dur) var(--ease-soft);
}
.navbar > .brand { grid-column: 1; justify-self: start; }
.navbar > .nav-links { grid-column: 2; justify-self: center; }
.navbar > .nav-cta-desktop { grid-column: 3; justify-self: end; }
.navbar > .menu-toggle { grid-column: 3; justify-self: end; }
.navbar.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(250, 246, 240, 0.92);
}
.brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--wine-deep);
  letter-spacing: -0.01em;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.brand img { display: block; height: 58px; width: auto; }
.footer-brand .brand { font-size: 1.85rem; }
.footer-brand .brand img { height: 86px; }
.mobile-menu-header .brand img { height: 50px; }
.login-brand img, .edit-card .brand img { height: 97px; margin: 0 auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding: 0.4rem 0;
  letter-spacing: 0.01em;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--wine-deep);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease);
}
.nav-link:hover { color: var(--wine-deep); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-link.active { color: var(--wine-deep); }
.nav-link.active::after { transform: scaleX(1); }

.has-dropdown { position: relative; }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 1.5rem);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.25rem;
  width: 480px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1.5rem;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur) var(--ease-soft), transform var(--dur) var(--ease-soft), visibility var(--dur);
}
.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  transition: background var(--dur-fast) var(--ease-soft);
}
.dropdown-item:hover { background: var(--cream-warm); }
.dropdown-item-title {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--wine-deep);
}
.dropdown-item-sub {
  font-size: 0.78rem;
  color: var(--mute);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background var(--dur) var(--ease-soft), color var(--dur) var(--ease-soft), transform var(--dur-fast) var(--ease-soft), box-shadow var(--dur) var(--ease-soft);
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--wine-deep);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--wine);
  box-shadow: 0 10px 30px rgba(58, 27, 35, 0.18);
}
.btn-outline {
  background: transparent;
  color: var(--wine-deep);
  border-color: var(--wine-deep);
}
.btn-outline:hover { background: var(--wine-deep); color: var(--cream); }
.btn-ghost {
  background: transparent;
  color: var(--ink-soft);
  border-color: var(--line);
}
.btn-ghost:hover { background: var(--cream-warm); border-color: var(--rose); color: var(--wine-deep); }
.btn-rose {
  background: var(--rose-deep);
  color: var(--cream);
}
.btn-rose:hover { background: var(--wine); box-shadow: 0 10px 30px rgba(181, 131, 111, 0.3); }
.btn-sm { padding: 0.6rem 1.2rem; font-size: 0.85rem; }
.btn-lg { padding: 1.05rem 2.2rem; font-size: 1rem; }
.btn-arrow svg { transition: transform var(--dur) var(--ease); width: 14px; height: 14px; }
.btn:hover .btn-arrow svg { transform: translateX(4px); }

.nav-cta { gap: 0.5rem; }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--cream);
}
.menu-toggle svg { width: 18px; height: 18px; color: var(--wine-deep); }

/* Mobile menu — full-screen takeover */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 110;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 350ms var(--ease-soft), transform 450ms var(--ease), visibility 350ms;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mobile-menu::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--blush) 0%, transparent 65%);
  opacity: 0.35;
  top: -120px;
  right: -140px;
  pointer-events: none;
  filter: blur(20px);
}
.mobile-menu::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--rose) 0%, transparent 70%);
  opacity: 0.18;
  bottom: -100px;
  left: -100px;
  pointer-events: none;
  filter: blur(20px);
}
.mobile-menu-inner {
  position: relative;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  z-index: 1;
}
.mobile-menu-header {
  padding: 1rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line-light);
}
.mobile-menu-header .brand {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--wine-deep);
  letter-spacing: -0.01em;
}
.mobile-menu-close {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cream-warm);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease-soft), transform var(--dur-fast) var(--ease-soft);
}
.mobile-menu-close:hover { background: var(--blush-soft); }
.mobile-menu-close:active { transform: scale(0.95); }
.mobile-menu-close svg { width: 18px; height: 18px; color: var(--wine-deep); }
.mobile-menu-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem 1.5rem;
  gap: 0.4rem;
}
.mobile-menu-nav .nav-link {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(2.2rem, 9vw, 3rem);
  color: var(--wine-deep);
  padding: 0.55rem 0;
  text-align: center;
  display: block;
  line-height: 1.1;
  letter-spacing: -0.01em;
  transition: color var(--dur-fast) var(--ease-soft), transform var(--dur) var(--ease);
  position: relative;
}
.mobile-menu-nav .nav-link::after { display: none; }
.mobile-menu-nav .nav-link:hover,
.mobile-menu-nav .nav-link:focus-visible {
  color: var(--rose-deep);
  transform: translateX(6px);
}
.mobile-menu-footer {
  padding: 1.5rem 1.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: center;
  border-top: 1px solid var(--line-light);
}
.mobile-menu-footer .btn {
  width: 100%;
  max-width: 360px;
}
.mobile-menu-contact {
  display: flex;
  gap: 0.7rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.mobile-menu-contact a { color: var(--wine-deep); font-weight: 500; }
.mobile-menu-contact a:hover { color: var(--rose-deep); }
.mobile-menu-contact span { color: var(--line); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 7rem;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--cream);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  width: 100%;
}
.hero-content { max-width: 600px; }
.hero-content .eyebrow { margin-bottom: 1.4rem; }
.hero-content .display { margin-bottom: 1.6rem; }
.hero-content .lead { margin-bottom: 2.2rem; max-width: 48ch; }
.hero-ctas { display: flex; gap: 0.9rem; flex-wrap: wrap; align-items: center; }
.hero-meta { margin-top: 3rem; display: flex; gap: 2rem; align-items: center; flex-wrap: wrap; }
.hero-meta-item { display: flex; flex-direction: column; gap: 0.15rem; }
.hero-meta-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--wine-deep);
  line-height: 1;
}
.hero-meta-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 500;
}

.hero-visual {
  position: relative;
  height: clamp(420px, 70vh, 720px);
}
.hero-img {
  position: absolute;
  inset: 0;
  border-radius: 9999px 9999px 200px 200px / 320px 320px 200px 200px;
  overflow: hidden;
  background: var(--cream-warm);
  box-shadow: 0 30px 90px rgba(58, 27, 35, 0.18);
}
.hero-img picture { display: contents; }
.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-decor {
  position: absolute;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blush), var(--rose));
  filter: blur(2px);
  opacity: 0.7;
  top: -30px;
  right: -20px;
  z-index: -1;
}
.hero-badge {
  position: absolute;
  bottom: 2rem;
  left: -1rem;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1rem 1.25rem;
  display: flex;
  gap: 0.85rem;
  align-items: center;
  box-shadow: var(--shadow-md);
  max-width: 260px;
}
.hero-badge-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--blush-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-badge-icon svg { width: 20px; height: 20px; color: var(--rose-deep); }
.hero-badge-text { font-size: 0.78rem; color: var(--ink-soft); line-height: 1.5; }
.hero-badge-text strong { font-family: var(--font-display); font-size: 0.95rem; color: var(--wine-deep); font-weight: 500; display: block; margin-bottom: 0.1rem; }

/* Trust strip */
.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--cream);
  padding-block: 1.25rem;
}
.trust-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink-soft);
  font-size: 0.85rem;
}
.trust-item svg { width: 18px; height: 18px; color: var(--rose-deep); flex-shrink: 0; }

/* ============================================
   GENERIC SECTIONS
   ============================================ */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}
.section-head .title-block { max-width: 720px; }
.section-head .eyebrow { margin-bottom: 1.1rem; }
.section-head .h2 { margin-bottom: 1rem; }
.section-head .lead { margin: 0; }
.section-head-center {
  text-align: center;
  margin: 0 auto 4rem;
  max-width: 720px;
}
.section-head-center .eyebrow { margin-bottom: 1.1rem; justify-content: center; }
.section-head-center .eyebrow::before,
.section-head-center .eyebrow::after { content: ""; width: 22px; height: 1px; background: var(--rose-deep); }
.section-head-center .h2 { margin-bottom: 1.1rem; }
.section-head-center .lead { margin: 0 auto; }

/* ============================================
   CATEGORIES GRID
   ============================================ */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.cat-card {
  position: relative;
  background: var(--cream);
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  cursor: pointer;
}
.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.cat-img {
  aspect-ratio: 4/5;
  overflow: hidden;
}
.cat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease);
}
.cat-card:hover .cat-img img { transform: scale(1.06); }
.cat-body {
  padding: 1.6rem 1.5rem 1.8rem;
}
.cat-tag {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose-deep);
  font-weight: 500;
  margin-bottom: 0.7rem;
}
.cat-title {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--wine-deep);
  margin-bottom: 0.6rem;
}
.cat-desc {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 1.2rem;
}
.cat-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wine-deep);
  font-weight: 500;
}
.cat-link svg { width: 14px; transition: transform var(--dur) var(--ease); }
.cat-card:hover .cat-link svg { transform: translateX(4px); }

/* Featured / Wide card */
.cat-card.wide {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.cat-card.wide .cat-img { aspect-ratio: auto; }
.cat-card.wide .cat-body { padding: 2.2rem; display: flex; flex-direction: column; justify-content: center; }

/* ============================================
   SPLIT SECTION (image + text)
   ============================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.split-reverse .split-text { order: 2; }
.split-img {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--cream-warm);
  position: relative;
}
.split-img img { width: 100%; height: 100%; object-fit: cover; }
.split-img.arch {
  border-radius: 9999px 9999px 24px 24px / 50% 50% 24px 24px;
}
.split-text { max-width: 560px; }
.split-text .eyebrow { margin-bottom: 1.2rem; }
.split-text .h2 { margin-bottom: 1.3rem; }
.split-text .lead { margin-bottom: 1.6rem; }
.split-text p { color: var(--ink-soft); margin-bottom: 1rem; line-height: 1.75; }
.split-text .btn { margin-top: 1rem; }

/* Feature list */
.feature-list {
  display: grid;
  gap: 1.4rem;
  margin: 2rem 0;
}
.feature-row {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
}
.feature-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blush-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-light);
}
.feature-icon svg { width: 20px; height: 20px; color: var(--rose-deep); }
.feature-content h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
  color: var(--wine-deep);
}
.feature-content p { color: var(--ink-soft); font-size: 0.93rem; line-height: 1.6; }

/* ============================================
   VALUES / 3-COL FEATURES
   ============================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.value-card {
  text-align: center;
  padding: 1rem;
}
.value-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--cream-warm);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.value-icon-wrap svg { width: 30px; height: 30px; color: var(--rose-deep); }
.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--wine-deep);
  margin-bottom: 0.7rem;
}
.value-card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-rows: 180px;
  gap: 0.85rem;
}
.gallery-item {
  overflow: hidden;
  border-radius: 14px;
  position: relative;
  background: var(--cream-warm);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  background: var(--cream-warm);
  position: relative;
  overflow: hidden;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial {
  background: var(--cream);
  border-radius: 22px;
  padding: 2rem 1.9rem 1.9rem;
  border: 1px solid var(--line);
  position: relative;
  display: flex;
  flex-direction: column;
}
.testimonial-quote-mark {
  font-family: var(--font-display);
  font-size: 4rem;
  font-style: italic;
  color: var(--blush);
  line-height: 0.6;
  margin-bottom: 0.5rem;
  height: 30px;
}
.testimonial-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 1.5rem;
  flex-grow: 1;
  font-style: italic;
}
.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line-light);
}
.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blush), var(--rose));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--cream);
  flex-shrink: 0;
}
.testimonial-name {
  font-size: 0.92rem;
  color: var(--wine-deep);
  font-weight: 600;
}
.testimonial-treatment {
  font-size: 0.78rem;
  color: var(--mute);
}
.stars {
  display: inline-flex;
  gap: 2px;
  color: var(--gold);
}
.stars svg { width: 14px; height: 14px; }

/* ============================================
   FORM
   ============================================ */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.form-grid .full { grid-column: 1 / -1; }
.field { display: flex; flex-direction: column; gap: 0.45rem; }
.field label {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}
.field input,
.field select,
.field textarea {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.95rem 1.1rem;
  font-size: 0.95rem;
  color: var(--ink);
  transition: border var(--dur) var(--ease-soft), box-shadow var(--dur) var(--ease-soft);
  font-family: var(--font-sans);
  width: 100%;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--rose-deep);
  box-shadow: 0 0 0 4px rgba(181, 131, 111, 0.12);
}
.field textarea { resize: vertical; min-height: 140px; }
.field-hint { font-size: 0.78rem; color: var(--mute); }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: var(--wine-deep);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--rose) 0%, transparent 60%);
  opacity: 0.15;
  top: -200px;
  right: -200px;
  border-radius: 50%;
}
.cta-section::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--gold) 0%, transparent 60%);
  opacity: 0.1;
  bottom: -150px;
  left: -100px;
  border-radius: 50%;
}
.cta-section h2 { color: var(--cream); margin-bottom: 1.3rem; }
.cta-section .eyebrow { color: var(--rose); }
.cta-section .eyebrow::before { background: var(--rose); }
.cta-section .lead { color: var(--blush); margin-bottom: 2.2rem; }
.cta-content { position: relative; z-index: 2; text-align: center; max-width: 780px; margin: 0 auto; }
.cta-section .btn-primary {
  background: var(--cream);
  color: var(--wine-deep);
}
.cta-section .btn-primary:hover {
  background: var(--blush);
}
.cta-section .btn-outline {
  border-color: var(--blush);
  color: var(--cream);
}
.cta-section .btn-outline:hover { background: var(--cream); color: var(--wine-deep); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--cream-deep);
  padding: clamp(4rem, 7vw, 6rem) 0 2.5rem;
  color: var(--ink-soft);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--wine-deep);
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.hours-list { gap: 1rem !important; }
.hours-row { display: flex; flex-direction: column; gap: 0.15rem; line-height: 1.4; }
.hours-row .hours-days { font-size: 0.85rem; color: var(--ink-soft); letter-spacing: 0.02em; }
.hours-row .hours-time { font-size: 0.98rem; font-weight: 600; }
.footer-col a {
  font-size: 0.92rem;
  color: var(--ink-soft);
  transition: color var(--dur-fast) var(--ease-soft);
}
.footer-col a:hover { color: var(--wine-deep); }
.footer-brand .brand {
  font-size: 1.85rem;
  margin-bottom: 1.2rem;
}
.footer-about {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 1.6rem;
  max-width: 340px;
}
.footer-socials { display: flex; gap: 0.7rem; }
.footer-social {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--dur-fast) var(--ease-soft), border-color var(--dur-fast) var(--ease-soft);
}
.footer-social:hover { background: var(--wine-deep); border-color: var(--wine-deep); }
.footer-social svg { width: 16px; height: 16px; color: var(--wine-deep); transition: color var(--dur-fast); }
.footer-social:hover svg { color: var(--cream); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 1.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--mute);
}
.contact-line {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
}
.contact-line svg { width: 16px; height: 16px; color: var(--rose-deep); flex-shrink: 0; margin-top: 3px; }

/* ============================================
   BEHANDLINGER (treatment pages)
   ============================================ */
.treatment-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  padding: clamp(3rem, 5vw, 4.5rem) 0;
  border-bottom: 1px solid var(--line);
}
.treatment-row:last-of-type { border-bottom: none; }
.treatment-row.reverse .treatment-text { order: 2; }
.treatment-img-wrap {
  border-radius: 26px;
  overflow: hidden;
  aspect-ratio: 5/4;
  background: var(--cream-warm);
}
.treatment-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.treatment-text .eyebrow { margin-bottom: 1.2rem; }
.treatment-text .h2 { margin-bottom: 1.2rem; }
.treatment-text p { color: var(--ink-soft); margin-bottom: 1rem; line-height: 1.75; }
.treatment-list {
  margin: 1.5rem 0 1.8rem;
  padding-top: 1.3rem;
  border-top: 1px solid var(--line);
}
.treatment-list li {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.treatment-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rose-deep);
  flex-shrink: 0;
}
.treatment-price {
  display: inline-flex;
  align-items: baseline;
  gap: 0.55rem;
  background: var(--blush-soft);
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}
.treatment-price .price-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 500;
}
.treatment-price .price-value {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--rose-deep);
}

/* ============================================
   PRICING TABLE
   ============================================ */
.price-section { padding-block: 3rem; }
.price-section:not(:last-child) { border-bottom: 1px solid var(--line); }
.price-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2rem;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.price-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.8vw, 2.3rem);
  color: var(--wine-deep);
}
.price-head .price-sub {
  color: var(--mute);
  font-size: 0.9rem;
  max-width: 380px;
}
.price-list {
  display: flex;
  flex-direction: column;
}
.price-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.1rem 0;
  border-bottom: 1px dashed var(--line);
}
.price-row:last-child { border-bottom: none; }
.price-row .name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--wine-deep);
}
.price-row .name span {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--mute);
  margin-top: 0.2rem;
  font-style: normal;
}
.price-row .duration {
  font-size: 0.85rem;
  color: var(--mute);
  letter-spacing: 0.04em;
  min-width: 80px;
  text-align: right;
}
.price-row .cost {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--rose-deep);
  min-width: 90px;
  text-align: right;
}

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header {
  padding-top: 10rem;
  padding-bottom: 4rem;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-warm) 100%);
  position: relative;
  overflow: hidden;
}
.page-header-content {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.page-header .eyebrow { justify-content: center; margin-bottom: 1.6rem; }
.page-header .eyebrow::before,
.page-header .eyebrow::after { content: ""; width: 22px; height: 1px; background: var(--rose-deep); }
.page-header .display,
.page-header .h1 { margin-bottom: 1.4rem; }
.page-header .lead { margin: 0 auto; }
.breadcrumbs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 2rem;
}
.breadcrumbs a { color: var(--rose-deep); }
.breadcrumbs span { color: var(--line); }

/* ============================================
   GIFT CARD PAGE
   ============================================ */
.gift-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.gift-preview {
  background: linear-gradient(135deg, var(--blush-soft) 0%, var(--blush) 60%, var(--rose) 100%);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  aspect-ratio: 16/10;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  color: var(--wine-deep);
  box-shadow: var(--shadow-lg);
}
.gift-preview::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  top: -100px;
  right: -50px;
  filter: blur(40px);
}
.gift-preview-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 1;
}
.gift-amount {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-style: italic;
  z-index: 1;
}
.gift-brand-mini {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  z-index: 1;
}
.gift-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  z-index: 1;
}

.amount-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
  margin-bottom: 1.5rem;
}
.amount-option {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.9rem;
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--wine-deep);
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease-soft);
}
.amount-option:hover { border-color: var(--rose-deep); }
.amount-option.active {
  background: var(--wine-deep);
  color: var(--cream);
  border-color: var(--wine-deep);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { height: 460px; max-width: 500px; margin: 0 auto; width: 100%; }
  .values-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .cat-card.wide { grid-column: span 1; grid-template-columns: 1fr; }
  .cat-card.wide .cat-img { aspect-ratio: 4/5; }
}

@media (max-width: 768px) {
  .navbar {
    padding: 0.55rem 0.55rem 0.55rem 1.15rem;
    top: 0.6rem;
    left: 0.6rem;
    right: 0.6rem;
  }
  .brand { font-size: 1.15rem; }
  .brand img { height: 46px; }
  .nav-links { display: none; }
  .menu-toggle { display: inline-flex; }
  .nav-cta-desktop { display: none; }

  .section { padding-block: clamp(3rem, 8vw, 5rem); }
  .section-sm { padding-block: clamp(2.2rem, 6vw, 3.5rem); }

  .hero {
    padding: 5rem 0 2.5rem;
    min-height: 0;
    align-items: stretch;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
    padding: 0 1.25rem;
  }
  .hero-visual {
    position: relative;
    height: auto;
    width: 100%;
    max-width: 100%;
    margin: 0;
    order: -1;
  }
  .hero-img {
    position: relative;
    inset: auto;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    box-shadow: var(--shadow-md);
    background: var(--cream-warm);
  }
  .hero-img img { object-fit: cover; }
  .hero-decor { display: none; }
  .hero-content { max-width: 100%; }
  .hero-content .display { font-size: clamp(2.4rem, 10vw, 3.2rem); margin-bottom: 1.2rem; }
  .hero-content .lead { font-size: 1rem; margin-bottom: 1.6rem; max-width: 100%; }
  .hero-ctas { gap: 0.7rem; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hero-meta {
    gap: 1.2rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line-light);
    width: 100%;
  }
  .hero-meta-item { flex: 1; min-width: 0; }
  .hero-meta-num { font-size: 1.5rem; }
  .hero-meta-label { font-size: 0.62rem; letter-spacing: 0.14em; }

  .page-header { padding-top: 7.5rem; padding-bottom: 3rem; }
  .page-header .display { font-size: clamp(2.2rem, 9vw, 3rem); }
  .breadcrumbs { font-size: 0.7rem; margin-bottom: 1.4rem; }

  .section-head { flex-direction: column; align-items: flex-start; margin-bottom: 2.4rem; }
  .section-head-center { margin-bottom: 2.4rem; }

  .split { grid-template-columns: 1fr; gap: 2.5rem; }
  .split-reverse .split-text { order: 0; }
  .split-img.arch { border-radius: 9999px 9999px 18px 18px / 280px 280px 18px 18px; aspect-ratio: 4/5; max-width: 92%; margin-inline: auto; }
  .split-text { max-width: 100%; }

  .treatment-row { grid-template-columns: 1fr; gap: 2rem; padding: 2.5rem 0; }
  .treatment-row.reverse .treatment-text { order: 0; }
  .treatment-img-wrap { border-radius: 18px; }

  .values-grid { grid-template-columns: 1fr !important; gap: 1.2rem; }
  .value-card { padding: 1.5rem !important; text-align: left; }
  .value-card .value-icon-wrap { width: 56px; height: 56px; margin: 0 0 1rem; }

  .testimonial-grid { grid-template-columns: 1fr; gap: 1rem; }
  .testimonial { padding: 1.6rem 1.4rem 1.4rem; }
  .testimonial-text { font-size: 1rem; }

  .cat-grid { gap: 1.2rem; }
  .cat-card.wide { grid-column: span 1; grid-template-columns: 1fr; }
  .cat-card.wide .cat-img { aspect-ratio: 4/5; }
  .cat-body { padding: 1.4rem 1.3rem 1.6rem; }
  .cat-title { font-size: 1.4rem; }

  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 140px; gap: 0.6rem; }
  .gallery-item.wide { grid-column: span 2; }

  .footer { padding: 4rem 0 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem 1.5rem; margin-bottom: 2.5rem; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.6rem; text-align: left; }

  .form-grid { grid-template-columns: 1fr; gap: 1rem; }
  .booking-card { padding: 1.7rem 1.4rem; }
  .booking-card h3 { font-size: 1.45rem; }
  .info-card { padding: 1.5rem 1.4rem; }
  .info-card h3 { font-size: 1.2rem; }

  .price-section { padding-block: 2.2rem; }
  .price-head { margin-bottom: 1.4rem; }
  .price-head h2 { font-size: 1.6rem; }
  .price-row {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    padding: 0.9rem 0;
    gap: 0.5rem 1rem;
  }
  .price-row .name { font-size: 1rem; }
  .price-row .name span { font-size: 0.78rem; margin-top: 0.15rem; }
  .price-row .duration { grid-column: 1; grid-row: 2; text-align: left; font-size: 0.78rem; min-width: 0; }
  .price-row .cost { grid-column: 2; grid-row: 1 / 3; align-self: center; font-size: 1.05rem; }
  .pricing-info-bar { padding: 1.4rem; gap: 1.3rem; margin-bottom: 2.5rem; }

  .cta-section .h2 { font-size: clamp(1.7rem, 6vw, 2.4rem); }
  .cta-section .lead { font-size: 1rem; }

  .timeline { padding-left: 1.8rem; }
  .timeline-item { padding-bottom: 1.8rem; }
  .timeline-item::before { left: -1.8rem; }
  .timeline-year { font-size: 1.4rem; }

  .team-info { padding: 1.2rem 1.2rem 1.4rem; }
  .team-name { font-size: 1.2rem; }

  .gift-grid { grid-template-columns: 1fr; }
  .amount-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .navbar { padding: 0.5rem 0.5rem 0.5rem 1rem; }
  .brand { font-size: 1.05rem; }
  .brand img { height: 40px; }
  .nav-cta-mobile { display: none; }
  .hero-content .display { font-size: 2.4rem; }
  .hero-content .lead { font-size: 0.96rem; }
  .hero-meta { gap: 0.8rem; }
  .hero-meta-num { font-size: 1.35rem; }
  .hero-meta-label { font-size: 0.58rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand { grid-column: auto; }
  .gallery { grid-template-columns: 1fr; }
  .gallery-item.wide, .gallery-item.tall { grid-column: auto; grid-row: auto; }
  .testimonial-meta { flex-wrap: wrap; }
  .mobile-menu-nav .nav-link { font-size: clamp(1.9rem, 8vw, 2.4rem); }
  .mobile-menu-header { padding: 0.85rem 1.1rem; }
  .mobile-menu-footer { padding: 1.2rem 1.2rem 2rem; }
  .pricing-info-bar { padding: 1.2rem; }
  .price-head .price-sub { font-size: 0.82rem; }
  .breadcrumbs { font-size: 0.65rem; }
  .info-card { padding: 1.3rem; }
  .booking-card { padding: 1.4rem 1.2rem; }
  .field input,
  .field select,
  .field textarea { padding: 0.85rem 0.95rem; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-content .display { font-size: 2.6rem; }
  .section-head { flex-direction: column; align-items: flex-start; }
}

/* Utility */
.center-text { text-align: center; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mt-2 { margin-top: 2rem; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.no-wrap { white-space: nowrap; }
