/* More Than Hair — static production site */
:root {
  --ink: #241a20;
  --ink-soft: #604e59;
  --plum: #5d2747;
  --plum-deep: #3d1730;
  --rose: #c98da8;
  --rose-soft: #efdce5;
  --cream: #fffaf4;
  --paper: #f8f0e8;
  --gold: #c79c61;
  --line: rgba(61, 23, 48, 0.14);
  --shadow: 0 24px 70px rgba(61, 23, 48, 0.14);
  --shadow-soft: 0 14px 36px rgba(61, 23, 48, 0.09);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --content: 1180px;
  --header-h: 78px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button, input, textarea, select { font: inherit; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 9999;
  padding: .75rem 1rem;
  border-radius: 10px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  transition: top .2s ease;
}
.skip-link:focus { top: 1rem; }

.container {
  width: min(calc(100% - 2.4rem), var(--content));
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  margin: 0 0 1rem;
  color: var(--plum);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

h1, h2, h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -.035em;
}
h1 { font-size: clamp(3.25rem, 7vw, 6.6rem); }
h2 { font-size: clamp(2.35rem, 4.6vw, 4.25rem); }
h3 { font-size: clamp(1.55rem, 2.6vw, 2.1rem); }
p { margin: 0; }
.lead {
  max-width: 720px;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.8vw, 1.3rem);
}
.muted { color: var(--ink-soft); }
.small { font-size: .9rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  border-bottom: 1px solid rgba(61, 23, 48, .08);
  background: rgba(255, 250, 244, .92);
  backdrop-filter: blur(18px);
}
.nav-shell {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .85rem;
  text-decoration: none;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--plum-deep);
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: .87rem;
  letter-spacing: .06em;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.2);
}
.brand-copy { display: grid; line-height: 1; }
.brand-copy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.22rem;
  font-weight: 500;
  letter-spacing: -.02em;
}
.brand-copy span {
  margin-top: .32rem;
  color: var(--ink-soft);
  font-size: .63rem;
  font-weight: 750;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: .3rem;
}
.nav-links a {
  padding: .65rem .78rem;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: .91rem;
  font-weight: 700;
  text-decoration: none;
}
.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"] {
  background: var(--rose-soft);
  color: var(--plum-deep);
}
.nav-actions { display: flex; align-items: center; gap: .65rem; }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}
.menu-toggle svg { width: 20px; margin: auto; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  min-height: 48px;
  padding: .78rem 1.1rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--plum-deep);
  color: #fff;
  font-size: .91rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  box-shadow: 0 10px 24px rgba(61, 23, 48, .16);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(61,23,48,.22); }
.btn:focus-visible,
.nav-links a:focus-visible,
.brand:focus-visible,
.menu-toggle:focus-visible,
.text-link:focus-visible {
  outline: 3px solid rgba(201, 141, 168, .55);
  outline-offset: 3px;
}
.btn-light { background: #fff; color: var(--plum-deep); box-shadow: none; }
.btn-ghost {
  border-color: var(--line);
  background: transparent;
  color: var(--plum-deep);
  box-shadow: none;
}
.btn svg { width: 18px; height: 18px; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: var(--plum-deep);
  font-weight: 800;
  text-decoration: none;
}
.text-link::after { content: "→"; transition: transform .18s ease; }
.text-link:hover::after { transform: translateX(4px); }

.hero {
  position: relative;
  overflow: clip;
  padding: clamp(3rem, 6vw, 6.5rem) 0 5.5rem;
}
.hero::before {
  content: "";
  position: absolute;
  width: 540px;
  height: 540px;
  right: -180px;
  top: -220px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(201,141,168,.34), rgba(201,141,168,0) 68%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, .98fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}
.hero-copy h1 { max-width: 790px; }
.hero-copy h1 em { color: var(--plum); font-style: italic; font-weight: 400; }
.hero-copy .lead { margin-top: 1.55rem; max-width: 650px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.25rem;
  margin-top: 2rem;
  color: var(--ink-soft);
  font-size: .88rem;
  font-weight: 650;
}
.hero-note span { display: inline-flex; align-items: center; gap: .45rem; }
.hero-note i { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }

.hero-art {
  position: relative;
  min-height: 560px;
}
.hero-art .frame {
  position: absolute;
  inset: 2rem 1.8rem 0 1.8rem;
  overflow: hidden;
  border-radius: 240px 240px 34px 34px;
  background: linear-gradient(160deg, var(--rose-soft), #ead8ca 58%, #f7eee8);
  box-shadow: var(--shadow);
}
.hero-art .frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(61,23,48,.12), transparent 44%);
  pointer-events: none;
}
.hero-art img { width: 100%; height: 100%; object-fit: cover; }
.hero-art .seal {
  position: absolute;
  right: 0;
  top: 1rem;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 118px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--plum-deep);
  color: var(--cream);
  text-align: center;
  box-shadow: 0 18px 40px rgba(61,23,48,.2);
}
.hero-art .seal span {
  max-width: 80px;
  font-size: .69rem;
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.hero-art .mini-card {
  position: absolute;
  left: 0;
  bottom: 2.1rem;
  z-index: 2;
  width: min(280px, 65%);
  padding: 1.1rem 1.15rem;
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 18px;
  background: rgba(255,250,244,.92);
  backdrop-filter: blur(15px);
  box-shadow: var(--shadow-soft);
}
.hero-art .mini-card strong { display: block; font-family: Georgia, serif; font-size: 1.18rem; font-weight: 500; }
.hero-art .mini-card span { display: block; margin-top: .35rem; color: var(--ink-soft); font-size: .82rem; }

.trust-strip {
  border-block: 1px solid var(--line);
  background: #fff;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-item {
  min-height: 115px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--line);
}
.trust-item:last-child { border-right: 0; }
.trust-item strong { font-family: Georgia, serif; font-size: 1.35rem; font-weight: 500; }
.trust-item span { margin-top: .25rem; color: var(--ink-soft); font-size: .82rem; }

.section { padding: clamp(4.5rem, 8vw, 8rem) 0; }
.section-tight { padding: 4.5rem 0; }
.section-rose { background: var(--paper); }
.section-plum { background: var(--plum-deep); color: var(--cream); }
.section-plum .eyebrow { color: #e7bacd; }
.section-plum .lead, .section-plum .muted { color: rgba(255,250,244,.72); }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.4rem;
}
.section-head > div { max-width: 760px; }
.section-head .lead { margin-top: 1rem; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}
.service-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-soft);
  isolation: isolate;
}
.service-card.large { grid-column: span 7; }
.service-card.small { grid-column: span 5; }
.service-card.half { grid-column: span 6; min-height: 285px; }
.service-card::before {
  content: "";
  position: absolute;
  width: 210px;
  height: 210px;
  right: -70px;
  top: -70px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,141,168,.3), transparent 70%);
  z-index: -1;
}
.service-card .number {
  color: var(--rose);
  font-family: Georgia, serif;
  font-size: .9rem;
  letter-spacing: .1em;
}
.service-card h3 { margin-top: 3.2rem; max-width: 420px; }
.service-card p { margin-top: .85rem; max-width: 470px; color: var(--ink-soft); }
.service-card .text-link {
  position: static;
  align-self: flex-start;
  margin-top: auto;
  padding-top: 1.35rem;
}
.service-card.dark { background: var(--plum-deep); color: var(--cream); border-color: transparent; }
.service-card.dark p { color: rgba(255,250,244,.72); }
.service-card.dark .text-link { color: #fff; }
.service-card.sun {
  background: linear-gradient(145deg, #f8dfb0, #efc67c 58%, #f6ead7);
}
.service-card.sun::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  right: 2rem;
  bottom: 2rem;
  border: 1px solid rgba(61,23,48,.2);
  border-radius: 50%;
  box-shadow: 0 0 0 18px rgba(255,255,255,.14), 0 0 0 38px rgba(255,255,255,.09);
  z-index: -1;
}

.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(2rem, 6vw, 5.5rem);
  align-items: center;
}
.art-card {
  position: relative;
  min-height: 510px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(145deg, #e8c8d5, #f2e2d9);
  box-shadow: var(--shadow);
}
.art-card img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.art-card .caption {
  position: absolute;
  left: 1.3rem;
  right: 1.3rem;
  bottom: 1.3rem;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  background: rgba(255,250,244,.92);
  backdrop-filter: blur(12px);
  color: var(--ink);
  font-size: .85rem;
}
.split-copy h2 { max-width: 620px; }
.split-copy .lead { margin-top: 1.2rem; }
.check-list { display: grid; gap: .9rem; margin: 1.8rem 0 0; padding: 0; list-style: none; }
.check-list li { display: grid; grid-template-columns: 30px 1fr; gap: .75rem; color: var(--ink-soft); }
.check-list b {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--rose-soft);
  color: var(--plum-deep);
  font-size: .8rem;
}

.hours-card {
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.hours-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
}
.hours-copy { padding: clamp(2rem, 5vw, 4.5rem); }
.hours-copy .lead { margin-top: 1rem; }
.hours-list { display: grid; gap: 0; margin: 2rem 0 0; }
.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .75rem 0;
  border-bottom: 1px solid var(--line);
  font-size: .92rem;
}
.hours-row:last-child { border-bottom: 0; }
.hours-row span:last-child { font-weight: 750; }
.location-panel {
  position: relative;
  min-height: 100%;
  padding: clamp(2rem, 5vw, 4rem);
  background: var(--plum-deep);
  color: var(--cream);
  overflow: hidden;
}
.location-panel::before,
.location-panel::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
}
.location-panel::before { width: 330px; height: 330px; right: -150px; top: -100px; }
.location-panel::after { width: 170px; height: 170px; right: -60px; top: -10px; }
.location-panel .pin {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  margin-bottom: 5rem;
}
.location-panel .pin svg { width: 24px; }
.location-panel h3 { max-width: 380px; }
.location-panel p { margin-top: .75rem; color: rgba(255,250,244,.72); }
.location-panel .btn { margin-top: 1.6rem; }

.quote-band {
  position: relative;
  overflow: hidden;
}
.quote-band .container { position: relative; z-index: 1; }
.quote-band blockquote {
  max-width: 900px;
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(2.1rem, 4.5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.035em;
}
.quote-band p { margin-top: 1.4rem; color: rgba(255,250,244,.72); }
.quote-band::after {
  content: "MTH";
  position: absolute;
  right: -2rem;
  bottom: -3rem;
  color: rgba(255,255,255,.035);
  font-family: Georgia, serif;
  font-size: clamp(11rem, 24vw, 24rem);
  line-height: .75;
}

.page-hero {
  padding: 5rem 0 4.2rem;
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { max-width: 920px; font-size: clamp(3.1rem, 6vw, 5.8rem); }
.page-hero .lead { margin-top: 1.25rem; }
.page-hero .hero-actions { margin-top: 1.8rem; }

.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.detail-card {
  padding: clamp(1.7rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
}
.detail-card.full { grid-column: 1 / -1; }
.detail-card h3 { margin-top: .7rem; }
.detail-card p { margin-top: .8rem; color: var(--ink-soft); }
.detail-card ul { margin: 1.3rem 0 0; padding-left: 1.2rem; color: var(--ink-soft); }
.detail-card li + li { margin-top: .4rem; }
.icon-chip {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--rose-soft);
  color: var(--plum-deep);
}
.icon-chip svg { width: 24px; }

.info-banner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.25rem 1.35rem;
  border: 1px solid rgba(199,156,97,.28);
  border-radius: 16px;
  background: #fff7e9;
  color: #5d4828;
}
.info-banner svg { width: 22px; margin-top: .1rem; }

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 1rem;
}
.contact-stack { display: grid; gap: 1rem; }
.contact-card {
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
}
.contact-card strong { display: block; font-family: Georgia, serif; font-size: 1.45rem; font-weight: 500; }
.contact-card p { margin-top: .35rem; color: var(--ink-soft); }
.contact-card .text-link { margin-top: 1rem; }
.contact-feature {
  position: relative;
  min-height: 100%;
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--plum-deep), #7b3c5d);
  color: var(--cream);
  overflow: hidden;
}
.contact-feature::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  right: -180px;
  top: -130px;
}
.contact-feature .eyebrow { color: #efc9d8; }
.contact-feature p { margin-top: 1rem; max-width: 560px; color: rgba(255,250,244,.72); }
.contact-feature .btn { margin-top: 2rem; }

.cta {
  padding: clamp(3.5rem, 7vw, 6.5rem) 0;
  background: var(--paper);
}
.cta-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: var(--radius-lg);
  background: var(--plum-deep);
  color: var(--cream);
  box-shadow: var(--shadow);
}
.cta-card h2 { max-width: 720px; }
.cta-card p { margin-top: .9rem; max-width: 620px; color: rgba(255,250,244,.72); }
.cta-actions { display: flex; gap: .7rem; flex-wrap: wrap; justify-content: flex-end; }

.site-footer {
  padding: 3.8rem 0 1.4rem;
  background: #1f151b;
  color: rgba(255,250,244,.72);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .75fr .75fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer-brand { max-width: 480px; }
.footer-brand .brand { color: #fff; }
.footer-brand .brand-copy span { color: rgba(255,255,255,.5); }
.footer-brand p { margin-top: 1.2rem; max-width: 440px; }
.footer-col h3 {
  color: #fff;
  font-family: inherit;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.footer-col ul { margin: 1rem 0 0; padding: 0; list-style: none; display: grid; gap: .55rem; }
.footer-col a { color: rgba(255,250,244,.72); text-decoration: none; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .78rem;
}

.mobile-call { display: none; }

@media (max-width: 960px) {
  :root { --header-h: 70px; }
  .menu-toggle { display: grid; }
  .desktop-call { display: none; }
  .nav-links {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    z-index: 999;
    display: grid;
    align-content: start;
    gap: .4rem;
    max-height: calc(100dvh - var(--header-h));
    padding: 1rem 1.2rem 1.5rem;
    border-bottom: 1px solid var(--line);
    background: var(--cream);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform .22s ease, opacity .22s ease, visibility .22s ease;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav-links a { padding: .9rem 1rem; border-radius: 14px; font-size: 1rem; }
  .hero-grid, .split, .hours-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 3.5rem; }
  .hero-art { min-height: 520px; max-width: 620px; width: 100%; margin: 0 auto; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .service-card.large, .service-card.small, .service-card.half { grid-column: span 6; }
  .service-card { min-height: 300px; }
  .art-card { min-height: 430px; }
  .cta-card { grid-template-columns: 1fr; }
  .cta-actions { justify-content: flex-start; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 1.4rem), var(--content)); }
  .brand-copy span { display: none; }
  .hero { padding: 2.7rem 0 4rem; }
  .hero-copy .lead { font-size: 1.05rem; }
  .hero-art { min-height: 430px; }
  .hero-art .frame { inset: 1.2rem .8rem 0 .8rem; }
  .hero-art .seal { width: 92px; right: .2rem; }
  .hero-art .seal span { max-width: 65px; font-size: .58rem; }
  .hero-art .mini-card { bottom: 1.2rem; left: .2rem; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { min-height: 90px; border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: 0; }
  .section-head { align-items: start; flex-direction: column; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card.large, .service-card.small, .service-card.half { grid-column: 1; min-height: 0; }
  .service-card { padding: 1.45rem; }
  .service-card h3 { margin-top: 2.2rem; }
  .service-card .text-link { padding-top: 1.15rem; }
  .detail-grid { grid-template-columns: 1fr; }
  .detail-card.full { grid-column: auto; }
  .hours-row { font-size: .86rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .mobile-call {
    position: fixed;
    left: .75rem;
    right: .75rem;
    bottom: max(.75rem, env(safe-area-inset-bottom));
    z-index: 950;
    display: flex;
  }
  .mobile-call .btn { width: 100%; box-shadow: 0 12px 32px rgba(61,23,48,.28); }
  body { padding-bottom: 68px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .001ms !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; }
}
