/* =================================================================
   Kalm Grooming Dubai — Silicon Valley premium dark + gold
   Palette: ink #0A0908 / anthracite #15130F / gold #D4AF37
   ================================================================= */

:root {
  --ink: #0A0908;
  --anthracite: #15130F;
  --anthracite-2: #1C1A15;
  --surface: #221F19;
  --line: rgba(212, 175, 55, 0.12);
  --line-strong: rgba(212, 175, 55, 0.28);
  --ivory: #F2EDE3;
  --ivory-muted: #E5DECF;
  --sand: #A8A095;
  --sand-dim: #6F6A60;
  --gold: #D4AF37;
  --gold-bright: #E8C766;
  --copper: #B87E5A;
  --shadow-lg: 0 24px 80px -20px rgba(0, 0, 0, 0.7);
  --shadow-glow: 0 0 60px -10px rgba(212, 175, 55, 0.25);
  --radius: 18px;
  --radius-sm: 10px;
  --max: 1280px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--ivory);
  font-family: 'Inter Tight', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  font-feature-settings: 'ss01', 'cv11';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s var(--ease);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

/* ----------- Typography ----------- */
h1, h2, h3, h4 {
  font-family: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin: 0 0 0.6em;
  font-variation-settings: 'opsz' 144, 'SOFT' 50;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 1.02;
}

h2 {
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  line-height: 1.05;
}

h3 {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 1.15;
}

.italic {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Inter Tight', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 11px;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 24px;
}

.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.mono {
  font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, monospace;
  letter-spacing: -0.01em;
}

/* ----------- Layout ----------- */
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 120px 0;
  position: relative;
}

@media (max-width: 768px) {
  section {
    padding: 80px 0;
  }
}

/* ----------- Skip link ----------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  background: var(--gold);
  color: var(--ink);
  padding: 8px 16px;
  z-index: 9999;
}
.skip-link:focus {
  left: 8px;
}

/* ----------- Nav ----------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: all 0.4s var(--ease);
  background: rgba(10, 9, 8, 0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
}

.nav.scrolled {
  background: rgba(10, 9, 8, 0.72);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Fraunces', serif;
  font-size: 22px;
  letter-spacing: 0.02em;
  color: var(--ivory);
}

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--copper) 100%);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-family: 'Fraunces', serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
}

.logo-text {
  font-weight: 500;
}

.logo-text small {
  display: block;
  font-family: 'Inter Tight', sans-serif;
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  color: var(--ivory-muted);
}

.nav-links a {
  position: relative;
  padding: 4px 0;
  transition: color 0.3s var(--ease);
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease);
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a:hover::after {
  width: 100%;
}

.btn-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  background: var(--gold);
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  border-radius: 100px;
  letter-spacing: 0.02em;
  transition: all 0.3s var(--ease);
  border: 1px solid var(--gold);
}

.btn-nav:hover {
  background: transparent;
  color: var(--gold);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--ivory);
  transition: all 0.3s var(--ease);
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  font-family: 'Fraunces', serif;
  font-size: 24px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-20px);
  transition: all 0.4s var(--ease);
  z-index: 99;
}

.mobile-menu[data-open="true"] {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.mobile-menu a {
  color: var(--ivory);
}

.mobile-menu a:hover {
  color: var(--gold);
}

.mobile-tel {
  font-family: 'JetBrains Mono', monospace;
  font-size: 16px;
  color: var(--gold) !important;
  letter-spacing: 0.05em;
}

.mobile-cta {
  margin-top: 16px;
  padding: 14px 32px;
  background: var(--gold);
  color: var(--ink) !important;
  font-family: 'Inter Tight', sans-serif;
  font-size: 14px;
  font-weight: 600;
  border-radius: 100px;
  letter-spacing: 0.02em;
}

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

/* ----------- Buttons ----------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 100px;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  white-space: nowrap;
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
  color: var(--ink);
  border-color: var(--gold);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: var(--ink);
  transform: translate(-50%, -50%);
  transition: width 0.6s var(--ease), height 0.6s var(--ease);
  z-index: -1;
}

.btn-primary:hover {
  color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover::before {
  width: 400px;
  height: 400px;
}

.btn-primary span {
  position: relative;
  z-index: 2;
}

.btn-ghost {
  background: transparent;
  color: var(--ivory);
  border-color: var(--line-strong);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-arrow {
  width: 14px;
  height: 14px;
  transition: transform 0.3s var(--ease);
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* ----------- Hero ----------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.55) saturate(0.85);
}

.hero-poster {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.55) saturate(0.85);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 30%, rgba(212, 175, 55, 0.12), transparent 50%),
    linear-gradient(180deg, rgba(10, 9, 8, 0.4) 0%, rgba(10, 9, 8, 0.85) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.hero-tagline {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  font-weight: 500;
}

.hero-tagline::before,
.hero-tagline::after {
  content: '';
  flex: 0 0 32px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.hero h1 {
  max-width: 920px;
  font-weight: 300;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
}

.hero h1 .italic {
  color: var(--gold);
}

.hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--ivory-muted);
  max-width: 580px;
  margin: 24px 0 48px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-meta {
  position: absolute;
  bottom: 48px;
  left: 0;
  right: 0;
  z-index: 3;
}

.hero-meta-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sand);
  border-top: 1px solid var(--line);
  padding-top: 32px;
  padding-bottom: 0;
}

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-meta-item strong {
  color: var(--ivory);
  font-weight: 500;
}

.hero-scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--sand);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  animation: bob 2.4s ease-in-out infinite;
}

@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

@media (min-width: 1100px) {
  .hero-scroll {
    display: flex;
  }
}

/* ----------- Trust strip ----------- */
.trust {
  padding: 48px 0;
  background: var(--anthracite);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-label {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--sand);
}

.trust-logos {
  display: flex;
  gap: 48px;
  align-items: center;
  flex-wrap: wrap;
  font-family: 'Fraunces', serif;
  font-size: 18px;
  color: var(--ivory-muted);
  letter-spacing: 0.04em;
}

.trust-logos span {
  opacity: 0.7;
  transition: opacity 0.3s var(--ease);
}

.trust-logos span:hover {
  opacity: 1;
  color: var(--gold);
}

/* ----------- Section header ----------- */
.section-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-bottom: 80px;
  align-items: end;
}

.section-header p {
  color: var(--sand);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 460px;
}

@media (max-width: 768px) {
  .section-header {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 48px;
  }
}

/* ----------- Story ----------- */
.story {
  background: var(--ink);
  position: relative;
}

.story::before {
  content: '';
  position: absolute;
  top: 20%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 96px;
  align-items: center;
}

@media (max-width: 900px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.story-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}

.story-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}

.story-visual:hover img {
  transform: scale(1.05);
}

.story-visual-caption {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(10, 9, 8, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  font-size: 13px;
  color: var(--ivory-muted);
}

.story-visual-caption strong {
  color: var(--gold);
  font-weight: 600;
  display: block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.story-body p {
  color: var(--ivory-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 0 0 1.4em;
}

.story-body p:first-of-type::first-letter {
  font-family: 'Fraunces', serif;
  font-size: 3.6em;
  line-height: 0.9;
  float: left;
  padding: 8px 14px 0 0;
  color: var(--gold);
  font-weight: 400;
}

.story-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}

.story-stat-num {
  font-family: 'Fraunces', serif;
  font-size: 2.4rem;
  color: var(--gold);
  font-weight: 400;
  display: block;
  line-height: 1;
}

.story-stat-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand);
  margin-top: 8px;
  display: block;
}

/* ----------- Services ----------- */
.services {
  background: var(--anthracite);
  border-top: 1px solid var(--line);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.service-card {
  position: relative;
  padding: 40px;
  background: var(--anthracite-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: all 0.5s var(--ease);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 320px;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(212, 175, 55, 0.08), transparent 50%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  pointer-events: none;
}

.service-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--gold);
  margin-bottom: 8px;
}

.service-card h3 {
  margin: 0;
  font-size: 1.6rem;
}

.service-card p {
  color: var(--sand);
  font-size: 0.96rem;
  line-height: 1.7;
  margin: 0;
  flex: 1;
}

.service-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  margin-top: auto;
  border-top: 1px solid var(--line);
}

.service-card-price {
  font-family: 'JetBrains Mono', monospace;
  color: var(--gold);
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  font-weight: 500;
}

.service-card-price small {
  color: var(--sand);
  font-size: 0.78rem;
  margin-left: 6px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.service-card-cta {
  font-size: 13px;
  color: var(--ivory-muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s var(--ease);
}

.service-card:hover .service-card-cta {
  color: var(--gold);
  gap: 10px;
}

/* ----------- Experience ----------- */
.experience {
  background: var(--ink);
  position: relative;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 900px) {
  .experience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .experience-grid {
    grid-template-columns: 1fr;
  }
}

.exp-card {
  text-align: center;
  padding: 32px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--anthracite-2) 0%, rgba(28, 26, 21, 0.4) 100%);
  transition: all 0.4s var(--ease);
}

.exp-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-4px);
}

.exp-card-num {
  font-family: 'Fraunces', serif;
  font-size: 0.9rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  display: block;
  margin-bottom: 16px;
}

.exp-card h4 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  font-weight: 400;
}

.exp-card p {
  color: var(--sand);
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0;
}

/* ----------- Gallery ----------- */
.gallery {
  background: var(--anthracite);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.gallery-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 900px) {
  .gallery-track {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .gallery-track {
    grid-template-columns: 1fr;
  }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  aspect-ratio: 4/5;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease), filter 0.6s var(--ease);
  filter: saturate(0.85) brightness(0.9);
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: saturate(1.1) brightness(1);
}

.gallery-item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 9, 8, 0.9) 100%);
  color: var(--ivory);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.4s var(--ease);
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item--tall {
  grid-row: span 2;
}

/* ----------- Reviews ----------- */
.reviews {
  background: var(--ink);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 900px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

.review-card {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--anthracite-2);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.4s var(--ease);
}

.review-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-4px);
}

.review-stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 4px;
}

.review-text {
  color: var(--ivory-muted);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.review-author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--copper) 100%);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 13px;
}

.review-author-name {
  color: var(--ivory);
  font-weight: 500;
  display: block;
}

.review-author-meta {
  color: var(--sand);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* ----------- Visit (contact) ----------- */
.visit {
  background: var(--anthracite);
  border-top: 1px solid var(--line);
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: stretch;
}

@media (max-width: 900px) {
  .visit-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.visit-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.visit-row {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

.visit-row:last-child {
  border-bottom: none;
}

.visit-row svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  margin-top: 4px;
}

.visit-row-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 6px;
}

.visit-row-value {
  font-size: 1.05rem;
  color: var(--ivory);
  line-height: 1.5;
}

.visit-row-value a {
  color: var(--ivory);
  border-bottom: 1px solid transparent;
  transition: all 0.3s var(--ease);
}

.visit-row-value a:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.visit-map {
  position: relative;
  min-height: 480px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}

.visit-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: invert(0.9) hue-rotate(180deg) brightness(0.85) contrast(1.1);
}

/* ----------- CTA banner ----------- */
.cta-banner {
  background: var(--ink);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(212, 175, 55, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.cta-banner-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.cta-banner h2 {
  margin-bottom: 24px;
}

.cta-banner p {
  color: var(--ivory-muted);
  font-size: 1.1rem;
  margin: 0 0 40px;
}

.cta-banner-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ----------- Footer ----------- */
footer {
  background: var(--ink);
  padding: 80px 0 40px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

.footer-brand {
  max-width: 320px;
}

.footer-brand p {
  color: var(--sand);
  font-size: 14px;
  line-height: 1.7;
  margin: 16px 0 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--ivory-muted);
  transition: all 0.3s var(--ease);
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.footer-col h5 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-col a {
  color: var(--ivory-muted);
  font-size: 14px;
  transition: color 0.3s var(--ease);
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--sand-dim);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

/* ----------- Reveal animations ----------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ----------- WhatsApp floating button ----------- */
.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4);
  z-index: 50;
  transition: all 0.3s var(--ease);
  color: white;
}

.whatsapp-fab:hover {
  transform: translateY(-4px) scale(1.05);
}

@media (max-width: 600px) {
  .whatsapp-fab {
    bottom: 16px;
    right: 16px;
    width: 52px;
    height: 52px;
  }
}

/* ----------- Services page styles ----------- */
.page-hero {
  padding: 200px 0 100px;
  background: var(--ink);
  position: relative;
  text-align: center;
  border-bottom: 1px solid var(--line);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.08), transparent 60%);
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

.page-hero p {
  color: var(--ivory-muted);
  font-size: 1.15rem;
  margin: 0;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.services-list {
  background: var(--ink);
}

.services-list-table {
  border-top: 1px solid var(--line);
}

.services-row {
  display: grid;
  grid-template-columns: 1fr 2fr 120px 140px;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
  transition: all 0.3s var(--ease);
}

.services-row:hover {
  background: var(--anthracite);
  padding-left: 16px;
  padding-right: 16px;
}

@media (max-width: 768px) {
  .services-row {
    grid-template-columns: 1fr 100px;
    gap: 16px;
    padding: 24px 0;
  }
  .services-row > p,
  .services-row > .services-duration {
    grid-column: 1 / -1;
  }
}

.services-row h4 {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  margin: 0;
  font-weight: 500;
}

.services-row p {
  color: var(--sand);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}

.services-duration {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.05em;
  text-align: right;
}

.services-price {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.1rem;
  color: var(--ivory);
  text-align: right;
  font-weight: 500;
}

.services-category {
  padding: 48px 0 24px;
}

.services-category h3 {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--gold);
  margin: 0;
}

.services-category small {
  display: block;
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 8px;
}

/* ----------- Booking page ----------- */
.booking-page {
  padding: 140px 0 80px;
  min-height: 100vh;
  background: var(--ink);
}

.booking-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

.booking-progress {
  display: flex;
  justify-content: space-between;
  margin-bottom: 56px;
  position: relative;
}

.booking-progress::before {
  content: '';
  position: absolute;
  top: 16px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: var(--line);
  z-index: 0;
}

.booking-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand);
  background: var(--ink);
  padding: 0 12px;
}

.booking-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--anthracite);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-family: 'Fraunces', serif;
  font-size: 14px;
  color: var(--sand);
  transition: all 0.4s var(--ease);
}

.booking-step.is-active .booking-step-num {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
}

.booking-step.is-active {
  color: var(--gold);
}

.booking-step.is-complete .booking-step-num {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

.booking-panel {
  background: var(--anthracite);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 48px;
  margin-bottom: 24px;
}

@media (max-width: 600px) {
  .booking-panel {
    padding: 28px 20px;
  }
}

.booking-panel h2 {
  font-size: 2rem;
  margin-bottom: 8px;
}

.booking-panel p.lead {
  color: var(--sand);
  margin: 0 0 32px;
}

.booking-service-list,
.booking-time-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 32px;
}

.booking-service-item {
  padding: 20px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--anthracite-2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: all 0.3s var(--ease);
}

.booking-service-item:hover {
  border-color: var(--line-strong);
}

.booking-service-item.is-selected {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.06);
  box-shadow: 0 0 0 1px var(--gold);
}

.booking-service-item-info {
  flex: 1;
  min-width: 0;
}

.booking-service-item-info h4 {
  margin: 0 0 4px;
  font-size: 1.05rem;
  color: var(--ivory);
}

.booking-service-item-info small {
  color: var(--sand);
  font-size: 12px;
  letter-spacing: 0.05em;
}

.booking-service-item-price {
  font-family: 'JetBrains Mono', monospace;
  color: var(--gold);
  font-size: 1.05rem;
  font-weight: 500;
}

.booking-date {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  margin-bottom: 32px;
}

@media (max-width: 480px) {
  .booking-date {
    grid-template-columns: repeat(4, 1fr);
  }
}

.booking-date-btn {
  padding: 12px 6px;
  border: 1px solid var(--line);
  background: var(--anthracite-2);
  border-radius: var(--radius-sm);
  text-align: center;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  color: var(--ivory);
}

.booking-date-btn:hover {
  border-color: var(--line-strong);
}

.booking-date-btn.is-selected {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}

.booking-date-day {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.7;
}

.booking-date-num {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  margin-top: 4px;
}

.booking-times {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 32px;
}

@media (max-width: 480px) {
  .booking-times {
    grid-template-columns: repeat(3, 1fr);
  }
}

.booking-time-btn {
  padding: 12px;
  border: 1px solid var(--line);
  background: var(--anthracite-2);
  border-radius: var(--radius-sm);
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--ivory);
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.booking-time-btn:hover {
  border-color: var(--line-strong);
}

.booking-time-btn.is-selected {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}

.booking-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
}

@media (max-width: 600px) {
  .booking-form {
    grid-template-columns: 1fr;
  }
}

.booking-form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.booking-form-row.full {
  grid-column: 1 / -1;
}

.booking-form-row label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand);
}

.booking-form-row input,
.booking-form-row textarea,
.booking-form-row select {
  padding: 14px 16px;
  background: var(--anthracite-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--ivory);
  font-family: inherit;
  font-size: 0.96rem;
  transition: all 0.3s var(--ease);
}

.booking-form-row input:focus,
.booking-form-row textarea:focus,
.booking-form-row select:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--surface);
}

.booking-form-row textarea {
  min-height: 100px;
  resize: vertical;
}

.booking-summary {
  background: var(--anthracite-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 24px;
}

.booking-summary h3 {
  font-size: 1.2rem;
  margin: 0 0 24px;
  color: var(--gold);
}

.booking-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.96rem;
}

.booking-summary-row:last-child {
  border-bottom: none;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gold);
  margin-top: 8px;
  padding-top: 24px;
  border-top: 1px solid var(--line-strong);
}

.booking-summary-row span:first-child {
  color: var(--sand);
}

.booking-summary-row span:last-child {
  color: var(--ivory);
  font-family: 'JetBrains Mono', monospace;
}

.booking-actions {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.booking-actions .booking-back {
  background: transparent;
  border: 1px solid var(--line);
  padding: 12px 24px;
  border-radius: 100px;
  color: var(--sand);
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.booking-actions .booking-back:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.booking-actions .booking-back:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* ----------- Payment page ----------- */
.payment-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  margin-top: 40px;
}

@media (max-width: 900px) {
  .payment-grid {
    grid-template-columns: 1fr;
  }
}

.payment-form-card,
.payment-summary-card {
  background: var(--anthracite);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
}

@media (max-width: 600px) {
  .payment-form-card,
  .payment-summary-card {
    padding: 28px 20px;
  }
}

.payment-method-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin-bottom: 32px;
  padding: 4px;
  background: var(--anthracite-2);
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
}

.payment-method-tab {
  padding: 10px 12px;
  border-radius: 6px;
  text-align: center;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  color: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.payment-method-tab.is-active {
  background: var(--surface);
  color: var(--ivory);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.payment-method-tab svg {
  width: 14px;
  height: 14px;
}

.payment-summary-card h3 {
  margin: 0 0 24px;
  font-size: 1.3rem;
  color: var(--gold);
}

.payment-summary-card .item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  font-size: 0.95rem;
}

.payment-summary-card .item span:last-child {
  font-family: 'JetBrains Mono', monospace;
  color: var(--ivory);
}

.payment-summary-card .item.total {
  border-top: 1px solid var(--line-strong);
  margin-top: 16px;
  padding-top: 24px;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold);
}

.payment-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px;
  background: rgba(212, 175, 55, 0.06);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  margin-top: 24px;
  font-size: 13px;
  color: var(--ivory-muted);
}

.payment-trust svg {
  color: var(--gold);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.payment-badges {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.payment-badge {
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sand);
}

/* ----------- Decorative mesh background ----------- */
.mesh-bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(at 20% 20%, rgba(212, 175, 55, 0.04) 0%, transparent 50%),
    radial-gradient(at 80% 70%, rgba(184, 126, 90, 0.03) 0%, transparent 50%),
    var(--ink);
}

/* ----------- Three.js particles canvas ----------- */
.particles-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  opacity: 0.5;
}

/* ----------- Accessibility ----------- */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .hero-video {
    display: none;
  }
}
