/* =========================================================
   PATRIZIA SANFEDELE — LASH ATELIER
   Shared stylesheet
   ========================================================= */

:root {
  /* Color — warm Italian paper palette */
  --bg: #F4ECDC;
  --bg-2: #ECE2CD;
  --bg-3: #E0D2B6;
  --paper: #FBF6EA;
  --cream: #FBF6EA;
  --ink: #1A1410;
  --ink-2: #5C4F42;
  --ink-3: #8B7C6C;
  --bronze: #8C5E3C;
  --bronze-2: #C9A78A;
  --rose: #C8A297;
  --burgundy: #5C1F1A;
  --line: rgba(26, 20, 16, 0.14);
  --line-strong: rgba(26, 20, 16, 0.32);

  /* Type */
  --display: 'Italiana', 'Cormorant Garamond', Georgia, serif;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Manrope', system-ui, -apple-system, sans-serif;

  /* Layout */
  --maxw: 1440px;
  --gutter: clamp(20px, 4vw, 56px);
  --section: clamp(80px, 12vw, 160px);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-weight: 400;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.6 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.05;
  mix-blend-mode: multiply;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: none; background: none; cursor: pointer; color: inherit; }
::selection { background: var(--ink); color: var(--bg); }

/* Type helpers */
.display { font-family: var(--display); font-weight: 400; letter-spacing: -0.015em; line-height: 0.92; }
.editorial { font-family: var(--serif); font-weight: 400; }
.ed-italic { font-family: var(--serif); font-style: italic; font-weight: 400; }
.eyebrow {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-2);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--bronze);
  display: inline-block;
}
.eyebrow.no-line::before { display: none; }

/* Wrap */
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  position: relative;
  z-index: 2;
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 18px 0;
  transition: padding 0.4s ease, background 0.4s ease;
}
.site-header.scrolled {
  padding: 12px 0;
  background: rgba(244, 236, 220, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.brand-mark {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--bg);
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-size: 20px;
  line-height: 1;
  position: relative;
}
.brand-mark::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  border: 1px solid rgba(244,236,220,0.3);
}
.brand-text { line-height: 1.05; }
.brand-text small {
  display: block;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-top: 4px;
}

.nav { display: flex; align-items: center; gap: 36px; }
.nav a {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0;
  height: 1px;
  background: var(--ink);
  transition: width 0.4s ease;
}
.nav a:hover::after, .nav a.active::after { width: 100%; }
.nav a.active { color: var(--ink); }

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: all 0.3s ease;
}
.header-cta:hover { background: var(--ink); color: var(--bg); }

.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
}
.menu-toggle span {
  display: block;
  width: 18px; height: 1px;
  background: var(--ink);
  position: relative;
}
.menu-toggle span::before,
.menu-toggle span::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: var(--ink);
}
.menu-toggle span::before { top: -5px; }
.menu-toggle span::after { top: 5px; }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--ink);
  color: var(--bg);
  z-index: 100;
  display: flex;
  flex-direction: column;
  padding: 24px var(--gutter) 40px;
  transform: translateY(-100%);
  transition: transform 0.6s cubic-bezier(0.76, 0, 0.24, 1);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(244,236,220,0.2);
}
.mobile-menu-top .brand-mark { background: var(--bg); color: var(--ink); }
.mobile-menu-close {
  width: 44px; height: 44px;
  border: 1px solid var(--bg);
  border-radius: 50%;
  position: relative;
}
.mobile-menu-close::before,
.mobile-menu-close::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 18px; height: 1px;
  background: var(--bg);
}
.mobile-menu-close::before { transform: translate(-50%, -50%) rotate(45deg); }
.mobile-menu-close::after { transform: translate(-50%, -50%) rotate(-45deg); }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 40px;
  flex: 1;
}
.mobile-nav a {
  font-family: var(--display);
  font-size: clamp(40px, 9vw, 72px);
  line-height: 1.05;
  color: var(--bg);
  letter-spacing: -0.01em;
}
.mobile-nav a span {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.3em;
  vertical-align: super;
  margin-right: 10px;
  opacity: 0.5;
}
.mobile-menu-foot {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(244,236,220,0.2);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(244,236,220,0.7);
}

@media (max-width: 920px) {
  .nav, .header-cta { display: none; }
  .menu-toggle { display: flex; }
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
}
.btn-primary { background: var(--ink); color: var(--bg); }
.btn-primary:hover { background: var(--burgundy); transform: translateY(-2px); }
.btn-ghost { border-color: var(--ink); color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--bg); }
.btn-arrow { transition: transform 0.35s ease; display: inline-block; }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* =========================================================
   PAGE HERO (sub pages)
   ========================================================= */
.page-hero {
  padding-top: 130px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.page-hero-top {
  display: flex;
  justify-content: space-between;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 56px;
}
.page-hero-top .dot {
  width: 5px; height: 5px;
  background: var(--bronze);
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
  vertical-align: middle;
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: end;
}
@media (min-width: 920px) {
  .page-hero-grid { grid-template-columns: 1.4fr 1fr; gap: 80px; }
}
.page-hero h1 {
  font-family: var(--display);
  font-size: clamp(60px, 11vw, 180px);
  line-height: 0.86;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.page-hero h1 em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--bronze);
}
.page-hero-lede {
  font-family: var(--serif);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 36ch;
}
.page-hero-lede em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink);
}
.page-hero-meta {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-3);
  flex-wrap: wrap;
  gap: 16px;
}
.page-hero-meta .ed-italic {
  text-transform: none;
  letter-spacing: 0;
  font-size: 16px;
  color: var(--bronze);
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--ink);
  color: var(--bg);
  padding: 80px 0 32px;
  position: relative;
  z-index: 2;
}
.footer-mast {
  font-family: var(--display);
  font-size: clamp(60px, 16vw, 240px);
  line-height: 0.85;
  letter-spacing: -0.025em;
  color: var(--bg);
  margin-bottom: 60px;
}
.footer-mast em { font-family: var(--serif); font-style: italic; color: var(--bronze-2); }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(244,236,220,0.18);
}
@media (min-width: 720px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; }
}
.footer-col .eyebrow { color: var(--bronze-2); margin-bottom: 16px; }
.footer-col .eyebrow::before { background: var(--bronze-2); }
.footer-col p, .footer-col a {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.6;
  color: var(--bg);
  display: block;
}
.footer-col a { transition: color 0.3s ease; }
.footer-col a:hover { color: var(--bronze-2); }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding-top: 32px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(244,236,220,0.5);
}
.footer-bottom a:hover { color: var(--bg); }

/* =========================================================
   REVEAL ANIMATIONS
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 0.08s; }
.reveal.delay-2 { transition-delay: 0.16s; }
.reveal.delay-3 { transition-delay: 0.24s; }
.reveal.delay-4 { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* =========================================================
   IMAGE PLACEHOLDER
   ========================================================= */
.ph {
  background: var(--bg-3);
  background-image:
    linear-gradient(135deg, rgba(140,94,60,0.08), rgba(140,94,60,0.02) 50%, rgba(26,20,16,0.06)),
    repeating-linear-gradient(45deg, transparent 0 12px, rgba(26,20,16,0.04) 12px 13px);
  position: relative;
  overflow: hidden;
}
.ph::after {
  content: attr(data-ph);
  position: absolute;
  bottom: 12px; left: 14px;
  font-family: ui-monospace, 'SF Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--ink-2);
  background: rgba(244,236,220,0.7);
  padding: 4px 8px;
  border-radius: 2px;
  text-transform: uppercase;
}

/* Optional: fill placeholder with image via background */
.ph[data-img] {
  background-image: var(--img);
  background-size: cover;
  background-position: center;
}
.ph[data-img]::after { display: none; }

/* =========================================================
   MARQUEE
   ========================================================= */
.marquee {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.marquee-track {
  display: flex;
  gap: 56px;
  animation: scroll-x 50s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee-track span {
  font-family: var(--display);
  font-size: clamp(36px, 6vw, 72px);
  letter-spacing: -0.01em;
  color: var(--ink);
}
.marquee-track em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--bronze);
  margin: 0 14px;
}
.marquee-track .star {
  color: var(--bronze);
  font-family: var(--display);
}
@keyframes scroll-x {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =========================================================
   WHATSAPP CTA + CONTACT INFO BLOCK
   ========================================================= */
.whatsapp-cta {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 4px;
  transition: all 0.4s ease;
}
.whatsapp-cta:hover { background: var(--burgundy); transform: translateY(-2px); }
.whatsapp-icon {
  width: 48px; height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--bronze-2);
  color: var(--ink);
  display: grid;
  place-items: center;
}
.whatsapp-text { flex: 1; }
.whatsapp-text strong {
  display: block;
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 0.01em;
  margin-bottom: 4px;
}
.whatsapp-text small {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze-2);
}
.whatsapp-arrow { font-size: 22px; flex-shrink: 0; }

/* =========================================================
   CARDS / ARTICLES
   ========================================================= */
.article {
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-decoration: none;
}
.article-img {
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-3);
  transition: transform 0.6s ease;
}
.article:hover .article-img { transform: scale(1.02); }
.article-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.article-meta .cat { color: var(--bronze); }
.article h3 {
  font-family: var(--display);
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.article h3 em { font-family: var(--serif); font-style: italic; color: var(--bronze); }
.article p {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink-2);
}

/* =========================================================
   PROSE (article body)
   ========================================================= */
.prose {
  max-width: 68ch;
  font-family: var(--serif);
  font-size: clamp(18px, 1.5vw, 21px);
  line-height: 1.65;
  color: var(--ink-2);
}
.prose > * + * { margin-top: 1.2em; }
.prose h2 {
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-top: 2em;
}
.prose h2 em { font-family: var(--serif); font-style: italic; color: var(--bronze); }
.prose h3 {
  font-family: var(--display);
  font-size: clamp(24px, 2.4vw, 32px);
  color: var(--ink);
  margin-top: 1.6em;
}
.prose strong { color: var(--ink); font-weight: 500; }
.prose em { font-style: italic; }
.prose ul, .prose ol { padding-left: 1.4em; }
.prose li { margin-bottom: 0.4em; }
.prose blockquote {
  border-left: 2px solid var(--bronze);
  padding-left: 28px;
  margin: 2em 0;
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
  font-style: normal;
}
.prose blockquote em { font-family: var(--serif); font-style: italic; color: var(--bronze); }
.prose figure { margin: 2em 0; }
.prose figure .ph { aspect-ratio: 16 / 10; }
.prose figcaption {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 12px;
}

/* =========================================================
   SECTION DIVIDERS
   ========================================================= */
.section-divider {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.section-divider .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--bronze);
  text-transform: none;
  letter-spacing: 0;
}

/* =========================================================
   SKIP NAVIGATION (Accessibility)
   ========================================================= */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  padding: 12px 24px;
  background: var(--ink);
  color: var(--bg);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  border-radius: 999px;
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 16px; }

/* =========================================================
   BACK TO TOP
   ========================================================= */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--bg);
  border: none;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 20px;
  z-index: 40;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease, transform 0.4s ease, background 0.3s ease;
  pointer-events: none;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover { background: var(--bronze); }
@media (max-width: 920px) {
  .back-to-top { bottom: 20px; right: 20px; width: 42px; height: 42px; font-size: 16px; }
}

/* =========================================================
   COOKIE NOTICE
   ========================================================= */
.cookie-notice {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(0);
  z-index: 200;
  background: var(--ink);
  color: var(--bg);
  padding: 20px 28px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  max-width: 700px;
  width: calc(100% - 32px);
  box-shadow: 0 8px 40px rgba(26,20,16,0.28);
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1), opacity 0.5s ease;
}
.cookie-notice.hidden {
  transform: translateX(-50%) translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-notice p {
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.5;
  color: rgba(244,236,220,0.85);
  flex: 1;
  min-width: 200px;
}
.cookie-notice p a { color: var(--bronze-2); border-bottom: 1px solid var(--bronze-2); }
.cookie-notice-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-notice .btn-accept {
  padding: 10px 20px;
  background: var(--bronze-2);
  color: var(--ink);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}
.cookie-notice .btn-accept:hover { background: var(--bg); }
.cookie-notice .btn-dismiss {
  padding: 10px 16px;
  background: transparent;
  color: rgba(244,236,220,0.6);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid rgba(244,236,220,0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}
.cookie-notice .btn-dismiss:hover { color: var(--bg); border-color: rgba(244,236,220,0.5); }

/* =========================================================
   BUTTON VARIANT: LIGHT (on dark backgrounds)
   ========================================================= */
.btn-primary.btn-light { background: var(--bg); color: var(--ink); border-color: var(--bg); }
.btn-primary.btn-light:hover { background: var(--bronze-2); border-color: var(--bronze-2); }
.btn-ghost.btn-light { border-color: rgba(244,236,220,0.45); color: var(--bg); }
.btn-ghost.btn-light:hover { background: var(--bg); color: var(--ink); }

/* =========================================================
   CONTACT CTA STRIP (faq.html, shared)
   ========================================================= */
.contact-cta {
  padding: var(--section) 0;
  background: var(--ink);
  color: var(--bg);
  margin: 0 calc(-1 * var(--gutter));
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.contact-cta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
@media (min-width: 920px) {
  .contact-cta-grid { grid-template-columns: 1.2fr 1fr auto; gap: 56px; }
}
.contact-cta-grid .eyebrow { color: var(--bronze-2); }
.contact-cta-grid .eyebrow::before { background: var(--bronze-2); }
.contact-cta-grid h2 {
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--bg);
  margin-top: 12px;
}
.contact-cta-grid h2 em { font-family: var(--serif); font-style: italic; color: var(--bronze-2); }
.contact-cta-grid p {
  font-family: var(--serif);
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
  color: rgba(244,236,220,0.7);
  max-width: 40ch;
}
.contact-cta-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* =========================================================
   KONTAKT PAGE
   ========================================================= */
.kontakt-layout {
  padding: 64px 0 var(--section);
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
}
@media (min-width: 920px) {
  .kontakt-layout { grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: start; }
}
.kontakt-info { position: sticky; top: 120px; }
.kontakt-info .eyebrow { margin-bottom: 20px; }
.kontakt-info h2 {
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.96;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}
.kontakt-info h2 em { font-family: var(--serif); font-style: italic; color: var(--bronze); }
.kontakt-block {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}
.kontakt-block:last-child { border-bottom: 1px solid var(--line); }
.kontakt-block .label {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 10px;
}
.kontakt-block p, .kontakt-block a {
  font-family: var(--serif);
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.6;
  color: var(--ink);
}
.kontakt-block a { border-bottom: 1px solid var(--line); transition: border-color 0.3s ease, color 0.3s ease; }
.kontakt-block a:hover { color: var(--bronze); border-color: var(--bronze); }
.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 24px;
  font-family: var(--serif);
  font-size: 17px;
  color: var(--ink-2);
  line-height: 1.5;
}
.hours-grid .day { color: var(--ink); font-weight: 500; }

.booking-form { background: var(--bg-2); padding: 40px; border-radius: 2px; }
@media (max-width: 600px) { .booking-form { padding: 28px 20px; } }
.booking-form .form-title {
  font-family: var(--display);
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1;
  letter-spacing: -0.015em;
  margin-bottom: 32px;
}
.booking-form .form-title em { font-family: var(--serif); font-style: italic; color: var(--bronze); }
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
@media (min-width: 480px) { .form-row.two-col { grid-template-columns: 1fr 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  padding: 14px 18px;
  font-family: var(--serif);
  font-size: 17px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.3s ease;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--bronze); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238B7C6C' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 18px center; padding-right: 44px; }
.form-note {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 16px;
  line-height: 1.6;
}
.form-note a { color: var(--bronze); border-bottom: 1px solid currentColor; }
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success .check {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
}
.form-success h3 {
  font-family: var(--display);
  font-size: 32px;
  margin-bottom: 12px;
}
.form-success p {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ink-2);
}

.map-wrap {
  margin-top: 56px;
  aspect-ratio: 16 / 7;
  overflow: hidden;
  border-radius: 2px;
  background: var(--bg-3);
}
.map-wrap iframe { width: 100%; height: 100%; border: none; display: block; }

/* =========================================================
   GALERIE PAGE
   ========================================================= */
.galerie-filter {
  padding: 24px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 56px;
}
.galerie-pill {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 9px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--ink-2);
  cursor: pointer;
  transition: all 0.3s ease;
  background: transparent;
}
.galerie-pill:hover,
.galerie-pill.active { background: var(--ink); color: var(--bg); border-color: var(--ink); }

.galerie-masonry {
  columns: 2;
  column-gap: 16px;
  padding-bottom: var(--section);
}
@media (min-width: 720px) { .galerie-masonry { columns: 3; } }
@media (min-width: 1100px) { .galerie-masonry { columns: 4; column-gap: 20px; } }
.galerie-item {
  break-inside: avoid;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: block;
}
@media (min-width: 1100px) { .galerie-item { margin-bottom: 20px; } }
.galerie-item .ph,
.galerie-item img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
}
.galerie-item:hover .ph,
.galerie-item:hover img { transform: scale(1.04); }
.galerie-item-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(0deg, rgba(26,20,16,0.7) 0%, transparent 100%);
  padding: 32px 16px 14px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.galerie-item:hover .galerie-item-caption { opacity: 1; }
.galerie-item-caption span {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bg);
}
.galerie-item[data-cat] .galerie-cat-badge {
  position: absolute;
  top: 12px; left: 12px;
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 5px 10px;
  background: rgba(244,236,220,0.9);
  color: var(--ink);
  border-radius: 999px;
}

/* =========================================================
   GUTSCHEIN PAGE
   ========================================================= */
.voucher-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: var(--section);
}
@media (min-width: 720px) { .voucher-grid { grid-template-columns: repeat(3, 1fr); } }
.voucher-card {
  border: 1px solid var(--line);
  padding: 40px 32px;
  position: relative;
  transition: border-color 0.4s ease, transform 0.4s ease;
  cursor: pointer;
}
.voucher-card:hover { border-color: var(--bronze); transform: translateY(-4px); }
.voucher-card.featured { border-color: var(--bronze); background: var(--bg-2); }
.voucher-card .badge {
  position: absolute;
  top: -12px; right: 24px;
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  background: var(--bronze);
  color: var(--bg);
  padding: 5px 12px;
  border-radius: 999px;
}
.voucher-card .vc-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--bronze);
  margin-bottom: 20px;
}
.voucher-card h3 {
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.0;
  letter-spacing: -0.015em;
  margin-bottom: 16px;
}
.voucher-card h3 em { font-family: var(--serif); font-style: italic; color: var(--bronze); }
.voucher-card p {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-2);
  margin-bottom: 28px;
}
.voucher-price {
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 60px);
  line-height: 1;
  color: var(--ink);
  margin-bottom: 28px;
}
.voucher-price small {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--ink-3);
  margin-left: 8px;
}
.voucher-form {
  max-width: 560px;
  margin: 0 auto;
  background: var(--bg-2);
  padding: 48px 40px;
  border-radius: 2px;
}
@media (max-width: 600px) { .voucher-form { padding: 32px 20px; } }
.voucher-form h2 {
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}
.voucher-form h2 em { font-family: var(--serif); font-style: italic; color: var(--bronze); }
.voucher-form .sub {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink-2);
  margin-bottom: 32px;
}

/* =========================================================
   404 PAGE
   ========================================================= */
.error-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 0 80px;
}
.error-num {
  font-family: var(--display);
  font-size: clamp(100px, 22vw, 320px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--bg-3);
  display: block;
  margin-bottom: 24px;
}
.error-title {
  font-family: var(--display);
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.error-title em { font-family: var(--serif); font-style: italic; color: var(--bronze); }
.error-text {
  font-family: var(--serif);
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 44ch;
  margin: 0 auto 36px;
}
.error-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* =========================================================
   IMPRESSUM / DATENSCHUTZ / AGB (Rechtliche Seiten)
   ========================================================= */
.legal-layout {
  padding: 64px 0 var(--section);
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
}
@media (min-width: 920px) {
  .legal-layout { grid-template-columns: 240px 1fr; gap: 80px; align-items: start; }
}
.legal-nav {
  position: sticky;
  top: 120px;
}
.legal-nav ul { list-style: none; padding: 0; }
.legal-nav li a {
  display: block;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  transition: color 0.3s ease;
}
.legal-nav li a:hover, .legal-nav li a.active { color: var(--ink); }
.legal-prose h1 {
  font-family: var(--display);
  font-size: clamp(44px, 7vw, 96px);
  line-height: 0.92;
  letter-spacing: -0.025em;
  margin-bottom: 48px;
}
.legal-prose h1 em { font-family: var(--serif); font-style: italic; color: var(--bronze); }
.legal-prose h2 {
  font-family: var(--display);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-top: 48px;
  margin-bottom: 16px;
  scroll-margin-top: 100px;
}
.legal-prose h3 {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  margin-top: 28px;
  margin-bottom: 10px;
}
.legal-prose p, .legal-prose li {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-2);
  margin-bottom: 12px;
}
.legal-prose ul, .legal-prose ol { padding-left: 1.4em; margin-bottom: 12px; }
.legal-prose a { color: var(--bronze); border-bottom: 1px solid var(--bronze); }
.legal-prose strong { color: var(--ink); font-weight: 500; }
.legal-update {
  display: inline-block;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 48px;
  padding: 8px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
}

/* =====================================================
   SEO CONTENT PROSE (behandlungen.html + others)
   ===================================================== */
.seo-content {
  padding: var(--section) 0;
  border-top: 1px solid var(--line);
  background: var(--bg-2);
}
.seo-prose {
  max-width: 800px;
}
.seo-prose h2 {
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 32px;
}
.seo-prose h2 em { font-family: var(--serif); font-style: italic; color: var(--bronze); }
.seo-prose h3 {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 40px 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.seo-prose p {
  font-family: var(--serif);
  font-size: clamp(17px, 1.3vw, 19px);
  line-height: 1.65;
  color: var(--ink-2);
  margin-bottom: 0;
  max-width: 68ch;
}
.seo-prose-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}

/* =====================================================
   PAGE LOAD TRANSITION
   ===================================================== */
#pageTransition {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: transform 1.1s cubic-bezier(0.76, 0, 0.24, 1);
}
#pageTransition.pt-out { transform: translateY(-100%); }
.pt-mark {
  font-family: var(--display);
  font-size: clamp(80px, 15vw, 160px);
  color: var(--bg);
  line-height: 1;
  opacity: 0;
  animation: ptFadeIn 0.55s cubic-bezier(0.4, 0, 0.2, 1) 0.05s forwards;
}
.pt-line {
  width: 1px;
  height: 0;
  background: var(--bronze);
  margin: 0 auto;
  animation: ptLineGrow 0.4s cubic-bezier(0.76, 0, 0.24, 1) 0.2s forwards;
}
@keyframes ptFadeIn {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes ptLineGrow {
  to { height: 48px; }
}

/* =====================================================
   CUSTOM CURSOR  (desktop pointer devices only)
   ===================================================== */
@media (pointer: fine) {
  body { cursor: none; }
  a, button, [role="button"], label, .voucher-card, .galerie-pill, .galerie-item, select { cursor: none; }
}
.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 5px; height: 5px;
  background: var(--bronze);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9990;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease, background 0.2s ease, opacity 0.3s ease;
  display: none;
  will-change: left, top;
}
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 34px; height: 34px;
  border: 1px solid rgba(140, 94, 60, 0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9989;
  transform: translate(-50%, -50%);
  transition: width 0.35s ease, height 0.35s ease, border-color 0.35s ease, opacity 0.3s ease;
  display: none;
  will-change: left, top;
}
@media (pointer: fine) {
  .cursor-dot  { display: block; }
  .cursor-ring { display: block; }
}
body.cursor-hover .cursor-dot  { width: 8px; height: 8px; background: var(--burgundy); }
body.cursor-hover .cursor-ring { width: 52px; height: 52px; border-color: var(--bronze); }
body.cursor-down  .cursor-dot  { transform: translate(-50%, -50%) scale(0.65); }
body.cursor-down  .cursor-ring { transform: translate(-50%, -50%) scale(0.82); }

/* =====================================================
   WORD-SPLIT STAGGERED REVEAL
   ===================================================== */
.word-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  line-height: inherit;
}
.word-inner {
  display: inline-block;
  transform: translateY(108%);
  transition: transform 0.85s cubic-bezier(0.76, 0, 0.24, 1);
  transition-delay: calc(var(--wi, 0) * 0.048s + 0.1s);
}
.words-visible .word-inner { transform: translateY(0); }

/* =====================================================
   HERO HEADLINE CLIP-PATH REVEAL
   ===================================================== */
.hero-name.reveal {
  opacity: 1 !important;
  transform: none !important;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1.55s cubic-bezier(0.76, 0, 0.24, 1) 0.15s !important;
}
.hero-name.reveal.in { clip-path: inset(0 0 0% 0); }

/* =====================================================
   ENHANCED SCALE REVEAL  (cards, gallery items)
   ===================================================== */
.reveal-scale {
  opacity: 0;
  transform: translateY(22px) scale(0.975);
  transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-scale.in { opacity: 1; transform: translateY(0) scale(1); }

/* =====================================================
   MOBILE POLISH  — global fixes across all pages
   ===================================================== */

/* Kontakt: contact info block — not sticky on mobile (single-column stack) */
@media (max-width: 919px) {
  .kontakt-info { position: static; }
}

/* Sub-page hero top bar: second label overflows on narrow phones — hide it */
@media (max-width: 479px) {
  .page-hero-top { flex-wrap: wrap; gap: 6px; }
  .page-hero-top > span:last-child { display: none; }
  .page-hero-meta > em.ed-italic { display: none; }
}

/* Map embed: taller aspect-ratio on mobile for usability */
@media (max-width: 600px) {
  .map-wrap { aspect-ratio: 4 / 3; }
}

/* Gallery captions: always visible on touch (no hover available) */
@media (hover: none) {
  .galerie-item-caption { opacity: 1; background: linear-gradient(0deg, rgba(26,20,16,0.55) 0%, transparent 70%); }
}

/* Cookie notice: compact layout on very small screens */
@media (max-width: 400px) {
  .cookie-notice { padding: 16px 18px; gap: 14px; }
  .cookie-notice p { font-size: 13px; }
}
