/* =========================
   THEME VARIABLES
   ========================= */
:root {
  --gold: #bb966d;
  --gold-dark: #a17f56;
  --gold-light: #d3bb96;
  --dark: #17191e;
  --dark-alt: #1e2127;
  --card: #24272d;
  --ink: #f5f1ea;
  --muted: #a7a29a;
  --cream: #f8f5f0;
  --line: rgba(255,255,255,0.1);
  --line-dark: rgba(255,255,255,0.14);
}

/* =========================
   RESET & BASE
   ========================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html, body { height: 100% }
html { scroll-behavior: smooth }
[id] { scroll-margin-top: 84px }

body {
  font-family: 'Montserrat', system-ui, -apple-system, 'Segoe UI', sans-serif;
  color: var(--muted);
  background: var(--dark);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block }
a { color: inherit }

/* Layout */
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}
.grid-2 {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .grid-2 { grid-template-columns: 1fr 1fr }
}
.center { text-align: center }

/* =========================
   TYPOGRAPHY
   ========================= */
h1, h2, h3 {
  font-family: 'Libre Caslon Text', Georgia, serif;
  font-style: italic;
  color: var(--ink);
  line-height: 1.2;
  font-weight: 400;
}
h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .25em;
  font-size: .72rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: .9rem;
  position: relative;
}
.eyebrow.center { display: flex; align-items: center; justify-content: center; gap: .75em }
.eyebrow.center::before,
.eyebrow.center::after {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
  opacity: .6;
}

/* =========================
   HEADER & NAV
   ========================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .35s ease, border-color .35s ease, backdrop-filter .35s ease;
}
body.scrolled .site-header {
  background: rgba(23,25,30,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-dark);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
}
.brand-logo {
  height: 38px;
  width: auto;
}

/* Hamburger */
.hamburger {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  width: 40px;
  height: 36px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  cursor: pointer;
  transition: background .2s;
}
.hamburger:hover { background: rgba(255,255,255,.08) }
.hamburger span {
  width: 20px;
  height: 2px;
  background: #fff;
  display: block;
  transition: transform .2s, opacity .2s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg) }
.hamburger.active span:nth-child(2) { opacity: 0 }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg) }

/* Mobile nav */
.nav {
  position: fixed;
  inset: 66px 0 auto 0;
  background: var(--dark);
  border-top: 1px solid var(--line-dark);
  display: none;
  flex-direction: column;
  padding: 1rem 1.25rem;
  gap: .25rem;
}
.nav a {
  text-decoration: none;
  color: #eee;
  font-weight: 500;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  padding: .8rem .75rem;
  border-radius: 8px;
  border-top: 1px solid var(--line-dark);
  transition: color .2s;
}
.nav a:first-child { border-top: 0 }
.nav a:hover { color: var(--gold-light) }
.nav-phone {
  color: var(--gold) !important;
  font-weight: 700 !important;
}
.nav.open { display: flex }

/* Desktop nav */
@media (min-width: 900px) {
  .hamburger { display: none }
  .nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0;
    border: 0;
    padding: 0;
    background: transparent;
  }
  .nav a {
    font-size: .78rem;
    padding: .4rem 1.1rem;
    border-top: 0;
    border-left: 1px solid var(--line-dark);
    color: #fff;
  }
  .nav a:first-child { border-left: 0 }
  .nav-phone { padding-right: 0 }
}


/* =========================
   BUTTONS
   ========================= */
.btn {
  display: inline-block;
  padding: .9rem 2rem;
  font-weight: 600;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  border: 1px solid var(--gold);
  border-radius: 2px;
  text-decoration: none;
  cursor: pointer;
  background: var(--gold);
  color: #fff;
  transition: transform .2s, box-shadow .2s, background .2s, color .2s;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(187,150,109,.35);
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}
.btn-outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,.55);
  color: #fff;
}
.btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: #fff;
  box-shadow: none;
}
.btn-outline-gold {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 12px 24px rgba(187,150,109,.25);
}
.btn-sm {
  padding: .7rem 1.5rem;
  font-size: .72rem;
}
.btn-submit {
  width: 100%;
  margin-top: .5rem;
}

/* =========================
   HERO
   ========================= */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--dark) url('../img/slider5.jpg') center/cover no-repeat;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17,18,21,.35) 0%, rgba(17,18,21,.55) 65%, rgba(17,18,21,.8) 100%);
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 26px;
  border: 1px solid rgba(255,255,255,.4);
  z-index: 1;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 2rem 1.5rem;
}
.hero h1 {
  font-size: 3rem;
  font-style: italic;
  font-weight: 400;
  color: #fbf7f0;
  letter-spacing: .03em;
  margin-bottom: .9rem;
  text-shadow: 0 2px 24px rgba(0,0,0,.15);
}
.hero .amp {
  color: var(--gold);
}
.hero-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #fdfaf5;
  text-transform: uppercase;
  letter-spacing: .3em;
  margin-bottom: .6rem;
}
.hero-est {
  font-size: .7rem;
  color: #fff;
  opacity: .8;
  text-transform: uppercase;
  letter-spacing: .3em;
  margin-bottom: 2.5rem;
}
.hero-cta {
  display: flex;
  gap: .9rem;
  flex-wrap: wrap;
  justify-content: center;
}

@media (min-width: 768px) {
  .hero h1 { font-size: 4.6rem }
  .hero-sub { font-size: 1.15rem }
}

/* =========================
   ABOUT
   ========================= */
.about {
  padding: 6rem 0;
  background: var(--dark);
}
.about-img-wrap {
  position: relative;
  padding: 18px 0 0 18px;
}
.about-img-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid var(--gold);
  z-index: 0;
}
.about-img {
  position: relative;
  z-index: 1;
  object-fit: cover;
  width: 100%;
  height: 100%;
  min-height: 300px;
  box-shadow: 0 20px 50px rgba(0,0,0,.4);
}
.about-text h2 {
  margin-bottom: 1.1rem;
}
.about-text p {
  margin-bottom: 1.25rem;
  line-height: 1.85;
  color: var(--muted);
}

/* =========================
   SERVICES
   ========================= */
.services {
  padding: 6rem 0;
  background: var(--dark-alt);
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  margin: 2.75rem 0;
}
@media (min-width: 600px) {
  .services-grid { grid-template-columns: repeat(2, 1fr) }
}
@media (min-width: 900px) {
  .services-grid { grid-template-columns: repeat(4, 1fr) }
}

.service-card {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 2.25rem 1.5rem;
  text-align: center;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(0,0,0,.35);
  border-color: rgba(187,150,109,.4);
}
.service-icon-img {
  width: 66px;
  height: 66px;
  margin: 0 auto 1.1rem;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  padding: 3px;
}
.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: .6rem;
  color: var(--ink);
}
.service-card p {
  font-size: .88rem;
  line-height: 1.7;
}
.services-cta {
  margin-top: 2.5rem;
}

/* =========================
   STYLISTS
   ========================= */
.stylists {
  padding: 6rem 0;
  background: var(--dark);
}
.stylists-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2.75rem;
}
@media (min-width: 600px) {
  .stylists-grid { grid-template-columns: repeat(2, 1fr) }
}
@media (min-width: 1000px) {
  .stylists-grid { grid-template-columns: repeat(4, 1fr) }
}

.stylist-card {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform .25s, box-shadow .25s;
}
.stylist-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(0,0,0,.35);
}
.stylist-photo-wrap {
  width: 116px;
  height: 116px;
  margin: 0 auto 1.1rem;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gold);
  padding: 4px;
}
.stylist-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.stylist-card h3 {
  font-size: 1.3rem;
  margin-bottom: .3rem;
}
.stylist-specialty {
  color: var(--gold);
  font-size: .72rem;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: .16em;
  margin-bottom: .9rem;
}
.stylist-bio {
  font-size: .87rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.stylist-email {
  display: inline-block;
  padding: .55rem 1.1rem;
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  text-decoration: none;
  color: var(--gold);
  border: 1px solid var(--gold);
  transition: .2s;
}
.stylist-email:hover {
  background: var(--gold);
  color: #fff;
}

/* =========================
   CONTACT
   ========================= */
.contact {
  padding: 6rem 0;
  background: var(--dark-alt);
}
.contact-info h2 {
  margin-bottom: 1.1rem;
}
.contact-list {
  list-style: none;
  margin-bottom: 2.25rem;
}
.contact-list li {
  margin-bottom: 1.1rem;
}
.contact-list .contact-label {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--gold);
  margin-bottom: .25rem;
}
.contact-list a {
  text-decoration: none;
  color: var(--ink);
  transition: color .2s;
}
.contact-list a:hover { color: var(--gold-dark) }

.hours {
  margin-bottom: 1.75rem;
}
.hours h3 {
  font-size: 1.05rem;
  margin-bottom: .5rem;
  color: var(--ink);
}
.hours p { color: var(--muted) }

.social-links {
  display: flex;
  gap: .75rem;
}
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  text-decoration: none;
  font-weight: 700;
  font-size: .7rem;
  letter-spacing: .05em;
  color: var(--gold);
  transition: .2s;
}
.social-link:hover {
  background: var(--gold);
  color: #fff;
}

/* Contact Form */
.contact-form-wrap {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 2.25rem;
  box-shadow: 0 20px 50px rgba(0,0,0,.25);
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--ink);
}
.contact-form input,
.contact-form textarea {
  padding: .85rem 1rem;
  border-radius: 2px;
  border: 1px solid var(--line);
  background: var(--dark);
  color: var(--ink);
  font-family: 'Montserrat', sans-serif;
  font-size: .95rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(187,150,109,.18);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #6b6860;
}

/* =========================
   FOOTER
   ========================= */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.5);
  padding: 2.5rem 0;
  text-align: center;
}
.footer-links {
  margin-top: .6rem;
  font-size: .85rem;
}
.footer-links a {
  color: rgba(255,255,255,.65);
  text-decoration: none;
  transition: color .2s;
}
.footer-links a:hover { color: var(--gold) }
.footer .sep {
  margin: 0 .5rem;
  color: rgba(255,255,255,.25);
}

/* =========================
   MOBILE FAB
   ========================= */
.fab {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 1200;
}
.fab-btn {
  display: none;
  padding: .85rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  background: var(--gold);
  color: #fff;
  font-weight: 700;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  box-shadow: 0 8px 20px rgba(187,150,109,.4);
  transition: .2s;
}
.fab-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(187,150,109,.5);
}
@media (max-width: 767px) {
  .fab-btn { display: inline-flex }
}

/* =========================
   SCROLL TO TOP
   ========================= */
#scrollTopBtn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--line);
  color: var(--gold);
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all .3s;
  z-index: 999;
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
}
#scrollTopBtn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}
#scrollTopBtn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media (max-width: 768px) {
  #scrollTopBtn { display: none }
}

/* =========================
   MOBILE
   ========================= */
@media (max-width: 768px) {
  .hero h1 { font-size: 2.5rem }
  .hero-sub { font-size: .85rem; letter-spacing: .2em }
  .brand-logo { height: 30px }
  h2 { font-size: 1.7rem }
  .hero::after { inset: 14px }
}

/* Desktop: drop the hero frame's top edge below the transparent nav so it
   doesn't run through the logo and menu */
@media (min-width: 769px) {
  .hero::after { top: 96px }
}
