:root {
  --cream: #f6f0e7;
  --cream-deep: #e9ddcf;
  --paper: #fffdf9;
  --charcoal: #272421;
  --charcoal-soft: #49433e;
  --copper: #a86443;
  --copper-dark: #825039;
  --line: #d8cabe;
  --muted: #746c65;
  --success: #315f49;
  --error: #9a342c;
  --shadow: 0 18px 45px rgba(39, 36, 33, .1);
  --radius: 4px;
  --container: 1180px;
}

* { box-sizing: border-box; }

html { max-width: 100%; overflow-x: hidden; scroll-behavior: smooth; }

body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  color: var(--charcoal);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

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

a { color: inherit; text-underline-offset: .18em; }

button, input, select, textarea { font: inherit; }

button, select { cursor: pointer; }

address { font-style: normal; }

h1, h2, h3, p { margin-top: 0; }

h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.025em;
}

h1 { font-size: clamp(2.8rem, 5vw, 5.15rem); }
h2 { font-size: clamp(2.15rem, 3.6vw, 3.85rem); }
h3 { font-size: 1.55rem; }

:focus-visible {
  outline: 3px solid rgba(168, 100, 67, .5);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: .7rem 1rem;
  color: white;
  background: var(--charcoal);
  transform: translateY(-150%);
}

.skip-link:focus { transform: translateY(0); }

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

.section { padding: 104px 0; }

.eyebrow {
  margin-bottom: 18px;
  color: var(--copper-dark);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: .85rem 1.4rem;
  border: 1px solid var(--charcoal);
  border-radius: var(--radius);
  color: white;
  background: var(--charcoal);
  font-size: .91rem;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background-color .2s ease, color .2s ease, transform .2s ease;
}

.button:hover { background: var(--copper-dark); border-color: var(--copper-dark); }
.button:active { transform: translateY(1px); }
.button-small { min-height: 44px; padding: .7rem 1.05rem; }
.button-outline { color: var(--charcoal); background: transparent; }

.text-link,
.text-button {
  display: inline-flex;
  gap: .6rem;
  align-items: center;
  border: 0;
  padding: .35rem 0;
  color: var(--charcoal);
  background: transparent;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--copper);
  text-decoration-thickness: 2px;
  text-underline-offset: .35rem;
}

.text-button.light { color: white; }
.text-link:hover span, .text-button:hover span { transform: translateX(3px); }
.text-link span, .text-button span { transition: transform .2s ease; }

.topbar { color: white; background: var(--charcoal); }

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  font-size: .78rem;
  letter-spacing: .055em;
}

.topbar p { margin: 0; }
.topbar a { font-weight: 800; text-decoration: none; }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(39, 36, 33, .12);
  background: rgba(255, 253, 249, .96);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  gap: .8rem;
  align-items: center;
  color: var(--charcoal);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  aspect-ratio: 1;
  border: 1px solid var(--copper);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: .78rem;
  letter-spacing: .06em;
}

.brand strong, .brand small { display: block; }
.brand strong { font-family: Georgia, serif; font-size: 1.18rem; font-weight: 500; letter-spacing: .015em; }
.brand small { margin-top: .12rem; color: var(--muted); font-size: .64rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }

.main-nav { display: flex; gap: 1.9rem; align-items: center; }
.main-nav > a:not(.button) { font-size: .87rem; font-weight: 700; text-decoration: none; }
.main-nav > a:not(.button):hover { color: var(--copper-dark); }

.menu-toggle {
  display: none;
  align-items: center;
  gap: .65rem;
  border: 0;
  padding: .55rem;
  color: var(--charcoal);
  background: transparent;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.menu-icon { position: relative; }
.menu-icon::before, .menu-icon::after { position: absolute; left: 0; content: ""; }
.menu-icon::before { top: -7px; }
.menu-icon::after { top: 7px; }
.menu-toggle[aria-expanded="true"] .menu-icon { background: transparent; }
.menu-toggle[aria-expanded="true"] .menu-icon::before { top: 0; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-icon::after { top: 0; transform: rotate(-45deg); }

.hero { overflow: hidden; background: var(--cream); }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  min-height: 670px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 78px 74px 82px 0;
}

.hero-copy h1 { max-width: 710px; margin-bottom: 26px; }
.hero-lead { max-width: 620px; margin-bottom: 34px; color: var(--charcoal-soft); font-size: 1.11rem; }
.hero-actions { display: flex; gap: 1.5rem; align-items: center; margin-bottom: 48px; }

.hero-reassurance {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.hero-reassurance strong, .hero-reassurance span { display: block; }
.hero-reassurance strong { margin-bottom: .15rem; font-size: .82rem; }
.hero-reassurance span { color: var(--muted); font-size: .72rem; line-height: 1.45; }

.hero-media {
  position: relative;
  min-height: 670px;
  margin-right: calc((100vw - min(100vw - 40px, var(--container))) / -2);
  background: var(--charcoal);
}

.hero-media > img { width: 100%; height: 100%; object-fit: cover; }

.hero-card {
  position: absolute;
  right: clamp(20px, 5vw, 72px);
  bottom: 34px;
  width: min(320px, calc(100% - 40px));
  padding: 22px 24px;
  border-left: 4px solid var(--copper);
  background: rgba(255, 253, 249, .95);
  box-shadow: var(--shadow);
}

.hero-card span, .hero-card strong { display: block; }
.hero-card span { color: var(--muted); font-size: .7rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.hero-card strong { margin: .25rem 0 .65rem; font-family: Georgia, serif; font-size: 1.25rem; font-weight: 500; }
.hero-card a { color: var(--copper-dark); font-size: .79rem; font-weight: 800; }

.promise-strip { color: white; background: var(--charcoal); }
.promise-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.promise-grid > div { display: flex; gap: 1rem; align-items: flex-start; min-height: 138px; padding: 35px 34px; border-left: 1px solid rgba(255,255,255,.13); }
.promise-grid > div:last-child { border-right: 1px solid rgba(255,255,255,.13); }
.promise-grid span { color: #d4936f; font-family: Georgia, serif; font-size: .92rem; }
.promise-grid p { margin: 0; color: rgba(255,255,255,.72); font-size: .84rem; }
.promise-grid strong { display: block; margin-bottom: .2rem; color: white; font-family: Georgia, serif; font-size: 1.2rem; font-weight: 500; }

.section-heading { margin-bottom: 52px; }
.section-heading h2 { margin-bottom: 0; }
.heading-split { display: grid; grid-template-columns: 1.2fr .8fr; gap: 80px; align-items: end; }
.heading-split > p { max-width: 470px; margin-bottom: .3rem; color: var(--muted); }
.centered { max-width: 760px; margin-right: auto; margin-left: auto; text-align: center; }

.services-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 72px; align-items: start; }
.service-image { position: sticky; top: 120px; }
.service-image img { width: 100%; aspect-ratio: 4 / 4.8; object-fit: cover; }
.service-image p { margin: 0; padding: 24px 26px; color: white; background: var(--copper-dark); font-size: .9rem; }
.service-image strong { font-family: Georgia, serif; font-size: 1.15rem; font-weight: 500; }
.price-list { border-top: 1px solid var(--line); }
.price-item { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; padding: 24px 0; border-bottom: 1px solid var(--line); }
.price-item h3 { margin-bottom: .35rem; font-size: 1.35rem; }
.price-item p { margin: 0; color: var(--muted); font-size: .84rem; }
.price-item > strong { color: var(--copper-dark); font-family: Georgia, serif; font-size: 1.22rem; font-weight: 500; white-space: nowrap; }

.needs { background: var(--cream); }
.needs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 980px; margin: 0 auto; }
.need-card { position: relative; min-height: 330px; padding: 45px; border: 1px solid var(--line); background: var(--paper); }
.need-card-dark { color: white; background: var(--charcoal); }
.need-number { display: block; margin-bottom: 48px; color: var(--copper); font-family: Georgia, serif; }
.need-card h3 { margin-bottom: 18px; font-size: 2rem; }
.need-card p { max-width: 390px; margin-bottom: 28px; color: var(--muted); }
.need-card-dark p { color: rgba(255,255,255,.7); }

.gallery-grid { display: grid; grid-template-columns: 1.35fr .65fr; grid-template-rows: repeat(2, 280px); gap: 18px; }
.gallery-grid figure { position: relative; overflow: hidden; margin: 0; background: var(--cream-deep); }
.gallery-grid .gallery-wide { grid-row: 1 / 3; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.gallery-grid figure:hover img { transform: scale(1.015); }
.gallery-grid figcaption { position: absolute; right: 16px; bottom: 14px; padding: .35rem .65rem; color: white; background: rgba(39,36,33,.84); font-size: .72rem; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
.gallery-grid figure:nth-child(1) img { object-position: 61% center; }
.gallery-grid figure:nth-child(2) img { object-position: 55% center; }

.team { background: var(--charcoal); color: white; }
.team-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 76px; align-items: center; }
.team-photo img { width: 100%; min-height: 610px; object-fit: cover; object-position: center; }
.team-content .eyebrow { color: #d4936f; }
.team-content h2 { max-width: 570px; margin-bottom: 24px; }
.team-intro { margin-bottom: 35px; color: rgba(255,255,255,.72); }
.team-list { margin: 0; padding: 0; border-top: 1px solid rgba(255,255,255,.16); list-style: none; }
.team-list li { display: grid; grid-template-columns: 145px 1fr; gap: 24px; padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,.16); }
.team-list strong, .team-list span { display: block; }
.team-list strong { font-family: Georgia, serif; font-size: 1.17rem; font-weight: 500; }
.team-list span { color: #d4936f; font-size: .67rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.team-list p { margin: 0; color: rgba(255,255,255,.66); font-size: .84rem; }

.reviews { background: var(--cream); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.reviews blockquote { margin: 0; padding: 34px; border: 1px solid var(--line); background: var(--paper); }
.stars { margin-bottom: 18px; color: var(--copper); font-size: .82rem; letter-spacing: .12em; }
.reviews blockquote p { min-height: 150px; margin-bottom: 24px; font-family: Georgia, serif; font-size: 1.19rem; line-height: 1.55; }
.reviews cite { color: var(--muted); font-size: .75rem; font-style: normal; font-weight: 750; }

.salon-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.salon-copy h2 { margin-bottom: 28px; }
.salon-copy address { margin-bottom: 18px; font-family: Georgia, serif; font-size: 1.45rem; line-height: 1.45; }
.salon-copy > p:not(.eyebrow) { color: var(--muted); }
.contact-links { display: flex; flex-direction: column; align-items: flex-start; margin-top: 28px; }
.contact-links a { color: var(--copper-dark); font-weight: 800; }
.hours-card { padding: 45px; border-top: 4px solid var(--copper); background: var(--cream); box-shadow: var(--shadow); }
.hours-card h3 { margin-bottom: 25px; font-size: 2rem; }
.hours-card dl { margin: 0 0 24px; }
.hours-card dl div { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--line); }
.hours-card dt { color: var(--muted); }
.hours-card dd { margin: 0; font-weight: 750; }
.hours-card p { margin: 0; color: var(--muted); font-size: .8rem; }

.booking { background: var(--cream); }
.booking-wrap { display: grid; grid-template-columns: .65fr 1.35fr; gap: 72px; align-items: start; }
.booking-intro { position: sticky; top: 120px; }
.booking-intro h2 { margin-bottom: 24px; }
.booking-intro > p { color: var(--charcoal-soft); }
.booking-intro ul { margin: 30px 0; padding: 0; list-style: none; }
.booking-intro li { display: flex; gap: .7rem; margin-bottom: .7rem; font-size: .85rem; }
.booking-intro li span { color: var(--success); font-weight: 900; }
.booking-call { padding-top: 24px; border-top: 1px solid var(--line); font-size: .85rem; }
.booking-call a { color: var(--copper-dark); font-weight: 800; }

.booking-form { padding: 42px; background: var(--paper); box-shadow: var(--shadow); }
.form-step { margin-bottom: 35px; padding-bottom: 35px; border-bottom: 1px solid var(--line); }
.form-step-title { display: flex; gap: 14px; align-items: center; margin-bottom: 24px; }
.form-step-title > span { display: grid; place-items: center; width: 32px; height: 32px; border-radius: 50%; color: white; background: var(--copper-dark); font-size: .75rem; font-weight: 800; }
.form-step-title h3 { margin: 0; font-size: 1.5rem; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.field { display: flex; flex-direction: column; gap: .45rem; color: var(--charcoal-soft); font-size: .78rem; font-weight: 750; }
.field-wide { grid-column: 1 / -1; }
.field-date { max-width: 310px; margin-bottom: 22px; }
.optional { color: var(--muted); font-weight: 500; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #bcb0a7;
  border-radius: 2px;
  padding: .72rem .8rem;
  color: var(--charcoal);
  background: white;
}
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--copper-dark); outline: 3px solid rgba(168,100,67,.16); }
.field [aria-invalid="true"] { border-color: var(--error); }
.slot-fieldset { margin: 0; padding: 0; border: 0; }
.slot-fieldset legend { margin-bottom: .55rem; color: var(--charcoal-soft); font-size: .78rem; font-weight: 750; }
.slots { display: grid; grid-template-columns: repeat(4, 1fr); gap: 9px; }
.slot-help { grid-column: 1 / -1; margin: 0; color: var(--muted); font-size: .83rem; }
.slot { position: relative; }
.slot input { position: absolute; opacity: 0; pointer-events: none; }
.slot span { display: block; border: 1px solid var(--line); padding: .63rem .4rem; background: white; font-size: .78rem; font-weight: 750; text-align: center; }
.slot input:checked + span { border-color: var(--charcoal); color: white; background: var(--charcoal); }
.slot input:focus-visible + span { outline: 3px solid rgba(168,100,67,.5); outline-offset: 2px; }
.consent { display: grid; grid-template-columns: auto 1fr; gap: .7rem; align-items: start; color: var(--muted); font-size: .74rem; line-height: 1.5; }
.consent input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--copper-dark); }
.consent a { color: var(--charcoal); }
.form-error { margin-bottom: 18px; padding: 12px 14px; border-left: 3px solid var(--error); color: var(--error); background: #fff0ee; font-size: .82rem; }
.booking-summary { display: grid; grid-template-columns: 1fr auto; gap: 28px; margin-bottom: 22px; padding: 18px 20px; background: var(--cream); }
.booking-summary div:last-child { text-align: right; }
.booking-summary span, .booking-summary strong { display: block; }
.booking-summary span { color: var(--muted); font-size: .67rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.booking-summary strong { margin-top: .15rem; font-family: Georgia, serif; font-size: 1.05rem; font-weight: 500; }
.submit-button { width: 100%; border-color: var(--copper-dark); background: var(--copper-dark); }
.form-note { margin: 12px 0 0; color: var(--muted); font-size: .72rem; text-align: center; }
.booking-confirmation { grid-column: 2; padding: 56px; border-top: 4px solid var(--success); background: var(--paper); box-shadow: var(--shadow); }
.confirmation-icon { display: grid; place-items: center; width: 52px; height: 52px; margin-bottom: 25px; border-radius: 50%; color: white; background: var(--success); font-size: 1.35rem; }
.booking-confirmation h3 { margin-bottom: 18px; font-size: 2.4rem; }
.booking-confirmation p:not(.eyebrow) { max-width: 650px; color: var(--charcoal-soft); }
.booking-confirmation .button { margin-top: 12px; }

.site-footer { width: 100%; color: rgba(255,255,255,.74); background: #1d1b19; }
.footer-main { display: grid; grid-template-columns: 1.25fr .9fr .85fr; gap: 70px; padding-top: 72px; padding-bottom: 58px; }
.brand-light { color: white; }
.brand-light small { color: rgba(255,255,255,.5); }
.footer-brand > p { max-width: 330px; margin: 22px 0 0; }
.footer-main h2 { margin: 0 0 18px; color: white; font-family: inherit; font-size: .69rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.footer-main address { margin-bottom: 12px; }
.footer-main > div:not(.footer-brand) a { display: block; width: fit-content; margin: .35rem 0; color: inherit; text-decoration: none; }
.footer-main a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 22px; padding-bottom: 25px; border-top: 1px solid rgba(255,255,255,.13); font-size: .72rem; }
.footer-bottom p { margin: 0; }
.footer-bottom nav { display: flex; gap: 22px; }
.footer-bottom a { text-decoration: none; }

.legal-main { background: var(--cream); }
.legal-hero { padding: 82px 0 58px; border-bottom: 1px solid var(--line); }
.legal-hero h1 { max-width: 850px; margin-bottom: 18px; }
.legal-hero p:last-child { max-width: 760px; margin-bottom: 0; color: var(--muted); }
.legal-layout { display: grid; grid-template-columns: 240px minmax(0, 760px); gap: 72px; padding-top: 70px; padding-bottom: 100px; }
.legal-nav { position: sticky; top: 118px; align-self: start; padding: 22px; border-left: 3px solid var(--copper); background: var(--paper); }
.legal-nav strong { display: block; margin-bottom: 12px; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }
.legal-nav a { display: block; margin: 7px 0; color: var(--muted); font-size: .8rem; }
.legal-nav a[aria-current="page"] { color: var(--charcoal); font-weight: 800; }
.legal-content { padding: 45px; background: var(--paper); }
.legal-content section { margin-bottom: 42px; scroll-margin-top: 120px; }
.legal-content section:last-child { margin-bottom: 0; }
.legal-content h2 { margin-bottom: 15px; font-size: 1.7rem; }
.legal-content h3 { margin: 24px 0 10px; font-family: inherit; font-size: .95rem; font-weight: 800; letter-spacing: 0; }
.legal-content p, .legal-content li { color: var(--charcoal-soft); font-size: .93rem; }
.legal-content ul { padding-left: 1.2rem; }
.legal-content a { color: var(--copper-dark); font-weight: 700; }
.legal-meta { margin-bottom: 30px; padding: 15px 18px; border-left: 3px solid var(--copper); background: var(--cream); color: var(--muted); font-size: .78rem; }

body > .site-footer,
body > [data-site-footer] { clear: both; width: 100%; }

@media (max-width: 1040px) {
  .hero-copy { padding-right: 42px; }
  .hero-reassurance { grid-template-columns: 1fr; gap: 10px; }
  .hero-reassurance li { display: grid; grid-template-columns: 115px 1fr; gap: 10px; }
  .services-layout, .team-grid, .booking-wrap { gap: 46px; }
  .reviews blockquote { padding: 27px; }
  .reviews blockquote p { min-height: 190px; }
}

@media (max-width: 860px) {
  .section { padding: 78px 0; }
  .topbar-inner p { display: none; }
  .topbar-inner { justify-content: flex-end; }
  .header-inner { min-height: 72px; }
  .menu-toggle { display: flex; }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    width: 100%;
    padding: 24px 20px 28px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    box-shadow: 0 18px 30px rgba(39,36,33,.12);
  }
  .main-nav.is-open { display: flex; flex-direction: column; align-items: stretch; gap: 0; }
  .main-nav > a { padding: 12px 4px; }
  .main-nav .button { margin-top: 12px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { padding: 65px 0 50px; }
  .hero-reassurance { grid-template-columns: repeat(3, 1fr); }
  .hero-reassurance li { display: block; }
  .hero-media { min-height: 540px; margin: 0 -20px; }
  .promise-grid { grid-template-columns: 1fr; }
  .promise-grid > div { min-height: auto; padding: 25px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.13); border-left: 0; }
  .promise-grid > div:last-child { border-right: 0; border-bottom: 0; }
  .heading-split { grid-template-columns: 1fr; gap: 22px; }
  .services-layout { grid-template-columns: 1fr; }
  .service-image { position: static; display: grid; grid-template-columns: 1fr 1fr; }
  .service-image img { aspect-ratio: 1; }
  .service-image p { display: flex; flex-direction: column; justify-content: center; }
  .gallery-grid { grid-template-rows: repeat(2, 230px); }
  .team-grid, .salon-grid { grid-template-columns: 1fr; }
  .team-photo img { min-height: 480px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews blockquote p { min-height: auto; }
  .booking-wrap { grid-template-columns: 1fr; }
  .booking-intro { position: static; }
  .booking-confirmation { grid-column: 1; }
  .footer-main { grid-template-columns: 1.2fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .legal-layout { grid-template-columns: 1fr; gap: 26px; }
  .legal-nav { position: static; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  .section { padding: 64px 0; }
  h1 { font-size: clamp(2.5rem, 13vw, 3.65rem); }
  h2 { font-size: clamp(2rem, 10vw, 2.85rem); }
  .brand small { display: none; }
  .hero-copy { padding-top: 52px; }
  .hero-lead { font-size: 1rem; }
  .hero-actions { flex-direction: column; align-items: stretch; margin-bottom: 38px; }
  .hero-actions .text-link { justify-content: center; }
  .hero-reassurance { grid-template-columns: 1fr; }
  .hero-reassurance li { display: grid; grid-template-columns: 125px 1fr; }
  .hero-media { min-height: 430px; margin: 0 -16px; }
  .hero-media > img { object-position: 62% center; }
  .hero-card { right: 16px; bottom: 16px; }
  .section-heading { margin-bottom: 35px; }
  .service-image { display: block; }
  .service-image img { aspect-ratio: 4 / 3; }
  .price-item { align-items: start; gap: 18px; padding: 20px 0; }
  .price-item h3 { font-size: 1.22rem; }
  .price-item p { font-size: .77rem; }
  .price-item > strong { font-size: 1.05rem; }
  .needs-grid { grid-template-columns: 1fr; }
  .need-card { min-height: 300px; padding: 34px 28px; }
  .need-number { margin-bottom: 35px; }
  .gallery-grid { display: grid; grid-template-columns: 1fr; grid-template-rows: 300px 220px 220px; }
  .gallery-grid .gallery-wide { grid-row: auto; }
  .team-grid { gap: 36px; }
  .team-photo img { min-height: 340px; aspect-ratio: 4 / 3; }
  .team-list li { grid-template-columns: 1fr; gap: 8px; }
  .salon-grid { gap: 36px; }
  .hours-card { padding: 30px 24px; }
  .booking-wrap { gap: 36px; }
  .booking-form { padding: 28px 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .field-wide { grid-column: auto; }
  .slots { grid-template-columns: repeat(3, 1fr); }
  .booking-summary { grid-template-columns: 1fr; gap: 12px; }
  .booking-summary div:last-child { text-align: left; }
  .booking-confirmation { padding: 36px 24px; }
  .booking-confirmation h3 { font-size: 2rem; }
  .footer-main { grid-template-columns: 1fr; gap: 38px; padding-top: 55px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .footer-bottom nav { flex-wrap: wrap; gap: 10px 18px; }
  .legal-hero { padding: 58px 0 42px; }
  .legal-layout { padding-top: 38px; padding-bottom: 64px; }
  .legal-content { padding: 30px 22px; }
}

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