/* ============================================================
   ONLY SIGNATURE SPA — Stylesheet
   Dark luxury · Gold #D4AF37 · Warm charcoal · EN/FR
   ============================================================ */

:root {
  --gold:        #e4c04a;
  --gold-light:  #f0d878;
  --gold-dim:    #c9a227;
  --gold-ghost:  rgba(228, 192, 74, 0.14);
  --gold-border: rgba(228, 192, 74, 0.38);
  --gold-glow:   rgba(228, 192, 74, 0.28);
  --gold-inset:  rgba(228, 192, 74, 0.08);

  --wine:        #3d1218;
  --wine-deep:   #2a0c10;
  --wine-glow:   rgba(90, 28, 38, 0.45);

  --bg-0:   #0a0908;
  --bg-1:   #12100e;
  --bg-2:   #181512;
  --bg-card: #161311;
  --bg-card-h: #1e1a16;
  --bg-featured: linear-gradient(155deg, #1f1612 0%, #161311 50%, #12100e 100%);

  --text-100: #f5f1e8;
  --text-70:  #b8b0a4;
  --text-60:  #9a9286;
  --text-30:  #5c564c;

  --border:  rgba(255, 245, 220, 0.09);
  --border-strong: rgba(228, 192, 74, 0.22);

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring:   cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --ease-smooth:   cubic-bezier(0.4, 0, 0.2, 1);

  --t-fast: 0.2s;
  --t-base: 0.35s;
  --t-slow: 0.65s;

  --font-display: 'Palatino Linotype', Palatino, 'Book Antiqua', Georgia, serif;
  --font-serif:   Cambria, 'Liberation Serif', Georgia, 'Times New Roman', serif;
  --font-sans:    -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

  --r-sm: 2px;
  --r-md: 4px;
  --r-lg: 8px;

  --section-pad: clamp(5.5rem, 11vw, 9rem);
  --container: 1180px;

  /* Fixed header + notch: anchors & hero content clear the navbar */
  --nav-offset: calc(6rem + env(safe-area-inset-top, 0px));
  --tap-min: 44px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: var(--nav-offset);
}

body {
  position: relative;
  background-color: var(--bg-0);
  color: var(--text-100);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: rgba(228, 192, 74, 0.15);
  padding-left: env(safe-area-inset-left, 0px);
  padding-right: env(safe-area-inset-right, 0px);
}

/* Subtle grain / depth */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 10000;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { display: block; max-width: 100%; }
ul  { list-style: none; }
a   { text-decoration: none; }

::-webkit-scrollbar              { width: 6px; }
::-webkit-scrollbar-track        { background: var(--bg-0); }
::-webkit-scrollbar-thumb        { background: linear-gradient(180deg, var(--gold-dim), var(--wine)); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover  { background: var(--gold); }

::selection { background: rgba(228, 192, 74, 0.28); color: var(--text-100); }

.skip-nav {
  position: absolute;
  top: -100%;
  left: 1rem;
  padding: 0.55rem 1.1rem;
  background: var(--gold);
  color: #0a0908;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: var(--r-sm);
  z-index: 10001;
  letter-spacing: 0.04em;
}
.skip-nav:focus { top: 1rem; }

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}

.gold { color: var(--gold); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: var(--tap-min);
  padding: 0.85rem 2.1rem;
  border: 1px solid transparent;
  border-radius: var(--r-sm);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  touch-action: manipulation;
  transition:
    background var(--t-fast) var(--ease-smooth),
    border-color var(--t-fast) var(--ease-smooth),
    color var(--t-fast) var(--ease-smooth),
    transform var(--t-fast) var(--ease-smooth),
    box-shadow var(--t-fast) var(--ease-smooth);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(165deg, var(--gold-light) 0%, var(--gold) 35%, var(--gold-dim) 100%);
  color: #0a0908;
  border-color: var(--gold-light);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 4px 20px rgba(0, 0, 0, 0.35);
}
.btn-primary:hover,
.btn-primary:focus-visible {
  background: linear-gradient(165deg, #fff2a8 0%, var(--gold-light) 45%, var(--gold) 100%);
  transform: translateY(-3px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    0 12px 40px rgba(228, 192, 74, 0.45),
    0 0 0 1px var(--gold-border);
}

.btn-outline {
  background: rgba(10, 9, 8, 0.5);
  color: var(--gold);
  border-color: var(--gold-border);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.4);
}
.btn-outline:hover,
.btn-outline:focus-visible {
  background: var(--gold);
  color: #0a0908;
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(228, 192, 74, 0.35);
}

.btn-card {
  position: relative;
  z-index: 2;
  width: 100%;
  margin-top: 1.75rem;
  background: linear-gradient(180deg, rgba(228, 192, 74, 0.06) 0%, transparent 100%);
  color: var(--gold);
  border-color: var(--gold-border);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
}
.btn-card:hover,
.btn-card:focus-visible {
  background: var(--gold);
  color: #0a0908;
  border-color: var(--gold-light);
  box-shadow: 0 8px 32px rgba(228, 192, 74, 0.35);
}

.btn-contact {
  position: relative;
  z-index: 2;
  background: rgba(61, 18, 24, 0.25);
  color: var(--gold-light);
  border-color: var(--gold-border);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
}
.btn-contact:hover,
.btn-contact:focus-visible {
  background: var(--gold);
  color: #0a0908;
  border-color: var(--gold);
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ---------- Language switch ---------- */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.5rem;
  border: 1px solid var(--gold-border);
  border-radius: var(--r-sm);
  background: rgba(10, 9, 8, 0.65);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.lang-sep {
  color: var(--text-30);
  font-size: 0.7rem;
  user-select: none;
}
.lang-btn {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  min-width: var(--tap-min);
  min-height: var(--tap-min);
  padding: 0.35rem 0.65rem;
  border: none;
  border-radius: 1px;
  background: transparent;
  color: var(--text-60);
  cursor: pointer;
  touch-action: manipulation;
  transition: color var(--t-fast) ease, background var(--t-fast) ease;
}
.lang-btn:hover { color: var(--gold); }
.lang-btn.is-active {
  background: rgba(228, 192, 74, 0.15);
  color: var(--gold);
}
.lang-switch--footer {
  margin-top: 1.25rem;
  width: fit-content;
}

/* ---------- Ornaments ---------- */
.ornament--top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(61, 18, 24, 0.9) 20%,
    var(--gold) 50%,
    rgba(61, 18, 24, 0.9) 80%,
    transparent 100%
  );
  opacity: 0.85;
}

.section-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: -2rem;
  padding-top: 2.5rem;
  color: var(--gold);
  opacity: 0.55;
}
.section-ornament__line {
  width: min(18vw, 140px);
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-border), transparent);
}
.section-ornament__svg {
  width: 72px;
  height: 18px;
  flex-shrink: 0;
}

/* ---------- Sections ---------- */
.section {
  padding-block: var(--section-pad);
  position: relative;
}

/* In-page anchors land below the fixed navbar */
section[id] {
  scroll-margin-top: var(--nav-offset);
}

.section-header {
  text-align: center;
  margin-bottom: clamp(2.75rem, 5vw, 4.25rem);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.65rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 600;
}
.section-tag::before,
.section-tag::after {
  content: '';
  width: 2.25rem;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}
.section-tag::after {
  background: linear-gradient(to left, transparent, var(--gold));
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.8vw, 3.35rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.12;
  margin-bottom: 1.1rem;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
}

.section-intro {
  color: var(--text-60);
  font-size: clamp(0.92rem, 1.5vw, 1.02rem);
  max-width: 52ch;
  margin-inline: auto;
  line-height: 1.75;
}
.section-intro--accent {
  color: var(--text-70);
  font-style: italic;
  max-width: 48ch;
  border-left: 2px solid var(--gold-border);
  padding-left: 1.25rem;
  text-align: left;
  margin-inline: auto;
}
@media (min-width: 681px) {
  .section-intro--accent {
    text-align: center;
    border-left: none;
    border-top: 1px solid var(--gold-border);
    padding-left: 0;
    padding-top: 1rem;
    max-width: 56ch;
  }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity var(--t-slow) var(--ease-out-expo),
    transform var(--t-slow) var(--ease-out-expo);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 900;
  padding-top: calc(1.25rem + env(safe-area-inset-top, 0px));
  padding-bottom: 1.25rem;
  transition:
    background var(--t-base) var(--ease-smooth),
    padding var(--t-base) var(--ease-smooth),
    box-shadow var(--t-base) var(--ease-smooth);
}
.navbar.is-scrolled {
  background: rgba(10, 9, 8, 0.94);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  padding-top: calc(0.75rem + env(safe-area-inset-top, 0px));
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-strong);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}

.nav-inner {
  position: relative;
  z-index: 920;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 4px;
  flex-shrink: 0;
}
.logo-main {
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 400;
  color: var(--text-100);
  letter-spacing: 0.08em;
}
.logo-sub {
  font-size: 0.5rem;
  letter-spacing: 0.48em;
  color: var(--gold);
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  position: relative;
  color: var(--text-60);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  transition: color var(--t-fast) ease;
  padding: 0.5rem 0.15rem 0.35rem;
  touch-action: manipulation;
}
.nav-link::after {
  content: '';
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--t-base) var(--ease-smooth);
}
.nav-link:hover,
.nav-link:focus-visible,
.nav-link.is-active {
  color: var(--gold-light);
}
.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.is-active::after {
  transform: scaleX(1);
}

.nav-cta {
  background: linear-gradient(165deg, var(--gold-light), var(--gold) 50%, var(--gold-dim));
  color: #0a0908 !important;
  padding: 0.52rem 1.35rem;
  border-radius: var(--r-sm);
  font-weight: 800;
  letter-spacing: 0.1em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 4px 16px rgba(0, 0, 0, 0.3);
  transition: transform var(--t-fast) ease, box-shadow var(--t-fast) ease;
}
.nav-cta::after { display: none; }
.nav-cta:hover,
.nav-cta:focus-visible {
  color: #0a0908 !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(228, 192, 74, 0.4);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: var(--tap-min);
  height: var(--tap-min);
  min-width: var(--tap-min);
  min-height: var(--tap-min);
  background: rgba(61, 18, 24, 0.35);
  border: 1px solid var(--gold-border);
  border-radius: var(--r-sm);
  cursor: pointer;
  padding: 10px;
  flex-shrink: 0;
  touch-action: manipulation;
  transition: border-color var(--t-fast) ease, background var(--t-fast) ease;
  z-index: 910;
}
.hamburger:hover {
  border-color: var(--gold);
  background: rgba(228, 192, 74, 0.08);
}
.hamburger span {
  display: block;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold-light));
  border-radius: 2px;
  transition: transform var(--t-base) var(--ease-smooth), opacity var(--t-base) ease;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 9, 8, 0.72);
  backdrop-filter: blur(6px);
  z-index: 895;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-base) ease;
}
.nav-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100dvh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--nav-offset);
  padding-bottom: max(5.5rem, calc(env(safe-area-inset-bottom, 0px) + 4rem));
  box-sizing: border-box;
  background: radial-gradient(ellipse 120% 80% at 50% -20%, rgba(61, 18, 24, 0.35) 0%, var(--bg-0) 45%);
}

.hero-bg { position: absolute; inset: 0; pointer-events: none; }

.hero-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 30%, rgba(228, 192, 74, 0.07) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 85% 70%, rgba(61, 18, 24, 0.4) 0%, transparent 55%),
    radial-gradient(ellipse 45% 35% at 50% 100%, rgba(228, 192, 74, 0.05) 0%, transparent 50%);
}

.hero-diagonal {
  position: absolute;
  inset: -20%;
  background: repeating-linear-gradient(
    -32deg,
    transparent,
    transparent 3px,
    rgba(228, 192, 74, 0.02) 3px,
    rgba(228, 192, 74, 0.02) 4px
  );
  opacity: 0.6;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 45%, black 25%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 45%, black 25%, transparent 75%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(228, 192, 74, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(228, 192, 74, 0.055) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 85% 85% at 50% 42%, black 28%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 85% 85% at 50% 42%, black 28%, transparent 78%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.hero-glow--top {
  width: 75vw;
  height: 60vw;
  top: -25%;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(228, 192, 74, 0.12) 0%, transparent 68%);
  animation: glowDrift 18s ease-in-out infinite alternate;
}
.hero-glow--wine {
  width: 45vw;
  height: 40vw;
  bottom: -5%;
  left: -5%;
  background: radial-gradient(ellipse, var(--wine-glow) 0%, transparent 70%);
  animation: glowDrift 22s ease-in-out infinite alternate-reverse;
}
.hero-glow--bottom {
  width: 35vw;
  height: 28vw;
  bottom: -8%;
  right: -5%;
  background: radial-gradient(ellipse, rgba(228, 192, 74, 0.06) 0%, transparent 72%);
}

@keyframes glowDrift {
  0%   { transform: translate(0, 0) scale(1); opacity: 0.85; }
  100% { transform: translate(3%, 2%) scale(1.08); opacity: 1; }
}

.hero-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 90% 75% at 50% 45%, transparent 35%, rgba(10, 9, 8, 0.88) 100%),
    linear-gradient(to bottom, rgba(10, 9, 8, 0.5) 0%, transparent 18%, transparent 82%, rgba(10, 9, 8, 0.85) 100%);
}

.hero-frame {
  position: absolute;
  inset: clamp(1rem, 3vw, 2rem);
  pointer-events: none;
  z-index: 1;
  color: var(--gold);
  opacity: 0.35;
}
.hero-corner {
  position: absolute;
  width: clamp(48px, 8vw, 80px);
  height: clamp(48px, 8vw, 80px);
}
.hero-corner--tl { top: 0; left: 0; }
.hero-corner--tr { top: 0; right: 0; transform: scaleX(-1); }
.hero-corner--bl { bottom: 0; left: 0; transform: scaleY(-1); }
.hero-corner--br { bottom: 0; right: 0; transform: scale(-1); }

.hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  padding-inline: clamp(1.25rem, 6vw, 3rem);
  max-width: 860px;
  animation: heroIn 1.35s var(--ease-out-expo) both;
}

@keyframes heroIn {
  from { opacity: 0; transform: translateY(48px) scale(0.98); }
  to   { opacity: 1; transform: none; }
}

.hero-kicker {
  font-size: clamp(0.72rem, 1.4vw, 0.82rem);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.65rem;
  font-weight: 700;
  text-shadow: 0 0 24px var(--gold-glow);
}

.hero-address {
  font-size: clamp(0.78rem, 1.55vw, 0.9rem);
  letter-spacing: 0.04em;
  color: var(--text-70);
  margin-bottom: 1.35rem;
  max-width: 26em;
  margin-inline: auto;
  line-height: 1.5;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 10vw, 7.25rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 0.03em;
  margin-bottom: 1.35rem;
  text-shadow: 0 6px 48px rgba(0, 0, 0, 0.65), 0 0 60px rgba(61, 18, 24, 0.35);
}

.shimmer {
  background: linear-gradient(
    110deg,
    var(--gold-dim) 0%,
    var(--gold) 25%,
    var(--gold-light) 50%,
    var(--gold) 75%,
    var(--gold-dim) 100%
  );
  background-size: 260% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 5s ease-in-out infinite;
}
@keyframes shimmer {
  0%   { background-position: 100% 0; }
  50%  { background-position: 0% 0; }
  100% { background-position: 100% 0; }
}

.hero-subtitle {
  font-size: clamp(0.78rem, 1.6vw, 0.92rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-70);
  margin-bottom: 2.35rem;
  max-width: 36em;
  margin-inline: auto;
  line-height: 1.7;
}

.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  margin-bottom: 2.6rem;
}
.hero-divider span:first-child,
.hero-divider span:last-child {
  display: block;
  width: clamp(2.5rem, 10vw, 6rem);
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), var(--wine));
  border-radius: 1px;
}
.hero-divider span:last-child {
  background: linear-gradient(to left, transparent, var(--gold), var(--wine));
}
.divider-diamond {
  color: var(--gold-light) !important;
  font-size: 0.65rem;
  width: auto !important;
  height: auto !important;
  background: none !important;
  text-shadow: 0 0 12px var(--gold-glow);
}

.hero-actions {
  display: flex;
  gap: 1.15rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: max(1.25rem, calc(env(safe-area-inset-bottom, 0px) + 0.75rem));
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: var(--tap-min);
  height: var(--tap-min);
  min-width: var(--tap-min);
  min-height: var(--tap-min);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
  transition: opacity var(--t-fast) ease;
  touch-action: manipulation;
}
.hero-scroll:hover { opacity: 1; }
.hero-scroll .scroll-line {
  pointer-events: none;
}
.scroll-line {
  display: block;
  width: 2px;
  height: 56px;
  background: linear-gradient(to bottom, var(--gold-light), transparent);
  border-radius: 1px;
  animation: scrollBob 2.4s ease-in-out infinite;
}
@keyframes scrollBob {
  0%, 100% { transform: scaleY(1); opacity: 0.45; }
  50%       { transform: scaleY(1.25); opacity: 1; }
}

/* ---------- About ---------- */
.about {
  background: var(--bg-1);
  box-shadow: inset 0 1px 0 var(--border);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(268px, 1fr));
  gap: 1.65rem;
}

.about-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: clamp(1.85rem, 4vw, 2.65rem) 2rem;
  text-align: center;
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 8px 32px rgba(0, 0, 0, 0.35);
  transition:
    transform var(--t-base) var(--ease-spring),
    border-color var(--t-base) ease,
    box-shadow var(--t-base) ease;
}
.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--wine), var(--gold), var(--wine));
  opacity: 0.95;
  pointer-events: none;
}
.about-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(228, 192, 74, 0.06);
  pointer-events: none;
}
.about-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-border);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 20px 56px rgba(0, 0, 0, 0.5),
    0 0 40px var(--gold-glow);
}

.about-icon {
  display: block;
  font-size: 1.75rem;
  color: var(--gold);
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 1;
  text-shadow: 0 0 20px var(--gold-glow);
}
.about-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  margin-bottom: 0.8rem;
  position: relative;
  z-index: 1;
}
.about-card p {
  color: var(--text-60);
  font-size: 0.9rem;
  line-height: 1.78;
  position: relative;
  z-index: 1;
}

/* ---------- Services / Pricing ---------- */
.services {
  background: var(--bg-0);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.65rem;
}

.pricing-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: clamp(1.85rem, 4vw, 2.6rem) 2rem 2rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: default;
  box-shadow:
    inset 0 0 0 1px rgba(228, 192, 74, 0.05),
    0 10px 40px rgba(0, 0, 0, 0.4);
  transition:
    transform 0.5s var(--ease-spring),
    box-shadow 0.5s ease,
    border-color 0.5s ease;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 1.5rem;
  right: 1.5rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-base) ease;
}

.pricing-card::after {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(228, 192, 74, 0.08);
  border-radius: calc(var(--r-lg) - 6px);
  pointer-events: none;
  opacity: 0.7;
  transition: border-color var(--t-base) ease, opacity var(--t-base) ease;
}

.pricing-card:hover {
  transform: translateY(-10px) scale(1.012);
  border-color: var(--border-strong);
  box-shadow:
    inset 0 0 0 1px rgba(228, 192, 74, 0.12),
    0 28px 72px rgba(0, 0, 0, 0.55),
    0 0 50px var(--gold-glow);
}
.pricing-card:hover::before { opacity: 1; }
.pricing-card:hover::after {
  border-color: rgba(228, 192, 74, 0.2);
  opacity: 1;
}

.pricing-card--featured {
  background: var(--bg-featured);
  border-color: rgba(228, 192, 74, 0.25);
  box-shadow:
    inset 0 0 0 1px rgba(61, 18, 24, 0.35),
    0 12px 48px rgba(0, 0, 0, 0.45);
}
.pricing-card--featured::before { opacity: 0.5; }
.pricing-card--featured:hover {
  transform: translateY(-12px) scale(1.018);
  box-shadow:
    inset 0 0 0 1px rgba(228, 192, 74, 0.15),
    0 32px 80px rgba(0, 0, 0, 0.6),
    0 0 60px rgba(228, 192, 74, 0.2);
}

.card-label {
  position: relative;
  z-index: 1;
  display: inline-block;
  font-size: 0.6rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-30);
  border: 1px solid var(--border);
  padding: 0.28rem 0.75rem;
  border-radius: var(--r-sm);
  margin-bottom: 1.45rem;
  width: fit-content;
  background: rgba(0, 0, 0, 0.25);
}
.card-label--gold {
  color: var(--gold);
  border-color: var(--gold-border);
  background: rgba(228, 192, 74, 0.08);
}

.card-gem {
  position: relative;
  z-index: 1;
  display: block;
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 0.85rem;
  opacity: 0.65;
  transition: opacity var(--t-base) ease, transform var(--t-base) var(--ease-spring);
  filter: drop-shadow(0 0 8px var(--gold-glow));
}
.pricing-card:hover .card-gem {
  opacity: 1;
  transform: scale(1.12) rotate(12deg);
}

.card-name {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(1.18rem, 2vw, 1.45rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  margin-bottom: 0.75rem;
}

.card-desc {
  position: relative;
  z-index: 1;
  color: var(--text-60);
  font-size: 0.88rem;
  line-height: 1.78;
  flex-grow: 1;
}

.card-includes {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-top: 1rem;
}
.card-includes li {
  font-size: 0.8rem;
  color: var(--gold-light);
  letter-spacing: 0.05em;
}
.card-includes li::before { content: '✦ '; opacity: 0.8; }

.card-price {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  margin-top: 1.6rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--border);
}
.price-num {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 400;
  line-height: 1;
  color: var(--gold-light);
  transition: transform var(--t-base) var(--ease-spring);
  text-shadow: 0 0 28px var(--gold-glow);
}
.pricing-card:hover .price-num { transform: scale(1.05); }
.price-unit {
  font-size: 0.75rem;
  color: var(--text-30);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ---------- Gallery: mobile 2×4 grid · desktop horizontal strip ---------- */
.gallery {
  background: var(--bg-0);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.gallery-shell {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-top: clamp(1.25rem, 3vw, 2rem);
  padding-block: 0.5rem 1.25rem;
  padding-inline: 0;
  max-width: 100%;
}

.gallery-shell--desktop {
  align-items: center;
  gap: 0.35rem;
  padding-inline: clamp(0.35rem, 2vw, 0.75rem);
}

/* Arrows: desktop only (better touch UX on phone — swipe / grid) */
.gallery-arrow {
  display: none;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: var(--tap-min);
  height: var(--tap-min);
  min-width: var(--tap-min);
  min-height: var(--tap-min);
  border: 1px solid var(--gold-border);
  border-radius: var(--r-sm);
  background: rgba(10, 9, 8, 0.85);
  color: var(--gold-light);
  font-size: 1.65rem;
  line-height: 1;
  cursor: pointer;
  touch-action: manipulation;
  transition:
    background var(--t-fast) ease,
    border-color var(--t-fast) ease,
    color var(--t-fast) ease,
    box-shadow var(--t-fast) ease;
  z-index: 2;
}

.gallery--desktop .gallery-arrow {
  display: flex;
}

.gallery-arrow:hover,
.gallery-arrow:focus-visible {
  background: rgba(228, 192, 74, 0.12);
  border-color: var(--gold);
  box-shadow: 0 0 20px var(--gold-glow);
}

.gallery-scroller {
  flex: 1;
  min-width: 0;
  overflow: visible;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  mask-image: none;
  -webkit-mask-image: none;
  padding-inline: clamp(0.75rem, 3vw, 1.25rem);
}

.gallery--desktop .gallery-scroller {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 0.75rem;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-dim) rgba(0, 0, 0, 0.25);
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 1.25rem,
    #000 calc(100% - 1.25rem),
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 1.25rem,
    #000 calc(100% - 1.25rem),
    transparent 100%
  );
  padding-inline: 0;
}

.gallery--desktop .gallery-scroller::-webkit-scrollbar {
  height: 6px;
}
.gallery--desktop .gallery-scroller::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 3px;
}
.gallery--desktop .gallery-scroller::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, var(--gold-dim), var(--gold));
  border-radius: 3px;
}

/* Mobile: 2 columns × 4 rows */
.gallery-track {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  width: 100%;
  max-width: 42rem;
  margin-inline: auto;
  padding: 0.35rem 0 0.75rem;
}

.gallery--desktop .gallery-track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 1rem;
  width: max-content;
  max-width: none;
  margin-inline: 0;
  padding: 0.5rem 0.35rem 0.85rem;
}

.gallery-item {
  margin: 0;
  position: relative;
  min-width: 0;
  width: 100%;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow:
    inset 0 0 0 1px rgba(228, 192, 74, 0.08),
    0 10px 36px rgba(0, 0, 0, 0.4);
  transition:
    transform 0.45s var(--ease-spring),
    border-color var(--t-base) ease,
    box-shadow 0.45s ease;
}

.gallery--desktop .gallery-item {
  flex: 0 0 clamp(220px, 28vw, 300px);
  width: auto;
  scroll-snap-align: center;
  scroll-snap-stop: always;
}

@media (min-width: 900px) {
  .gallery--desktop .gallery-item {
    flex-basis: calc((100vw - 8rem) / 4);
    max-width: 320px;
  }
}

@media (min-width: 1280px) {
  .gallery--desktop .gallery-item {
    flex-basis: 300px;
  }
}

.gallery-item:hover {
  transform: scale(1.02) translateY(-3px);
  border-color: var(--gold-border);
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.5),
    0 0 32px var(--gold-glow);
}

.gallery-img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
}

.gallery-item--missing {
  background:
    linear-gradient(145deg, rgba(228, 192, 74, 0.06), transparent 45%),
    repeating-linear-gradient(
      -45deg,
      rgba(255, 255, 255, 0.03) 0 6px,
      rgba(0, 0, 0, 0.12) 6px 12px
    );
  min-height: 6rem;
}

.gallery-item--missing .gallery-img {
  display: none;
}

@media (max-width: 720px) {
  .gallery-item:active {
    transform: scale(0.99);
  }
}

@media (prefers-reduced-motion: reduce) {
  .gallery--desktop .gallery-scroller {
    scroll-behavior: auto;
  }
  .gallery-item {
    transition: none;
  }
  .gallery-item:hover,
  .gallery-item:active {
    transform: none;
  }
}

/* ---------- Contact ---------- */
.contact {
  background: var(--bg-1);
  box-shadow: inset 0 1px 0 var(--border);
}

.contact-grid--two {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  max-width: 820px;
  margin-inline: auto;
}

.contact-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: clamp(2rem, 4vw, 2.75rem) 2rem;
  text-align: center;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 10px 40px rgba(0, 0, 0, 0.35);
  transition:
    transform var(--t-base) var(--ease-spring),
    border-color var(--t-base) ease,
    box-shadow var(--t-base) ease;
}
.contact-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(228, 192, 74, 0.06);
  pointer-events: none;
}
.contact-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-border);
  box-shadow:
    0 20px 56px rgba(0, 0, 0, 0.45),
    0 0 36px var(--gold-glow);
}

.contact-icon {
  display: block;
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1.15rem;
  filter: drop-shadow(0 0 12px var(--gold-glow));
}
.contact-card h3 {
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  margin-bottom: 0.7rem;
}
.contact-card p {
  color: var(--text-60);
  font-size: 0.88rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.contact-address {
  display: block;
  font-size: 0.95rem;
  color: var(--gold-light);
  letter-spacing: 0.06em;
  font-weight: 600;
  text-decoration: none;
  text-underline-offset: 0.2em;
  transition: color var(--t-fast) ease, text-decoration-color var(--t-fast) ease;
}
.contact-address:hover,
.contact-address:focus-visible {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-color: rgba(228, 192, 74, 0.55);
}

/* ---------- Footer ---------- */
.footer {
  background: linear-gradient(180deg, #060504 0%, #0a0908 100%);
  border-top: 1px solid var(--border-strong);
  padding-top: clamp(3.25rem, 6vw, 5.25rem);
  padding-bottom: 2.25rem;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: 2.5rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.footer-logo {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 1rem;
}
.footer-tagline {
  color: var(--text-60);
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 0.5rem;
  max-width: 32ch;
}
.footer-address {
  color: var(--text-70);
  font-size: 0.8rem;
  line-height: 1.55;
  letter-spacing: 0.03em;
  margin-bottom: 0.65rem;
  max-width: 38ch;
}
.footer-web a {
  font-size: 0.78rem;
  color: var(--gold);
  opacity: 0.75;
  transition: opacity var(--t-fast) ease;
}
.footer-web a:hover { opacity: 1; }

.footer-nav h4,
.footer-prices h4 {
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.15rem;
  font-weight: 700;
}
.footer-nav ul,
.footer-prices ul {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.footer-nav a {
  color: var(--text-30);
  font-size: 0.86rem;
  transition: color var(--t-fast) ease;
}
.footer-nav a:hover { color: var(--gold-light); }

.footer-prices li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--text-30);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-prices li:last-child { border-bottom: none; }
.footer-prices li span:last-child {
  color: var(--gold);
  opacity: 0.75;
  flex-shrink: 0;
  font-weight: 600;
}

.footer-bottom {
  text-align: center;
}
.footer-bottom p {
  color: var(--text-30);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

/* ---------- Tablet ---------- */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .pricing-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

/* ---------- Mobile ---------- */
@media (max-width: 680px) {
  .hamburger { display: flex; }

  .lang-switch {
    order: -1;
  }

  .nav-menu {
    position: fixed;
    inset-block: 0;
    right: -100%;
    width: min(82vw, 300px);
    background: linear-gradient(165deg, rgba(18, 16, 14, 0.98) 0%, rgba(10, 9, 8, 0.99) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid var(--gold-border);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    z-index: 900;
    padding: max(2rem, calc(env(safe-area-inset-top, 0px) + 1.25rem)) 2rem max(2rem, env(safe-area-inset-bottom, 0px));
    box-shadow: -12px 0 48px rgba(0, 0, 0, 0.5);
    transition: right var(--t-slow) var(--ease-out-expo);
  }
  .nav-menu.is-open { right: 0; }

  .nav-overlay { display: block; }

  .nav-link {
    font-size: 0.82rem;
    letter-spacing: 0.2em;
    min-height: var(--tap-min);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1rem;
  }
  .nav-cta { padding: 0.68rem 1.85rem; font-size: 0.75rem; }

  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { min-width: 220px; justify-content: center; }

  .about-grid,
  .contact-grid--two { grid-template-columns: 1fr; max-width: 420px; }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-inline: auto;
  }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}

@media (max-width: 400px) {
  .hero-title { font-size: 2.75rem; }
  .section-title { font-size: 1.85rem; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .shimmer { animation: none; background-position: 50% 0; }
  .scroll-line { animation: none; }
  .hero-glow--top,
  .hero-glow--wine { animation: none; }
  html { scroll-behavior: auto; }
}
