/* ============================================================
   AKSHU ELITE BEAUTY SALON — Grace, Glamour & Glow
   Editorial dark-luxury design system · Black & Gold
   ============================================================ */

:root {
  --ink: #1a1612;
  --ink-2: #231e17;
  --ink-3: #2c261d;
  --line: rgba(198, 161, 91, 0.3);
  --line-soft: rgba(245, 239, 228, 0.12);
  --gold: #c6a15b;
  --gold-bright: #edd5a3;
  --gold-deep: #9a7a3c;
  --cream: #fdfaf4;
  --cream-dim: rgba(253, 250, 244, 0.9);
  --cream-faint: rgba(253, 250, 244, 0.7);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Jost", "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 14px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.7;
  letter-spacing: 0.015em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--gold); color: var(--ink); }

img { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

/* ---- film grain overlay ---- */
body::after {
  content: "";
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  pointer-events: none;
  z-index: 2000;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 9s steps(10) infinite;
}
@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  20% { transform: translate(-3%, 2%); }
  40% { transform: translate(2%, -3%); }
  60% { transform: translate(-2%, -2%); }
  80% { transform: translate(3%, 3%); }
}

/* ============ typography ============ */
h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.08; color: var(--cream); }

.display {
  font-size: clamp(3rem, 8.5vw, 7.2rem);
  letter-spacing: 0.01em;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.55);
}
.display em, .h-xl em, .h-lg em {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(105deg, var(--gold), var(--gold-bright) 45%, #f3e2bb 75%, var(--gold-bright));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.h-xl { font-size: clamp(2.4rem, 5.4vw, 4.4rem); }
.h-lg { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
.h-md { font-size: clamp(1.4rem, 2.4vw, 1.85rem); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold-bright);
}
.eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.eyebrow--center::after {
  content: "";
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.lead { font-size: clamp(1.1rem, 1.6vw, 1.3rem); color: var(--cream-dim); font-weight: 400; }
.muted { color: var(--cream-dim); }
.small { font-size: 1rem; }

.sec-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold);
  letter-spacing: 0.2em;
}

/* ============ layout ============ */
.wrap { width: min(1440px, 92vw); margin-inline: auto; }
.wrap--narrow { width: min(880px, 92vw); margin-inline: auto; }

section { padding: clamp(3.5rem, 7vw, 5.5rem) 0; position: relative; }

.sec-head { margin-bottom: clamp(2rem, 4vw, 3rem); }
.sec-head--center { text-align: center; }
.sec-head--center .eyebrow { justify-content: center; }
.sec-head h2 { margin-top: 1.1rem; }
.sec-head p { margin-top: 1.1rem; max-width: 56ch; }
.sec-head--center p { margin-inline: auto; }

.hairline { border: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--line) 18%, var(--line) 82%, transparent); }

/* ============ buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--sans);
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 1.05rem 2.4rem;
  border-radius: 999px;
  border: 1px solid var(--gold);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.45s var(--ease), border-color 0.45s var(--ease), transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, var(--gold-deep), var(--gold) 50%, var(--gold-bright));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.55s var(--ease);
  z-index: -1;
}
.btn--solid { color: var(--ink); background: var(--gold); }
.btn--solid::before { transform: scaleX(1); transform-origin: right; }
.btn--solid:hover { box-shadow: 0 12px 38px rgba(198, 161, 91, 0.35); transform: translateY(-2px); }
.btn--ghost { color: var(--gold-bright); background: transparent; }
.btn--ghost:hover { color: var(--ink); transform: translateY(-2px); }
.btn--ghost:hover::before { transform: scaleX(1); }
.btn .arr { font-size: 1rem; letter-spacing: 0; transition: transform 0.4s var(--ease); }
.btn:hover .arr { transform: translateX(5px); }

.link-line {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-bright);
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--line);
  transition: border-color 0.4s, color 0.4s;
}
.link-line:hover { border-color: var(--gold); color: var(--gold); }

/* ============ navbar ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.5s var(--ease), border-color 0.5s var(--ease), padding 0.5s var(--ease);
  border-bottom: 1px solid transparent;
  padding: 1.4rem 0;
}
.nav.scrolled {
  background: rgba(26, 22, 18, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: var(--line);
  padding: 0.8rem 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }

.brand { display: flex; align-items: center; gap: 0.85rem; }
.brand-mark {
  width: 48px; height: 48px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  overflow: hidden;
  background: #000;
  flex: none;
  box-shadow: 0 0 18px rgba(198, 161, 91, 0.25);
}
.brand-mark img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 52% 42%;
  transform: scale(1.12);
}
.brand-name { font-family: var(--serif); font-weight: 600; font-size: 1.32rem; letter-spacing: 0.06em; line-height: 1.15; color: var(--cream); }
.brand-name small { display: block; font-family: var(--sans); font-weight: 500; font-size: 0.6rem; letter-spacing: 0.5em; text-transform: uppercase; color: var(--gold-bright); margin-top: 2px; }

.nav-links { display: flex; align-items: center; gap: 2.4rem; list-style: none; }
.nav-links a:not(.btn) {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--cream-dim);
  position: relative;
  padding: 0.3rem 0;
  transition: color 0.35s;
}
.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ease);
}
.nav-links a:not(.btn):hover, .nav-links a.active:not(.btn) { color: var(--gold-bright); }
.nav-links a:not(.btn):hover::after, .nav-links a.active:not(.btn)::after { transform: scaleX(1); transform-origin: left; }
.nav-links .btn { padding: 0.75rem 1.7rem; font-size: 0.7rem; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  width: 40px; height: 40px;
  position: relative;
  z-index: 110;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 1.5px;
  background: var(--gold-bright);
  margin: 6px auto;
  transition: transform 0.4s var(--ease), opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============ hero (cinematic slideshow) ============ */
.hero {
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: clamp(8rem, 16vh, 10rem) 0 clamp(2.5rem, 6vh, 4.5rem);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero-slides img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: heroSlide 28s linear infinite;
}
.hero-slides img:nth-child(1) { animation-delay: -1s; }
.hero-slides img:nth-child(2) { animation-delay: 6s; }
.hero-slides img:nth-child(3) { animation-delay: 13s; }
.hero-slides img:nth-child(4) { animation-delay: 20s; }
@keyframes heroSlide {
  0%   { opacity: 0; transform: scale(1.02); }
  5%   { opacity: 1; }
  26%  { opacity: 1; }
  34%  { opacity: 0; transform: scale(1.12); }
  100% { opacity: 0; transform: scale(1.02); }
}
.hero::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(26,22,18,0.78) 0%, rgba(26,22,18,0.42) 38%, rgba(26,22,18,0.9) 78%, var(--ink) 100%),
    radial-gradient(70% 60% at 18% 80%, rgba(26,22,18,0.78), transparent 70%);
}
@media (prefers-reduced-motion: reduce) {
  .hero-slides img { animation: none; opacity: 0; }
  .hero-slides img:first-child { opacity: 1; }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 1.6rem;
}
.hero-eyebrow::before, .hero-eyebrow::after { content: ""; width: 50px; height: 1px; background: var(--gold); opacity: 0.7; }
.hero h1 { max-width: 13ch; }
.hero-sub {
  margin-top: 1.8rem;
  max-width: 46ch;
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  color: var(--cream);
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.6);
}
.hero-cta { margin-top: 2.6rem; display: flex; flex-wrap: wrap; gap: 1.1rem; align-items: center; }

.hero-meta {
  margin-top: clamp(2.8rem, 6vh, 4.5rem);
  padding-top: 1.6rem;
  border-top: 1px solid var(--line-soft);
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem 4rem;
  font-size: 0.88rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-dim);
}
.hero-meta b { display: block; color: var(--gold-bright); font-weight: 500; margin-bottom: 0.25rem; }

.hero-reveal { opacity: 0; transform: translateY(40px); filter: blur(10px); animation: rise 1.2s var(--ease) forwards; }
.hero-reveal:nth-child(2) { animation-delay: 0.18s; }
.hero-reveal:nth-child(3) { animation-delay: 0.36s; }
.hero-reveal:nth-child(4) { animation-delay: 0.54s; }
.hero-reveal:nth-child(5) { animation-delay: 0.72s; }
@keyframes rise { to { opacity: 1; transform: none; filter: blur(0); } }

/* gold shimmer sweeping across the italic gradient words */
.hero .display em {
  background-size: 220% auto;
  animation: shimmer 5.5s ease-in-out 2.2s infinite;
}
@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* breathing glow on the primary CTA */
.hero-cta .btn--solid { animation: ctaGlow 3.4s ease-in-out 2s infinite; }
@keyframes ctaGlow {
  0%, 100% { box-shadow: 0 0 0 rgba(198, 161, 91, 0); }
  50% { box-shadow: 0 6px 34px rgba(198, 161, 91, 0.45); }
}

/* gold rule above the info strip draws itself in */
.hero-meta { border-top: 0; }
.hero-meta::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(198, 161, 91, 0.08));
  transform: scaleX(0);
  transform-origin: left;
  animation: drawLine 1.5s var(--ease) 1.1s forwards;
}
.hero-meta { position: relative; }
@keyframes drawLine { to { transform: scaleX(1); } }

/* drifting gold sparkles */
.hero .spark {
  position: absolute;
  bottom: -3vh;
  color: var(--gold-bright);
  text-shadow: 0 0 12px rgba(233, 207, 156, 0.8);
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  animation: sparkFloat linear infinite;
}
@keyframes sparkFloat {
  0% { transform: translateY(0) rotate(0deg) scale(0.6); opacity: 0; }
  12% { opacity: 0.85; }
  85% { opacity: 0.5; }
  100% { transform: translateY(-105vh) rotate(220deg) scale(1.1); opacity: 0; }
}

/* parallax wrapper moves smoothly */
.hero-slides { transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1); transform: scale(1.05); }

@media (prefers-reduced-motion: reduce) {
  .hero .spark { display: none; }
  .hero-slides { transform: none; }
}

/* scroll cue */
.scroll-cue {
  position: absolute;
  right: clamp(1rem, 4vw, 3rem);
  bottom: 3rem;
  writing-mode: vertical-rl;
  font-size: 0.66rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--cream-faint);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.scroll-cue::after {
  content: "";
  width: 1px;
  height: 56px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: cueDrop 2.2s var(--ease) infinite;
}
@keyframes cueDrop {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* page hero (inner pages) */
.page-hero {
  padding: clamp(7.5rem, 14vh, 9.5rem) 0 clamp(2.5rem, 5vw, 3.5rem);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: -40%; right: -15%;
  width: 60vw; height: 60vw;
  background: radial-gradient(circle, rgba(198,161,91,0.09), transparent 65%);
  pointer-events: none;
}
.page-hero .crumb { font-size: 0.8rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--cream-faint); margin-bottom: 1.4rem; }
.page-hero .crumb a:hover { color: var(--gold); }
.page-hero .crumb span { color: var(--gold); }

/* ============ marquee ============ */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.3rem 0;
  overflow: hidden;
  background: var(--ink-2);
}
.marquee-track {
  display: flex;
  gap: 3.4rem;
  width: max-content;
  animation: marquee 36s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--cream-dim);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 3.4rem;
}
.marquee-track span::after { content: "✦"; font-size: 0.7rem; color: var(--gold); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============ intro split ============ */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.split--rev { grid-template-columns: 1fr 1.05fr; }

.frame { position: relative; }
.frame img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius);
  filter: saturate(0.78) contrast(1.03);
  transition: filter 0.7s var(--ease), transform 0.7s var(--ease);
}
.frame:hover img { filter: saturate(1) contrast(1.05); }
.frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transform: translate(18px, 18px);
  z-index: -1;
  transition: transform 0.6s var(--ease);
}
.frame:hover::before { transform: translate(12px, 12px); }
.frame-badge {
  position: absolute;
  bottom: -1.6rem;
  right: -1rem;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 50%;
  width: 130px; height: 130px;
  display: grid;
  place-items: center;
  text-align: center;
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-bright);
  line-height: 1.7;
  box-shadow: 0 24px 50px rgba(0,0,0,0.5);
  animation: spinSlow 26s linear infinite;
}
@keyframes spinSlow { to { transform: rotate(360deg); } }

.sig {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.7rem;
  color: var(--gold-bright);
  margin-top: 2rem;
}
.sig small { display: block; font-family: var(--sans); font-style: normal; font-size: 0.68rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--cream-faint); margin-top: 0.3rem; }

/* ============ service cards ============ */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.svc-card {
  position: relative;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 2.4rem 2.1rem 2.2rem;
  background: linear-gradient(165deg, var(--ink-2), var(--ink));
  overflow: hidden;
  transition: border-color 0.5s, transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.svc-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.5s;
}
.svc-card:hover {
  border-color: var(--line);
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.45);
}
.svc-card:hover::before { opacity: 1; }
.svc-card .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold);
  letter-spacing: 0.15em;
}
.svc-card h3 { font-size: 1.55rem; margin: 1rem 0 0.7rem; }
.svc-card p { font-size: 1.02rem; color: var(--cream-dim); }
.svc-card .link-line { margin-top: 1.6rem; font-size: 0.76rem; }
.svc-ico { font-size: 1.5rem; color: var(--gold); position: absolute; top: 2.2rem; right: 2.1rem; opacity: 0.7; }

/* ============ service menu (services page) ============ */
.menu-cat { margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.menu-cat-head {
  display: flex;
  align-items: baseline;
  gap: 1.6rem;
  margin-bottom: 2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--line);
}
.menu-cat-head h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
.menu-cat-head .sec-num { flex: none; }
.menu-cat-head .cat-note { margin-left: auto; font-size: 0.8rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--cream-faint); }

.menu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.menu-item {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 1.7rem 1.8rem;
  background: var(--ink-2);
  transition: border-color 0.45s, background 0.45s, transform 0.45s var(--ease);
}
.menu-item:hover { border-color: var(--line); background: var(--ink-3); transform: translateY(-3px); }
.menu-item-top { display: flex; align-items: baseline; gap: 1rem; }
.menu-item-top h3 { font-size: 1.3rem; }
.menu-item-top .dots { flex: 1; border-bottom: 1px dotted rgba(198,161,91,0.35); transform: translateY(-4px); }
.menu-item-top .price { font-family: var(--serif); font-style: italic; font-size: 1.2rem; color: var(--gold-bright); white-space: nowrap; }
.menu-item p { font-size: 1.02rem; color: var(--cream-dim); margin-top: 0.55rem; }
.menu-item .dur {
  display: inline-block;
  margin-top: 0.9rem;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.32rem 0.9rem;
}

/* ============ service item lists (detailed menu) ============ */
.menu-list {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: linear-gradient(165deg, var(--ink-2), var(--ink));
  padding: 1.6rem 2.2rem;
}
.menu-list ul {
  list-style: none;
  columns: 3;
  column-gap: 3rem;
}
.menu-list li {
  break-inside: avoid;
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  padding: 0.62rem 0;
  font-size: 1.05rem;
  color: var(--cream);
  border-bottom: 1px dotted rgba(198, 161, 91, 0.22);
}
.menu-list li::before {
  content: "✦";
  flex: none;
  font-size: 0.55rem;
  color: var(--gold);
  transform: translateY(-2px);
}
@media (max-width: 1020px) {
  .menu-list ul { columns: 2; }
}
@media (max-width: 560px) {
  .menu-list ul { columns: 1; }
  .menu-list { padding: 1.2rem 1.4rem; }
}

/* ============ stats ============ */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat {
  padding: 2.8rem 1.5rem;
  text-align: center;
  border-right: 1px solid var(--line-soft);
}
.stat:last-child { border-right: 0; }
.stat b { display: block; font-family: var(--serif); font-weight: 400; font-style: italic; font-size: clamp(2.2rem, 4vw, 3.2rem); color: var(--gold-bright); }
.stat span { font-size: 0.84rem; font-weight: 500; letter-spacing: 0.3em; text-transform: uppercase; color: var(--cream-dim); }

/* ============ testimonials ============ */
.testi { background: var(--ink-2); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); overflow: hidden; }
.testi::before {
  content: "“";
  position: absolute;
  top: -0.5rem; left: 50%;
  transform: translateX(-50%);
  font-family: var(--serif);
  font-size: 22rem;
  line-height: 1;
  color: rgba(198,161,91,0.07);
  pointer-events: none;
}
.carousel { position: relative; max-width: 820px; margin-inline: auto; text-align: center; }
.slides { position: relative; min-height: 300px; }
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.6rem;
}
.slide.active { opacity: 1; transform: none; pointer-events: auto; }
.slide blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.35rem, 2.6vw, 1.9rem);
  line-height: 1.45;
  color: var(--cream);
}
.slide .who { font-size: 0.84rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold-bright); }
.slide .who small { display: block; color: var(--cream-faint); letter-spacing: 0.22em; margin-top: 0.3rem; }
.slide .stars { color: var(--gold); letter-spacing: 0.35em; font-size: 0.85rem; }

.car-nav { display: flex; align-items: center; justify-content: center; gap: 1.6rem; margin-top: 2.4rem; }
.car-btn {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--gold-bright);
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.4s, color 0.4s, border-color 0.4s;
}
.car-btn:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.car-dots { display: flex; gap: 0.6rem; }
.car-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--line); border: 0; cursor: pointer; transition: background 0.35s, transform 0.35s; padding: 0; }
.car-dot.active { background: var(--gold); transform: scale(1.35); }

/* ============ gallery / instagram ============ */
.insta-strip { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0.8rem; }
.insta-strip a { position: relative; overflow: hidden; border-radius: 10px; aspect-ratio: 1; }
.insta-strip img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.75); transition: transform 0.7s var(--ease), filter 0.7s; }
.insta-strip a::after {
  content: "✦";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(26,22,18,0.55);
  color: var(--gold-bright);
  font-size: 1.4rem;
  opacity: 0;
  transition: opacity 0.45s;
}
.insta-strip a:hover::after { opacity: 1; }
.insta-strip a:hover img { transform: scale(1.08); filter: saturate(1); }

.filter-bar { display: flex; flex-wrap: wrap; gap: 0.7rem; justify-content: center; margin-bottom: 3rem; }
.filter-btn {
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream-dim);
  background: transparent;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  padding: 0.65rem 1.5rem;
  cursor: pointer;
  transition: all 0.4s var(--ease);
}
.filter-btn:hover { border-color: var(--gold); color: var(--gold-bright); }
.filter-btn.active { background: var(--gold); border-color: var(--gold); color: var(--ink); }

.gal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.gal-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: zoom-in;
  aspect-ratio: 4/5;
  border: 1px solid var(--line-soft);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.gal-item.hide { display: none; }
.gal-item img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.75); transition: transform 0.8s var(--ease), filter 0.6s; }
.gal-item:hover img { transform: scale(1.07); filter: saturate(1); }
.gal-cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 2.4rem 1.5rem 1.3rem;
  background: linear-gradient(180deg, transparent, rgba(26,22,18,0.92));
  transform: translateY(12px);
  opacity: 0;
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.gal-item:hover .gal-cap { opacity: 1; transform: none; }
.gal-cap b { display: block; font-family: var(--serif); font-weight: 500; font-size: 1.3rem; }
.gal-cap span { font-size: 0.75rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-bright); }

/* lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(26, 22, 18, 0.94);
  backdrop-filter: blur(10px);
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s var(--ease);
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox figure { max-width: min(880px, 90vw); text-align: center; }
.lightbox img {
  max-height: 76vh;
  max-width: 100%;
  margin-inline: auto;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: 0 40px 100px rgba(0,0,0,0.6);
}
.lightbox figcaption { margin-top: 1.2rem; font-family: var(--serif); font-style: italic; font-size: 1.2rem; color: var(--gold-bright); }
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--cream);
  border-radius: 50%;
  width: 52px; height: 52px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.35s, color 0.35s;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: var(--gold); color: var(--ink); }
.lb-close { top: 1.6rem; right: 1.6rem; }
.lb-prev { left: 1.6rem; top: 50%; transform: translateY(-50%); }
.lb-next { right: 1.6rem; top: 50%; transform: translateY(-50%); }

/* ============ team ============ */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.team-card { text-align: center; }
.team-card .ph {
  position: relative;
  overflow: hidden;
  border-radius: 120px 120px var(--radius) var(--radius);
  aspect-ratio: 3/4;
  border: 1px solid var(--line-soft);
  margin-bottom: 1.4rem;
}
.team-card .ph img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.7); transition: transform 0.7s var(--ease), filter 0.6s; }
.team-card:hover .ph img { transform: scale(1.06); filter: saturate(1); }
.team-card h3 { font-size: 1.45rem; }
.team-card .role { font-size: 0.78rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold-bright); margin: 0.4rem 0 0.8rem; }
.team-card p { font-size: 1rem; color: var(--cream-dim); max-width: 30ch; margin-inline: auto; }

/* ============ values ============ */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.value-card {
  border-top: 1px solid var(--line);
  padding: 2.2rem 0 0;
}
.value-card .sec-num { display: block; margin-bottom: 1.2rem; }
.value-card h3 { font-size: 1.5rem; margin-bottom: 0.8rem; }
.value-card p { font-size: 1.05rem; color: var(--cream-dim); }

/* ============ CTA band ============ */
.cta-band {
  position: relative;
  isolation: isolate;
  text-align: center;
  padding: clamp(4.5rem, 9vw, 6.5rem) 0;
  overflow: hidden;
}
.cta-band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; filter: saturate(0.6) brightness(0.4); }
.cta-band::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(60% 80% at 50% 50%, rgba(26,22,18,0.3), rgba(26,22,18,0.85));
}
.cta-band h2 { margin: 1.2rem auto 1.4rem; max-width: 18ch; }
.cta-band p { max-width: 48ch; margin: 0 auto 2.4rem; color: var(--cream-dim); }

/* ============ forms ============ */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; }
.field { display: flex; flex-direction: column; gap: 0.5rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 0.82rem; font-weight: 500; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold-bright); }
.field input, .field select, .field textarea {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1.08rem;
  color: var(--cream);
  background: var(--ink-2);
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  padding: 0.95rem 1.15rem;
  transition: border-color 0.35s, box-shadow 0.35s;
  width: 100%;
}
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c6a15b' fill='none' stroke-width='1.5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1.1rem center; cursor: pointer; }
.field select option { background: var(--ink-2); color: var(--cream); }
.field input::placeholder, .field textarea::placeholder { color: var(--cream-faint); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(198,161,91,0.14);
}
.field input::-webkit-calendar-picker-indicator { filter: invert(0.75) sepia(0.5) saturate(3); cursor: pointer; }
.field .err { font-size: 0.92rem; color: #f0a98f; letter-spacing: 0.04em; min-height: 1.1em; display: none; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #b3604a; }
.field.invalid .err { display: block; }

/* booking success screen */
.booking-done {
  position: fixed;
  inset: 0;
  z-index: 600;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background: rgba(26, 22, 18, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--ease);
  overflow-y: auto;
}
.booking-done.open { opacity: 1; pointer-events: auto; }
.booking-card {
  width: min(560px, 100%);
  background: linear-gradient(170deg, var(--ink-3), var(--ink-2));
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(2.2rem, 5vw, 3.4rem);
  text-align: center;
  box-shadow: 0 50px 120px rgba(0, 0, 0, 0.65);
  transform: translateY(30px) scale(0.97);
  transition: transform 0.6s var(--ease);
  position: relative;
  overflow: hidden;
}
.booking-done.open .booking-card { transform: none; }
.booking-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
}
.booking-seal {
  width: 84px; height: 84px;
  margin: 0 auto 1.6rem;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 2rem;
  color: var(--gold-bright);
  animation: sealPop 0.8s var(--ease) 0.25s both;
  box-shadow: 0 0 0 8px rgba(198, 161, 91, 0.08), 0 0 60px rgba(198, 161, 91, 0.18);
}
@keyframes sealPop {
  from { transform: scale(0.4); opacity: 0; }
  60% { transform: scale(1.12); }
  to { transform: scale(1); opacity: 1; }
}
.booking-card h3 { font-size: clamp(1.7rem, 4vw, 2.3rem); margin-bottom: 0.6rem; }
.booking-card > p { color: var(--cream-dim); font-size: 1.08rem; }
.booking-summary {
  margin: 1.8rem 0;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(26, 22, 18, 0.45);
  text-align: left;
}
.booking-summary div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.5rem;
  padding: 0.95rem 1.4rem;
  border-bottom: 1px solid var(--line-soft);
}
.booking-summary div:last-child { border-bottom: 0; }
.booking-summary dt { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold-bright); }
.booking-summary dd { font-family: var(--serif); font-style: italic; font-size: 1.3rem; color: var(--cream); text-align: right; }
.email-status { font-size: 0.98rem; letter-spacing: 0.06em; color: var(--cream-dim); min-height: 1.4em; margin-bottom: 1.6rem; }
.email-status.ok { color: var(--gold-bright); }
.email-status .spin {
  display: inline-block;
  width: 12px; height: 12px;
  border: 1.5px solid var(--line);
  border-top-color: var(--gold-bright);
  border-radius: 50%;
  vertical-align: -1px;
  margin-right: 0.45rem;
  animation: spinSlow 0.9s linear infinite;
}
.booking-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; justify-content: center; }
.booking-actions .btn { padding: 0.85rem 1.8rem; font-size: 0.7rem; }

/* contact info panel */
.contact-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(2.5rem, 5vw, 4.5rem); align-items: start; }
.info-card {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: linear-gradient(165deg, var(--ink-2), var(--ink));
  padding: 2.4rem 2.2rem;
}
.info-row { display: flex; gap: 1.2rem; padding: 1.3rem 0; border-bottom: 1px solid var(--line-soft); }
.info-row:last-child { border-bottom: 0; }
.info-row .ico {
  flex: none;
  width: 52px; height: 52px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold-bright);
  background: radial-gradient(circle at 50% 35%, rgba(198,161,91,0.1), transparent 70%);
  transition: border-color 0.4s var(--ease), color 0.4s, transform 0.4s var(--ease);
}
.info-row .ico svg { width: 24px; height: 24px; display: block; }
.info-row:hover .ico { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.info-row b { display: block; font-size: 0.8rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold-bright); font-weight: 500; margin-bottom: 0.3rem; }
.info-row a:hover { color: var(--gold-bright); }
.info-row p { font-size: 1.08rem; color: var(--cream); }

.map-frame {
  margin-top: 4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  filter: grayscale(1) invert(0.92) sepia(0.25) saturate(1.4) hue-rotate(-15deg) contrast(0.92);
}
.map-frame iframe { display: block; width: 100%; height: 420px; border: 0; }

/* ============ location card ============ */
.loc-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  margin-top: 2.5rem;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.loc-map-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.loc-map-bg svg {
  width: 100%;
  height: 100%;
  display: block;
}
.loc-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse 55% 70% at 50% 50%, rgba(26,22,18,0.15) 0%, rgba(26,22,18,0.72) 75%, rgba(26,22,18,0.92) 100%);
}
.loc-pin {
  position: absolute;
  top: calc(50% - 80px);
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  z-index: 3;
  filter: drop-shadow(0 8px 20px rgba(198,161,91,0.55));
  animation: pinBounce 2.8s var(--ease) infinite;
}
@keyframes pinBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}
.loc-info {
  position: relative;
  z-index: 3;
  padding: clamp(2rem, 5vw, 3.5rem) clamp(1.5rem, 5vw, 3rem);
  padding-top: clamp(4rem, 9vw, 6rem);
}

/* ============ footer ============ */
footer {
  border-top: 1px solid var(--line);
  background: var(--ink-2);
  padding: clamp(2.8rem, 5vw, 4rem) 0 1.8rem;
}
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.foot-grid h4 { font-size: 0.82rem; letter-spacing: 0.36em; text-transform: uppercase; color: var(--gold-bright); font-weight: 500; margin-bottom: 1.3rem; }
.foot-grid ul { list-style: none; }
.foot-grid li { margin-bottom: 0.7rem; font-size: 1.05rem; color: var(--cream-dim); }
.foot-grid a:hover { color: var(--gold-bright); }
.foot-brand p { color: var(--cream-dim); font-size: 1.05rem; max-width: 32ch; margin-top: 1.2rem; }
.foot-social { display: flex; gap: 0.8rem; margin-top: 1.6rem; }
.foot-social a {
  width: 42px; height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold-bright);
  font-size: 0.95rem;
  transition: background 0.4s, color 0.4s, transform 0.4s var(--ease);
}
.foot-social a:hover { background: var(--gold); color: var(--ink); transform: translateY(-3px); }
.foot-social a svg { width: 17px; height: 17px; fill: currentColor; display: block; }
.foot-bottom {
  border-top: 1px solid var(--line-soft);
  padding-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  color: var(--cream-faint);
}
.foot-bottom em { font-family: var(--serif); color: var(--gold); }
.foot-staff { color: var(--cream-faint); opacity: 0.7; transition: color 0.3s, opacity 0.3s; }
.foot-staff:hover { color: var(--gold-bright); opacity: 1; }

/* ============ floating WhatsApp button ============ */
.wa-float {
  position: fixed;
  right: clamp(1rem, 3vw, 1.6rem);
  bottom: clamp(1rem, 3vh, 1.6rem);
  z-index: 300;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25d366;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.45);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.wa-float svg { width: 32px; height: 32px; fill: #fff; display: block; }
.wa-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  z-index: -1;
  animation: waPulse 2.4s ease-out infinite;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.45; }
  70%, 100% { transform: scale(1.65); opacity: 0; }
}
.wa-float:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.45);
}

/* ============ reveal on scroll ============ */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }
.reveal-d5 { transition-delay: 0.5s; }

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

/* ============ responsive ============ */
/* large displays — fill the screen, scale the rhythm */
@media (min-width: 1500px) {
  .gal-grid { grid-template-columns: repeat(4, 1fr); }
  .carousel { max-width: 940px; }
  .hero-panel-inner { max-width: 660px; }
}
@media (min-width: 1750px) {
  html { font-size: 18px; }
  .wrap { width: min(1640px, 90vw); }
  .menu-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1020px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem 1.4rem; }
  .insta-strip { grid-template-columns: repeat(3, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    inset: 0;
    background: rgba(26, 22, 18, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 2.2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.45s var(--ease);
    z-index: 105;
  }
  .nav-links.open { opacity: 1; pointer-events: auto; }
  .nav-links a:not(.btn) { font-size: 1rem; }
  .split, .split--rev, .contact-grid { grid-template-columns: 1fr; }
  .split--rev .frame { order: -1; }
  .menu-grid, .form-grid { grid-template-columns: 1fr; }
  .gal-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line-soft); }
  .scroll-cue { display: none; }
  .frame-badge { width: 104px; height: 104px; right: 0.5rem; }
  .menu-cat-head .cat-note { display: none; }
}

@media (max-width: 560px) {
  .gal-grid, .team-grid { grid-template-columns: 1fr; }
  .insta-strip { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr; }
  .hero-meta { gap: 1.4rem 2.2rem; }
  .lb-prev, .lb-next { display: none; }
}
