/* SK Hair + Beauty ---------------------------------------------------------
   Built to the Brand Guidelines v1.0 and Website Style Guide (Sept 2026).
   One stylesheet, no framework, no build step, no JavaScript.

   Type substitution note: the guide specifies Clear Sans (or a licensed
   Neue Haas Grotesk / Helvetica Now / Avenir Next). None of those can be
   served free on the web, so the interface sans is Inter — the closest
   neutral grotesque available on Google Fonts. GFS Didot is the guide's
   named display face and IS available, so that is used exactly as specified.
   -------------------------------------------------------------------------- */

:root {
  color-scheme: light;

  /* Brand palette — do not add colours outside this set. */
  --ink:   #111111;
  --ivory: #F7F4EF;
  --taupe: #B8AA9C;
  --stone: #D8D1C8;
  --navy:  #22313B;
  --white: #FFFFFF;

  /* Derived, for text that must sit quieter than Ink. */
  --ink-70: #4A4A4A;
  --ink-55: #6E6E6E;

  --display: "GFS Didot", Didot, "Bodoni MT", "Times New Roman", serif;
  --sans: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;

  /* 8px base grid. */
  --s1: 8px;
  --s2: 16px;
  --s3: 24px;
  --s4: 32px;
  --s6: 48px;
  --s8: 64px;

  --gutter: 7vw;
  --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; display: block; }

a { color: inherit; text-decoration-color: var(--taupe); text-underline-offset: 3px; }
a:hover { text-decoration-color: var(--ink); }

:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }

.wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.skip {
  position: absolute;
  left: -9999px;
  background: var(--ink);
  color: var(--ivory);
  padding: 10px 16px;
  z-index: 100;
}

.skip:focus { left: 8px; top: 8px; }

/* ---------- type scale (style guide §2) ---------- */

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 400;
  margin: 0;
  text-wrap: balance;
}

h1 { font-size: clamp(34px, 6.2vw, 48px); line-height: 1.08; }
h2 { font-size: clamp(26px, 4.4vw, 34px); line-height: 1.12; }
h3 { font-size: 22px; line-height: 1.2; }

p { margin: 0 0 var(--s2); max-width: 62ch; }
p:last-child { margin-bottom: 0; }

.lede { font-size: 18px; color: var(--ink-70); max-width: 52ch; }

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--taupe);
  margin: 0 0 var(--s3);
}

.label {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-55);
}

/* ---------- header ---------- */

.site-head {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--ivory) 94%, transparent);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--stone);
}

.site-head .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s2);
  min-height: 84px;
  padding-block: 12px;
}

/* The lockup is set in live type rather than an image so it stays crisp at
   any size. It matches the supplied artwork: Didot SK in a thin square,
   tracked-out sans descriptor. */
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--ink);
}

.brand .mark {
  font-family: var(--display);
  font-size: 34px;
  line-height: 0.86;
  border: 1.5px solid currentColor;
  padding: 8px 12px 13px;
}

.brand .descriptor {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-nav { display: flex; align-items: center; gap: var(--s4); }

.site-nav a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink-55);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] { color: var(--ink); }

@media (max-width: 860px) {
  .site-nav { gap: var(--s3); }
  .brand .descriptor { display: none; }
}

@media (max-width: 560px) {
  :root { --gutter: 20px; }
  .site-head .wrap { min-height: 68px; }
  .brand .mark { font-size: 26px; padding: 6px 9px 10px; }
  .site-nav { gap: var(--s2); }
  /* Keep Services reachable on a phone — that is where most people look.
     Home is the logo, and About lives on the home page anyway. */
  .site-nav a[href="index.html"],
  .site-nav a[href="#about"],
  .site-nav a[href="index.html#about"] { display: none; }
  .site-nav a:not(.btn) { font-size: 11px; letter-spacing: 0.1em; }
}

/* ---------- buttons (style guide §3) ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 26px;
  border: 1px solid var(--ink);
  border-radius: 2px;
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.btn:hover { background: var(--taupe); border-color: var(--taupe); color: var(--ink); }

.btn-secondary { background: transparent; color: var(--ink); }
.btn-secondary:hover { background: var(--taupe); border-color: var(--taupe); color: var(--ink); }

.btn-inverse { background: var(--ivory); border-color: var(--ivory); color: var(--ink); }
.btn-inverse:hover { background: var(--taupe); border-color: var(--taupe); color: var(--ink); }

.site-nav .btn { min-height: 42px; padding: 0 18px; }

@media (max-width: 560px) {
  .site-nav .btn { min-height: 38px; padding: 0 14px; font-size: 11px; letter-spacing: 0.1em; }
}

/* ---------- sections ---------- */

.section { padding-block: clamp(48px, 9vw, 112px); }
.section + .section { border-top: 1px solid var(--stone); }
.section-white { background: var(--white); border-top: 0; }
.section-ink { background: var(--ink); color: var(--ivory); border-top: 0; }
.section-ink .lede { color: var(--stone); }
.section-ink .eyebrow { color: var(--taupe); }

/* ---------- hero ---------- */

.hero { padding-block: clamp(48px, 8vw, 96px) clamp(40px, 7vw, 88px); }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}

.hero h1 { margin-bottom: var(--s3); }
.hero-cta { display: flex; flex-wrap: wrap; gap: var(--s2); margin-top: var(--s4); }

@media (max-width: 860px) { .hero-grid { grid-template-columns: 1fr; } }

/* ---------- photo placeholders ----------
   Replace each .ph with an <img>. Art direction is in the Brand Guidelines
   §5: natural skin tones, window light, a mix of men and women, no glam
   clichés. */

.ph {
  background: linear-gradient(145deg, var(--stone), var(--taupe));
  display: flex;
  align-items: flex-end;
  padding: var(--s3);
  aspect-ratio: 4 / 5;
  color: var(--white);
}

.ph span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.ph-wide { aspect-ratio: 16 / 10; }
.ph-square { aspect-ratio: 1 / 1; }

/* ---------- service cards (style guide §3) ---------- */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--s3);
  margin-top: clamp(32px, 4vw, 56px);
}

.card {
  border: 1px solid var(--stone);
  padding: var(--s4);
  display: flex;
  flex-direction: column;
  gap: var(--s2);
  background: var(--ivory);
}

.card-dark { background: var(--navy); border-color: var(--navy); color: var(--ivory); }
.card-dark .card-meta { color: var(--stone); }
.card-dark .card-link { color: var(--ivory); }

.card h3 { margin-bottom: 2px; }
.card p { font-size: 15px; color: var(--ink-70); margin: 0; flex: 1; }
.card-dark p { color: var(--stone); }

.card-meta {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-55);
}

.card-link {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  border-bottom: 1px solid var(--taupe);
  align-self: flex-start;
  padding-bottom: 3px;
}

.card-link:hover { border-bottom-color: currentColor; }

/* ---------- why / proof points ---------- */

.proof {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.proof-list { list-style: none; margin: 0; padding: 0; }

.proof-list li {
  padding: var(--s3) 0;
  border-bottom: 1px solid var(--stone);
  max-width: 54ch;
}

.proof-list li:first-child { border-top: 1px solid var(--stone); }
.proof-list b { font-family: var(--display); font-weight: 400; font-size: 22px; display: block; }
.proof-list span { display: block; color: var(--ink-70); font-size: 15px; margin-top: 4px; }

@media (max-width: 860px) { .proof { grid-template-columns: 1fr; } }

/* ---------- gallery ---------- */

.strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--s2);
  margin-top: clamp(28px, 4vw, 48px);
}

/* ---------- owner / about ---------- */

.owner {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

@media (max-width: 860px) { .owner { grid-template-columns: 1fr; } }

/* ---------- price menu ---------- */

.menu { margin-top: clamp(28px, 4vw, 48px); max-width: 760px; }

.menu h3 {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--taupe);
  margin: var(--s6) 0 var(--s1);
  padding-bottom: var(--s1);
  border-bottom: 1px solid var(--ink);
}

.menu h3:first-child { margin-top: 0; }

.item {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 4px var(--s3);
  align-items: baseline;
  padding: var(--s2) 0;
  border-bottom: 1px solid var(--stone);
}

.item .nm { font-family: var(--display); font-size: 22px; }

.item .dur {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-55);
  white-space: nowrap;
}

.item .pr {
  font-family: var(--display);
  font-size: 22px;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  min-width: 3.5em;
  text-align: right;
}

@media (max-width: 560px) {
  .item { grid-template-columns: 1fr auto; }
  .item .dur { grid-column: 1; grid-row: 2; }
  .item .pr { grid-row: 1 / 3; align-self: center; }
}

/* ---------- callouts ---------- */

.callout {
  border: 1px solid var(--stone);
  background: var(--white);
  padding: var(--s4);
  margin-top: var(--s4);
  max-width: 680px;
}

.callout h3 { font-size: 22px; margin-bottom: var(--s1); }
.callout p { font-size: 16px; color: var(--ink-70); }

/* ---------- steps ---------- */

.steps {
  list-style: none;
  counter-reset: st;
  padding: 0;
  margin: clamp(28px, 4vw, 48px) 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--s4);
}

.steps li { counter-increment: st; }

.steps li::before {
  content: counter(st);
  display: block;
  font-family: var(--display);
  font-size: 22px;
  color: var(--taupe);
  padding-bottom: var(--s1);
  margin-bottom: var(--s2);
  border-bottom: 1px solid var(--stone);
}

.steps b { display: block; font-family: var(--display); font-weight: 400; font-size: 22px; }
.steps span { display: block; font-size: 15px; color: var(--ink-70); margin-top: 4px; }

/* ---------- visit details ---------- */

.details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--s4);
  margin-top: clamp(28px, 4vw, 48px);
}

.details h3 {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-55);
  margin-bottom: var(--s2);
}

.details p { font-size: 16px; margin: 0 0 var(--s1); }

/* ---------- final CTA ---------- */

.band { text-align: center; }
.band h2 { margin-bottom: var(--s2); max-width: 20ch; margin-inline: auto; }
.band .lede { margin-inline: auto; }
.band .btn { margin-top: var(--s4); }

/* ---------- footer ---------- */

.site-foot {
  background: var(--ink);
  color: var(--stone);
  padding-block: var(--s6);
  font-size: 13px;
}

.site-foot .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s3) var(--s8);
  justify-content: space-between;
  align-items: flex-start;
}

.site-foot a { color: var(--ivory); }
.site-foot p { margin: var(--s1) 0 0; font-size: 12px; color: var(--ink-55); }
.site-foot .brand { color: var(--ivory); }

.foot-links { display: flex; flex-wrap: wrap; gap: var(--s1) var(--s3); }

.foot-links a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
}

/* ---------- outstanding content marker ----------
   One item left: Shannon's own words in the About section. */

.todo {
  display: inline;
  background: #F6E9C8;
  border-bottom: 1px dashed #B08A2E;
  color: #6B5312;
  padding: 0 4px;
  font-size: 0.92em;
}
