/* =========================
   HAYA HAIR DEPOT — LUX BOLD
   White / Black / Gold
   No popups
========================= */

:root{
  --white: #ffffff;
  --ink: #0b0b0c;
  --ink-2: #121214;
  --muted: rgba(11,11,12,.68);
  --muted-2: rgba(11,11,12,.55);
  --border: rgba(11,11,12,.10);

  --gold: #d7b56d;
  --gold-2: #b99346;

  --shadow: 0 20px 60px rgba(0,0,0,.12);
  --shadow-2: 0 14px 36px rgba(0,0,0,.10);

  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 28px;

  --container: 1140px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}
img{ max-width: 100%; display:block; }

.container{
  width: min(var(--container), calc(100% - 44px));
  margin-inline: auto;
}

/* Topbar */
.topbar{
  background: linear-gradient(90deg, var(--ink) 0%, #161617 55%, var(--ink) 100%);
  color: rgba(255,255,255,.86);
  font-size: 13px;
}
.topbar__inner{
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 14px;
  padding: 10px 0;
}
.topbar__cta{
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(215,181,109,.35);
}
.topbar__cta:hover{ opacity:.9; }

/* Header */
.header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap: 12px;
  text-decoration:none;
  color: inherit;
}
.brand__logo{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(11,11,12,.10);
  box-shadow: var(--shadow-2);
  background: #fff;
}
.brand__text{ line-height: 1.05; }
.brand__name{
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: 13px;
}
.brand__sub{
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.nav{
  display:flex;
  gap: 18px;
  align-items:center;
}
.nav a{
  text-decoration:none;
  color: rgba(11,11,12,.78);
  font-size: 14px;
}
.nav a:hover{ color: rgba(11,11,12,.95); }

.header__actions{
  display:flex;
  align-items:center;
  gap: 10px;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 11px 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration:none;
  font-weight: 700;
  letter-spacing: .2px;
  cursor: pointer;
  transition: transform .15s ease, opacity .2s ease, background .2s ease, border-color .2s ease;
}
.btn:active{ transform: translateY(1px); }

.btn--gold{
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-2) 100%);
  color: var(--ink);
  box-shadow: 0 16px 36px rgba(185,147,70,.18);
}
.btn--gold:hover{ opacity: .95; }

.btn--dark{
  background: var(--ink);
  color: #fff;
  border-color: rgba(11,11,12,.08);
}
.btn--dark:hover{ opacity: .92; }

.btn--ghost{
  background: transparent;
  border-color: rgba(11,11,12,.14);
  color: rgba(11,11,12,.85);
}
.btn--ghost:hover{ background: rgba(11,11,12,.04); }

.btn--lg{ padding: 14px 20px; }

/* Burger */
.burger{
  display:none;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(11,11,12,.12);
  background: #fff;
  cursor: pointer;
  align-items:center;
  justify-content:center;
  flex-direction: column;
  gap: 5px;
}
.burger span{ width: 18px; height: 2px; background: var(--ink); display:block; border-radius: 2px; }

/* Mobile menu */
.mobile{
  display:none;
  border-top: 1px solid var(--border);
  background: rgba(255,255,255,.96);
}
.mobile__inner{
  display:grid;
  gap: 12px;
  padding: 16px 0 22px;
}
.mobile a{ text-decoration:none; color: rgba(11,11,12,.86); font-weight: 650; }

/* Hero */
.hero{
  position: relative;
  padding: 64px 0 44px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.hero__bg{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.95) 0%, rgba(255,255,255,.88) 35%, rgba(255,255,255,.52) 92%, rgba(11,11,12,.92) 100%),
    url("assets/banner.jpeg");
  background-size: cover;
  background-position: center;
  filter: contrast(1.05) saturate(.98);
}
.hero__inner{
  position: relative;
  z-index: 1;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 34px;
  align-items: center;
}

.badge{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(11,11,12,.12);
  background: rgba(255,255,255,.72);
}

.badge2{
  display:inline-flex;
  align-items:center;
  font-size: 12px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(11,11,12,.12);
  background: rgba(255,255,255,.92);
}

.hero h1{
  margin: 16px 0 10px;
  font-size: clamp(38px, 4.6vw, 62px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.hero p{
  margin: 0 0 22px;
  max-width: 56ch;
  color: rgba(11,11,12,.70);
  font-size: 16px;
}

.gold{ color: #a67c1b; }

.hero__cta{ display:flex; gap: 12px; flex-wrap: wrap; margin-bottom: 18px; }

.trust{ display:flex; gap: 16px; flex-wrap: wrap; }
.trust__item{ display:flex; align-items:center; gap: 10px; font-weight: 650; color: rgba(11,11,12,.72); font-size: 13px; }
.dot{ width: 8px; height: 8px; border-radius: 999px; background: var(--gold-2); box-shadow: 0 0 0 5px rgba(215,181,109,.20); }

.hero__media .stack{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.card{
  position: relative;
  border-radius: var(--r-lg);
  overflow:hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(11,11,12,.10);
  text-decoration: none;
}
.card img{ width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }
.card--tall{ grid-column: 1 / -1; }
.card--tall img{ aspect-ratio: 16/10; }
.card__cap{
  position:absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(11,11,12,.12);
  font-weight: 750;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.card:hover{ transform: translateY(-2px); transition: transform .2s ease; }

/* Sections */
.section{ padding: 78px 0; }
.section--alt{ background: #fbfbfb; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.section__head{ display:flex; justify-content: space-between; gap: 22px; align-items: end; margin-bottom: 26px; }
.section__head h2{ margin:0; font-size: 34px; letter-spacing: -0.02em; }
.section__head p{ margin:0; color: var(--muted); max-width: 58ch; }
.section__foot{ margin-top: 22px; display:flex; justify-content:center; }

.grid{ display:grid; gap: 16px; }
.grid--3{ grid-template-columns: repeat(3, minmax(0, 1fr)); }

.tile{
  padding: 20px;
  border-radius: var(--r-lg);
  border: 1px solid rgba(11,11,12,.10);
  background: #fff;
  box-shadow: var(--shadow-2);
}
.tile__title{ font-weight: 850; letter-spacing: .02em; }
.tile__sub{ color: var(--muted); margin-top: 6px; }

/* Products */
.product{
  border-radius: var(--r-lg);
  overflow:hidden;
  border: 1px solid rgba(11,11,12,.10);
  background: #fff;
  box-shadow: var(--shadow-2);
}
.product__img img{ width:100%; aspect-ratio: 4/5; object-fit: cover; }
.product__meta{ padding: 16px; display:grid; gap: 10px; }
.product__name{ font-weight: 850; }
.product__tag{ color: var(--muted); font-size: 14px; }

/* Lookbook masonry */
.masonry{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}
.shot{
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(11,11,12,.10);
  box-shadow: var(--shadow-2);
  text-decoration:none;
}
.shot img{ width:100%; height:100%; object-fit: cover; }
.shot:nth-child(1){ grid-column: span 4; grid-row: span 2; }
.shot:nth-child(2){ grid-column: span 4; }
.shot:nth-child(3){ grid-column: span 4; }
.shot:nth-child(4){ grid-column: span 5; }
.shot:nth-child(5){ grid-column: span 7; }

/* Order */
.section--order{ background: linear-gradient(180deg, #fff 0%, #fafafa 100%); }
.order{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  align-items:center;
}
.order h2{ margin:0 0 10px; font-size: 34px; letter-spacing: -0.02em; }
.muted{ color: var(--muted); }
.small{ font-size: 13px; }

.steps{ display:grid; gap: 10px; margin: 18px 0 22px; }
.step{ display:flex; gap: 12px; align-items:center; font-weight: 650; color: rgba(11,11,12,.78); }
.step span{
  width: 30px; height: 30px; border-radius: 999px;
  display:grid; place-items:center;
  background: rgba(215,181,109,.25);
  border: 1px solid rgba(185,147,70,.35);
  font-weight: 850;
}

.frame{
  border-radius: var(--r-lg);
  overflow:hidden;
  border: 1px solid rgba(11,11,12,.10);
  box-shadow: var(--shadow);
}
.frame img{ width:100%; height:auto; }

/* FAQ */
.faq{ display:grid; gap: 12px; }
.faq details{
  border-radius: var(--r-lg);
  border: 1px solid rgba(11,11,12,.10);
  background: #fff;
  padding: 14px 16px;
  box-shadow: var(--shadow-2);
}
.faq summary{ cursor:pointer; font-weight: 800; }
.faq p{ margin: 10px 0 0; color: var(--muted); }

/* Footer */
.footer{
  background: var(--ink);
  color: rgba(255,255,255,.86);
  padding: 48px 0 26px;
}
.footer__inner{
  display:flex;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.footer__logo{ width: 54px; height: 54px; border-radius: 18px; }
.footer__cols{ display:flex; gap: 44px; flex-wrap: wrap; }
.col{ display:grid; gap: 10px; }
.col__title{ font-weight: 850; letter-spacing: .08em; text-transform: uppercase; font-size: 12px; color: rgba(255,255,255,.72); }
.footer a{ color: rgba(255,255,255,.86); text-decoration:none; }
.footer a:hover{ color: #fff; }

.footer__bottom{
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 12px;
  padding-top: 18px;
  color: rgba(255,255,255,.72);
  font-size: 13px;
}
.toTop{ color: var(--gold); }

/* Responsive */
@media (max-width: 980px){
  .nav{ display:none; }
  .burger{ display:flex; }
  .hero__inner{ grid-template-columns: 1fr; }
  .order{ grid-template-columns: 1fr; }
  .grid--3{ grid-template-columns: 1fr; }
  .section__head{ flex-direction: column; align-items: start; }
  .masonry{ grid-template-columns: repeat(6, 1fr); }
  .shot:nth-child(1){ grid-column: span 6; }
  .shot:nth-child(2){ grid-column: span 3; }
  .shot:nth-child(3){ grid-column: span 3; }
  .shot:nth-child(4){ grid-column: span 6; }
  .shot:nth-child(5){ grid-column: span 6; }
  .footer__inner{ flex-direction: column; }
}

.mobile.is-open{ display:block; }
