/* ====================================================
   LA CAVE DE MOUGINS — Cave & bar à vins · Mougins
   Direction artistique : vert sapin + or + touches bourgogne · DARK
   Stack : Fraunces (display) + Inter Tight (body)
   ==================================================== */

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

:root {
  --bg: #1F2D24;           /* vert sapin */
  --bg-soft: #243630;
  --bg-deep: #161E18;
  --ink: #F4EFE7;          /* ivoire texte sur dark */
  --ink-soft: #D8CFC0;
  --ink-mute: rgba(244, 239, 231, 0.62);
  --ink-dim: rgba(244, 239, 231, 0.38);
  --accent: #D4A85F;       /* or */
  --accent-deep: #B68940;
  --accent-soft: #E5BD7C;
  --burgundy: #5C2333;     /* bourgogne — touches discrètes */
  --burgundy-soft: rgba(92, 35, 51, 0.45);
  --line: rgba(244, 239, 231, 0.10);
  --line-soft: rgba(244, 239, 231, 0.05);
  --glass: rgba(31, 45, 36, 0.65);
  --glass-strong: rgba(22, 30, 24, 0.82);

  --font-display: 'Fraunces', 'Cormorant Garamond', 'Times New Roman', serif;
  --font-body: 'Inter Tight', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1260px;
  --pad: clamp(1.25rem, 4vw, 3rem);
  --section: clamp(3.5rem, 8vw, 8rem);
  --radius: 4px;
  --radius-lg: 12px;

  --ease: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html.menu-locked, html.menu-locked body { overflow: hidden; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 350;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-feature-settings: "ss01", "cv11";
}

img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { background: none; border: 0; color: inherit; font: inherit; cursor: pointer; }
ul, ol { list-style: none; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }
::selection { background: var(--accent); color: var(--bg-deep); }

.mesh-bg { position: relative; isolation: isolate; }
.mesh-bg::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(at 18% 22%, rgba(212, 168, 95, 0.10) 0px, transparent 50%),
    radial-gradient(at 82% 12%, rgba(92, 35, 51, 0.14) 0px, transparent 50%),
    radial-gradient(at 50% 88%, rgba(212, 168, 95, 0.07) 0px, transparent 50%);
  z-index: -1; opacity: 0.9; pointer-events: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.015em;
  font-variation-settings: "SOFT" 50, "WONK" 0, "opsz" 144;
  color: var(--ink);
}
h1 em, h2 em, h3 em { font-style: italic; color: var(--accent); font-weight: 400; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.65rem;
  font-family: var(--font-body);
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.eyebrow::before {
  content: ''; width: 28px; height: 1px; background: var(--accent);
}

.section-title { font-size: clamp(2.25rem, 5.4vw, 4.5rem); margin-bottom: 1.25rem; max-width: 22ch; }
.section-sub { color: var(--ink-mute); max-width: 56ch; font-size: 1.0625rem; }
.section-head { margin-bottom: clamp(2rem, 5vw, 4rem); max-width: 720px; }
.center { text-align: center; }
em { font-style: italic; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--pad); }

.skip-link {
  position: absolute; left: -9999px;
  background: var(--accent); color: var(--bg-deep);
  padding: 0.75rem 1rem; z-index: 9999;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.85rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 1rem 1.75rem;
  transition: all 0.4s var(--ease);
  position: relative; overflow: hidden;
  border: 1px solid transparent; cursor: pointer;
}
.btn-primary {
  background: var(--accent); color: var(--bg-deep);
  background-image: linear-gradient(120deg, var(--accent) 0%, var(--accent) 50%, var(--accent-soft) 50%, var(--accent-soft) 100%);
  background-size: 220% 100%;
  background-position: 0% 0%;
}
.btn-ghost { background: transparent; color: var(--ink); border-color: rgba(244, 239, 231, 0.28); }
.btn-nav { padding: 0.7rem 1.25rem; font-size: 0.78rem; background: var(--accent); color: var(--bg-deep); }
@media (hover: hover) {
  .btn-primary:hover {
    background-position: 100% 0%;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px -10px rgba(212, 168, 95, 0.45);
  }
  .btn-ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
  .btn-nav:hover { background: var(--accent-soft); }
}

/* NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.25rem 0;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease), padding 0.3s var(--ease), border-color 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: var(--glass-strong);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  padding: 0.85rem 0;
  border-bottom-color: var(--line);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem;
}
.logo { display: flex; align-items: center; gap: 0.85rem; }
.logo-mark {
  font-family: var(--font-display);
  font-size: 1.8rem; font-style: italic;
  color: var(--accent); font-weight: 500; line-height: 1;
}
.logo-text { font-family: var(--font-display); font-size: 1.2rem; letter-spacing: 0.02em; color: var(--ink); }
.logo-sub {
  display: block; font-family: var(--font-body);
  font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-mute); margin-top: 2px;
}
.nav-links { display: flex; gap: 2rem; font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; }
.nav-links a { position: relative; padding: 0.5rem 0; color: var(--ink-mute); transition: color 0.3s var(--ease); }
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--accent);
  transition: width 0.4s var(--ease);
}
@media (hover: hover) {
  .nav-links a:hover { color: var(--ink); }
  .nav-links a:hover::after { width: 100%; }
}

.lang-toggle {
  display: inline-flex; align-items: center; gap: 0.3rem;
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-mute); margin-right: 0.5rem;
}
.lang-toggle a { padding: 0.3rem 0.5rem; transition: color 0.3s var(--ease); }
.lang-toggle a.active { color: var(--accent); }

.hamburger {
  display: none; width: 28px; height: 28px;
  flex-direction: column; justify-content: center; gap: 5px;
  background: transparent; z-index: 110; position: relative;
}
.hamburger span {
  display: block; height: 1.5px; width: 100%;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
  transform-origin: center;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 105;
  background: var(--glass-strong);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  gap: 1.5rem;
  font-size: 1.3rem;
  font-family: var(--font-display);
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.mobile-menu[data-open="true"] { opacity: 1; pointer-events: auto; }
.mobile-menu a { color: var(--ink); }
.mobile-menu .mobile-tel { font-family: var(--font-body); font-size: 0.95rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-top: 1rem; }
.mobile-menu .mobile-cta { margin-top: 1.5rem; }

@media (max-width: 880px) {
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: flex; }
}

/* HERO video */
.hero {
  position: relative;
  height: 100vh; min-height: 600px; height: 100dvh;
  display: flex; align-items: flex-end;
  padding-bottom: clamp(2rem, 7vw, 6rem);
  overflow: hidden; isolation: isolate;
}
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media video, .hero-media img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg,
    rgba(22, 30, 24, 0.30) 0%,
    rgba(22, 30, 24, 0.55) 50%,
    rgba(22, 30, 24, 0.82) 100%);
}
.hero-content {
  position: relative;
  max-width: var(--container); margin: 0 auto;
  padding: 0 var(--pad); width: 100%; color: var(--ink);
}
.hero-title {
  font-size: clamp(2.75rem, 8vw, 6.5rem);
  line-height: 0.96;
  margin-bottom: 1.5rem; max-width: 20ch;
  text-shadow: 0 2px 30px rgba(0,0,0,0.4);
}
.hero-title .line { display: block; }
.hero-title .italic { font-style: italic; color: var(--accent-soft); font-weight: 300; }
.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 350; opacity: 0.92;
  max-width: 56ch; margin-bottom: 2.5rem;
}
.hero-rating {
  display: inline-flex; align-items: center; gap: 0.8rem;
  margin-bottom: 1.75rem; font-size: 0.92rem;
}
.hero-rating .stars { color: var(--accent-soft); letter-spacing: 0.15em; font-size: 1.05rem; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.hero-scroll {
  position: absolute;
  bottom: clamp(1.25rem, 3vw, 2rem); left: 50%;
  transform: translateX(-50%);
  width: 22px; height: 38px;
  border: 1px solid rgba(244, 239, 231, 0.4);
  border-radius: 12px;
  display: flex; justify-content: center;
}
.hero-scroll::after {
  content: '';
  width: 3px; height: 8px;
  background: rgba(244, 239, 231, 0.8);
  border-radius: 2px; margin-top: 7px;
  animation: hero-scroll 1.6s ease-in-out infinite;
}
@keyframes hero-scroll {
  0%, 100% { transform: translateY(0); opacity: 0; }
  50% { transform: translateY(8px); opacity: 1; }
}

section { padding: var(--section) 0; }
section + section { border-top: 1px solid var(--line-soft); }

/* QUIET LINE (full-bleed différenciateur) */
.quiet-line {
  text-align: center;
  padding: clamp(4rem, 9vw, 7rem) var(--pad);
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg) 100%);
  position: relative;
  isolation: isolate;
}
.quiet-line::before {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(at 30% 50%, rgba(212, 168, 95, 0.10) 0px, transparent 60%),
    radial-gradient(at 70% 50%, rgba(92, 35, 51, 0.18) 0px, transparent 60%);
}
.quiet-line blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.6rem, 4vw, 2.75rem);
  line-height: 1.25;
  max-width: 22ch;
  margin: 0 auto;
  color: var(--ink);
  position: relative;
}
.quiet-line blockquote::before,
.quiet-line blockquote::after {
  color: var(--accent);
  font-size: 1.5em;
  line-height: 0;
  position: relative;
  top: 0.3em;
  margin: 0 0.15em;
}
.quiet-line .signature {
  margin-top: 1.8rem;
  display: inline-flex; align-items: center; gap: 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.quiet-line .signature::before,
.quiet-line .signature::after {
  content: ''; width: 40px; height: 1px; background: var(--accent); opacity: 0.55;
}

/* WINE LIST styling (carte page) */
.menu-section { margin-top: 3rem; }
.menu-category {
  font-family: var(--font-body);
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex; align-items: center; gap: 0.85rem;
  margin: 3rem 0 1.5rem;
}
.menu-category::before, .menu-category::after {
  content: ''; flex: 1; height: 1px; background: var(--line);
}
.menu-items { display: grid; gap: 1.5rem; }
.menu-item {
  padding: 0.5rem 0 1.25rem;
  border-bottom: 1px dashed var(--line);
}
.menu-item-head {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.3rem;
}
.menu-item-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--ink);
}
.menu-item-region {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-left: 0.5rem;
}
.menu-item-price {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--accent);
  font-style: italic;
  white-space: nowrap;
}
.menu-item-desc {
  color: var(--ink-mute);
  font-size: 0.95rem;
  font-style: italic;
  max-width: 70ch;
}

/* About — pillars (Cave / Bar / Dégustations) */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.pillar {
  padding: 2rem 1.75rem;
  background: var(--glass);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
}
@media (hover: hover) {
  .pillar:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px -20px rgba(0, 0, 0, 0.6);
    border-color: var(--accent);
  }
}
.pillar-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: var(--bg-deep);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
}
.pillar h3 { font-size: 1.5rem; margin-bottom: 0.6rem; }
.pillar p { color: var(--ink-mute); font-size: 0.97rem; }
@media (max-width: 820px) { .pillars { grid-template-columns: 1fr; gap: 1.25rem; } }

/* Stats row (4 chiffres-clés sous hero, optional) */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: clamp(2rem, 4vw, 3rem) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat { text-align: center; }
.stat-value {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--accent);
}
.stat-label {
  display: block; margin-top: 0.4rem;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
@media (max-width: 720px) { .stats-row { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 1rem; } }

/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}
.gallery-item { overflow: hidden; border-radius: var(--radius); position: relative; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease);
  filter: saturate(1.05);
}
@media (hover: hover) { .gallery-item:hover img { transform: scale(1.05); } }
.gallery-item.large { grid-column: span 8; aspect-ratio: 4/3; }
.gallery-item.tall { grid-column: span 4; aspect-ratio: 3/4; }
.gallery-item.wide { grid-column: span 6; aspect-ratio: 16/10; }
.gallery-item.normal { grid-column: span 4; aspect-ratio: 1; }
@media (max-width: 820px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
  .gallery-item.large, .gallery-item.tall, .gallery-item.wide, .gallery-item.normal {
    grid-column: span 1; aspect-ratio: 1;
  }
}

/* REVIEWS */
.review-hero {
  display: flex; align-items: center; gap: 2rem;
  padding: 2.5rem;
  background: var(--glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.review-score {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 6.5rem);
  font-weight: 500; line-height: 1;
  color: var(--accent);
}
.review-score em { font-style: italic; }
.review-meta { flex: 1; min-width: 200px; }
.review-meta .stars { color: var(--accent); font-size: 1.4rem; letter-spacing: 0.15em; margin-bottom: 0.5rem; }
.review-meta .count { font-size: 0.92rem; color: var(--ink-mute); letter-spacing: 0.04em; }
.review-meta .source { font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-dim); margin-top: 0.5rem; }
.reviews-list {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.review-card {
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-soft);
  position: relative;
}
.review-card::before {
  content: '';
  position: absolute; top: 0; left: 0; width: 3px; height: 100%;
  background: var(--burgundy);
  opacity: 0.7;
}
.review-card:nth-child(2)::before { background: var(--accent-deep); opacity: 0.8; }
.review-card:nth-child(3)::before { background: var(--accent); opacity: 0.7; }
.review-card .quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.55;
  margin-bottom: 1rem;
  color: var(--ink-soft);
}
.review-card .author {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
@media (max-width: 820px) { .reviews-list { grid-template-columns: 1fr; } }

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  margin-top: 3rem;
  align-items: start;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; gap: 2rem; } }
.info-block { margin-bottom: 2.25rem; }
.info-label {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 0.5rem;
}
.info-value {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--ink);
}
.info-value a {
  border-bottom: 1px solid var(--line);
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
}
@media (hover: hover) {
  .info-value a:hover { color: var(--accent); border-bottom-color: var(--accent); }
}
.hours-table { margin-top: 0.5rem; border-top: 1px solid var(--line); }
.hours-row {
  display: flex; justify-content: space-between;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.95rem;
}
.hours-row.closed { color: var(--ink-dim); }
.hours-row .day { font-weight: 500; }
.map-block {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  filter: invert(0.92) hue-rotate(180deg);
}
.map-block iframe { width: 100%; height: 100%; border: 0; }

/* CTA strip */
.cta-strip {
  background: linear-gradient(120deg, var(--bg-deep) 0%, var(--bg-soft) 100%);
  color: var(--ink);
  padding: clamp(3rem, 8vw, 6rem) 0;
  text-align: center;
  position: relative; overflow: hidden; isolation: isolate;
}
.cta-strip::before {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(at 20% 20%, rgba(212, 168, 95, 0.22) 0px, transparent 50%),
    radial-gradient(at 80% 80%, rgba(92, 35, 51, 0.28) 0px, transparent 50%);
  animation: meshrotate 24s linear infinite;
}
@keyframes meshrotate {
  from { transform: rotate(0deg) scale(1.4); }
  to { transform: rotate(360deg) scale(1.4); }
}
.cta-strip h2 {
  font-size: clamp(2rem, 5vw, 3.75rem);
  margin-bottom: 1rem;
  max-width: 22ch;
  margin-left: auto; margin-right: auto;
}
.cta-strip p { color: rgba(244, 239, 231, 0.7); max-width: 50ch; margin: 0 auto 2.5rem; }

/* FOOTER */
.site-footer {
  background: var(--bg-deep);
  padding: clamp(3rem, 6vw, 5rem) 0 2rem;
  font-size: 0.92rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 820px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; } }
.footer-col h4 {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 1rem;
}
.footer-col p, .footer-col li { color: var(--ink-mute); margin-bottom: 0.5rem; }
.footer-col a {
  border-bottom: 1px solid transparent;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
@media (hover: hover) {
  .footer-col a:hover { color: var(--accent); border-color: var(--accent); }
}
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
  color: var(--ink-mute);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom .author a {
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
}

.mobile-sticky-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 90;
  padding: 0.6rem;
  background: var(--glass-strong);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-top: 1px solid var(--line);
  gap: 0.4rem;
}
.mobile-sticky-cta a {
  flex: 1;
  padding: 0.85rem 0.5rem;
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  text-align: center;
  border-radius: var(--radius);
}
.mobile-sticky-cta .sticky-tel {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.mobile-sticky-cta .sticky-book {
  background: var(--accent);
  color: var(--bg-deep);
}
@media (max-width: 720px) {
  .mobile-sticky-cta { display: flex; }
  body { padding-bottom: 70px; }
}

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out); }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

@media (hover: hover) and (pointer: fine) {
  .cursor-dot {
    position: fixed; top: 0; left: 0;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--accent);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.25s var(--ease), height 0.25s var(--ease), background 0.25s var(--ease);
    mix-blend-mode: difference;
  }
  .cursor-dot.is-hover {
    width: 36px; height: 36px;
    background: var(--accent-soft);
  }
}

.page-header {
  padding: clamp(8rem, 16vw, 12rem) 0 clamp(3rem, 6vw, 5rem);
  text-align: center;
  position: relative; isolation: isolate;
}
.page-header::before {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(at 30% 30%, rgba(212, 168, 95, 0.18) 0px, transparent 50%),
    radial-gradient(at 70% 70%, rgba(92, 35, 51, 0.22) 0px, transparent 50%);
}
.page-header h1 { font-size: clamp(2.5rem, 7vw, 5rem); margin-bottom: 1rem; }
.page-header p { color: var(--ink-mute); max-width: 56ch; margin: 0 auto; }

/* TWO-COL ABOUT (legacy si besoin) */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
@media (max-width: 820px) { .about-grid { grid-template-columns: 1fr; } }
.about-media {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.about-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
@media (hover: hover) { .about-media:hover img { transform: scale(1.04); } }
