/* =====================================================================
   JMR Valeting - styles.css
   Black & gold luxury automotive theme. Mobile-first, responsive.
   ===================================================================== */

/* ---------- Design tokens ---------- */
:root {
  --black: #0a0a0a;
  --black-2: #0e0e0e;
  --panel: #111111;
  --panel-2: #161616;
  --line: rgba(212, 175, 55, 0.22);
  --gold: #d4af37;
  --gold-2: #f5d061;
  --gold-deep: #a6822a;
  --text: #f3f1ea;
  --muted: #a9a59b;
  --grad-gold: linear-gradient(135deg, #f5d061 0%, #d4af37 45%, #a6822a 100%);
  --grad-gold-text: linear-gradient(135deg, #f8e08a 0%, #d4af37 60%, #b9923a 100%);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
  --radius: 16px;
  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--black);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: 'Cinzel', Georgia, serif; line-height: 1.1; font-weight: 600; }

/* ---------- Helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.gold {
  background: var(--grad-gold-text);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: var(--gold);
}
.eyebrow {
  text-transform: uppercase; letter-spacing: 0.28em; font-size: 0.74rem;
  font-weight: 600; color: var(--gold); margin-bottom: 14px;
}
.ico { width: 1.1em; height: 1.1em; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 999;
  background: var(--gold); color: #000; padding: 10px 16px; border-radius: 0 0 8px 0; font-weight: 600;
}
.skip-link:focus { left: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 24px; border-radius: 999px; font-weight: 600; font-size: 0.95rem;
  border: 1px solid transparent; cursor: pointer; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s;
}
.btn:focus-visible { outline: 2px solid var(--gold-2); outline-offset: 3px; }
.btn--gold {
  background: var(--grad-gold); color: #1a1400;
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.28);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(212, 175, 55, 0.42); }
.btn--ghost { background: transparent; color: var(--text); border-color: var(--line); }
.btn--ghost:hover { transform: translateY(-2px); border-color: var(--gold); color: var(--gold-2); }
.btn--lg { padding: 16px 30px; font-size: 1.02rem; }
.btn--xl { padding: 18px 40px; font-size: 1.1rem; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .3s var(--ease), backdrop-filter .3s, padding .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; padding-top: 20px; padding-bottom: 20px; transition: padding .3s var(--ease); }
.nav.is-scrolled {
  background: rgba(8, 8, 8, 0.82); backdrop-filter: blur(12px);
  border-bottom-color: var(--line);
}
.nav.is-scrolled .nav__inner { padding-top: 12px; padding-bottom: 12px; }
.nav__brand { font-family: 'Cinzel', serif; font-weight: 700; letter-spacing: 0.14em; font-size: 1.18rem; color: var(--gold); display: inline-flex; align-items: center; }
.nav__logo { display: block; height: 56px; width: auto; transition: height .3s var(--ease); }
.nav.is-scrolled .nav__logo { height: 44px; }
.nav__links { display: none; gap: 30px; }
.nav__links a { font-size: 0.92rem; color: var(--muted); font-weight: 500; position: relative; transition: color .2s; }
.nav__links a::after { content: ''; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--grad-gold); transition: width .25s var(--ease); }
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { width: 100%; }
.nav__cta { display: none; }

.nav__burger { display: inline-flex; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav__burger span { width: 26px; height: 2px; background: var(--gold); transition: transform .3s, opacity .3s; }
.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: flex; flex-direction: column; gap: 6px; padding: 0 22px;
  max-height: 0; overflow: hidden; background: rgba(8,8,8,0.97);
  border-bottom: 1px solid transparent; transition: max-height .35s var(--ease), padding .35s, border-color .35s;
}
.nav__mobile.is-open { max-height: 420px; padding: 14px 22px 22px; border-bottom-color: var(--line); }
.nav__mobile a { padding: 11px 0; color: var(--muted); border-bottom: 1px solid rgba(255,255,255,0.05); }
.nav__mobile a.btn { color: #1a1400; border: none; justify-content: center; margin-top: 12px; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden;
  background:
    radial-gradient(120% 80% at 50% -10%, rgba(212,175,55,0.10), transparent 60%),
    linear-gradient(180deg, #0b0b0b 0%, #0a0a0a 100%);
}
.hero__glow {
  position: absolute; width: 70vw; height: 70vw; max-width: 760px; max-height: 760px;
  right: -12vw; top: 8vh; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.20), transparent 62%);
  filter: blur(20px); pointer-events: none;
}
.hero__inner { position: relative; padding: 120px 22px 90px; max-width: 900px; }
.hero__eyebrow { text-transform: uppercase; letter-spacing: 0.3em; font-size: 0.78rem; color: var(--gold); font-weight: 600; margin-bottom: 18px; }
.hero__title { font-size: clamp(2.7rem, 8vw, 5.4rem); font-weight: 700; letter-spacing: 0.01em; }
.hero__sub { color: var(--muted); font-size: clamp(1rem, 2.4vw, 1.22rem); max-width: 620px; margin: 22px 0 30px; }
.hero__badges { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 34px; }
.hero__badges li {
  font-size: 0.8rem; letter-spacing: 0.06em; padding: 7px 15px; border-radius: 999px;
  border: 1px solid var(--line); color: var(--gold-2); background: rgba(212,175,55,0.05);
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__scroll { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); width: 26px; height: 42px; border: 2px solid var(--line); border-radius: 14px; }
.hero__scroll span { position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; background: var(--gold); border-radius: 2px; transform: translateX(-50%); animation: scrollDot 1.6s infinite; }
@keyframes scrollDot { 0% { opacity: 0; top: 8px; } 40% { opacity: 1; } 100% { opacity: 0; top: 22px; } }

/* ---------- Sections ---------- */
.section { padding: 96px 0; }
.section--alt { background: linear-gradient(180deg, #0c0c0c, #0a0a0a); }
.section__head { text-align: center; max-width: 680px; margin: 0 auto 54px; }
.section__title { font-size: clamp(2rem, 5vw, 3.1rem); }
.section__lead { color: var(--muted); margin-top: 16px; }

/* ---------- Grids ---------- */
.grid { display: grid; gap: 22px; }
.grid--cards { grid-template-columns: 1fr; }

/* ---------- Cards ---------- */
.card {
  position: relative; padding: 30px 26px; border-radius: var(--radius);
  background: linear-gradient(180deg, var(--panel), var(--black-2));
  border: 1px solid var(--line);
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
}
.card:hover { transform: translateY(-6px); border-color: var(--gold); box-shadow: var(--shadow); }
.card__ico {
  display: inline-grid; place-items: center; width: 54px; height: 54px; border-radius: 12px;
  background: rgba(212,175,55,0.08); border: 1px solid var(--line); margin-bottom: 18px;
}
.card__ico svg { width: 26px; height: 26px; fill: none; stroke: var(--gold); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.card h3 { font-size: 1.22rem; margin-bottom: 10px; color: var(--text); }
.card p { color: var(--muted); font-size: 0.96rem; }
.card__price { margin-top: 16px; font-family: 'Cinzel', serif; color: var(--gold-2); font-size: 1.05rem; }

/* ---------- USP strip ---------- */
.usp { padding: 64px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--black-2); }
.grid--usp { grid-template-columns: repeat(2, 1fr); gap: 36px 18px; text-align: center; }
.usp__item p { color: var(--muted); font-size: 0.92rem; margin-top: 8px; }
.usp__num, .usp__suffix { font-family: 'Cinzel', serif; font-size: clamp(2.4rem, 6vw, 3.3rem); font-weight: 700; }
.usp__suffix { margin-left: 2px; }
.usp__ico { display: inline-grid; place-items: center; width: 58px; height: 58px; margin: 0 auto; }
.usp__ico svg { width: 34px; height: 34px; fill: none; stroke: var(--gold); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; gap: 16px; }
.gallery__item { position: relative; overflow: hidden; border-radius: 16px; border: 1px solid var(--line); background: var(--panel); cursor: pointer; transition: border-color .3s, box-shadow .3s, transform .3s var(--ease); }
.gallery__item:hover { border-color: var(--gold); box-shadow: var(--shadow); transform: translateY(-3px); }
.gallery__item:focus-visible { outline: 2px solid var(--gold-2); outline-offset: 3px; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease), filter .4s; filter: grayscale(0.08) contrast(1.03); }
.gallery__item:hover img { transform: scale(1.08); filter: none; }
.gallery__item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 42%, rgba(0,0,0,0.74)); opacity: 0; transition: opacity .35s var(--ease); pointer-events: none; }
.gallery__item:hover::after, .gallery__item:focus-visible::after { opacity: 1; }
.gallery__cap { position: absolute; left: 16px; right: 16px; bottom: 14px; z-index: 2; color: var(--text); font-size: 0.85rem; line-height: 1.4; transform: translateY(10px); opacity: 0; transition: transform .35s var(--ease), opacity .35s var(--ease); pointer-events: none; }
.gallery__cap::before { content: ''; display: block; width: 22px; height: 2px; background: var(--grad-gold); margin-bottom: 8px; }
.gallery__item:hover .gallery__cap, .gallery__item:focus-visible .gallery__cap { transform: none; opacity: 1; }
.gallery__zoom { position: absolute; top: 12px; right: 12px; z-index: 2; width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: rgba(8,8,8,0.62); border: 1px solid var(--line); opacity: 0; transform: scale(0.82); transition: opacity .3s, transform .3s; pointer-events: none; }
.gallery__item:hover .gallery__zoom, .gallery__item:focus-visible .gallery__zoom { opacity: 1; transform: none; }
.gallery__zoom svg { width: 18px; height: 18px; fill: none; stroke: var(--gold); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 1200; display: none; align-items: center; justify-content: center; padding: 5vh 5vw; background: rgba(5,5,5,0.92); backdrop-filter: blur(6px); }
.lightbox.is-open { display: flex; }
.lightbox__img { max-width: 100%; max-height: 84vh; border-radius: 12px; border: 1px solid var(--line); box-shadow: var(--shadow); }
.lightbox__cap { position: absolute; bottom: 2.4vh; left: 0; right: 0; text-align: center; color: var(--muted); font-size: 0.9rem; padding: 0 18px; }
.lightbox__btn { position: absolute; background: rgba(15,15,15,0.72); border: 1px solid var(--line); color: var(--gold); width: 50px; height: 50px; border-radius: 50%; cursor: pointer; display: grid; place-items: center; transition: border-color .2s, background .2s, transform .2s; }
.lightbox__btn:hover { border-color: var(--gold); background: rgba(212,175,55,0.14); transform: scale(1.06); }
.lightbox__btn svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.lightbox__close { top: 4vh; right: 5vw; }
.lightbox__prev { left: 3vw; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 3vw; top: 50%; transform: translateY(-50%); }
.lightbox__prev:hover, .lightbox__next:hover { transform: translateY(-50%) scale(1.06); }
@media (max-width: 640px) { .lightbox__close { top: 12px; right: 12px; } .lightbox__prev { left: 10px; } .lightbox__next { right: 10px; } }

/* ---------- Before / After reveal slider ---------- */
.ba { max-width: 820px; margin: 0 auto 16px; }
.ba__frame { position: relative; aspect-ratio: 16 / 10; border-radius: 14px; overflow: hidden; border: 1px solid var(--line); --pos: 50%; touch-action: none; }
.ba__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; -webkit-user-drag: none; user-select: none; pointer-events: none; }
.ba__img--before { clip-path: inset(0 calc(100% - var(--pos)) 0 0); }
.ba__divider { position: absolute; top: 0; bottom: 0; left: var(--pos); width: 2px; transform: translateX(-1px); background: var(--grad-gold); box-shadow: 0 0 14px rgba(212,175,55,0.6); pointer-events: none; }
.ba__handle { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; background: rgba(10,10,10,0.78); border: 1px solid var(--gold); box-shadow: var(--shadow); backdrop-filter: blur(4px); }
.ba__handle svg { width: 22px; height: 22px; fill: none; stroke: var(--gold); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.ba__tag { position: absolute; top: 14px; font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; padding: 5px 11px; border-radius: 999px; border: 1px solid var(--line); background: rgba(8,8,8,0.7); color: var(--gold-2); pointer-events: none; }
.ba__tag--before { left: 14px; }
.ba__tag--after { right: 14px; }
.ba__range { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; padding: 0; background: transparent; border: 0; cursor: ew-resize; opacity: 0; -webkit-appearance: none; appearance: none; }
.ba__range::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 46px; height: 100%; cursor: ew-resize; }
.ba__range::-moz-range-thumb { width: 46px; height: 100%; border: 0; cursor: ew-resize; }
.ba__frame:focus-within .ba__handle { border-color: var(--gold-2); box-shadow: 0 0 0 3px rgba(245,208,97,0.35); }

/* ---------- Reviews carousel ---------- */
.carousel { max-width: 760px; margin: 0 auto; overflow: hidden; }
.carousel__track { display: flex; transition: transform .5s var(--ease); }
.review { min-width: 100%; padding: 8px 14px; text-align: center; }
.stars { color: var(--gold); letter-spacing: 4px; font-size: 1.2rem; margin-bottom: 16px; }
.review p { font-size: clamp(1.05rem, 2.6vw, 1.35rem); color: var(--text); font-style: italic; }
.review cite { display: block; margin-top: 18px; color: var(--muted); font-style: normal; font-size: 0.9rem; letter-spacing: 0.05em; }
.carousel__controls { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 26px; }
.carousel__btn { width: 44px; height: 44px; border-radius: 50%; background: transparent; border: 1px solid var(--line); cursor: pointer; display: grid; place-items: center; transition: border-color .2s, background .2s; }
.carousel__btn:hover { border-color: var(--gold); background: rgba(212,175,55,0.08); }
.carousel__btn svg { width: 20px; height: 20px; fill: none; stroke: var(--gold); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.carousel__dots { display: flex; gap: 9px; }
.carousel__dots button { width: 9px; height: 9px; border-radius: 50%; border: none; background: rgba(255,255,255,0.18); cursor: pointer; padding: 0; transition: background .2s, transform .2s; }
.carousel__dots button.is-active { background: var(--gold); transform: scale(1.25); }

/* ---------- Process steps ---------- */
.steps { list-style: none; display: grid; grid-template-columns: 1fr; gap: 18px; counter-reset: step; }
.step { position: relative; padding: 28px 24px 28px 78px; border-radius: var(--radius); background: var(--panel); border: 1px solid var(--line); }
.step__num { position: absolute; left: 22px; top: 26px; width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; font-family: 'Cinzel', serif; font-weight: 700; color: #1a1400; background: var(--grad-gold); }
.step h3 { font-size: 1.15rem; margin-bottom: 6px; }
.step p { color: var(--muted); font-size: 0.95rem; }

/* ---------- About ---------- */
.about { display: grid; grid-template-columns: 1fr; gap: 36px; align-items: center; }
.about__media { aspect-ratio: 4 / 3; border-radius: var(--radius); border: 1px solid var(--line); display: grid; place-items: center;
  background: radial-gradient(120% 120% at 30% 20%, rgba(212,175,55,0.18), transparent 60%), linear-gradient(160deg, #131313, #0b0b0b); }
.about__badge { font-family: 'Cinzel', serif; font-weight: 700; font-size: clamp(3rem, 12vw, 5rem); letter-spacing: 0.1em; background: var(--grad-gold-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.about__body p { color: var(--muted); margin: 14px 0; }
.about__body .btn { margin-top: 12px; }

/* ---------- Booking ---------- */
.book { position: relative; padding: 110px 0; text-align: center; overflow: hidden;
  background: radial-gradient(100% 120% at 50% 0%, rgba(212,175,55,0.12), transparent 55%), var(--black-2); border-top: 1px solid var(--line); }
.book__glow { position: absolute; inset: 0; background: radial-gradient(60% 50% at 50% 120%, rgba(212,175,55,0.16), transparent 60%); pointer-events: none; }
.book__inner { position: relative; max-width: 640px; }
.book__title { font-size: clamp(2.2rem, 6vw, 3.6rem); }
.book__lead { color: var(--muted); margin: 16px 0 30px; }
.book__contacts { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 26px; margin-top: 34px; }
.book__contact { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); font-weight: 500; transition: color .2s; }
.book__contact:hover { color: var(--gold-2); }
.book__contact .ico { stroke: var(--gold); }

/* ---------- Footer ---------- */
.footer { background: #070707; border-top: 1px solid var(--line); }
.footer__inner { display: grid; grid-template-columns: 1fr; gap: 26px; padding-top: 54px; padding-bottom: 34px; }
.footer__word { font-family: 'Cinzel', serif; font-weight: 700; letter-spacing: 0.14em; color: var(--gold); font-size: 1.15rem; }
.footer__brand p { color: var(--muted); margin-top: 8px; }
.footer__contact { list-style: none; display: grid; gap: 8px; color: var(--muted); font-size: 0.95rem; }
.footer__contact a:hover { color: var(--gold-2); }
.footer__bar { display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center; border-top: 1px solid rgba(255,255,255,0.06); padding: 20px 22px; max-width: var(--maxw); margin: 0 auto; color: var(--muted); font-size: 0.85rem; }
.footer__top:hover { color: var(--gold-2); }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (min-width: 620px) {
  .grid--cards { grid-template-columns: repeat(2, 1fr); }
  .grid--usp { grid-template-columns: repeat(4, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 920px) {
  .nav__links, .nav__cta { display: flex; }
  .nav__burger, .nav__mobile { display: none; }
  .grid--cards { grid-template-columns: repeat(3, 1fr); }
  .gallery { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 240px; grid-auto-flow: dense; }
  .gallery__item--featured { grid-column: span 2; grid-row: span 2; }
  .steps { grid-template-columns: repeat(4, 1fr); }
  .about { grid-template-columns: 0.9fr 1.1fr; gap: 54px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Admin panel ---------- */
.admin-toggle { position: fixed; left: 18px; bottom: 18px; z-index: 1000; display: inline-flex; align-items: center; gap: 8px; padding: 11px 16px; border-radius: 999px; border: 1px solid var(--line); background: rgba(8,8,8,0.85); color: var(--gold-2); font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.85rem; cursor: pointer; backdrop-filter: blur(8px); transition: transform .2s var(--ease), border-color .2s; }
.admin-toggle:hover { transform: translateY(-2px); border-color: var(--gold); }
.admin-panel { position: fixed; top: 0; right: 0; height: 100vh; width: min(420px, 92vw); z-index: 1001; display: flex; flex-direction: column; background: #0b0b0b; border-left: 1px solid var(--line); box-shadow: -20px 0 60px rgba(0,0,0,0.6); transform: translateX(100%); transition: transform .35s var(--ease); }
.admin-panel.is-open { transform: none; }
.admin-panel__head { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; border-bottom: 1px solid var(--line); }
.admin-panel__head h3 { font-family: 'Cinzel', serif; color: var(--gold); font-size: 1.05rem; }
.admin-panel__close { background: none; border: 0; color: var(--muted); font-size: 1.5rem; line-height: 1; cursor: pointer; }
.admin-panel__close:hover { color: var(--gold-2); }
.admin-panel__body { flex: 1; overflow-y: auto; padding: 6px 20px 20px; }
.admin-group { margin-top: 14px; }
.admin-group > summary { cursor: pointer; list-style: none; font-family: 'Cinzel', serif; color: var(--gold-2); font-size: 0.95rem; padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.admin-group > summary::-webkit-details-marker { display: none; }
.admin-field { margin: 13px 0; }
.admin-field label { display: block; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 6px; }
.admin-field textarea, .admin-field input[type="text"] { width: 100%; background: #141414; border: 1px solid var(--line); color: var(--text); border-radius: 8px; padding: 9px 11px; font-family: 'Inter', sans-serif; font-size: 0.88rem; resize: vertical; }
.admin-field textarea:focus, .admin-field input:focus { outline: none; border-color: var(--gold); }
.admin-preview { margin-top: 8px; width: 100%; max-height: 120px; object-fit: cover; border-radius: 8px; border: 1px solid var(--line); }
.admin-file { margin-top: 8px; font-size: 0.78rem; color: var(--muted); }
.admin-actions { display: flex; flex-wrap: wrap; gap: 8px; padding: 14px 20px; border-top: 1px solid var(--line); }
.admin-actions .btn { font-size: 0.8rem; padding: 9px 14px; }
@media (prefers-reduced-motion: reduce) { .admin-panel { transition: none; } .admin-toggle { transition: none; } }

/* =====================================================================
   ELITE ENHANCEMENTS - layered refinements (all content unchanged)
   ===================================================================== */

/* ---- Global polish ---- */
::selection { background: rgba(212,175,55,0.30); color: #fff; }
h1, h2, h3 { letter-spacing: 0.012em; }

/* Animated gold shimmer on gradient text */
.gold {
  background: linear-gradient(110deg, #f8e08a 0%, #d4af37 32%, #fff4cf 50%, #d4af37 68%, #b9923a 100%);
  background-size: 220% auto;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: goldShimmer 7s linear infinite;
}
@keyframes goldShimmer { to { background-position: 220% center; } }

/* Section eyebrow framed by gold ticks */
.section__head .eyebrow { display: inline-flex; align-items: center; gap: 10px; }
.section__head .eyebrow::before,
.section__head .eyebrow::after { content: ''; width: 26px; height: 1px; background: var(--grad-gold); display: inline-block; }

/* Section titles get an underline flourish */
.section__head .section__title { position: relative; display: inline-block; padding-bottom: 18px; }
.section__head .section__title::after { content: ''; position: absolute; left: 50%; bottom: 0; transform: translateX(-50%); width: 64px; height: 2px; background: var(--grad-gold); border-radius: 2px; }

/* ---- Nav refinement ---- */
.nav.is-scrolled { box-shadow: 0 10px 40px rgba(0,0,0,0.45); }

/* ---- Hero refinement: layered glows + faint luxury grid ---- */
.hero { background:
  radial-gradient(120% 80% at 50% -10%, rgba(212,175,55,0.14), transparent 60%),
  radial-gradient(70% 55% at 85% 8%, rgba(212,175,55,0.08), transparent 60%),
  linear-gradient(180deg, #0b0b0b 0%, #0a0a0a 100%); }
.hero::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(212,175,55,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(212,175,55,0.05) 1px, transparent 1px); background-size: 62px 62px; -webkit-mask-image: radial-gradient(circle at 50% 36%, #000 0%, transparent 70%); mask-image: radial-gradient(circle at 50% 36%, #000 0%, transparent 70%); opacity: 0.55; pointer-events: none; }
.hero__inner { z-index: 1; }
.hero__badges li { backdrop-filter: blur(4px); transition: transform .25s var(--ease), border-color .25s, color .25s; }
.hero__badges li:hover { transform: translateY(-2px); border-color: var(--gold); color: var(--gold-2); }

/* ---- Buttons: gold sheen sweep ---- */
.btn--gold { position: relative; overflow: hidden; }
.btn--gold::after { content: ''; position: absolute; top: 0; left: -120%; width: 60%; height: 100%; background: linear-gradient(100deg, transparent, rgba(255,255,255,0.5), transparent); transform: skewX(-20deg); transition: left .6s var(--ease); }
.btn--gold:hover::after { left: 140%; }

/* ---- Cards: gradient frame + icon motion + title shift ---- */
.card { overflow: hidden; }
.card::before { content: ''; position: absolute; inset: 0; border-radius: var(--radius); padding: 1px; background: linear-gradient(160deg, rgba(212,175,55,0.55), transparent 42%); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0; transition: opacity .35s; pointer-events: none; }
.card:hover::before { opacity: 1; }
.card__ico { transition: transform .35s var(--ease), box-shadow .35s; }
.card:hover .card__ico { transform: translateY(-2px) rotate(-3deg); box-shadow: 0 8px 24px rgba(212,175,55,0.25); }
.card h3 { transition: color .25s; }
.card:hover h3 { color: var(--gold-2); }

/* ---- USP strip: gradient numerals ---- */
.usp__num { background: var(--grad-gold-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.usp__item p { letter-spacing: 0.04em; }

/* ---- Reviews: card + quote watermark + reviewer dot ---- */
.carousel { padding: 6px; }
.review { position: relative; padding: 40px 34px; border-radius: var(--radius); background: linear-gradient(180deg, var(--panel), var(--black-2)); border: 1px solid var(--line); }
.review::before { content: '\201C'; position: absolute; top: 4px; left: 24px; font-family: 'Cinzel', serif; font-size: 5rem; line-height: 1; color: var(--gold); opacity: 0.16; }
.review p { position: relative; z-index: 1; }
.review cite { display: inline-flex; align-items: center; gap: 8px; }
.review cite::before { content: ''; width: 14px; height: 14px; border-radius: 50%; background: var(--grad-gold); display: inline-block; }

/* ---- Process: hover lift + number glow + connector line ---- */
.step { transition: transform .3s var(--ease), border-color .3s, box-shadow .3s; }
.step:hover { transform: translateY(-4px); border-color: var(--gold); box-shadow: var(--shadow); }
.step__num { box-shadow: 0 8px 22px rgba(212,175,55,0.35); }
@media (min-width: 920px) {
  .steps { position: relative; }
  .steps::before { content: ''; position: absolute; top: 46px; left: 8%; right: 8%; height: 1px; background: linear-gradient(90deg, transparent, var(--line), transparent); z-index: 0; }
  .step { z-index: 1; }
}

/* ---- About: framed media + corner glow ---- */
.about__media { position: relative; overflow: hidden; }
.about__media::before { content: ''; position: absolute; inset: 14px; border: 1px solid var(--line); border-radius: 12px; pointer-events: none; z-index: 2; }
.about__media::after { content: ''; position: absolute; width: 220px; height: 220px; right: -60px; bottom: -60px; border-radius: 50%; background: radial-gradient(circle, rgba(212,175,55,0.22), transparent 60%); }
.about__badge { position: relative; z-index: 1; }

/* ---- Booking: contact underline reveal ---- */
.book__contact { position: relative; padding-bottom: 2px; }
.book__contact::after { content: ''; position: absolute; left: 0; bottom: -2px; width: 0; height: 1px; background: var(--grad-gold); transition: width .25s var(--ease); }
.book__contact:hover::after { width: 100%; }

/* ---- Footer: gold top accent + link nudge ---- */
.footer { position: relative; }
.footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent); opacity: 0.5; }
.footer__contact a { transition: color .2s, padding-left .2s; }
.footer__contact a:hover { padding-left: 4px; }

/* ---- Respect reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  .gold { animation: none; }
  .btn--gold::after { display: none; }
}

/* =====================================================================
   SECTION DESIGN SYSTEM - solid black nav + unique designed backgrounds
   Pure-CSS patterns (no images): each section pairs a base gradient with
   a masked pattern layer (::after) so textures fade instead of tiling flat.
   ===================================================================== */

/* Solid black nav (top + scrolled) + matching mobile drawer */
.nav { background: #000000; }
.nav.is-scrolled { background: #000000; backdrop-filter: none; }
.nav__mobile { background: #000000; }

/* Stacking context + content lift so patterns sit behind content */
.section, .usp, .book { position: relative; isolation: isolate; }
.section > .container, .usp > .container, .book > .container { position: relative; z-index: 2; }

/* Pattern layer scaffold (behind content, above the base background) */
.section::after, .usp::after, .book::after { content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none; }

/* Gold horizontal divider at the top of every section */
.section::before, .usp::before, .book::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: min(1180px, 92%); height: 1px; pointer-events: none; z-index: 3;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.5), transparent);
}

/* Drop redundant solid borders so dividers never double up */
.usp { border-top: 0; border-bottom: 0; }
.book { border-top: 0; }

/* ---- HERO: perspective glow + radiating gold rays ---- */
.hero { isolation: isolate; }
.hero::before { z-index: 0; }
.hero__glow { z-index: 1; }
.hero__inner { z-index: 3; }
.hero__scroll { z-index: 3; }
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: repeating-conic-gradient(from 90deg at 50% 118%, rgba(212,175,55,0.06) 0deg 1.4deg, transparent 1.4deg 15deg);
  -webkit-mask-image: radial-gradient(75% 80% at 50% 100%, #000, transparent 72%);
  mask-image: radial-gradient(75% 80% at 50% 100%, #000, transparent 72%);
}

/* ---- SERVICES: carbon-fibre weave + corner spotlight ---- */
#services { background:
  radial-gradient(90% 70% at 100% 0%, rgba(212,175,55,0.10), transparent 55%),
  linear-gradient(160deg, #101010 0%, #080808 100%); }
#services::after {
  background-image:
    repeating-linear-gradient(45deg, rgba(212,175,55,0.06) 0 1px, transparent 1px 6px),
    repeating-linear-gradient(-45deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 6px);
  background-size: 8px 8px;
  -webkit-mask-image: radial-gradient(130% 110% at 100% 0%, #000 0%, transparent 72%);
  mask-image: radial-gradient(130% 110% at 100% 0%, #000 0%, transparent 72%);
}

/* ---- WHY/USP: gold speed-line pinstripes ---- */
.usp { background: linear-gradient(180deg, #121212 0%, #0a0a0a 100%); }
.usp::after {
  background-image: repeating-linear-gradient(115deg, transparent 0 26px, rgba(212,175,55,0.07) 26px 28px);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
}

/* ---- GALLERY: gold halftone dot grid from a top-right glow ---- */
#gallery { background:
  radial-gradient(80% 70% at 88% 0%, rgba(212,175,55,0.12), transparent 55%),
  linear-gradient(180deg, #080808 0%, #0d0d0d 100%); }
#gallery::after {
  background-image: radial-gradient(rgba(212,175,55,0.16) 1px, transparent 1.6px);
  background-size: 24px 24px;
  -webkit-mask-image: radial-gradient(75% 75% at 88% 0%, #000 0%, transparent 78%);
  mask-image: radial-gradient(75% 75% at 88% 0%, #000 0%, transparent 78%);
}

/* ---- REVIEWS: concentric ripple stage radiating from the top ---- */
#reviews.section--alt { background:
  radial-gradient(60% 50% at 50% 0%, rgba(212,175,55,0.14), transparent 70%),
  linear-gradient(180deg, #0c0c0c 0%, #070707 100%); }
#reviews::after {
  background-image: repeating-radial-gradient(circle at 50% -8%, transparent 0 46px, rgba(212,175,55,0.05) 46px 48px);
  -webkit-mask-image: radial-gradient(85% 95% at 50% 0%, #000 0%, transparent 82%);
  mask-image: radial-gradient(85% 95% at 50% 0%, #000 0%, transparent 82%);
}

/* ---- PROCESS: blueprint grid (fits "how it works") ---- */
#process { background:
  radial-gradient(70% 60% at 50% 110%, rgba(212,175,55,0.10), transparent 60%),
  linear-gradient(180deg, #0a0a0a 0%, #0d0d0d 100%); }
#process::after {
  background-image:
    linear-gradient(rgba(212,175,55,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,175,55,0.05) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(110% 100% at 50% 100%, #000 8%, transparent 82%);
  mask-image: radial-gradient(110% 100% at 50% 100%, #000 8%, transparent 82%);
}

/* ---- ABOUT: luxe spotlight + offset ring motif ---- */
#about.section--alt { background:
  radial-gradient(70% 80% at 18% 30%, rgba(212,175,55,0.12), transparent 60%),
  linear-gradient(160deg, #0d0d0d 0%, #070707 100%); }
#about::after {
  background-image: repeating-radial-gradient(circle at 85% 72%, transparent 0 30px, rgba(212,175,55,0.05) 30px 31px);
  -webkit-mask-image: radial-gradient(65% 75% at 85% 72%, #000 0%, transparent 76%);
  mask-image: radial-gradient(65% 75% at 85% 72%, #000 0%, transparent 76%);
}

/* ---- BOOKING: converging gold rays + deep spotlight ---- */
.book { background:
  radial-gradient(80% 95% at 50% 122%, rgba(212,175,55,0.20), transparent 60%),
  radial-gradient(100% 80% at 50% 0%, rgba(212,175,55,0.06), transparent 55%),
  linear-gradient(180deg, #0b0b0b 0%, #060606 100%); }
.book::after {
  background-image: repeating-conic-gradient(from 90deg at 50% 100%, rgba(212,175,55,0.07) 0deg 2deg, transparent 2deg 13deg);
  -webkit-mask-image: radial-gradient(85% 100% at 50% 100%, #000 0%, transparent 76%);
  mask-image: radial-gradient(85% 100% at 50% 100%, #000 0%, transparent 76%);
}

/* ---- FOOTER: dim gold grid fading downward ---- */
.footer { position: relative; border-top: 0; isolation: isolate; background: linear-gradient(180deg, #070707, #040404); }
.footer__inner, .footer__bar { position: relative; z-index: 1; }
.footer::after {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(212,175,55,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,175,55,0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  -webkit-mask-image: linear-gradient(180deg, #000, transparent 75%);
  mask-image: linear-gradient(180deg, #000, transparent 75%);
}

/* =====================================================================
   HERO UPGRADE - animated gold aurora, rotating gleam, glow headline,
   cinematic staggered entrance, check-chip badges, pulsing CTA
   ===================================================================== */

/* Full-bleed living gold aurora (replaces the single static glow) */
.hero__glow {
  position: absolute; inset: 0; right: auto; top: auto;
  width: auto; height: auto; max-width: none; max-height: none; border-radius: 0;
  background:
    radial-gradient(38% 40% at 78% 16%, rgba(212,175,55,0.24), transparent 60%),
    radial-gradient(34% 36% at 16% 74%, rgba(166,130,42,0.20), transparent 60%),
    radial-gradient(30% 32% at 52% 48%, rgba(245,208,97,0.10), transparent 70%);
  background-repeat: no-repeat;
  filter: blur(30px);
  animation: heroAurora 18s ease-in-out infinite alternate;
}
@keyframes heroAurora {
  0%   { background-position: 0% 0%, 0% 0%, 0% 0%; opacity: 0.9; }
  100% { background-position: 10% -8%, -10% 8%, 2% -2%; opacity: 1; }
}
/* Slow rotating light sweep behind the headline */
.hero__glow::after {
  content: ''; position: absolute; inset: -25%; pointer-events: none;
  background: conic-gradient(from 0deg at 50% 50%, transparent 0deg, rgba(212,175,55,0.08) 38deg, transparent 120deg, transparent 360deg);
  animation: heroGleam 26s linear infinite;
}
@keyframes heroGleam { to { transform: rotate(360deg); } }

/* Headline: larger, with a soft gold glow on the highlighted words */
.hero__title { font-size: clamp(2.9rem, 8.6vw, 6rem); position: relative; }
.hero__title .gold { filter: drop-shadow(0 6px 30px rgba(212,175,55,0.42)); }

/* Cinematic staggered entrance for hero content */
.hero .reveal { transition-duration: .85s; }
.hero__eyebrow { transition-delay: .05s; }
.hero__title { transition-delay: .16s; }
.hero__sub { transition-delay: .3s; }
.hero__badges { transition-delay: .45s; }
.hero__cta { transition-delay: .6s; }

/* Badges become verified check-chips */
.hero__badges li { position: relative; padding: 8px 16px 8px 32px; }
.hero__badges li::before {
  content: ''; position: absolute; left: 14px; top: 50%;
  width: 6px; height: 11px; border: solid var(--gold); border-width: 0 2px 2px 0;
  transform: translateY(-65%) rotate(45deg);
}

/* Primary CTA gently pulses to draw the eye (pauses on hover) */
.hero__cta .btn--gold { animation: ctaPulse 2.8s var(--ease) infinite; }
.hero__cta .btn--gold:hover { animation-play-state: paused; }
@keyframes ctaPulse {
  0%   { box-shadow: 0 8px 24px rgba(212,175,55,0.28), 0 0 0 0 rgba(212,175,55,0.5); }
  70%  { box-shadow: 0 8px 24px rgba(212,175,55,0.28), 0 0 0 16px rgba(212,175,55,0); }
  100% { box-shadow: 0 8px 24px rgba(212,175,55,0.28), 0 0 0 0 rgba(212,175,55,0); }
}

@media (prefers-reduced-motion: reduce) {
  .hero__glow, .hero__glow::after, .hero__cta .btn--gold { animation: none; }
}

/* =====================================================================
   AWARD REFINEMENT LAYER - design tokens, fluid type scale, film grain,
   bespoke cursor, scroll progress, focus/scrollbar polish, numerals
   ===================================================================== */

:root {
  /* 4 / 8px spacing scale */
  --space-1: 4px; --space-2: 8px; --space-3: 12px; --space-4: 16px;
  --space-5: 24px; --space-6: 32px; --space-7: 48px; --space-8: 64px;
  --space-9: 96px; --space-10: 128px;
  /* fluid modular type scale (~1.25) */
  --step--1: clamp(0.83rem, 0.79rem + 0.18vw, 0.92rem);
  --step-0:  clamp(1rem, 0.96rem + 0.22vw, 1.1rem);
  --step-1:  clamp(1.2rem, 1.08rem + 0.5vw, 1.55rem);
  --step-2:  clamp(1.55rem, 1.3rem + 1.1vw, 2.2rem);
  --step-3:  clamp(2rem, 1.5rem + 2.4vw, 3.3rem);
  --step-4:  clamp(2.5rem, 1.6rem + 4.5vw, 4.6rem);
  --ring: 0 0 0 3px rgba(245,208,97,0.55);
}

/* Rhythm + readable measure */
body { font-size: var(--step-0); }
.section__lead { max-width: 62ch; margin-left: auto; margin-right: auto; }
.card p, .step p, .about__body p { max-width: 64ch; }

/* Fluid type scale on headings */
.section__title { font-size: var(--step-3); line-height: 1.04; letter-spacing: -0.01em; }
.card h3 { font-size: var(--step-1); }
.book__title { font-size: var(--step-4); line-height: 1.02; }

/* Refined scrollbar */
html { scrollbar-color: var(--gold-deep) #070707; scrollbar-width: thin; }
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: #070707; }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, var(--gold), var(--gold-deep)); border-radius: 999px; border: 3px solid #070707; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-2); }

/* Unified focus ring + tactile button press */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, summary:focus-visible, [tabindex]:focus-visible { outline: none; box-shadow: var(--ring); border-radius: 6px; }
.btn:active { transform: translateY(0) scale(0.97); }

/* Film grain overlay (tactile depth, GPU-cheap, non-interactive) */
body::after {
  content: ''; position: fixed; inset: 0; z-index: 2000; pointer-events: none; opacity: 0.045;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Art-directed ghost section numerals (decorative, behind headings) */
body { counter-reset: sec; }
.section { counter-increment: sec; }
.section__head { position: relative; }
.section__head::after {
  content: counter(sec, decimal-leading-zero);
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-family: 'Cinzel', serif; font-weight: 700; font-size: clamp(4rem, 12vw, 7.5rem);
  line-height: 1; color: rgba(212,175,55,0.05); z-index: -1; pointer-events: none;
}

/* 3D tilt support for cards */
.grid--cards { perspective: 1100px; }
.card { transform-style: preserve-3d; }

/* Bespoke gold cursor (enabled by JS via .cursor-on; fine pointers only) */
.cursor-ring, .cursor-dot { position: fixed; top: 0; left: 0; z-index: 3000; pointer-events: none; border-radius: 50%; mix-blend-mode: difference; }
.cursor-ring { width: 34px; height: 34px; margin: -17px 0 0 -17px; border: 1.5px solid #d4af37; transition: width .25s var(--ease), height .25s var(--ease), margin .25s var(--ease), background-color .25s var(--ease); }
.cursor-ring.is-active { width: 56px; height: 56px; margin: -28px 0 0 -28px; background-color: rgba(212,175,55,0.15); }
.cursor-dot { width: 6px; height: 6px; margin: -3px 0 0 -3px; background: #f5d061; }
.cursor-on, .cursor-on a, .cursor-on button, .cursor-on input, .cursor-on textarea, .cursor-on summary, .cursor-on label, .cursor-on .card, .cursor-on .gallery__item, .cursor-on .ba__frame { cursor: none; }

/* Scroll progress meter */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 100%; transform: scaleX(0); transform-origin: 0 50%; z-index: 1500; background: linear-gradient(90deg, var(--gold-deep), var(--gold-2)); box-shadow: 0 0 12px rgba(212,175,55,0.55); }

@media (prefers-reduced-motion: reduce) {
  .cursor-ring, .cursor-dot { display: none; }
  .scroll-progress { display: none; }
}