/* ============================================================
   Friseursalon Alen — Design System
   Handcrafted premium styles · Light & Dark · Motion system
   ============================================================ */

:root {
  /* Brand */
  --gold: #c9992f;
  --gold-soft: #e3c069;
  --gold-deep: #9c7420;
  --blue: #3b82f6;

  /* Light mode palette (warm, not inverted) */
  --bg: #f7f1e8;
  --bg-2: #efe5d6;
  --surface: #fffdf9;
  --surface-2: #f4ecdf;
  --text: #241d16;
  --text-soft: #5c5347;
  --text-mute: #8a8073;
  --line: #e4d8c6;
  --shadow: 30px 60px -30px rgba(90, 62, 20, 0.28);
  --grad-hero: radial-gradient(1500px 900px at 88% -25%, rgba(201,153,47,0.15), transparent 75%),
               radial-gradient(1200px 800px at -12% 8%, rgba(120,90,200,0.08), transparent 72%);
  --glass: rgba(255, 253, 249, 0.72);
  --glass-line: rgba(201, 153, 47, 0.22);
  color-scheme: light;
}

html.dark {
  --bg: #08080a;
  --bg-2: #0e0e11;
  --surface: #141417;
  --surface-2: #1b1b1f;
  --text: #f4f1ea;
  --text-soft: #b9b3a7;
  --text-mute: #7d776c;
  --line: #26262b;
  --shadow: 30px 60px -30px rgba(0, 0, 0, 0.75);
  --grad-hero: radial-gradient(1500px 900px at 88% -25%, rgba(201,153,47,0.16), transparent 75%),
               radial-gradient(1200px 820px at -12% 4%, rgba(59,130,246,0.09), transparent 72%);
  --glass: rgba(18, 18, 21, 0.62);
  --glass-line: rgba(201, 153, 47, 0.20);
  color-scheme: dark;
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; scroll-padding-top: 90px; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: -0.01em;
  overflow-x: clip;
  transition: background 0.5s ease, color 0.5s ease;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .display {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: var(--gold); color: #fff; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
section { position: relative; }

/* Playful, page-wide decorative backdrop (soft colour blobs behind everything) */
body::before {
  content: ""; position: fixed; inset: 0; z-index: -10; pointer-events: none;
  background:
    radial-gradient(680px 680px at 10% 12%, rgba(201,153,47,0.10), transparent 62%),
    radial-gradient(760px 760px at 92% 38%, rgba(120,90,200,0.08), transparent 62%),
    radial-gradient(640px 640px at 26% 82%, rgba(201,153,47,0.07), transparent 60%),
    radial-gradient(720px 720px at 82% 92%, rgba(120,90,200,0.06), transparent 62%);
}
html.dark body::before {
  background:
    radial-gradient(680px 680px at 10% 12%, rgba(201,153,47,0.14), transparent 62%),
    radial-gradient(760px 760px at 92% 38%, rgba(59,130,246,0.11), transparent 62%),
    radial-gradient(640px 640px at 26% 82%, rgba(201,153,47,0.10), transparent 60%),
    radial-gradient(720px 720px at 82% 92%, rgba(59,130,246,0.09), transparent 62%);
}

/* Alternating panels fade softly in and out instead of hard colour edges */
.section-alt {
  background: linear-gradient(180deg,
    transparent 0%, var(--bg-2) 10%, var(--bg-2) 90%, transparent 100%);
}

/* Fluid type */
.hd-hero { font-size: clamp(2.6rem, 8vw, 6.6rem); }
.hd-1 { font-size: clamp(2rem, 5vw, 3.6rem); }
.hd-2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
.eyebrow {
  font-family: "Inter", sans-serif;
  font-weight: 600; font-size: 0.78rem;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold); display: inline-flex; align-items: center; gap: 0.7rem;
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: var(--gold); opacity: 0.7; }
.text-soft { color: var(--text-soft); }
.text-gold { color: var(--gold); }
.serif-italic { font-family: "Playfair Display", serif; font-style: italic; font-weight: 500; }

/* ---------- Cursor (custom cursor removed on request) ---------- */
.cursor-dot, .cursor-ring { display: none !important; }

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-soft));
  z-index: 1000; box-shadow: 0 0 14px rgba(201,153,47,0.6);
}

/* ---------- Loader ---------- */
.loader {
  position: fixed; inset: 0; z-index: 10000; background: var(--bg);
  display: grid; place-items: center;
}
.loader__inner { text-align: center; }
.loader__logo {
  font-family: "Playfair Display", serif; font-size: 2.4rem; letter-spacing: .05em;
  color: var(--text); overflow: hidden;
}
.loader__bar { margin: 18px auto 0; width: 200px; height: 2px; background: var(--line); border-radius: 2px; overflow: hidden; }
.loader__bar span { display: block; height: 100%; width: 0%; background: linear-gradient(90deg, var(--gold-deep), var(--gold-soft)); }
.loader__pct { margin-top: 10px; font-size: .8rem; letter-spacing: .3em; color: var(--text-mute); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; inset-inline: 0; z-index: 900;
  transition: padding .4s ease, background .4s ease, border-color .4s ease, backdrop-filter .4s ease;
  padding: 22px 0; border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  padding: 12px 0; background: var(--glass);
  backdrop-filter: blur(18px) saturate(1.4); -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom: 1px solid var(--glass-line);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 600; }
.brand img { width: 44px; height: 44px; object-fit: contain; }
html.dark .brand img { filter: invert(1) brightness(1.06); }
.brand b { font-family: "Playfair Display", serif; font-size: 1.15rem; letter-spacing: .01em; text-transform: none; color: var(--text); white-space: nowrap; font-weight: 600; }
.brand span { display: block; font-size: .62rem; letter-spacing: .34em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  position: relative; padding: 8px 14px; font-size: .92rem; font-weight: 500;
  color: var(--text-soft); border-radius: 10px; transition: color .25s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 1px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .3s ease;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-tools { display: flex; align-items: center; gap: 8px; }

.icon-btn {
  width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px;
  border: 1px solid var(--line); background: var(--surface); color: var(--text);
  cursor: pointer; transition: transform .2s, border-color .25s, background .25s;
}
.icon-btn:hover { border-color: var(--gold); transform: translateY(-2px); }
.icon-btn svg { width: 19px; height: 19px; }
.lang-switch {
  display: flex; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; background: var(--surface);
}
.lang-switch button {
  border: 0; background: transparent; color: var(--text-mute); cursor: pointer;
  padding: 8px 12px; font-size: .8rem; font-weight: 700; letter-spacing: .05em; transition: .25s;
}
.lang-switch button.active { background: var(--gold); color: #fff; }

.burger { display: none; }
/* Collapse nav to the mobile menu earlier so the brand never collides with the links */
@media (max-width: 980px) { .nav-links { display: none; } .burger { display: grid; } }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--gold); --btn-fg: #fff;
  position: relative; display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 26px; border-radius: 14px; font-weight: 600; font-size: .95rem;
  background: var(--btn-bg); color: var(--btn-fg); border: 1px solid transparent;
  cursor: pointer; overflow: hidden; will-change: transform;
  transition: transform .3s cubic-bezier(.2,.9,.2,1), box-shadow .3s;
  box-shadow: 0 12px 30px -12px rgba(201,153,47,.7);
}
.btn svg { width: 18px; height: 18px; }
.btn:hover { box-shadow: 0 18px 40px -14px rgba(201,153,47,.85); }
.btn::before {
  content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, transparent, rgba(255,255,255,.35), transparent);
  transform: translateX(-120%); transition: transform .6s ease;
}
.btn:hover::before { transform: translateX(120%); }
.btn--ghost {
  --btn-bg: transparent; --btn-fg: var(--text);
  border-color: var(--line); box-shadow: none; backdrop-filter: blur(6px);
}
.btn--ghost:hover { border-color: var(--gold); box-shadow: none; }
.btn--wa { --btn-bg: #1eb454; box-shadow: 0 12px 30px -12px rgba(30,180,84,.7); }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Hero ---------- */
.hero { min-height: 100svh; display: flex; align-items: center; padding-top: 130px; padding-bottom: 150px; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; top: 0; bottom: 0;
  /* span the full viewport width, not just the centered container (avoids side seams) */
  left: 50%; width: 100vw; transform: translateX(-50%);
  background: var(--grad-hero); z-index: -2;
  /* fade the glow out toward the bottom so there is no hard edge into the next section */
  -webkit-mask-image: linear-gradient(to bottom, #000 55%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 55%, transparent 100%);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.hero h1 { margin: 18px 0 22px; }
.hero .lead { font-size: 1.15rem; color: var(--text-soft); max-width: 46ch; }
.hero-media { position: relative; }
.hero-media .frame {
  position: relative; border-radius: 26px; overflow: hidden; box-shadow: var(--shadow);
  aspect-ratio: 4/5;
}
.hero-media .frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute; bottom: -22px; left: -22px; background: var(--surface);
  border: 1px solid var(--line); border-radius: 18px; padding: 16px 20px; box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 14px;
}
.hero-badge .n { font-family: "Playfair Display", serif; font-size: 2rem; color: var(--gold); line-height: 1; }
.hero-badge small { color: var(--text-mute); font-size: .78rem; }
.hero-scroll {
  position: absolute; bottom: 26px; left: 50%; translate: -50% 0; display: flex; flex-direction: column;
  align-items: center; gap: 8px; color: var(--text-mute); font-size: .72rem; letter-spacing: .25em; text-transform: uppercase;
}
.hero-scroll .mouse { width: 22px; height: 34px; border: 1.5px solid var(--text-mute); border-radius: 12px; position: relative; }
.hero-scroll .mouse::after { content:""; position:absolute; top:6px; left:50%; translate:-50% 0; width:3px; height:6px; border-radius:2px; background: var(--gold); animation: scrollWheel 1.6s infinite; }
@keyframes scrollWheel { 0%{opacity:0; transform:translate(-50%,0)} 40%{opacity:1} 80%{opacity:0; transform:translate(-50%,10px)} }
/* Hide the scroll hint where the hero is short/narrow to avoid crowding the buttons & badge */
@media (max-height: 820px), (max-width: 900px) { .hero-scroll { display: none; } }

/* ---------- Marquee ---------- */
.marquee { border-block: 1px solid var(--line); padding: 22px 0; overflow: hidden; background: var(--surface-2); }
.marquee__track { display: flex; gap: 56px; width: max-content; white-space: nowrap; will-change: transform; }
.marquee__track span {
  font-family: "Playfair Display", serif; font-style: italic; font-size: 1.5rem; color: var(--text-soft);
  display: inline-flex; align-items: center; gap: 56px;
}
.marquee__track span::after { content: "✦"; color: var(--gold); font-style: normal; }

/* ---------- Section frame ---------- */
.section-pad { padding: clamp(70px, 10vw, 130px) 0; }
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { margin: 16px 0 14px; }
.section-head p { color: var(--text-soft); font-size: 1.08rem; }

/* ---------- Feature cards ---------- */
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: 20px; padding: 30px;
  transition: transform .5s cubic-bezier(.2,.9,.2,1), border-color .4s, box-shadow .4s;
  transform-style: preserve-3d; will-change: transform;
}
.card:hover { border-color: var(--glass-line); box-shadow: var(--shadow); }
.card .ic {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 18px;
  background: linear-gradient(140deg, rgba(201,153,47,.16), rgba(201,153,47,.04));
  border: 1px solid var(--glass-line); color: var(--gold);
}
.card .ic svg { width: 24px; height: 24px; }
.card h3 { font-size: 1.25rem; margin: 0 0 8px; }
.card p { color: var(--text-soft); font-size: .96rem; margin: 0; }
.card--3d > * { transform: translateZ(28px); }

/* ---------- About / stats ---------- */
.stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 28px; }
.stat b { font-family: "Playfair Display", serif; font-size: clamp(2rem,4vw,2.8rem); color: var(--text); display: block; line-height: 1; }
.stat > span { color: var(--text-mute); font-size: .86rem; }
.about-media { display: grid; grid-template-columns: 1fr 1fr; grid-auto-rows: 1fr; gap: 16px; }
.about-media img { border-radius: 18px; height: 100%; object-fit: cover; box-shadow: var(--shadow); }
.about-media .tall { grid-row: span 2; }

/* ---------- Services / pricing ---------- */
.svc-tabs { display: inline-flex; gap: 6px; padding: 6px; background: var(--surface-2); border: 1px solid var(--line); border-radius: 16px; margin-bottom: 40px; }
.svc-tab {
  border: 0; background: transparent; cursor: pointer; padding: 12px 26px; border-radius: 11px;
  font-weight: 600; color: var(--text-soft); transition: .3s; font-size: .95rem;
}
.svc-tab.active { background: var(--gold); color: #fff; box-shadow: 0 10px 24px -12px rgba(201,153,47,.8); }
.price-panel { display: none; }
.price-panel.active { display: block; animation: fadeUp .5s ease both; }
.price-cols { columns: 2; column-gap: 40px; }
.price-item {
  break-inside: avoid; display: flex; align-items: baseline; gap: 12px; padding: 14px 0;
  border-bottom: 1px dashed var(--line);
}
.price-item .name { font-weight: 500; }
.price-item .dots { flex: 1; border-bottom: 1px dotted var(--line); translate: 0 -4px; }
.price-item .price { font-family: "Playfair Display", serif; font-weight: 600; color: var(--gold); font-size: 1.12rem; white-space: nowrap; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

.note {
  margin-top: 28px; padding: 16px 20px; border-radius: 14px; background: var(--surface-2);
  border: 1px solid var(--line); color: var(--text-soft); font-size: .9rem; display: flex; gap: 12px; align-items: center;
}
.note svg { color: var(--gold); flex: none; }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 16px; grid-auto-flow: dense; }
.gallery figure { position: relative; margin: 0; overflow: hidden; border-radius: 18px; box-shadow: var(--shadow); cursor: zoom-in; }
/* zoom hint badge on hover */
.gallery figure .zoom-badge {
  position: absolute; top: 12px; right: 12px; z-index: 3; width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center; color: #fff; background: rgba(20,12,0,.45);
  backdrop-filter: blur(4px); opacity: 0; transform: scale(.8); transition: .35s;
}
.gallery figure:hover .zoom-badge { opacity: 1; transform: scale(1); }
.gallery figure .zoom-badge svg { width: 17px; height: 17px; }
.gallery figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.9,.2,1); }
.gallery figure:hover img { transform: scale(1.07); }
.gallery figure::after {
  content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,12,0,.5), transparent 55%);
  opacity: 0; transition: opacity .4s;
}
.gallery figure:hover::after { opacity: 1; }
.gallery .wide { grid-column: span 2; }
.gallery .tall { grid-row: span 2; }
.gallery figcaption {
  position: absolute; left: 16px; bottom: 14px; z-index: 2; color: #fff; font-weight: 600;
  opacity: 0; transform: translateY(10px); transition: .4s; text-shadow: 0 2px 10px rgba(0,0,0,.5);
}
.gallery figure:hover figcaption { opacity: 1; transform: none; }

/* ---------- Lightbox (click a photo to enlarge) ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 1200; display: none;
  align-items: center; justify-content: center; padding: 24px;
  background: rgba(8, 6, 2, 0.94);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
}
.lightbox.open { display: flex; animation: lbFade .3s ease both; }
@keyframes lbFade { from { opacity: 0; } to { opacity: 1; } }
.lightbox__stage { margin: 0; display: flex; flex-direction: column; align-items: center; gap: 14px; max-width: 94vw; }
.lightbox__stage img {
  max-width: 94vw; max-height: 82vh; width: auto; height: auto; object-fit: contain;
  border-radius: 14px; box-shadow: 0 40px 90px -30px rgba(0,0,0,.8);
}
.lightbox__stage img.in { animation: lbZoom .4s cubic-bezier(.2,.9,.2,1) both; }
@keyframes lbZoom { from { opacity: 0; transform: scale(.94); } to { opacity: 1; transform: none; } }
.lightbox__stage figcaption {
  color: #f4f1ea; font-family: "Playfair Display", serif; font-style: italic; font-size: 1.1rem;
  text-shadow: 0 2px 12px rgba(0,0,0,.6);
}
.lightbox__count { color: rgba(244,241,234,.55); font-size: .82rem; letter-spacing: .1em; }
.lightbox__close, .lightbox__nav {
  position: absolute; z-index: 2; border: 1px solid rgba(255,255,255,.22); background: rgba(255,255,255,.08);
  color: #fff; cursor: pointer; display: grid; place-items: center; border-radius: 50%;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); transition: background .25s, transform .25s, border-color .25s;
}
.lightbox__close:hover, .lightbox__nav:hover { background: var(--gold); border-color: var(--gold); transform: scale(1.08); }
.lightbox__close { top: 18px; right: 20px; width: 46px; height: 46px; font-size: 1.6rem; line-height: 1; }
.lightbox__nav { top: 50%; translate: 0 -50%; width: 52px; height: 52px; font-size: 2rem; line-height: 1; }
.lightbox__prev { left: 18px; }
.lightbox__next { right: 18px; }
@media (max-width: 640px) {
  .lightbox { padding: 14px; }
  .lightbox__stage img { max-height: 74vh; }
  .lightbox__nav { width: 44px; height: 44px; font-size: 1.7rem; top: auto; bottom: 20px; translate: 0 0; }
  .lightbox__prev { left: 24px; } .lightbox__next { right: 24px; }
  .lightbox__close { top: 12px; right: 12px; }
}

/* ---------- Testimonials ---------- */
.tcard {
  background: var(--surface); border: 1px solid var(--line); border-radius: 20px; padding: 32px; height: 100%;
  display: flex; flex-direction: column; gap: 18px;
}
.tcard .stars { color: var(--gold); display: flex; gap: 3px; }
.tcard .stars svg { width: 18px; height: 18px; fill: currentColor; }
.tcard blockquote { margin: 0; font-size: 1.06rem; color: var(--text); font-family: "Playfair Display", serif; font-style: italic; line-height: 1.5; }
.tcard .who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.tcard .avatar { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; font-weight: 700; color: #fff; background: linear-gradient(140deg, var(--gold), var(--gold-deep)); }
.tcard .who b { display: block; font-family: "Inter", sans-serif; font-size: .95rem; }
.tcard .who span { color: var(--text-mute); font-size: .82rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.info-list { display: grid; gap: 14px; }
.info-item {
  display: flex; gap: 16px; align-items: flex-start; padding: 20px; border-radius: 16px;
  background: var(--surface); border: 1px solid var(--line); transition: border-color .3s, transform .3s;
}
.info-item:hover { border-color: var(--gold); transform: translateX(4px); }
.info-item .ic { width: 46px; height: 46px; border-radius: 12px; flex: none; display: grid; place-items: center;
  background: linear-gradient(140deg, rgba(201,153,47,.16), rgba(201,153,47,.04)); color: var(--gold); border: 1px solid var(--glass-line); }
.info-item .ic svg { width: 20px; height: 20px; }
.info-item h4 { font-family: "Inter", sans-serif; font-weight: 700; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text-mute); margin: 0 0 4px; }
.info-item p, .info-item a { margin: 0; color: var(--text); font-weight: 500; }
.info-item a:hover { color: var(--gold); }
.hours { background: var(--surface); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; }
.hours .row { display: flex; justify-content: space-between; padding: 14px 22px; border-bottom: 1px solid var(--line); }
.hours .row:last-child { border-bottom: 0; }
.hours .row.today { background: linear-gradient(90deg, rgba(201,153,47,.12), transparent); }
.hours .row.today .day::after { content: "•"; color: var(--gold); margin-left: 8px; }
.hours .day { font-weight: 500; }
.hours .time { color: var(--text-soft); }
.hours .time.closed { color: #d9534f; }
.map-frame { border-radius: 18px; overflow: hidden; border: 1px solid var(--line); height: 100%; min-height: 320px; box-shadow: var(--shadow); }
.map-frame iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.2); }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; border-radius: 28px; overflow: hidden; padding: clamp(40px,7vw,80px);
  background: linear-gradient(135deg, #1a1206, #2a1d08 55%, #120b02); color: #fff; text-align: center;
  box-shadow: var(--shadow);
}
.cta-band::before { content:""; position:absolute; inset:0; background: radial-gradient(600px 300px at 50% -20%, rgba(201,153,47,.4), transparent 60%); }
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.72); max-width: 52ch; margin: 14px auto 30px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--surface-2); border-top: 1px solid var(--line); padding: 70px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer-grid h5 { font-family: "Inter", sans-serif; font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--text-mute); margin: 0 0 18px; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-grid a { color: var(--text-soft); font-size: .95rem; transition: color .25s; }
.footer-grid a:hover { color: var(--gold); }
.socials { display: flex; gap: 10px; margin-top: 18px; }
.socials a { width: 40px; height: 40px; border-radius: 11px; border: 1px solid var(--line); display: grid; place-items: center; color: var(--text); transition: .3s; }
.socials a:hover { background: var(--gold); color: #fff; border-color: var(--gold); transform: translateY(-3px); }
.footer-bottom { margin-top: 50px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: var(--text-mute); font-size: .85rem; }

/* ---------- Cookie banner ---------- */
.cookie {
  position: fixed; left: 24px; right: 24px; bottom: 24px; z-index: 950; max-width: 460px;
  background: var(--glass); backdrop-filter: blur(18px) saturate(1.3); -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--glass-line); border-radius: 20px; padding: 24px; box-shadow: var(--shadow);
  transform: translateY(140%); transition: transform .6s cubic-bezier(.2,.9,.2,1);
}
.cookie.show { transform: none; }
.cookie h4 { margin: 0 0 8px; font-size: 1.1rem; }
.cookie p { margin: 0 0 16px; color: var(--text-soft); font-size: .9rem; }
.cookie .actions { display: flex; flex-wrap: wrap; gap: 10px; }
.cookie .btn { padding: 11px 18px; font-size: .85rem; }
.cookie-cats { display: grid; gap: 10px; margin: 4px 0 16px; }
.cookie-cat { display: flex; justify-content: space-between; align-items: center; padding: 12px 14px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); }
.cookie-cat span { font-size: .88rem; font-weight: 500; }
.cookie-cat small { display: block; color: var(--text-mute); font-weight: 400; font-size: .76rem; }
.switch { position: relative; width: 42px; height: 24px; flex: none; }
.switch input { display: none; }
.switch label { position: absolute; inset: 0; background: var(--line); border-radius: 20px; cursor: pointer; transition: .3s; }
.switch label::after { content:""; position:absolute; top:3px; left:3px; width:18px; height:18px; border-radius:50%; background:#fff; transition:.3s; }
.switch input:checked + label { background: var(--gold); }
.switch input:checked + label::after { transform: translateX(18px); }
.switch input:disabled + label { opacity: .5; cursor: not-allowed; }

/* ---------- Legal pages ---------- */
.legal { padding-top: 150px; }
.legal .prose { max-width: 780px; }
.legal .prose h2 { margin: 40px 0 14px; }
.legal .prose h3 { margin: 28px 0 10px; font-size: 1.15rem; }
.legal .prose p, .legal .prose li { color: var(--text-soft); }
.legal .prose ul { padding-left: 20px; }
.legal .prose a { color: var(--gold); }

/* ---------- 404 ---------- */
.err { min-height: 100svh; display: grid; place-items: center; text-align: center; padding: 120px 24px 60px; }
.err .big { font-size: clamp(6rem, 22vw, 16rem); line-height: .9; background: linear-gradient(140deg, var(--gold-soft), var(--gold-deep)); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- Reveal (JS-driven fallback) ---------- */
[data-reveal] { opacity: 0; }
.no-js [data-reveal] { opacity: 1; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-media { max-width: 460px; margin: 0 auto; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .contact-grid, .about-media, .footer-grid { grid-template-columns: 1fr; }
  .footer-grid { gap: 30px; }
  .price-cols { columns: 1; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .nav-links { display: none; }
  .burger { display: grid; }
  .grid-3, .grid-4, .stats { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(3,1fr); }
  .hero { padding-top: 110px; }
  .hero-badge { left: 12px; bottom: -16px; }
  .cookie { left: 12px; right: 12px; bottom: 12px; }
  .footer-bottom { flex-direction: column; }
}

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 899; background: var(--bg); padding: 100px 24px 40px;
  display: flex; flex-direction: column; gap: 6px; transform: translateY(-100%); transition: transform .5s cubic-bezier(.2,.9,.2,1);
}
.mobile-menu.open { transform: none; }
.mobile-menu a { font-family: "Playfair Display", serif; font-size: 1.8rem; padding: 12px 0; border-bottom: 1px solid var(--line); }

/* Declutter the mobile top bar so nothing crowds/overlaps */
@media (max-width: 640px) {
  .site-header { padding: 10px 0; }
  .site-header.scrolled { padding: 9px 0; }
  .brand img { width: 42px; height: 42px; }
  .brand .leading-tight { display: none; } /* logo-only on phones (logo already contains the wordmark) */
  .nav-tools { gap: 6px; }
  .lang-switch button { padding: 7px 10px; font-size: .74rem; }
  .icon-btn { width: 40px; height: 40px; border-radius: 11px; }
  .icon-btn svg { width: 18px; height: 18px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .cursor-dot, .cursor-ring { display: none; }
}

/* Focus visibility (accessibility) */
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 6px; }
.skip-link {
  position: fixed; top: -60px; left: 16px; z-index: 10001; background: var(--gold); color: #fff;
  padding: 10px 18px; border-radius: 10px; transition: top .3s; font-weight: 600;
}
.skip-link:focus { top: 16px; }
