:root {
  --ink: #2a211c;
  --coffee: #6f5b4e;
  --desert-rock: #a48d78;
  --soft-sandstone: #cbb9a4;
  --creamed-oat: #e6dac8;
  --porcelain-mist: #f4f1ea;
  --feather-white: #faf9f6;
  --copper: #a48d78;
  --mist: var(--porcelain-mist);
  --paper: var(--feather-white);
  --surface: rgba(250, 249, 246, .9);
  --surface-strong: rgba(250, 249, 246, .96);
  --surface-warm: rgba(230, 218, 200, .44);
  --line: rgba(42, 33, 28, .14);
  --shadow: 0 28px 76px rgba(42, 33, 28, .12);
  --soft-shadow: 0 16px 44px rgba(42, 33, 28, .08);
  --radius-md: 14px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --max: 1216px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --spring: cubic-bezier(.2, .8, .2, 1);
  --gold: #a07830;
  --muted: #6f5b4e;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 88%, rgba(250, 249, 246, .98) 0 12%, transparent 34%),
    radial-gradient(circle at 18% 22%, rgba(230, 218, 200, .92) 0 10%, transparent 32%),
    radial-gradient(circle at 56% 48%, rgba(203, 185, 164, .92) 0 12%, transparent 38%),
    radial-gradient(circle at 90% 18%, rgba(164, 141, 120, .9) 0 14%, transparent 36%),
    linear-gradient(135deg, #faf9f6 0%, #f4f1ea 18%, #e6dac8 42%, #cbb9a4 68%, #a48d78 100%);
  background-attachment: fixed;
  background-size: 180% 180%, 170% 170%, 190% 190%, 180% 180%, 220% 220%;
  background-position: 0% 100%, 12% 18%, 48% 50%, 100% 10%, 0% 50%;
  font-family: "Jost", sans-serif;
  line-height: 1.7;
  overflow-x: clip;
  isolation: isolate;
  animation: pageEntrance .35s ease both, siteBodyColorMove 10s var(--ease) infinite alternate;
}

body::before {
  content: "";
  position: fixed;
  inset: -14vmax;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 68%, rgba(250, 249, 246, .9) 0 9rem, transparent 24rem),
    radial-gradient(circle at 78% 22%, rgba(164, 141, 120, .74) 0 10rem, transparent 30rem),
    radial-gradient(circle at 52% 52%, rgba(203, 185, 164, .82) 0 12rem, transparent 32rem),
    radial-gradient(circle at 26% 28%, rgba(230, 218, 200, .88) 0 11rem, transparent 28rem);
  background-size: 170% 170%, 180% 180%, 190% 190%, 160% 160%;
  mix-blend-mode: soft-light;
  filter: blur(44px);
  opacity: .98;
  transform: translate3d(0, 0, 0);
  animation: siteAmbientSweep 16s var(--ease) infinite alternate;
}

body::after {
  content: "";
  position: fixed;
  inset: -20vmax;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 32%, rgba(164, 141, 120, .5) 0 8rem, transparent 24rem),
    radial-gradient(circle at 82% 24%, rgba(250, 249, 246, .9) 0 7rem, transparent 22rem),
    radial-gradient(circle at 60% 78%, rgba(230, 218, 200, .82) 0 9rem, transparent 26rem),
    radial-gradient(circle at 42% 18%, rgba(203, 185, 164, .62) 0 7rem, transparent 24rem);
  filter: blur(46px);
  opacity: .86;
  transform: translate3d(0, 0, 0);
  animation: siteBlobDrift 9s ease-in-out infinite alternate;
}

@keyframes siteBodyColorMove {
  0% {
    background-position: 0% 100%, 12% 18%, 48% 50%, 100% 10%, 0% 50%;
  }
  50% {
    background-position: 44% 78%, 34% 6%, 62% 34%, 78% 36%, 70% 50%;
  }
  100% {
    background-position: 100% 24%, 8% 72%, 28% 76%, 44% 10%, 100% 50%;
  }
}

@keyframes siteAmbientSweep {
  0% {
    background-position: 8% 80%, 100% 12%, 46% 46%, 16% 22%;
    transform: translate3d(-7%, 4%, 0) scale(1.08) rotate(0deg);
  }
  100% {
    background-position: 88% 28%, 12% 80%, 68% 68%, 42% 58%;
    transform: translate3d(7%, -5%, 0) scale(1.14) rotate(8deg);
  }
}

@keyframes siteBlobDrift {
  0% {
    transform: translate3d(-10%, 4%, 0) rotate(0deg) scale(1);
  }
  33% {
    transform: translate3d(8%, -8%, 0) rotate(14deg) scale(1.12);
  }
  66% {
    transform: translate3d(12%, 8%, 0) rotate(-12deg) scale(1.06);
  }
  100% {
    transform: translate3d(-5%, -10%, 0) rotate(18deg) scale(1.16);
  }
}

.site-header,
main,
.site-footer,
.floating-top {
  position: relative;
  z-index: 1;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open::after {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 998;
}

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

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

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

:focus-visible {
  outline: 3px solid rgba(184, 130, 67, .7);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 2000;
  padding: .75rem 1rem;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  height: 76px;
  display: grid;
  grid-template-columns: 280px 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 0 2rem;
  margin: 0 auto;
  border-bottom: 1px solid rgba(164, 141, 120, .16);
  background: rgba(250, 249, 246, .86);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  box-shadow: 0 16px 42px rgba(42, 33, 28, .08);
  transition: box-shadow .24s ease, background .24s ease, transform .24s var(--spring);
}


.site-header.scrolled {
  background: rgba(250, 249, 246, .98);
  box-shadow: 0 18px 52px rgba(42, 33, 28, .13);
}


.brand {
  display: inline-flex;
  align-items: center;
  gap: .85rem;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(164, 141, 120, .28);
  box-shadow: 0 10px 24px rgba(42, 33, 28, .15);
}

.brand strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  line-height: 1;
  letter-spacing: .14em;
  font-weight: 600;
}

.brand small {
  display: block;
  margin-top: .35rem;
  color: rgba(42, 33, 28, .62);
  font-size: .68rem;
  letter-spacing: .48em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
}

.site-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: .65rem 1rem;
  color: var(--ink);
  font-size: .9rem;
  transition: background .22s ease, color .22s ease, transform .22s var(--ease);
}

.site-nav a:hover,
.site-nav a.active,
.site-nav a[aria-current="page"] {
  background: var(--desert-rock);
  color: #fff;
  transform: translateY(-1px);
}

.header-cta,
.btn {
  position: relative;
  overflow: hidden;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  border-radius: 999px;
  padding: .85rem 1.65rem;
  font-weight: 700;
  transition: transform .24s var(--spring), box-shadow .24s ease, background .24s ease, border-color .24s ease;
}

.header-cta svg,
.btn svg {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  width: 1.05rem;
  height: 1.05rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-cta span,
.btn span {
  position: relative;
  z-index: 1;
}

.header-cta svg path:first-child,
.btn svg path:first-child {
  fill: none;
}

.header-cta::after,
.btn::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 35%, rgba(255, 255, 255, .28) 48%, transparent 62% 100%);
  content: "";
  transform: translateX(-120%);
  transition: transform .55s var(--ease);
}

.header-cta:hover::after,
.btn:hover::after {
  transform: translateX(120%);
}

.header-cta {
  background: var(--desert-rock);
  color: #fff;
  box-shadow: 0 18px 36px rgba(164, 141, 120, .28);
  white-space: nowrap;
}

.btn:hover,
.header-cta:hover,
.branch-feature:hover,
.expert-card:hover,
.gallery-card:hover {
  transform: translateY(-3px);
}

.btn-dark {
  background: linear-gradient(135deg, var(--ink), var(--coffee));
  color: #fff;
  box-shadow: 0 16px 34px rgba(42, 33, 28, .18);
}

.btn-light {
  background: #fff;
  color: var(--ink);
}

.btn-outline {
  border: 1px solid rgba(164, 141, 120, .28);
  background: rgba(250, 249, 246, .72);
  color: var(--coffee);
}

.btn-ghost-dark {
  border: 1px solid rgba(255, 255, 255, .22);
  color: #fff;
}

.menu-toggle {
  display: none;
  position: relative;
  z-index: 1003;
  width: 48px;
  height: 48px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  border-radius: 999px;
  background: var(--ink);
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  display: block;
  margin: 2px auto;
  background: #fff;
  border-radius: 2px;
  transform-origin: center;
  transition: transform .28s var(--ease), opacity .2s ease, margin .28s var(--ease);
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
}
.menu-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.menu-toggle.open span:nth-child(3) {
  transform: translateY(-4px) rotate(-45deg);
}

.hero-shell,
.page-hero,
.intro-card,
.section-block,
.footer-grid,
.cta-band {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.hero-shell {
  min-height: 660px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 3.5rem;
  align-items: center;
  padding: 4.5rem 0 5rem;
}

.home-showcase {
  position: relative;
  width: 100%;
  min-height: 260vh;
  margin: 0 auto;
  padding: 2.25rem 0 0;
}

.home-showcase-sticky {
  position: sticky;
  top: 92px;
  min-height: calc(100vh - 112px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 120px;
  gap: 1.35rem;
  align-items: stretch;
  width: min(100% - 24px, 1780px);
  margin: 0 auto;
}

.home-showcase-frame {
  position: relative;
  min-height: calc(100vh - 150px);
  border: 1px solid rgba(42, 33, 28, .7);
  padding: 18px;
  background: rgba(230, 218, 200, .42);
  box-shadow: 0 26px 80px rgba(42, 33, 28, .1);
  overflow: hidden;
}

.home-showcase-frame::before {
  position: absolute;
  inset: 18px;
  z-index: 0;
  background:
    linear-gradient(rgba(230, 218, 200, .86), rgba(230, 218, 200, .86)),
    url("../../uploads/brand/logo.jpg") center / min(56vw, 680px) auto no-repeat;
  content: "";
  opacity: .88;
}

.home-showcase-frame::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: clamp(1.8rem, 5vw, 4rem);
  z-index: 0;
  color: rgba(164, 141, 120, .34);
  font-size: clamp(1.2rem, 4vw, 3.5rem);
  font-weight: 700;
  letter-spacing: .18em;
  line-height: .9;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  content: "Nails - Lashes - Brows - Spa";
  pointer-events: none;
}

.showcase-panel {
  position: absolute;
  inset: 36px;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transform: translateY(22px) scale(.985);
  transition: opacity .34s var(--ease), transform .34s var(--spring), visibility .34s ease;
  pointer-events: none;
}

.showcase-panel.active {
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
}

.about-panel {
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
}

.about-panel h1,
.branch-panel h2 {
  margin: .2rem 0 1.35rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.4rem, 5.7vw, 6rem);
  font-weight: 500;
  line-height: 1;
}

.about-panel p:not(.eyebrow) {
  width: min(900px, 92%);
  margin: 0 0 1.05rem;
  color: rgba(42, 33, 28, .82);
  font-size: clamp(.98rem, 1.2vw, 1.08rem);
  line-height: 1.58;
}

.about-panel .btn {
  margin-top: 1rem;
}

.branch-panel {
  display: grid;
  grid-template-columns: minmax(260px, .85fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: stretch;
}

.branch-panel figure {
  min-height: 100%;
  margin: 0;
  border: 1px solid rgba(42, 33, 28, .34);
  background: var(--feather-white);
  overflow: hidden;
}

.branch-panel figure img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform .75s var(--spring);
}

.branch-panel.active figure img {
  transform: scale(1);
}

.branch-panel > div {
  display: grid;
  align-content: center;
  justify-items: start;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: rgba(250, 249, 246, .58);
}

.branch-panel address {
  max-width: 560px;
  margin: 0 0 1rem;
  color: var(--coffee);
  font-style: normal;
  font-weight: 700;
}

.branch-panel p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(42, 33, 28, .76);
}

.showcase-rail {
  display: grid;
  align-content: start;
  gap: .7rem;
  padding-top: .15rem;
}

.showcase-thumb {
  width: 100%;
  min-height: 44px;
  height: clamp(86px, 15vh, 148px);
  border: 1px solid rgba(42, 33, 28, .16);
  border-radius: 2px;
  padding: 0;
  background: var(--creamed-oat);
  box-shadow: 0 12px 30px rgba(42, 33, 28, .1);
  opacity: .78;
  overflow: hidden;
  transform-origin: right center;
  transition: height .34s var(--spring), transform .34s var(--spring), opacity .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.showcase-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.86);
  transition: transform .42s var(--spring), filter .24s ease;
}

.showcase-thumb:hover,
.showcase-thumb.active {
  border-color: rgba(42, 33, 28, .58);
  opacity: 1;
  box-shadow: 0 18px 40px rgba(42, 33, 28, .16);
  transform: translateX(-8px);
}

.showcase-thumb.active {
  height: clamp(126px, 21vh, 198px);
}

.showcase-thumb:hover img,
.showcase-thumb.active img {
  filter: saturate(1);
  transform: scale(1.06);
}

.home-showcase {
  background:
    linear-gradient(180deg, rgba(250, 249, 246, .2), rgba(230, 218, 200, .18) 42%, transparent);
}

.home-showcase-frame {
  border-color: rgba(42, 33, 28, .55);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(250, 249, 246, .74), rgba(230, 218, 200, .62));
}

.home-showcase-frame::before {
  border-radius: 12px;
  box-shadow: inset 0 0 0 1px rgba(164, 141, 120, .14);
}

.about-panel {
  width: min(980px, 100%);
  margin: auto;
  border: 1px solid rgba(164, 141, 120, .14);
  padding: clamp(2rem, 4vw, 4rem);
  background: rgba(250, 249, 246, .38);
  box-shadow: 0 28px 80px rgba(42, 33, 28, .08);
}

.home-intro-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(250, 249, 246, .96), rgba(230, 218, 200, .5));
}

.home-intro-card::after {
  position: absolute;
  right: clamp(1.5rem, 5vw, 4rem);
  bottom: clamp(1rem, 3vw, 2.5rem);
  color: rgba(164, 141, 120, .12);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(5rem, 12vw, 12rem);
  line-height: 1;
  content: "AC";
  pointer-events: none;
}

.home-intro-card > * {
  position: relative;
  z-index: 1;
}

.home-video-section,
.home-service-section,
.branch-preview {
  width: min(1360px, calc(100% - 40px));
}

.home-video-section .section-kicker,
.home-service-section .section-kicker {
  border: 1px solid rgba(164, 141, 120, .18);
  border-radius: 22px;
  padding: clamp(1.25rem, 2.5vw, 2rem);
  background:
    linear-gradient(135deg, rgba(250, 249, 246, .94), rgba(230, 218, 200, .38));
  box-shadow: 0 20px 60px rgba(42, 33, 28, .07);
}

.home-video-section .video-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 1.8vw, 1.5rem);
}

.home-video-section .video-card {
  border-radius: 22px;
  padding: .75rem;
  background:
    linear-gradient(180deg, rgba(250, 249, 246, .98), rgba(244, 241, 234, .86));
}

.home-video-section .video-card video {
  aspect-ratio: 9 / 16;
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
  background: var(--creamed-oat);
  display: block;
}

.home-video-section .video-card > div {
  padding: 1.15rem .65rem .75rem;
}

.home-video-section .video-card h3 {
  font-size: clamp(1.3rem, 1.8vw, 2rem);
}

.home-service-section .service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 1.8vw, 1.5rem);
}

.home-service-section .service-card {
  border-radius: 22px;
  padding: .75rem;
  background:
    linear-gradient(180deg, rgba(250, 249, 246, .98), rgba(230, 218, 200, .4));
}

.home-service-section .service-card img {
  aspect-ratio: 4 / 5;
  border-radius: 14px;
  background: var(--creamed-oat);
  object-fit: contain;
}

.home-service-section .service-card > div {
  padding: 1.35rem .9rem .9rem;
}

.home-service-section .service-card h3 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.branch-preview .branch-feature-grid {
  gap: clamp(1rem, 2vw, 1.8rem);
}

.branch-preview .branch-feature {
  border-radius: 24px;
  padding: .8rem;
  background:
    linear-gradient(135deg, rgba(250, 249, 246, .98), rgba(230, 218, 200, .42));
}

.branch-preview .branch-feature img {
  border-radius: 16px;
}

.hero-copy h1,
.page-hero h1,
.intro-card h2,
.section-kicker h2,
.service-card h3,
.branch-feature h2,
.branch-feature h3,
.expert-card h2,
.review-panel h2,
.footer-grid h2,
.cta-band h2,
.split-story h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 1.04;
}

.hero-copy h1 {
  margin: 0 0 1.5rem;
  max-width: 760px;
  font-size: clamp(4.5rem, 6.2vw, 7.4rem);
  letter-spacing: 0;
}

.hero-copy {
  position: relative;
}

.hero-copy::before {
  display: block;
  width: 76px;
  height: 2px;
  margin-bottom: 1.2rem;
  background: linear-gradient(90deg, var(--desert-rock), transparent);
  content: "";
}

.hero-copy p {
  max-width: 720px;
  color: rgba(33, 25, 21, .72);
  font-size: 1.08rem;
}

.eyebrow {
  margin: 0 0 .9rem;
  color: var(--desert-rock);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .48em;
  text-transform: uppercase;
}

.hero-actions,
.branch-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero-actions {
  margin: 2.3rem 0 3rem;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 680px;
}

.metric-row article {
  min-height: 104px;
  display: grid;
  align-content: center;
  border: 1px solid rgba(164, 141, 120, .14);
  border-radius: var(--radius-lg);
  padding: 1.2rem 1.35rem;
  background: rgba(250, 249, 246, .82);
  box-shadow: var(--soft-shadow);
  transition: transform .24s var(--spring), box-shadow .24s ease;
}

.metric-row article:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.metric-row strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  line-height: 1;
  font-weight: 500;
}

.metric-row span {
  margin-top: .45rem;
  color: rgba(42, 33, 28, .64);
  font-size: .72rem;
  letter-spacing: .45em;
  text-transform: uppercase;
}

.hero-photo {
  margin: 0;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(164, 141, 120, .18);
  padding: 12px;
  background: rgba(250, 249, 246, .88);
  box-shadow: var(--shadow);
  transform: rotate(.8deg);
}

.hero-photo img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  object-fit: cover;
}

.intro-card {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 5rem;
  align-items: center;
  margin-top: 2.5rem;
  margin-bottom: 4rem;
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 4vw, 3rem);
  border: 1px solid rgba(164, 141, 120, .14);
  background: rgba(250, 249, 246, .82);
  box-shadow: var(--shadow);
}

.intro-card h2 {
  margin: 0;
  font-size: clamp(2.4rem, 4vw, 4rem);
}

.intro-card p,
.split-story p {
  color: rgba(33, 25, 21, .72);
}

.page-hero {
  padding: 6rem 0 3rem;
}

.page-hero.compact h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(3.3rem, 5vw, 5.7rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(33, 25, 21, .72);
  font-size: 1.1rem;
}

.section-block {
  padding: 4rem 0;
}

.section-kicker {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: end;
  margin-bottom: 2rem;
}

.section-kicker h2 {
  max-width: 1000px;
  margin: 0;
  font-size: clamp(2.6rem, 4vw, 4.25rem);
}

.section-kicker > a {
  color: var(--coffee);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .45em;
  text-transform: uppercase;
}

.video-grid,
.service-grid,
.expert-grid,
.gallery-grid,
.booking-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.video-card,
.service-card,
.expert-card,
.review-card,
.gallery-card,
.booking-card,
.branch-feature {
  overflow: hidden;
  border: 1px solid rgba(164, 141, 120, .14);
  border-radius: var(--radius-lg);
  background: rgba(250, 249, 246, .9);
  box-shadow: var(--soft-shadow);
  transition: transform .26s var(--spring), box-shadow .26s ease, border-color .26s ease;
}

.video-card:hover,
.service-card:hover,
.expert-card:hover,
.review-card:hover,
.gallery-card:hover,
.booking-card:hover,
.branch-feature:hover {
  border-color: rgba(164, 141, 120, .36);
  box-shadow: var(--shadow);
}

.video-card video {
  width: 100%;
  aspect-ratio: 1.15 / 1;
  object-fit: cover;
  background: #1e1a17;
}

.video-card > div,
.service-card > div,
.expert-card > div,
.booking-card > div {
  padding: 1.55rem;
}

.video-card h3,
.service-card h3 {
  margin: .25rem 0 0;
  font-size: 1.75rem;
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card img {
  width: 100%;
  aspect-ratio: 1.55 / .72;
  object-fit: cover;
}

.service-card p,
.expert-card p,
.review-card p,
.booking-card address,
.footer-grid p,
.cta-band p {
  color: rgba(33, 25, 21, .72);
}

.service-video-section,
.service-catalog-section {
  width: min(1360px, calc(100% - 40px));
}

.service-video-section {
  padding-top: 2rem;
}

.service-video-section .section-kicker,
.service-catalog-section .section-kicker {
  border: 1px solid rgba(164, 141, 120, .18);
  border-radius: 22px;
  padding: clamp(1.25rem, 2.5vw, 2rem);
  background:
    linear-gradient(135deg, rgba(250, 249, 246, .92), rgba(230, 218, 200, .38));
  box-shadow: 0 20px 60px rgba(42, 33, 28, .07);
}

.service-video-section .video-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.1rem, 2vw, 1.7rem);
}

.service-video-section .video-card {
  display: grid;
  grid-template-rows: auto 1fr;
  border-radius: 18px;
  padding: .8rem;
  background:
    linear-gradient(180deg, rgba(250, 249, 246, .98), rgba(244, 241, 234, .86));
}

.service-video-section .video-card video {
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: 680px;
  border-radius: 12px;
  background: var(--creamed-oat);
  object-fit: contain;
}

.service-video-section .video-card > div {
  padding: 1.2rem .65rem .75rem;
}

.service-video-section .video-card h3 {
  font-size: clamp(1.7rem, 2.4vw, 2.5rem);
}

.service-catalog-section .service-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(1rem, 1.8vw, 1.5rem);
}

.service-catalog-section .service-card {
  grid-column: span 6;
  display: grid;
  grid-template-columns: minmax(260px, .9fr) minmax(0, 1fr);
  min-height: 420px;
  border-radius: 20px;
  padding: .85rem;
  background:
    linear-gradient(135deg, rgba(250, 249, 246, .98), rgba(230, 218, 200, .38));
}

.service-catalog-section .service-card img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  aspect-ratio: auto;
  border-radius: 14px;
  background: var(--creamed-oat);
  object-fit: contain;
}

.service-image-link {
  position: relative;
  display: block;
  min-height: 390px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--creamed-oat);
  cursor: zoom-in;
}

.service-image-link span {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  min-height: 42px;
  place-items: center;
  border-radius: 999px;
  background: rgba(42, 33, 28, .86);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .22s ease, transform .22s var(--spring);
}

.service-image-link:hover span,
.service-image-link:focus-visible span {
  opacity: 1;
  transform: none;
}

.service-image-link:hover img {
  transform: scale(1.018);
}

.service-catalog-section .service-card > div {
  display: grid;
  align-content: center;
  padding: clamp(1.35rem, 2.4vw, 2rem);
}

.service-catalog-section .service-card h3 {
  margin: .1rem 0 .65rem;
  font-size: clamp(2.2rem, 3.3vw, 3.8rem);
}

.service-catalog-section .service-card p:not(.eyebrow) {
  max-width: 520px;
}

.service-catalog-section .service-card:nth-child(3n) {
  grid-column: span 12;
  grid-template-columns: minmax(320px, .8fr) minmax(0, 1fr);
}

.service-catalog-section .card-foot {
  align-self: end;
  border-top: 1px solid rgba(164, 141, 120, .2);
  padding-top: 1.2rem;
}

.card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.8rem;
}

.card-foot a {
  min-width: 78px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.card-foot a:hover {
  background: var(--desert-rock);
  color: #fff;
}

.branch-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.branch-feature img {
  width: 100%;
  aspect-ratio: 1.7 / .85;
  object-fit: cover;
}

.branch-feature-body {
  display: grid;
  grid-template-columns: .8fr 1fr;
  gap: 1.4rem;
  padding: 1.85rem 2rem 2rem;
}

.branch-feature h2,
.branch-feature h3 {
  margin: 0;
  font-size: 2.35rem;
}

.branch-feature address {
  justify-self: start;
  align-self: start;
  border-radius: 999px;
  padding: .7rem 1.1rem;
  background: var(--creamed-oat);
  color: var(--coffee);
  font-style: normal;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.branch-feature p,
.branch-actions {
  grid-column: 1 / -1;
}

.all-branches {
  grid-template-columns: 1fr 1fr;
}

.split-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.split-story img {
  width: 100%;
  aspect-ratio: 1.3 / 1;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--soft-shadow);
}

.split-story h2 {
  margin: 0 0 1rem;
  font-size: clamp(2.4rem, 4vw, 4rem);
}

.expert-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.expert-card img {
  width: 100%;
  aspect-ratio: 1 / 1.02;
  object-fit: cover;
}

.expert-card h2 {
  margin: .45rem 0 .35rem;
  font-size: 1.8rem;
}

.expert-card .role {
  color: var(--coffee);
  font-weight: 500;
}

.rating-line {
  display: flex;
  justify-content: space-between;
  gap: .5rem;
  margin-top: .4rem;
  color: var(--coffee);
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.review-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 1.5rem;
}

.review-panel {
  min-height: 520px;
  border-radius: var(--radius-lg);
  padding: 2.1rem;
  background: linear-gradient(145deg, var(--coffee), var(--ink));
  color: #fff;
  box-shadow: var(--shadow);
}

.review-panel h2 {
  margin: 0 0 1.5rem;
  font-size: clamp(2.4rem, 4vw, 4rem);
}

.review-panel p:not(.eyebrow) {
  color: rgba(255, 255, 255, .78);
}

.review-list {
  display: grid;
  gap: 1.5rem;
}

.review-card {
  padding: 1.85rem;
}

.review-card div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.review-card h3 {
  margin: 0;
}

.review-card span {
  color: var(--desert-rock);
  letter-spacing: .35em;
}

.gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-card {
  margin: 0;
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
}

.gallery-card figcaption {
  padding: 1rem 1.3rem 1.25rem;
}

.booking-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.booking-card {
  display: grid;
  grid-template-columns: 220px 1fr;
}

.booking-card img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.booking-card h2 {
  margin: .25rem 0 .6rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
}

.booking-card address {
  margin-bottom: 1.4rem;
  font-style: normal;
}

.cta-band {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.7rem;
  align-items: start;
  margin-top: 3rem;
  margin-bottom: 3rem;
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 4vw, 3rem);
  border: 1px solid rgba(250, 249, 246, .22);
  background: linear-gradient(135deg, var(--coffee), var(--desert-rock));
  color: #fff;
  box-shadow: var(--shadow);
}

.cta-band h2 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2.45rem, 4vw, 4rem);
}

.cta-band p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, .86);
}

.cta-band .cta-actions {
  margin-top: .25rem;
  align-items: stretch;
}

.cta-band .btn {
  min-width: 170px;
}

/* System consistency pass */
.page-hero,
.section-kicker,
.intro-card,
.split-story,
.review-panel,
.home-intro-card,
.home-video-section .section-kicker,
.home-service-section .section-kicker,
.service-video-section .section-kicker,
.service-catalog-section .section-kicker,
.service-card,
.video-card,
.expert-card,
.review-card,
.gallery-card,
.booking-card,
.branch-feature,
.branch-staff-card,
.branch-review-form,
.branch-review-card,
.pricelist-group,
.pricelist-item {
  border-color: var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--soft-shadow);
}

.section-kicker,
.home-video-section .section-kicker,
.home-service-section .section-kicker,
.service-video-section .section-kicker,
.service-catalog-section .section-kicker,
.branch-review-section .section-kicker {
  background: linear-gradient(135deg, rgba(250, 249, 246, .94), rgba(230, 218, 200, .42));
}

.service-card,
.video-card,
.expert-card,
.review-card,
.gallery-card,
.booking-card,
.branch-feature,
.branch-staff-card,
.branch-review-form,
.branch-review-card,
.pricelist-item {
  background: var(--surface-strong);
}

.page-hero h1,
.section-kicker h2,
.cta-band h2 {
  letter-spacing: 0;
}

.page-hero.compact h1 {
  font-size: clamp(3.2rem, 5vw, 5.2rem);
}

.section-kicker h2 {
  font-size: clamp(2.35rem, 3.8vw, 3.95rem);
}

.service-card h3,
.branch-feature h2,
.branch-feature h3,
.expert-card h2,
.review-card h3,
.branch-review-card h3 {
  letter-spacing: 0;
}

.service-card p,
.expert-card p,
.review-card p,
.branch-feature p,
.booking-card address,
.cta-band p,
.footer-grid p {
  line-height: 1.75;
}

.eyebrow,
.review-meta,
.rating-line,
.card-foot a {
  letter-spacing: .16em;
}

.btn,
.header-cta {
  min-height: 48px;
  padding-inline: 1.35rem;
  font-size: .92rem;
}

.btn-outline,
.btn-light {
  border: 1px solid rgba(164, 141, 120, .28);
}

.btn:active,
.header-cta:active {
  transform: translateY(-1px) scale(.99);
}

.service-card img,
.expert-card img,
.gallery-card img,
.branch-feature img,
.branch-staff-card img,
.pricelist-item img,
.service-image-link,
.video-card video {
  border-radius: var(--radius-md);
}

.branch-feature address,
.review-score,
.service-image-link span,
.card-foot a,
.review-stars {
  border-radius: 999px;
}

.staff-review-preview article {
  border-radius: var(--radius-md);
}

.branch-review-form input,
.branch-review-form select,
.branch-review-form textarea {
  border-radius: var(--radius-md);
}

.site-footer {
  margin-top: 6rem;
  background: rgba(230, 218, 200, .44);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .9fr .7fr .8fr;
  gap: 3rem;
  padding: 4rem 0;
}

.footer-grid h2 {
  margin: 0;
  font-size: 2.4rem;
}

.footer-title {
  margin-top: 0;
  color: var(--coffee) !important;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .42em;
  text-transform: uppercase;
}

.footer-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
}

.footer-pills a {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .65rem 1rem;
  background: rgba(250, 249, 246, .82);
  transition: background .22s ease, color .22s ease, transform .22s var(--ease);
}

.footer-pills a svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-pills a:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-2px);
}

.copyright {
  margin: 0;
  border-top: 1px solid var(--line);
  padding: 1.1rem;
  color: rgba(33, 25, 21, .55);
  text-align: center;
  font-size: .76rem;
  letter-spacing: .45em;
  text-transform: uppercase;
}

.to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 800;
  width: 54px;
  height: 48px;
  border-radius: 999px;
  background: var(--desert-rock);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  box-shadow: var(--soft-shadow);
  transform: translateY(8px);
  transition: opacity .24s ease, transform .24s var(--spring);
}

.to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(28px) scale(.985);
  transition: opacity .72s var(--ease), transform .72s var(--spring);
  transition-delay: var(--reveal-delay, 0ms);
}

.js .reveal.visible {
  opacity: 1;
  transform: none;
}

@keyframes pageEntrance {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* ── Reviews page ── */
.reviews-summary-band {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto 3rem;
}

.reviews-summary-inner {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  background: linear-gradient(135deg, rgba(250,249,246,.96), rgba(230,218,200,.5));
  border: 1px solid rgba(164,141,120,.22);
  border-radius: 20px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  flex-wrap: wrap;
}

.reviews-summary-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
  min-width: 120px;
}

.reviews-summary-score strong {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}

.reviews-summary-score span {
  font-size: 1.3rem;
  color: #b8860b;
  letter-spacing: .08em;
}

.reviews-summary-score small {
  font-size: .8rem;
  color: var(--muted);
  text-align: center;
}

.reviews-summary-branches {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  flex: 1;
}

.reviews-summary-branch-pill {
  display: flex;
  align-items: center;
  gap: .45rem;
  background: rgba(164,141,120,.12);
  border: 1px solid rgba(164,141,120,.22);
  border-radius: 100px;
  padding: .4rem 1rem;
  font-size: .82rem;
  color: var(--ink);
}

.reviews-summary-branch-pill svg {
  width: 14px;
  height: 14px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  flex-shrink: 0;
}

.review-featured-section {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto 4rem;
}

.review-featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}

.review-featured-card {
  background: linear-gradient(160deg, rgba(250,249,246,.98), rgba(238,230,218,.6));
  border: 1px solid rgba(164,141,120,.2);
  border-radius: 20px;
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.review-featured-stars {
  font-size: 1.15rem;
  color: #b8860b;
  letter-spacing: .06em;
}

.review-featured-card p {
  font-size: clamp(.95rem, 1.3vw, 1.05rem);
  line-height: 1.7;
  color: var(--ink);
  flex: 1;
}

.review-featured-author {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-top: .5rem;
}

.review-featured-author strong {
  display: block;
  font-size: .95rem;
  font-weight: 600;
  color: var(--ink);
}

.review-featured-author small {
  font-size: .78rem;
  color: var(--muted);
}

.review-all-section {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto 4rem;
}

.review-branch-filters {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  align-items: center;
}

.review-filter-btn {
  background: transparent;
  border: 1px solid rgba(164,141,120,.3);
  border-radius: 100px;
  padding: .4rem 1.1rem;
  font-size: .82rem;
  font-family: var(--sans);
  color: var(--muted);
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}

.review-filter-btn:hover,
.review-filter-btn.active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.review-all-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: 2rem;
}

.review-empty-state {
  text-align: center;
  padding: 5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

/* ── Service category grid ── */
.service-menu-section {
  width: min(1360px, calc(100% - 40px));
  margin: 0 auto 4rem;
}

.service-category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 1.8vw, 1.4rem);
}

.service-category-card {
  background: linear-gradient(160deg, rgba(250,249,246,.98), rgba(238,230,218,.55));
  border: 1px solid rgba(164,141,120,.2);
  border-radius: 20px;
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: .85rem;
  transition: transform .26s var(--spring), box-shadow .26s ease, border-color .26s ease;
}

.service-category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(42,33,28,.1);
  border-color: rgba(164,141,120,.5);
}

.service-category-head .eyebrow {
  font-size: .72rem;
  letter-spacing: .14em;
}

.service-category-copy {
  font-size: .9rem;
  line-height: 1.65;
  color: var(--muted);
}

.service-category-items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .4rem;
  flex: 1;
}

.service-category-items li {
  font-size: .85rem;
  color: var(--ink);
  padding: .3rem 0;
  border-bottom: 1px solid rgba(164,141,120,.12);
  display: flex;
  align-items: center;
  gap: .5rem;
}

.service-category-items li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold, #b8860b);
  flex-shrink: 0;
}

.service-category-cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  margin-top: .25rem;
  transition: gap .2s;
}

.service-category-cta:hover {
  gap: .75rem;
}

.service-category-cta svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}

/* ── About page ── */
.about-values-section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto 4rem;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}

.about-value-card {
  background: linear-gradient(160deg, rgba(250,249,246,.98), rgba(238,230,218,.5));
  border: 1px solid rgba(164,141,120,.18);
  border-radius: 20px;
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-value-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(164,141,120,.12);
  border-radius: 12px;
}

.about-value-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--ink);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}

.about-value-card h3 {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.25;
}

.about-value-card p {
  font-size: .9rem;
  line-height: 1.65;
  color: var(--muted);
}

.about-services-section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto 4rem;
}

.about-services-list {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: 1rem;
}

.about-service-pill {
  background: rgba(164,141,120,.1);
  border: 1px solid rgba(164,141,120,.25);
  border-radius: 100px;
  padding: .55rem 1.25rem;
  font-size: .88rem;
  font-weight: 500;
  color: var(--ink);
  transition: background .2s, border-color .2s;
}

.about-service-pill:hover {
  background: rgba(164,141,120,.2);
  border-color: rgba(164,141,120,.45);
}

.about-branches-section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto 4rem;
}

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

@media (max-width: 1200px) {
  .service-category-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .review-featured-grid,
  .review-all-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .branch-staff-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .header-cta {
    display: none;
  }

  .site-header {
    padding: 0 1rem;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    height: 100dvh;
    width: min(75vw, 280px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 5.5rem 0 3rem;
    background: var(--ink);
    z-index: 1001;
    overflow-y: auto;
    box-shadow: -8px 0 40px rgba(0,0,0,.3);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform .28s var(--ease), visibility .28s step-end;
  }

  .site-nav.open {
    transform: translateX(0);
    visibility: visible;
    transition: transform .28s var(--ease), visibility 0s;
  }

  .site-nav a {
    justify-content: flex-start;
    font-family: var(--sans);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: .02em;
    color: rgba(255,255,255,.85);
    border-radius: 0;
    padding: 1rem 1.75rem;
    min-height: unset;
    border-bottom: 1px solid rgba(255,255,255,.07);
    width: 100%;
    text-align: left;
    transform: none;
  }

  .site-nav a:hover {
    background: rgba(255,255,255,.06);
    color: #fff;
    transform: none;
  }

  .site-nav a.active,
  .site-nav a[aria-current="page"] {
    background: transparent;
    color: var(--gold);
    transform: none;
  }

  .site-nav a:last-child {
    border-bottom: none;
  }

  .header-cta {
    display: none;
  }

  .hero-shell,
  .home-showcase-sticky,
  .intro-card,
  .split-story,
  .review-layout,
  .cta-band,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .video-grid,
  .expert-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-video-section .video-grid,
  .service-catalog-section .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-video-section .video-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: clamp(1rem, 1.8vw, 1.5rem);
    padding-bottom: .75rem;
    scrollbar-width: none;
  }

  .home-video-section .video-grid::-webkit-scrollbar {
    display: none;
  }

  .home-video-section .video-card {
    flex: 0 0 clamp(200px, 64vw, 280px);
    scroll-snap-align: start;
  }

  .service-catalog-section .service-card,
  .service-catalog-section .service-card:nth-child(3n) {
    grid-column: 1;
    grid-template-columns: 1fr;
  }

  .service-catalog-section .service-card img {
    min-height: auto;
    max-height: 520px;
  }

  .service-image-link {
    min-height: auto;
  }

  .branch-feature-grid,
  .all-branches,
  .booking-grid {
    grid-template-columns: 1fr;
  }

  .home-showcase {
    min-height: 500vh;
  }

  .home-showcase-sticky {
    top: 86px;
    width: min(100% - 36px, var(--max));
  }

  .showcase-rail {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-content: stretch;
    padding-top: 0;
  }

  .showcase-thumb,
  .showcase-thumb.active {
    height: 92px;
    transform-origin: center;
  }

  .showcase-thumb:hover,
  .showcase-thumb.active {
    transform: translateY(-5px);
  }

  .branch-panel {
    grid-template-columns: .9fr 1fr;
  }
}

@media (max-width: 860px) {
  .service-category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .review-featured-grid,
  .review-all-grid {
    grid-template-columns: 1fr;
  }

  .reviews-summary-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .site-header,
  .hero-shell,
  .page-hero,
  .intro-card,
  .section-block,
  .footer-grid,
  .cta-band {
    width: min(100% - 28px, var(--max));
  }

  .home-showcase {
    min-height: auto;
    padding-top: 1.25rem;
  }

  .home-showcase-sticky {
    position: relative;
    top: auto;
    min-height: auto;
    width: min(100% - 28px, var(--max));
    grid-template-columns: 1fr;
    gap: .75rem;
  }

  .home-showcase-frame {
    min-height: clamp(480px, 90vw, 680px);
    padding: 12px;
  }

  .showcase-rail {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
    gap: .5rem;
  }

  .showcase-thumb,
  .showcase-thumb.active {
    height: 64px;
  }

  .home-showcase-frame::before {
    inset: 12px;
    background:
      linear-gradient(rgba(230, 218, 200, .9), rgba(230, 218, 200, .9)),
      url("../../uploads/brand/logo.jpg") center / 78vw auto no-repeat;
  }

  .home-showcase-frame::after {
    bottom: 1.5rem;
    font-size: 1.5rem;
    white-space: normal;
    width: 86%;
    text-align: center;
  }

  .showcase-panel {
    inset: 26px;
  }

  .about-panel {
    align-content: start;
    padding-top: 1.25rem;
  }

  .about-panel h1,
  .branch-panel h2 {
    font-size: 3rem;
  }

  .about-panel p:not(.eyebrow) {
    width: 100%;
    font-size: .95rem;
    line-height: 1.48;
  }

  .branch-panel {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .branch-panel figure img {
    min-height: 250px;
  }

  .branch-panel > div {
    padding: 0;
    background: transparent;
  }

  .showcase-rail {
    gap: .5rem;
  }

  .showcase-thumb,
  .showcase-thumb.active {
    height: 72px;
  }

  .site-header {
    height: 70px;
  }

  .brand strong {
    font-size: 1.05rem;
  }

  .brand small {
    display: none;
  }

  .hero-shell {
    gap: 2rem;
    min-height: auto;
    padding-top: 3rem;
  }

  .hero-copy h1,
  .page-hero.compact h1 {
    font-size: 3.4rem;
  }

  .metric-row,
  .video-grid,
  .service-grid,
  .expert-grid,
  .gallery-grid,
  .booking-card {
    grid-template-columns: 1fr;
  }

  .section-kicker {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.5rem 0;
  }

  .footer-grid h2 {
    font-size: 1.8rem;
  }

  .cta-band {
    gap: 1.25rem;
  }

  .cta-band h2 {
    font-size: clamp(1.8rem, 7vw, 2.6rem);
  }

  .cta-band .cta-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .cta-band .btn {
    width: 100%;
    justify-content: center;
    min-width: 0;
  }

  .intro-card {
    gap: 2rem;
  }

  .split-story {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .about-values-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-services-list {
    gap: .5rem;
  }

  .review-featured-grid,
  .review-all-grid {
    grid-template-columns: 1fr;
  }

  .reviews-summary-inner {
    flex-direction: column;
  }

  .service-video-section,
  .service-catalog-section {
    width: min(100% - 28px, var(--max));
  }

  .home-video-section,
  .home-service-section,
  .branch-preview {
    width: min(100% - 28px, var(--max));
  }

  .service-video-section .video-card video {
    aspect-ratio: 9 / 16;
    max-height: 620px;
  }

  .service-catalog-section .service-card {
    min-height: auto;
  }

  .service-catalog-section .service-card img {
    max-height: none;
  }

  .home-service-section .service-grid {
    grid-template-columns: 1fr;
  }

  .service-image-link span {
    position: static;
    margin-top: .65rem;
    opacity: 1;
    transform: none;
  }

  .branch-feature-body {
    grid-template-columns: 1fr;
    padding: 1.35rem;
  }

  .branch-feature address {
    letter-spacing: .12em;
  }

  .review-panel {
    min-height: 360px;
  }
}

/* ── Branch detail page ── */
.branch-detail-hero {
  padding-block: 2rem;
}

.branch-detail-img {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.branch-detail-img img {
  width: 100%;
  height: clamp(420px, 55vw, 680px);
  object-fit: cover;
  display: block;
  border-radius: var(--radius-xl);
}

.branch-detail-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 14, 10, .72) 0%, rgba(20, 14, 10, .18) 50%, transparent 100%);
  border-radius: var(--radius-xl);
  pointer-events: none;
}

.branch-detail-info {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: rgba(255, 255, 255, .15);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 18px;
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  box-shadow: 0 8px 32px rgba(0, 0, 0, .18), inset 0 1px 0 rgba(255, 255, 255, .35);
  z-index: 1;
  color: #fff;
}

.branch-detail-info .eyebrow {
  color: rgba(255, 255, 255, .7);
}

.branch-detail-info p:not(.eyebrow) {
  color: rgba(255, 255, 255, .9);
  font-size: .95rem;
  line-height: 1.65;
  margin: 0;
}

.branch-staff-section {
  width: min(1320px, calc(100% - 40px));
  padding-top: 2rem;
}

.branch-staff-section .section-kicker {
  border: 1px solid rgba(164, 141, 120, .18);
  border-radius: 22px;
  padding: clamp(1.25rem, 2.5vw, 2rem);
  background:
    linear-gradient(135deg, rgba(250, 249, 246, .94), rgba(230, 218, 200, .38));
  box-shadow: 0 20px 60px rgba(42, 33, 28, .07);
}

.branch-staff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2vw, 1.4rem);
}

.branch-staff-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(164, 141, 120, .18);
  border-radius: 22px;
  padding: .75rem;
  background: linear-gradient(160deg, rgba(250, 249, 246, .98), rgba(230, 218, 200, .42));
  box-shadow: 0 22px 62px rgba(42, 33, 28, .09);
  transition: transform .26s var(--spring), box-shadow .26s ease;
}

.branch-staff-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 80px rgba(42, 33, 28, .13);
}

.branch-staff-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.branch-staff-card > div {
  display: flex;
  flex-direction: column;
  padding: .75rem .7rem .6rem;
  gap: .25rem;
  flex: 1;
}

.branch-staff-card h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.branch-staff-card .role {
  color: var(--coffee);
  font-size: .76rem;
  font-weight: 600;
}

.staff-stars {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  align-items: center;
  margin: .2rem 0 .5rem;
  color: var(--desert-rock);
  font-weight: 800;
  font-size: .85rem;
}

.staff-stars span {
  color: rgba(42, 33, 28, .62);
  font-size: .75rem;
  font-weight: 600;
}

.branch-staff-card > div > p:not(.eyebrow):not(.role):not(.staff-stars) {
  font-size: .82rem;
  line-height: 1.55;
  color: var(--coffee);
}

.staff-reviews-toggle {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin-top: .5rem;
  padding: .4rem .85rem;
  border: 1px solid rgba(164, 141, 120, .3);
  border-radius: 100px;
  background: transparent;
  font-family: inherit;
  font-size: .75rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  transition: background .2s, border-color .2s;
  letter-spacing: .06em;
}

.staff-reviews-toggle:hover {
  background: rgba(164, 141, 120, .1);
  border-color: rgba(164, 141, 120, .5);
}

.staff-reviews-toggle svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  flex-shrink: 0;
}

.staff-review-preview {
  display: grid;
  gap: .5rem;
  margin-top: .65rem;
  padding-top: .65rem;
  border-top: 1px solid rgba(164, 141, 120, .18);
}

.staff-review-preview article {
  display: grid;
  gap: .3rem;
  padding: .65rem .75rem;
  border: 1px solid rgba(164, 141, 120, .15);
  border-radius: 10px;
  background: rgba(250, 249, 246, .7);
}

.staff-review-preview article > div {
  display: flex;
  justify-content: space-between;
  gap: .5rem;
  align-items: center;
}

.staff-review-preview strong {
  color: var(--ink);
  font-size: .8rem;
  font-weight: 600;
}

.staff-review-preview span {
  color: var(--desert-rock);
  font-size: .72rem;
  white-space: nowrap;
}

.staff-review-preview article p {
  margin: 0;
  color: rgba(42, 33, 28, .65);
  font-size: .78rem;
  line-height: 1.5;
}

.branch-review-section {
  width: min(1320px, calc(100% - 40px));
  margin-bottom: clamp(4rem, 8vw, 7rem);
  padding: clamp(1rem, 2vw, 1.35rem);
  border: 1px solid rgba(164, 141, 120, .28);
  border-radius: 28px;
  background:
    linear-gradient(90deg, rgba(250, 249, 246, .82) 0 7.5%, rgba(244, 241, 234, .88) 7.5% 15%),
    linear-gradient(135deg, rgba(250, 249, 246, .98), rgba(230, 218, 200, .6));
  background-size: 128px 100%, auto;
  box-shadow: 0 30px 90px rgba(42, 33, 28, .09);
  position: relative;
  overflow: hidden;
}

.branch-review-section::before {
  content: "";
  position: absolute;
  inset: 1.1rem;
  border: 1px solid rgba(164, 141, 120, .16);
  border-radius: 22px;
  pointer-events: none;
}

.branch-review-section .section-kicker {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(164, 141, 120, .22);
  border-radius: 20px;
  padding: clamp(1.35rem, 3vw, 2.4rem);
  background:
    linear-gradient(135deg, rgba(250, 249, 246, .95), rgba(244, 241, 234, .76)),
    linear-gradient(90deg, rgba(164, 141, 120, .1), transparent);
  box-shadow: 0 20px 60px rgba(42, 33, 28, .06);
}

.branch-review-section .section-kicker h2 {
  max-width: 720px;
}

.review-intro {
  max-width: 640px;
  margin: .75rem 0 0;
  color: rgba(42, 33, 28, .68);
  font-size: 1rem;
  line-height: 1.8;
}

.review-score {
  display: grid;
  justify-items: end;
  min-width: 150px;
  gap: .28rem;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(164, 141, 120, .22);
  border-radius: 18px;
  background: rgba(250, 249, 246, .72);
  color: var(--coffee);
}

.review-score strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
  line-height: 1;
}

.review-score span {
  color: var(--desert-rock);
  letter-spacing: .12em;
}

.review-score small {
  color: rgba(42, 33, 28, .58);
  font-weight: 700;
}

.branch-review-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(340px, 420px) minmax(0, 1fr);
  gap: clamp(1.1rem, 2vw, 1.7rem);
  margin-top: clamp(1.1rem, 2vw, 1.7rem);
}

.branch-review-form,
.branch-review-card {
  border: 1px solid rgba(164, 141, 120, .2);
  border-radius: 20px;
  background: rgba(250, 249, 246, .96);
  box-shadow: 0 20px 55px rgba(42, 33, 28, .075);
}

.branch-review-form {
  display: grid;
  align-content: start;
  gap: 1rem;
  padding: clamp(1.3rem, 2.5vw, 2.1rem);
}

.review-form-head {
  display: grid;
  gap: .35rem;
}

.branch-review-form h3,
.branch-review-card h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.7rem, 2.5vw, 2.15rem);
  line-height: 1.05;
}

.branch-review-form label {
  display: grid;
  gap: .35rem;
  color: var(--coffee);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.branch-review-form input,
.branch-review-form select,
.branch-review-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(164, 141, 120, .3);
  border-radius: 14px;
  padding: .85rem .95rem;
  background: rgba(255, 255, 255, .8);
  color: var(--ink);
  font: inherit;
  letter-spacing: 0;
  text-transform: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.branch-review-form textarea {
  min-height: 140px;
  resize: vertical;
}

.branch-review-form input:focus,
.branch-review-form select:focus,
.branch-review-form textarea:focus {
  outline: 3px solid rgba(164, 141, 120, .5);
  outline-offset: 0;
  border-color: rgba(116, 91, 74, .72);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(203, 185, 164, .34);
}

.review-notice,
.review-error {
  border-radius: 12px;
  padding: .8rem 1rem;
  font-weight: 700;
}

.review-notice {
  background: rgba(230, 218, 200, .72);
  color: var(--coffee);
}

.review-error {
  background: rgba(128, 42, 42, .1);
  color: #802a2a;
}

.branch-review-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-content: start;
}

.branch-review-card {
  position: relative;
  min-height: 210px;
  padding: clamp(1.15rem, 2vw, 1.65rem);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.branch-review-card::before {
  content: "";
  position: absolute;
  right: -38px;
  bottom: -38px;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(164, 141, 120, .18);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(230, 218, 200, .5), rgba(250, 249, 246, 0) 68%);
}

.branch-review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(164, 141, 120, .36);
  box-shadow: 0 28px 70px rgba(42, 33, 28, .11);
}

.review-card-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.review-author {
  display: flex;
  gap: .85rem;
  align-items: flex-start;
  min-width: 0;
}

.review-avatar {
  display: grid;
  place-items: center;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--desert-rock), var(--soft-sandstone));
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  font-weight: 700;
  box-shadow: 0 12px 26px rgba(42, 33, 28, .12);
}

.review-stars {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: .35rem .65rem;
  border: 1px solid rgba(164, 141, 120, .2);
  border-radius: 999px;
  background: rgba(250, 249, 246, .82);
  color: var(--desert-rock);
  white-space: nowrap;
  font-size: .9rem;
  letter-spacing: .05em;
  box-shadow: 0 10px 24px rgba(42, 33, 28, .06);
}

.review-meta {
  margin: .35rem 0 0;
  color: var(--coffee) !important;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.branch-review-card > p:not(.review-meta) {
  position: relative;
  z-index: 1;
  margin: 1.05rem 0 0;
  color: rgba(42, 33, 28, .72);
  font-size: .98rem;
  line-height: 1.8;
}

.branch-review-card small {
  display: inline-block;
  position: relative;
  z-index: 1;
  margin-top: 1.1rem;
  color: rgba(42, 33, 28, .46);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* ── Pricelist ── */
.pricelist-section {
  width: min(1320px, calc(100% - 40px));
  padding-top: 5rem;
}

.pricelist-section > .section-kicker {
  margin-bottom: 2.5rem;
}

.pricelist-group {
  position: relative;
  margin-bottom: clamp(2.5rem, 5vw, 5rem);
  border: 1px solid rgba(164, 141, 120, .2);
  border-radius: 22px;
  padding: clamp(1.25rem, 3vw, 2.6rem);
  background:
    linear-gradient(135deg, rgba(250, 249, 246, .96), rgba(230, 218, 200, .44)),
    radial-gradient(circle at 100% 0, rgba(164, 141, 120, .22), transparent 24rem);
  box-shadow: 0 28px 80px rgba(42, 33, 28, .09);
  overflow: hidden;
}

.pricelist-group::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(180deg, var(--desert-rock), var(--creamed-oat));
  content: "";
}

.pricelist-group-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.7rem;
  border-bottom: 1px solid rgba(164, 141, 120, .24);
  padding-bottom: 1.25rem;
}

.pricelist-group-head .eyebrow {
  margin-bottom: .45rem;
}

.pricelist-group-head > span {
  flex: 0 0 auto;
  border: 1px solid rgba(164, 141, 120, .24);
  border-radius: 999px;
  padding: .62rem 1rem;
  background: rgba(250, 249, 246, .75);
  color: var(--coffee);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.pricelist-category {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 600;
  margin: 0;
  color: var(--coffee);
  letter-spacing: 0;
}

.pricelist-grid {
  columns: 4;
  column-gap: clamp(.85rem, 1.5vw, 1.25rem);
}

.pricelist-item {
  position: relative;
  display: block;
  break-inside: avoid;
  margin-bottom: clamp(.85rem, 1.5vw, 1.25rem);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(164, 141, 120, .22);
  background: rgba(250, 249, 246, .96);
  box-shadow: 0 14px 36px rgba(42, 33, 28, .08);
  transition: transform .26s var(--spring), box-shadow .26s ease, border-color .26s ease;
}

.pricelist-item:hover {
  border-color: rgba(164, 141, 120, .6);
  transform: translateY(-6px);
  box-shadow: 0 28px 64px rgba(42, 33, 28, .14);
}

.pricelist-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  transition: transform .32s var(--spring), filter .26s ease;
}

.pricelist-item:hover img {
  filter: saturate(1.05) contrast(1.02);
  transform: scale(1.02);
}

.pricelist-item span {
  position: absolute;
  left: .75rem;
  right: .75rem;
  bottom: .75rem;
  display: grid;
  min-height: 40px;
  place-items: center;
  border-radius: 999px;
  background: rgba(42, 33, 28, .82);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .22s ease, transform .22s var(--spring);
}

.pricelist-item:hover span,
.pricelist-item:focus-visible span {
  opacity: 1;
  transform: none;
}

/* ── Lightbox ── */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(20, 15, 12, .92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .28s var(--ease), visibility .28s ease;
}

.lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  margin: 0;
  max-width: calc(100vw - 9rem);
  max-height: calc(100vh - 7rem);
  overflow: hidden;
}

.lightbox-figure img {
  display: block;
  max-width: calc(100vw - 9rem);
  max-height: calc(100vh - 9rem);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .38);
}

.lightbox-figure figcaption {
  color: rgba(255,255,255,.6);
  font-size: .85rem;
  letter-spacing: .06em;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: fixed;
  color: #fff;
  font-size: 1.4rem;
  padding: .6rem 1rem;
  background: rgba(255,255,255,.1);
  border-radius: 999px;
  transition: background .18s ease;
  line-height: 1;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255,255,255,.22);
}

.lightbox-close { top: 1.25rem; right: 1.25rem; }
.lightbox-prev  { left: 1.25rem; top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 1.25rem; top: 50%; transform: translateY(-50%); }

/* Final detail-page consistency overrides */
.branch-detail-img img,
.branch-staff-card,
.branch-review-section,
.branch-review-section .section-kicker,
.branch-review-form,
.branch-review-card,
.pricelist-group,
.pricelist-item,
.lightbox-figure img {
  border-radius: var(--radius-xl);
}

.branch-staff-card,
.branch-review-form,
.branch-review-card,
.pricelist-item {
  background: var(--surface-strong);
  box-shadow: var(--soft-shadow);
}

.branch-detail-info p,
.branch-review-card > p:not(.review-meta),
.staff-review-preview article p,
.pricelist-group-head p {
  line-height: 1.75;
}

.review-card span,
.pricelist-item span {
  letter-spacing: .14em;
}

@media (max-width: 1180px) {
  .pricelist-item,
  .pricelist-item:nth-child(2),
  .pricelist-item:nth-child(3) {
    grid-column: span 4;
  }

  .pricelist-item:nth-child(1) {
    grid-column: span 8;
    min-height: 620px;
  }
}

@media (max-width: 860px) {
  .branch-detail-hero {
    grid-template-columns: 1fr;
  }

  .branch-staff-section {
    width: min(100% - 28px, var(--max));
  }

  .branch-review-section {
    width: min(100% - 28px, var(--max));
    padding: .85rem;
  }

  .branch-staff-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .branch-review-layout {
    grid-template-columns: 1fr;
  }

  .review-score {
    justify-items: start;
  }

  .branch-review-list {
    grid-template-columns: 1fr;
  }

  .branch-detail-img img {
    height: 300px;
  }

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

  .pricelist-group-head {
    display: grid;
    align-items: start;
  }

  .pricelist-item,
  .pricelist-item:nth-child(1),
  .pricelist-item:nth-child(2),
  .pricelist-item:nth-child(3) {
    grid-column: 1;
    min-height: auto;
  }

  .pricelist-item img {
    height: auto;
    max-height: none;
  }

  .pricelist-item span {
    opacity: 1;
    transform: none;
    position: static;
    margin-top: .65rem;
    min-height: 38px;
  }

  .lightbox-figure,
  .lightbox-figure img {
    max-width: calc(100vw - 2rem);
  }

  .lightbox-figure {
    max-height: calc(100vh - 6rem);
  }

  .lightbox-figure img {
    max-height: calc(100vh - 8rem);
  }

  .lightbox-prev {
    left: .75rem;
    top: auto;
    bottom: 1rem;
    transform: none;
  }

  .lightbox-next {
    right: .75rem;
    top: auto;
    bottom: 1rem;
    transform: none;
  }
}

/* Branch page layout reset */
.branch-page-hero,
.branch-detail-hero,
.branch-staff-section,
.pricelist-section,
.cta-band,
.branch-review-section {
  width: min(1320px, calc(100% - 56px));
  margin-inline: auto;
}

.branch-page-hero {
  padding: clamp(4.25rem, 7vw, 6rem) 0 clamp(1.5rem, 3vw, 2.5rem);
}

.branch-page-hero h1 {
  max-width: 1040px;
  font-size: clamp(3.1rem, 5.4vw, 6.2rem);
  line-height: .92;
}

.branch-page-hero address {
  display: block;
  margin-top: .85rem;
  color: rgba(42, 33, 28, .66);
  font-style: italic;
}

.branch-detail-hero {
  padding: clamp(2rem, 4vw, 3.5rem) 0 clamp(4rem, 7vw, 6rem);
}

.branch-detail-img img {
  height: clamp(420px, 55vw, 680px);
}

.branch-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
}

.branch-staff-section,
.pricelist-section {
  padding-top: clamp(2.5rem, 5vw, 4.5rem);
}

.branch-staff-section .section-kicker,
.pricelist-section > .section-kicker,
.branch-review-section .section-kicker {
  grid-template-columns: 1fr auto;
  align-items: center;
  min-height: auto;
  margin-bottom: clamp(1.25rem, 2.4vw, 2rem);
  padding: clamp(1.25rem, 2.4vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(250, 249, 246, .93), rgba(230, 218, 200, .42)),
    radial-gradient(circle at 95% 12%, rgba(164, 141, 120, .14), transparent 18rem);
  box-shadow: var(--soft-shadow);
}

.branch-staff-section .section-kicker h2,
.pricelist-section > .section-kicker h2,
.branch-review-section .section-kicker h2 {
  max-width: 900px;
  font-size: clamp(2.25rem, 3.8vw, 4.2rem);
  line-height: .98;
}

.branch-staff-grid {
  gap: clamp(1rem, 2vw, 1.4rem);
}

.branch-staff-card h3 {
  font-size: clamp(2.4rem, 4.2vw, 4.4rem);
}

.pricelist-section > .section-kicker {
  margin-bottom: clamp(1.5rem, 3vw, 2.4rem);
}

.pricelist-group {
  padding: clamp(1.2rem, 2.4vw, 2rem);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(250, 249, 246, .95), rgba(230, 218, 200, .4)),
    radial-gradient(circle at 100% 0, rgba(164, 141, 120, .16), transparent 24rem);
}

.pricelist-group::before {
  display: none;
}

.pricelist-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(.9rem, 1.6vw, 1.35rem);
}

.pricelist-item,
.pricelist-item:nth-child(1),
.pricelist-item:nth-child(2),
.pricelist-item:nth-child(3) {
  grid-column: auto;
  grid-row: auto;
  min-height: 0;
  aspect-ratio: 3 / 4;
  padding: .55rem;
}

.pricelist-item img,
.pricelist-item:nth-child(1) img {
  height: 100%;
  max-height: none;
  object-fit: contain;
  background: rgba(250, 249, 246, .66);
}

.cta-band {
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 3vw, 2.4rem);
  align-items: start;
  padding: clamp(2rem, 4vw, 3rem);
}

.cta-band h2 {
  max-width: 820px;
  font-size: clamp(2.4rem, 4.2vw, 4.8rem);
  line-height: .95;
}

.cta-band p:not(.eyebrow) {
  max-width: 720px;
}

.cta-band .cta-actions {
  justify-content: flex-start;
}

.branch-review-section {
  padding: clamp(1rem, 2vw, 1.5rem);
  background:
    linear-gradient(135deg, rgba(250, 249, 246, .96), rgba(230, 218, 200, .5)),
    radial-gradient(circle at 100% 0, rgba(164, 141, 120, .12), transparent 22rem);
  background-size: auto;
}

.branch-review-layout {
  grid-template-columns: minmax(320px, .72fr) minmax(420px, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}

@media (max-width: 1180px) {
  .branch-detail-img img {
    height: clamp(360px, 70vw, 560px);
  }

  .branch-detail-info {
    left: 1.25rem;
    right: 1.25rem;
    bottom: 1.25rem;
  }

  .pricelist-grid {
    columns: 3;
  }

  .branch-review-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .branch-page-hero,
  .branch-detail-hero,
  .branch-staff-section,
  .pricelist-section,
  .cta-band,
  .branch-review-section {
    width: min(100% - 24px, var(--max));
  }

  .branch-page-hero h1 {
    font-size: clamp(2.2rem, 11vw, 3.5rem);
  }

  .branch-detail-hero {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .branch-detail-img img {
    height: clamp(280px, 72vw, 420px);
  }

  .branch-detail-info {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    margin-top: .85rem;
    background: rgba(250, 249, 246, .92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(164, 141, 120, .22);
    color: var(--ink);
    padding: 1.25rem;
    box-shadow: 0 8px 24px rgba(42, 33, 28, .08);
  }

  .branch-detail-info .eyebrow {
    color: var(--desert-rock);
  }

  .branch-detail-info p:not(.eyebrow) {
    color: var(--coffee);
  }

  .branch-detail-img::after {
    display: none;
  }

  .branch-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    gap: .6rem;
  }

  .branch-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .branch-staff-section .section-kicker,
  .pricelist-section > .section-kicker,
  .branch-review-section .section-kicker {
    grid-template-columns: 1fr;
  }

  .branch-staff-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: .75rem;
  }

  .branch-staff-card img {
    aspect-ratio: 1 / 1;
  }

  .pricelist-grid {
    columns: 2;
  }

  .branch-review-layout {
    grid-template-columns: 1fr;
  }

  .branch-review-form,
  .branch-review-list {
    width: 100%;
  }
}

/* ── Mobile home showcase ── */
.home-showcase-mobile {
  display: none;
}

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

  .home-showcase-mobile {
    display: block;
    padding: 1.5rem 0 2rem;
    width: min(100% - 28px, var(--max));
    margin-inline: auto;
  }

  .mobile-showcase-intro {
    display: flex;
    flex-direction: column;
    gap: .85rem;
    margin-bottom: 1.5rem;
  }

  .mobile-showcase-intro h1 {
    font-family: var(--serif);
    font-size: clamp(2.2rem, 10vw, 3.2rem);
    line-height: 1.05;
    letter-spacing: -.01em;
    margin: 0;
  }

  .mobile-showcase-intro p:not(.eyebrow) {
    color: var(--coffee);
    font-size: .95rem;
    line-height: 1.6;
    margin: 0;
  }

  .mobile-showcase-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: .85rem;
    padding-bottom: 1rem;
    padding-inline: 14vw;
    margin-inline: -14px;
    width: calc(100% + 28px);
  }

  .mobile-showcase-track::-webkit-scrollbar {
    display: none;
  }

  .mobile-showcase-card {
    flex: 0 0 72vw;
    scroll-snap-align: center;
    border-radius: 20px;
    overflow: hidden;
    background: var(--surface-strong);
    border: 1px solid rgba(164, 141, 120, .18);
    box-shadow: 0 16px 48px rgba(42, 33, 28, .1);
    display: flex;
    flex-direction: column;
  }

  .mobile-showcase-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
  }

  .mobile-showcase-body {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    padding: 1.1rem;
  }

  .mobile-showcase-body h2 {
    font-family: var(--serif);
    font-size: 1.3rem;
    line-height: 1.1;
    margin: 0;
    letter-spacing: 0;
  }

  .mobile-showcase-body address {
    font-size: .78rem;
    font-style: normal;
    color: var(--coffee);
    line-height: 1.4;
  }

  .mobile-showcase-body .btn {
    margin-top: .35rem;
    align-self: flex-start;
  }
}

/* ── Swipe hint label ── */
.swipe-hint {
  display: none;
}

@media (max-width: 600px) {
  .hero-shell,
  .page-hero,
  .intro-card,
  .section-block,
  .footer-grid,
  .cta-band,
  .about-values-section,
  .about-services-section,
  .about-branches-section,
  .gallery-showcase-section,
  .gallery-page-hero {
    width: 100%;
    padding-inline: 1rem;
    box-sizing: border-box;
  }

  .swipe-hint {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--desert-rock);
    margin-bottom: .5rem;
  }

  .swipe-hint::before {
    content: '←→';
    font-size: .85rem;
  }
}

/* ── Universal swipe carousel for small screens ── */
@media (max-width: 600px) {
  /* Shared scroll-snap setup */
  .branch-staff-grid,
  .service-grid,
  .expert-grid,
  .gallery-grid,
  .booking-grid,
  .video-grid,
  .service-category-grid,
  .about-values-grid,
  .review-featured-grid,
  .review-all-grid,
  .branch-feature-grid,
  .service-video-section .video-grid,
  .home-video-section .video-grid,
  .home-service-section .service-grid,
  .pricelist-grid {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: .85rem;
    padding-bottom: 1rem;
    padding-inline: 14vw;
    margin-inline: 0;
    width: 100%;
    max-width: none;
    columns: unset !important;
  }

  .branch-staff-grid::-webkit-scrollbar,
  .service-grid::-webkit-scrollbar,
  .expert-grid::-webkit-scrollbar,
  .gallery-grid::-webkit-scrollbar,
  .booking-grid::-webkit-scrollbar,
  .video-grid::-webkit-scrollbar,
  .service-category-grid::-webkit-scrollbar,
  .about-values-grid::-webkit-scrollbar,
  .review-featured-grid::-webkit-scrollbar,
  .review-all-grid::-webkit-scrollbar,
  .branch-feature-grid::-webkit-scrollbar,
  .pricelist-grid::-webkit-scrollbar {
    display: none;
  }

  /* Each card becomes a fixed-width snap item */
  .branch-staff-card,
  .service-card,
  .expert-card,
  .gallery-card,
  .booking-card,
  .video-card,
  .service-category-card,
  .about-value-card,
  .review-featured-card,
  .branch-review-card,
  .branch-feature,
  .pricelist-item {
    flex: 0 0 72vw;
    max-width: 300px;
    scroll-snap-align: center;
    width: 72vw;
  }

  /* Staff and value cards slightly narrower — 2 peek */
  .branch-staff-card,
  .about-value-card,
  .service-category-card {
    flex: 0 0 68vw;
    max-width: 260px;
    width: 68vw;
    scroll-snap-align: center;
  }

  /* Pricelist items are image-only, can be wider */
  .pricelist-item {
    flex: 0 0 78vw;
    max-width: 320px;
    width: 78vw;
    break-inside: unset;
    margin-bottom: 0;
    scroll-snap-align: center;
  }

  /* Reset any grid overrides that would conflict */
  .branch-staff-card img {
    aspect-ratio: 4 / 3;
  }

  .branch-staff-card h3 {
    font-size: 1rem;
  }

  /* Section kicker stays full width */
  .section-kicker {
    width: 100%;
    margin-inline: 0;
  }

  /* Scroll hint indicator — subtle dot row */
  .branch-staff-grid::after,
  .service-category-grid::after,
  .review-featured-grid::after,
  .branch-feature-grid::after {
    content: '';
    flex: 0 0 .25rem;
  }

  .branch-page-hero h1 {
    font-size: clamp(1.9rem, 9vw, 2.8rem);
  }

  .pricelist-grid {
    columns: unset;
  }

  .service-category-grid,
  .about-values-grid {
    grid-template-columns: unset;
  }

  .review-branch-filters {
    gap: .35rem;
    flex-wrap: wrap;
  }

  .review-filter-btn {
    font-size: .75rem;
    padding: .35rem .85rem;
  }
}

@media (max-width: 400px) {
  .branch-staff-card,
  .service-category-card,
  .about-value-card {
    flex: 0 0 80vw;
    width: 80vw;
    max-width: none;
  }

  .branch-staff-card,
  .service-card,
  .video-card,
  .branch-feature,
  .review-featured-card,
  .branch-review-card {
    flex: 0 0 85vw;
    width: 85vw;
    max-width: none;
  }

  .branch-page-hero h1 {
    font-size: 1.75rem;
  }

  .home-showcase-frame {
    min-height: 520px;
  }

  .footer-grid {
    gap: 1.5rem;
  }
}

/* Premium services and gallery treatment */
.service-video-section,
.service-catalog-section,
.gallery-showcase-section {
  width: min(1360px, calc(100% - 56px));
  margin-inline: auto;
}

.gallery-showcase-section {
  width: min(var(--max), calc(100% - 40px));
}

.service-video-section .section-kicker,
.service-catalog-section .section-kicker,
.gallery-showcase-section .section-kicker {
  align-items: center;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(250, 249, 246, .94), rgba(230, 218, 200, .42)),
    radial-gradient(circle at 96% 6%, rgba(164, 141, 120, .14), transparent 20rem);
}

.service-video-section .video-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(1rem, 1.8vw, 1.6rem);
}

.service-video-section .video-card {
  grid-column: span 6;
  position: relative;
  overflow: hidden;
  padding: .7rem;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(250, 249, 246, .98), rgba(244, 241, 234, .9)),
    radial-gradient(circle at 50% 0, rgba(203, 185, 164, .18), transparent 16rem);
}

.service-video-section .video-card:nth-child(1),
.service-video-section .video-card:nth-child(2) {
  grid-column: span 6;
  grid-template-columns: 1fr;
  align-items: stretch;
}

.service-video-section .video-card:nth-child(1) video,
.service-video-section .video-card:nth-child(2) video {
  min-height: 0;
  max-height: none;
}

.service-video-section .video-card video {
  aspect-ratio: 9 / 16;
  height: 100%;
  max-height: none;
  border-radius: calc(var(--radius-xl) - 8px);
  object-fit: contain;
  box-shadow: inset 0 0 0 1px rgba(42, 33, 28, .08);
}

.service-video-section .video-card > div {
  display: grid;
  align-content: end;
  min-height: 132px;
  padding: clamp(1rem, 2vw, 1.6rem);
}

.service-video-section .video-card h3 {
  max-width: 460px;
  overflow-wrap: anywhere;
  font-size: clamp(1.75rem, 2.35vw, 3rem);
  line-height: 1;
}

.service-catalog-section .service-card {
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(250, 249, 246, .97), rgba(230, 218, 200, .42)),
    radial-gradient(circle at 100% 0, rgba(164, 141, 120, .16), transparent 20rem);
}

.service-image-link {
  border: 1px solid rgba(164, 141, 120, .18);
  background:
    linear-gradient(135deg, rgba(230, 218, 200, .72), rgba(250, 249, 246, .74));
}

.service-image-link::after,
.gallery-card a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(42, 33, 28, .22));
  opacity: 0;
  transition: opacity .24s ease;
  pointer-events: none;
}

.service-image-link:hover::after,
.gallery-card a:hover::after {
  opacity: 1;
}

.gallery-showcase-section {
  padding-top: clamp(2rem, 5vw, 4rem);
}

.page-hero,
.gallery-page-hero {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.gallery-page-hero {
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3rem);
}

.gallery-page-hero h1 {
  max-width: 920px;
  font-size: clamp(3.2rem, 5vw, 5.2rem);
  line-height: 1.04;
}

.gallery-page-hero p:not(.eyebrow) {
  max-width: 720px;
}

.gallery-showcase-section .section-kicker {
  padding: clamp(1.25rem, 2.5vw, 2rem);
}

.gallery-showcase-section .section-kicker h2 {
  max-width: 1000px;
  font-size: clamp(2.35rem, 3.8vw, 3.95rem);
  line-height: 1.04;
}

.gallery-showcase-section .gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.7rem);
}

.gallery-showcase-section .gallery-card {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  border-radius: var(--radius-xl);
  padding: .7rem;
  background:
    linear-gradient(180deg, rgba(250, 249, 246, .96), rgba(244, 241, 234, .88)),
    radial-gradient(circle at 100% 0, rgba(164, 141, 120, .18), transparent 22rem);
}

.gallery-card a {
  position: relative;
  display: block;
  height: 100%;
  min-height: inherit;
  overflow: hidden;
  border: 1px solid rgba(250, 249, 246, .64);
  border-radius: calc(var(--radius-xl) - 8px);
  color: inherit;
  cursor: zoom-in;
}

.gallery-showcase-section .gallery-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  aspect-ratio: auto;
  object-fit: cover;
  transition: transform .35s var(--spring), filter .24s ease;
}

.gallery-showcase-section .gallery-card:hover img {
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.035);
}

.gallery-card a span {
  position: absolute;
  right: 1rem;
  top: 1rem;
  z-index: 2;
  display: inline-grid;
  min-height: 38px;
  place-items: center;
  border: 1px solid rgba(250, 249, 246, .72);
  border-radius: 999px;
  padding: 0 1rem;
  background: rgba(42, 33, 28, .62);
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity .24s ease, transform .24s var(--spring);
}

.gallery-card:hover a span,
.gallery-card a:focus-visible span {
  opacity: 1;
  transform: none;
}

.gallery-showcase-section .gallery-card figcaption {
  position: absolute;
  left: 1.4rem;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 2;
  border: 1px solid rgba(250, 249, 246, .3);
  border-radius: var(--radius-lg);
  padding: 1rem 1.15rem;
  background: rgba(42, 33, 28, .62);
  color: #fff;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

@media (max-width: 1180px) {
  .service-video-section .video-card,
  .service-video-section .video-card:nth-child(1),
  .service-video-section .video-card:nth-child(2) {
    grid-column: span 6;
    grid-template-columns: 1fr;
  }

  .service-video-section .video-card:nth-child(1) video,
  .service-video-section .video-card:nth-child(2) video {
    min-height: auto;
  }

  .service-video-section .video-card h3 {
    font-size: clamp(1.55rem, 4.6vw, 2.35rem);
  }

  .gallery-showcase-section .gallery-card {
    min-height: 420px;
  }
}

@media (max-width: 720px) {
  .service-video-section,
  .service-catalog-section,
  .gallery-showcase-section {
    width: min(100% - 28px, var(--max));
  }

  .gallery-page-hero {
    width: min(100% - 28px, var(--max));
    padding: 2rem 0;
  }

  .gallery-page-hero h1 {
    font-size: 3.4rem;
  }

  .service-video-section .video-grid,
  .gallery-showcase-section .gallery-grid {
    grid-template-columns: 1fr;
  }

  .service-video-section .video-card,
  .service-video-section .video-card:nth-child(1),
  .service-video-section .video-card:nth-child(2),
  .gallery-showcase-section .gallery-card {
    grid-column: 1;
  }

  .service-video-section .video-card > div {
    min-height: auto;
    padding: 1rem .6rem .75rem;
  }

  .service-video-section .video-card h3 {
    font-size: clamp(1.65rem, 8vw, 2.45rem);
  }

  .gallery-showcase-section .gallery-card {
    min-height: 340px;
  }

  .gallery-card a span {
    opacity: 1;
    transform: none;
  }
}

/* Transparent section heading rhythm */
.section-kicker,
.home-video-section .section-kicker,
.home-service-section .section-kicker,
.service-video-section .section-kicker,
.service-catalog-section .section-kicker,
.gallery-showcase-section .section-kicker,
.branch-staff-section .section-kicker,
.pricelist-section > .section-kicker,
.branch-review-section .section-kicker {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.section-kicker > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 1rem;
  background: rgba(250, 249, 246, .72);
  letter-spacing: .18em;
  white-space: nowrap;
}

.section-kicker > a svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Long staff names */
.expert-card h2,
.branch-staff-card h3 {
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: auto;
}

.expert-card h2 {
  font-size: clamp(1.65rem, 1.75vw, 2rem);
  line-height: 1.05;
}

.branch-staff-card h3 {
  font-size: clamp(2.15rem, 3.2vw, 3.55rem);
  line-height: .98;
}

/* Modern branch price-list experience */
.pricelist-section {
  position: relative;
  padding-bottom: clamp(2rem, 5vw, 4.5rem);
}

.pricelist-hero-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: clamp(1rem, 3vw, 2rem);
  margin-bottom: clamp(1rem, 2vw, 1.4rem);
  padding: clamp(1.2rem, 3vw, 2.4rem) 0;
}

.pricelist-intro {
  max-width: 620px;
  margin: .8rem 0 0;
  color: rgba(42, 33, 28, .68);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
}

.pricelist-summary {
  display: grid;
  min-width: 118px;
  min-height: 118px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .74);
  border-radius: 50%;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .86), rgba(246, 224, 226, .58)),
    linear-gradient(135deg, rgba(160, 120, 48, .16), rgba(250, 249, 246, .82));
  box-shadow: 0 20px 54px rgba(42, 33, 28, .12);
  text-align: center;
}

.pricelist-summary strong {
  display: block;
  color: var(--ink);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: .8;
}

.pricelist-summary span {
  display: block;
  margin-top: .35rem;
  color: rgba(42, 33, 28, .62);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.pricelist-nav {
  position: sticky;
  top: 82px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(.12rem, .32vw, .3rem);
  margin: 0 0 clamp(1.5rem, 3vw, 2.4rem);
  border: 1px solid rgba(42, 33, 28, .1);
  border-radius: 999px;
  padding: clamp(.25rem, .45vw, .38rem);
  background: rgba(250, 249, 246, .78);
  box-shadow: 0 18px 44px rgba(42, 33, 28, .08);
  overflow: visible;
  scrollbar-width: none;
  backdrop-filter: blur(18px);
}

.pricelist-nav::-webkit-scrollbar {
  display: none;
}

.pricelist-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  gap: clamp(.18rem, .35vw, .32rem);
  min-height: 38px;
  flex: 0 1 auto;
  min-width: max-content;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: .42rem clamp(.26rem, .55vw, .5rem);
  color: rgba(42, 33, 28, .68);
  font-size: clamp(.52rem, .58vw, .64rem);
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background .22s ease, border-color .22s ease, color .22s ease, transform .22s var(--spring);
}

.pricelist-nav a span {
  flex: 0 1 auto;
  overflow: visible;
  text-overflow: clip;
}

.pricelist-nav a:hover,
.pricelist-nav a:focus-visible {
  border-color: rgba(160, 120, 48, .24);
  background: rgba(255, 255, 255, .72);
  color: var(--ink);
}

.pricelist-nav a.active {
  border-color: rgba(160, 120, 48, .34);
  background:
    linear-gradient(135deg, rgba(42, 33, 28, .95), rgba(111, 91, 78, .92)),
    linear-gradient(135deg, rgba(246, 224, 226, .55), rgba(255, 255, 255, .75));
  color: #fff;
  box-shadow: 0 12px 26px rgba(42, 33, 28, .16);
}

.pricelist-nav small {
  flex: 0 0 auto;
  display: inline-grid;
  min-width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, .66);
  color: inherit;
  font-size: .56rem;
  font-weight: 800;
}

.pricelist-group {
  scroll-margin-top: 160px;
  margin-bottom: clamp(2rem, 4vw, 4rem);
  border: 0;
  border-radius: 0;
  padding: clamp(1rem, 2vw, 1.4rem) 0 clamp(1.5rem, 3vw, 2rem);
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.pricelist-group-head {
  margin-bottom: clamp(1rem, 2vw, 1.6rem);
  border-bottom: 1px solid rgba(42, 33, 28, .1);
}

.pricelist-group-head > span {
  background: rgba(255, 255, 255, .62);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .72);
}

.pricelist-grid {
  display: block;
  columns: 3 260px;
  column-gap: clamp(1rem, 1.6vw, 1.35rem);
  gap: clamp(1rem, 1.6vw, 1.35rem);
}

.pricelist-item,
.pricelist-item:nth-child(1),
.pricelist-item:nth-child(2),
.pricelist-item:nth-child(3) {
  isolation: isolate;
  break-inside: avoid;
  grid-column: auto;
  display: inline-block;
  width: 100%;
  min-height: 0;
  aspect-ratio: auto;
  margin: 0 0 clamp(1rem, 1.6vw, 1.35rem);
  border: 1px solid rgba(42, 33, 28, .12);
  border-radius: 16px;
  padding: clamp(.55rem, .9vw, .8rem);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .96), rgba(250, 249, 246, .82)),
    linear-gradient(135deg, rgba(246, 224, 226, .32), rgba(230, 218, 200, .24));
  box-shadow: 0 18px 42px rgba(42, 33, 28, .09);
  transition: transform .24s var(--spring), box-shadow .24s ease, border-color .24s ease;
}

.pricelist-item:hover,
.pricelist-item:focus-visible {
  border-color: rgba(160, 120, 48, .34);
  transform: translateY(-5px);
  box-shadow: 0 28px 64px rgba(42, 33, 28, .15);
}

.pricelist-item img,
.pricelist-item:nth-child(1) img {
  width: 100%;
  height: auto;
  border-radius: 11px;
  object-fit: contain;
  background: rgba(255, 255, 255, .72);
  box-shadow: inset 0 0 0 1px rgba(42, 33, 28, .05);
}

.pricelist-item::after {
  content: "";
  position: absolute;
  inset: clamp(.55rem, .9vw, .8rem);
  z-index: 1;
  border-radius: 11px;
  background: linear-gradient(180deg, transparent 55%, rgba(20, 15, 12, .64));
  opacity: 0;
  transition: opacity .24s ease;
  pointer-events: none;
}

.pricelist-item:hover::after,
.pricelist-item:focus-visible::after {
  opacity: 1;
}

.pricelist-item .pricelist-card-kicker,
.pricelist-item .pricelist-card-action {
  position: absolute;
  z-index: 2;
}

.pricelist-item .pricelist-card-kicker {
  top: clamp(.85rem, 1.2vw, 1.05rem);
  right: auto;
  bottom: auto;
  left: clamp(.85rem, 1.2vw, 1.05rem);
  display: grid;
  width: 34px;
  height: 34px;
  min-height: 34px;
  place-items: center;
  border-radius: 999px;
  background: rgba(250, 249, 246, .88);
  color: var(--ink);
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .08em;
  opacity: 1;
  transform: none;
  box-shadow: 0 8px 20px rgba(42, 33, 28, .1);
}

.pricelist-item .pricelist-card-action {
  left: clamp(.85rem, 1.2vw, 1.05rem);
  right: clamp(.85rem, 1.2vw, 1.05rem);
  bottom: clamp(.85rem, 1.2vw, 1.05rem);
  display: grid;
  min-height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px;
  background: rgba(42, 33, 28, .88);
  color: #fff;
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .22s ease, transform .22s var(--spring);
}

.pricelist-item:hover .pricelist-card-action,
.pricelist-item:focus-visible .pricelist-card-action {
  opacity: 1;
  transform: none;
}

@media (max-width: 1180px) {
  .pricelist-grid {
    columns: 2 260px;
  }
}

@media (max-width: 860px) {
  .pricelist-hero-card {
    grid-template-columns: 1fr;
  }

  .pricelist-summary {
    min-width: 96px;
    min-height: 96px;
  }

  .pricelist-nav {
    top: 72px;
    margin-inline: -4px;
    border-radius: 18px;
    overflow-x: auto;
    overflow-y: hidden;
  }

  .pricelist-nav a {
    flex: 0 0 auto;
    min-width: max-content;
    font-size: .72rem;
  }

  .pricelist-nav a span {
    overflow: visible;
    text-overflow: clip;
  }

  .pricelist-grid {
    columns: 2 240px;
  }

  .pricelist-item,
  .pricelist-item:nth-child(1),
  .pricelist-item:nth-child(2),
  .pricelist-item:nth-child(3) {
    grid-column: auto;
  }

  .pricelist-card-action {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 600px) {
  .pricelist-section {
    padding-inline: 1rem;
  }

  .pricelist-nav {
    position: relative;
    top: auto;
  }

  .pricelist-grid {
    columns: 1;
    padding-inline: 0;
  }

  .pricelist-item,
  .pricelist-item:nth-child(1),
  .pricelist-item:nth-child(2),
  .pricelist-item:nth-child(3) {
    width: 100%;
    max-width: none;
    aspect-ratio: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pricelist-nav a,
  .pricelist-item,
  .pricelist-item img,
  .pricelist-card-action {
    transition: none;
  }
}

/* Viewport-fit media sizing */
.service-video-section .video-card {
  grid-template-rows: minmax(0, auto) auto;
}

.service-video-section .video-card video,
.home-video-section .video-card video {
  width: 100%;
  height: min(62dvh, 620px);
  max-height: calc(100dvh - 260px);
  min-height: 360px;
  aspect-ratio: auto;
  object-fit: contain;
}

.service-video-section .video-card > div {
  min-height: auto;
  padding: clamp(.85rem, 1.4vw, 1.2rem);
}

.service-video-section .video-card h3 {
  font-size: clamp(1.45rem, 1.9vw, 2.25rem);
  line-height: 1.05;
}

.service-catalog-section .service-card {
  min-height: 0;
}

.service-image-link {
  min-height: 0;
  height: min(58dvh, 560px);
  max-height: calc(100dvh - 270px);
}

.service-catalog-section .service-card img {
  min-height: 0;
  height: 100%;
  object-fit: contain;
}

.pricelist-item,
.pricelist-item:nth-child(1),
.pricelist-item:nth-child(2),
.pricelist-item:nth-child(3) {
  height: auto;
  max-height: none;
}

.lightbox-figure {
  max-width: min(1180px, calc(100vw - 3rem));
  max-height: calc(100dvh - 4.5rem);
}

.lightbox-figure img {
  max-width: min(1180px, calc(100vw - 3rem));
  max-height: calc(100dvh - 7rem);
}

@media (max-width: 1180px) {
  .service-video-section .video-card video,
  .home-video-section .video-card video {
    height: min(58dvh, 560px);
    max-height: calc(100dvh - 240px);
  }
}

@media (max-width: 720px) {
  .service-video-section .video-card video,
  .home-video-section .video-card video,
  .service-image-link {
    height: min(64dvh, 520px);
    max-height: none;
    min-height: 300px;
  }

  .pricelist-item,
  .pricelist-item:nth-child(1),
  .pricelist-item:nth-child(2),
  .pricelist-item:nth-child(3) {
    height: auto;
    max-height: none;
  }

  .lightbox-figure,
  .lightbox-figure img {
    max-width: calc(100vw - 1.25rem);
  }

  .lightbox-figure img {
    max-height: calc(100dvh - 7.5rem);
  }
}

/* Compact one-frame media pass */
@media (min-width: 1181px) {
  .service-video-section .video-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .service-video-section .video-card,
  .service-video-section .video-card:nth-child(1),
  .service-video-section .video-card:nth-child(2) {
    grid-column: auto;
  }

  .service-video-section .video-card video,
  .service-video-section .video-card:nth-child(1) video,
  .service-video-section .video-card:nth-child(2) video,
  .home-video-section .video-card video {
    height: min(46dvh, 430px);
    max-height: calc(100dvh - 330px);
    min-height: 260px;
  }

  .service-video-section .video-card > div {
    min-height: 0;
    padding: .85rem .6rem .45rem;
  }

  .service-video-section .video-card h3 {
    font-size: clamp(1.15rem, 1.45vw, 1.65rem);
    line-height: 1.05;
  }

  .service-video-section .video-card .eyebrow {
    font-size: .62rem;
  }

  .service-image-link {
    height: min(46dvh, 430px);
    max-height: calc(100dvh - 330px);
  }

  .service-catalog-section .service-card {
    min-height: 0;
  }

  .service-catalog-section .service-card img {
    height: 100%;
  }
}
