* {
  box-sizing: border-box;
}

:root {
  --bg: #0f0f12;
  --text: #f5f2ed;
  --muted: #cbc3bb;
  --accent: #caa86a;
  --accent-2: #f2d6a2;
  --premium-gold: linear-gradient(135deg, #b8964a 0%, #e6c27a 35%, #f2d6a2 50%, #caa86a 65%, #a8843b 100%);
  --gold-text: linear-gradient(135deg, #e6c27a, #f2d6a2, #caa86a);
  --border: rgba(255,255,255,0.14);
  --shadow: 0 24px 80px rgba(0,0,0,0.45);
}

html {
  scroll-behavior: smooth;
}

html, body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(214,181,143,.15), transparent 30%),
    radial-gradient(circle at bottom right, rgba(214,181,143,.09), transparent 35%),
    linear-gradient(135deg, #09090b 0%, #131319 55%, #1a1a20 100%);
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  padding: 14px 7%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(9,9,11,.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
}

.brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  background: #fff;
  border-radius: 50%;
  padding: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent-2);
}

.nav-links a.active {
  border-bottom: 2px solid var(--accent);
  padding-bottom: 4px;
}

.nav-btn {
  padding: 10px 18px;
  border-radius: 999px;
  color: #050505 !important;
  background: var(--premium-gold);
  box-shadow: 0 4px 14px rgba(214,181,143,.25), inset 0 1px 1px rgba(255,255,255,.2);
}

/* HOME */
.section {
  padding: 90px 7%;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 7%;
  overflow: hidden;
  background: url("salon-bg.jpg") 60% center / 120% no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(0,0,0,0.85) 35%, rgba(0,0,0,0.3)),
    radial-gradient(circle at center, rgba(214,181,143,0.15), transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.hero-card,
.contact-card {
  width: min(820px, 100%);
  padding: 42px 30px 38px;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.04));
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
}

.hero-logo-wrap {
  display: flex;
  justify-content: center;
}

.hero-logo {
  width: min(320px, 60vw);
  background: #fff;
  border-radius: 18px;
  display: block;
}

.eyebrow {
  margin: 10px 0 8px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  font-size: .78rem;
  font-weight: 700;
}

.gold,
.service-item strong {
  background: var(--gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h1, h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  line-height: .95;
}

h1 {
  font-size: clamp(3rem, 7vw, 5.7rem);
}

h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
}

h3 {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  color: var(--accent-2);
}

.intro,
.about-box p,
.contact-card p {
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.7;
}

.intro {
  max-width: 650px;
  margin: 18px auto 0;
}

.hero-buttons,
.contact-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 180px;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

.btn-primary {
  color: #050505;
  background: var(--premium-gold);
  box-shadow: 0 4px 14px rgba(214,181,143,.25), inset 0 1px 1px rgba(255,255,255,.2);
}

.btn-secondary {
  color: var(--text);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}

.content-section {
  text-align: center;
}

.service-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card,
.about-box {
  padding: 26px 22px;
  border-radius: 24px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 18px 50px rgba(0,0,0,.22);
}

.service-card p {
  color: var(--muted);
  line-height: 1.65;
}

.split-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  align-items: center;
}

.small-text {
  margin-top: 24px;
  font-size: .95rem !important;
}

/* SERVICES PAGE - DARK LUXURY STYLE */
.services-page {
  padding: 70px 2% 100px;
  background: #080808;
}

.services-title {
  text-align: center;
  margin-bottom: 55px;
}

.services-title .eyebrow {
  color: var(--accent);
}

.services-title p {
  color: #aeb4ba;
  font-size: 1.05rem;
}

.booking-box {
  max-width: 1180px;
  margin: 0 auto;
  background: transparent;
  color: var(--text);
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.booking-box h2,
.booking-box > p {
  display: none;
}

.service-tabs {
  display: flex;
  gap: 10px;
  border: none;
  background: transparent;
  margin-bottom: 48px;
  overflow-x: auto;
}

.tab {
  min-height: 46px;
  padding: 0 24px;
  border: 1px solid rgba(255,255,255,.12);
  background: #111;
  color: #c7c7c7;
  cursor: pointer;
  font-size: 1rem;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  white-space: nowrap;
}

.tab span {
  font-size: .95rem;
  line-height: 1;
}

.tab.active,
.tab:hover {
  background: var(--premium-gold);
  color: #050505;
  font-weight: 700;
  border: 1px solid rgba(230,194,122,.6);
  box-shadow: 0 4px 14px rgba(214,181,143,.25), inset 0 1px 1px rgba(255,255,255,.2);
}

.tab-content {
  display: none;
  border: 1px solid rgba(255,255,255,.12);
  background: #111;
}

.tab-content.active {
  display: block;
}

.tab-content::before {
  content: attr(id);
  display: block;
  padding: 28px 30px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  text-transform: capitalize;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.service-item {
  min-height: 86px;
  padding: 22px 30px;
  margin: 0;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,.1);
  border-radius: 0;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
}

.service-item span {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-weight: 700;
}

.service-item input {
  display: none;
}

.service-item small {
  color: #9aa0a6;
  margin-left: 0;
  font-weight: 400;
}

.service-item strong {
  font-weight: 700;
}

.booking-button {
  display: inline-flex;
  margin-top: 28px;
  padding: 14px 28px;
  border-radius: 0;
  color: #050505;
  background: var(--premium-gold);
  box-shadow: 0 4px 14px rgba(214,181,143,.25), inset 0 1px 1px rgba(255,255,255,.2);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
}

/* MOBILE */
@media (max-width: 850px) {
  .site-header {
    flex-direction: column;
    gap: 14px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
  }

  .service-grid,
  .split-section {
    grid-template-columns: 1fr;
  }

  .service-tabs {
    flex-wrap: wrap;
  }

  .tab {
    flex: 1 1 calc(50% - 10px);
  }

  .section {
    padding: 70px 5%;
  }
}

@media (max-width: 768px) {
  .hero-overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,0.9), rgba(0,0,0,0.5));
  }
}

@media (max-width: 540px) {
  .services-page {
    padding: 50px 4% 80px;
  }

  .tab {
    flex: 1 1 100%;
  }

  .service-item {
    padding: 20px;
  }

  .booking-box {
    padding: 0;
  }

  .btn {
    width: 100%;
  }
}

/* ===== PREMIUM FOOTER ===== */

.site-footer {
  position: relative;
  padding: 60px 7% 50px;
  background: linear-gradient(to top, #000, #0a0a0a);
  border-top: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
}

/* GOLD TOP LINE */
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 2px;
  background: var(--premium-gold);
}

/* LAYOUT */
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 20px;
}

/* BRAND */
.footer-brand h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  background: var(--gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-owner {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}

/* CONTACT */
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.footer-contact a {
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  color: var(--accent-2);
  transition: all 0.25s ease;
}

/* HOVER EFFECT */
.footer-contact a:hover {
  color: #fff;
  transform: translateY(-2px);
  text-shadow: 0 0 10px rgba(214,181,143,0.4);
}

/* MOBILE */
@media (max-width: 640px) {
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-contact {
    align-items: center;
  }
}

.footer-location a {
  position: relative;
  background: var(--gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
  font-weight: 600;
  transition: 0.25s ease;
}

.footer-location a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: var(--premium-gold);
  transition: 0.3s ease;
}

.footer-location a:hover::after {
  width: 100%;
  -webkit-text-fill-color: #fff;
  text-shadow: 0 0 10px rgba(214,181,143,0.4);
}