@charset "UTF-8";
/* ==========================================================================
   Per Lui Barbershop — styles.css
   Shared by every page: index.html, contact.html and cities/*.html.

   Contents
   01. Design tokens
   02. Reset & base
   03. Utilities
   04. Typography
   05. Buttons
   06. Surfaces, sections & decorative parts
   07. Announcement bar
   08. Header & navigation (incl. the Cities submenu)
   09. Mobile navigation (incl. the Cities submenu)
   10. Hero
   11. Introduction & cards
   11b. Client reviews (third-party widgets)
   12. Booking banner
   13. Hours, status & location
   14. Closing CTA
   15. Contact page
   15b. Cities we serve — hub & local pages
   16. Footer
   17. Booking dock
   18. Motion & reduced motion
   ========================================================================== */

/* 01. Design tokens ======================================================= */

:root {
  /* ---- Brand palette (the three foundation colors) ---- */
  --navy: #03214C;
  --burgundy: #851A2E;
  --white: #FEFEFE;

  /* ---- Derived brand variants -------------------------------------------
     Static hex values are declared first as a fallback; the color-mix()
     redeclaration below wins in browsers that support it. --bone is the one
     supporting neutral: a warm paper tone that echoes the shop's ivory walls. */
  --navy-deep: #021837;
  --navy-lift: #17335A;
  --burgundy-deep: #6E1626;
  --burgundy-lift: #9A2337;
  --bone: #F6F2EA;
  --bone-deep: #EDE7DB;

  --navy-deep: color-mix(in srgb, var(--navy) 74%, #000);
  --navy-lift: color-mix(in srgb, var(--navy) 92%, var(--white));
  --burgundy-deep: color-mix(in srgb, var(--burgundy) 84%, #000);
  --burgundy-lift: color-mix(in srgb, var(--burgundy) 88%, var(--white));

  /* ---- Text ---- */
  --ink: var(--navy);
  --ink-muted: #4C5D75;
  --on-dark: var(--white);
  --on-dark-muted: rgba(254, 254, 254, 0.78);

  /* ---- Lines, veils & shadows ---- */
  --line: rgba(3, 33, 76, 0.14);
  --line-strong: rgba(3, 33, 76, 0.26);
  --line-light: rgba(254, 254, 254, 0.22);
  --veil-light: rgba(254, 254, 254, 0.07);
  --shadow-sm: 0 1px 2px rgba(3, 33, 76, 0.05), 0 8px 20px -14px rgba(3, 33, 76, 0.3);
  --shadow-md: 0 20px 50px -30px rgba(3, 33, 76, 0.5);
  --shadow-lg: 0 36px 80px -44px rgba(2, 24, 55, 0.65);

  /* ---- Focus ring (re-declared on dark surfaces) ---- */
  --focus: var(--navy);

  /* ---- Type ---- */
  --font-display: "Fraunces", "Didot", "Bodoni 72", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --step--1: clamp(0.82rem, 0.8rem + 0.1vw, 0.875rem);
  --step-0: clamp(1rem, 0.97rem + 0.16vw, 1.09rem);
  --step-1: clamp(1.13rem, 1.05rem + 0.35vw, 1.3rem);
  --step-2: clamp(1.35rem, 1.2rem + 0.7vw, 1.75rem);
  --step-3: clamp(1.75rem, 1.45rem + 1.4vw, 2.6rem);
  --step-4: clamp(2.1rem, 1.6rem + 2.4vw, 3.6rem);
  --step-5: clamp(2.6rem, 1.75rem + 4vw, 5.1rem);

  /* ---- Space & layout ---- */
  --space-3xs: 0.25rem;
  --space-2xs: 0.5rem;
  --space-xs: 0.75rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.25rem;
  --space-xl: 3.5rem;
  --space-2xl: clamp(4rem, 8vw, 7rem);

  --container: 76rem;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --header-h: 4.75rem;
  --radius: 4px;
  --radius-lg: 10px;

  --ease: cubic-bezier(0.2, 0.7, 0.3, 1);
}

/* 02. Reset & base ======================================================== */

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

* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1.25rem);
}

body {
  min-height: 100svh;
  background: var(--bone);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.65;
  font-synthesis-weight: none;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden; /* belt-and-braces against horizontal overflow */
}

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

img { height: auto; }

a { color: inherit; }

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

table { border-collapse: collapse; }

[hidden] { display: none !important; }

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

/* Consistent, high-contrast selection */
::selection {
  background: var(--burgundy);
  color: var(--white);
}

/* 03. Utilities =========================================================== */

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 200;
  transform: translate(-50%, -140%);
  padding: 0.75rem 1.5rem;
  background: var(--burgundy);
  color: var(--white);
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: 0 0 var(--radius) var(--radius);
  transition: transform 0.2s var(--ease);
}

.skip-link:focus-visible {
  transform: translate(-50%, 0);
  outline-offset: 2px;
  --focus: var(--white);
}

/* 04. Typography ========================================================== */

h1, h2, h3 {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

p { text-wrap: pretty; }

.section__title {
  font-size: var(--step-4);
  margin-bottom: var(--space-md);
}

.section__title + p,
.intro__copy p + p { margin-top: var(--space-sm); }

/* Small letterspaced label. Default styling suits dark surfaces;
   `.eyebrow--dark` switches to dark ink for light surfaces. */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.85em;
  margin-bottom: var(--space-sm);
  font-family: var(--font-body);
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--on-dark-muted);
}

.eyebrow::before {
  content: "";
  flex: none;
  width: 2.25rem;
  height: 1px;
  background: currentColor;
  opacity: 0.65;
}

.eyebrow--dark { color: var(--burgundy); }

.lede {
  font-size: var(--step-1);
  line-height: 1.55;
  color: var(--ink-muted);
}

.address {
  font-style: normal;
  font-family: var(--font-display);
  font-size: var(--step-2);
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.address--light { color: var(--on-dark); }

/* 05. Buttons ============================================================= */

.btn {
  --btn-bg: var(--burgundy);
  --btn-fg: var(--white);
  --btn-edge: transparent;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  min-height: 3rem;
  padding: 0.8rem 1.65rem;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid var(--btn-edge);
  border-radius: var(--radius);
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease),
              border-color 0.25s var(--ease), transform 0.25s var(--ease),
              box-shadow 0.25s var(--ease);
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn__arrow,
.btn__icon {
  flex: none;
  width: 1.15em;
  height: 1.15em;
  transition: transform 0.25s var(--ease);
}

.btn:hover .btn__arrow { transform: translateX(3px); }

.btn--primary {
  --btn-bg: var(--burgundy);
  --btn-fg: var(--white);
  --btn-edge: var(--burgundy);
  box-shadow: var(--shadow-sm);
}

.btn--primary:hover {
  --btn-bg: var(--burgundy-lift);
  --btn-edge: var(--burgundy-lift);
  box-shadow: var(--shadow-md);
}

/* Outlined, for light surfaces */
.btn--outline {
  --btn-bg: transparent;
  --btn-fg: var(--navy);
  --btn-edge: var(--line-strong);
}

.btn--outline:hover {
  --btn-bg: var(--navy);
  --btn-fg: var(--white);
  --btn-edge: var(--navy);
}

/* Outlined, for dark surfaces */
.btn--outline-light {
  --btn-bg: transparent;
  --btn-fg: var(--white);
  --btn-edge: rgba(254, 254, 254, 0.38);
}

.btn--outline-light:hover {
  --btn-bg: var(--white);
  --btn-fg: var(--navy);
  --btn-edge: var(--white);
}

/* Solid warm white, for burgundy surfaces */
.btn--light {
  --btn-bg: var(--white);
  --btn-fg: var(--burgundy-deep);
  --btn-edge: var(--white);
}

.btn--light:hover {
  --btn-bg: var(--bone);
  --btn-edge: var(--bone);
}

.btn--sm {
  min-height: 2.75rem;
  padding: 0.6rem 1.15rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}

.btn--lg {
  min-height: 3.5rem;
  padding: 1rem 2.25rem;
  font-size: var(--step-0);
  letter-spacing: 0.07em;
}

.btn--block { width: 100%; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-top: var(--space-md);
}

/* 06. Surfaces, sections & decorative parts =============================== */

.surface--navy,
.surface--burgundy {
  position: relative;
  isolation: isolate;
  color: var(--on-dark);
  --focus: var(--white);
  --ink-muted: var(--on-dark-muted);
}

.surface--navy { background: var(--navy); }
.surface--burgundy { background: var(--burgundy-deep); }

/* Restrained pinstripe texture — a nod to tailoring, not a pattern statement */
.surface--navy::before,
.surface--burgundy::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    135deg,
    rgba(254, 254, 254, 0.045) 0 1px,
    transparent 1px 9px
  );
}

.surface--navy::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(60rem 40rem at 78% 12%, rgba(133, 26, 46, 0.28), transparent 68%),
    radial-gradient(48rem 34rem at 8% 92%, rgba(23, 51, 90, 0.55), transparent 70%);
}

.surface--paper { background: var(--bone); }

.section { padding-block: var(--space-2xl); }
.section--tight { padding-block: 0 var(--space-2xl); }

/* Grid children default to min-width:auto, which lets wide content (tables,
   long strings) push a column past the viewport. Opt every layout grid out. */
.hero__inner > *,
.intro > *,
.info > *,
.visit > *,
.banner__inner > *,
.site-footer__grid > * { min-width: 0; }

/* Image frame: hairline inner edge plus an offset rule for depth */
.frame {
  position: relative;
  border-radius: var(--radius);
}

.frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--burgundy);
  border-radius: inherit;
  transform: translate(0.9rem, 0.9rem);
  transition: transform 0.5s var(--ease);
}

.frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: inherit;
  box-shadow: var(--shadow-md);
}

.frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border: 1px solid rgba(254, 254, 254, 0.3);
  border-radius: inherit;
  pointer-events: none;
}

.surface--navy .frame::before { border-color: rgba(254, 254, 254, 0.32); }
.frame--dark::after { border-color: rgba(3, 33, 76, 0.12); }

/* Hairline rule with a centred diamond */
.ornament {
  display: block;
  width: 5.5rem;
  height: 1px;
  margin-inline: auto;
  background: rgba(254, 254, 254, 0.32);
  position: relative;
}

.ornament::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  background: var(--burgundy-lift);
  transform: translate(-50%, -50%) rotate(45deg);
}

/* 07. Announcement bar ==================================================== */

.announce {
  background: var(--navy-deep);
  color: var(--on-dark-muted);
}

.announce__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 2.5rem;
  padding-block: 0.45rem;
}

.announce__mark {
  flex: none;
  width: 6px;
  height: 6px;
  background: var(--burgundy-lift);
  transform: rotate(45deg);
}

.announce__text {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
}

/* 08. Header & navigation ================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 70;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s var(--ease), background-color 0.3s var(--ease);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px -22px rgba(3, 33, 76, 0.55);
  background: rgba(254, 254, 254, 0.94);
  backdrop-filter: saturate(150%) blur(10px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  min-height: var(--header-h);
  padding-block: 0.65rem;
}

.brand {
  display: inline-flex;
  flex: none;
  padding: 0.25rem;
  margin-left: -0.25rem;
  border-radius: var(--radius);
}

.brand__mark {
  width: 7.75rem;
  height: auto;
  transform-origin: left center;
  transition: transform 0.3s var(--ease);
}

.site-header.is-scrolled .brand__mark { transform: scale(0.9); }

.nav { display: none; }

.nav__list {
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2.4vw, 2.1rem);
  list-style: none;
  padding: 0;
}

.nav__link {
  position: relative;
  display: inline-block;
  padding: 0.35rem 0;
  font-size: var(--step--1);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--navy);
  transition: color 0.2s var(--ease);
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--burgundy);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav__link:hover::after,
.nav__link:focus-visible::after { transform: scaleX(1); }

.nav__link[aria-current="page"] { color: var(--burgundy); }
.nav__link[aria-current="page"]::after { transform: scaleX(1); }

/* Ancestor of the current page (a city page under "Cities We Serve") */
.nav__link.is-section { color: var(--burgundy); }

/* ---- Cities submenu (desktop) ---- */

.nav__item--has-menu {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav__submenu-toggle {
  display: none; /* the parent link alone is enough without JS */
  place-items: center;
  width: 1.75rem;
  height: 1.75rem;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 2px;
  color: var(--navy);
  cursor: pointer;
}

.js .nav__submenu-toggle { display: grid; }

.nav__chevron {
  width: 1rem;
  height: 1rem;
  transition: transform 0.25s var(--ease);
}

[aria-expanded="true"] > .nav__chevron { transform: rotate(180deg); }

.nav__submenu {
  position: absolute;
  top: calc(100% + 1.1rem);
  left: -1.25rem;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(2, minmax(8rem, 1fr));
  gap: 0 1.5rem;
  padding: 1rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  list-style: none;
}

.nav__submenu a {
  display: block;
  padding: 0.4rem 0;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s var(--ease);
}

.nav__submenu a:hover { color: var(--burgundy); }
.nav__submenu a[aria-current="page"] { color: var(--burgundy); font-weight: 600; }

.nav__submenu-all {
  grid-column: 1 / -1;
  margin-bottom: 0.35rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--line);
}

.nav__submenu-all a {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--burgundy);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-2xs);
}

.site-header__book { display: none; }

.nav-toggle {
  display: none; /* revealed only when JS is available */
  align-items: center;
  gap: 0.55rem;
  min-height: 2.75rem;
  padding: 0.5rem 0.85rem;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease),
              border-color 0.2s var(--ease);
}

.nav-toggle:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.nav-toggle__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-toggle__bars {
  display: grid;
  gap: 4px;
  width: 18px;
}

.nav-toggle__bars span {
  display: block;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

.js .nav-toggle { display: inline-flex; }

@media (min-width: 72em) {
  .nav { display: block; }
  .site-header__book { display: inline-flex; }
  .js .nav-toggle { display: none; }
}

/* Without JS the primary nav must stay reachable on narrow screens */
@media (max-width: 71.999em) {
  .site-header__inner { flex-wrap: wrap; }
  .nav { display: block; width: 100%; }
  .js .nav { display: none; }
  .nav__list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.4rem 1.25rem;
    padding-bottom: 0.5rem;
  }
}

/* 09. Mobile navigation =================================================== */

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 90;
}

.mobile-nav::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(2, 24, 55, 0.6);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

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

.mobile-nav__panel {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  width: min(22rem, 88vw);
  height: 100%;
  padding: calc(var(--header-h) + 1.5rem) var(--space-md) var(--space-lg);
  background: var(--navy-deep);
  color: var(--on-dark);
  --focus: var(--white);
  box-shadow: var(--shadow-lg);
  overflow-y: auto;
  overscroll-behavior: contain;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
}

.mobile-nav.is-open .mobile-nav__panel { transform: translateX(0); }

.mobile-nav__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background-color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.mobile-nav__close svg { width: 1.35rem; height: 1.35rem; }

.mobile-nav__close:hover {
  background: var(--burgundy);
  border-color: var(--burgundy);
}

.mobile-nav__list {
  display: grid;
  gap: 0.25rem;
  list-style: none;
  padding: 0;
}

.mobile-nav__list a {
  display: block;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line-light);
  font-family: var(--font-display);
  font-size: var(--step-2);
  text-decoration: none;
  transition: color 0.2s var(--ease), padding-left 0.25s var(--ease);
}

.mobile-nav__list a:hover { padding-left: 0.4rem; }

/* ---- Cities submenu (mobile panel) ---- */

.mobile-nav__group {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0.5rem;
}

.mobile-nav__sub-toggle {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  color: inherit;
  cursor: pointer;
  transition: background-color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.mobile-nav__sub-toggle:hover {
  background: var(--burgundy);
  border-color: var(--burgundy);
}

.mobile-nav__submenu {
  display: grid;
  padding: 0.35rem 0 0.75rem 0.85rem;
  margin-left: 0.15rem;
  border-left: 1px solid var(--line-light);
  list-style: none;
}

/* Same specificity as `.mobile-nav__list a`, declared later so it wins */
.mobile-nav__submenu a {
  padding: 0.55rem 0;
  border-bottom: 0;
  font-family: var(--font-body);
  font-size: var(--step--1);
  letter-spacing: 0.04em;
  color: var(--on-dark-muted);
}

.mobile-nav__submenu a:hover { color: var(--white); }

.mobile-nav__submenu a[aria-current="page"] {
  color: var(--white);
  font-weight: 600;
}

.mobile-nav__list a[aria-current="page"] {
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: var(--burgundy-lift);
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.mobile-nav__address {
  margin-top: auto;
  padding-top: var(--space-sm);
  border-top: 1px solid var(--line-light);
  font-size: var(--step--1);
  letter-spacing: 0.02em;
  color: var(--on-dark-muted);
}

body.is-locked { overflow: hidden; }

/* 10. Hero ================================================================ */

.hero { padding-block: clamp(3rem, 8vw, 6.5rem); }

.hero__inner {
  display: grid;
  gap: clamp(2.5rem, 6vw, 4rem);
  align-items: center;
}

.hero__title {
  font-size: var(--step-5);
  margin-bottom: var(--space-md);
}

.hero__title em {
  display: block;
  font-style: italic;
  font-weight: 400;
  color: rgba(254, 254, 254, 0.92);
}

.hero__lede {
  max-width: 34ch;
  font-size: var(--step-1);
  line-height: 1.55;
  color: var(--on-dark-muted);
}

.hero__status {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-xs);
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid var(--line-light);
}

.hero__status-link {
  font-size: var(--step--1);
  letter-spacing: 0.06em;
  color: var(--on-dark-muted);
  text-decoration-color: rgba(254, 254, 254, 0.4);
  text-underline-offset: 4px;
  transition: color 0.2s var(--ease);
}

.hero__status-link:hover { color: var(--white); }

.hero__figure { position: relative; margin: 0; }

.hero__caption {
  margin-top: 1.4rem;
  font-size: var(--step--1);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--on-dark-muted);
  text-align: right;
}

@media (min-width: 64em) {
  /* The copy column carries the display type and the CTA pair, so it takes
     the slightly larger share. */
  .hero__inner { grid-template-columns: 1.1fr 0.9fr; }
  .hero__figure { order: 2; }
}

/* 11. Introduction & cards ================================================ */

.intro {
  display: grid;
  gap: clamp(2.5rem, 6vw, 4.5rem);
  align-items: center;
}

.intro__copy p { color: var(--ink-muted); }
.intro__copy .btn { margin-top: var(--space-md); }

@media (min-width: 64em) {
  .intro { grid-template-columns: 0.95fr 1fr; }
}

.cards {
  display: grid;
  gap: var(--space-md);
  list-style: none;
  padding: 0;
  margin-top: var(--space-xl);
}

.card {
  position: relative;
  padding: var(--space-lg) var(--space-md) var(--space-md);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
              border-color 0.35s var(--ease);
}

.card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 3rem;
  height: 2px;
  background: var(--burgundy);
  transition: width 0.4s var(--ease);
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-md);
}

.card:hover::before { width: 5.5rem; }

.card__num {
  display: block;
  margin-bottom: var(--space-2xs);
  font-family: var(--font-display);
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--burgundy);
}

.card__title {
  font-size: var(--step-2);
  margin-bottom: var(--space-2xs);
}

.card__body { color: var(--ink-muted); }

@media (min-width: 48em) {
  .cards { grid-template-columns: repeat(3, 1fr); }
  .card { padding: var(--space-lg) var(--space-md) var(--space-lg); }
}

/* 11b. Client reviews (third-party widget) ================================ */

/* The carousel is rendered entirely by the review provider's script, so the
   section has nothing to show without JavaScript — hide it rather than leave
   a heading over an empty box. */
.reviews { display: none; }
.js .reviews { display: block; }

.reviews__intro {
  max-width: 40rem;
  margin-bottom: var(--space-lg);
}

/* Reserves height before the widget paints so the booking banner below it
   doesn't jump. Measured against the live widget, which grows with viewport
   width: 274px @390, 276px @768, 284px @1024, 292px @1280. Each step keeps a
   few pixels of slack. Re-measure if the provider changes the card design. */
.reviews__frame { min-height: 17.5rem; }

@media (min-width: 64em) {
  .reviews__frame { min-height: 18rem; }
}

@media (min-width: 80em) {
  .reviews__frame { min-height: 18.5rem; }
}

/* 12. Booking banner ====================================================== */

.banner { padding-block: clamp(2.75rem, 6vw, 4.5rem); }

.banner__inner {
  display: grid;
  gap: var(--space-md);
  align-items: center;
}

.banner__title {
  font-size: var(--step-3);
  margin-bottom: var(--space-2xs);
}

.banner__copy {
  max-width: 46ch;
  color: rgba(254, 254, 254, 0.85);
}

.banner .btn { justify-self: start; }

@media (min-width: 56em) {
  .banner__inner {
    grid-template-columns: 1fr auto;
    gap: var(--space-lg);
  }
  .banner .btn { justify-self: end; }
}

/* 13. Hours, status & location ============================================ */

.visit {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: start;
}

.visit__intro .address { margin-top: var(--space-sm); }
.visit__status { margin-top: var(--space-sm); }

@media (min-width: 56em) {
  .visit { grid-template-columns: 1fr 1fr; }
}

/* Live open/closed pill. State is carried by text and dot shape, never color alone. */
.status {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0.95rem;
  border: 1px solid var(--line-light);
  border-radius: 999px;
  background: var(--veil-light);
  font-size: var(--step--1);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.status__dot {
  flex: none;
  width: 9px;
  height: 9px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
}

.status.is-open .status__dot {
  background: currentColor;
  box-shadow: 0 0 0 3px rgba(254, 254, 254, 0.16);
}

.status--dark {
  border-color: var(--line);
  background: rgba(3, 33, 76, 0.04);
  color: var(--navy);
}

.status--dark.is-open .status__dot { box-shadow: 0 0 0 3px rgba(3, 33, 76, 0.1); }

.status__next {
  padding-left: 0.55rem;
  margin-left: 0.15rem;
  border-left: 1px solid currentColor;
  opacity: 0.75;
}

.hours__heading {
  margin-bottom: var(--space-xs);
  font-size: var(--step-2);
}

.hours {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden; /* keeps the today-row tint inside the rounded corners */
}

.hours th,
.hours td {
  /* Horizontal padding tightens on narrow screens so the table never forces
     its grid column wider than the viewport. */
  padding: 0.8rem clamp(0.7rem, 3.5vw, 1.5rem);
  border-bottom: 1px solid var(--line);
  font-size: var(--step--1);
  letter-spacing: 0.02em;
}

.hours tr:last-child th,
.hours tr:last-child td { border-bottom: 0; }

.hours th {
  text-align: left;
  font-weight: 500;
  color: var(--ink-muted);
}

.hours td {
  text-align: right;
  color: var(--ink-muted);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.hours tr.is-today th,
.hours tr.is-today td {
  color: var(--navy);
  font-weight: 600;
  background: linear-gradient(90deg, rgba(133, 26, 46, 0.07), rgba(133, 26, 46, 0.01));
}

.hours tr.is-today th { box-shadow: inset 3px 0 0 var(--burgundy); }

.hours__badge {
  display: inline-block;
  margin-left: 0.45rem;
  padding: 0.1rem 0.5rem;
  border-radius: 999px;
  background: var(--burgundy);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  vertical-align: 1px;
}

.hours__note {
  margin-top: var(--space-sm);
  font-size: var(--step--1);
  color: var(--ink-muted);
}

/* 14. Closing CTA ========================================================= */

.closing { padding-block: var(--space-2xl); }

.closing__inner {
  display: grid;
  justify-items: center;
  gap: var(--space-sm);
  max-width: 46rem;
  text-align: center;
}

.closing__title {
  font-size: var(--step-4);
  margin-top: var(--space-sm);
}

.closing__copy {
  max-width: 44ch;
  color: var(--on-dark-muted);
}

.closing .btn { margin-top: var(--space-sm); }

/* 15. Contact page ======================================================== */

.page-hero { padding-block: clamp(3rem, 7vw, 5.5rem); }

.page-hero__inner { max-width: 46rem; }

.page-hero__title {
  font-size: var(--step-4);
  margin-bottom: var(--space-sm);
}

.page-hero__copy {
  max-width: 48ch;
  font-size: var(--step-1);
  line-height: 1.55;
  color: var(--on-dark-muted);
}

/* ---- Hero social proof (third-party avatars widget) ----
   The widget paints dark text (#374151) and renders into a shadow root, so it
   cannot be restyled from here — it is given a light card to sit on instead,
   where that text reads at better than 10:1. Height is reserved up front so
   the hero doesn't shift; the card's surface is only painted once JS confirms
   the widget rendered, so a blocked load leaves blank space, not an empty box. */
.hero-proof {
  display: none;
  width: fit-content;
  max-width: 100%;
  min-height: 5.5rem; /* live widget measures 87px @390 and 91px @1024 */
  margin-top: var(--space-md);
  padding: 0.85rem 1.15rem;
  border-radius: var(--radius);
  transition: background-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.js .hero-proof { display: block; }

.hero-proof.is-loaded {
  background: var(--white);
  box-shadow: var(--shadow-md);
}

@media (min-width: 64em) {
  .hero-proof { min-height: 5.75rem; }
}

.info {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
}

.info__copy p { color: var(--ink-muted); }
.info__copy .address { margin-top: var(--space-md); }

@media (min-width: 64em) {
  .info { grid-template-columns: 1fr 0.95fr; }
  .info__media { order: 2; }
}

/* 15b. Cities we serve — hub & local pages ================================ */

.breadcrumb {
  margin-bottom: var(--space-md);
  font-size: var(--step--1);
  letter-spacing: 0.04em;
  color: var(--on-dark-muted);
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.15rem 0.6rem;
  list-style: none;
  padding: 0;
}

.breadcrumb li { display: flex; align-items: center; gap: 0.6rem; }

.breadcrumb li + li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
  opacity: 0.6;
}

.breadcrumb a {
  padding: 0.2rem 0;
  text-decoration-color: rgba(254, 254, 254, 0.35);
  text-underline-offset: 4px;
  transition: color 0.2s var(--ease);
}

.breadcrumb a:hover { color: var(--white); }
.breadcrumb [aria-current="page"] { color: var(--white); }

/* ---- Directory grid ---- */

.directory__intro {
  max-width: 44rem;
  margin-bottom: var(--space-xl);
}

.city-grid {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr));
  list-style: none;
  padding: 0;
}

.city-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: var(--space-md);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
              border-color 0.35s var(--ease);
}

.city-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 2.5rem;
  height: 2px;
  background: var(--burgundy);
  transition: width 0.4s var(--ease);
}

.city-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-md);
}

.city-card:hover::before { width: 4.5rem; }

/* Keyboard focus lands on the link inside, so mirror it onto the whole card */
.city-card:focus-within {
  border-color: var(--navy);
  box-shadow: var(--shadow-md);
}

.city-card__state {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--burgundy);
}

.city-card__name { font-size: var(--step-2); }

.city-card__teaser {
  flex: 1;
  font-size: var(--step--1);
  line-height: 1.6;
  color: var(--ink-muted);
}

.city-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: var(--space-2xs);
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--navy);
}

.city-card__link svg {
  width: 1.05em;
  height: 1.05em;
  transition: transform 0.25s var(--ease);
}

.city-card:hover .city-card__link svg { transform: translateX(3px); }

/* Stretch the single link over the card so the whole tile is clickable
   without adding a second, duplicate link for assistive technology. */
.city-card__link::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
}

/* ---- Location card on a city page ---- */

.visit-card {
  padding: var(--space-md);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.visit-card .address { margin-top: var(--space-2xs); }
.visit-card .visit__status { margin-top: var(--space-sm); }

.hours-brief {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.45rem 1.25rem;
  margin-top: var(--space-sm);
  padding-top: var(--space-sm);
  border-top: 1px solid var(--line);
  font-size: var(--step--1);
}

.hours-brief dt { color: var(--ink-muted); letter-spacing: 0.02em; }

.hours-brief dd {
  margin: 0;
  text-align: right;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.visit-card__more {
  margin-top: var(--space-sm);
  font-size: var(--step--1);
}

.visit-card__more a {
  text-underline-offset: 4px;
  transition: color 0.2s var(--ease);
}

.visit-card__more a:hover { color: var(--burgundy); }

/* ---- Nearby areas ---- */

.nearby__title {
  margin-bottom: var(--space-sm);
  font-size: var(--step-2);
}

.nearby__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
}

.nearby__list a {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  padding: 0.5rem 1.1rem;
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: var(--step--1);
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease),
              border-color 0.25s var(--ease);
}

.nearby__list a:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.nearby__all {
  font-weight: 600;
  color: var(--burgundy);
}

/* 16. Footer ============================================================== */

.site-footer {
  position: relative;
  isolation: isolate;
  padding-top: var(--space-2xl);
  background: var(--navy-deep);
  color: var(--on-dark-muted);
  --focus: var(--white);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    135deg,
    rgba(254, 254, 254, 0.035) 0 1px,
    transparent 1px 9px
  );
}

.site-footer__grid {
  display: grid;
  gap: var(--space-xl);
  padding-bottom: var(--space-xl);
}

@media (min-width: 48em) {
  .site-footer__grid { grid-template-columns: 1.4fr 1fr 1.1fr; gap: var(--space-lg); }
}

.site-footer__logo {
  width: 11rem;
  height: auto;
  margin-bottom: var(--space-sm);
}

.site-footer__tagline {
  max-width: 34ch;
  font-size: var(--step--1);
  line-height: 1.7;
}

.site-footer__brand .address {
  margin-top: var(--space-sm);
  font-size: var(--step-1);
}

.site-footer__heading {
  margin-bottom: var(--space-sm);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
}

.site-footer__nav ul {
  display: grid;
  gap: 0.35rem;
  list-style: none;
  padding: 0;
}

.site-footer__nav a {
  display: inline-block;
  padding: 0.35rem 0;
  font-size: var(--step--1);
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

.site-footer__nav a:hover {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.hours-summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.4rem 1rem;
  margin-bottom: var(--space-md);
  font-size: var(--step--1);
}

.hours-summary dt { letter-spacing: 0.04em; }
.hours-summary dd { margin: 0; text-align: right; font-variant-numeric: tabular-nums; }

.social {
  display: flex;
  gap: 0.5rem;
  margin-top: var(--space-md);
  list-style: none;
  padding: 0;
}

.social__link {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  color: var(--on-dark-muted);
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease),
              background-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.social__link svg { width: 1.4rem; height: 1.4rem; }

.social__link:hover {
  color: var(--white);
  background: var(--burgundy);
  border-color: var(--burgundy);
  transform: translateY(-2px);
}

.site-footer__cities {
  padding-block: var(--space-md) var(--space-lg);
  border-top: 1px solid var(--line-light);
}

.site-footer__cities ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem 1.5rem;
  list-style: none;
  padding: 0;
  font-size: var(--step--1);
}

.site-footer__cities a {
  display: inline-block;
  padding: 0.35rem 0;
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

.site-footer__cities a:hover {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-footer__cities-all { font-weight: 600; color: var(--white); }

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem var(--space-md);
  justify-content: space-between;
  padding-block: var(--space-sm) var(--space-lg);
  border-top: 1px solid var(--line-light);
  font-size: var(--step--1);
}

.site-footer__legal a {
  text-decoration-color: rgba(254, 254, 254, 0.4);
  text-underline-offset: 4px;
  transition: color 0.2s var(--ease);
}

.site-footer__legal a:hover { color: var(--white); }

/* 17. Booking dock ======================================================== */

.booking-dock {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: none;
  background: var(--navy-deep);
  border-top: 1px solid var(--line-light);
  box-shadow: 0 -14px 34px -26px rgba(2, 24, 55, 0.9);
  transition: transform 0.35s var(--ease);
}

.booking-dock__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  padding: 0.7rem var(--gutter) calc(0.7rem + env(safe-area-inset-bottom, 0px));
}

.booking-dock__label {
  font-family: var(--font-display);
  font-size: var(--step-0);
  color: var(--white);
}

.js .booking-dock[data-tucked] { transform: translateY(115%); }

@media (max-width: 71.999em) {
  .booking-dock { display: block; }
  body { padding-bottom: 4.5rem; }
}

@media (max-width: 24em) {
  .booking-dock__label { display: none; }
  .booking-dock__inner { justify-content: center; }
  .booking-dock .btn { width: 100%; }
}

/* 18. Motion & reduced motion ============================================= */

.js [data-reveal] {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  .js [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }

  .btn:hover,
  .card:hover,
  .social__link:hover { transform: none; }
}

@media print {
  .announce,
  .nav-toggle,
  .mobile-nav,
  .booking-dock,
  .skip-link { display: none !important; }

  body { background: #fff; color: #000; }
}
