/* =========================================================
   Solutions Barbershop — ELITE VERSION FIXED
   Mobile-refined / white-black-beige premium system
   ========================================================= */

:root {
  --bg: #f5f1ea;
  --bg-soft: #fcfaf7;
  --bg-card: rgba(255, 255, 255, 0.88);
  --bg-elevated: #ede4d7;

  --white: #ffffff;
  --black: #111111;
  --text: rgba(17, 17, 17, 0.94);
  --text-soft: rgba(17, 17, 17, 0.76);
  --muted: rgba(17, 17, 17, 0.56);

  --primary: #d4bea0;
  --primary-strong: #e7d7c4;
  --primary-deep: #aa8d66;
  --primary-ink: #7f6648;
  --primary-soft: rgba(212, 190, 160, 0.2);

  --line: rgba(17, 17, 17, 0.08);
  --line-strong: rgba(17, 17, 17, 0.14);

  --shadow-xs: 0 6px 16px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 10px 24px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 18px 42px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 32px 90px rgba(0, 0, 0, 0.14);
  --shadow-xl: 0 40px 120px rgba(0, 0, 0, 0.18);

  --radius-2xl: 36px;
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --pill: 999px;

  --container: 1240px;
  --header-h: 96px;

  --dur-fast: 180ms;
  --dur: 320ms;
  --dur-slow: 700ms;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* -----------------------------
   Reset
------------------------------ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.82), transparent 34%),
    linear-gradient(180deg, #faf7f2 0%, #f5f1ea 100%);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
  background: none;
  cursor: pointer;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* -----------------------------
   Utilities
------------------------------ */
.site-shell {
  min-height: 100vh;
  position: relative;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 120px 0;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(17,17,17,0.05), transparent);
  pointer-events: none;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 56px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--primary-ink);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

h1,
h2,
h3,
h4 {
  margin: 0 0 14px;
  color: var(--black);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

h1,
h2,
.service-feature__content h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
}

h1 {
  font-size: clamp(3.6rem, 7vw, 7rem);
  font-weight: 600;
}

h2 {
  font-size: clamp(2.5rem, 4vw, 4.4rem);
  font-weight: 600;
}

h3 {
  font-size: 1.28rem;
  font-weight: 700;
}

h4 {
  font-size: 1rem;
  font-weight: 700;
}

p {
  margin: 0 0 16px;
  color: var(--text-soft);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--primary-ink);
  transition:
    color var(--dur-fast) var(--ease),
    transform var(--dur-fast) var(--ease),
    gap var(--dur-fast) var(--ease);
}

.text-link::after {
  content: "→";
  transition: transform var(--dur-fast) var(--ease);
}

.text-link:hover {
  color: var(--black);
  gap: 13px;
}

.text-link:hover::after {
  transform: translateX(2px);
}

/* -----------------------------
   Buttons
------------------------------ */
.btn {
  min-height: 56px;
  padding: 0 26px;
  border-radius: var(--pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 800;
  position: relative;
  overflow: hidden;
  transition:
    transform var(--dur-fast) var(--ease),
    box-shadow var(--dur-fast) var(--ease),
    background var(--dur-fast) var(--ease),
    border-color var(--dur-fast) var(--ease),
    color var(--dur-fast) var(--ease);
  will-change: transform;
  text-align: center;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  color: var(--black);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.52),
    0 14px 34px rgba(212, 190, 160, 0.3);
}

.btn--primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,0.36) 50%, transparent 80%);
  transform: translateX(-120%);
  transition: transform 700ms var(--ease);
}

.btn--primary:hover {
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.62),
    0 22px 44px rgba(212, 190, 160, 0.38);
  transform: translateY(-2px) scale(1.02);
}

.btn--primary:hover::before {
  transform: translateX(120%);
}

.btn--secondary {
  color: var(--black);
  border: 1px solid rgba(17, 17, 17, 0.12);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.5);
}

.btn--secondary:hover {
  border-color: rgba(17, 17, 17, 0.22);
  background: rgba(255, 255, 255, 0.96);
}

.btn--block {
  width: 100%;
}

/* -----------------------------
   Header
------------------------------ */
.header {
  position: sticky;
  top: 0;
  z-index: 90;
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.68);
  border-bottom: 1px solid rgba(17, 17, 17, 0.06);
  transition:
    background var(--dur) var(--ease),
    border-color var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease);
}

.header.is-scrolled {
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.header__inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.brand__logo {
  height: 120px;
  width: auto;
  object-fit: contain;
  filter: saturate(0.98) contrast(1.02);
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav a {
  position: relative;
  color: rgba(17, 17, 17, 0.7);
  font-weight: 650;
  transition: color var(--dur-fast) var(--ease);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--primary-deep));
  transition: width var(--dur-fast) var(--ease);
}

.nav a:hover,
.nav a.is-active,
.mobile-menu__nav a.is-active {
  color: var(--black);
}

.nav a:hover::after,
.nav a.is-active::after {
  width: 100%;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.menu-toggle {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: rgba(17, 17, 17, 0.04);
  border: 1px solid var(--line);
  transition: background var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}

.menu-toggle:hover {
  background: rgba(17, 17, 17, 0.06);
  border-color: rgba(17, 17, 17, 0.14);
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--black);
  border-radius: 10px;
  transition: transform var(--dur-fast) var(--ease), opacity var(--dur-fast) var(--ease);
}

.menu-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* -----------------------------
   Mobile Menu
------------------------------ */
.mobile-menu {
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  position: relative;
  z-index: 89;
}

.mobile-menu__nav {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
  padding: 16px 0 26px;
  display: grid;
  gap: 10px;
}

.mobile-menu__nav a:not(.btn) {
  color: var(--black);
  padding: 14px 6px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.06);
  font-weight: 600;
}

/* -----------------------------
   Hero
------------------------------ */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.68), rgba(245,241,234,0.9)),
    radial-gradient(circle at top, rgba(255,255,255,0.6), transparent 48%),
    url("../images/hero-bg.jpg") center/cover no-repeat;
  transform: scale(1.04);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.18), transparent 30%, transparent 70%, rgba(255,255,255,0.16));
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 260px;
  background: linear-gradient(to bottom, transparent, rgba(245,241,234,1));
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 100px 0 92px;
}

.hero__content--center {
  display: flex;
  justify-content: center;
  text-align: center;
}

.hero__text {
  max-width: 880px;
}

.hero__text--center {
  margin-inline: auto;
}

.hero__lead {
  max-width: 680px;
  font-size: 1.13rem;
  color: rgba(17, 17, 17, 0.72);
  margin-inline: auto;
}

.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 0;
}

.hero__buttons--center {
  justify-content: center;
}

/* -----------------------------
   Intro Strip
------------------------------ */
.intro-strip {
  padding: 30px 0 0;
}

.intro-strip__inner {
  padding: 26px 0 0;
  border-top: 1px solid rgba(17,17,17,0.08);
  text-align: center;
}

.intro-strip__inner p {
  max-width: 800px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.04rem;
}

/* -----------------------------
   Editorial Services
------------------------------ */
.services-editorial {
  padding-top: 100px;
}

.service-feature {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 68px;
  align-items: center;
  margin-bottom: 96px;
}

.service-feature:last-child {
  margin-bottom: 0;
}

.service-feature--reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.service-feature--reverse .service-feature__image {
  order: 2;
}

.service-feature--reverse .service-feature__content {
  order: 1;
}

.service-feature__image {
  position: relative;
}

.service-feature__image::after {
  content: "";
  position: absolute;
  inset: auto 22px -18px 22px;
  height: 38px;
  background: rgba(212,190,160,0.18);
  filter: blur(22px);
  border-radius: 999px;
  z-index: 0;
}

.service-feature__image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 640px;
  object-fit: cover;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.service-feature__image:hover img {
  transform: translateY(-4px);
  box-shadow: 0 40px 110px rgba(0, 0, 0, 0.16);
}

.service-feature__content {
  max-width: 500px;
}

.service-feature__content h3 {
  font-size: clamp(2.1rem, 3vw, 3.15rem);
  font-weight: 600;
  margin-bottom: 12px;
}

.service-feature__content p {
  color: var(--text-soft);
  font-size: 1.04rem;
  margin-bottom: 22px;
}

/* -----------------------------
   About
------------------------------ */
.section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 58px;
  align-items: center;
}

.section__content p + p {
  margin-top: 2px;
}

.image-stack {
  position: relative;
  min-height: 590px;
}

.image-stack img {
  position: absolute;
  object-fit: cover;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
}

.image-stack img:first-child {
  width: min(100%, 450px);
  height: 550px;
  top: 0;
  left: 0;
}

.image-stack img:last-child {
  width: min(100%, 300px);
  height: 340px;
  right: 0;
  bottom: 12px;
  border: 8px solid rgba(255,255,255,0.72);
}

/* -----------------------------
   Gallery
------------------------------ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease),
    filter var(--dur) var(--ease);
}

.gallery-grid img:hover {
  transform: translateY(-6px) scale(1.012);
  box-shadow: var(--shadow-lg);
  filter: saturate(1.04) contrast(1.02);
}

.gallery-grid img:nth-child(1) { grid-column: span 4; }
.gallery-grid img:nth-child(2) { grid-column: span 4; }
.gallery-grid img:nth-child(3) { grid-column: span 4; }
.gallery-grid img:nth-child(4) { grid-column: span 5; }
.gallery-grid img:nth-child(5) { grid-column: span 3; }
.gallery-grid img:nth-child(6) { grid-column: span 4; }

/* -----------------------------
   Reviews
------------------------------ */
.reviews {
  padding-top: 110px;
}

.reviews-slider {
  position: relative;
  min-height: 270px;
  max-width: 900px;
  margin: 0 auto;
}

.review-card {
  display: none;
  padding: 48px 44px;
  border-radius: var(--radius-2xl);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(17, 17, 17, 0.06);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.review-card.active {
  display: block;
  animation: fadeInUp 500ms var(--ease);
}

.stars {
  color: var(--primary-deep);
  font-size: 1rem;
  letter-spacing: 0.14em;
  margin-bottom: 18px;
}

.review-card p {
  font-size: 1.18rem;
  line-height: 1.72;
  color: var(--black);
  margin-bottom: 18px;
}

.review-card h3 {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 600;
  font-family: "Inter", sans-serif;
}

.reviews-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.review-btn {
  min-width: 102px;
  min-height: 50px;
  padding: 0 18px;
  border-radius: var(--pill);
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.86);
  color: var(--black);
  font-weight: 700;
  transition:
    transform var(--dur-fast) var(--ease),
    background var(--dur-fast) var(--ease),
    border-color var(--dur-fast) var(--ease),
    box-shadow var(--dur-fast) var(--ease);
}

.review-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(212, 190, 160, 0.55);
  background: var(--bg-elevated);
  box-shadow: var(--shadow-xs);
}

/* -----------------------------
   Locations
------------------------------ */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.location-card {
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(243,237,228,0.92));
  border: 1px solid rgba(212, 190, 160, 0.24);
  box-shadow: var(--shadow-lg);
  transition:
    transform var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease),
    border-color var(--dur) var(--ease);
}

.location-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(212, 190, 160, 0.44);
}

.location-card__map {
  width: 100%;
  height: 280px;
  filter: saturate(0.94) contrast(1.02);
  transition: filter var(--dur) var(--ease);
}

.location-card:hover .location-card__map {
  filter: saturate(1) contrast(1.03);
}

.location-card__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.location-card__content {
  padding: 28px;
}

.location-card__label {
  color: var(--primary-ink);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.location-card__content h3 {
  margin-bottom: 7px;
}

.location-card__address,
.location-card__meta {
  color: var(--text-soft);
}

.location-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

/* -----------------------------
   CTA Section
------------------------------ */
.cta-section {
  padding-top: 110px;
}

.cta-panel {
  max-width: 940px;
  margin: 0 auto;
  padding: 62px 44px;
  border-radius: var(--radius-2xl);
  background:
    linear-gradient(135deg, rgba(212,190,160,0.26), rgba(255,255,255,0.92)),
    radial-gradient(circle at top right, rgba(255,255,255,0.6), transparent 35%);
  border: 1px solid rgba(212, 190, 160, 0.28);
  box-shadow: var(--shadow-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-panel::before {
  content: "";
  position: absolute;
  inset: auto -10% -40% auto;
  width: 320px;
  height: 320px;
  background: rgba(212,190,160,0.14);
  filter: blur(80px);
  border-radius: 50%;
}

.cta-panel p {
  max-width: 660px;
  margin-inline: auto;
  color: var(--text-soft);
}

.cta-panel .btn {
  margin-top: 10px;
}

/* -----------------------------
   Footer
------------------------------ */
.footer {
  padding: 44px 0 94px;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.86), rgba(255,255,255,1));
}

.footer__inner {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 36px;
  align-items: start;
}

.footer__logo {
  height: 74px;
  width: auto;
  margin-bottom: 14px;
}

.footer__brand p {
  max-width: 430px;
  color: var(--muted);
  margin-bottom: 0;
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.footer__links h3 {
  font-size: 0.93rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary-ink);
  margin-bottom: 14px;
  font-family: "Inter", sans-serif;
}

.footer__links a,
.footer__links span {
  display: block;
  color: var(--muted);
  margin-bottom: 10px;
  transition: color var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
}

.footer__links a:hover {
  color: var(--black);
  transform: translateX(2px);
}

.site-credit {
  text-align: center;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(17,17,17,0.08);
  font-size: 0.85rem;
  color: rgba(17,17,17,0.6);
}

.site-credit a {
  color: var(--primary-ink);
  text-decoration: none;
  font-weight: 700;
}

.site-credit a:hover {
  color: var(--black);
  text-decoration: underline;
}

/* -----------------------------
   Sticky Book Button
------------------------------ */
.sticky-book {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  min-width: 190px;
  min-height: 56px;
  padding: 0 26px;
  border-radius: var(--pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  color: var(--black);
  font-weight: 800;
  box-shadow: 0 20px 38px rgba(212, 190, 160, 0.34);
  z-index: 80;
  transition:
    transform var(--dur-fast) var(--ease),
    box-shadow var(--dur-fast) var(--ease);
}

.sticky-book:hover {
  transform: translateX(-50%) translateY(-2px);
  box-shadow: 0 24px 48px rgba(212, 190, 160, 0.42);
}

/* -----------------------------
   Animations
------------------------------ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* -----------------------------
   Large Tablet
------------------------------ */
@media (max-width: 1200px) {
  .service-feature,
  .service-feature--reverse {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .service-feature__image img {
    height: 560px;
  }
}

/* -----------------------------
   Tablet / iPad
------------------------------ */
@media (max-width: 992px) {
  :root {
    --header-h: 84px;
  }

  .desktop-nav,
  .desktop-book-btn {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero {
    min-height: auto;
  }

  .section {
    padding: 96px 0;
  }

  .section__grid,
  .footer__inner,
  .service-feature,
  .service-feature--reverse,
  .locations-grid {
    grid-template-columns: 1fr;
  }

  .service-feature--reverse .service-feature__image,
  .service-feature--reverse .service-feature__content {
    order: initial;
  }

  .service-feature__content {
    max-width: 100%;
  }

  .service-feature__image img {
    height: 460px;
  }

  .image-stack {
    min-height: 0;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 16px;
  }

  .image-stack img {
    position: static;
    width: 100% !important;
    height: 340px !important;
  }

  .footer__links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gallery-grid img:nth-child(n) {
    grid-column: span 6;
  }
}

/* -----------------------------
   Mobile
------------------------------ */
@media (max-width: 768px) {
  :root {
    --header-h: 74px;
  }

  .section {
    padding: 58px 0;
  }

  .container {
    width: min(calc(100% - 22px), var(--container));
  }

  .header__inner {
    min-height: var(--header-h);
    gap: 12px;
  }

  .brand__logo {
    height: 46px;
    max-width: 130px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .hero {
    min-height: auto;
  }

  .hero__content {
    padding: 34px 0 26px;
  }

  .hero__text {
    max-width: 100%;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 10vw, 3rem);
    line-height: 0.96;
    margin-bottom: 12px;
  }

  .hero__lead {
    font-size: 0.96rem;
    line-height: 1.6;
    max-width: 100%;
    margin-bottom: 0;
  }

  .hero__buttons,
  .hero__buttons--center,
  .location-card__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__buttons {
    margin-top: 20px;
    gap: 10px;
  }

  .hero__buttons .btn,
  .btn--block,
  .review-btn,
  .location-card__actions .btn {
    width: 100%;
  }

  .btn {
    min-height: 50px;
    padding: 0 18px;
    font-size: 0.94rem;
  }

  .section-heading {
    margin-bottom: 26px;
  }

  .section-heading h2 {
    font-size: clamp(1.95rem, 8.5vw, 2.5rem);
    line-height: 1;
    margin-bottom: 10px;
  }

  .eyebrow {
    font-size: 0.66rem;
    letter-spacing: 0.16em;
    gap: 8px;
    margin-bottom: 8px;
  }

  .eyebrow::before,
  .eyebrow::after {
    width: 16px;
  }

  .intro-strip {
    padding-top: 6px;
  }

  .intro-strip__inner {
    padding-top: 14px;
  }

  .intro-strip__inner p {
    font-size: 0.94rem;
    line-height: 1.65;
  }

  .services-editorial {
    padding-top: 58px;
  }

  .service-feature {
    gap: 18px;
    margin-bottom: 38px;
  }

  .service-feature__image::after {
    inset: auto 10px -10px 10px;
    height: 20px;
  }

  .service-feature__image img {
    height: 230px;
    border-radius: 20px;
  }

  .service-feature__content h3 {
    font-size: clamp(1.8rem, 8vw, 2.2rem);
    margin-bottom: 8px;
  }

  .service-feature__content p {
    font-size: 0.95rem;
    margin-bottom: 14px;
  }

  .section__grid {
    gap: 24px;
  }

  .image-stack {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .image-stack img {
    height: 220px !important;
    border-width: 0 !important;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .gallery-grid img:nth-child(n) {
    grid-column: auto;
    min-height: 210px;
    border-radius: 18px;
  }

  .reviews {
    padding-top: 58px;
  }

  .reviews-slider {
    min-height: auto;
  }

  .review-card {
    padding: 24px 16px;
    border-radius: 22px;
  }

  .review-card p {
    font-size: 0.98rem;
    line-height: 1.6;
  }

  .reviews-controls {
    gap: 8px;
    margin-top: 14px;
  }

  .locations-grid {
    gap: 16px;
  }

  .location-card {
    border-radius: 20px;
  }

  .location-card__map {
    height: 210px;
  }

  .location-card__content {
    padding: 16px;
  }

  .location-card__content h3 {
    font-size: 1.12rem;
  }

  .location-card__content p {
    margin-bottom: 12px;
  }

  .location-card__actions {
    margin-top: 8px;
    gap: 8px;
  }

  .cta-section {
    padding-top: 58px;
  }

  .cta-panel {
    padding: 26px 16px;
    border-radius: 22px;
  }

  .footer {
    padding: 28px 0 88px;
  }

  .footer__inner {
    gap: 22px;
  }

  .footer__logo {
    height: 46px;
    margin-bottom: 8px;
  }

  .footer__links {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .footer__links h3 {
    margin-bottom: 8px;
    font-size: 0.8rem;
  }

  .footer__links a,
  .footer__links span {
    margin-bottom: 6px;
    font-size: 0.92rem;
  }

  .site-credit {
    margin-top: 20px;
    padding-top: 14px;
    font-size: 0.76rem;
    line-height: 1.55;
  }

  .sticky-book {
    left: 12px;
    right: 12px;
    bottom: 10px;
    transform: none;
    min-width: 0;
    min-height: 48px;
    padding: 0 16px;
    font-size: 0.92rem;
  }

  .sticky-book:hover {
    transform: translateY(-2px);
  }
}

/* -----------------------------
   Small Mobile
------------------------------ */
@media (max-width: 520px) {
  .hero h1 {
    font-size: clamp(1.95rem, 9.5vw, 2.55rem);
  }

  .hero__lead,
  p {
    font-size: 0.93rem;
  }

  .service-feature__image img {
    height: 210px;
  }

  .location-card__map {
    height: 190px;
  }
}