/* Stefano Hair Design - shared subpage styles (index.html carries its own) */
:root {
  --canvas: oklch(0.21 0.014 65);
  --canvas-deep: oklch(0.17 0.012 65);
  --bone: oklch(0.93 0.012 75);
  --gold: oklch(0.76 0.13 85);
  --gold-hover: oklch(0.83 0.12 88);
  --leather: oklch(0.38 0.06 55);
  --muted: oklch(0.72 0.015 65);
  --hairline: oklch(0.32 0.014 65);
  --display: "Khand", sans-serif;
  --body: "IBM Plex Sans", sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { background: var(--canvas-deep); }
body { background: var(--canvas-deep); font-family: var(--body); color: var(--bone); }

/* nav (same skeleton as home) */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 20;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px max(4vw, 24px);
  background: linear-gradient(180deg, oklch(0.17 0.012 65 / 0.85), transparent);
}
#nav .wordmark {
  font-family: var(--display); font-weight: 700; text-transform: uppercase;
  font-size: 20px; letter-spacing: 0.14em; color: var(--bone); text-decoration: none; line-height: 1;
}
#nav .wordmark span { color: var(--gold); }
#menubtn {
  width: 44px; height: 44px; background: none; border: 0; cursor: pointer;
  display: flex; flex-direction: column; align-items: flex-end; justify-content: center; gap: 7px; padding: 0;
}
#menubtn span { display: block; height: 2px; background: var(--gold); width: 30px; transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), width 0.3s cubic-bezier(0.22,1,0.36,1); }
#menubtn span:last-child { width: 20px; }
#menubtn:hover span { width: 30px; }
body.menu-open #menubtn span:first-child { transform: translateY(4.5px) rotate(45deg); width: 30px; }
body.menu-open #menubtn span:last-child  { transform: translateY(-4.5px) rotate(-45deg); width: 30px; }
#menu {
  position: fixed; inset: 0; z-index: 15; background: oklch(0.17 0.012 65 / 0.97);
  display: flex; align-items: center; padding: 0 max(6vw, 32px);
  opacity: 0; visibility: hidden; transition: opacity 0.35s ease, visibility 0.35s;
}
body.menu-open #menu { opacity: 1; visibility: visible; }
#menu nav { display: flex; flex-direction: column; gap: 4px; }
#menu a {
  font-family: var(--display); font-weight: 700; text-transform: uppercase;
  font-size: clamp(38px, 7vw, 76px); line-height: 1.12; color: var(--bone); text-decoration: none;
  letter-spacing: 0.02em; transform: translateY(14px); opacity: 0;
  transition: color 0.2s, transform 0.45s cubic-bezier(0.22,1,0.36,1), opacity 0.45s;
}
body.menu-open #menu a { transform: translateY(0); opacity: 1; }
body.menu-open #menu a:nth-child(2) { transition-delay: 0.04s; }
body.menu-open #menu a:nth-child(3) { transition-delay: 0.08s; }
body.menu-open #menu a:nth-child(4) { transition-delay: 0.12s; }
body.menu-open #menu a:nth-child(5) { transition-delay: 0.16s; }
#menu a:hover, #menu a.here { color: var(--gold); }
#menu .menu-foot { position: absolute; bottom: 40px; left: max(6vw, 32px); font-size: 13px; color: var(--muted); letter-spacing: 0.06em; }

/* page hero */
.pagehero { position: relative; height: 52vh; min-height: 340px; overflow: hidden; }
.pagehero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.pagehero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, oklch(0.17 0.012 65 / 0.55), transparent 35%, oklch(0.17 0.012 65 / 0.92) 92%);
}
.ph-text { position: absolute; z-index: 2; left: max(4vw, 24px); right: max(4vw, 24px); bottom: 28px; }
.ph-text h1 {
  font-family: var(--display); font-weight: 700; text-transform: uppercase;
  font-size: clamp(44px, 7vw, 96px); line-height: 0.95; color: var(--bone);
  text-shadow: 0 3px 34px oklch(0.1 0.01 65 / 0.85);
  position: relative; padding-bottom: 16px;
}
.ph-text h1::after { content: ""; position: absolute; left: 0; bottom: 0; height: 3px; width: min(180px, 40%); background: var(--gold); }

/* content */
main { max-width: 780px; padding: 56px max(4vw, 24px) 72px; }
main p { font-size: 18px; line-height: 1.65; margin-bottom: 22px; }
main .lede { font-size: clamp(20px, 2vw, 24px); line-height: 1.55; }
main .note { font-size: 13px; color: var(--muted); margin-top: -8px; }
main .pending { color: var(--muted); font-size: 15px; border-left: 3px solid var(--gold); padding-left: 14px; }
main .parent { color: var(--muted); font-size: 16px; }
.blockhead {
  font-family: var(--display); font-weight: 700; text-transform: uppercase;
  font-size: 26px; letter-spacing: 0.06em; margin: 34px 0 10px; color: var(--bone);
}

/* services list */
.svc { list-style: none; margin-top: 34px; }
.svc li { padding: 22px 0; border-top: 1px solid var(--hairline); }
.svc li:last-child { border-bottom: 1px solid var(--hairline); }
.svc h3 {
  font-family: var(--display); font-weight: 700; text-transform: uppercase;
  font-size: 26px; letter-spacing: 0.04em; color: var(--bone); margin-bottom: 4px;
}
.svc p { font-size: 17px; color: var(--muted); margin: 0; }

/* buttons + cta band */
.cta-row { display: flex; gap: 12px; margin: 10px 0 14px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 120px; height: 48px;
  font-family: var(--display); font-size: 20px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none;
  background: var(--gold); color: var(--canvas); cursor: pointer;
}
.btn:hover { background: var(--gold-hover); color: var(--canvas); }
.btn:focus-visible { outline: 2px solid var(--bone); outline-offset: 3px; }
.ctaband { padding: 44px max(4vw, 24px) 56px; border-top: 1px solid var(--hairline); }
.ctaband p { font-size: 18px; margin-bottom: 16px; color: var(--bone); max-width: 640px; }
footer { padding: 26px max(4vw, 24px) 40px; color: var(--muted); }
