/* Hair by Harun — black & gold, matched to the HH logo and shop interior */

:root {
  --black: #0a0a0a;
  --panel: #131313;
  --line: #262626;
  --gold: #d4af37;
  --gold-bright: #f1d27a;
  --white: #f5f2ea;
  --muted: #a3a09a;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  line-height: 1.7;
}

h1, h2, h3 {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  letter-spacing: 0.06em;
}

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-bright); }

::selection { background: var(--gold); color: var(--black); }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem 1.4rem;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--white);
  font-family: 'Cinzel', serif;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.brand img { height: 42px; width: 42px; object-fit: contain; }

.site-header nav {
  display: flex;
  gap: 1.4rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-header nav a {
  color: var(--white);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

/* ---------- Hero ---------- */

.hero {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem;
  background:
    linear-gradient(rgba(10, 10, 10, 0.82), rgba(10, 10, 10, 0.94)),
    url('assets/interior.jpg') center / cover no-repeat;
}

.hero-logo {
  width: min(240px, 55vw);
  height: auto;
  filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.25));
}

.hero h1 {
  margin-top: 1.4rem;
  font-size: clamp(2.2rem, 6vw, 4rem);
  text-transform: uppercase;
}

.hero h1 .amp {
  color: var(--gold);
  font-weight: 500;
  text-transform: lowercase;
}

.tagline {
  margin-top: 0.6rem;
  color: var(--gold);
  font-size: clamp(1.05rem, 2.5vw, 1.4rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-sub {
  margin-top: 0.4rem;
  color: var(--muted);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.hero-cta {
  margin-top: 2.4rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  transition: background 0.25s, color 0.25s, box-shadow 0.25s;
}

.btn-gold {
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  color: var(--black);
}

.btn-gold:hover {
  color: var(--black);
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.45);
}

.btn-ghost { color: var(--gold); background: transparent; }

.btn-ghost:hover { background: rgba(212, 175, 55, 0.12); color: var(--gold-bright); }

/* ---------- Sections ---------- */

.section {
  max-width: 860px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
  text-align: center;
}

.section-wide { max-width: 1180px; }

.section h2 {
  font-size: clamp(1.6rem, 4vw, 2.3rem);
  text-transform: uppercase;
}

.gold-rule {
  width: 70px;
  height: 2px;
  margin: 1.1rem auto 2rem;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.lead { font-size: 1.12rem; color: var(--white); max-width: 640px; margin: 0 auto; }

/* ---------- Video reels ---------- */

.reels {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.6rem, 2vw, 1.6rem);
}

.reel {
  flex: 0 0 auto;
  width: clamp(130px, 22vw, 250px);
  aspect-ratio: 9 / 16;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
  cursor: pointer;
  transform: scale(0.82);
  opacity: 0.3;
  filter: grayscale(0.7) brightness(0.6);
  transition: transform 0.5s ease, opacity 0.5s ease, filter 0.5s ease,
    border-color 0.5s ease, box-shadow 0.5s ease;
}

.reel video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.reel.is-active {
  transform: scale(1);
  opacity: 1;
  filter: none;
  cursor: default;
  border-color: var(--gold);
  box-shadow: 0 10px 45px rgba(212, 175, 55, 0.18);
}

.reel-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.6rem;
}

.reel-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s;
}

.reel-dots button.is-active { background: var(--gold); }

.reel-hint { margin-top: 1.4rem; color: var(--muted); font-size: 0.95rem; }

/* ---------- Services ---------- */

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.2rem;
  text-align: left;
}

.service {
  background: var(--panel);
  border: 1px solid var(--line);
  border-top: 2px solid var(--gold);
  padding: 1.6rem 1.4rem;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.service:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.service h3 {
  color: var(--gold);
  font-size: 1.05rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.service p { color: var(--muted); font-size: 0.95rem; }

/* ---------- Book ---------- */

.book-actions {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.booking-frame { margin-top: 2.5rem; }

/* ---------- Find us ---------- */

.find-us {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
  text-align: left;
}

.map {
  width: 100%;
  min-height: 380px;
  border: 1px solid var(--line);
  border-radius: 14px;
  filter: grayscale(1) invert(0.92) contrast(0.9);
}

.contact-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.7rem;
}

.contact-card h3 { color: var(--gold); text-transform: uppercase; font-size: 1.1rem; }

.contact-card address { font-style: normal; color: var(--white); }

/* ---------- Footer ---------- */

footer {
  border-top: 1px solid var(--line);
  padding: 2.5rem 1.5rem 3rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 1.6rem;
  margin-bottom: 1.4rem;
}

.socials svg {
  width: 26px;
  height: 26px;
  fill: var(--white);
  transition: fill 0.25s, transform 0.25s;
}

.socials a:hover svg { fill: var(--gold); transform: translateY(-2px); }

.fine { margin-top: 0.5rem; font-size: 0.8rem; }

/* ---------- Mobile ---------- */

@media (max-width: 720px) {
  .site-header { flex-direction: column; gap: 0.5rem; }
  .site-header nav { justify-content: center; gap: 1rem; }
  .find-us { grid-template-columns: 1fr; }
  .map { min-height: 300px; }
  .reel { width: clamp(110px, 26vw, 250px); }
}
