/* ── The Gilded Shear — Style ──────────────────────── */

:root {
  --onyx:       #141211;
  --charcoal:   #242220;
  --espresso:   #3a3633;
  --smoke:      #5e5955;
  --taupe:      #8a837c;
  --stone:      #b0a99f;
  --champagne:  #d4c9b8;
  --silk:       #e8e0d2;
  --pearl:      #f2ede5;
  --ivory:      #f9f6f1;
  --porcelain:  #fdfbf8;

  --gold:       #b8956a;
  --gold-light: #d4b88a;
  --gold-deep:  #8a6d4a;
  --rose:       #c4a0a0;

  --ff-display: 'Bodoni Moda', 'Didot', 'Georgia', serif;
  --ff-body:    'Nunito Sans', 'Helvetica Neue', Arial, sans-serif;

  --sp-xs:  0.5rem;
  --sp-sm:  1rem;
  --sp-md:  2rem;
  --sp-lg:  4rem;
  --sp-xl:  6rem;
  --sp-2xl: 9rem;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ── Reset ───────────────────────────────────────────── */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--ff-body);
  font-weight: 300;
  font-size: 0.94rem;
  line-height: 1.76;
  color: var(--espresso);
  background: var(--ivory);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.3s var(--ease); }
ul { list-style: none; }

h1, h2, h3 {
  font-family: var(--ff-display);
  font-weight: 400;
  line-height: 1.15;
}

em { font-style: italic; }

.container {
  width: 100%;
  max-width: 66rem;
  margin: 0 auto;
  padding: 0 var(--sp-md);
}

/* ── Buttons ─────────────────────────────────────────── */

.btn {
  display: inline-block;
  font-family: var(--ff-body);
  font-weight: 400;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border: none;
  cursor: pointer;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), transform 0.25s var(--ease);
}

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

.btn--gold:hover {
  background: var(--gold-deep);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--espresso);
  border: 1px solid var(--champagne);
}

.btn--outline:hover {
  background: var(--espresso);
  color: var(--ivory);
}

/* ── Nav ─────────────────────────────────────────────── */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(249, 246, 241, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(184, 149, 106, 0.1);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 66rem;
  margin: 0 auto;
  padding: 1.1rem var(--sp-md);
}

.nav__logo {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--onyx);
  letter-spacing: 0.04em;
}

.nav__links { display: flex; gap: 2.4rem; }

.nav__links a {
  font-size: 0.76rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--taupe);
}

.nav__links a:hover { color: var(--onyx); }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 7px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--onyx);
  transition: transform 0.3s var(--ease), opacity 0.2s;
}

/* ── Hero ────────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--sp-2xl) var(--sp-md) var(--sp-xl);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse at 50% 20%, rgba(184, 149, 106, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 100%, rgba(196, 160, 160, 0.05) 0%, transparent 45%),
    linear-gradient(180deg, var(--ivory) 0%, var(--pearl) 50%, var(--silk) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 36rem;
}

.hero__over {
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-md);
}

.hero__title {
  font-size: clamp(2.6rem, 5.5vw, 4.6rem);
  font-weight: 400;
  color: var(--onyx);
  margin-bottom: var(--sp-md);
}

.hero__title em { color: var(--gold-deep); }

.hero__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: var(--sp-md);
}

.hero__divider span {
  display: block;
  width: 3rem;
  height: 1px;
  background: var(--champagne);
}

.hero__icon {
  width: 28px;
  height: 28px;
  color: var(--gold);
}

.hero__desc {
  font-size: 1.02rem;
  line-height: 1.88;
  color: var(--smoke);
  margin-bottom: var(--sp-lg);
}

/* ── Section Shared ──────────────────────────────────── */

.section { padding: var(--sp-xl) 0; }

.section__label {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-xs);
}

.section__title {
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  color: var(--onyx);
  margin-bottom: var(--sp-lg);
}

.section__title em { color: var(--gold-deep); }

/* ── Services ────────────────────────────────────────── */

.services { background: var(--porcelain); }

.services__intro {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--smoke);
  max-width: 38rem;
  margin-bottom: var(--sp-xl);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-lg) var(--sp-xl);
}

.svc-group__name {
  font-size: 1.4rem;
  color: var(--onyx);
  margin-bottom: var(--sp-sm);
  padding-bottom: var(--sp-xs);
  border-bottom: 1px solid var(--champagne);
}

.svc-item {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding: 0.55rem 0;
}

.svc-item__name {
  font-size: 0.9rem;
  color: var(--espresso);
  white-space: nowrap;
}

.svc-item__line {
  flex: 1;
  height: 1px;
  background: repeating-linear-gradient(
    to right,
    var(--champagne) 0px,
    var(--champagne) 2px,
    transparent 2px,
    transparent 6px
  );
  min-width: 1.5rem;
}

.svc-item__price {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--onyx);
  white-space: nowrap;
}

/* ── Team ────────────────────────────────────────────── */

.team { background: var(--ivory); }

.team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-md);
}

.stylist {
  text-align: center;
  padding: var(--sp-md) var(--sp-sm);
}

.stylist__avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--av, var(--champagne));
  margin: 0 auto var(--sp-sm);
  border: 2px solid rgba(184, 149, 106, 0.2);
}

.stylist__name {
  font-size: 1.2rem;
  color: var(--onyx);
  margin-bottom: 0.15rem;
}

.stylist__role {
  display: block;
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-sm);
}

.stylist p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--smoke);
}

/* ── Space ───────────────────────────────────────────── */

.space { background: var(--onyx); color: var(--silk); }

.space .section__label { color: var(--gold-light); }
.space .section__title { color: var(--pearl); }

.space__layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--sp-xl);
  align-items: start;
}

.space__text p {
  font-size: 0.98rem;
  line-height: 1.88;
  color: rgba(232, 224, 210, 0.65);
  margin-bottom: var(--sp-md);
}

.space__text p:last-child { margin-bottom: 0; }

.space__details {
  border-left: 1px solid rgba(184, 149, 106, 0.15);
  padding-left: var(--sp-md);
}

.detail {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(184, 149, 106, 0.08);
}

.detail:last-child { border-bottom: none; }

.detail__label {
  font-size: 0.74rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.detail__value {
  font-size: 0.9rem;
  color: var(--silk);
  text-align: right;
}

/* ── Book ────────────────────────────────────────────── */

.book { background: var(--pearl); }

.book__layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--sp-xl);
}

.book__info > p {
  font-size: 0.98rem;
  line-height: 1.85;
  color: var(--smoke);
  margin-bottom: var(--sp-lg);
  max-width: 28rem;
}

.book__details { display: flex; flex-direction: column; gap: var(--sp-sm); }

.book__row {
  display: flex;
  gap: var(--sp-md);
  font-size: 0.88rem;
  line-height: 1.65;
  padding-bottom: var(--sp-sm);
  border-bottom: 1px solid var(--silk);
}

.book__row:last-child { border-bottom: none; padding-bottom: 0; }

.book__lbl {
  flex-shrink: 0;
  width: 5rem;
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--taupe);
  padding-top: 0.15rem;
}

.book__cta-area {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}

.book__card {
  background: var(--ivory);
  border: 1px solid var(--silk);
  padding: var(--sp-md);
  transition: border-color 0.3s var(--ease);
}

.book__card:hover {
  border-color: var(--gold);
}

.book__card h3 {
  font-size: 1.2rem;
  color: var(--onyx);
  margin-bottom: 0.4rem;
}

.book__card p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--smoke);
  margin-bottom: var(--sp-md);
}

/* ── Footer ──────────────────────────────────────────── */

.footer {
  background: var(--onyx);
  color: var(--taupe);
  padding: var(--sp-lg) 0 var(--sp-md);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--sp-lg);
}

.footer__logo {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--champagne);
  letter-spacing: 0.04em;
  margin-bottom: 0.3rem;
}

.footer__sub {
  font-size: 0.78rem;
  color: var(--smoke);
}

.footer__links { display: flex; gap: 2rem; }

.footer__links a {
  font-size: 0.8rem;
  color: var(--smoke);
  transition: color 0.3s var(--ease);
}

.footer__links a:hover { color: var(--champagne); }

.footer__bottom {
  border-top: 1px solid rgba(184, 149, 106, 0.08);
  padding-top: var(--sp-sm);
}

.footer__bottom p {
  font-size: 0.72rem;
  color: var(--smoke);
  opacity: 0.4;
}

/* ── Reveal ──────────────────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ──────────────────────────────────────── */

@media (max-width: 64rem) {
  .services__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 48rem) {
  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(249, 246, 241, 0.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: var(--sp-sm) var(--sp-md) var(--sp-md);
    gap: 0;
    border-bottom: 1px solid rgba(184, 149, 106, 0.1);
  }

  .nav__links.is-open { display: flex; }
  .nav__links li { padding: 0.55rem 0; }
  .nav__toggle { display: flex; }

  .nav__toggle.is-active span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
  .nav__toggle.is-active span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

  .hero { padding-top: 7rem; min-height: auto; }

  .services__grid { grid-template-columns: 1fr; }
  .team__grid { grid-template-columns: 1fr; gap: var(--sp-lg); }
  .stylist { text-align: left; padding: 0; }
  .stylist__avatar { margin: 0 0 var(--sp-sm) 0; }

  .space__layout { grid-template-columns: 1fr; gap: var(--sp-lg); }
  .space__details {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid rgba(184, 149, 106, 0.12);
    padding-top: var(--sp-md);
  }

  .book__layout { grid-template-columns: 1fr; gap: var(--sp-lg); }

  .footer__inner { flex-direction: column; gap: var(--sp-md); }
  .footer__links { flex-wrap: wrap; gap: 1.2rem; }
}