:root {
  --ink: #171310;
  --ink-soft: #29231f;
  --paper: #f6f1e8;
  --paper-2: #eee5d7;
  --gold: #b98b32;
  --gold-light: #ead081;
  --gold-dark: #80581c;
  --white: #fffdf9;
  --muted: #746b62;
  --line: rgba(23, 19, 16, 0.14);
  --line-dark: rgba(255, 255, 255, 0.12);
  --success: #1f7a4c;
  --shadow: 0 24px 70px rgba(35, 26, 17, 0.12);
  --shadow-soft: 0 16px 42px rgba(35, 26, 17, 0.09);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open { overflow: hidden; }

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

a { color: inherit; text-decoration: none; }

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

button, a { -webkit-tap-highlight-color: transparent; }

::selection { color: var(--ink); background: var(--gold-light); }

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: currentColor;
}

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

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

h1 { font-size: clamp(3rem, 7vw, 6.7rem); }
h2 { font-size: clamp(2.25rem, 4vw, 4rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.72rem); }

p { color: var(--muted); }

.section { padding: 112px 0; }
.section--compact { padding: 76px 0; }
.section--dark { color: var(--white); background: var(--ink); }
.section--dark p { color: rgba(255,255,255,.67); }
.section--paper-2 { background: var(--paper-2); }

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.55fr);
  gap: 56px;
  align-items: end;
  margin-bottom: 52px;
}

.section-heading h2 { max-width: 780px; margin-bottom: 0; }
.section-heading p { max-width: 520px; margin-bottom: 3px; }
.section-heading--single { display: block; }
.section-heading--single p { max-width: 680px; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -70px;
  z-index: 9999;
  padding: 12px 18px;
  border-radius: 10px;
  color: var(--white);
  background: var(--ink);
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled {
  background: rgba(246, 241, 232, 0.92);
  border-color: var(--line);
  box-shadow: 0 10px 38px rgba(38, 28, 18, .07);
  backdrop-filter: blur(16px);
}

.navbar {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo { width: 245px; flex: 0 0 auto; display: block; }
.logo img { display: block; width: 100%; height: auto; max-height: 72px; object-fit: contain; object-position: left center; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  position: relative;
  font-size: .92rem;
  font-weight: 700;
}

.nav-links a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 2px;
  background: var(--gold);
  transition: right .22s ease;
}
.nav-links a:not(.button):hover::after,
.nav-links a[aria-current="page"]::after { right: 0; }

.mobile-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
}
.mobile-toggle span,
.mobile-toggle::before,
.mobile-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}
.mobile-toggle.is-active span { opacity: 0; }
.mobile-toggle.is-active::before { transform: translateY(6px) rotate(45deg); }
.mobile-toggle.is-active::after { transform: translateY(-6px) rotate(-45deg); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .92rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button--gold {
  color: #17110a;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 14px 34px rgba(146, 98, 28, .22);
}
.button--gold:hover { box-shadow: 0 18px 42px rgba(146, 98, 28, .30); }
.button--dark { color: var(--white); background: var(--ink); }
.button--outline { color: var(--ink); border-color: rgba(23,19,16,.35); background: transparent; }
.button--light-outline { color: var(--white); border-color: rgba(255,255,255,.38); background: transparent; }
.button svg { width: 18px; height: 18px; }

.hero {
  position: relative;
  min-height: 880px;
  padding: 160px 0 82px;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 22%, rgba(218, 178, 93, .24), transparent 31%),
    radial-gradient(circle at 76% 88%, rgba(144, 88, 30, .12), transparent 32%),
    linear-gradient(135deg, #f8f4ec 0%, #f0e5d5 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(126, 81, 25, .18);
  border-radius: 50%;
  pointer-events: none;
}
.hero::before { width: 680px; height: 680px; right: -140px; top: 90px; }
.hero::after { width: 480px; height: 480px; right: -40px; top: 190px; }

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .75fr);
  align-items: center;
  gap: 74px;
}

.hero-copy h1 { max-width: 800px; margin-bottom: 26px; }
.hero-copy h1 em { color: var(--gold-dark); font-style: italic; font-weight: 500; }
.hero-copy > p:not(.eyebrow) { max-width: 650px; font-size: 1.12rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 36px 0 44px; }

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 30px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.hero-meta-item { display: flex; align-items: flex-start; gap: 11px; max-width: 280px; }
.hero-meta-item svg { width: 21px; flex: 0 0 auto; margin-top: 3px; color: var(--gold-dark); }
.hero-meta-item strong { display: block; font-size: .86rem; }
.hero-meta-item span { display: block; color: var(--muted); font-size: .82rem; }

.hero-art {
  position: relative;
  min-height: 610px;
  display: grid;
  place-items: center;
}

.hero-card-main {
  position: relative;
  z-index: 2;
  width: min(100%, 430px);
  min-height: 570px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 220px 220px 34px 34px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(255,255,255,.04), transparent 36%),
    radial-gradient(circle at 50% 17%, rgba(218, 178, 93, .28), transparent 22%),
    #171310;
  box-shadow: var(--shadow);
}

.hero-card-main::before {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(233, 202, 128, .35);
  border-radius: 190px 190px 22px 22px;
}

.barber-visual {
  position: absolute;
  inset: 54px 42px 42px;
  display: grid;
  place-items: center;
}

.barber-pole {
  width: 106px;
  height: 310px;
  position: relative;
  overflow: hidden;
  border: 9px solid #d9b85f;
  border-radius: 60px;
  background: repeating-linear-gradient(-35deg, #ece6dd 0 27px, #8d1e23 27px 54px, #26384f 54px 81px);
  box-shadow: inset 0 0 22px rgba(0,0,0,.25), 0 20px 50px rgba(0,0,0,.34);
}
.barber-pole::before,
.barber-pole::after {
  content: "";
  position: absolute;
  left: -17px;
  width: 122px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(180deg, #f0d68e, #9d7221);
}
.barber-pole::before { top: -9px; }
.barber-pole::after { bottom: -9px; }

.scissors-mark {
  position: absolute;
  width: 190px;
  height: 190px;
  color: rgba(244, 214, 139, .92);
  transform: translate(92px, 140px) rotate(-18deg);
  filter: drop-shadow(0 12px 20px rgba(0,0,0,.35));
}

.hero-card-label {
  position: absolute;
  left: 38px;
  right: 38px;
  bottom: 39px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
}
.hero-card-label p { margin: 0; color: rgba(255,255,255,.58); font-size: .8rem; text-transform: uppercase; letter-spacing: .15em; }
.hero-card-label strong { font-family: Georgia, "Times New Roman", serif; font-size: 1.65rem; }
.hero-card-label span { color: var(--gold-light); font-size: .82rem; }

.floating-badge {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 15px 18px;
  border: 1px solid rgba(23,19,16,.09);
  border-radius: 16px;
  background: rgba(255, 253, 249, .9);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
}
.floating-badge svg { width: 22px; color: var(--gold-dark); }
.floating-badge strong { display: block; font-size: .84rem; }
.floating-badge span { display: block; color: var(--muted); font-size: .75rem; }
.floating-badge--top { top: 94px; left: -46px; }
.floating-badge--bottom { right: -38px; bottom: 102px; }

.hero-photo-card {
  position: relative;
  z-index: 2;
  width: min(100%, 470px);
  min-height: 610px;
  margin: 0;
  overflow: hidden;
  border: 10px solid rgba(255, 253, 249, .78);
  border-radius: 235px 235px 34px 34px;
  background: var(--ink);
  box-shadow: var(--shadow);
}
.hero-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23,19,16,.04) 38%, rgba(23,19,16,.94) 100%);
  pointer-events: none;
}
.hero-photo-card img {
  width: 100%;
  height: 610px;
  object-fit: cover;
  object-position: 52% center;
  filter: saturate(.9) contrast(1.03);
}
.hero-photo-card figcaption {
  position: absolute;
  z-index: 2;
  left: 34px;
  right: 34px;
  bottom: 32px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  color: var(--white);
}
.hero-photo-card figcaption p {
  margin: 0;
  color: rgba(255,255,255,.65);
  font-size: .8rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.hero-photo-card figcaption strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
}
.hero-photo-card figcaption span {
  color: var(--gold-light);
  font-size: .82rem;
}

.gallery-section { background: var(--ink); color: var(--white); }
.gallery-section .eyebrow { color: var(--gold-light); }
.gallery-section .section-heading p { color: rgba(255,255,255,.62); }
.gallery-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  grid-template-rows: repeat(2, minmax(250px, 1fr));
  gap: 18px;
}
.gallery-card {
  position: relative;
  min-height: 300px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md);
  background: #26201b;
}
.gallery-card--tall { grid-row: 1 / 3; min-height: 620px; }
.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(16,13,11,.9) 100%);
  pointer-events: none;
}
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s cubic-bezier(.2,.7,.2,1), filter .4s ease;
}
.gallery-card--tall img { object-position: 48% center; }
.gallery-card:hover img { transform: scale(1.045); filter: saturate(1.05); }
.gallery-card figcaption {
  position: absolute;
  z-index: 2;
  left: 26px;
  right: 26px;
  bottom: 24px;
  color: var(--white);
}
.gallery-card figcaption strong {
  display: block;
  margin-bottom: 3px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}
.gallery-card figcaption span { color: rgba(255,255,255,.64); font-size: .86rem; }

.trust-strip {
  position: relative;
  z-index: 4;
  margin-top: -1px;
  color: var(--white);
  background: var(--ink);
}
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 28px 26px; border-right: 1px solid var(--line-dark); }
.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; margin-bottom: 3px; font-family: Georgia, "Times New Roman", serif; font-size: 1.2rem; }
.trust-item span { color: rgba(255,255,255,.56); font-size: .82rem; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 330px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.38);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.service-card:hover { transform: translateY(-7px); background: var(--white); box-shadow: var(--shadow-soft); }
.service-number { color: var(--gold-dark); font-size: .78rem; font-weight: 900; letter-spacing: .14em; }
.service-icon {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  margin: 46px 0 30px;
  border-radius: 50%;
  color: var(--gold-dark);
  background: rgba(185,139,50,.12);
}
.service-icon svg { width: 29px; height: 29px; }
.service-card h3 { margin-bottom: 13px; }
.service-card p { margin-bottom: 0; }

.split-grid {
  display: grid;
  grid-template-columns: minmax(340px, .9fr) minmax(0, 1.1fr);
  gap: 74px;
  align-items: center;
}

.about-visual {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #1b1714;
  box-shadow: var(--shadow);
}
.about-visual::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(18,14,11,.04) 25%, rgba(18,14,11,.96) 100%);
  pointer-events: none;
}
.about-visual > img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  filter: saturate(.82) contrast(1.04);
}
.about-visual-inner {
  position: absolute;
  z-index: 2;
  inset: auto 38px 38px;
  color: var(--white);
}
.about-visual-inner p { max-width: 400px; margin-bottom: 0; color: rgba(255,255,255,.62); }
.about-visual-seal {
  position: absolute;
  z-index: 2;
  top: 38px;
  right: 38px;
  width: 116px;
  height: 116px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(233,202,128,.45);
  border-radius: 50%;
  color: var(--gold-light);
  font-size: .7rem;
  font-weight: 800;
  text-align: center;
  letter-spacing: .12em;
  text-transform: uppercase;
  transform: rotate(8deg);
}

.feature-list { display: grid; gap: 2px; margin-top: 34px; }
.feature-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 21px 0;
  border-bottom: 1px solid var(--line);
}
.feature-item:first-child { border-top: 1px solid var(--line); }
.feature-item span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--gold-dark);
  background: rgba(185,139,50,.12);
  font-size: .82rem;
  font-weight: 900;
}
.feature-item h3 { margin: 0 0 6px; font-size: 1.17rem; }
.feature-item p { margin: 0; font-size: .92rem; }

.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-dark); }
.step-card { min-height: 270px; padding: 40px; background: var(--ink); }
.step-card span { color: var(--gold-light); font-size: .8rem; font-weight: 900; letter-spacing: .15em; }
.step-card h3 { margin: 42px 0 14px; color: var(--white); }

.location-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(340px, 1.1fr);
  gap: 28px;
}
.location-card,
.booking-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}
.location-card { padding: 44px; }
.contact-list { display: grid; gap: 20px; margin: 34px 0; }
.contact-item { display: grid; grid-template-columns: 44px 1fr; gap: 14px; align-items: start; }
.contact-item-icon { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; color: var(--gold-dark); background: rgba(185,139,50,.11); }
.contact-item-icon svg { width: 20px; }
.contact-item strong { display: block; font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; }
.contact-item a, .contact-item span { color: var(--muted); }
.contact-item a:hover { color: var(--gold-dark); }
.map-panel {
  min-height: 240px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: end;
  overflow: hidden;
  padding: 26px;
  border-radius: 18px;
  color: var(--white);
  background:
    linear-gradient(180deg, transparent, rgba(17,13,10,.9)),
    repeating-linear-gradient(35deg, rgba(255,255,255,.05) 0 2px, transparent 2px 34px),
    #2a2520;
}
.map-panel::before,
.map-panel::after { content: ""; position: absolute; border-radius: 50%; border: 2px solid rgba(233,202,128,.30); }
.map-panel::before { width: 280px; height: 280px; top: -135px; right: -45px; }
.map-panel::after { width: 140px; height: 140px; top: -65px; right: 25px; }
.map-pin { width: 50px; height: 50px; display: grid; place-items: center; margin-bottom: 18px; border-radius: 50%; color: #17110a; background: var(--gold-light); }
.map-pin svg { width: 23px; }
.map-panel strong, .map-panel span, .map-panel a { position: relative; z-index: 1; }
.map-panel span { color: rgba(255,255,255,.62); font-size: .88rem; }
.map-panel a { width: fit-content; margin-top: 12px; color: var(--gold-light); font-weight: 800; font-size: .9rem; }

.booking-card { padding: 44px; color: var(--white); background: var(--ink); }
.booking-card .eyebrow { color: var(--gold-light); }
.booking-card p { color: rgba(255,255,255,.62); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 30px; }
.form-field { display: grid; gap: 7px; }
.form-field--full { grid-column: 1 / -1; }
.form-field label { font-size: .78rem; font-weight: 800; color: rgba(255,255,255,.82); }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 12px;
  color: var(--white);
  background: rgba(255,255,255,.065);
  outline: none;
  transition: border-color .2s ease, background .2s ease;
}
.form-field input,
.form-field select { height: 52px; padding: 0 15px; }
.form-field textarea { min-height: 112px; padding: 13px 15px; resize: vertical; }
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(255,255,255,.35); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--gold-light); background: rgba(255,255,255,.09); }
.form-field select option { color: var(--ink); }
.form-note { margin: 16px 0 0; font-size: .78rem; }
.form-note a { color: var(--gold-light); text-decoration: underline; }
.form-status { min-height: 24px; margin: 14px 0 0; color: var(--gold-light); font-size: .84rem; }

.cta-banner {
  position: relative;
  overflow: hidden;
  padding: 76px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background: linear-gradient(135deg, #171310, #2f261e);
  box-shadow: var(--shadow);
}
.cta-banner::before { content: ""; position: absolute; width: 420px; height: 420px; right: -110px; top: -230px; border: 1px solid rgba(233,202,128,.28); border-radius: 50%; }
.cta-banner-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; }
.cta-banner h2 { margin-bottom: 12px; }
.cta-banner p { max-width: 650px; margin-bottom: 0; color: rgba(255,255,255,.63); }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end; }

.site-footer { padding: 70px 0 28px; color: var(--white); background: #100d0b; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .7fr .8fr; gap: 70px; padding-bottom: 48px; }
.footer-logo { display: block; width: 270px; height: auto; padding: 10px 14px; border-radius: 14px; background: rgba(255,255,255,.96); box-shadow: 0 12px 34px rgba(0,0,0,.18); }
.footer-about { max-width: 430px; margin: 22px 0 0; color: rgba(255,255,255,.56); }
.footer-title { margin-bottom: 18px; color: var(--gold-light); font-size: .76rem; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.footer-links { display: grid; gap: 11px; }
.footer-links a, .footer-links span { color: rgba(255,255,255,.62); font-size: .91rem; }
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 24px; border-top: 1px solid var(--line-dark); color: rgba(255,255,255,.42); font-size: .8rem; }

.whatsapp-float {
  position: fixed;
  z-index: 900;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: #1f9d57;
  box-shadow: 0 18px 38px rgba(21, 113, 62, .32);
  transition: transform .2s ease;
}
.whatsapp-float:hover { transform: translateY(-4px) scale(1.03); }
.whatsapp-float svg { width: 28px; }

/* Legal pages */
.legal-hero {
  padding: 180px 0 76px;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 20%, rgba(218,178,93,.18), transparent 28%),
    var(--ink);
}
.legal-hero .eyebrow { color: var(--gold-light); }
.legal-hero h1 { max-width: 900px; font-size: clamp(3rem, 6vw, 5.6rem); margin-bottom: 20px; }
.legal-hero p { max-width: 720px; color: rgba(255,255,255,.62); }
.legal-meta { display: flex; flex-wrap: wrap; gap: 12px 28px; margin-top: 28px; color: rgba(255,255,255,.48); font-size: .84rem; }

.legal-layout { display: grid; grid-template-columns: 260px minmax(0, 1fr); gap: 70px; align-items: start; }
.legal-toc {
  position: sticky;
  top: 118px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.45);
}
.legal-toc strong { display: block; margin-bottom: 15px; font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; }
.legal-toc nav { display: grid; gap: 9px; }
.legal-toc a { color: var(--muted); font-size: .88rem; }
.legal-toc a:hover { color: var(--gold-dark); }
.legal-content { max-width: 820px; }
.legal-content section { scroll-margin-top: 120px; padding: 0 0 38px; margin-bottom: 38px; border-bottom: 1px solid var(--line); }
.legal-content section:last-child { border-bottom: 0; }
.legal-content h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); }
.legal-content h3 { margin: 30px 0 10px; font-size: 1.25rem; }
.legal-content p, .legal-content li { color: #5f5750; }
.legal-content ul { padding-left: 20px; }
.legal-callout { padding: 22px 24px; border-left: 4px solid var(--gold); border-radius: 0 14px 14px 0; background: rgba(185,139,50,.10); }
.legal-callout p { margin: 0; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

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

@media (max-width: 980px) {
  .section { padding: 88px 0; }
  .nav-links {
    position: fixed;
    inset: 88px 0 auto;
    display: grid;
    gap: 0;
    padding: 16px 20px 26px;
    background: rgba(246,241,232,.98);
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    visibility: hidden;
    opacity: 0;
    transition: transform .25s ease, opacity .25s ease, visibility .25s ease;
  }
  .nav-links.is-open { transform: translateY(0); visibility: visible; opacity: 1; }
  .nav-links li { border-bottom: 1px solid var(--line); }
  .nav-links li:last-child { border-bottom: 0; padding-top: 14px; }
  .nav-links a { display: block; padding: 16px 4px; }
  .nav-links .button { display: inline-flex; width: 100%; }
  .mobile-toggle { display: block; }
  .hero { min-height: auto; }
  .hero-grid, .split-grid, .location-grid { grid-template-columns: 1fr; }
  .hero-art { min-height: 610px; margin-top: 10px; }
  .floating-badge--top { left: 10px; }
  .floating-badge--bottom { right: 4px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line-dark); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: .9fr 1.1fr; }
  .section-heading { grid-template-columns: 1fr; gap: 20px; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-card { min-height: auto; }
  .cta-banner-inner { grid-template-columns: 1fr; }
  .cta-actions { justify-content: flex-start; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .legal-layout { grid-template-columns: 1fr; gap: 40px; }
  .legal-toc { position: static; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .navbar { min-height: 76px; }
  .logo { width: 205px; }
  .nav-links { inset: 76px 0 auto; }
  .hero { padding-top: 126px; }
  .hero-copy h1 { font-size: clamp(2.9rem, 15vw, 4.8rem); }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-art { min-height: 520px; }
  .hero-card-main { min-height: 490px; border-radius: 180px 180px 28px 28px; }
  .hero-photo-card { min-height: 500px; border-width: 7px; border-radius: 180px 180px 28px 28px; }
  .hero-photo-card img { height: 500px; }
  .hero-photo-card figcaption { left: 24px; right: 24px; bottom: 24px; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery-card, .gallery-card--tall { grid-row: auto; min-height: 360px; }
  .gallery-card--tall { min-height: 520px; }
  .about-visual > img { height: 500px; }
  .hero-card-main::before { inset: 21px; }
  .barber-pole { width: 86px; height: 260px; }
  .scissors-mark { width: 150px; transform: translate(72px, 118px) rotate(-18deg); }
  .hero-card-label { left: 26px; right: 26px; bottom: 28px; }
  .floating-badge { padding: 11px 13px; }
  .floating-badge--top { top: 52px; left: -4px; }
  .floating-badge--bottom { right: -3px; bottom: 64px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .trust-item:last-child { border-bottom: 0; }
  .services-grid, .form-grid { grid-template-columns: 1fr; }
  .form-field--full { grid-column: auto; }
  .service-card { min-height: 290px; }
  .about-visual { min-height: 500px; }
  .about-visual::before { font-size: 6rem; }
  .location-card, .booking-card { padding: 28px; }
  .cta-banner { padding: 45px 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid > div:first-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .legal-hero { padding-top: 140px; }
  .legal-toc { padding: 20px; }
}
