/* ============================================================
   NOIRE LUNE STUDIO — style.css
   Dark luxury beauty salon website
   ============================================================ */

/* --- Custom Properties --- */
:root {
  --bg:         #1a1612;
  --bg-deep:    #120f0c;
  --bg-raised:  #201c17;
  --bg-card:    #1e1a15;

  --gold:       #b89a6e;
  --gold-light: #d4b896;
  --gold-dim:   rgba(184, 154, 110, 0.15);

  --cream:      #f0e8dc;
  --rose:       #c9a99a;

  --text:       #c8c0b8;
  --text-muted: #7a7068;

  --border:     rgba(184, 154, 110, 0.14);
  --border-hover: rgba(184, 154, 110, 0.35);

  --shadow-sm:  0 4px 20px rgba(0, 0, 0, 0.3);
  --shadow-md:  0 12px 40px rgba(0, 0, 0, 0.45);
  --shadow-lg:  0 24px 80px rgba(0, 0, 0, 0.55);

  --radius:     2px;
  --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --duration:   0.3s;
}

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

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

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

img  { display: block; max-width: 100%; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- Typography Scale --- */
.section-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.12;
  color: var(--cream);
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-desc {
  color: var(--text-muted);
  font-size: 0.92rem;
  max-width: 480px;
  margin-top: 1rem;
  line-height: 1.8;
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 1.75rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header .section-desc {
  margin: 1rem auto 0;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--duration) var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--bg-deep);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(184, 154, 110, 0.35);
}

.btn-outline {
  border: 1px solid var(--border-hover);
  color: var(--cream);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-large {
  padding: 1.1rem 2.8rem;
  font-size: 0.82rem;
}

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

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.6rem 0;
  transition: padding 0.4s var(--ease), background 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  padding: 1rem 0;
  background: rgba(18, 15, 12, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.nav-container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.nav-logo {
  display: inline-flex;
  align-items: baseline;
  gap: 0.3rem;
  flex-shrink: 0;
}

.logo-noire {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.04em;
  line-height: 1;
}

.logo-lune {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.04em;
  line-height: 1;
}

.logo-studio {
  font-family: 'Jost', sans-serif;
  font-size: 0.52rem;
  font-weight: 500;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-left: 0.15rem;
  align-self: center;
}

/* Nav menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  transition: color var(--duration);
  position: relative;
  padding-bottom: 2px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--duration) var(--ease);
  transform-origin: left;
}

.nav-link:not(.nav-cta):hover,
.nav-link:not(.nav-cta):focus-visible {
  color: var(--gold);
}

.nav-link:not(.nav-cta):hover::after {
  transform: scaleX(1);
}

/* CTA button in nav */
.nav-cta {
  background: var(--gold);
  color: var(--bg-deep) !important;
  padding: 0.55rem 1.4rem;
  border-radius: var(--radius);
  letter-spacing: 0.18em;
}

.nav-cta::after { display: none; }

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--gold-light) !important;
  color: var(--bg-deep) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(184,154,110,0.3);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 6px 4px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--cream);
  border-radius: 1px;
  transition: transform 0.35s var(--ease), opacity 0.25s;
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4.7px, 4.7px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4.7px, -4.7px); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(165deg, #1e1812 0%, var(--bg-deep) 100%);
}

/* Grain texture overlay */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.hero-orb--1 {
  width: 700px;
  height: 700px;
  top: -200px;
  right: -100px;
  background: radial-gradient(circle, rgba(184,154,110,0.09) 0%, transparent 70%);
  animation: orbDrift1 18s ease-in-out infinite alternate;
}

.hero-orb--2 {
  width: 500px;
  height: 500px;
  bottom: -100px;
  left: -50px;
  background: radial-gradient(circle, rgba(201,169,154,0.07) 0%, transparent 70%);
  animation: orbDrift2 22s ease-in-out infinite alternate;
}

.hero-content {
  position: relative;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 840px;
}

.hero-eyebrow {
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.75rem;
  animation: fadeUp 0.9s 0.1s var(--ease) both;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.2rem, 10vw, 7.5rem);
  font-weight: 300;
  line-height: 1.04;
  color: var(--cream);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.9s 0.2s var(--ease) both;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
  display: block;
}

.hero-subtitle {
  font-size: 0.76rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 3rem;
  animation: fadeUp 0.9s 0.32s var(--ease) both;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.9s 0.44s var(--ease) both;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  animation: fadeIn 1.2s 1.2s var(--ease) both;
}

.hero-scroll span {
  font-size: 0.58rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: 9rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: center;
}

/* Visual column */
.about-visual {
  position: relative;
}

.about-img-frame {
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
}

.about-img-inner {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #2a2218 0%, #1c1810 55%, #231f18 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Subtle sheen */
.about-img-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(184,154,110,0.05) 0%, transparent 60%);
}

.about-monogram {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.mono-n,
.mono-l {
  font-family: 'Cormorant Garamond', serif;
  font-size: 8rem;
  font-weight: 300;
  line-height: 0.85;
  color: rgba(184, 154, 110, 0.14);
  user-select: none;
}

.mono-l {
  font-style: italic;
  color: rgba(201, 169, 154, 0.1);
}

/* Offset border decoration */
.about-img-frame::after {
  content: '';
  position: absolute;
  top: 1.5rem;
  right: -1.75rem;
  bottom: -1.75rem;
  left: 1.5rem;
  border: 1px solid rgba(184, 154, 110, 0.18);
  border-radius: var(--radius);
  z-index: -1;
  pointer-events: none;
}

/* Badge */
.about-badge {
  position: absolute;
  bottom: -1.75rem;
  right: -1.5rem;
  background: var(--gold);
  color: var(--bg-deep);
  padding: 1.4rem 1.6rem;
  text-align: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.badge-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 0.2rem;
}

.badge-text {
  font-family: 'Jost', sans-serif;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.5;
  opacity: 0.85;
}

/* Content column */
.about-content {
  padding-left: 1rem;
}

.about-text {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.9;
  margin-bottom: 1.4rem;
}

.about-text em {
  color: var(--gold);
  font-style: italic;
}

/* Stats row */
.about-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

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

.stat-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding: 9rem 0;
  background: var(--bg-raised);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--border);
}

.service-card {
  background: var(--bg-card);
  padding: 2.75rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-right: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: background var(--duration), transform var(--duration) var(--ease), box-shadow var(--duration);
}

.service-card:last-child {
  border-right: none;
}

/* Top accent line */
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--rose));
  transform: scaleX(0);
  transition: transform 0.45s var(--ease);
  transform-origin: left;
}

.service-card:hover {
  background: #22201a;
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 50px;
  height: 50px;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--cream);
  line-height: 1;
}

.service-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.service-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-list li {
  font-size: 0.78rem;
  color: var(--text);
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.5;
}

.service-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.7rem;
  line-height: 1.5;
}

.service-link {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.5rem;
  transition: letter-spacing var(--duration), color var(--duration);
}

.service-link:hover {
  letter-spacing: 0.3em;
  color: var(--gold-light);
}

/* ============================================================
   MENU & PRICELIST
   ============================================================ */
.menu-pricelist {
  padding: 9rem 0;
  background: var(--bg-deep);
}

.menu-tabs {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 3rem;
  margin-bottom: 2.5rem;
}

.menu-tab {
  padding: 0.85rem 1.8rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  background: transparent;
  border: 1px solid var(--border-hover);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--duration) var(--ease);
}

.menu-tab:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.menu-tab--active {
  background: var(--gold);
  color: var(--bg-deep);
  border-color: var(--gold);
}

.menu-tab--active:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--bg-deep);
}

.menu-panel {
  width: 100%;
}

.menu-embed {
  display: block;
  width: 100%;
  height: 700px;
  border: none;
  border-radius: var(--radius);
  background: var(--bg-card);
}

.menu-download {
  display: flex;
  justify-content: center;
  margin-top: 1.8rem;
}

/* ============================================================
   LOCATIONS
   ============================================================ */
.locations {
  padding: 9rem 0;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.location-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2.75rem 2.5rem;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  transition: border-color var(--duration), transform var(--duration) var(--ease), box-shadow var(--duration);
}

/* Bottom gradient bar */
.location-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--rose));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}

.location-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.location-card:hover::after {
  transform: scaleX(1);
}

.location-num {
  position: absolute;
  top: 1.5rem;
  right: 2.25rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  font-weight: 300;
  line-height: 1;
  color: rgba(184, 154, 110, 0.1);
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.02em;
}

.location-pin {
  width: 30px;
  height: 30px;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.location-pin svg { width: 100%; height: 100%; }

.location-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.2;
}

.location-area {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

.location-address {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.location-hours {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 0;
  margin-top: 0.25rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text);
}

.location-book {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  transition: color var(--duration), letter-spacing var(--duration);
}

.location-book:hover {
  color: var(--gold-light);
  letter-spacing: 0.3em;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: 9rem 0;
  background: var(--bg-raised);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.testimonials-wrapper {
  position: relative;
}

.testimonials-viewport {
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.55s var(--ease);
  will-change: transform;
}

.testimonial-card {
  min-width: calc(33.333% - 1rem);
  flex-shrink: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2.5rem;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}

.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 1.8;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--rose));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--bg-deep);
  flex-shrink: 0;
  user-select: none;
}

.author-name {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.15rem;
}

.author-loc {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* Controls */
.testimonials-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
}

.testi-btn {
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: border-color var(--duration), background var(--duration), transform var(--duration);
}

.testi-btn svg { width: 20px; height: 20px; }

.testi-btn:hover,
.testi-btn:focus-visible {
  border-color: var(--gold);
  background: rgba(184, 154, 110, 0.1);
  transform: scale(1.05);
}

.testi-dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.testi-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--border);
  transition: all 0.35s var(--ease);
  cursor: pointer;
}

.testi-dot.active {
  background: var(--gold);
  width: 22px;
  border-radius: 4px;
}

/* ============================================================
   BOOKING CTA
   ============================================================ */
.booking {
  position: relative;
  padding: 9rem 0;
  text-align: center;
  overflow: hidden;
}

.booking-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(184,154,110,0.1) 0%, transparent 70%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
  pointer-events: none;
}

.booking-content {
  position: relative;
}

.booking-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.booking-title em {
  font-style: italic;
  color: var(--gold);
}

.booking-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 460px;
  margin: 0 auto 3rem;
  line-height: 1.85;
}

.wa-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.booking-number {
  margin-top: 1.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: 5.5rem 0 2.5rem;
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3.5rem;
  margin-bottom: 4rem;
}

.footer-brand {
  padding-right: 2rem;
}

.footer-logo {
  display: inline-flex;
  margin-bottom: 1rem;
}

.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.footer-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 270px;
}

.footer-social {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.75rem;
}

.social-link {
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: border-color var(--duration), color var(--duration), background var(--duration);
}

.social-link svg { width: 16px; height: 16px; }

.social-link:hover,
.social-link:focus-visible {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(184,154,110,0.08);
}

.footer-heading {
  font-family: 'Jost', sans-serif;
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
  transition: color var(--duration);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--cream);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

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

[data-reveal-delay="80"]  { transition-delay: 80ms; }
[data-reveal-delay="100"] { transition-delay: 100ms; }
[data-reveal-delay="150"] { transition-delay: 150ms; }
[data-reveal-delay="160"] { transition-delay: 160ms; }
[data-reveal-delay="200"] { transition-delay: 200ms; }
[data-reveal-delay="240"] { transition-delay: 240ms; }
[data-reveal-delay="300"] { transition-delay: 300ms; }
[data-reveal-delay="320"] { transition-delay: 320ms; }

/* ============================================================
   KEYFRAME ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1) translateY(0); opacity: 1; }
  50%       { transform: scaleY(0.65) translateY(6px); opacity: 0.35; }
}

@keyframes orbDrift1 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-40px, 30px) scale(1.08); }
}

@keyframes orbDrift2 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(30px, -20px) scale(1.06); }
}

/* ============================================================
   RESPONSIVE — TABLET (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    border-bottom: none;
  }

  .service-card {
    border-bottom: 1px solid var(--border);
  }

  .service-card:nth-child(3) {
    border-right: none;
  }

  .service-card:last-child,
  .service-card:nth-last-child(2) {
    border-bottom: none;
  }

  /* 5 cards in 3-col grid: row 1 = 3, row 2 = 2 */
  .service-card:nth-child(4) { border-right: 1px solid var(--border); }
  .service-card:nth-child(5) { border-right: none; }

  .about-grid {
    gap: 4rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
    padding-right: 0;
  }

  .footer-desc { max-width: 100%; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  /* Menu & Pricelist */
  .menu-embed {
    height: 450px;
  }
  .menu-tab {
    font-size: 0.65rem;
    padding: 0.75rem 1.2rem;
  }

  /* Mobile nav */
  .nav-menu {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(300px, 82vw);
    background: #0e0c09;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 4rem 2.5rem;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    border-left: 1px solid var(--border);
    z-index: 999;
  }

  .nav-menu.is-open {
    transform: translateX(0);
  }

  .nav-link {
    font-size: 0.82rem;
  }

  .nav-toggle {
    display: flex;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .about-content {
    padding-left: 0;
  }

  .about-img-frame {
    aspect-ratio: 4 / 3;
  }

  .about-img-frame::after {
    top: 1rem;
    right: -1rem;
    bottom: -1rem;
    left: 1rem;
  }

  .about-badge {
    bottom: -1rem;
    right: 0.5rem;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
    border: 1px solid var(--border);
  }

  .service-card {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .service-card:last-child {
    border-bottom: none;
  }

  /* Locations */
  .locations-grid {
    grid-template-columns: 1fr;
  }

  /* Testimonials */
  .testimonial-card {
    min-width: calc(80vw - 1rem);
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .footer-brand {
    grid-column: 1;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .about-stats {
    gap: 2rem;
  }

  .testimonial-card {
    min-width: calc(90vw);
  }

  .booking-title {
    font-size: clamp(2.4rem, 10vw, 3.5rem);
  }
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .navbar,
  .hero-scroll,
  .hero-orb,
  .testimonials-controls { display: none; }

  body { background: #fff; color: #000; }
  .section-title, .booking-title { color: #000; }
  .section-eyebrow, .stat-num { color: #8a6a3e; }
}/* Location actions (Maps link) */
.location-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: auto;
}

.location-maps {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-decoration: none;
  opacity: 0.75;
  transition: opacity 0.2s;
}

.location-maps:hover {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Menu tab styling (if not already in style.css) */
.menu-pricelist {
  background: var(--charcoal);
  padding: 6rem 0;
}

.menu-tabs {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.menu-tab {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.75rem 1.8rem;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--cream);
  cursor: pointer;
  transition: all 0.25s;
}

.menu-tab:hover {
  background: rgba(184, 154, 110, 0.1);
}

.menu-tab--active {
  background: var(--gold);
  color: var(--noir);
}

.menu-embed {
  width: 100%;
  height: 700px;
  border: none;
  display: block;
}

.menu-download {
  margin-top: 1.2rem;
  text-align: center;
}

@media (max-width: 768px) {
  .menu-embed { height: 500px; }
  .menu-tabs { gap: 0.6rem; }
  .menu-tab { font-size: 0.68rem; padding: 0.65rem 1.2rem; }
}

