:root {
  --gold: #D4AF37;
  --gold-light: #FFD700;
  --gold-dark: #B8941F;
  --black: #0a0a0a;
  --charcoal: #1a1a1a;
  --cream: #FFF8E7;
}

* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Outfit', system-ui, sans-serif;
  background: #0a0a0a;
  color: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: #d4af37;
  color: #000;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
}

.font-display, .section-title, h1, h2, h3 {
  font-family: 'Playfair Display', serif;
}

.font-cinzel {
  font-family: 'Cinzel', serif;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
}

.gold-gradient {
  background: linear-gradient(135deg, #D4AF37 0%, #FFD700 50%, #B8941F 100%);
}

.gold-text {
  background: linear-gradient(135deg, #D4AF37 0%, #FFD700 50%, #B8941F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.white { color: #fff; }
.amber { color: #FFC94A; }
.dim { color: rgba(255,255,255,0.4); }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #0a0a0a; }
::-webkit-scrollbar-thumb { background: #D4AF37; border-radius: 4px; }

/* ---------- NAV ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212,175,55,0.2);
}

.navbar-inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  color: #000;
  font-size: 20px;
}

.brand-text { line-height: 1.2; }
.brand-title { font-family: 'Cinzel', serif; font-weight: 700; font-size: 18px; letter-spacing: 0.15em; }
.brand-sub { font-size: 9px; letter-spacing: 0.3em; color: var(--gold); margin-top: -2px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

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

.btn-gold-pill {
  padding: 10px 24px;
  border-radius: 999px;
  color: #000;
  font-weight: 600;
  transition: transform 0.2s;
  background: linear-gradient(135deg, #D4AF37 0%, #FFD700 50%, #B8941F 100%);
}
.btn-gold-pill:hover { transform: scale(1.05); }

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 50%;
  background: transparent;
  color: #fff;
  font-size: 20px;
}

.mobile-menu {
  display: none;
  background: #000;
  border-top: 1px solid rgba(212,175,55,0.2);
  padding: 24px;
  flex-direction: column;
  gap: 16px;
  font-size: 14px;
  letter-spacing: 0.15em;
}

.mobile-menu.show { display: flex; }
.mobile-menu a { padding: 8px 0; }
.mobile-book {
  margin-top: 8px;
  text-align: center;
  padding: 12px;
  font-weight: 700;
}
.mobile-contact {
  padding-top: 16px;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  padding-top: 72px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #070708;
}

.hero-dots {
  position: absolute;
  width: 192px;
  height: 192px;
  pointer-events: none;
  background: radial-gradient(circle, white 2px, transparent 2.5px);
  background-size: 14px 14px;
}
.hero-dots-tl { top: 0; left: 0; opacity: 0.3; }
.hero-dots-br { bottom: 0; right: 0; opacity: 0.2; width: 256px; height: 256px; transform: rotate(180deg); }

.hero-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
  padding-top: 48px;
  padding-bottom: 48px;
  position: relative;
  z-index: 1;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(212,175,55,0.3);
  background: rgba(212,175,55,0.1);
  font-size: 11px;
  letter-spacing: 0.2em;
  margin-bottom: 32px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.logo-block {
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
}
.logo-block-inner { text-align: center; }
.logo-big {
  font-family: 'Cinzel', serif;
  font-size: 56px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.logo-prof { font-family: 'Cinzel', serif; font-size: 10px; letter-spacing: 0.35em; margin-top: -6px; }
.logo-unisex { font-size: 11px; letter-spacing: 0.4em; color: rgba(255,255,255,0.8); margin-top: 4px; font-weight: 600; }
.logo-divider { height: 1px; width: 100%; background: linear-gradient(to right, transparent, var(--gold), transparent); margin-top: 8px; }
.logo-tag { font-size: 8px; letter-spacing: 0.2em; color: var(--gold); margin-top: 4px; }

.hero-title {
  font-weight: 900;
  font-size: 60px;
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin: 0;
}

.hero-desc {
  margin-top: 24px;
  color: rgba(255,255,255,0.7);
  font-size: 17px;
  max-width: 520px;
  line-height: 1.6;
}

.hero-thumbs {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 520px;
}

.hero-thumb-card { text-align: center; }
.hero-thumb-frame {
  aspect-ratio: 3/4;
  border-radius: 24px;
  overflow: hidden;
  border: 2px solid #fff;
  padding: 3px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  transition: border-color 0.3s;
}
.hero-thumb-frame:hover { border-color: var(--gold); }
.hero-thumb-inner { width: 100%; height: 100%; border-radius: 20px; overflow: hidden; position: relative; }
.hero-thumb-inner img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.hero-thumb-frame:hover img { transform: scale(1.1); }
.hero-thumb-label { margin-top: 12px; text-align: center; font-weight: 700; color: #ffb86b; font-size: 16px; }

.hero-ctas {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn-large {
  height: 52px;
  padding: 0 32px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.15em;
  font-weight: 700;
  transition: transform 0.2s, border-color 0.2s;
}

.btn-gold-pill.btn-large {
  box-shadow: 0 10px 30px rgba(212,175,55,0.4);
}
.btn-gold-pill.btn-large:hover { transform: scale(1.02); }

.btn-outline {
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
}
.btn-outline:hover { border-color: rgba(212,175,55,0.5); }

.hero-rating {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}

.rating-avatars { display: flex; }
.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #000;
  background: #3f3f46;
  display: grid;
  place-items: center;
  font-size: 10px;
  margin-left: -8px;
}
.avatar:first-child { margin-left: 0; }

/* HERO RIGHT */
.hero-right { position: relative; }
.hero-right-glow {
  position: absolute;
  inset: -40px;
  background: linear-gradient(135deg, #D4AF37 0%, #FFD700 50%, #B8941F 100%);
  opacity: 0.2;
  filter: blur(80px);
  border-radius: 999px;
  pointer-events: none;
}

.booking-preview-border {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  background: linear-gradient(to bottom, #18181b, #000);
  padding: 1px;
}

.booking-preview {
  border-radius: 31px;
  background: #101010;
  padding: 32px;
}

.booking-preview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.live-label { font-size: 11px; letter-spacing: 0.3em; color: var(--gold); }
.slots-available {
  font-size: 11px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(34,197,94,0.2);
  color: #4ade80;
  border: 1px solid rgba(34,197,94,0.3);
}

.preview-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.preview-service-btn {
  padding: 12px;
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  text-align: left;
  transition: border-color 0.2s;
  color: #fff;
}
.preview-service-btn:hover { border-color: rgba(212,175,55,0.4); }
.preview-service-icon { font-size: 20px; }
.preview-service-name { margin-top: 8px; font-size: 12px; font-weight: 600; }
.preview-service-price { font-size: 10px; color: rgba(255,255,255,0.5); }

.preview-address {
  margin-top: 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 16px;
}
.preview-address-row { display: flex; gap: 12px; font-size: 13px; }
.pin-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(212,175,55,0.2);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.preview-address-title { font-weight: 600; letter-spacing: 0.02em; }
.preview-address-sub { color: rgba(255,255,255,0.6); font-size: 12px; line-height: 1.5; margin-top: 4px; }
.preview-hours { margin-top: 16px; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; font-size: 11px; }
.hours-pill { padding: 8px 12px; border-radius: 999px; background: #000; border: 1px solid rgba(255,255,255,0.1); text-align: center; }

.check-availability-btn {
  margin-top: 16px;
  width: 100%;
  height: 48px;
  border-radius: 999px;
  background: #fff;
  color: #000;
  font-weight: 700;
  display: grid;
  place-items: center;
  letter-spacing: 0.15em;
  font-size: 13px;
  transition: background 0.2s;
}
.check-availability-btn:hover { background: var(--gold); }

.dots-indicator { margin-top: 8px; display: flex; justify-content: center; gap: 8px; padding-top: 8px; }
.dot { height: 6px; border-radius: 999px; width: 6px; background: rgba(255,255,255,0.2); transition: all 0.3s; }
.dot.active { width: 32px; background: var(--gold); }

.floating-badge {
  position: absolute;
  top: -16px;
  right: -16px;
  transform: rotate(8deg);
  background: #FFC94A;
  color: #000;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 0.15em;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

/* ---------- SERVICES ---------- */
.services-section {
  padding: 80px 0;
  background: #0e0e0e;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.services-head {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 56px;
}

.eyebrow { color: var(--gold); letter-spacing: 0.3em; font-size: 12px; margin-bottom: 16px; }
.section-title { font-size: 40px; line-height: 0.95; font-weight: 700; margin: 0; }

.services-desc { max-width: 420px; color: rgba(255,255,255,0.6); line-height: 1.6; }

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

.service-card {
  position: relative;
  border-radius: 28px;
  background: #151515;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 24px;
  transition: border-color 0.5s, background 0.5s;
}
.service-card:hover { border-color: rgba(212,175,55,0.3); background: #191919; }

.popular-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 10px;
  letter-spacing: 0.15em;
  padding: 4px 8px;
  border-radius: 999px;
  color: #000;
  font-weight: 700;
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: grid;
  place-items: center;
  font-size: 22px;
  transition: transform 0.2s;
}
.service-card:hover .service-icon { transform: scale(1.1); }

.service-name { margin-top: 24px; font-size: 22px; font-weight: 600; }
.service-desc { margin-top: 8px; font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.6; min-height: 38px; }

.service-footer {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-price {
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #000;
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
}

.service-arrow-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  color: #000;
  display: grid;
  place-items: center;
  border: none;
  transition: background 0.2s;
}
.service-card:hover .service-arrow-btn { background: var(--gold); }

/* ---------- BOOKING ---------- */
.booking-section {
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}

.booking-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212,175,55,0.08), transparent 60%);
  pointer-events: none;
}

.booking-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
  position: relative;
}

.badge-outline {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(212,175,55,0.2);
  background: rgba(212,175,55,0.1);
  font-size: 11px;
  letter-spacing: 0.15em;
}

.booking-info-desc {
  margin-top: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  max-width: 420px;
}

.steps { margin-top: 40px; display: flex; flex-direction: column; gap: 16px; }
.step {
  display: flex;
  gap: 16px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
}
.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #000;
  font-weight: 700;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.white-bg { background: #fff; }
.step-title { font-weight: 600; }
.step-sub { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 4px; }

.badges-row { margin-top: 40px; display: flex; gap: 12px; flex-wrap: wrap; }
.mini-badge {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  font-size: 12px;
}

.booking-form-card {
  border-radius: 32px;
  background: #fff;
  color: #000;
  padding: 40px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  position: relative;
}

.success-overlay {
  position: absolute;
  inset: 0;
  z-index: 20;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border-radius: 32px;
  display: grid;
  place-items: center;
  padding: 32px;
  text-align: center;
}
.success-overlay.hidden { display: none; }

.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto;
  display: grid;
  place-items: center;
  font-size: 30px;
  color: #000;
}
.success-title { margin-top: 24px; font-size: 32px; font-weight: 700; line-height: 1.2; }
.success-text { margin-top: 12px; color: rgba(0,0,0,0.6); max-width: 320px; margin-left: auto; margin-right: auto; }
.success-address {
  margin-top: 24px;
  padding: 16px;
  border-radius: 16px;
  background: #000;
  color: #fff;
  font-size: 14px;
}
.success-address-label { color: rgba(255,255,255,0.5); font-size: 11px; letter-spacing: 0.15em; }
.success-address-text { margin-top: 4px; font-weight: 600; }

.btn-black-pill {
  margin-top: 24px;
  height: 48px;
  padding: 0 32px;
  border-radius: 999px;
  background: #000;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.15em;
  font-size: 12px;
  border: none;
}

.form-head { display: flex; align-items: center; justify-content: space-between; }
.form-title { font-size: 26px; font-weight: 700; margin: 0; }
.response-pill { font-size: 11px; padding: 4px 12px; border-radius: 999px; background: #000; color: #fff; }

.booking-form { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-field { display: block; }
.form-label { font-size: 11px; letter-spacing: 0.15em; font-weight: 600; color: rgba(0,0,0,0.6); }

.form-field input,
.form-field select,
.form-field textarea {
  margin-top: 8px;
  width: 100%;
  padding: 0 16px;
  height: 52px;
  border-radius: 16px;
  background: #f6f5f3;
  border: 1px solid rgba(0,0,0,0.1);
  font-size: 15px;
  font-family: inherit;
  color: #000;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-field textarea {
  height: auto;
  padding: 16px;
  resize: none;
}

.gender-group {
  margin-top: 8px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.gender-btn {
  height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.1);
  background: #f6f5f3;
  color: rgba(0,0,0,0.6);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.gender-btn.active {
  background: #000;
  color: #fff;
  border-color: #000;
}

.submit-btn {
  width: 100%;
  height: 56px;
  border-radius: 999px;
  color: #000;
  font-weight: 900;
  letter-spacing: 0.15em;
  font-size: 13px;
  border: none;
  box-shadow: 0 10px 30px rgba(212,175,55,0.4);
  transition: transform 0.2s, opacity 0.2s;
}
.submit-btn:hover { transform: scale(1.01); }
.submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }

.secure-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 11px;
  color: rgba(0,0,0,0.5);
  letter-spacing: 0.02em;
}

/* ---------- GALLERY ---------- */
.gallery-section { padding: 64px 0; background: #0e0e0e; }
.gallery-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}
.gallery-desc { font-size: 13px; color: rgba(255,255,255,0.6); max-width: 320px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  grid-auto-rows: 240px;
}
.gallery-item {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  position: relative;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.gallery-item:not(.gallery-item-overlay):hover img { transform: scale(1.05); }
.span-7 { grid-column: span 7; }
.span-5 { grid-column: span 5; }

.gallery-item-overlay { display: flex; align-items: flex-end; }
.gallery-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #000, rgba(0,0,0,0.4), transparent);
}
.gallery-overlay-content { position: relative; padding: 32px; z-index: 1; }
.overlay-eyebrow { color: var(--gold); font-size: 11px; letter-spacing: 0.3em; }
.overlay-title { margin-top: 8px; font-size: 24px; font-weight: 700; font-family: 'Playfair Display', serif; }
.overlay-ctas { margin-top: 12px; display: flex; gap: 8px; }
.btn-white-pill {
  padding: 8px 16px;
  border-radius: 999px;
  background: #fff;
  color: #000;
  font-size: 12px;
  font-weight: 700;
}
.btn-glass-pill {
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  font-size: 12px;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials-section {
  padding: 80px 0;
  background: #000;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  border-radius: 24px;
  background: #151515;
  border: 1px solid rgba(255,255,255,0.1);
  padding: 24px;
}
.testimonial-stars { display: flex; gap: 4px; color: var(--gold); }
.testimonial-text { margin-top: 16px; font-size: 15px; line-height: 1.6; color: rgba(255,255,255,0.8); }
.testimonial-footer { margin-top: 24px; display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #000;
  font-weight: 700;
  font-size: 12px;
}
.testimonial-name { font-weight: 600; font-size: 13px; }
.testimonial-service { font-size: 11px; color: rgba(255,255,255,0.4); }

/* ---------- ABOUT ---------- */
.about-section { padding: 80px 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-title { font-size: 40px; margin-top: 16px; }
.about-desc { margin-top: 24px; color: rgba(255,255,255,0.6); line-height: 1.6; }

.stats-row {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 32px;
}
.stat-num { font-size: 28px; font-weight: 700; }
.stat-label { font-size: 11px; letter-spacing: 0.15em; color: rgba(255,255,255,0.5); margin-top: 4px; }

.about-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.about-col { display: flex; flex-direction: column; gap: 16px; }
.about-col-offset { padding-top: 32px; }

.about-card { border-radius: 24px; padding: 24px; }
.about-card.dark { background: #151515; border: 1px solid rgba(255,255,255,0.1); }
.about-card.gold { background: var(--gold); color: #000; }
.about-card.white { background: #fff; color: #000; }
.about-card-icon { font-size: 24px; }
.about-card-title { margin-top: 12px; font-weight: 700; }
.about-card-sub { margin-top: 4px; font-size: 12px; color: rgba(255,255,255,0.5); }
.about-card-sub-dark { margin-top: 4px; font-size: 12px; color: rgba(0,0,0,0.6); }

/* ---------- FOUNDER ---------- */
.founder-section { padding: 80px 0; background: #0d0d0d; border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); }
.founder-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}
.founder-photo-wrap { position: relative; max-width: 380px; margin: 0 auto; }
.founder-photo-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(212,175,55,0.25) 0%, rgba(212,175,55,0) 70%);
  filter: blur(10px);
  z-index: 0;
}
.founder-photo-frame {
  position: relative;
  z-index: 1;
  border-radius: 24px;
  overflow: hidden;
  border: 2px solid var(--gold);
  aspect-ratio: 4 / 5;
}
.founder-photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.founder-badge {
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: #000;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.15em;
  padding: 8px 22px;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(212,175,55,0.35);
}
.founder-role { color: var(--gold); font-weight: 600; font-size: 15px; margin-top: 12px; letter-spacing: 0.02em; }
.founder-desc { margin-top: 18px; color: rgba(255,255,255,0.65); line-height: 1.7; max-width: 560px; }
.founder-quote {
  margin-top: 24px;
  padding: 20px 24px;
  background: #151515;
  border: 1px solid rgba(255,255,255,0.1);
  border-left: 3px solid var(--gold);
  border-radius: 12px;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  max-width: 560px;
}
.founder-quote-mark { font-size: 24px; font-style: normal; margin-right: 4px; }
.founder-ctas { display: flex; gap: 16px; margin-top: 32px; flex-wrap: wrap; }

/* ---------- FOOTER ---------- */
.footer { background: #050505; border-top: 1px solid rgba(255,255,255,0.1); padding: 64px 0 40px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
}
.footer-logo { width: 48px; height: 48px; font-size: 20px; }
.footer-unisex { font-size: 10px; letter-spacing: 0.3em; color: var(--gold); }
.footer-desc { margin-top: 24px; font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.6; max-width: 300px; }
.footer-social { margin-top: 24px; display: flex; gap: 8px; }
.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
}
.social-ig:hover, .social-fb:hover { background: var(--gold); color: #000; }
.social-wa:hover { background: #25D366; color: #fff; }

.footer-heading { font-size: 11px; letter-spacing: 0.3em; color: rgba(255,255,255,0.4); }
.footer-list { margin-top: 16px; list-style: none; padding: 0; display: flex; flex-direction: column; gap: 12px; font-size: 13px; color: rgba(255,255,255,0.7); }
.footer-list li { transition: color 0.2s; cursor: pointer; }
.footer-list li:hover, .footer-list a:hover { color: var(--gold); }

.footer-contact-card {
  border-radius: 24px;
  background: #121212;
  border: 1px solid rgba(255,255,255,0.1);
  padding: 24px;
}
.footer-contact-label { font-size: 11px; letter-spacing: 0.3em; color: var(--gold); }
.footer-contact-address { margin-top: 12px; font-weight: 600; line-height: 1.6; }
.footer-contact-phones { margin-top: 16px; display: flex; flex-direction: column; gap: 4px; font-size: 13px; color: rgba(255,255,255,0.7); }
.footer-call-btn {
  margin-top: 24px;
  width: 100%;
  height: 44px;
  border-radius: 999px;
  color: #000;
  font-weight: 700;
  display: grid;
  place-items: center;
  font-size: 12px;
  letter-spacing: 0.15em;
}

.footer-bottom {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.3);
}

/* ---------- FLOATING ---------- */
.floating-actions {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
  font-size: 22px;
  transition: transform 0.2s;
}
.float-btn:hover { transform: scale(1.05); }
.float-call { background: #fff; color: #000; }
.float-wa { background: #25D366; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 60px; text-align: center; }
  .hero-desc { margin-left: auto; margin-right: auto; text-align: center; }
  .logo-block { justify-content: center; }
  .hero-thumbs { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-rating { justify-content: center; }
  .booking-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .menu-toggle { display: grid; }
  .mobile-menu.show { display: flex; }
  .hero-title { font-size: 44px; }
  .section-title { font-size: 32px; }
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .span-7, .span-5 { grid-column: span 1; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-cards { grid-template-columns: 1fr; }
  .about-col-offset { padding-top: 0; }
  .stats-row { gap: 12px; }
  .founder-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .founder-photo-wrap { margin: 0 auto; }
  .founder-desc, .founder-quote { margin-left: auto; margin-right: auto; }
  .founder-ctas { justify-content: center; }
}

.admin-link { color: rgba(255,255,255,0.4); text-decoration: underline; transition: color 0.2s; }
.admin-link:hover { color: var(--gold); }

.nav-admin-link {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 6px 12px;
  border-radius: 999px;
  transition: color 0.2s, border-color 0.2s;
}
.nav-admin-link:hover { color: var(--gold); border-color: rgba(212,175,55,0.4); }

/* ---------- APP-STYLE BOTTOM NAV (mobile) ---------- */
.app-bottom-nav {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(212,175,55,0.22);
  padding: 6px 6px calc(6px + env(safe-area-inset-bottom));
  align-items: flex-end;
  justify-content: space-between;
}
.app-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 6px 2px 4px;
  color: rgba(255,255,255,0.45);
  font-size: 10px;
  letter-spacing: 0.02em;
  transition: color 0.2s, transform 0.2s;
}
.app-nav-icon { font-size: 19px; line-height: 1; filter: grayscale(1); opacity: 0.7; transition: filter 0.2s, opacity 0.2s; }
.app-nav-item.active { color: var(--gold-light); }
.app-nav-item.active .app-nav-icon { filter: none; opacity: 1; }
.app-nav-item:active { transform: scale(0.94); }

.app-nav-item-cta { flex: 1.15; }
.app-nav-icon-cta {
  width: 44px;
  height: 44px;
  margin-top: -22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 19px;
  background: linear-gradient(135deg, #D4AF37 0%, #FFD700 50%, #B8941F 100%);
  color: #000;
  box-shadow: 0 8px 20px rgba(212,175,55,0.4);
  border: 3px solid #0a0a0a;
}

@media (max-width: 768px) {
  .app-bottom-nav { display: flex; }
  body { padding-bottom: 74px; }
  .floating-actions { bottom: 90px; }
}

.hidden { display: none !important; }
