/* ==========================================================================
   SWEENEY TOKYO — Design System
   ========================================================================== */

:root {
  --ink: #141414;
  --paper: #f4f1ea;
  --paper-warm: #ebe6dc;
  --line: #d4cec3;
  --muted: #5c5852;
  --white: #fff;

  /* Shinkoiwa — clean, slightly rugged */
  --sk-bg: #f4f1ea;
  --sk-surface: #e8e4db;
  --sk-accent: #1e2d4a;
  --sk-accent-light: #2a3f66;
  --sk-text: #141414;

  /* Barber — classic, warm, antique */
  --bb-bg: #1a1612;
  --bb-surface: #231e19;
  --bb-accent: #b8895a;
  --bb-accent-dim: #8a6840;
  --bb-text: #e8e2d8;
  --bb-muted: #9a9288;

  --serif: Georgia, "Times New Roman", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;

  --header-h: 72px;
  --section-pad: clamp(72px, 12vw, 140px);
  --gutter: clamp(20px, 5vw, 48px);
  --max-w: 1180px;
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* Reset & Base
   -------------------------------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

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

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

figure { margin: 0; }

/* Typography
   -------------------------------------------------------------------------- */

.label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  margin: 0 0 20px;
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.35;
  margin: 0;
}

.body-text {
  color: var(--muted);
  font-size: 14px;
  line-height: 2;
  margin: 0 0 1.2em;
}

.body-text:last-child { margin-bottom: 0; }

.is-unset {
  color: var(--muted);
  opacity: 0.35;
  font-style: normal;
}

.menu-price.is-unset {
  letter-spacing: 0.15em;
  font-size: 12px;
}

.info-value.is-unset {
  letter-spacing: 0.08em;
}

.info-value {
  white-space: pre-line;
}

.menu-link {
  font-size: 11px;
  letter-spacing: 0.06em;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.menu-link:hover {
  opacity: 0.7;
}

.menu-note {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.9;
  margin: 20px 0 0;
}

.salon-zone--barber .menu-note {
  color: var(--bb-muted);
}

.map-link {
  display: inline-block;
  margin-top: 24px;
  font-size: 10px;
  letter-spacing: 0.13em;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  transition: opacity 0.2s;
}

.map-link:hover { opacity: 0.7; }

[hidden] { display: none !important; }

/* Layout
   -------------------------------------------------------------------------- */

.section {
  max-width: var(--max-w);
  margin-inline: auto;
  padding: var(--section-pad) var(--gutter);
}

.section-head {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 48px;
}

.section-head-line {
  flex: 1;
  height: 1px;
  background: var(--line);
}

.section-head-title {
  font-size: 11px;
  letter-spacing: 0.18em;
  margin: 0;
  white-space: nowrap;
}

.hide-mobile { display: inline; }

/* Header
   -------------------------------------------------------------------------- */

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  padding: 0 var(--gutter);
  color: var(--white);
  transition: background 0.4s var(--ease), color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(244, 241, 234, 0.96);
  color: var(--ink);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.site-header.is-dark {
  color: var(--bb-text);
}

.site-header.is-dark.is-scrolled {
  background: rgba(26, 22, 18, 0.96);
  color: var(--bb-text);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
}

.brand {
  width: clamp(90px, 14vw, 125px);
  flex-shrink: 0;
}

.brand img {
  height: auto;
  filter: brightness(0) invert(1);
  transition: filter 0.4s var(--ease);
}

.site-header.is-scrolled .brand img {
  filter: none;
}

.site-header.is-dark .brand img {
  filter: brightness(0) invert(1);
}

.site-header.is-dark.is-scrolled .brand img {
  filter: brightness(0) invert(1);
}

.desktop-nav {
  display: flex;
  gap: clamp(16px, 2.5vw, 28px);
  align-items: center;
  font-size: 10px;
  letter-spacing: 0.14em;
}

.desktop-nav a {
  opacity: 0.92;
  transition: opacity 0.2s;
}

.site-header:not(.is-scrolled) .desktop-nav a {
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}

.desktop-nav a:hover { opacity: 1; }

.nav-reserve {
  border: 1px solid currentColor;
  padding: 9px 18px;
  opacity: 1 !important;
}

.menu-button {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 10px;
}

.menu-button span {
  display: block;
  width: 22px;
  height: 1px;
  background: currentColor;
  margin: 5px auto;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

.menu-open .menu-button span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-open .menu-button span:nth-child(2) { opacity: 0; }

.menu-open .menu-button span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile Nav
   -------------------------------------------------------------------------- */

.mobile-nav {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 28px;
  background: rgba(20, 20, 20, 0.97);
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(22px, 5vw, 32px);
  letter-spacing: 0.06em;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0.35s;
}

.mobile-nav.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav a {
  opacity: 0.85;
  transition: opacity 0.2s;
}

.mobile-nav a:hover { opacity: 1; }

/* Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: 100svh;
  color: var(--white);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(6, 8, 14, 0.94) 0%,
    rgba(6, 8, 14, 0.78) 38%,
    rgba(6, 8, 14, 0.42) 62%,
    rgba(6, 8, 14, 0.62) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100svh;
  padding: calc(var(--header-h) + 40px) var(--gutter) clamp(80px, 12vh, 120px);
  max-width: 860px;
}

.eyebrow {
  font-size: 10px;
  letter-spacing: 0.32em;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
}

.hero h1 {
  font-size: clamp(38px, 8vw, 72px);
  line-height: 1.28;
  margin-bottom: 28px;
  color: #fff;
  text-shadow:
    0 2px 24px rgba(0, 0, 0, 0.55),
    0 1px 4px rgba(0, 0, 0, 0.7);
  letter-spacing: 0.015em;
}

.lead {
  font-size: clamp(14px, 2.2vw, 16px);
  line-height: 1.95;
  margin: 0 0 40px;
  color: rgba(255, 255, 255, 0.94);
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.45);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 360px;
}

.hero-link {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 4px 14px;
  padding: 18px 22px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  background: rgba(10, 12, 18, 0.52);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.28);
  transition:
    background 0.3s var(--ease),
    color 0.3s var(--ease),
    border-color 0.3s var(--ease),
    transform 0.2s var(--ease),
    box-shadow 0.3s var(--ease);
}

.hero-link:hover,
.hero-link:focus-visible {
  background: rgba(255, 255, 255, 0.97);
  color: var(--ink);
  border-color: #fff;
  box-shadow: 0 6px 32px rgba(0, 0, 0, 0.22);
}

.hero-link:active {
  transform: scale(0.985);
}

.hero-link-place {
  font-family: var(--serif);
  font-size: clamp(18px, 4.5vw, 22px);
  grid-column: 1;
  grid-row: 1;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

.hero-link:hover .hero-link-place,
.hero-link:focus-visible .hero-link-place {
  text-shadow: none;
}

.hero-link-name {
  font-size: 10px;
  letter-spacing: 0.18em;
  grid-column: 1;
  grid-row: 2;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
}

.hero-link:hover .hero-link-name,
.hero-link:focus-visible .hero-link-name {
  color: var(--muted);
}

.hero-link-arrow {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
  font-size: 22px;
  font-weight: 300;
  opacity: 0.95;
  transition: transform 0.3s var(--ease);
}

.hero-link:hover .hero-link-arrow,
.hero-link:focus-visible .hero-link-arrow {
  transform: translateX(3px);
}

.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-align: center;
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

.scroll-hint span {
  display: block;
  width: 1px;
  height: 32px;
  background: var(--white);
  margin: 10px auto 0;
}

/* Brand About
   -------------------------------------------------------------------------- */

.brand-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 100px);
  align-items: center;
}

.brand-about h2 {
  font-size: clamp(26px, 3.5vw, 42px);
  margin-bottom: 28px;
}

.brand-about-visual {
  aspect-ratio: 4 / 3;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(32px, 6vw, 56px);
}

.brand-about-visual img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(1) brightness(4.5) contrast(1.05);
}

/* Salon Gateway
   -------------------------------------------------------------------------- */

.gateway-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.gateway-card {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  color: var(--white);
}

.gateway-card img {
  transition: transform 0.7s var(--ease);
}

.gateway-card:hover img {
  transform: scale(1.04);
}

.gateway-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.35) 55%,
    rgba(0, 0, 0, 0.08) 100%
  );
  transition: background 0.4s var(--ease);
}

.gateway-card:hover .gateway-card-overlay,
.gateway-card:focus-visible .gateway-card-overlay {
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.92) 0%,
    rgba(0, 0, 0, 0.45) 55%,
    rgba(0, 0, 0, 0.12) 100%
  );
}

.gateway-card-body {
  position: absolute;
  left: clamp(24px, 4vw, 40px);
  right: clamp(24px, 4vw, 40px);
  bottom: clamp(24px, 4vw, 40px);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.55);
}

.gateway-card-area {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 28px);
  margin: 0 0 8px;
}

.gateway-card h3 {
  font-size: 10px;
  letter-spacing: 0.16em;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.92);
}

.gateway-card p {
  font-size: 13px;
  line-height: 1.8;
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.9);
}

.gateway-card-more {
  font-size: 9px;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.95);
  transition: letter-spacing 0.3s var(--ease);
}

.gateway-card:hover .gateway-card-more,
.gateway-card:focus-visible .gateway-card-more {
  letter-spacing: 0.22em;
}

/* Salon Zones — Shared
   -------------------------------------------------------------------------- */

.salon-zone {
  margin-top: clamp(40px, 8vw, 80px);
}

.salon-hero {
  position: relative;
  min-height: clamp(420px, 70vh, 640px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.salon-hero-media {
  position: absolute;
  inset: 0;
}

.salon-hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: clamp(48px, 8vw, 80px) var(--gutter);
  max-width: var(--max-w);
  margin-inline: auto;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.salon-hero h2 {
  font-size: clamp(32px, 5vw, 52px);
  margin-bottom: 16px;
  color: #fff;
}

.salon-heading-sub {
  display: block;
  margin-top: 0.4em;
  font-family: var(--sans);
  font-size: clamp(13px, 2vw, 16px);
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.5;
  opacity: 0.88;
}

.info-value a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.info-value a:hover {
  opacity: 0.75;
}

.salon-hero-tagline {
  font-size: 14px;
  line-height: 1.9;
  margin: 0;
  max-width: 420px;
  color: rgba(255, 255, 255, 0.92);
}

.salon-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 90px);
  align-items: center;
}

.salon-intro-grid--reverse .salon-intro-copy { order: 2; }
.salon-intro-grid--reverse .salon-intro-figure { order: 1; }

.salon-intro h3 {
  font-size: clamp(24px, 3vw, 36px);
  margin-bottom: 24px;
}

.salon-intro-figure {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.salon-gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-auto-rows: clamp(180px, 22vw, 260px);
  gap: 8px;
}

.salon-gallery-grid--single {
  grid-template-columns: 1fr;
  grid-auto-rows: auto;
}

.salon-gallery-grid--single figure {
  aspect-ratio: 16 / 10;
  max-height: 560px;
}

.gallery-feature {
  grid-row: span 2;
}

.salon-gallery-grid figure {
  overflow: hidden;
}

.salon-menu-inner,
.salon-access-inner,
.salon-reserve-inner {
  max-width: 560px;
}

.salon-menu h3,
.salon-access h3,
.salon-reserve h3 {
  font-size: clamp(22px, 2.5vw, 30px);
  margin-bottom: 32px;
}

.menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.menu-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.menu-name { flex: 1; }

.menu-price {
  font-size: 13px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.info-list {
  margin: 0;
}

.info-list div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.info-list dt {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-weight: 600;
}

.info-list dd {
  margin: 0;
}

.salon-quote {
  margin: 32px 0 0;
  padding: 0;
  border: none;
}

.salon-quote p {
  font-family: var(--serif);
  font-size: clamp(18px, 2.5vw, 24px);
  font-style: italic;
  line-height: 1.5;
  margin: 0 0 8px;
}

.salon-quote cite {
  font-size: 11px;
  letter-spacing: 0.12em;
  font-style: normal;
  opacity: 0.6;
}

/* Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 11px;
  letter-spacing: 0.14em;
  border: 1px solid currentColor;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}

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

.btn--dark:hover {
  background: var(--bb-accent);
  color: var(--bb-bg);
  border-color: var(--bb-accent);
}

.reserve-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

/* Shinkoiwa Theme
   -------------------------------------------------------------------------- */

.salon-zone--shinkoiwa {
  background: var(--sk-bg);
  color: var(--sk-text);
}

.salon-zone--shinkoiwa .salon-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(20, 30, 50, 0.92) 0%,
    rgba(20, 30, 50, 0.45) 50%,
    rgba(20, 30, 50, 0.2) 100%
  );
  pointer-events: none;
}

.salon-zone--shinkoiwa .salon-hero { color: var(--white); }

.salon-zone--shinkoiwa .salon-menu {
  background: var(--sk-surface);
  max-width: none;
  padding-inline: var(--gutter);
}

.salon-zone--shinkoiwa .salon-menu-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding: var(--section-pad) 0;
}

.salon-zone--shinkoiwa .salon-access,
.salon-zone--shinkoiwa .salon-reserve {
  max-width: var(--max-w);
  margin-inline: auto;
}

.salon-zone--shinkoiwa .salon-reserve {
  padding-bottom: calc(var(--section-pad) + 20px);
}

.salon-zone--shinkoiwa .btn {
  border-color: var(--sk-accent);
  color: var(--sk-accent);
}

.salon-zone--shinkoiwa .btn:hover {
  background: var(--sk-accent);
  color: var(--white);
}

/* Barber Theme
   -------------------------------------------------------------------------- */

.salon-zone--barber {
  background: var(--bb-bg);
  color: var(--bb-text);
}

.salon-zone--barber .label {
  color: var(--bb-accent);
}

.salon-zone--barber .body-text {
  color: var(--bb-muted);
}

.salon-zone--barber .section-head-line {
  background: rgba(255, 255, 255, 0.12);
}

.salon-zone--barber .salon-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(18, 14, 10, 0.94) 0%,
    rgba(18, 14, 10, 0.5) 50%,
    rgba(18, 14, 10, 0.22) 100%
  );
  pointer-events: none;
}

.salon-zone--barber .salon-hero { color: var(--bb-text); }

.salon-zone--barber .salon-hero-tagline {
  color: rgba(255, 255, 255, 0.9);
}

.salon-zone--barber .menu-list,
.salon-zone--barber .info-list div {
  border-color: rgba(255, 255, 255, 0.1);
}

.salon-zone--barber .info-list dt {
  color: var(--bb-muted);
}

.salon-zone--barber .is-unset,
.salon-zone--barber .info-value.is-unset {
  color: var(--bb-muted);
}

.salon-zone--barber .map-link {
  color: var(--bb-accent);
}

.salon-zone--barber .salon-menu {
  background: var(--bb-surface);
  max-width: none;
  padding-inline: var(--gutter);
}

.salon-zone--barber .salon-menu-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding: var(--section-pad) 0;
}

.salon-zone--barber .salon-access,
.salon-zone--barber .salon-reserve {
  max-width: var(--max-w);
  margin-inline: auto;
}

.salon-zone--barber .salon-reserve {
  padding-bottom: calc(var(--section-pad) + 20px);
}

.salon-zone--barber .btn {
  border-color: var(--bb-accent);
  color: var(--bb-accent);
}

.salon-zone--barber .btn:hover {
  background: var(--bb-accent);
  color: var(--bb-bg);
}

.salon-zone--barber .salon-quote p {
  color: var(--bb-text);
}

/* Owner
   -------------------------------------------------------------------------- */

.owner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 90px);
  align-items: center;
}

.owner-visual {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.owner h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  margin-bottom: 24px;
}

/* Global Reserve
   -------------------------------------------------------------------------- */

.global-reserve {
  text-align: center;
  background: var(--ink);
  color: var(--white);
  max-width: none;
  padding-inline: var(--gutter);
}

.global-reserve h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  margin-bottom: 20px;
}

.global-reserve .body-text {
  color: rgba(255, 255, 255, 0.65);
}

.global-reserve-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.global-reserve .btn {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}

.global-reserve .btn:hover {
  background: var(--white);
  color: var(--ink);
}

.global-reserve .btn--dark {
  border-color: var(--bb-accent);
  color: var(--bb-accent);
}

.global-reserve .btn--dark:hover {
  background: var(--bb-accent);
  color: var(--ink);
}

/* Footer
   -------------------------------------------------------------------------- */

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px var(--gutter);
  font-size: 10px;
  letter-spacing: 0.12em;
  border-top: 1px solid var(--line);
}

.site-footer img {
  width: clamp(90px, 14vw, 120px);
  height: auto;
  object-fit: contain;
}

/* Mobile Bar
   -------------------------------------------------------------------------- */

.mobile-bar {
  display: none;
}

/* Responsive — Tablet
   -------------------------------------------------------------------------- */

@media (max-width: 960px) {
  .brand-about,
  .salon-intro-grid,
  .owner {
    grid-template-columns: 1fr;
  }

  .salon-intro-grid--reverse .salon-intro-copy,
  .salon-intro-grid--reverse .salon-intro-figure {
    order: unset;
  }

  .brand-about-visual {
    order: -1;
    aspect-ratio: 16 / 9;
  }

  .salon-gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 200px;
  }

  .gallery-feature {
    grid-row: span 1;
    grid-column: span 2;
    aspect-ratio: 16 / 10;
  }
}

/* Responsive — Mobile
   -------------------------------------------------------------------------- */

@media (max-width: 720px) {
  .hide-mobile { display: none; }

  .desktop-nav { display: none; }

  .menu-button { display: flex; }

  .hero-inner {
    justify-content: center;
    padding-bottom: 100px;
    max-width: none;
  }

  .hero h1 {
    font-size: clamp(34px, 9.5vw, 44px);
    line-height: 1.32;
  }

  .hero-actions { max-width: none; }

  .hero-link {
    padding: 20px 22px;
  }

  .gateway-grid {
    grid-template-columns: 1fr;
  }

  .gateway-card {
    aspect-ratio: 4 / 5;
  }

  .salon-gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .gallery-feature {
    grid-column: span 1;
    aspect-ratio: 4 / 5;
  }

  .salon-gallery-grid figure:not(.gallery-feature) {
    aspect-ratio: 16 / 10;
  }

  .info-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .site-footer {
    flex-direction: column;
    gap: 20px;
    text-align: center;
    padding-bottom: 100px;
  }

  .mobile-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    position: fixed;
    z-index: 80;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(20, 20, 20, 0.96);
    color: var(--white);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  .mobile-bar a {
    text-align: center;
    padding: 14px 8px;
    font-size: 10px;
    letter-spacing: 0.08em;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.2s;
  }

  .mobile-bar a:last-child { border-right: none; }

  .mobile-bar a:active {
    background: rgba(255, 255, 255, 0.08);
  }
}

/* Accessibility
   -------------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    transition-duration: 0.01ms !important;
  }

  .gateway-card:hover img {
    transform: none;
  }
}

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

.salon-zone--barber :focus-visible {
  outline-color: var(--bb-accent);
}

.menu-open {
  overflow: hidden;
}
