[hidden] { display: none !important; }

:root {
  --paper: #f3f0e9;
  --paper-light: #faf8f3;
  --ink: #1d211b;
  --muted: #686b62;
  --olive: #303c2d;
  --olive-light: #8e9b83;
  --accent-strong: #20291e;
  --soft-surface: #ddd7cc;
  --soft-text: #1d211b;
  --soft-muted: #686b62;
  --footer: #1c251b;
  --light-text: #b8c0b1;
  --line: rgba(29, 33, 27, 0.16);
  --serif: Georgia, "Times New Roman", serif;
  --body-font: Arial, Helvetica, sans-serif;
  --radius: 0px;
  --button-radius: 0px;
  --button-height: 54px;
  --button-padding-x: 24px;
  --button-letter-spacing: 0;
  --display-weight: 400;
  --body-weight: 400;
  --hero-line-height: .87;
  --hero-line-height-desktop: .82;
  --hero-letter-spacing: -.045em;
  --hero-letter-spacing-desktop: -.055em;
  --hero-title-mobile: clamp(50px, 14.5vw, 60px);
  --hero-title-mobile-small: clamp(47px, 13.4vw, 51px);
  --hero-title-tablet: clamp(72px, 10vw, 88px);
  --hero-title-desktop: clamp(84px, 8.2vw, 126px);
  --section-title-size: clamp(38px, 9.6vw, 56px);
  --section-title-desktop: clamp(44px, 4.2vw, 64px);
  --hero-image-position: 56% center;
  --image-filter: none;
  --team-aspect: 4 / 5;
  --gallery-gap: 16px;
  --content-max: 1320px;
  --section-mobile: 80px;
  --section-tablet: 104px;
  --section-desktop: 128px;
}

:root[data-density="compact"] { --section-mobile: 72px; --section-tablet: 88px; --section-desktop: 104px; }
:root[data-density="regular"] { --section-mobile: 80px; --section-tablet: 104px; --section-desktop: 128px; }
:root[data-density="airy"] { --section-mobile: 88px; --section-tablet: 112px; --section-desktop: 136px; }

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

body.modal-open { overflow: hidden; }

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

button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
a { color: inherit; text-decoration: none; }

a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 2px solid #6f7d62;
  outline-offset: 4px;
}

.site-header {
  align-items: center;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto;
  height: 72px;
  padding: 0 20px;
  position: relative;
  z-index: 30;
}

.brand {
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  width: fit-content;
}

.desktop-nav, .header-book { display: none; }
.site-header .header-book { display: none; }

.menu-button {
  align-items: center;
  background: none;
  border: 0;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  gap: 12px;
  justify-self: end;
  min-height: 44px;
  padding: 0;
}

.menu-button-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
}

.menu-button-icon {
  display: block;
  height: 14px;
  position: relative;
  width: 24px;
}

.menu-button-icon i {
  background: var(--ink);
  display: block;
  height: 1px;
  position: absolute;
  right: 0;
  transition: top 180ms ease, transform 180ms ease, width 180ms ease;
}

.menu-button-icon i:first-child { top: 3px; width: 24px; }
.menu-button-icon i:last-child { top: 10px; width: 16px; }
.menu-button[aria-expanded="true"] .menu-button-icon i:first-child { top: 7px; transform: rotate(45deg); width: 22px; }
.menu-button[aria-expanded="true"] .menu-button-icon i:last-child { top: 7px; transform: rotate(-45deg); width: 22px; }

.site-header a:focus-visible, .site-header button:focus-visible {
  outline-color: var(--olive);
}

.mobile-nav {
  animation: menu-reveal 180ms ease both;
  background: var(--paper-light);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  left: 0;
  padding: 18px 20px 28px;
  position: absolute;
  right: 0;
  top: 72px;
}

.mobile-nav a, .mobile-nav button {
  background: none;
  border: 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  min-height: 58px;
  padding: 16px 0;
  text-align: left;
}

.mobile-nav a {
  align-items: center;
  color: var(--ink);
  display: flex;
  font-size: 20px;
  font-weight: 600;
  transition: color 180ms ease, padding-left 180ms ease;
}
.mobile-nav a:hover, .mobile-nav a:focus-visible { color: var(--olive); padding-left: 4px; }
.mobile-nav button {
  align-items: center;
  background: var(--olive);
  border: 1px solid var(--olive);
  border-radius: var(--button-radius);
  color: white;
  display: flex;
  font-weight: 700;
  justify-content: center;
  margin-top: 22px;
  padding: 0 var(--button-padding-x);
  text-align: center;
  transition: background-color 180ms ease, border-color 180ms ease;
}
.mobile-nav button:hover { background: var(--accent-strong); border-color: var(--accent-strong); }

@keyframes menu-reveal {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

.button {
  align-items: center;
  background: var(--olive);
  border: 1px solid var(--olive);
  color: white;
  cursor: pointer;
  display: inline-flex;
  font-size: 15px;
  font-weight: 700;
  gap: 28px;
  justify-content: center;
  min-height: var(--button-height);
  padding: 0 var(--button-padding-x);
  border-radius: var(--button-radius);
  letter-spacing: var(--button-letter-spacing);
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 160ms ease;
}

.button:hover { background: var(--accent-strong); }
.button:active { transform: translateY(1px); }
.button svg, .service-link svg, .map-card a svg { height: 18px; width: 18px; }
.button svg path, .service-link svg path, .map-card a svg path { fill: none; stroke: currentColor; stroke-width: 1.5; }
.button-small { min-height: 44px; padding: 0 20px; }

.hero {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr) 20px;
  grid-template-rows: auto auto minmax(250px, 34svh) auto;
  min-height: calc(100svh - 72px);
  overflow: hidden;
}

.hero-copy {
  display: contents;
}

.eyebrow {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin: 0 0 24px;
  text-transform: uppercase;
}

.hero .eyebrow {
  align-self: end;
  grid-column: 2;
  grid-row: 1;
  margin: 40px 0 18px;
  position: relative;
  z-index: 2;
}

.hero h1, .section-heading h2, .gallery-intro h2, .contact-copy h2, .modal-body h2 {
  font-family: var(--serif);
  font-weight: var(--display-weight);
  letter-spacing: -0.045em;
  line-height: 0.98;
  margin: 0;
  text-wrap: balance;
}

.hero h1 {
  align-self: start;
  font-size: var(--hero-title-mobile);
  grid-column: 2;
  grid-row: 2;
  letter-spacing: var(--hero-letter-spacing);
  line-height: var(--hero-line-height);
  max-width: none;
  position: relative;
  z-index: 2;
}

.hero h1 span { display: block; }
.hero-title-last { margin-left: clamp(28px, 13vw, 56px); }

.hero-bottom {
  display: grid;
  gap: 24px;
  grid-column: 2;
  grid-row: 4;
  padding: 28px 0 36px;
  position: relative;
  z-index: 2;
}

.hero-lead {
  color: #4e5149;
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
  max-width: 420px;
}

.hero-action { align-items: center; display: flex; gap: 20px; }
.hero-button { background: var(--accent-strong); border-color: var(--accent-strong); min-height: 60px; padding: 0 28px; width: auto; }
.hero-button:hover { background: var(--ink); }
.hero-note { color: var(--muted); font-size: 12px; line-height: 1.5; margin: 0; text-align: left; }

.hero-media {
  border-radius: var(--radius);
  grid-column: 2 / 4;
  grid-row: 3;
  margin-top: 28px;
  min-height: 0;
  overflow: hidden;
  position: relative;
}

.hero-media img { filter: var(--image-filter); height: 100%; inset: 0; object-fit: cover; object-position: var(--hero-image-position); position: absolute; width: 100%; }

html[data-preset="barber"] .site-header {
  background: color-mix(in srgb, var(--paper) 92%, white);
  border-bottom-color: color-mix(in srgb, var(--line) 72%, transparent);
}

html[data-preset="barber"] .hero-bottom {
  gap: 20px;
  padding-bottom: 30px;
  padding-top: 24px;
}

html[data-preset="barber"] .hero-lead {
  line-height: 1.45;
  max-width: 390px;
}

html[data-preset="barber"] .hero-action { gap: 16px; }
html[data-preset="barber"] .hero-button { min-height: 56px; padding-left: 24px; padding-right: 24px; }

.section { padding: var(--section-mobile) 20px; }
.section-heading { margin-bottom: 48px; }

.section-heading h2, .gallery-intro h2, .contact-copy h2 {
  font-size: var(--section-title-size);
  max-width: 800px;
}

.section-heading > p:last-child, .gallery-intro > p:last-child {
  color: var(--muted);
  font-size: 17px;
  margin: 24px 0 0;
  max-width: 520px;
}

.services { background: var(--paper-light); }
.services .section-heading, .services-grid { margin-left: auto; margin-right: auto; max-width: var(--content-max); width: 100%; }
.services-grid { border-top: 1px solid var(--line); }
.services-load-state { border-bottom: 1px solid var(--line); padding: 28px 0; }
.services-load-state p { color: var(--muted); margin: 0; }

.service-card {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr auto;
  padding: 28px 0;
  transition: background-color 160ms ease;
}

.service-main { grid-column: 1 / -1; }
.service-card h3 { font-family: var(--serif); font-size: 24px; font-weight: var(--display-weight); letter-spacing: -0.025em; margin: 0 0 10px; }
.service-card p { color: var(--muted); font-size: 15px; margin: 0; max-width: 500px; }
.service-card .service-kicker { color: var(--olive); font-size: 11px; font-weight: 700; letter-spacing: .09em; margin: 0 0 12px; text-transform: uppercase; }
.service-meta { align-items: baseline; display: flex; flex-direction: row; font-size: 14px; gap: 12px; }
.service-meta span { color: var(--muted); }
.service-meta strong { font-size: 15px; }

.service-link {
  align-items: center;
  align-self: end;
  background: none;
  border: 0;
  color: var(--olive);
  cursor: pointer;
  display: flex;
  font-size: 14px;
  font-weight: 700;
  gap: 8px;
  padding: 8px 0 0 12px;
}
.service-link svg { transition: transform 160ms ease; }
.service-link:hover svg { transform: translateX(3px); }

.team-section { background: var(--paper); }
.team-grid { display: grid; gap: 16px; grid-auto-columns: minmax(280px, 84vw); grid-auto-flow: column; margin-right: -20px; overflow-x: auto; padding: 0 20px 12px 0; scroll-snap-type: x mandatory; scrollbar-width: none; }
.team-grid::-webkit-scrollbar { display: none; }
.team-card { scroll-snap-align: start; }
.team-photo { aspect-ratio: var(--team-aspect); border-radius: var(--radius); margin-bottom: 20px; overflow: hidden; position: relative; }
.team-photo img { filter: var(--image-filter); height: 100%; inset: 0; object-fit: cover; position: absolute; transition: transform 260ms ease; width: 100%; }
.team-card:hover .team-photo img { transform: scale(1.012); }
.team-card h3 { font-family: var(--serif); font-size: 24px; font-weight: var(--display-weight); letter-spacing: -0.02em; margin: 0 0 4px; }
.team-role { color: var(--olive); font-size: 14px; font-weight: 700; margin: 0 0 8px; }
.team-note { color: var(--muted); font-size: 15px; margin: 0; }

.gallery-section { background: var(--soft-surface); color: var(--soft-text); }
.gallery-section .eyebrow, .gallery-section .gallery-intro > p:last-child { color: var(--soft-muted); }
.gallery-intro { margin-bottom: 48px; }
.gallery-grid { display: grid; gap: var(--gallery-gap); grid-template-columns: 1fr 1fr; }
.gallery-photo { aspect-ratio: 4 / 3; border-radius: var(--radius); margin: 0; overflow: hidden; position: relative; }
.gallery-photo-large { grid-column: 1 / -1; }
.gallery-photo:not(.gallery-photo-large) { aspect-ratio: 1 / 1; }
.gallery-photo img { filter: var(--image-filter); height: 100%; inset: 0; object-fit: cover; position: absolute; width: 100%; }
.gallery-photo-room img { object-position: 70% center; }

.reviews-section { background: var(--paper-light); }
.reviews-list { border-top: 1px solid var(--line); }
.reviews-list blockquote { border-bottom: 1px solid var(--line); margin: 0; padding: 28px 0; }
.reviews-list blockquote > p { font-family: var(--serif); font-size: 22px; font-weight: var(--display-weight); letter-spacing: -0.02em; line-height: 1.4; margin: 0; }
.reviews-list footer { color: var(--muted); font-size: 13px; margin-top: 20px; }

.contact-section { background: var(--olive); color: white; display: grid; gap: 56px; padding: var(--section-mobile) 20px; }
.contact-copy .eyebrow { color: var(--light-text); }
.contact-details { border-top: 1px solid rgba(255,255,255,.22); margin: 40px 0; }
.contact-details p { border-bottom: 1px solid rgba(255,255,255,.22); display: grid; font-size: 15px; gap: 6px; margin: 0; padding: 18px 0; }
.contact-details span { color: var(--light-text); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.contact-details b { font-weight: 400; }
.contact-details a { text-decoration: underline; text-decoration-color: rgba(255,255,255,.35); text-underline-offset: 4px; }
.button-light { background: #f5f2ea; border-color: #f5f2ea; color: var(--ink); width: 100%; }
.button-light:hover { background: white; }

.map-card {
  background-color: #e5e1d6;
  background-image: linear-gradient(rgba(48,60,45,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(48,60,45,.08) 1px, transparent 1px);
  background-size: 64px 64px;
  color: var(--ink);
  border-radius: var(--radius);
  min-height: 380px;
  overflow: hidden;
  position: relative;
}

.map-card::before, .map-card::after { background: rgba(48,60,45,.18); content: ""; height: 1px; left: -10%; position: absolute; top: 48%; transform: rotate(-16deg); width: 120%; }
.map-card::after { left: 22%; top: -10%; transform: rotate(72deg); }
.map-district { font-family: var(--serif); font-size: 28px; left: 24px; position: absolute; top: 24px; }
.map-street { color: var(--muted); font-size: 12px; left: 50%; position: absolute; top: 55%; transform: rotate(-16deg) translateX(-50%); white-space: nowrap; }
.map-marker { align-items: center; background: var(--olive); border: 7px solid rgba(255,255,255,.8); border-radius: 50%; box-shadow: 0 4px 16px rgba(29,33,27,.18); display: flex; height: 54px; justify-content: center; left: 51%; position: absolute; top: 42%; width: 54px; z-index: 2; }
.map-marker span { color: white; font-family: var(--serif); font-size: 22px; font-weight: 700; transform: translateY(-1px); }
.map-card > a { align-items: center; background: var(--paper-light); bottom: 16px; display: flex; font-size: 14px; font-weight: 700; gap: 16px; justify-content: center; left: 16px; min-height: 50px; position: absolute; right: 16px; z-index: 3; }

.footer { align-items: flex-start; background: var(--footer); color: var(--light-text); display: flex; flex-direction: column; font-size: 13px; gap: 14px; padding: 40px 20px; }
.footer p { margin: 0; }
.footer-brand { color: white; margin-bottom: 12px; }

.modal-backdrop {
  background: rgba(17,20,16,.58);
  inset: 0;
  position: fixed;
  z-index: 100;
}

.booking-modal {
  animation: booking-panel-in 180ms ease both;
  background: var(--paper-light);
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr);
  height: 100dvh;
  margin-left: auto;
  max-width: 680px;
  overflow: hidden;
  width: 100%;
}

.modal-header {
  align-items: center;
  background: var(--paper-light);
  border-bottom: 1px solid color-mix(in srgb, var(--line) 72%, transparent);
  display: flex;
  min-height: 68px;
  justify-content: space-between;
  padding: 10px 20px;
  z-index: 2;
}

.booking-brand { display: grid; gap: 4px; }
.booking-brand > [data-booking-category] { color: var(--muted); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.booking-brand .brand { font-size: 25px; }

.modal-close {
  align-items: center;
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--button-radius);
  color: var(--ink);
  cursor: pointer;
  display: flex;
  font-family: Arial, sans-serif;
  font-size: 24px;
  font-weight: 300;
  height: 44px;
  justify-content: center;
  line-height: 1;
  padding: 0 0 2px;
  transition: border-color 180ms ease, color 180ms ease;
  width: 44px;
}
.modal-close:hover { border-color: var(--olive); color: var(--olive); }

.booking-progress {
  background: var(--paper-light);
  display: grid;
  gap: 6px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 14px 20px 12px;
}
.booking-progress li {
  border-top: 2px solid color-mix(in srgb, var(--line) 78%, transparent);
  color: var(--muted);
  font-size: 9px;
  line-height: 1.2;
  min-width: 0;
  overflow: hidden;
  padding-top: 7px;
  text-overflow: ellipsis;
  transition: border-color 180ms ease, color 180ms ease;
  white-space: nowrap;
}
.booking-progress li span { display: none; }
.booking-progress li.active { border-color: var(--olive); color: var(--ink); font-weight: 700; }
.booking-progress li.complete { border-color: color-mix(in srgb, var(--olive) 60%, var(--line)); color: var(--muted); }

.booking-shell { display: grid; grid-template-rows: minmax(0, 1fr) auto; min-height: 0; }
.modal-body { min-height: 0; overflow-y: auto; padding: 24px 20px 32px; }
.modal-body h2 { font-size: clamp(34px, 10vw, 46px); line-height: 1; }
.modal-body h2:focus { outline: none; }
.booking-step-label { color: var(--olive); font-size: 11px; font-weight: 700; letter-spacing: .1em; margin: 0 0 12px; text-transform: uppercase; }
.modal-lead { color: var(--muted); font-size: 15px; line-height: 1.5; margin: 14px 0 26px; max-width: 500px; }

.booking-option-list { border-top: 1px solid color-mix(in srgb, var(--line) 78%, transparent); }
.booking-option {
  background: transparent;
  border: 0;
  border-bottom: 1px solid color-mix(in srgb, var(--line) 78%, transparent);
  border-left: 2px solid transparent;
  color: var(--ink);
  cursor: pointer;
  min-height: 74px;
  padding: 15px 10px;
  text-align: left;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
  width: 100%;
}
.booking-option:hover { background: color-mix(in srgb, var(--olive) 4%, transparent); }
.booking-option:focus-visible { background: color-mix(in srgb, var(--olive) 4%, transparent); outline: 1px solid color-mix(in srgb, var(--olive) 60%, transparent); outline-offset: -1px; }
.booking-option.selected { background: color-mix(in srgb, var(--olive) 7%, transparent); border-left-color: var(--olive); color: var(--ink); }
.booking-option.selected .booking-option-copy strong { color: var(--olive); }
.booking-service-option { align-items: start; display: grid; gap: 12px; grid-template-columns: minmax(0, 1fr) auto; }
.booking-option-copy { display: grid; gap: 6px; min-width: 0; }
.booking-option-copy strong { font-family: var(--serif); font-size: 19px; font-weight: var(--display-weight); line-height: 1.15; }
.booking-option-description { color: var(--muted); font-size: 13px; line-height: 1.4; }
.booking-option-meta { align-items: end; display: grid; font-size: 12px; gap: 5px; justify-items: end; line-height: 1.3; white-space: nowrap; }
.booking-option-meta span { color: var(--muted); }
.booking-option-meta b { font-size: 13px; }

.booking-specialist-option { align-items: center; display: grid; gap: 16px; grid-template-columns: 68px minmax(0, 1fr); min-height: 96px; }
.booking-specialist-photo {
  align-items: center;
  background: color-mix(in srgb, var(--paper) 72%, var(--paper-light));
  border-radius: var(--radius);
  color: var(--muted);
  display: flex;
  font-size: 11px;
  font-weight: 650;
  height: 68px;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  width: 68px;
}
.booking-specialist-photo img { height: 100%; object-fit: cover; width: 100%; }
.booking-any-photo { background: color-mix(in srgb, var(--olive) 7%, var(--paper-light)); border: 1px solid color-mix(in srgb, var(--olive) 28%, var(--line)); color: var(--olive); }
.booking-specialist-option.selected .booking-specialist-photo { border-color: var(--olive); }

.booking-date-list { display: grid; gap: 8px; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 2px; }
.booking-date, .booking-time {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--button-radius);
  color: var(--ink);
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}
.booking-date { display: grid; gap: 4px; min-height: 66px; padding: 10px 6px; }
.booking-date span { color: var(--muted); font-size: 10px; }
.booking-date strong { font-size: 14px; }
.booking-date:hover, .booking-time:hover { background: color-mix(in srgb, var(--olive) 4%, transparent); border-color: var(--olive); }
.booking-date.selected, .booking-time.selected { background: var(--olive); border-color: var(--olive); color: white; }
.booking-date.selected span { color: rgba(255,255,255,.74); }
.booking-time-heading { font-family: var(--body-font); font-size: 14px; margin: 30px 0 14px; }
.booking-time-list { display: grid; gap: 8px; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.booking-time { background: color-mix(in srgb, var(--paper) 50%, transparent); font-size: 15px; font-weight: 650; min-height: 50px; padding: 0 8px; }

.booking-empty-state { padding: 4px 0; }
.booking-empty-state p { color: var(--muted); font-size: 14px; line-height: 1.5; margin: 0; }
.booking-availability-status { color: var(--muted); font-size: 14px; line-height: 1.5; margin: 24px 0 0; }
.booking-inline-action { background: transparent; border: 1px solid color-mix(in srgb, var(--olive) 58%, var(--line)); border-radius: var(--button-radius); color: var(--olive); cursor: pointer; font: inherit; font-size: 13px; font-weight: 700; margin-top: 14px; min-height: 44px; padding: 0 14px; transition: background-color 180ms ease, border-color 180ms ease; }
.booking-inline-action:hover, .booking-inline-action:focus-visible { background: color-mix(in srgb, var(--olive) 6%, transparent); border-color: var(--olive); }

.booking-form { display: grid; gap: 18px; }
.booking-field { display: grid; gap: 8px; }
.booking-field > span { color: color-mix(in srgb, var(--ink) 84%, var(--muted)); font-size: 12px; font-weight: 650; }
.booking-field input, .booking-field textarea {
  appearance: none;
  background: color-mix(in srgb, var(--paper) 48%, transparent);
  border: 1px solid color-mix(in srgb, var(--line) 76%, transparent);
  border-radius: var(--button-radius);
  color: var(--ink);
  font: inherit;
  font-size: 16px;
  line-height: 1.35;
  outline: 0;
  padding: 15px 14px;
  transition: background-color 180ms ease, border-color 180ms ease, outline-color 180ms ease;
  width: 100%;
}
.booking-field input { min-height: 54px; }
.booking-field textarea { min-height: 96px; resize: vertical; }
.booking-field input:focus, .booking-field textarea:focus { background: var(--paper-light); border-color: color-mix(in srgb, var(--olive) 72%, var(--line)); outline: 2px solid color-mix(in srgb, var(--olive) 16%, transparent); outline-offset: 1px; }
.booking-field input::placeholder, .booking-field textarea::placeholder { color: color-mix(in srgb, var(--muted) 72%, transparent); }

.booking-summary { display: grid; gap: 13px; margin: 0; }
.booking-summary-row { display: grid; gap: 3px; padding: 0; }
.booking-summary-row:nth-child(5) { border-top: 1px solid color-mix(in srgb, var(--line) 72%, transparent); margin-top: 5px; padding-top: 16px; }
.booking-summary dt { color: var(--muted); font-size: 11px; line-height: 1.35; }
.booking-summary dd { font-size: 13px; font-weight: 560; line-height: 1.35; margin: 0; }
.booking-summary-row:nth-child(-n+4) dd { color: var(--ink); font-size: 16px; font-weight: 700; }
.booking-success-mark { align-items: center; background: transparent; border: 1px solid color-mix(in srgb, var(--olive) 58%, var(--line)); border-radius: 50%; color: var(--olive); display: flex; font-size: 17px; height: 36px; justify-content: center; margin-bottom: 16px; width: 36px; }
.booking-success-note { background: transparent; border-radius: 0; border-top: 1px solid color-mix(in srgb, var(--line) 72%, transparent); color: var(--muted); font-size: 13px; line-height: 1.5; margin: 18px 0 0; padding: 14px 0 0; }
.booking-submit-error { border-top: 1px solid color-mix(in srgb, var(--line) 72%, transparent); color: #7b4f47; font-size: 13px; line-height: 1.5; margin: 18px 0 0; padding: 14px 0 0; }

.booking-actions {
  align-items: center;
  background: color-mix(in srgb, var(--paper-light) 96%, transparent);
  border-top: 1px solid color-mix(in srgb, var(--line) 58%, transparent);
  display: grid;
  gap: 12px;
  grid-template-columns: auto minmax(0, 1fr);
  padding: 9px 20px max(9px, env(safe-area-inset-bottom));
}
.booking-actions[hidden], .booking-back[hidden], .booking-primary[hidden] { display: none; }
.booking-back[hidden] + .booking-primary { grid-column: 1 / -1; }
.booking-back { background: transparent; border: 0; color: var(--muted); cursor: pointer; font-size: 14px; font-weight: 600; min-height: 52px; padding: 0 14px 0 0; }
.booking-back:hover { color: var(--olive); }
.booking-primary { min-height: 54px; width: 100%; }
.booking-primary:disabled { cursor: wait; opacity: .68; }

@keyframes booking-panel-in {
  from { opacity: .7; transform: translateX(16px); }
  to { opacity: 1; transform: translateX(0); }
}

@media (max-width: 699px) {
  html[data-preset="barber"] .hero { min-height: 0; }
  .booking-progress { gap: 5px; padding: 10px 20px 8px; }
  .booking-progress li { font-size: 0; padding-top: 5px; }
  .booking-progress li span { display: block; font-size: 10px; line-height: 1; }
  .booking-progress li.active span { color: var(--ink); }
  .booking-progress li.complete span { color: var(--olive); }
}

@media (min-width: 700px) {
  .site-header { grid-template-columns: 1fr auto 1fr; height: 80px; padding: 0 32px; }
  .desktop-nav { align-items: center; display: flex; gap: clamp(28px, 2.6vw, 40px); height: 100%; }
  .desktop-nav a {
    align-items: center;
    color: var(--muted);
    cursor: pointer;
    display: flex;
    font-size: 13px;
    font-weight: 600;
    height: 100%;
    letter-spacing: .015em;
    position: relative;
    transition: color 180ms ease;
  }
  .desktop-nav a::after {
    background: currentColor;
    bottom: 20px;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    right: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 180ms ease;
  }
  .desktop-nav a:hover, .desktop-nav a:focus-visible { color: var(--ink); }
  .desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { transform: scaleX(1); }
  html[data-preset="barber"] .desktop-nav a:hover,
  html[data-preset="barber"] .desktop-nav a:focus-visible { color: var(--olive); }
  html[data-preset="barber"] .desktop-nav a::after {
    background: var(--olive);
    bottom: 19px;
    opacity: .72;
  }
  .site-header .header-book { align-self: center; display: inline-flex; justify-self: end; }
  .header-book:hover { background: var(--accent-strong); border-color: var(--accent-strong); }
  .menu-button, .mobile-nav { display: none; }
  .hero { grid-template-columns: 48px minmax(0, 1fr) 48px; grid-template-rows: auto auto minmax(380px, 42svh) auto; min-height: calc(100svh - 80px); }
  .hero .eyebrow { margin-top: 56px; }
  .hero h1 { font-size: var(--hero-title-tablet); }
  .hero-title-last { margin-left: 12vw; }
  .hero-media { margin-top: 40px; }
  .hero-bottom { align-items: end; gap: 48px; grid-template-columns: minmax(0, 420px) auto; padding-bottom: 48px; padding-top: 36px; }
  .hero-action { justify-self: end; }
  .hero-button { width: auto; }
  .hero-note { text-align: left; width: auto; }
  .section { padding: var(--section-tablet) 48px; }
  .services-grid { display: grid; grid-template-columns: 1fr 1fr; }
  .service-card:nth-child(odd) { padding-right: 32px; }
  .service-card:nth-child(even) { border-left: 1px solid var(--line); padding-left: 32px; }
  .team-grid { gap: 20px; grid-auto-columns: auto; grid-auto-flow: row; grid-template-columns: repeat(3, 1fr); margin-right: 0; overflow: visible; padding: 0; scroll-snap-type: none; }
  .team-note { max-width: 300px; }
  .gallery-grid { gap: var(--gallery-gap); grid-template-columns: 1.7fr 1fr; grid-template-rows: repeat(2, minmax(230px, 1fr)); }
  .gallery-photo { aspect-ratio: auto; }
  .gallery-photo-large { grid-column: auto; grid-row: 1 / 3; }
  .gallery-photo:not(.gallery-photo-large) { aspect-ratio: auto; }
  .reviews-list blockquote { display: grid; gap: 32px; grid-template-columns: 1fr 220px; }
  .reviews-list footer { margin-top: 5px; }
  .contact-section { gap: 64px; grid-template-columns: .9fr 1.1fr; padding: var(--section-tablet) 48px; }
  .button-light { width: auto; }
  .footer { align-items: center; flex-direction: row; justify-content: space-between; padding: 40px 48px; }
  .footer-brand { margin: 0 auto 0 0; }
  .modal-header { min-height: 80px; padding: 12px 32px; }
  .booking-progress { padding: 18px 40px 14px; }
  .booking-progress li { font-size: 10px; }
  .modal-body { padding: 34px 40px 44px; }
  .booking-actions { padding: 12px 40px 14px; }
  .booking-service-option { padding-bottom: 17px; padding-top: 17px; }
  .booking-specialist-option { grid-template-columns: 72px minmax(0, 1fr); }
  .booking-specialist-photo { height: 72px; width: 72px; }
}

@media (min-width: 1024px) {
  .site-header { padding: 0 56px; }
  .hero { grid-template-columns: repeat(12, minmax(0, 1fr)); grid-template-rows: auto minmax(0, 1fr) auto; height: calc(100svh - 80px); max-height: 960px; min-height: 720px; padding: 0 56px 48px; }
  .hero .eyebrow { grid-column: 1 / 5; grid-row: 1; margin: 48px 0 0; }
  .hero h1 { align-self: center; font-size: var(--hero-title-desktop); grid-column: 1 / 10; grid-row: 2; letter-spacing: var(--hero-letter-spacing-desktop); line-height: var(--hero-line-height-desktop); margin: 28px 0; }
  .hero-title-last { margin-left: .85em; }
  .hero-media { grid-column: 6 / 13; grid-row: 1 / 4; margin: 40px -28px 0 0; min-height: 0; }
  .hero-media img { object-position: var(--hero-image-position); }
  .hero-bottom { align-self: end; display: grid; gap: 28px; grid-column: 1 / 5; grid-row: 3; grid-template-columns: 1fr; padding: 0 0 4px; }
  .hero-action { justify-self: start; }
  .hero-button { min-height: 64px; padding-left: 32px; padding-right: 32px; }
  html[data-preset="barber"] .hero-bottom { gap: 18px; padding-bottom: 30px; }
  html[data-preset="barber"] .hero-button { min-height: 58px; padding-left: 28px; padding-right: 28px; }
  .section { padding: var(--section-desktop) 56px; }
  .section-heading { align-items: end; display: grid; grid-template-columns: 1.2fr .8fr; margin-bottom: 72px; }
  .section-heading .eyebrow { grid-column: 1 / -1; }
  .section-heading > p:last-child { justify-self: end; margin-top: 0; max-width: 380px; }
  .section-heading h2, .gallery-intro h2, .contact-copy h2 { font-size: var(--section-title-desktop); }
  .service-card { min-height: 230px; padding-bottom: 32px; padding-top: 36px; }
  .service-card:hover { background: rgba(243, 240, 233, .72); }
  .team-heading { display: block; max-width: 820px; }
  .team-grid { gap: 24px; }
  .gallery-section { align-items: start; display: grid; gap: 80px; grid-template-columns: minmax(300px, .7fr) minmax(680px, 1.6fr); }
  .gallery-intro { margin: 0; position: sticky; top: 112px; }
  .gallery-intro h2 { font-size: var(--section-title-desktop); }
  .gallery-grid { min-height: 680px; }
  .reviews-section { display: grid; gap: 80px; grid-template-columns: .55fr 1.45fr; }
  .reviews-heading { display: block; }
  .reviews-heading h2 { font-size: 46px; }
  .reviews-list blockquote > p { font-size: 25px; }
  .contact-section { gap: 10vw; padding: var(--section-desktop) 8vw; }
  .contact-copy { max-width: 520px; }
  .map-card { min-height: 560px; }
  .footer { padding-left: 56px; padding-right: 56px; }
}

@media (max-width: 420px) {
  .hero .eyebrow { margin-top: 36px; }
  .hero h1 { font-size: var(--hero-title-mobile-small); line-height: var(--hero-line-height); }
  .hero-bottom { padding-bottom: 32px; padding-top: 24px; }
  .hero-lead { font-size: 15px; margin: 0; }
  .section { padding-bottom: var(--section-mobile); padding-top: var(--section-mobile); }
  .section-heading { margin-bottom: 40px; }
  .service-card { gap: 16px; padding: 26px 0; }
  .service-card h3 { font-size: 23px; }
  .reviews-list blockquote > p { font-size: 20px; }
}

/* Barber public site v2 --------------------------------------------------- */
[data-barber-only] { display: none; }
html:not([data-preset="barber"]) [data-barber-only] { display: none !important; }
.services-layout { display: contents; }

html[data-preset="barber"] {
  --barber-night: #111210;
  --barber-graphite: #1a1b18;
  --barber-warm: #2b2b26;
  --barber-bone: #eeeae0;
  --barber-bone-deep: #d5d0c5;
  --barber-fade: #9b9a92;
  --barber-rule: rgba(238, 234, 224, .18);
}

html[data-preset="barber"] [data-barber-only] { display: block; }
html[data-preset="barber"] body { background: var(--barber-night); }
html[data-preset="barber"] main { overflow: clip; }

html[data-preset="barber"] .site-header {
  background: var(--barber-night);
  border-bottom-color: var(--barber-rule);
  color: var(--barber-bone);
}
html[data-preset="barber"] .site-header .brand {
  color: var(--barber-bone);
  font-size: 28px;
  font-weight: 600;
}
html[data-preset="barber"] .menu-button { color: var(--barber-bone); }
html[data-preset="barber"] .menu-button-icon i { background: var(--barber-bone); }
html[data-preset="barber"] .mobile-nav {
  background: var(--barber-night);
  border-bottom-color: var(--barber-rule);
  color: var(--barber-bone);
}
html[data-preset="barber"] .mobile-nav a {
  border-bottom-color: var(--barber-rule);
  color: var(--barber-bone);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
}
html[data-preset="barber"] .mobile-nav [data-barber-only] { display: flex; }
html[data-preset="barber"] .mobile-nav button {
  background: var(--barber-bone);
  border-color: var(--barber-bone);
  color: var(--barber-night);
}

html[data-preset="barber"] .hero {
  background: var(--barber-night);
  color: var(--barber-bone);
  grid-template-columns: 20px minmax(0, 1fr) 20px;
  grid-template-rows: auto auto minmax(270px, 82vw) auto;
  min-height: 0;
  position: relative;
}
html[data-preset="barber"] .hero .eyebrow {
  color: var(--barber-fade);
  grid-column: 2;
  margin: 32px 0 14px;
}
html[data-preset="barber"] .hero h1 {
  color: var(--barber-bone);
  font-size: clamp(52px, 14.4vw, 68px);
  font-weight: 600;
  letter-spacing: -.045em;
  line-height: .98;
}
html[data-preset="barber"] .hero-title-last { margin-left: .72em; }
html[data-preset="barber"] .hero-media {
  border-radius: 0;
  grid-column: 1 / -1;
  height: auto;
  margin-top: 28px;
}
html[data-preset="barber"] .hero-media::after {
  background: linear-gradient(180deg, transparent 58%, rgba(10, 11, 9, .2));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}
html[data-preset="barber"] .hero-media img {
  filter: saturate(.72) contrast(1.12) brightness(.86);
  object-position: 70% center;
}
html[data-preset="barber"] .hero-bottom {
  gap: 24px;
  grid-column: 1 / -1;
  padding: 28px 20px 48px;
}
html[data-preset="barber"] .hero-lead {
  color: var(--barber-bone-deep);
  font-size: 16px;
  line-height: 1.5;
  max-width: 430px;
}
html[data-preset="barber"] .hero-action {
  align-items: stretch;
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
html[data-preset="barber"] .hero-button {
  background: var(--barber-bone);
  border-color: var(--barber-bone);
  color: var(--barber-night);
  min-height: 58px;
  padding: 0 24px;
  width: 100%;
}
html[data-preset="barber"] .hero-button:hover {
  background: transparent;
  border-color: var(--barber-bone);
  color: var(--barber-bone);
}
html[data-preset="barber"] .hero-secondary {
  align-items: center;
  color: var(--barber-bone);
  display: flex;
  font-size: 14px;
  font-weight: 650;
  gap: 12px;
  justify-content: center;
  min-height: 48px;
  text-decoration: underline;
  text-decoration-color: rgba(238, 234, 224, .34);
  text-underline-offset: 6px;
}
html[data-preset="barber"] .hero-secondary svg { height: 18px; width: 18px; }
html[data-preset="barber"] .hero-secondary path { fill: none; stroke: currentColor; stroke-width: 1.5; }
html[data-preset="barber"] .hero-note {
  color: var(--barber-fade);
  font-size: 12px;
  grid-column: 1;
  grid-row: 3;
  text-align: center;
}

html[data-preset="barber"] .section { padding-left: 20px; padding-right: 20px; }
html[data-preset="barber"] .section .eyebrow::after { color: currentColor; opacity: .56; }
html[data-preset="barber"] .services {
  background: var(--barber-night);
  color: var(--barber-bone);
  padding-top: 88px;
}
html[data-preset="barber"] .services .section-heading { margin-bottom: 42px; }
html[data-preset="barber"] .services .section-heading .eyebrow { color: var(--barber-fade); }
html[data-preset="barber"] .services .section-heading .eyebrow::after { content: " / 01"; }
html[data-preset="barber"] .services .section-heading h2 {
  color: var(--barber-bone);
  font-size: clamp(48px, 13vw, 70px);
}
html[data-preset="barber"] .services .section-heading > p:last-child { color: var(--barber-fade); }
html[data-preset="barber"] .services-layout {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  max-width: var(--content-max);
}
html[data-preset="barber"] .services-grid {
  border-top-color: var(--barber-rule);
  display: block;
  grid-template-columns: 1fr;
  margin: 0;
  max-width: none;
}
html[data-preset="barber"] .service-card:nth-child(odd),
html[data-preset="barber"] .service-card:nth-child(even) {
  border-left: 0;
  padding-left: 0;
  padding-right: 0;
}
html[data-preset="barber"] .services-visual {
  aspect-ratio: 4 / 3;
  margin: 0 0 34px;
  order: -1;
  overflow: hidden;
  position: relative;
}
html[data-preset="barber"] .services-visual img {
  filter: saturate(.66) contrast(1.12) brightness(.82);
  height: 100%;
  object-fit: cover;
  transition: opacity 180ms ease, transform 280ms ease;
  width: 100%;
}
html[data-preset="barber"] .services-visual figcaption {
  align-items: end;
  background: rgba(12, 13, 11, .76);
  bottom: 0;
  display: flex;
  justify-content: space-between;
  left: 0;
  padding: 14px 16px;
  position: absolute;
  right: 0;
}
html[data-preset="barber"] .services-visual figcaption span {
  color: var(--barber-fade);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
html[data-preset="barber"] .services-visual figcaption b { font-size: 12px; font-weight: 600; }
html[data-preset="barber"] .service-card {
  align-items: start;
  border-bottom-color: var(--barber-rule);
  cursor: pointer;
  gap: 10px 14px;
  grid-template-columns: 30px minmax(0, 1fr) auto;
  padding: 24px 0;
}
html[data-preset="barber"] .service-card:hover { background: transparent; }
html[data-preset="barber"] .service-card:focus-visible {
  outline: 1px solid var(--barber-bone);
  outline-offset: 6px;
}
html[data-preset="barber"] .service-index {
  color: var(--barber-fade);
  font-size: 10px;
  letter-spacing: .08em;
  padding-top: 8px;
}
html[data-preset="barber"] .service-main { grid-column: 2 / -1; }
html[data-preset="barber"] .service-card h3 {
  color: var(--barber-bone);
  font-size: clamp(25px, 7vw, 34px);
  margin-bottom: 8px;
}
html[data-preset="barber"] .service-card p { color: var(--barber-fade); }
html[data-preset="barber"] .service-card .service-kicker { display: none; }
html[data-preset="barber"] .service-meta {
  color: var(--barber-bone-deep);
  grid-column: 2;
}
html[data-preset="barber"] .service-meta span { color: var(--barber-fade); }
html[data-preset="barber"] .service-link {
  color: var(--barber-bone);
  grid-column: 3;
  padding: 6px 0 0 8px;
}

html[data-preset="barber"] .team-section {
  background: var(--barber-bone);
  color: var(--barber-night);
  padding-bottom: 96px;
  padding-top: 96px;
}
html[data-preset="barber"] .team-heading .eyebrow::after { content: " / 02"; }
html[data-preset="barber"] .team-heading h2 { font-size: clamp(46px, 12.4vw, 68px); }
html[data-preset="barber"] .team-grid {
  display: grid;
  gap: 72px;
  grid-auto-flow: row;
  grid-template-columns: 1fr;
  margin: 0;
  overflow: visible;
  padding: 0;
}
html[data-preset="barber"] .barber-team-story { display: grid; gap: 26px; }
html[data-preset="barber"] .team-photo {
  aspect-ratio: 4 / 5;
  border-radius: 0;
  margin: 0;
}
html[data-preset="barber"] .team-photo img { filter: saturate(.68) contrast(1.08) brightness(.92); }
html[data-preset="barber"] .team-copy { padding: 0 4px; }
html[data-preset="barber"] .team-number {
  color: #77786f;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  margin: 0 0 18px;
  text-transform: uppercase;
}
html[data-preset="barber"] .team-card h3 {
  font-size: clamp(34px, 9vw, 48px);
  line-height: 1;
  margin-bottom: 10px;
}
html[data-preset="barber"] .team-role { color: #454740; font-size: 13px; letter-spacing: .04em; margin-bottom: 16px; text-transform: uppercase; }
html[data-preset="barber"] .team-note { color: #62645c; font-size: 16px; line-height: 1.55; max-width: 440px; }
html[data-preset="barber"] .team-book {
  align-items: center;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(17, 18, 16, .4);
  color: var(--barber-night);
  cursor: pointer;
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  gap: 12px;
  margin-top: 24px;
  min-height: 44px;
  padding: 0;
}
html[data-preset="barber"] .team-book svg { height: 18px; transition: transform 180ms ease; width: 18px; }
html[data-preset="barber"] .team-book path { fill: none; stroke: currentColor; stroke-width: 1.5; }
html[data-preset="barber"] .team-book:hover svg { transform: translateX(4px); }
html[data-preset="barber"] .team-load-state { color: #62645c; }

html[data-preset="barber"] .gallery-section {
  background: var(--barber-graphite);
  color: var(--barber-bone);
  padding: 0 0 96px;
}
html[data-preset="barber"] .gallery-intro { padding: 88px 20px 0; }
html[data-preset="barber"] .gallery-intro .eyebrow::after { content: " / 03"; }
html[data-preset="barber"] .gallery-intro h2 { color: var(--barber-bone); font-size: clamp(46px, 12vw, 68px); }
html[data-preset="barber"] .gallery-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}
html[data-preset="barber"] .gallery-photo {
  aspect-ratio: 4 / 3;
  border-radius: 0;
  grid-column: auto;
}
html[data-preset="barber"] .gallery-photo-1 { aspect-ratio: 5 / 6; }
html[data-preset="barber"] .gallery-photo-2 { aspect-ratio: 4 / 3; margin-left: 20px; }
html[data-preset="barber"] .gallery-photo-3 { aspect-ratio: 3 / 4; margin-right: 20px; }
html[data-preset="barber"] .gallery-photo img { filter: saturate(.67) contrast(1.1) brightness(.86); }

html[data-preset="barber"] .reviews-section {
  background: var(--barber-bone);
  color: var(--barber-night);
  padding-bottom: 96px;
  padding-top: 96px;
}
html[data-preset="barber"] .reviews-heading .eyebrow::after { content: " / 04"; }
html[data-preset="barber"] .reviews-heading h2 { font-size: clamp(46px, 12vw, 68px); }
html[data-preset="barber"] .reviews-list { border-top-color: rgba(17, 18, 16, .2); }
html[data-preset="barber"] .reviews-list blockquote { border-bottom-color: rgba(17, 18, 16, .2); padding: 34px 0; }
html[data-preset="barber"] .reviews-list blockquote > p {
  font-size: clamp(26px, 7.2vw, 38px);
  line-height: 1.22;
}
html[data-preset="barber"] .reviews-list footer {
  color: #64665f;
  font-size: 12px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

html[data-preset="barber"] .contact-section {
  background: var(--barber-night);
  color: var(--barber-bone);
  gap: 0;
  padding: 0;
}
html[data-preset="barber"] .contact-copy { padding: 88px 20px 72px; }
html[data-preset="barber"] .contact-copy .eyebrow::after { content: " / 05"; }
html[data-preset="barber"] .contact-copy h2 { color: var(--barber-bone); font-size: clamp(46px, 12vw, 68px); }
html[data-preset="barber"] .contact-details { border-top-color: var(--barber-rule); }
html[data-preset="barber"] .contact-details p { border-bottom-color: var(--barber-rule); }
html[data-preset="barber"] .contact-details span { color: var(--barber-fade); }
html[data-preset="barber"] .contact-copy .button-light {
  background: var(--barber-bone);
  border-color: var(--barber-bone);
  color: var(--barber-night);
}
html[data-preset="barber"] .map-card {
  background: var(--barber-graphite);
  border-radius: 0;
  color: var(--barber-bone);
  min-height: 520px;
}
html[data-preset="barber"] .map-card::before {
  background: rgba(8, 9, 8, .26);
  content: "";
  height: auto;
  inset: 0;
  left: 0;
  position: absolute;
  top: 0;
  transform: none;
  width: auto;
  z-index: 1;
}
html[data-preset="barber"] .map-card::after { display: none; }
html[data-preset="barber"] .contact-visual {
  display: block;
  filter: saturate(.62) contrast(1.08) brightness(.75);
  height: 100%;
  inset: 0;
  max-width: none;
  object-fit: cover;
  position: absolute;
  width: 100%;
}
html[data-preset="barber"] .map-district {
  color: var(--barber-bone);
  font-size: 36px;
  left: 20px;
  top: 22px;
  z-index: 2;
}
html[data-preset="barber"] .map-street {
  color: var(--barber-bone-deep);
  left: 20px;
  top: 76px;
  transform: none;
  z-index: 2;
}
html[data-preset="barber"] .map-marker { display: none; }
html[data-preset="barber"] .map-card > a {
  background: var(--barber-bone);
  color: var(--barber-night);
  left: 20px;
  right: auto;
  width: calc(100% - 40px);
}

html[data-preset="barber"] .final-cta {
  color: var(--barber-bone);
  display: grid;
  min-height: 680px;
  overflow: hidden;
  place-items: end start;
  position: relative;
}
html[data-preset="barber"] .final-cta > img {
  filter: saturate(.56) contrast(1.12) brightness(.68);
  height: 100%;
  inset: 0;
  max-width: none;
  object-fit: cover;
  object-position: 64% center;
  position: absolute;
  width: 100%;
}
html[data-preset="barber"] .final-cta-overlay {
  background: linear-gradient(180deg, rgba(10, 11, 9, .08), rgba(10, 11, 9, .82));
  display: block;
  inset: 0;
  position: absolute;
}
html[data-preset="barber"] .final-cta-copy {
  max-width: 720px;
  padding: 0 20px 56px;
  position: relative;
  z-index: 2;
}
html[data-preset="barber"] .final-cta-copy .eyebrow { color: var(--barber-bone-deep); }
html[data-preset="barber"] .final-cta-copy h2 {
  font-family: var(--serif);
  font-size: clamp(48px, 12.8vw, 74px);
  font-weight: 600;
  letter-spacing: -.045em;
  line-height: .98;
  margin: 0;
}
html[data-preset="barber"] .final-cta-copy > p:not(.eyebrow) { color: var(--barber-bone-deep); margin: 20px 0 30px; }
html[data-preset="barber"] .final-cta .button {
  background: var(--barber-bone);
  border-color: var(--barber-bone);
  color: var(--barber-night);
}

html[data-preset="barber"] .footer {
  background: #0c0d0b;
  border-top: 1px solid var(--barber-rule);
  color: var(--barber-fade);
  padding-bottom: 44px;
  padding-top: 44px;
}
html[data-preset="barber"] .footer-brand { color: var(--barber-bone); }
html[data-preset="barber"] .footer-nav { display: flex; flex-wrap: wrap; gap: 10px 22px; margin: 12px 0; }
html[data-preset="barber"] .footer-nav a { color: var(--barber-bone-deep); font-size: 13px; }

@media (min-width: 700px) {
  html[data-preset="barber"] .site-header {
    background: transparent;
    border-bottom-color: rgba(238, 234, 224, .18);
    color: var(--barber-bone);
    left: 0;
    padding-left: 40px;
    padding-right: 40px;
    position: absolute;
    right: 0;
    top: 0;
  }
  html[data-preset="barber"] .desktop-nav { gap: clamp(24px, 2.3vw, 38px); }
  html[data-preset="barber"] .desktop-nav [data-barber-only] { display: flex; }
  html[data-preset="barber"] .desktop-nav a { color: var(--barber-bone-deep); font-size: 12px; }
  html[data-preset="barber"] .desktop-nav a:hover,
  html[data-preset="barber"] .desktop-nav a:focus-visible { color: white; }
  html[data-preset="barber"] .desktop-nav a::after { background: white; }
  html[data-preset="barber"] .site-header .header-book {
    background: var(--barber-bone);
    border-color: var(--barber-bone);
    color: var(--barber-night);
    display: inline-flex;
  }
  html[data-preset="barber"] .hero {
    grid-template-columns: 40px repeat(10, minmax(0, 1fr)) 40px;
    grid-template-rows: auto minmax(0, 1fr) auto;
    height: min(900px, 100svh);
    min-height: 720px;
  }
  html[data-preset="barber"] .hero::after {
    background: linear-gradient(90deg, rgba(8, 9, 8, .9) 0%, rgba(8, 9, 8, .68) 39%, rgba(8, 9, 8, .12) 72%);
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
    z-index: 1;
  }
  html[data-preset="barber"] .hero-media {
    grid-column: 1 / -1;
    grid-row: 1 / -1;
    margin: 0;
  }
  html[data-preset="barber"] .hero-media::after { display: none; }
  html[data-preset="barber"] .hero-media img { object-position: 60% center; }
  html[data-preset="barber"] .hero .eyebrow {
    align-self: end;
    grid-column: 2 / 6;
    grid-row: 1;
    margin: 122px 0 0;
    z-index: 3;
  }
  html[data-preset="barber"] .hero h1 {
    align-self: center;
    font-size: clamp(76px, 10vw, 112px);
    grid-column: 2 / 8;
    grid-row: 2;
    letter-spacing: -.055em;
    line-height: .94;
    margin: 24px 0;
    z-index: 3;
  }
  html[data-preset="barber"] .hero-title-last { margin-left: .82em; }
  html[data-preset="barber"] .hero-bottom {
    align-self: end;
    display: grid;
    gap: 28px;
    grid-column: 2 / 7;
    grid-row: 3;
    grid-template-columns: 1fr;
    padding: 0 0 46px;
    z-index: 3;
  }
  html[data-preset="barber"] .hero-action {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 20px 26px;
  }
  html[data-preset="barber"] .hero-button { width: auto; }
  html[data-preset="barber"] .hero-secondary { display: inline-flex; min-height: 44px; }
  html[data-preset="barber"] .hero-note { grid-column: auto; grid-row: auto; text-align: left; }
  html[data-preset="barber"] .section { padding-left: 48px; padding-right: 48px; }
  html[data-preset="barber"] .services-visual { aspect-ratio: 16 / 9; }
  html[data-preset="barber"] .service-card { grid-template-columns: 42px minmax(0, 1fr) auto; padding: 28px 0; }
  html[data-preset="barber"] .team-section { padding-bottom: 120px; padding-top: 120px; }
  html[data-preset="barber"] .team-grid { gap: 112px; }
  html[data-preset="barber"] .barber-team-story {
    align-items: center;
    gap: 48px;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  }
  html[data-preset="barber"] .barber-team-story:nth-child(even) .team-photo { grid-column: 2; grid-row: 1; }
  html[data-preset="barber"] .barber-team-story:nth-child(even) .team-copy { grid-column: 1; grid-row: 1; padding-left: 8vw; }
  html[data-preset="barber"] .team-copy { padding: 0 5vw 0 0; }
  html[data-preset="barber"] .gallery-section { padding-bottom: 120px; }
  html[data-preset="barber"] .gallery-intro { padding: 112px 48px 0; }
  html[data-preset="barber"] .gallery-grid {
    gap: 16px;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(260px, auto));
    padding: 0 48px;
  }
  html[data-preset="barber"] .gallery-photo { margin: 0; }
  html[data-preset="barber"] .gallery-photo-1 { aspect-ratio: auto; grid-column: 1 / 8; grid-row: 1 / 3; min-height: 680px; }
  html[data-preset="barber"] .gallery-photo-2 { aspect-ratio: auto; grid-column: 8 / -1; grid-row: 1; }
  html[data-preset="barber"] .gallery-photo-3 { aspect-ratio: auto; grid-column: 8 / -1; grid-row: 2; }
  html[data-preset="barber"] .gallery-photo:nth-child(n+4) { grid-column: span 6; min-height: 320px; }
  html[data-preset="barber"] .reviews-section { padding-bottom: 120px; padding-top: 120px; }
  html[data-preset="barber"] .reviews-list blockquote { padding: 44px 0; }
  html[data-preset="barber"] .contact-section { grid-template-columns: 1.1fr .9fr; }
  html[data-preset="barber"] .contact-copy { padding: 112px 48px; }
  html[data-preset="barber"] .map-card { min-height: 760px; }
  html[data-preset="barber"] .map-card > a { bottom: 28px; left: 28px; width: auto; }
  html[data-preset="barber"] .map-district { left: 28px; top: 30px; }
  html[data-preset="barber"] .map-street { left: 28px; top: 88px; }
  html[data-preset="barber"] .final-cta { min-height: 760px; }
  html[data-preset="barber"] .final-cta-copy { padding: 0 48px 72px; }
  html[data-preset="barber"] .footer { align-items: center; display: grid; gap: 18px 36px; grid-template-columns: auto 1fr auto; }
  html[data-preset="barber"] .footer-brand { grid-row: 1 / 3; margin: 0; }
  html[data-preset="barber"] .footer-nav { justify-self: center; margin: 0; }
}

@media (min-width: 1024px) {
  html[data-preset="barber"] .site-header { padding-left: 56px; padding-right: 56px; }
  html[data-preset="barber"] .hero {
    grid-template-columns: 56px repeat(12, minmax(0, 1fr)) 56px;
    height: 100svh;
    max-height: none;
    min-height: 760px;
    padding: 0;
  }
  html[data-preset="barber"] .hero .eyebrow { grid-column: 2 / 6; }
  html[data-preset="barber"] .hero h1 {
    font-size: clamp(96px, 9.2vw, 142px);
    grid-column: 2 / 9;
    line-height: .91;
  }
  html[data-preset="barber"] .hero-bottom { grid-column: 2 / 7; padding-bottom: 54px; }
  html[data-preset="barber"] .hero-lead { font-size: 17px; max-width: 480px; }
  html[data-preset="barber"] .section { padding-left: 56px; padding-right: 56px; }
  html[data-preset="barber"] .services { padding-bottom: 128px; padding-top: 128px; }
  html[data-preset="barber"] .services .section-heading {
    align-items: end;
    grid-template-columns: minmax(0, 1fr) minmax(300px, .55fr);
    margin-bottom: 72px;
  }
  html[data-preset="barber"] .services-layout {
    align-items: start;
    display: grid;
    gap: clamp(56px, 7vw, 110px);
    grid-template-columns: minmax(0, 1.06fr) minmax(360px, .94fr);
  }
  html[data-preset="barber"] .services-visual {
    aspect-ratio: 4 / 5;
    margin: 0;
    order: initial;
    position: sticky;
    top: 32px;
  }
  html[data-preset="barber"] .service-card { min-height: 0; padding: 30px 0; }
  html[data-preset="barber"] .team-section { padding-bottom: 144px; padding-top: 144px; }
  html[data-preset="barber"] .team-heading { margin-bottom: 96px; }
  html[data-preset="barber"] .team-heading h2 { max-width: 760px; }
  html[data-preset="barber"] .team-grid { gap: 144px; margin: 0 auto; max-width: 1200px; }
  html[data-preset="barber"] .barber-team-story { gap: clamp(64px, 8vw, 128px); }
  html[data-preset="barber"] .team-photo { aspect-ratio: 4 / 5; }
  html[data-preset="barber"] .gallery-section {
    align-items: start;
    display: grid;
    gap: 64px;
    grid-template-columns: minmax(260px, .48fr) minmax(0, 1.52fr);
    padding: 144px 56px;
  }
  html[data-preset="barber"] .gallery-intro { margin: 0; padding: 0; position: sticky; top: 40px; }
  html[data-preset="barber"] .gallery-grid { padding: 0; }
  html[data-preset="barber"] .reviews-section {
    align-items: start;
    display: grid;
    gap: 88px;
    grid-template-columns: minmax(260px, .5fr) minmax(0, 1.5fr);
    padding-bottom: 144px;
    padding-top: 144px;
  }
  html[data-preset="barber"] .reviews-heading { display: block; position: sticky; top: 40px; }
  html[data-preset="barber"] .reviews-heading h2 { font-size: 58px; }
  html[data-preset="barber"] .reviews-list blockquote { display: block; padding: 52px 0; }
  html[data-preset="barber"] .reviews-list blockquote > p { font-size: clamp(34px, 3.1vw, 50px); }
  html[data-preset="barber"] .reviews-list footer { margin-top: 28px; }
  html[data-preset="barber"] .contact-section { grid-template-columns: 1.2fr .8fr; }
  html[data-preset="barber"] .contact-copy { max-width: none; padding: 144px 8vw; }
  html[data-preset="barber"] .map-card { min-height: 820px; }
  html[data-preset="barber"] .final-cta { min-height: 88svh; }
  html[data-preset="barber"] .final-cta-copy { max-width: 900px; padding: 0 7vw 8vh; }
  html[data-preset="barber"] .final-cta-copy h2 { font-size: clamp(76px, 7.4vw, 116px); }
  html[data-preset="barber"] .footer { padding-left: 56px; padding-right: 56px; }
}

/* Barber v2 refinement --------------------------------------------------- */
html[data-preset="barber"] .site-header {
  background: transparent;
  border-bottom-color: rgba(238, 234, 224, .18);
  color: var(--barber-bone);
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
html[data-preset="barber"] .site-header a:focus-visible,
html[data-preset="barber"] .site-header button:focus-visible { outline-color: var(--barber-bone); }

html[data-preset="barber"] .hero {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr) 20px;
  grid-template-rows: 72px auto auto minmax(40px, 1fr) auto;
  height: 100svh;
  isolation: isolate;
  max-height: none;
  min-height: 680px;
  padding: 0;
}
html[data-preset="barber"] .hero::after {
  background:
    linear-gradient(180deg, rgba(9, 10, 9, .58) 0%, rgba(9, 10, 9, .18) 38%, rgba(9, 10, 9, .24) 57%, rgba(9, 10, 9, .9) 100%),
    linear-gradient(90deg, rgba(9, 10, 9, .5) 0%, rgba(9, 10, 9, .04) 82%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}
html[data-preset="barber"] .hero-media {
  grid-column: 1 / -1;
  grid-row: 1 / -1;
  height: 100%;
  margin: 0;
}
html[data-preset="barber"] .hero-media::after { display: none; }
html[data-preset="barber"] .hero-media img {
  filter: saturate(.62) contrast(1.1) brightness(.72);
  object-position: 58% center;
}
html[data-preset="barber"] .hero .eyebrow {
  align-self: start;
  color: var(--barber-bone-deep);
  font-size: 10px;
  grid-column: 2;
  grid-row: 2;
  margin: 28px 0 14px;
  z-index: 3;
}
html[data-preset="barber"] .hero h1 {
  align-self: start;
  font-size: clamp(37px, 9.9vw, 46px);
  grid-column: 2;
  grid-row: 3;
  letter-spacing: -.045em;
  line-height: .94;
  margin: 0;
  max-width: 100%;
  z-index: 3;
}
html[data-preset="barber"] .hero h1 span { white-space: nowrap; }
html[data-preset="barber"] .hero-title-last { margin-left: 0; }
html[data-preset="barber"] .hero-bottom {
  align-self: end;
  display: grid;
  gap: 14px;
  grid-column: 2;
  grid-row: 5;
  padding: 0 0 24px;
  z-index: 3;
}
html[data-preset="barber"] .hero-lead {
  color: var(--barber-bone-deep);
  font-size: 15px;
  line-height: 1.45;
  max-width: 310px;
}
html[data-preset="barber"] .hero-action {
  align-items: center;
  display: grid;
  gap: 10px 14px;
  grid-template-columns: auto minmax(0, 1fr);
}
html[data-preset="barber"] .hero-button {
  min-height: 54px;
  padding: 0 20px;
  width: auto;
}
html[data-preset="barber"] .hero-secondary {
  justify-content: flex-start;
  min-height: 44px;
}
html[data-preset="barber"] .hero-note {
  grid-column: 1 / -1;
  grid-row: 2;
  text-align: left;
}

html[data-preset="barber"] .barber-approach {
  background: var(--barber-bone);
  color: var(--barber-night);
  display: grid;
}
html[data-preset="barber"] .barber-approach-copy {
  order: -1;
  padding: 80px 20px 42px;
}
html[data-preset="barber"] .barber-approach-copy .eyebrow {
  color: #71736b;
  margin-bottom: 22px;
}
html[data-preset="barber"] .barber-approach-copy h2 {
  font-family: var(--serif);
  font-size: clamp(42px, 11.2vw, 54px);
  font-weight: 600;
  letter-spacing: -.045em;
  line-height: 1;
  margin: 0;
  max-width: 520px;
  text-wrap: balance;
}
html[data-preset="barber"] .barber-approach-copy > p:last-child {
  color: #5f615a;
  font-size: 16px;
  line-height: 1.58;
  margin: 26px 0 0;
  max-width: 480px;
}
html[data-preset="barber"] .barber-approach-media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
html[data-preset="barber"] .barber-approach-media img {
  filter: saturate(.65) contrast(1.06) brightness(.9);
  height: 100%;
  object-fit: cover;
  object-position: 50% 35%;
  width: 100%;
}

html[data-preset="barber"] .services { padding-bottom: 84px; padding-top: 84px; }
html[data-preset="barber"] .services .section-heading { margin-bottom: 34px; }
html[data-preset="barber"] .services .section-heading .eyebrow::after { content: " / 02"; }
html[data-preset="barber"] .services .section-heading h2,
html[data-preset="barber"] .team-heading h2,
html[data-preset="barber"] .reviews-heading h2,
html[data-preset="barber"] .contact-copy h2 {
  font-family: var(--body-font);
  font-size: clamp(38px, 9.8vw, 48px);
  font-weight: 700;
  letter-spacing: -.045em;
  line-height: 1;
}
html[data-preset="barber"] .services-visual { margin-bottom: 24px; }
html[data-preset="barber"] .service-card {
  padding: 20px 0;
  transition: transform 180ms ease;
}
html[data-preset="barber"] .service-card:hover,
html[data-preset="barber"] .service-card:focus-visible { transform: translateX(4px); }
html[data-preset="barber"] .service-card:hover .service-index,
html[data-preset="barber"] .service-card:focus-visible .service-index,
html[data-preset="barber"] .service-card:hover .service-link,
html[data-preset="barber"] .service-card:focus-visible .service-link { color: white; }
html[data-preset="barber"] .service-card h3 {
  font-size: clamp(24px, 6.4vw, 30px);
  line-height: 1.08;
}
html[data-preset="barber"] .service-card p { font-size: 14px; line-height: 1.5; }
html[data-preset="barber"] .service-link { font-size: 13px; }

html[data-preset="barber"] .team-section { padding-bottom: 88px; padding-top: 88px; }
html[data-preset="barber"] .team-heading { margin-bottom: 48px; }
html[data-preset="barber"] .team-heading .eyebrow::after { content: " / 03"; }
html[data-preset="barber"] .team-grid { gap: 64px; }
html[data-preset="barber"] .barber-team-story { gap: 22px; }
html[data-preset="barber"] .team-number { margin-bottom: 14px; }
html[data-preset="barber"] .team-card h3 {
  font-size: clamp(32px, 8.2vw, 42px);
  line-height: 1.02;
}
html[data-preset="barber"] .team-role { margin-bottom: 12px; }
html[data-preset="barber"] .team-book { margin-top: 20px; }

html[data-preset="barber"] .gallery-section { padding-bottom: 88px; }
html[data-preset="barber"] .gallery-intro { padding-top: 84px; }
html[data-preset="barber"] .gallery-intro .eyebrow::after { content: " / 04"; }
html[data-preset="barber"] .gallery-intro h2 {
  font-size: clamp(40px, 10.4vw, 52px);
  line-height: 1.02;
}
html[data-preset="barber"] .gallery-grid { gap: 10px; }

html[data-preset="barber"] .reviews-section { padding-bottom: 88px; padding-top: 88px; }
html[data-preset="barber"] .reviews-heading { margin-bottom: 42px; }
html[data-preset="barber"] .reviews-heading .eyebrow::after { content: " / 05"; }
html[data-preset="barber"] .reviews-list blockquote { padding: 28px 0; }
html[data-preset="barber"] .reviews-list blockquote > p { font-size: clamp(24px, 6.6vw, 32px); }

html[data-preset="barber"] .contact-copy { padding-bottom: 68px; padding-top: 84px; }
html[data-preset="barber"] .contact-copy .eyebrow::after { content: " / 06"; }
html[data-preset="barber"] .contact-details { margin-bottom: 32px; margin-top: 32px; }

html[data-preset="barber"] .final-cta { min-height: 560px; }
html[data-preset="barber"] .final-cta > img { object-position: 66% center; }
html[data-preset="barber"] .final-cta-copy { max-width: 620px; padding-bottom: 48px; }
html[data-preset="barber"] .final-cta-copy h2 {
  font-family: var(--body-font);
  font-size: clamp(44px, 11.2vw, 58px);
  font-weight: 700;
  letter-spacing: -.05em;
  line-height: .98;
}

@media (min-width: 700px) {
  html[data-preset="barber"] .hero {
    grid-template-columns: 40px repeat(10, minmax(0, 1fr)) 40px;
    grid-template-rows: auto minmax(0, 1fr) auto;
    height: min(900px, 100svh);
    min-height: 720px;
  }
  html[data-preset="barber"] .hero::after {
    background: linear-gradient(90deg, rgba(8, 9, 8, .9) 0%, rgba(8, 9, 8, .62) 42%, rgba(8, 9, 8, .08) 78%);
  }
  html[data-preset="barber"] .hero-media img { object-position: 58% center; }
  html[data-preset="barber"] .hero .eyebrow {
    align-self: end;
    font-size: 11px;
    grid-column: 2 / 7;
    grid-row: 1;
    margin: 116px 0 0;
  }
  html[data-preset="barber"] .hero h1 {
    align-self: center;
    font-size: clamp(66px, 8.2vw, 106px);
    grid-column: 2 / 11;
    grid-row: 2;
    line-height: .92;
    margin: 22px 0;
  }
  html[data-preset="barber"] .hero-bottom {
    grid-column: 2 / 8;
    grid-row: 3;
    padding-bottom: 40px;
  }
  html[data-preset="barber"] .hero-lead { font-size: 16px; max-width: 420px; }
  html[data-preset="barber"] .hero-action {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 24px;
  }
  html[data-preset="barber"] .hero-note { text-align: left; }

  html[data-preset="barber"] .barber-approach {
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    height: 680px;
    min-height: 0;
  }
  html[data-preset="barber"] .barber-approach-copy {
    align-self: center;
    grid-column: 1;
    grid-row: 1;
    order: initial;
    padding: 96px 48px;
  }
  html[data-preset="barber"] .barber-approach-copy h2 { font-size: clamp(52px, 7vw, 74px); }
  html[data-preset="barber"] .barber-approach-media {
    aspect-ratio: auto;
    grid-column: 2;
    grid-row: 1;
    height: 100%;
    min-height: 0;
  }

  html[data-preset="barber"] .services { padding-bottom: 108px; padding-top: 108px; }
  html[data-preset="barber"] .services .section-heading h2,
  html[data-preset="barber"] .team-heading h2,
  html[data-preset="barber"] .reviews-heading h2,
  html[data-preset="barber"] .contact-copy h2 { font-size: clamp(44px, 5.5vw, 60px); }
  html[data-preset="barber"] .service-card { padding: 24px 0; }
  html[data-preset="barber"] .service-card h3 { font-size: clamp(25px, 3.4vw, 32px); }
  html[data-preset="barber"] .team-section { padding-bottom: 108px; padding-top: 108px; }
  html[data-preset="barber"] .team-heading { margin-bottom: 64px; }
  html[data-preset="barber"] .team-grid { gap: 88px; }
  html[data-preset="barber"] .barber-team-story { gap: 56px; }
  html[data-preset="barber"] .team-card h3 { font-size: clamp(38px, 4.8vw, 50px); }
  html[data-preset="barber"] .gallery-intro h2 { font-size: clamp(46px, 5.4vw, 58px); }
  html[data-preset="barber"] .reviews-section { padding-bottom: 108px; padding-top: 108px; }
  html[data-preset="barber"] .reviews-list blockquote > p { font-size: clamp(28px, 3.6vw, 38px); }
  html[data-preset="barber"] .contact-copy { padding-bottom: 96px; padding-top: 108px; }
  html[data-preset="barber"] .final-cta { min-height: 640px; }
  html[data-preset="barber"] .final-cta-copy h2 { font-size: clamp(54px, 6vw, 76px); }
}

@media (min-width: 1024px) {
  html[data-preset="barber"] .hero {
    grid-template-columns: 56px repeat(12, minmax(0, 1fr)) 56px;
    height: 100svh;
    min-height: 760px;
  }
  html[data-preset="barber"] .hero .eyebrow { grid-column: 2 / 7; }
  html[data-preset="barber"] .hero h1 {
    font-size: clamp(84px, 7.6vw, 110px);
    grid-column: 2 / 11;
  }
  html[data-preset="barber"] .hero-bottom { grid-column: 2 / 7; padding-bottom: 48px; }
  html[data-preset="barber"] .barber-approach { height: 720px; }
  html[data-preset="barber"] .barber-approach-copy { padding: 112px 8vw; }
  html[data-preset="barber"] .barber-approach-copy h2 { font-size: clamp(54px, 4.6vw, 68px); }
  html[data-preset="barber"] .services { padding-bottom: 120px; padding-top: 120px; }
  html[data-preset="barber"] .services .section-heading { margin-bottom: 60px; }
  html[data-preset="barber"] .services .section-heading h2,
  html[data-preset="barber"] .team-heading h2,
  html[data-preset="barber"] .reviews-heading h2,
  html[data-preset="barber"] .contact-copy h2 { font-size: 56px; }
  html[data-preset="barber"] .service-card { padding: 25px 0; }
  html[data-preset="barber"] .team-section { padding-bottom: 120px; padding-top: 120px; }
  html[data-preset="barber"] .team-heading { margin-bottom: 72px; }
  html[data-preset="barber"] .team-grid { gap: 104px; max-width: 1120px; }
  html[data-preset="barber"] .barber-team-story { gap: clamp(56px, 6vw, 92px); }
  html[data-preset="barber"] .team-card h3 { font-size: 48px; }
  html[data-preset="barber"] .gallery-section { padding-bottom: 120px; padding-top: 120px; }
  html[data-preset="barber"] .gallery-intro h2 { font-size: 54px; }
  html[data-preset="barber"] .reviews-section { padding-bottom: 120px; padding-top: 120px; }
  html[data-preset="barber"] .reviews-heading h2 { font-size: 52px; }
  html[data-preset="barber"] .reviews-list blockquote > p { font-size: clamp(30px, 2.6vw, 42px); }
  html[data-preset="barber"] .contact-copy { padding-bottom: 120px; padding-top: 120px; }
  html[data-preset="barber"] .final-cta { min-height: 680px; }
  html[data-preset="barber"] .final-cta-copy { max-width: 760px; padding-bottom: 64px; }
  html[data-preset="barber"] .final-cta-copy h2 { font-size: 72px; }
}

/* Barber v2: restrained motion and intentional section joins. */
html[data-preset="barber"] .barber-approach,
html[data-preset="barber"] .contact-section,
html[data-preset="barber"] .final-cta { position: relative; }
html[data-preset="barber"] .barber-approach {
  margin-top: 0;
  z-index: 2;
}
html[data-preset="barber"] .contact-section {
  padding-bottom: 28px;
  z-index: 2;
}
html[data-preset="barber"] .final-cta { z-index: 1; }

html[data-preset="barber"] .map-card > a {
  align-items: center;
  border: 1px solid var(--barber-bone);
  display: flex;
  gap: 28px;
  justify-content: space-between;
  line-height: 1;
  min-height: 56px;
  padding: 0 18px;
  transition: background-color 220ms ease, color 220ms ease;
}
html[data-preset="barber"] .map-card > a:hover,
html[data-preset="barber"] .map-card > a:focus-visible {
  background: var(--barber-night);
  color: var(--barber-bone);
}
html[data-preset="barber"] :is(
  .hero-secondary,
  .team-book,
  .map-card > a
):focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 5px;
}

html[data-preset="barber"] :is(
  .site-header .button,
  .hero .button,
  .contact-section .button,
  .final-cta .button
) {
  transition: background-color 220ms ease, border-color 220ms ease, color 220ms ease, transform 180ms ease;
}
html[data-preset="barber"] :is(
  .site-header .button,
  .hero .button,
  .contact-section .button,
  .final-cta .button
):hover,
html[data-preset="barber"] :is(
  .site-header .button,
  .hero .button,
  .contact-section .button,
  .final-cta .button
):focus-visible {
  background: transparent;
  border-color: var(--barber-bone);
  color: var(--barber-bone);
}
html[data-preset="barber"] :is(
  .site-header .button,
  .hero .button,
  .contact-section .button,
  .final-cta .button
):active { transform: translateY(1px); }

html[data-preset="barber"] :is(.hero-secondary, .team-book) {
  position: relative;
  text-decoration: none;
}
html[data-preset="barber"] :is(.hero-secondary, .team-book)::after {
  background: currentColor;
  bottom: 2px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
  width: calc(100% - 27px);
}
html[data-preset="barber"] :is(.hero-secondary, .team-book):hover::after,
html[data-preset="barber"] :is(.hero-secondary, .team-book):focus-visible::after { transform: scaleX(1); }
html[data-preset="barber"] :is(
  .site-header .button,
  .hero .button,
  .hero-secondary,
  .service-link,
  .team-book,
  .map-card > a,
  .contact-section .button,
  .final-cta .button
) svg {
  display: block;
  flex: 0 0 auto;
  transition: transform 220ms cubic-bezier(.22, .61, .36, 1);
}
html[data-preset="barber"] :is(
  .site-header .button,
  .hero .button,
  .hero-secondary,
  .team-book,
  .map-card > a,
  .contact-section .button,
  .final-cta .button
):hover svg,
html[data-preset="barber"] :is(
  .site-header .button,
  .hero .button,
  .hero-secondary,
  .team-book,
  .map-card > a,
  .contact-section .button,
  .final-cta .button
):focus-visible svg,
html[data-preset="barber"] .service-card:hover .service-link svg,
html[data-preset="barber"] .service-card:focus-visible .service-link svg { transform: translateX(5px); }

html[data-preset="barber"] .desktop-nav a {
  opacity: .78;
  transition: color 220ms ease, opacity 220ms ease;
}
html[data-preset="barber"] .desktop-nav a:hover,
html[data-preset="barber"] .desktop-nav a:focus-visible { opacity: 1; }

html[data-preset="barber"] .service-card {
  transition: border-color 220ms ease, opacity 220ms ease, transform 220ms ease;
}
html[data-preset="barber"] .services-visual img {
  opacity: 1;
  transform: scale(1);
  transition: opacity 280ms ease, transform 400ms cubic-bezier(.22, .61, .36, 1);
}
html[data-preset="barber"] .services-visual img.is-changing {
  opacity: .34;
  transform: scale(1.018);
}

html.barber-motion-enabled[data-preset="barber"] .hero-media img {
  opacity: .9;
  transform: scale(1.035);
  transform-origin: center;
}
html.barber-motion-enabled.barber-hero-ready[data-preset="barber"] .hero-media img {
  opacity: 1;
  transform: scale(1);
  transition: opacity 1100ms cubic-bezier(.22, .61, .36, 1), transform 1300ms cubic-bezier(.22, .61, .36, 1);
}
html.barber-motion-enabled[data-preset="barber"] .hero .eyebrow,
html.barber-motion-enabled[data-preset="barber"] .hero h1 .hero-title-line,
html.barber-motion-enabled[data-preset="barber"] .hero-bottom {
  opacity: 0;
  transform: translateY(14px);
}
html.barber-motion-enabled[data-preset="barber"] .hero h1 .hero-title-line { transform: translateY(22px); }
html.barber-motion-enabled.barber-hero-ready[data-preset="barber"] .hero .eyebrow,
html.barber-motion-enabled.barber-hero-ready[data-preset="barber"] .hero h1 .hero-title-line,
html.barber-motion-enabled.barber-hero-ready[data-preset="barber"] .hero-bottom {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 620ms cubic-bezier(.22, .61, .36, 1), transform 620ms cubic-bezier(.22, .61, .36, 1);
}
html.barber-motion-enabled.barber-hero-ready[data-preset="barber"] .hero .eyebrow { transition-delay: 180ms; }
html.barber-motion-enabled.barber-hero-ready[data-preset="barber"] .hero h1 .hero-title-line:first-child { transition-delay: 260ms; }
html.barber-motion-enabled.barber-hero-ready[data-preset="barber"] .hero h1 .hero-title-line:last-child { transition-delay: 350ms; }
html.barber-motion-enabled.barber-hero-ready[data-preset="barber"] .hero-bottom { transition-delay: 470ms; }

html.barber-motion-enabled[data-preset="barber"] .barber-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms cubic-bezier(.22, .61, .36, 1), transform 650ms cubic-bezier(.22, .61, .36, 1);
  transition-delay: var(--barber-reveal-delay, 0ms);
}
html.barber-motion-enabled[data-preset="barber"] .barber-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
html[data-preset="barber"] :is(
  .barber-approach-media,
  .services-visual,
  .gallery-grid,
  .reviews-list,
  .map-card,
  .barber-team-story .team-copy
) { --barber-reveal-delay: 80ms; }

@media (hover: hover) and (min-width: 700px) {
  html[data-preset="barber"] .services-grid:hover .service-card { opacity: .5; }
  html[data-preset="barber"] .services-grid .service-card:hover,
  html[data-preset="barber"] .services-grid .service-card:focus-visible {
    opacity: 1;
    transform: translateX(5px);
  }
  html[data-preset="barber"] :is(.team-photo img, .gallery-photo img) {
    transition: filter 480ms ease, transform 480ms cubic-bezier(.22, .61, .36, 1);
  }
  html[data-preset="barber"] .barber-team-story:hover .team-photo img { transform: scale(1.025); }
  html[data-preset="barber"] .gallery-photo:hover img {
    filter: saturate(.72) contrast(1.08) brightness(.91);
    transform: scale(1.02);
  }
}

@media (max-width: 699px) {
  html[data-preset="barber"] .mobile-nav:not([hidden]) a,
  html[data-preset="barber"] .mobile-nav:not([hidden]) button {
    animation: barber-menu-item 260ms cubic-bezier(.22, .61, .36, 1) both;
  }
  html[data-preset="barber"] .mobile-nav:not([hidden]) :nth-child(2) { animation-delay: 35ms; }
  html[data-preset="barber"] .mobile-nav:not([hidden]) :nth-child(3) { animation-delay: 70ms; }
  html[data-preset="barber"] .mobile-nav:not([hidden]) :nth-child(4) { animation-delay: 105ms; }
  html[data-preset="barber"] .mobile-nav:not([hidden]) :nth-child(5) { animation-delay: 140ms; }
  html[data-preset="barber"] .mobile-nav:not([hidden]) :nth-child(6) { animation-delay: 175ms; }
  html.barber-motion-enabled[data-preset="barber"] .barber-reveal {
    transition-duration: 520ms;
    transform: translateY(18px);
  }
  html.barber-motion-enabled[data-preset="barber"] .barber-reveal.is-visible { transform: translateY(0); }
}

@media (min-width: 700px) {
  html[data-preset="barber"] .barber-approach { margin-top: 0; }
  html[data-preset="barber"] .barber-approach-media {
    height: 100%;
    margin-top: 0;
    position: relative;
    z-index: 2;
  }
  html[data-preset="barber"] .contact-section { padding-bottom: 48px; }
  html[data-preset="barber"] .map-card > a { min-width: 220px; }
}

@keyframes barber-menu-item {
  from { opacity: 0; transform: translateX(8px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Beauty public site v2 --------------------------------------------------- */
html[data-preset="beauty"] {
  --beauty-ivory: #f5eee8;
  --beauty-cream: #fffaf6;
  --beauty-stone: #d8cbc3;
  --beauty-blush: #caa9a5;
  --beauty-plum: #6c3f4b;
  --beauty-cocoa: #3d292d;
  --beauty-ink: #35282a;
  --beauty-muted: #786b6c;
  --beauty-line: rgba(61, 41, 45, .18);
  --paper: var(--beauty-ivory);
  --paper-light: var(--beauty-cream);
  --ink: var(--beauty-ink);
  --muted: var(--beauty-muted);
  --olive: var(--beauty-plum);
  --accent-strong: #553039;
  --line: var(--beauty-line);
  --radius: 0px;
  color: var(--beauty-ink);
  background: var(--beauty-ivory);
}

html[data-preset="beauty"] body { background: var(--beauty-ivory); }
html[data-preset="beauty"] main { overflow: clip; }

html[data-preset="beauty"] [data-barber-only][data-beauty-public] { display: block !important; }
html[data-preset="beauty"] :is(.desktop-nav, .mobile-nav) [data-beauty-public],
html[data-preset="beauty"] .footer-nav[data-beauty-public],
html[data-preset="beauty"] .hero-secondary[data-beauty-public] { display: flex !important; }

html[data-preset="beauty"] :is(a, button):focus-visible {
  outline-color: var(--beauty-plum);
  outline-offset: 4px;
}

html[data-preset="beauty"] .site-header {
  background: var(--beauty-ivory);
  border-bottom-color: var(--beauty-line);
  color: var(--beauty-ink);
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 40;
}

html[data-preset="beauty"] .brand {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -.035em;
}

html[data-preset="beauty"] .menu-button { color: var(--beauty-ink); }
html[data-preset="beauty"] .menu-button-icon i { background: currentColor; }
html[data-preset="beauty"] .mobile-nav {
  background: rgba(255, 250, 246, .98);
  border-bottom: 1px solid var(--beauty-line);
  color: var(--beauty-ink);
}
html[data-preset="beauty"] .mobile-nav button {
  background: var(--beauty-plum);
  border-color: var(--beauty-plum);
  border-radius: 1px;
}

html[data-preset="beauty"] .button {
  border-radius: 1px;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: .035em;
  min-height: 54px;
  padding-inline: 24px;
}
html[data-preset="beauty"] .button svg,
html[data-preset="beauty"] .service-link svg,
html[data-preset="beauty"] .team-book svg,
html[data-preset="beauty"] .map-card a svg {
  transition: transform 220ms cubic-bezier(.22, .61, .36, 1);
}
html[data-preset="beauty"] .button:hover svg,
html[data-preset="beauty"] .service-card:hover .service-link svg,
html[data-preset="beauty"] .service-card:focus-visible .service-link svg,
html[data-preset="beauty"] .team-book:hover svg,
html[data-preset="beauty"] .map-card a:hover svg { transform: translateX(5px); }

html[data-preset="beauty"] .hero {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr) 20px;
  grid-template-rows: 72px auto auto minmax(300px, 43svh) auto;
  height: auto;
  max-height: none;
  min-height: 0;
  overflow: hidden;
  position: relative;
}
html[data-preset="beauty"] .hero::after {
  display: none;
}
html[data-preset="beauty"] .hero-media {
  border-radius: 0;
  grid-column: 1 / -1;
  grid-row: 4;
  margin: 24px 0 0;
  min-height: 100%;
}
html[data-preset="beauty"] .hero-media img {
  filter: saturate(.82) contrast(.94) brightness(1.03);
  object-position: 50% center;
}
html[data-preset="beauty"] .hero-copy {
  display: contents;
}
html[data-preset="beauty"] .hero .eyebrow {
  align-self: flex-start;
  align-self: end;
  color: var(--beauty-plum);
  grid-column: 2;
  grid-row: 2;
  margin: 28px 0 14px;
  position: relative;
}
html[data-preset="beauty"] .hero h1 {
  align-self: flex-start;
  color: var(--beauty-ink);
  font-size: clamp(44px, 12.2vw, 52px);
  grid-column: 2;
  grid-row: 3;
  letter-spacing: -.052em;
  line-height: .88;
  max-width: 6.6em;
  position: relative;
  text-shadow: none;
}
html[data-preset="beauty"] .hero-title-last { margin-left: .62em; }
html[data-preset="beauty"] .hero-bottom {
  align-self: flex-start;
  display: grid;
  gap: 17px;
  grid-column: 2;
  grid-row: 5;
  padding: 26px 0 34px;
  position: relative;
  width: 100%;
}
html[data-preset="beauty"] .hero-lead {
  color: var(--beauty-muted);
  font-size: 14px;
  line-height: 1.5;
  max-width: 390px;
}
html[data-preset="beauty"] .hero-action {
  align-items: center;
  display: grid;
  gap: 10px 18px;
  grid-template-columns: max-content minmax(0, 1fr);
}
html[data-preset="beauty"] .hero-button {
  background: var(--beauty-plum);
  border-color: var(--beauty-plum);
  color: var(--beauty-cream);
  min-height: 54px;
}
html[data-preset="beauty"] .hero-button:hover {
  background: transparent;
  border-color: var(--beauty-plum);
  color: var(--beauty-plum);
}
html[data-preset="beauty"] .hero-secondary {
  align-items: center;
  color: var(--beauty-ink);
  font-size: 12px;
  font-weight: 650;
  gap: 7px;
  min-height: 44px;
  position: relative;
  width: fit-content;
}
html[data-preset="beauty"] .hero-secondary::after,
html[data-preset="beauty"] .team-book::after {
  background: currentColor;
  bottom: 7px;
  content: "";
  height: 1px;
  left: 0;
  opacity: .45;
  position: absolute;
  right: 0;
  transform: scaleX(.22);
  transform-origin: left;
  transition: transform 220ms ease;
}
html[data-preset="beauty"] .hero-secondary:hover::after,
html[data-preset="beauty"] .team-book:hover::after { transform: scaleX(1); }
html[data-preset="beauty"] .hero-secondary svg { height: 16px; width: 16px; }
html[data-preset="beauty"] .hero-note {
  color: var(--beauty-muted);
  font-size: 11px;
  grid-column: 1 / -1;
}

html[data-preset="beauty"] .section { padding: 76px 20px; }
html[data-preset="beauty"] .eyebrow {
  color: var(--beauty-plum);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
}
html[data-preset="beauty"] .section-heading { margin-bottom: 38px; }
html[data-preset="beauty"] :is(.section-heading h2, .gallery-intro h2, .contact-copy h2) {
  font-size: clamp(38px, 10.8vw, 52px);
  font-weight: 500;
  letter-spacing: -.042em;
  line-height: .96;
}
html[data-preset="beauty"] :is(.section-heading > p:last-child, .gallery-intro > p:last-child) {
  font-size: 15px;
  line-height: 1.55;
  margin-top: 18px;
}

html[data-preset="beauty"] .services {
  background: var(--beauty-cream);
  padding-top: 90px;
}
html[data-preset="beauty"] .services-layout { display: grid; gap: 34px; }
html[data-preset="beauty"] .services-visual {
  background: var(--beauty-stone);
  margin: 0;
  min-height: 0;
  overflow: hidden;
  position: relative;
}
html[data-preset="beauty"] .services-visual img {
  aspect-ratio: 5 / 4;
  display: block;
  filter: saturate(.76) contrast(.92);
  height: auto;
  object-fit: cover;
  object-position: center;
  transition: opacity 360ms ease, transform 520ms cubic-bezier(.22, .61, .36, 1);
  width: 100%;
}
html[data-preset="beauty"] .services-visual img.is-changing { opacity: .38; transform: scale(1.012); }
html[data-preset="beauty"] .services-visual figcaption {
  align-items: baseline;
  background: rgba(255, 250, 246, .92);
  bottom: 0;
  display: flex;
  gap: 14px;
  justify-content: space-between;
  left: 0;
  padding: 13px 16px;
  position: absolute;
  right: 0;
}
html[data-preset="beauty"] .services-visual figcaption span {
  color: var(--beauty-muted);
  font-size: 9px;
  letter-spacing: .15em;
  text-transform: uppercase;
}
html[data-preset="beauty"] .services-visual figcaption b { font-size: 12px; font-weight: 600; text-align: right; }
html[data-preset="beauty"] .services-grid { border-top-color: var(--beauty-line); }
html[data-preset="beauty"] .beauty-service-row {
  align-items: center;
  cursor: pointer;
  gap: 12px 16px;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  min-height: 0;
  padding: 22px 0;
  transition: color 240ms ease, opacity 240ms ease, transform 240ms ease;
}
html[data-preset="beauty"] .beauty-service-row .service-index {
  align-self: start;
  color: var(--beauty-blush);
  font-size: 10px;
  letter-spacing: .12em;
  padding-top: 5px;
}
html[data-preset="beauty"] .beauty-service-row .service-main { grid-column: 2 / -1; }
html[data-preset="beauty"] .beauty-service-row .service-kicker { margin-bottom: 8px; }
html[data-preset="beauty"] .beauty-service-row h3 {
  font-size: clamp(24px, 7.2vw, 32px);
  font-weight: 500;
  margin-bottom: 8px;
}
html[data-preset="beauty"] .beauty-service-row .service-main > p:last-child { font-size: 13px; line-height: 1.5; }
html[data-preset="beauty"] .beauty-service-row .service-meta { grid-column: 2; }
html[data-preset="beauty"] .beauty-service-row .service-link {
  color: var(--beauty-plum);
  grid-column: 3;
  padding: 4px 0;
}

html[data-preset="beauty"] .team-section {
  background: #e9ddd5;
  padding-bottom: 90px;
  padding-top: 88px;
}
html[data-preset="beauty"] .team-grid {
  display: grid;
  gap: 68px;
  grid-auto-columns: auto;
  grid-auto-flow: row;
  margin: 0;
  overflow: visible;
  padding: 0;
}
html[data-preset="beauty"] .beauty-team-story { display: grid; gap: 23px; }
html[data-preset="beauty"] .beauty-team-story .team-photo {
  aspect-ratio: 4 / 5;
  border-radius: 0;
  margin: 0;
}
html[data-preset="beauty"] .beauty-team-story .team-photo img {
  filter: saturate(.72) contrast(.92) brightness(1.03);
  object-position: center top;
}
html[data-preset="beauty"] .beauty-team-story .team-copy { padding-right: 10px; }
html[data-preset="beauty"] .team-number {
  color: var(--beauty-plum);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
  margin: 0 0 14px;
  text-transform: uppercase;
}
html[data-preset="beauty"] .beauty-team-story h3 {
  font-size: clamp(34px, 10vw, 46px);
  font-weight: 500;
  line-height: .96;
  margin-bottom: 10px;
}
html[data-preset="beauty"] .beauty-team-story .team-role {
  color: var(--beauty-plum);
  font-size: 12px;
  letter-spacing: .05em;
  margin-bottom: 14px;
  text-transform: uppercase;
}
html[data-preset="beauty"] .beauty-team-story .team-note {
  line-height: 1.55;
  max-width: 390px;
}
html[data-preset="beauty"] .team-book {
  align-items: center;
  background: none;
  border: 0;
  color: var(--beauty-ink);
  cursor: pointer;
  display: flex;
  font-size: 13px;
  font-weight: 650;
  gap: 8px;
  margin-top: 20px;
  min-height: 44px;
  padding: 0;
  position: relative;
  width: fit-content;
}
html[data-preset="beauty"] .team-book svg { height: 16px; width: 16px; }

html[data-preset="beauty"] .gallery-section {
  background: var(--beauty-cocoa);
  color: var(--beauty-cream);
  padding-bottom: 86px;
  padding-top: 86px;
}
html[data-preset="beauty"] .gallery-section .eyebrow,
html[data-preset="beauty"] .gallery-section .gallery-intro > p:last-child { color: rgba(255, 250, 246, .64); }
html[data-preset="beauty"] .gallery-intro { margin-bottom: 34px; }
html[data-preset="beauty"] .gallery-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}
html[data-preset="beauty"] .gallery-photo {
  aspect-ratio: 4 / 5;
  border-radius: 0;
}
html[data-preset="beauty"] .gallery-photo:nth-child(2) { margin-left: 34px; }
html[data-preset="beauty"] .gallery-photo:nth-child(3) { aspect-ratio: 5 / 4; margin-right: 34px; }
html[data-preset="beauty"] .gallery-photo img {
  filter: saturate(.7) contrast(.96);
  transition: filter 500ms ease, transform 600ms cubic-bezier(.22, .61, .36, 1);
}

html[data-preset="beauty"] .reviews-section {
  background: var(--beauty-ivory);
  padding-bottom: 92px;
  padding-top: 92px;
}
html[data-preset="beauty"] .reviews-list { border-top-color: var(--beauty-line); }
html[data-preset="beauty"] .reviews-list blockquote {
  border-bottom-color: var(--beauty-line);
  padding: 30px 0;
}
html[data-preset="beauty"] .reviews-list blockquote > p {
  font-size: clamp(24px, 6.8vw, 34px);
  font-weight: 500;
  letter-spacing: -.032em;
  line-height: 1.22;
}
html[data-preset="beauty"] .reviews-list footer {
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

html[data-preset="beauty"] .contact-section {
  background: #e2d2c8;
  color: var(--beauty-ink);
  gap: 42px;
  padding: 84px 20px;
}
html[data-preset="beauty"] .contact-copy .eyebrow { color: var(--beauty-plum); }
html[data-preset="beauty"] .contact-details { border-top-color: var(--beauty-line); margin: 32px 0; }
html[data-preset="beauty"] .contact-details p { border-bottom-color: var(--beauty-line); }
html[data-preset="beauty"] .contact-details span { color: var(--beauty-muted); }
html[data-preset="beauty"] .contact-details a { text-decoration-color: rgba(61, 41, 45, .32); }
html[data-preset="beauty"] .button-light {
  background: var(--beauty-plum);
  border-color: var(--beauty-plum);
  color: var(--beauty-cream);
}
html[data-preset="beauty"] .button-light:hover {
  background: transparent;
  color: var(--beauty-plum);
}
html[data-preset="beauty"] .map-card {
  background: var(--beauty-cocoa);
  border-radius: 0;
  min-height: 450px;
}
html[data-preset="beauty"] .map-card::before,
html[data-preset="beauty"] .map-card::after,
html[data-preset="beauty"] .map-marker,
html[data-preset="beauty"] .map-street { display: none; }
html[data-preset="beauty"] .contact-visual {
  filter: saturate(.68) contrast(.96) brightness(.86);
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}
html[data-preset="beauty"] .map-card::after {
  background: linear-gradient(180deg, rgba(42, 29, 32, .16), rgba(42, 29, 32, .62));
  content: "";
  display: block;
  inset: 0;
  position: absolute;
}
html[data-preset="beauty"] .map-district {
  color: var(--beauty-cream);
  font-size: 31px;
  font-weight: 500;
  left: 22px;
  top: 22px;
  z-index: 2;
}
html[data-preset="beauty"] .map-card > a {
  background: var(--beauty-cream);
  bottom: 18px;
  color: var(--beauty-ink);
  font-size: 12px;
  gap: 28px;
  justify-content: space-between;
  left: 18px;
  min-height: 54px;
  padding: 0 18px;
  right: 18px;
}

html[data-preset="beauty"] .final-cta {
  background: var(--beauty-cream);
  color: var(--beauty-ink);
  display: grid !important;
  grid-template-columns: 1fr;
}
html[data-preset="beauty"] .final-cta > img {
  aspect-ratio: 4 / 3;
  display: block;
  filter: saturate(.72) contrast(.94);
  height: auto;
  object-fit: cover;
  position: static;
  width: 100%;
}
html[data-preset="beauty"] .final-cta-overlay { display: none; }
html[data-preset="beauty"] .final-cta-copy {
  align-self: center;
  max-width: none;
  padding: 62px 20px 72px;
  position: static;
}
html[data-preset="beauty"] .final-cta-copy h2 {
  font-family: var(--serif);
  font-size: clamp(46px, 12vw, 62px);
  font-weight: 500;
  letter-spacing: -.048em;
  line-height: .92;
  margin: 0 0 18px;
}
html[data-preset="beauty"] .final-cta-copy > p:not(.eyebrow) {
  color: var(--beauty-muted);
  line-height: 1.5;
  margin: 0 0 28px;
}

html[data-preset="beauty"] .footer {
  background: var(--beauty-cocoa);
  color: rgba(255, 250, 246, .66);
  padding-bottom: 36px;
  padding-top: 36px;
}
html[data-preset="beauty"] .footer-brand { color: var(--beauty-cream); }
html[data-preset="beauty"] .footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}
html[data-preset="beauty"] .footer-nav a { min-height: 32px; }

html.beauty-motion-enabled[data-preset="beauty"] .hero-media img {
  opacity: .92;
  transform: scale(1.022);
  transform-origin: center;
}
html.beauty-motion-enabled.beauty-hero-ready[data-preset="beauty"] .hero-media img {
  opacity: 1;
  transform: scale(1);
  transition: opacity 1050ms cubic-bezier(.22, .61, .36, 1), transform 1250ms cubic-bezier(.22, .61, .36, 1);
}
html.beauty-motion-enabled[data-preset="beauty"] .hero :is(.eyebrow, h1, .hero-bottom) {
  opacity: 0;
  transform: translateY(16px);
}
html.beauty-motion-enabled.beauty-hero-ready[data-preset="beauty"] .hero :is(.eyebrow, h1, .hero-bottom) {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 650ms cubic-bezier(.22, .61, .36, 1), transform 650ms cubic-bezier(.22, .61, .36, 1);
}
html.beauty-motion-enabled.beauty-hero-ready[data-preset="beauty"] .hero .eyebrow { transition-delay: 170ms; }
html.beauty-motion-enabled.beauty-hero-ready[data-preset="beauty"] .hero h1 { transition-delay: 250ms; }
html.beauty-motion-enabled.beauty-hero-ready[data-preset="beauty"] .hero-bottom { transition-delay: 370ms; }
html.beauty-motion-enabled[data-preset="beauty"] .beauty-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 680ms cubic-bezier(.22, .61, .36, 1), transform 680ms cubic-bezier(.22, .61, .36, 1);
}
html.beauty-motion-enabled[data-preset="beauty"] .beauty-reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (hover: hover) and (min-width: 700px) {
  html[data-preset="beauty"] .beauty-service-row:hover,
  html[data-preset="beauty"] .beauty-service-row:focus-visible { color: var(--beauty-plum); transform: translateX(4px); }
  html[data-preset="beauty"] .services-grid:hover .beauty-service-row:not(:hover) { opacity: .48; }
  html[data-preset="beauty"] :is(.beauty-team-story .team-photo, .gallery-photo) img { transition-duration: 560ms; }
  html[data-preset="beauty"] .beauty-team-story:hover .team-photo img { transform: scale(1.018); }
  html[data-preset="beauty"] .gallery-photo:hover img { filter: saturate(.78) contrast(.98); transform: scale(1.015); }
}

@media (min-width: 700px) {
  html[data-preset="beauty"] .site-header {
    background: rgba(245, 238, 232, .94);
    border-bottom-color: rgba(61, 41, 45, .12);
    color: var(--beauty-ink);
    height: 82px;
    padding-inline: 42px;
  }
  html[data-preset="beauty"] .desktop-nav [data-beauty-public] { display: flex !important; }
  html[data-preset="beauty"] .desktop-nav a { color: rgba(53, 40, 42, .72); }
  html[data-preset="beauty"] .desktop-nav a::after { bottom: 21px; }
  html[data-preset="beauty"] .header-book {
    background: var(--beauty-plum);
    border-color: var(--beauty-plum);
    color: var(--beauty-cream);
    min-height: 46px;
  }
  html[data-preset="beauty"] .header-book:hover { background: transparent; color: var(--beauty-plum); }

  html[data-preset="beauty"] .hero {
    background: var(--beauty-ivory);
    column-gap: 0;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-template-rows: 150px minmax(0, 1fr) auto;
    height: clamp(760px, 100svh, 920px);
    max-height: 920px;
    min-height: 760px;
    padding: 0 48px 58px;
  }
  html[data-preset="beauty"] .hero::after { display: none; }
  html[data-preset="beauty"] .hero-copy { display: contents; }
  html[data-preset="beauty"] .hero-media {
    grid-column: 5 / 13;
    grid-row: 1 / 4;
    margin: 0 -48px 0 0;
    min-height: 0;
  }
  html[data-preset="beauty"] .hero-media img { object-position: 50% center; }
  html[data-preset="beauty"] .hero .eyebrow {
    align-self: end;
    color: var(--beauty-plum);
    grid-column: 1 / 6;
    grid-row: 1;
    margin: 0 0 10px;
  }
  html[data-preset="beauty"] .hero h1 {
    align-self: center;
    color: var(--beauty-ink);
    font-size: clamp(62px, 6.4vw, 92px);
    grid-column: 1 / 8;
    grid-row: 2;
    line-height: .82;
    margin: 10px 0;
    max-width: 7.2em;
    text-shadow: none;
  }
  html[data-preset="beauty"] .hero-title-last { margin-left: .9em; }
  html[data-preset="beauty"] .hero-bottom {
    align-self: end;
    display: grid;
    gap: 20px;
    grid-column: 1 / 5;
    grid-row: 3;
    padding: 0 0 8px;
  }
  html[data-preset="beauty"] .hero-lead { color: var(--beauty-muted); font-size: 15px; }
  html[data-preset="beauty"] .hero-action { display: flex; flex-wrap: wrap; gap: 12px 20px; }
  html[data-preset="beauty"] .hero-button {
    background: var(--beauty-plum);
    border-color: var(--beauty-plum);
    color: var(--beauty-cream);
  }
  html[data-preset="beauty"] .hero-button:hover { background: transparent; color: var(--beauty-plum); }
  html[data-preset="beauty"] .hero-secondary { color: var(--beauty-ink); }
  html[data-preset="beauty"] .hero-note { color: var(--beauty-muted); flex-basis: 100%; }

  html[data-preset="beauty"] .section { padding: 112px 48px; }
  html[data-preset="beauty"] .section-heading { margin-bottom: 62px; }
  html[data-preset="beauty"] :is(.section-heading h2, .gallery-intro h2, .contact-copy h2) { font-size: clamp(52px, 5.5vw, 78px); }
  html[data-preset="beauty"] .services { padding-top: 128px; }
  html[data-preset="beauty"] .services .section-heading { grid-template-columns: 1.2fr .8fr; }
  html[data-preset="beauty"] .services-layout {
    align-items: start;
    display: grid;
    gap: clamp(42px, 7vw, 104px);
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, .7fr);
    margin-inline: auto;
    max-width: var(--content-max);
  }
  html[data-preset="beauty"] .services-grid { display: block; }
  html[data-preset="beauty"] .services-visual { position: sticky; top: 110px; }
  html[data-preset="beauty"] .services-visual img { aspect-ratio: 4 / 5; min-height: 560px; }
  html[data-preset="beauty"] .beauty-service-row { grid-template-columns: 34px minmax(0, 1fr) auto; padding: 25px 0; }
  html[data-preset="beauty"] .beauty-service-row .service-main { grid-column: 2 / -1; }
  html[data-preset="beauty"] .beauty-service-row h3 { font-size: clamp(27px, 2.3vw, 35px); }
  html[data-preset="beauty"] .beauty-service-row .service-meta { grid-column: 2; }

  html[data-preset="beauty"] .team-section { padding-bottom: 132px; padding-top: 126px; }
  html[data-preset="beauty"] .team-heading {
    margin-left: auto;
    margin-right: auto;
    max-width: 1240px;
  }
  html[data-preset="beauty"] .team-grid {
    gap: 88px;
    grid-template-columns: minmax(0, 1fr);
    margin-inline: auto;
    max-width: 1240px;
    width: 100%;
  }
  html[data-preset="beauty"] .beauty-team-story {
    align-items: center;
    gap: clamp(44px, 6vw, 88px);
    grid-template-columns: minmax(340px, .95fr) minmax(280px, .65fr);
  }
  html[data-preset="beauty"] .beauty-team-story:nth-child(even) { grid-template-columns: minmax(280px, .65fr) minmax(340px, .95fr); }
  html[data-preset="beauty"] .beauty-team-story:nth-child(even) .team-photo { grid-column: 2; grid-row: 1; }
  html[data-preset="beauty"] .beauty-team-story:nth-child(even) .team-copy { grid-column: 1; grid-row: 1; justify-self: end; }
  html[data-preset="beauty"] .beauty-team-story .team-photo { aspect-ratio: 4 / 5; max-height: 650px; }
  html[data-preset="beauty"] .beauty-team-story .team-copy { max-width: 430px; }
  html[data-preset="beauty"] .beauty-team-story h3 { font-size: clamp(46px, 4.8vw, 68px); }

  html[data-preset="beauty"] .gallery-section {
    align-items: start;
    display: grid;
    gap: clamp(52px, 7vw, 100px);
    grid-template-columns: minmax(260px, .56fr) minmax(520px, 1.45fr);
    padding-bottom: 126px;
    padding-top: 126px;
  }
  html[data-preset="beauty"] .gallery-intro { margin: 0; position: sticky; top: 112px; }
  html[data-preset="beauty"] .gallery-grid {
    grid-template-columns: 1.35fr .8fr;
    grid-template-rows: repeat(2, minmax(260px, 1fr));
    min-height: 640px;
  }
  html[data-preset="beauty"] .gallery-photo { aspect-ratio: auto; margin: 0 !important; }
  html[data-preset="beauty"] .gallery-photo:first-child { grid-row: 1 / 3; }
  html[data-preset="beauty"] .gallery-photo:nth-child(2) { grid-column: 2; grid-row: 1; }
  html[data-preset="beauty"] .gallery-photo:nth-child(3) { grid-column: 2; grid-row: 2; }

  html[data-preset="beauty"] .reviews-section {
    display: grid;
    gap: clamp(58px, 8vw, 118px);
    grid-template-columns: .45fr 1.35fr;
    padding-bottom: 126px;
    padding-top: 126px;
  }
  html[data-preset="beauty"] .reviews-heading { display: block; }
  html[data-preset="beauty"] .reviews-heading h2 { font-size: clamp(42px, 4vw, 58px); }
  html[data-preset="beauty"] .reviews-list blockquote { grid-template-columns: minmax(0, 1fr) 180px; padding: 38px 0; }
  html[data-preset="beauty"] .reviews-list blockquote:first-child > p { font-size: clamp(32px, 3vw, 46px); }
  html[data-preset="beauty"] .reviews-list blockquote:not(:first-child) > p { font-size: clamp(23px, 2vw, 30px); }

  html[data-preset="beauty"] .contact-section {
    align-items: stretch;
    gap: clamp(58px, 8vw, 120px);
    grid-template-columns: minmax(300px, .78fr) minmax(480px, 1.22fr);
    padding: 122px 7vw;
  }
  html[data-preset="beauty"] .contact-copy { align-self: center; }
  html[data-preset="beauty"] .map-card { min-height: 620px; }
  html[data-preset="beauty"] .map-card > a { left: auto; min-width: 220px; }

  html[data-preset="beauty"] .final-cta {
    grid-template-columns: minmax(0, 1.25fr) minmax(360px, .75fr);
    min-height: 700px;
  }
  html[data-preset="beauty"] .final-cta > img { aspect-ratio: auto; height: 100%; min-height: 700px; }
  html[data-preset="beauty"] .final-cta-copy { padding: 70px clamp(48px, 6vw, 104px); }
  html[data-preset="beauty"] .final-cta-copy h2 { font-size: clamp(62px, 6vw, 92px); }
  html[data-preset="beauty"] .footer { padding-inline: 48px; }
  html[data-preset="beauty"] .footer-nav { margin-inline: auto; }
}

@media (min-width: 1024px) {
  html[data-preset="beauty"] .site-header { padding-inline: 56px; }
  html[data-preset="beauty"] .hero { padding-inline: 56px; }
  html[data-preset="beauty"] .hero-media { margin-right: -56px; }
  html[data-preset="beauty"] .section { padding-inline: 56px; }
}

/* Beauty v2 final rebuild ------------------------------------------------ */
[data-beauty-only] { display: none; }

html[data-preset="beauty"] {
  --beauty-rail: clamp(20px, 5vw, 72px);
  --beauty-content: 1280px;
  --beauty-section: clamp(88px, 9vw, 136px);
  --beauty-section-mobile: 76px;
  --beauty-cream: #fffaf5;
  --beauty-ivory: #f5eee8;
  --beauty-stone: #dfd2ca;
  --beauty-blush: #c7a7a3;
  --beauty-burgundy: #72404d;
  --beauty-espresso: #39282b;
  --beauty-muted: #77696a;
  --beauty-rule: rgba(57, 40, 43, .17);
}

html[data-preset="beauty"] [data-beauty-only] { display: flex; }
html[data-preset="beauty"] body { background: var(--beauty-ivory); color: var(--beauty-espresso); }
html[data-preset="beauty"] main { overflow: clip; }

html[data-preset="beauty"] .site-header {
  background: transparent;
  border-bottom: 1px solid rgba(57, 40, 43, .16);
  color: var(--beauty-espresso);
  height: 76px;
  padding-inline: var(--beauty-rail);
  position: absolute;
}
html[data-preset="beauty"] .site-header .brand {
  font-size: 29px;
  font-style: italic;
  font-weight: 500;
}
html[data-preset="beauty"] .menu-button { color: var(--beauty-espresso); }
html[data-preset="beauty"] .menu-button-label { font-weight: 650; }
html[data-preset="beauty"] .mobile-nav {
  background: var(--beauty-cream);
  border-color: var(--beauty-rule);
  color: var(--beauty-espresso);
  top: 76px;
}

html[data-preset="beauty"] .hero {
  background: var(--beauty-stone);
  display: grid;
  grid-template: 1fr / 1fr;
  height: 100svh;
  max-height: 980px;
  min-height: 720px;
  overflow: hidden;
  padding: 0;
  position: relative;
}
html[data-preset="beauty"] .hero::after {
  background:
    linear-gradient(90deg, rgba(250, 243, 237, .92) 0%, rgba(250, 243, 237, .72) 34%, rgba(250, 243, 237, .18) 65%, transparent 82%),
    linear-gradient(0deg, rgba(57, 40, 43, .25), transparent 48%);
  content: "";
  display: block;
  grid-area: 1 / 1;
  pointer-events: none;
  position: relative;
  z-index: 1;
}
html[data-preset="beauty"] .hero-media {
  grid-area: 1 / 1;
  margin: 0;
  min-height: 100%;
}
html[data-preset="beauty"] .hero-media img {
  filter: saturate(.78) contrast(.94) brightness(1.04);
  object-position: 52% center;
}
html[data-preset="beauty"] .hero-copy {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  grid-area: 1 / 1;
  justify-content: flex-end;
  padding: 140px var(--beauty-rail) clamp(46px, 7vh, 76px);
  position: relative;
  z-index: 2;
}
html[data-preset="beauty"] .hero .hero-copy > :is(.eyebrow, h1, .hero-bottom) {
  align-self: flex-start !important;
}
html[data-preset="beauty"] .hero .eyebrow {
  color: var(--beauty-burgundy);
  margin: 0 0 18px;
  position: static;
}
html[data-preset="beauty"] .hero h1 {
  color: var(--beauty-espresso);
  font-size: clamp(78px, 9vw, 130px);
  font-weight: 500;
  letter-spacing: -.058em;
  line-height: .82;
  max-width: 5.5em;
  position: static;
  text-shadow: none;
}
html[data-preset="beauty"] .hero-title-last { margin-left: .66em; }
html[data-preset="beauty"] .hero-bottom {
  display: grid;
  gap: 22px;
  padding: 28px 0 0;
  position: static;
  width: min(100%, 520px);
}
html[data-preset="beauty"] .hero-lead {
  color: rgba(57, 40, 43, .78);
  font-size: 16px;
  line-height: 1.55;
  max-width: 410px;
}
html[data-preset="beauty"] .hero-action { display: flex; flex-wrap: wrap; gap: 12px 24px; }
html[data-preset="beauty"] .hero-button,
html[data-preset="beauty"] main .button:not(.button-light) {
  background: var(--beauty-burgundy);
  border-color: var(--beauty-burgundy);
  border-radius: 0;
  color: var(--beauty-cream);
  min-height: 56px;
  padding-inline: 26px;
}
html[data-preset="beauty"] .hero-button:hover,
html[data-preset="beauty"] main .button:not(.button-light):hover {
  background: transparent;
  color: var(--beauty-burgundy);
}
html[data-preset="beauty"] .hero-secondary {
  color: var(--beauty-espresso);
  font-size: 13px;
  min-height: 48px;
}
html[data-preset="beauty"] .hero-note { color: var(--beauty-muted); flex-basis: 100%; }

html[data-preset="beauty"] .desktop-nav a {
  color: rgba(57, 40, 43, .76);
  font-size: 12px;
  font-weight: 650;
}
@media (min-width: 700px) {
  html[data-preset="beauty"] .site-header .header-book {
    background: var(--beauty-burgundy);
    border: 1px solid var(--beauty-burgundy);
    border-radius: 0;
    color: var(--beauty-cream);
    min-height: 46px;
    padding: 0 22px;
    transition: background-color 220ms ease, border-color 220ms ease, color 220ms ease, transform 180ms ease;
  }
  html[data-preset="beauty"] .site-header .header-book:hover,
  html[data-preset="beauty"] .site-header .header-book:focus-visible {
    background: var(--beauty-cream);
    border-color: var(--beauty-burgundy);
    color: var(--beauty-burgundy);
  }
  html[data-preset="beauty"] .site-header .header-book:active { transform: translateY(1px); }
}

html[data-preset="beauty"] .barber-approach[data-beauty-public] {
  align-items: center;
  background: var(--beauty-ivory);
  display: grid !important;
  gap: clamp(46px, 8vw, 116px);
  grid-template-columns: minmax(0, .78fr) minmax(420px, 1.22fr);
  padding: var(--beauty-section) max(var(--beauty-rail), calc((100vw - var(--beauty-content)) / 2));
}
html[data-preset="beauty"] .barber-approach-media {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  min-height: 0;
}
html[data-preset="beauty"] .barber-approach-media img {
  aspect-ratio: 5 / 4;
  display: block;
  filter: saturate(.72) contrast(.95);
  height: auto;
  object-fit: cover;
  object-position: center;
  width: 100%;
}
html[data-preset="beauty"] .barber-approach-copy {
  grid-column: 1;
  grid-row: 1;
  max-width: 510px;
}
html[data-preset="beauty"] .barber-approach-copy .eyebrow { color: var(--beauty-burgundy); }
html[data-preset="beauty"] .barber-approach-copy h2 {
  color: var(--beauty-espresso);
  font-family: var(--serif);
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: .94;
  margin: 0 0 26px;
}
html[data-preset="beauty"] .barber-approach-copy > p:last-child {
  color: var(--beauty-muted);
  font-size: 16px;
  line-height: 1.65;
  margin: 0;
}

html[data-preset="beauty"] .section {
  padding: var(--beauty-section) max(var(--beauty-rail), calc((100vw - var(--beauty-content)) / 2));
}
html[data-preset="beauty"] .section-heading,
html[data-preset="beauty"] .gallery-intro {
  margin-bottom: clamp(48px, 6vw, 76px);
}
html[data-preset="beauty"] .eyebrow {
  color: var(--beauty-burgundy);
  font-size: 10px;
  letter-spacing: .19em;
}
html[data-preset="beauty"] :is(.section-heading h2, .gallery-intro h2, .contact-copy h2) {
  color: inherit;
  font-size: clamp(46px, 5vw, 70px);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: .94;
}
html[data-preset="beauty"] :is(.section-heading > p:last-child, .gallery-intro > p:last-child) {
  color: var(--beauty-muted);
  font-size: 15px;
  line-height: 1.65;
}

html[data-preset="beauty"] .services { background: var(--beauty-cream); }
html[data-preset="beauty"] .services .section-heading { max-width: var(--beauty-content); }
html[data-preset="beauty"] .services-layout {
  align-items: start;
  display: grid;
  gap: clamp(48px, 7vw, 96px);
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, .82fr);
  margin-inline: auto;
  max-width: var(--beauty-content);
}
html[data-preset="beauty"] .services-grid {
  border-top: 1px solid var(--beauty-rule);
  display: block;
}
html[data-preset="beauty"] .beauty-service-row {
  align-items: center;
  background: transparent;
  border-bottom: 1px solid var(--beauty-rule);
  border-left: 0;
  border-right: 0;
  cursor: pointer;
  display: grid;
  gap: 10px 20px;
  grid-template-columns: 36px minmax(0, 1fr) 128px 86px;
  min-height: 150px;
  padding: 24px 0;
  transition: color 220ms ease, opacity 220ms ease, transform 220ms ease;
}
html[data-preset="beauty"] .beauty-service-row .service-index {
  align-self: start;
  color: var(--beauty-blush);
  font-size: 10px;
  letter-spacing: .13em;
  padding-top: 6px;
}
html[data-preset="beauty"] .beauty-service-row .service-main { grid-column: 2; grid-row: 1 / 3; }
html[data-preset="beauty"] .beauty-service-row .service-kicker { margin-bottom: 8px; }
html[data-preset="beauty"] .beauty-service-row h3 {
  font-size: clamp(27px, 2.2vw, 34px);
  font-weight: 500;
  line-height: 1;
  margin: 0 0 11px;
}
html[data-preset="beauty"] .beauty-service-row .service-main > p:last-child {
  font-size: 13px;
  line-height: 1.5;
  max-width: 430px;
}
html[data-preset="beauty"] .beauty-service-row .service-meta {
  display: grid;
  font-size: 12px;
  gap: 8px;
  grid-column: 3;
  grid-row: 1 / 3;
}
html[data-preset="beauty"] .beauty-service-row .service-meta strong { font-size: 14px; font-weight: 650; }
html[data-preset="beauty"] .beauty-service-row .service-link {
  align-self: center;
  color: var(--beauty-burgundy);
  grid-column: 4;
  grid-row: 1 / 3;
  padding: 0;
}
html[data-preset="beauty"] .services-visual {
  background: var(--beauty-stone);
  margin: 0;
  overflow: hidden;
  position: sticky;
  top: 108px;
}
html[data-preset="beauty"] .services-visual img {
  aspect-ratio: 4 / 5;
  display: block;
  filter: saturate(.72) contrast(.95);
  min-height: 590px;
  object-fit: cover;
  width: 100%;
}

html[data-preset="beauty"] .team-section { background: var(--beauty-stone); }
html[data-preset="beauty"] .team-heading,
html[data-preset="beauty"] .team-grid {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--beauty-content);
  width: 100%;
}
html[data-preset="beauty"] .team-grid {
  display: grid;
  gap: clamp(82px, 9vw, 132px);
  grid-template-columns: minmax(0, 1fr);
}
html[data-preset="beauty"] .beauty-team-story {
  align-items: center;
  display: grid;
  gap: clamp(48px, 8vw, 118px);
  grid-template-columns: minmax(380px, 1.04fr) minmax(300px, .76fr);
  width: 100%;
}
html[data-preset="beauty"] .beauty-team-story:nth-child(even) {
  grid-template-columns: minmax(300px, .76fr) minmax(380px, 1.04fr);
}
html[data-preset="beauty"] .beauty-team-story:nth-child(even) .team-photo { grid-column: 2; grid-row: 1; }
html[data-preset="beauty"] .beauty-team-story:nth-child(even) .team-copy { grid-column: 1; grid-row: 1; justify-self: end; }
html[data-preset="beauty"] .beauty-team-story .team-photo {
  aspect-ratio: 4 / 5;
  margin: 0;
  max-height: 690px;
  overflow: hidden;
}
html[data-preset="beauty"] .beauty-team-story .team-photo img {
  filter: saturate(.7) contrast(.94);
  object-position: center top;
}
html[data-preset="beauty"] .beauty-team-story .team-copy { max-width: 430px; }
html[data-preset="beauty"] .team-number {
  color: var(--beauty-burgundy);
  font-size: 10px;
  letter-spacing: .19em;
  margin: 0 0 18px;
}
html[data-preset="beauty"] .beauty-team-story h3 {
  font-size: clamp(43px, 4.5vw, 64px);
  font-weight: 500;
  line-height: .94;
  margin: 0 0 12px;
}
html[data-preset="beauty"] .beauty-team-story .team-role {
  color: var(--beauty-burgundy);
  font-size: 11px;
  letter-spacing: .08em;
  margin-bottom: 16px;
  text-transform: uppercase;
}
html[data-preset="beauty"] .beauty-team-story .team-note { line-height: 1.62; }
html[data-preset="beauty"] .team-book {
  color: var(--beauty-espresso);
  font-size: 13px;
  margin-top: 24px;
}

html[data-preset="beauty"] .gallery-section {
  background: var(--beauty-espresso);
  color: var(--beauty-cream);
  display: block;
}
html[data-preset="beauty"] .gallery-intro,
html[data-preset="beauty"] .gallery-grid {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--beauty-content);
}
html[data-preset="beauty"] .gallery-intro {
  align-items: end;
  display: grid;
  gap: 20px 72px;
  grid-template-columns: 1.15fr .85fr;
}
html[data-preset="beauty"] .gallery-intro .eyebrow { grid-column: 1 / -1; }
html[data-preset="beauty"] .gallery-intro > p:last-child { align-self: end; color: rgba(255, 250, 245, .6); margin: 0; }
html[data-preset="beauty"] .gallery-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1.35fr .8fr;
  grid-template-rows: repeat(2, minmax(270px, 1fr));
  min-height: 690px;
}
html[data-preset="beauty"] .gallery-photo { aspect-ratio: auto; margin: 0 !important; overflow: hidden; }
html[data-preset="beauty"] .gallery-photo:first-child { grid-row: 1 / 3; }
html[data-preset="beauty"] .gallery-photo:nth-child(2) { grid-column: 2; grid-row: 1; }
html[data-preset="beauty"] .gallery-photo:nth-child(3) { grid-column: 2; grid-row: 2; }
html[data-preset="beauty"] .gallery-photo img { filter: saturate(.68) contrast(.96); }

html[data-preset="beauty"] .reviews-section {
  background: var(--beauty-ivory);
  display: block;
}
html[data-preset="beauty"] .reviews-heading,
html[data-preset="beauty"] .reviews-list,
html[data-preset="beauty"] .review-controls {
  margin-left: auto;
  margin-right: auto;
  max-width: 1040px;
}
html[data-preset="beauty"] .reviews-heading { display: block; }
html[data-preset="beauty"] .reviews-heading h2 { font-size: clamp(42px, 4.2vw, 58px); }
html[data-preset="beauty"] .reviews-list { border-top: 1px solid var(--beauty-rule); }
html[data-preset="beauty"] .reviews-list blockquote {
  border-bottom: 1px solid var(--beauty-rule);
  display: block;
  min-height: 280px;
  padding: clamp(42px, 6vw, 72px) 0;
}
html[data-preset="beauty"] .reviews-list blockquote[hidden] { display: none; }
html[data-preset="beauty"] .reviews-list blockquote > p {
  font-size: clamp(30px, 3.4vw, 48px);
  font-weight: 500;
  line-height: 1.22;
  max-width: 900px;
}
html[data-preset="beauty"] .reviews-list footer {
  font-size: 11px;
  letter-spacing: .1em;
  margin-top: 30px;
  text-transform: uppercase;
}
html[data-preset="beauty"] .review-controls {
  align-items: center;
  color: var(--beauty-muted);
  display: flex;
  font-size: 11px;
  justify-content: space-between;
  letter-spacing: .12em;
  padding-top: 18px;
}
html[data-preset="beauty"] .review-controls > div { display: flex; gap: 8px; }
html[data-preset="beauty"] .review-controls button {
  align-items: center;
  background: transparent;
  border: 1px solid var(--beauty-rule);
  color: var(--beauty-espresso);
  cursor: pointer;
  display: flex;
  height: 42px;
  justify-content: center;
  width: 46px;
}
html[data-preset="beauty"] .review-controls button:hover { border-color: var(--beauty-burgundy); color: var(--beauty-burgundy); }

html[data-preset="beauty"] .contact-section {
  align-items: stretch;
  background: var(--beauty-stone);
  color: var(--beauty-espresso);
  display: grid;
  gap: clamp(52px, 8vw, 112px);
  grid-template-columns: minmax(320px, .75fr) minmax(480px, 1.25fr);
  padding: var(--beauty-section) max(var(--beauty-rail), calc((100vw - var(--beauty-content)) / 2));
}
html[data-preset="beauty"] .contact-copy { align-self: center; max-width: 500px; }
html[data-preset="beauty"] .contact-copy .eyebrow { color: var(--beauty-burgundy); }
html[data-preset="beauty"] .contact-details { border-top-color: var(--beauty-rule); margin: 34px 0; }
html[data-preset="beauty"] .contact-details p { border-bottom-color: var(--beauty-rule); grid-template-columns: 92px 1fr; }
html[data-preset="beauty"] .contact-details span { color: var(--beauty-muted); }
html[data-preset="beauty"] .contact-copy .button-light {
  background: var(--beauty-burgundy);
  border-color: var(--beauty-burgundy);
  border-radius: 0;
  color: var(--beauty-cream);
  min-height: 56px;
  width: auto;
}
html[data-preset="beauty"] .contact-copy .button-light:hover { background: transparent; color: var(--beauty-burgundy); }
html[data-preset="beauty"] .map-card { min-height: 620px; }
html[data-preset="beauty"] .map-district { font-size: 36px; left: 26px; top: 26px; }
html[data-preset="beauty"] .map-card > a {
  align-items: center;
  bottom: 22px;
  display: flex;
  justify-content: space-between;
  left: 22px;
  min-height: 56px;
  padding-inline: 20px;
  right: 22px;
}

html[data-preset="beauty"] .final-cta[data-barber-only][data-beauty-public] {
  display: grid !important;
  grid-template: 1fr / 1fr;
  min-height: clamp(660px, 78svh, 860px);
  overflow: hidden;
  position: relative;
}
html[data-preset="beauty"] .final-cta > img {
  filter: saturate(.7) contrast(.97);
  grid-area: 1 / 1;
  height: 100%;
  inset: 0;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  position: absolute;
  width: 100%;
}
html[data-preset="beauty"] .final-cta-overlay {
  background: linear-gradient(90deg, rgba(57, 40, 43, .83), rgba(57, 40, 43, .48) 55%, rgba(57, 40, 43, .12));
  display: block;
  grid-area: 1 / 1;
  position: relative;
  z-index: 1;
}
html[data-preset="beauty"] .final-cta-copy {
  align-self: center;
  color: var(--beauty-cream);
  grid-area: 1 / 1;
  max-width: 660px;
  padding: var(--beauty-section) var(--beauty-rail);
  position: relative;
  z-index: 2;
}
html[data-preset="beauty"] .final-cta-copy .eyebrow { color: rgba(255, 250, 245, .66); }
html[data-preset="beauty"] .final-cta-copy h2 {
  font-size: clamp(58px, 6.6vw, 96px);
  line-height: .9;
  margin-bottom: 24px;
}
html[data-preset="beauty"] .final-cta-copy > p:not(.eyebrow) {
  color: rgba(255, 250, 245, .74);
  font-size: 16px;
  margin-bottom: 30px;
}
html[data-preset="beauty"] .final-cta-copy .button {
  background: var(--beauty-cream) !important;
  border-color: var(--beauty-cream) !important;
  color: var(--beauty-espresso) !important;
}
html[data-preset="beauty"] .final-cta-copy .button:hover {
  background: transparent !important;
  color: var(--beauty-cream) !important;
}

html[data-preset="beauty"] .footer {
  background: var(--beauty-espresso);
  color: rgba(255, 250, 245, .62);
  display: grid;
  gap: 18px 34px;
  grid-template-columns: auto 1fr auto;
  padding: 46px var(--beauty-rail);
}
html[data-preset="beauty"] .footer-brand { color: var(--beauty-cream); }
html[data-preset="beauty"] .footer-nav { align-items: center; display: flex; gap: 24px; justify-self: center; }
html[data-preset="beauty"] .footer-nav a { min-height: 32px; }

html[data-preset="beauty"] .booking-modal .button {
  border-radius: var(--button-radius);
  font-size: 15px;
  letter-spacing: var(--button-letter-spacing);
  min-height: var(--button-height);
  padding-inline: var(--button-padding-x);
}

@media (hover: hover) and (min-width: 700px) {
  html[data-preset="beauty"] .beauty-service-row:hover,
  html[data-preset="beauty"] .beauty-service-row:focus-visible { color: var(--beauty-burgundy); transform: translateX(4px); }
  html[data-preset="beauty"] .services-grid:hover .beauty-service-row:not(:hover) { opacity: .48; }
  html[data-preset="beauty"] :is(.beauty-team-story .team-photo, .gallery-photo, .barber-approach-media) img {
    transition: filter 520ms ease, transform 560ms cubic-bezier(.22, .61, .36, 1);
  }
  html[data-preset="beauty"] :is(.beauty-team-story .team-photo, .gallery-photo, .barber-approach-media):hover img { transform: scale(1.02); }
}

@media (max-width: 699px) {
  html[data-preset="beauty"] .site-header { height: 72px; padding-inline: 20px; }
  html[data-preset="beauty"] .hero {
    height: 100svh;
    max-height: 920px;
    min-height: 700px;
  }
  html[data-preset="beauty"] .hero::after {
    background:
      linear-gradient(180deg, rgba(250, 243, 237, .86) 0%, rgba(250, 243, 237, .24) 30%, rgba(57, 40, 43, .16) 56%, rgba(57, 40, 43, .72) 100%);
  }
  html[data-preset="beauty"] .hero-media img { object-position: 50% center; }
  html[data-preset="beauty"] .hero-copy {
    justify-content: flex-end;
    padding: 102px 20px 28px;
  }
  html[data-preset="beauty"] .hero .eyebrow { color: rgba(255, 250, 245, .78); margin-bottom: 14px; }
  html[data-preset="beauty"] .hero h1 {
    color: var(--beauty-cream);
    font-size: clamp(57px, 16.2vw, 66px);
    line-height: .84;
    max-width: 5em;
  }
  html[data-preset="beauty"] .hero-title-last { margin-left: .55em; }
  html[data-preset="beauty"] .hero-bottom { gap: 16px; padding-top: 20px; width: 100%; }
  html[data-preset="beauty"] .hero-lead { color: rgba(255, 250, 245, .86); font-size: 14px; max-width: 320px; }
  html[data-preset="beauty"] .hero-action { align-items: center; display: grid; gap: 8px 16px; grid-template-columns: max-content 1fr; }
  html[data-preset="beauty"] .hero-button {
    background: var(--beauty-cream);
    border-color: var(--beauty-cream);
    color: var(--beauty-espresso);
    min-height: 54px;
  }
  html[data-preset="beauty"] .hero-secondary { color: var(--beauty-cream); }
  html[data-preset="beauty"] .hero-note { color: rgba(255, 250, 245, .64); grid-column: 1 / -1; }

  html[data-preset="beauty"] .barber-approach[data-beauty-public] {
    display: flex !important;
    flex-direction: column;
    gap: 34px;
    padding: var(--beauty-section-mobile) 20px;
  }
  html[data-preset="beauty"] .barber-approach-copy { order: 1; }
  html[data-preset="beauty"] .barber-approach-media { order: 2; }
  html[data-preset="beauty"] .barber-approach-copy h2 { font-size: 44px; margin-bottom: 20px; }
  html[data-preset="beauty"] .barber-approach-copy > p:last-child { font-size: 15px; }
  html[data-preset="beauty"] .barber-approach-media img { aspect-ratio: 4 / 3; }

  html[data-preset="beauty"] .section { padding: var(--beauty-section-mobile) 20px; }
  html[data-preset="beauty"] .section-heading,
  html[data-preset="beauty"] .gallery-intro { margin-bottom: 42px; }
  html[data-preset="beauty"] :is(.section-heading h2, .gallery-intro h2, .contact-copy h2) { font-size: 43px; }

  html[data-preset="beauty"] .services-layout { display: block; }
  html[data-preset="beauty"] .services-visual { display: none !important; }
  html[data-preset="beauty"] .beauty-service-row {
    gap: 12px 14px;
    grid-template-columns: 26px minmax(0, 1fr) auto;
    min-height: 0;
    padding: 24px 0;
  }
  html[data-preset="beauty"] .beauty-service-row .service-index { grid-column: 1; grid-row: 1 / 3; }
  html[data-preset="beauty"] .beauty-service-row .service-main { grid-column: 2 / -1; grid-row: 1; }
  html[data-preset="beauty"] .beauty-service-row .service-kicker,
  html[data-preset="beauty"] .beauty-service-row .service-main > p:last-child { display: none; }
  html[data-preset="beauty"] .beauty-service-row h3 { font-size: 26px; margin: 0; }
  html[data-preset="beauty"] .beauty-service-row .service-meta {
    align-items: baseline;
    display: flex;
    gap: 8px;
    grid-column: 2;
    grid-row: 2;
  }
  html[data-preset="beauty"] .beauty-service-row .service-meta span::after { content: " ·"; }
  html[data-preset="beauty"] .beauty-service-row .service-link { grid-column: 3; grid-row: 2; }

  html[data-preset="beauty"] .team-grid { gap: 72px; }
  html[data-preset="beauty"] .beauty-team-story,
  html[data-preset="beauty"] .beauty-team-story:nth-child(even) {
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(0, 1fr);
  }
  html[data-preset="beauty"] .beauty-team-story .team-photo,
  html[data-preset="beauty"] .beauty-team-story:nth-child(even) .team-photo {
    aspect-ratio: 4 / 5;
    grid-column: 1;
    grid-row: 1;
    max-height: none;
  }
  html[data-preset="beauty"] .beauty-team-story .team-copy,
  html[data-preset="beauty"] .beauty-team-story:nth-child(even) .team-copy {
    grid-column: 1;
    grid-row: 2;
    justify-self: stretch;
  }
  html[data-preset="beauty"] .beauty-team-story h3 { font-size: 42px; }

  html[data-preset="beauty"] .gallery-intro { display: block; }
  html[data-preset="beauty"] .gallery-intro > p:last-child { margin-top: 18px; }
  html[data-preset="beauty"] .gallery-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: none;
    min-height: 0;
  }
  html[data-preset="beauty"] .gallery-photo,
  html[data-preset="beauty"] .gallery-photo:first-child,
  html[data-preset="beauty"] .gallery-photo:nth-child(2),
  html[data-preset="beauty"] .gallery-photo:nth-child(3) {
    aspect-ratio: 4 / 5;
    grid-column: 1;
    grid-row: auto;
  }
  html[data-preset="beauty"] .gallery-photo:nth-child(2) { aspect-ratio: 5 / 4; margin-left: 38px !important; }
  html[data-preset="beauty"] .gallery-photo:nth-child(3) { aspect-ratio: 4 / 3; margin-right: 38px !important; }

  html[data-preset="beauty"] .reviews-list blockquote { min-height: 300px; padding: 42px 0; }
  html[data-preset="beauty"] .reviews-list blockquote > p { font-size: 29px; }

  html[data-preset="beauty"] .contact-section {
    display: flex;
    flex-direction: column;
    gap: 44px;
    padding: var(--beauty-section-mobile) 20px;
  }
  html[data-preset="beauty"] .contact-details p { grid-template-columns: 76px 1fr; }
  html[data-preset="beauty"] .map-card { min-height: 460px; }

  html[data-preset="beauty"] .final-cta { min-height: 680px; }
  html[data-preset="beauty"] .final-cta > img { object-position: 58% center; }
  html[data-preset="beauty"] .final-cta-overlay {
    background: linear-gradient(0deg, rgba(57, 40, 43, .9), rgba(57, 40, 43, .28) 72%, rgba(57, 40, 43, .08));
  }
  html[data-preset="beauty"] .final-cta-copy {
    align-self: end;
    padding: 70px 20px 42px;
  }
  html[data-preset="beauty"] .final-cta-copy h2 { font-size: 54px; }

  html[data-preset="beauty"] .footer {
    display: flex;
    flex-direction: column;
    padding: 42px 20px;
  }
  html[data-preset="beauty"] .footer-nav { flex-wrap: wrap; justify-content: flex-start; justify-self: auto; }
}

@media (max-width: 699px) {
  html[data-preset="barber"] .hero {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: minmax(0, 1fr);
  }
  html[data-preset="barber"] .hero-copy {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    grid-area: 1 / 1;
    justify-content: flex-end;
    padding: 104px 20px max(22px, env(safe-area-inset-bottom));
    position: relative;
    z-index: 3;
  }
  html[data-preset="barber"] .hero .eyebrow {
    align-self: flex-start;
    grid-column: auto;
    grid-row: auto;
    margin: 0 0 12px;
    position: static;
  }
  html[data-preset="barber"] .hero h1 {
    align-self: flex-start;
    grid-column: auto;
    grid-row: auto;
    position: static;
  }
  html[data-preset="barber"] .hero-bottom {
    align-self: stretch;
    gap: 10px;
    grid-column: auto;
    grid-row: auto;
    padding: 16px 0 0;
    position: static;
    width: 100%;
  }
  html[data-preset="barber"] .hero-action { gap: 8px 14px; }
}

/* Detailing public site v2 ----------------------------------------------- */
[data-detailing-only] { display: none; }

html[data-preset="detailing"] {
  --detailing-ink: #0c1113;
  --detailing-graphite: #141b1e;
  --detailing-gunmetal: #242e32;
  --detailing-steel: #819195;
  --detailing-mist: #d9dfe0;
  --detailing-paper: #f1f3f2;
  --detailing-white: #f7f8f7;
  --detailing-accent: #8fb8bb;
  --detailing-rule: rgba(18, 31, 35, .18);
  --detailing-dark-rule: rgba(231, 239, 240, .17);
}

html[data-preset="detailing"] [data-detailing-only] { display: block; }
html[data-preset="detailing"] [data-barber-only][data-detailing-public] { display: block !important; }
html[data-preset="detailing"] :is(.desktop-nav, .mobile-nav) [data-detailing-public],
html[data-preset="detailing"] .footer-nav[data-detailing-public],
html[data-preset="detailing"] .hero-secondary[data-detailing-public] { display: flex !important; }
html[data-preset="detailing"] .final-cta[data-detailing-public] { display: grid !important; }

html[data-preset="detailing"] body {
  background: var(--detailing-paper);
  color: var(--detailing-ink);
  font-family: var(--body-font);
}
html[data-preset="detailing"] main {
  display: flex;
  flex-direction: column;
  overflow: clip;
}
html[data-preset="detailing"] :is(.hero h1, .section-heading h2, .gallery-intro h2, .contact-copy h2, .final-cta h2, .detailing-process h2, .team-card h3, .service-card h3) {
  font-family: var(--body-font);
}
html[data-preset="detailing"] :is(a, button):focus-visible {
  outline-color: var(--detailing-accent);
}

html[data-preset="detailing"] .site-header {
  background: transparent;
  border-bottom-color: rgba(247, 248, 247, .22);
  color: var(--detailing-white);
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
html[data-preset="detailing"] .site-header .brand {
  color: var(--detailing-white);
  font-family: var(--body-font);
  font-size: 25px;
  font-weight: 720;
  letter-spacing: -.045em;
  text-transform: uppercase;
}
html[data-preset="detailing"] .desktop-nav a { color: rgba(247, 248, 247, .76); }
html[data-preset="detailing"] .desktop-nav a::after { background: var(--detailing-accent); }
html[data-preset="detailing"] .desktop-nav a:hover,
html[data-preset="detailing"] .desktop-nav a:focus-visible { color: var(--detailing-white); }
html[data-preset="detailing"] .header-book {
  background: rgba(12, 17, 19, .16);
  border-color: rgba(247, 248, 247, .58);
  color: var(--detailing-white);
}
html[data-preset="detailing"] .header-book:hover {
  background: var(--detailing-white);
  border-color: var(--detailing-white);
  color: var(--detailing-ink);
}
html[data-preset="detailing"] .menu-button { color: var(--detailing-white); }
html[data-preset="detailing"] .menu-button-icon i { background: var(--detailing-white); }
html[data-preset="detailing"] .mobile-nav {
  background: var(--detailing-graphite);
  border-bottom-color: var(--detailing-dark-rule);
  color: var(--detailing-white);
}
html[data-preset="detailing"] .mobile-nav a {
  border-bottom-color: var(--detailing-dark-rule);
  color: var(--detailing-white);
}
html[data-preset="detailing"] .mobile-nav button {
  background: var(--detailing-white);
  border-color: var(--detailing-white);
  color: var(--detailing-ink);
}

html[data-preset="detailing"] .hero {
  background: var(--detailing-ink);
  color: var(--detailing-white);
  display: grid;
  grid-template: minmax(0, 1fr) / minmax(0, 1fr);
  height: 100svh;
  isolation: isolate;
  max-height: 980px;
  min-height: 720px;
  order: 1;
  overflow: hidden;
  padding: 0;
  position: relative;
}
html[data-preset="detailing"] .hero::after {
  background:
    linear-gradient(180deg, rgba(6, 10, 12, .42) 0%, rgba(6, 10, 12, .08) 38%, rgba(6, 10, 12, .16) 56%, rgba(6, 10, 12, .88) 100%),
    linear-gradient(90deg, rgba(6, 10, 12, .56) 0%, rgba(6, 10, 12, .08) 68%);
  content: "";
  grid-area: 1 / 1;
  pointer-events: none;
  position: relative;
  z-index: 1;
}
html[data-preset="detailing"] .hero-media {
  grid-area: 1 / 1;
  height: 100%;
  margin: 0;
  min-height: 100%;
}
html[data-preset="detailing"] .hero-media img {
  filter: saturate(.58) contrast(1.14) brightness(.76);
  object-position: 58% center;
}
html[data-preset="detailing"] .hero-copy {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  grid-area: 1 / 1;
  justify-content: flex-end;
  padding: 142px clamp(40px, 5vw, 72px) clamp(46px, 6vh, 68px);
  position: relative;
  z-index: 2;
}
html[data-preset="detailing"] .hero .eyebrow {
  align-self: center;
  color: var(--detailing-accent);
  font-size: 11px;
  grid-column: auto;
  grid-row: auto;
  letter-spacing: .18em;
  margin: 0 0 20px;
  position: static;
  width: min(100%, 640px);
}
html[data-preset="detailing"] .hero h1 {
  align-self: center;
  color: var(--detailing-white);
  font-size: clamp(78px, 8.7vw, 124px);
  font-weight: 690;
  grid-column: auto;
  grid-row: auto;
  letter-spacing: -.06em;
  line-height: .82;
  margin: 0;
  max-width: 6.2em;
  position: static;
  text-transform: uppercase;
  width: min(100%, 640px);
}
html[data-preset="detailing"] .hero-title-last { margin-left: .64em; }
html[data-preset="detailing"] .hero-bottom {
  align-self: stretch;
  display: grid;
  gap: 18px;
  grid-column: auto;
  grid-row: auto;
  padding: 30px 0 0;
  position: static;
  width: min(100%, 620px);
}
html[data-preset="detailing"] .hero-lead {
  color: rgba(247, 248, 247, .76);
  font-size: 16px;
  line-height: 1.5;
  max-width: 380px;
}
html[data-preset="detailing"] .hero-action {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}
html[data-preset="detailing"] .hero-button {
  background: var(--detailing-white);
  border-color: var(--detailing-white);
  color: var(--detailing-ink);
  min-height: 56px;
  padding-inline: 26px;
  width: auto;
}
html[data-preset="detailing"] .hero-button:hover {
  background: transparent;
  color: var(--detailing-white);
}
html[data-preset="detailing"] .hero-secondary {
  color: var(--detailing-white);
  font-size: 13px;
  font-weight: 650;
  min-height: 48px;
}
html[data-preset="detailing"] .hero-note {
  color: rgba(247, 248, 247, .52);
  flex-basis: 100%;
}

html[data-preset="detailing"] .section {
  padding: clamp(92px, 9vw, 132px) clamp(28px, 5vw, 72px);
}
html[data-preset="detailing"] .section-heading,
html[data-preset="detailing"] .gallery-intro {
  margin-bottom: clamp(48px, 6vw, 80px);
  margin-inline: auto;
  max-width: 1280px;
  width: 100%;
}
html[data-preset="detailing"] :is(.section-heading, .gallery-intro, .detailing-process-heading) .eyebrow {
  color: var(--detailing-steel);
  font-size: 10px;
  letter-spacing: .17em;
  margin-bottom: 18px;
}
html[data-preset="detailing"] :is(.section-heading h2, .gallery-intro h2, .contact-copy h2, .detailing-process h2) {
  font-size: clamp(44px, 5vw, 70px);
  font-weight: 640;
  letter-spacing: -.05em;
  line-height: .96;
}

html[data-preset="detailing"] .services {
  background: var(--detailing-paper);
  color: var(--detailing-ink);
  order: 2;
}
html[data-preset="detailing"] .services-layout {
  align-items: start;
  display: grid;
  gap: clamp(44px, 6vw, 86px);
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, .82fr);
  margin-inline: auto;
  max-width: 1280px;
}
html[data-preset="detailing"] .services-grid {
  border-top: 1px solid var(--detailing-rule);
  display: block;
}
html[data-preset="detailing"] .detailing-service-row {
  align-items: center;
  background: transparent;
  border-bottom: 1px solid var(--detailing-rule);
  border-left: 0 !important;
  cursor: pointer;
  display: grid;
  gap: 10px 18px;
  grid-template-columns: 38px minmax(0, 1fr) 112px 82px;
  min-height: 138px;
  padding: 22px 0 !important;
  transition: color 220ms ease, opacity 220ms ease, transform 220ms ease;
}
html[data-preset="detailing"] .detailing-service-row .service-index {
  align-self: start;
  color: var(--detailing-steel);
  font-size: 10px;
  letter-spacing: .14em;
  padding-top: 5px;
}
html[data-preset="detailing"] .detailing-service-row .service-main {
  grid-column: 2;
  grid-row: 1 / 3;
}
html[data-preset="detailing"] .detailing-service-row .service-kicker {
  color: var(--detailing-steel);
  font-size: 9px;
  letter-spacing: .14em;
  margin-bottom: 8px;
}
html[data-preset="detailing"] .detailing-service-row h3 {
  font-size: clamp(24px, 2.25vw, 32px);
  font-weight: 620;
  letter-spacing: -.04em;
  line-height: 1;
  margin: 0 0 10px;
}
html[data-preset="detailing"] .detailing-service-row .service-main > p:last-child {
  color: var(--detailing-steel);
  font-size: 13px;
}
html[data-preset="detailing"] .detailing-service-row .service-meta {
  display: grid;
  font-size: 12px;
  gap: 7px;
  grid-column: 3;
  grid-row: 1 / 3;
}
html[data-preset="detailing"] .detailing-service-row .service-meta strong { font-size: 13px; }
html[data-preset="detailing"] .detailing-service-row .service-link {
  color: var(--detailing-ink);
  grid-column: 4;
  grid-row: 1 / 3;
  padding: 0;
}
html[data-preset="detailing"] .services-visual {
  background: var(--detailing-graphite);
  margin: 0;
  overflow: hidden;
  position: sticky;
  top: 108px;
}
html[data-preset="detailing"] .services-visual img {
  aspect-ratio: 4 / 5;
  filter: saturate(.56) contrast(1.12) brightness(.82);
  height: auto;
  object-fit: cover;
  transition: opacity 340ms ease, transform 420ms ease;
  width: 100%;
}
html[data-preset="detailing"] .services-visual img.is-changing { opacity: .3; transform: scale(1.018); }
html[data-preset="detailing"] .services-visual figcaption {
  align-items: center;
  background: var(--detailing-graphite);
  color: var(--detailing-white);
  display: flex;
  justify-content: space-between;
  min-height: 62px;
  padding: 14px 18px;
}
html[data-preset="detailing"] .services-visual figcaption span {
  color: var(--detailing-steel);
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
html[data-preset="detailing"] .services-visual figcaption b { font-size: 11px; font-weight: 600; text-align: right; }

html[data-preset="detailing"] .detailing-process {
  background: var(--detailing-graphite);
  color: var(--detailing-white);
  order: 3;
  padding: clamp(92px, 9vw, 132px) clamp(28px, 5vw, 72px);
}
html[data-preset="detailing"] .detailing-process-heading {
  display: grid;
  gap: 24px 56px;
  grid-template-columns: minmax(0, 1fr) minmax(260px, .55fr);
  margin: 0 auto clamp(56px, 4.5vw, 64px);
  max-width: 1280px;
}
html[data-preset="detailing"] .detailing-process-heading .eyebrow { grid-column: 1 / -1; margin: 0; }
html[data-preset="detailing"] .detailing-process-heading h2 { margin: 0; }
html[data-preset="detailing"] .detailing-process-heading > p:last-child {
  align-self: start;
  color: rgba(247, 248, 247, .58);
  margin: 0;
  max-width: 360px;
}
html[data-preset="detailing"] .detailing-process-layout {
  align-items: stretch;
  display: grid;
  gap: clamp(36px, 5vw, 72px);
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, .88fr);
  margin-inline: auto;
  max-width: 1280px;
}
html[data-preset="detailing"] .detailing-process-layout.detailing-process-text-only { grid-template-columns: minmax(0, 1fr); }
html[data-preset="detailing"] .detailing-process-media { margin: 0; min-height: 620px; overflow: hidden; }
html[data-preset="detailing"] .detailing-process-media img {
  filter: saturate(.54) contrast(1.12) brightness(.78);
  height: 100%;
  object-fit: cover;
  width: 100%;
}
html[data-preset="detailing"] .detailing-process-steps {
  border-top: 1px solid var(--detailing-dark-rule);
  list-style: none;
  margin: 0;
  padding: 0;
}
html[data-preset="detailing"] .detailing-process-step {
  border-bottom: 1px solid var(--detailing-dark-rule);
  display: grid;
  gap: 8px 18px;
  grid-template-columns: 46px minmax(0, 1fr);
  min-height: 25%;
  padding: 28px 0;
}
html[data-preset="detailing"] .detailing-process-index {
  color: var(--detailing-accent);
  font-size: 10px;
  letter-spacing: .14em;
  padding-top: 5px;
}
html[data-preset="detailing"] .detailing-process-step h3 {
  font-size: clamp(25px, 2.6vw, 36px);
  font-weight: 580;
  letter-spacing: -.04em;
  line-height: 1;
  margin: 0;
}
html[data-preset="detailing"] .detailing-process-step p {
  color: rgba(247, 248, 247, .56);
  font-size: 13px;
  grid-column: 2;
  margin: 0;
  max-width: 340px;
}

html[data-preset="detailing"] .gallery-section {
  background: var(--detailing-mist);
  color: var(--detailing-ink);
  display: block;
  order: 4;
}
html[data-preset="detailing"] .gallery-intro {
  align-items: end;
  display: grid;
  gap: 28px 60px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .5fr);
  position: static;
}
html[data-preset="detailing"] .gallery-intro .eyebrow { grid-column: 1 / -1; margin: 0; }
html[data-preset="detailing"] .gallery-intro > p:last-child {
  color: #536166;
  justify-self: end;
  margin: 0;
  max-width: 360px;
}
html[data-preset="detailing"] .gallery-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(280px, 34vw));
  margin-inline: auto;
  max-width: 1280px;
  min-height: 0;
}
html[data-preset="detailing"] .gallery-grid:empty { display: none; }
html[data-preset="detailing"] .gallery-photo {
  aspect-ratio: auto;
  background: var(--detailing-gunmetal);
  grid-column: 8 / 13;
  margin: 0;
  overflow: hidden;
}
html[data-preset="detailing"] .gallery-photo:first-child { grid-column: 1 / 8; grid-row: 1 / 3; }
html[data-preset="detailing"] .gallery-photo:nth-child(2) { grid-row: 1; }
html[data-preset="detailing"] .gallery-photo:nth-child(3) { grid-row: 2; }
html[data-preset="detailing"] .gallery-photo img {
  filter: saturate(.55) contrast(1.1) brightness(.84);
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
  width: 100%;
}
html[data-preset="detailing"] .gallery-photo:nth-child(2) img { object-position: 38% center; }

html[data-preset="detailing"] .team-section {
  background: var(--detailing-paper);
  color: var(--detailing-ink);
  order: 5;
}
html[data-preset="detailing"] .team-heading { max-width: 1280px; }
html[data-preset="detailing"] .team-grid {
  display: grid;
  gap: clamp(24px, 3vw, 42px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1280px;
  overflow: visible;
  padding: 0;
}
html[data-preset="detailing"] .detailing-team-member { min-width: 0; }
html[data-preset="detailing"] .detailing-team-member .team-photo {
  aspect-ratio: 4 / 5;
  background: var(--detailing-gunmetal);
  margin: 0 0 22px;
  overflow: hidden;
}
html[data-preset="detailing"] .detailing-team-member .team-photo img {
  filter: saturate(.5) contrast(1.08) brightness(.86);
  height: 100%;
  object-fit: cover;
  transition: transform 480ms ease;
  width: 100%;
}
html[data-preset="detailing"] .detailing-team-member .team-copy { display: grid; gap: 9px; }
html[data-preset="detailing"] .detailing-team-member .team-number {
  color: var(--detailing-steel);
  font-size: 9px;
  letter-spacing: .14em;
  margin: 0 0 3px;
  text-transform: uppercase;
}
html[data-preset="detailing"] .detailing-team-member h3 {
  font-size: clamp(25px, 2.35vw, 34px);
  font-weight: 620;
  letter-spacing: -.04em;
  line-height: 1;
  margin: 0;
}
html[data-preset="detailing"] .detailing-team-member .team-role {
  color: #42575c;
  font-size: 12px;
  letter-spacing: .08em;
  margin: 0;
  text-transform: uppercase;
}
html[data-preset="detailing"] .detailing-team-member .team-note {
  color: #637276;
  font-size: 14px;
  margin: 0;
  max-width: 330px;
}
html[data-preset="detailing"] .detailing-team-member .team-book {
  align-items: center;
  appearance: none;
  background: none;
  border: 0;
  box-shadow: none;
  color: var(--detailing-ink);
  cursor: pointer;
  display: inline-flex;
  font-size: 13px;
  font-weight: 650;
  gap: 8px;
  justify-self: start;
  line-height: 1.2;
  margin-top: 8px;
  min-height: 44px;
  padding: 0;
  width: fit-content;
}
html[data-preset="detailing"] .detailing-team-member .team-book svg {
  display: block;
  flex: 0 0 auto;
  height: 16px;
  width: 16px;
}
html[data-preset="detailing"] .detailing-team-member .team-book path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

html[data-preset="detailing"] .reviews-section {
  background: var(--detailing-graphite);
  color: var(--detailing-white);
  display: grid;
  gap: clamp(50px, 7vw, 100px);
  grid-template-columns: minmax(220px, .42fr) minmax(0, 1.58fr);
  order: 6;
}
html[data-preset="detailing"] .reviews-heading { display: block; margin: 0; }
html[data-preset="detailing"] .reviews-heading .eyebrow { color: var(--detailing-accent); }
html[data-preset="detailing"] .reviews-heading h2 { font-size: clamp(34px, 4vw, 52px); }
html[data-preset="detailing"] .reviews-list { border-top: 1px solid var(--detailing-dark-rule); }
html[data-preset="detailing"] .reviews-list blockquote {
  border-bottom: 1px solid var(--detailing-dark-rule);
  display: block;
  margin: 0;
  min-height: 420px;
  padding: 42px 0;
}
html[data-preset="detailing"] .reviews-list blockquote > p {
  font-family: var(--body-font);
  font-size: clamp(30px, 3.7vw, 52px);
  font-weight: 520;
  letter-spacing: -.045em;
  line-height: 1.08;
  max-width: 950px;
}
html[data-preset="detailing"] .reviews-list blockquote footer {
  color: var(--detailing-accent);
  font-size: 11px;
  letter-spacing: .1em;
  margin-top: 34px;
  text-transform: uppercase;
}

html[data-preset="detailing"] .contact-section {
  background: var(--detailing-paper);
  color: var(--detailing-ink);
  display: grid;
  gap: clamp(48px, 7vw, 96px);
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr);
  order: 7;
  padding: clamp(92px, 9vw, 132px) clamp(28px, 5vw, 72px);
}
html[data-preset="detailing"] .contact-copy {
  align-self: center;
  grid-column: 2;
  grid-row: 1;
  max-width: 500px;
}
html[data-preset="detailing"] .contact-copy .eyebrow { color: var(--detailing-steel); }
html[data-preset="detailing"] .contact-details {
  border-top-color: var(--detailing-rule);
  margin: 38px 0 32px;
}
html[data-preset="detailing"] .contact-details p { border-bottom-color: var(--detailing-rule); }
html[data-preset="detailing"] .contact-details span { color: var(--detailing-steel); }
html[data-preset="detailing"] .contact-copy .button-light {
  background: var(--detailing-ink);
  border-color: var(--detailing-ink);
  color: var(--detailing-white);
  width: auto;
}
html[data-preset="detailing"] .map-card {
  background: var(--detailing-graphite);
  grid-column: 1;
  grid-row: 1;
  min-height: 690px;
}
html[data-preset="detailing"] .map-card::before,
html[data-preset="detailing"] .map-card::after { display: none; }
html[data-preset="detailing"] .contact-visual {
  display: block !important;
  filter: saturate(.5) contrast(1.12) brightness(.72);
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}
html[data-preset="detailing"] :is(.map-district, .map-marker, .map-street) { display: none; }
html[data-preset="detailing"] .map-card > a {
  align-items: center;
  background: var(--detailing-white);
  bottom: 18px;
  color: var(--detailing-ink);
  display: flex;
  gap: 22px;
  justify-content: space-between;
  left: 18px;
  min-height: 56px;
  padding: 0 20px;
  right: auto;
}

html[data-preset="detailing"] .final-cta {
  background: var(--detailing-ink);
  grid-template: minmax(680px, 82svh) / 1fr;
  min-height: 0;
  order: 8;
  overflow: hidden;
  position: relative;
}
html[data-preset="detailing"] .final-cta > img {
  filter: saturate(.5) contrast(1.12) brightness(.62);
  grid-area: 1 / 1;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  width: 100%;
}
html[data-preset="detailing"] .final-cta-overlay {
  background: linear-gradient(90deg, rgba(8, 13, 15, .9), rgba(8, 13, 15, .22) 68%);
  grid-area: 1 / 1;
  position: relative;
  z-index: 1;
}
html[data-preset="detailing"] .final-cta-copy {
  align-self: end;
  color: var(--detailing-white);
  grid-area: 1 / 1;
  max-width: 850px;
  padding: clamp(64px, 8vw, 112px) clamp(28px, 5vw, 72px);
  position: relative;
  z-index: 2;
}
html[data-preset="detailing"] .final-cta-copy .eyebrow { color: var(--detailing-accent); }
html[data-preset="detailing"] .final-cta-copy h2 {
  font-size: clamp(52px, 6.3vw, 90px);
  font-weight: 640;
  letter-spacing: -.055em;
  line-height: .92;
  margin-bottom: 24px;
}
html[data-preset="detailing"] .final-cta-copy > p:not(.eyebrow) {
  color: rgba(247, 248, 247, .68);
  margin-bottom: 30px;
}
html[data-preset="detailing"] .final-cta-copy .button {
  background: var(--detailing-white);
  border-color: var(--detailing-white);
  color: var(--detailing-ink);
}
html[data-preset="detailing"] .final-cta.detailing-final-text-only .final-cta-overlay { display: none; }
html[data-preset="detailing"] .final-cta.detailing-final-text-only .final-cta-copy { align-self: center; }

html[data-preset="detailing"] .footer {
  background: var(--detailing-ink);
  color: rgba(247, 248, 247, .55);
  order: 9;
}
html[data-preset="detailing"] .footer-brand {
  color: var(--detailing-white);
  font-family: var(--body-font);
  text-transform: uppercase;
}
html[data-preset="detailing"] .footer-nav { align-items: center; gap: 24px; }

@media (hover: hover) and (min-width: 700px) {
  html[data-preset="detailing"] .detailing-service-row:hover,
  html[data-preset="detailing"] .detailing-service-row:focus-visible {
    color: #1d5559;
    transform: translateX(4px);
  }
  html[data-preset="detailing"] .services-grid:hover .detailing-service-row:not(:hover) { opacity: .5; }
  html[data-preset="detailing"] :is(.detailing-team-member .team-photo, .gallery-photo):hover img { transform: scale(1.02); }
  html[data-preset="detailing"] :is(.button, .service-link, .team-book, .hero-secondary, .map-card > a) svg {
    transition: transform 220ms ease;
  }
  html[data-preset="detailing"] :is(.button, .service-link, .team-book, .hero-secondary, .map-card > a):hover svg { transform: translateX(4px); }
}

html.detailing-motion-enabled[data-preset="detailing"] .hero-media img {
  opacity: .9;
  transform: scale(1.025);
}
html.detailing-motion-enabled[data-preset="detailing"] .hero :is(.eyebrow, h1, .hero-bottom) {
  opacity: 0;
  transform: translateY(16px);
}
html.detailing-motion-enabled.detailing-hero-ready[data-preset="detailing"] .hero-media img {
  opacity: 1;
  transform: scale(1);
  transition: opacity 1050ms ease, transform 1250ms cubic-bezier(.22, .61, .36, 1);
}
html.detailing-motion-enabled.detailing-hero-ready[data-preset="detailing"] .hero :is(.eyebrow, h1, .hero-bottom) {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 620ms ease, transform 620ms cubic-bezier(.22, .61, .36, 1);
}
html.detailing-motion-enabled.detailing-hero-ready[data-preset="detailing"] .hero h1 { transition-delay: 100ms; }
html.detailing-motion-enabled.detailing-hero-ready[data-preset="detailing"] .hero-bottom { transition-delay: 210ms; }
html.detailing-motion-enabled[data-preset="detailing"] .detailing-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(.22, .61, .36, 1);
}
html.detailing-motion-enabled[data-preset="detailing"] .detailing-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 699px) {
  html[data-preset="detailing"] .site-header { height: 72px; padding-inline: 20px; }
  html[data-preset="detailing"] .site-header .brand { font-size: 22px; }
  html[data-preset="detailing"] .hero {
    height: 100svh;
    max-height: 900px;
    min-height: 700px;
  }
  html[data-preset="detailing"] .hero::after {
    background: linear-gradient(180deg, rgba(6, 10, 12, .35) 0%, rgba(6, 10, 12, .04) 35%, rgba(6, 10, 12, .2) 56%, rgba(6, 10, 12, .94) 100%);
  }
  html[data-preset="detailing"] .hero-media img { object-position: 55% center; }
  html[data-preset="detailing"] .hero-copy { padding: 104px 20px max(24px, env(safe-area-inset-bottom)); }
  html[data-preset="detailing"] .hero .eyebrow { font-size: 9px; margin-bottom: 12px; }
  html[data-preset="detailing"] .hero h1 {
    font-size: clamp(49px, 14.2vw, 58px);
    line-height: .86;
    max-width: 5.7em;
  }
  html[data-preset="detailing"] .hero-title-last { margin-left: .72em; }
  html[data-preset="detailing"] .hero-bottom { gap: 12px; padding-top: 16px; width: 100%; }
  html[data-preset="detailing"] .hero-lead { font-size: 14px; }
  html[data-preset="detailing"] .hero-action {
    display: grid;
    gap: 8px 14px;
    grid-template-columns: max-content minmax(0, 1fr);
  }
  html[data-preset="detailing"] .hero-button { min-height: 54px; padding-inline: 20px; }
  html[data-preset="detailing"] .hero-secondary { justify-content: flex-start; }
  html[data-preset="detailing"] .hero-note { grid-column: 1 / -1; }

  html[data-preset="detailing"] .section,
  html[data-preset="detailing"] .detailing-process,
  html[data-preset="detailing"] .contact-section { padding: 78px 20px; }
  html[data-preset="detailing"] .section-heading,
  html[data-preset="detailing"] .gallery-intro { margin-bottom: 40px; }
  html[data-preset="detailing"] :is(.section-heading h2, .gallery-intro h2, .contact-copy h2, .detailing-process h2) { font-size: 40px; }

  html[data-preset="detailing"] .services-layout { display: block; }
  html[data-preset="detailing"] .services-visual { display: none !important; }
  html[data-preset="detailing"] .detailing-service-row {
    gap: 10px 12px;
    grid-template-columns: 26px minmax(0, 1fr) auto;
    min-height: 0;
    padding: 23px 0 !important;
  }
  html[data-preset="detailing"] .detailing-service-row .service-index { grid-column: 1; grid-row: 1 / 3; }
  html[data-preset="detailing"] .detailing-service-row .service-main { grid-column: 2 / -1; grid-row: 1; }
  html[data-preset="detailing"] .detailing-service-row .service-kicker,
  html[data-preset="detailing"] .detailing-service-row .service-main > p:last-child { display: none; }
  html[data-preset="detailing"] .detailing-service-row h3 { font-size: 24px; margin: 0; }
  html[data-preset="detailing"] .detailing-service-row .service-meta {
    align-items: baseline;
    display: flex;
    gap: 8px;
    grid-column: 2;
    grid-row: 2;
  }
  html[data-preset="detailing"] .detailing-service-row .service-meta span::after { content: " ·"; }
  html[data-preset="detailing"] .detailing-service-row .service-link { grid-column: 3; grid-row: 2; }

  html[data-preset="detailing"] .detailing-process-heading {
    display: block;
    margin-bottom: 38px;
  }
  html[data-preset="detailing"] .detailing-process-heading h2 { margin-bottom: 18px; }
  html[data-preset="detailing"] .detailing-process-layout { display: flex; flex-direction: column; gap: 34px; }
  html[data-preset="detailing"] .detailing-process-media { min-height: 0; }
  html[data-preset="detailing"] .detailing-process-media img { aspect-ratio: 4 / 3; }
  html[data-preset="detailing"] .detailing-process-step { grid-template-columns: 38px minmax(0, 1fr); min-height: 0; padding: 22px 0; }
  html[data-preset="detailing"] .detailing-process-step h3 { font-size: 27px; }

  html[data-preset="detailing"] .gallery-intro { display: block; }
  html[data-preset="detailing"] .gallery-intro h2 { margin-bottom: 18px; }
  html[data-preset="detailing"] .gallery-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: none;
  }
  html[data-preset="detailing"] .gallery-photo,
  html[data-preset="detailing"] .gallery-photo:first-child,
  html[data-preset="detailing"] .gallery-photo:nth-child(2),
  html[data-preset="detailing"] .gallery-photo:nth-child(3) {
    aspect-ratio: 4 / 5;
    grid-column: 1;
    grid-row: auto;
  }
  html[data-preset="detailing"] .gallery-photo:nth-child(2) { aspect-ratio: 5 / 4; margin-left: 36px; }
  html[data-preset="detailing"] .gallery-photo:nth-child(3) { aspect-ratio: 4 / 3; margin-right: 36px; }

  html[data-preset="detailing"] .team-grid {
    display: grid;
    gap: 58px;
    grid-auto-columns: auto;
    grid-auto-flow: row;
    grid-template-columns: minmax(0, 1fr);
  }
  html[data-preset="detailing"] .detailing-team-member {
    display: grid;
    gap: 22px;
    grid-template-columns: minmax(0, 1fr);
    min-width: 0;
    width: 100%;
  }
  html[data-preset="detailing"] .detailing-team-member .team-photo {
    aspect-ratio: auto;
    margin: 0;
    position: static;
    width: 100%;
  }
  html[data-preset="detailing"] .detailing-team-member .team-photo img {
    aspect-ratio: 4 / 5;
    display: block;
    height: auto;
    inset: auto;
    object-fit: cover;
    position: static;
    width: 100%;
  }
  html[data-preset="detailing"] .detailing-team-member .team-copy { width: 100%; }
  html[data-preset="detailing"] .detailing-team-member h3 { font-size: 31px; }

  html[data-preset="detailing"] .reviews-section { display: block; }
  html[data-preset="detailing"] .reviews-heading { margin-bottom: 38px; }
  html[data-preset="detailing"] .reviews-list blockquote { min-height: 0; padding: 34px 0; }
  html[data-preset="detailing"] .reviews-list blockquote > p { font-size: 27px; }

  html[data-preset="detailing"] .contact-section { display: flex; flex-direction: column; gap: 40px; }
  html[data-preset="detailing"] .map-card { min-height: 470px; order: 1; }
  html[data-preset="detailing"] .contact-copy { order: 2; }
  html[data-preset="detailing"] .contact-details p { grid-template-columns: 76px 1fr; }
  html[data-preset="detailing"] .contact-copy .button-light { width: 100%; }

  html[data-preset="detailing"] .final-cta { grid-template-rows: minmax(650px, 82svh); }
  html[data-preset="detailing"] .final-cta > img { object-position: 62% center; }
  html[data-preset="detailing"] .final-cta-overlay { background: linear-gradient(0deg, rgba(8, 13, 15, .95), rgba(8, 13, 15, .18) 72%); }
  html[data-preset="detailing"] .final-cta-copy { padding: 64px 20px 42px; }
  html[data-preset="detailing"] .final-cta-copy h2 { font-size: 45px; }

  html[data-preset="detailing"] .footer { align-items: flex-start; flex-direction: column; padding: 42px 20px; }
  html[data-preset="detailing"] .footer-nav { flex-wrap: wrap; justify-content: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
  .mobile-nav, .booking-modal { animation: none; }
  html[data-preset="barber"] .mobile-nav *,
  html[data-preset="barber"] .barber-reveal,
  html[data-preset="barber"] .hero-media img,
  html[data-preset="barber"] .hero .eyebrow,
  html[data-preset="barber"] .hero h1 .hero-title-line,
  html[data-preset="barber"] .hero-bottom {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  html[data-preset="beauty"] .mobile-nav *,
  html[data-preset="beauty"] .beauty-reveal,
  html[data-preset="beauty"] .hero-media img,
  html[data-preset="beauty"] .hero :is(.eyebrow, h1, .hero-bottom),
  html[data-preset="beauty"] :is(.team-photo img, .gallery-photo img, .services-visual img) {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  html[data-preset="detailing"] .detailing-reveal,
  html[data-preset="detailing"] .hero-media img,
  html[data-preset="detailing"] .hero :is(.eyebrow, h1, .hero-bottom),
  html[data-preset="detailing"] :is(.team-photo img, .gallery-photo img, .services-visual img) {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
