/*
 * Shared client-site chrome for all public tenant sites.
 *
 * Holds the structural styling every client site needs: header, info bar, nav,
 * gallery tiles, lightbox, business hours, and the shared gallery/services/
 * staff/contact page components. Tenant CSS files only need to define their
 * --brand-* variables and any bespoke homepage sections.
 *
 * Loaded in client_base.html BEFORE the per-tenant stylesheet, so tenant CSS
 * always wins on conflicts. Brand colors flow through var(--brand-*) tokens
 * each tenant defines on .client-page.
 */

.gallery-tile {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 8px;
  border: 0;
  background: #e7e5e4;
  color: inherit;
  cursor: pointer;
  padding: 0;
  text-align: left;
  box-shadow: 0 18px 44px rgba(23, 16, 23, 0.08);
  transform: translateY(0);
  transition:
    box-shadow 220ms ease,
    transform 220ms ease;
}

.gallery-tile::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, rgba(23, 16, 23, 0), rgba(23, 16, 23, 0.78));
  content: "";
  opacity: 0.92;
  transition: opacity 240ms ease;
}

.gallery-tile img {
  transition:
    filter 240ms ease,
    transform 320ms ease;
  will-change: transform;
}

.gallery-tile:hover,
.gallery-tile:focus-visible {
  box-shadow: 0 24px 58px rgba(23, 16, 23, 0.16);
  transform: translateY(-2px);
}

.gallery-tile:hover img,
.gallery-tile:focus-visible img {
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.035);
}

.gallery-tile:hover::after,
.gallery-tile:focus-visible::after {
  opacity: 1;
}

.gallery-tile:focus-visible {
  outline: 3px solid var(--brand-accent, #be123c);
  outline-offset: 3px;
}

.gallery-tile figcaption,
.gallery-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  display: grid;
  gap: 7px;
  color: #fffaf3;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.36);
  transform: translateY(0);
  transition: transform 220ms ease;
}

.gallery-tile:hover .gallery-caption,
.gallery-tile:focus-visible .gallery-caption {
  transform: translateY(-2px);
}

.gallery-caption::before {
  display: block;
  width: 38px;
  height: 1px;
  background: rgba(255, 250, 243, 0.68);
  content: "";
}

.gallery-caption__category {
  color: rgba(255, 250, 243, 0.72);
  font-family: Montserrat, Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  line-height: 1;
  text-transform: uppercase;
}

.gallery-caption__title {
  max-width: 92%;
  font-family: Montserrat, Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(0.92rem, 1.5vw, 1.08rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.25;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(11, 10, 9, 0.9);
  padding: 22px;
}

.lightbox.is-open {
  display: flex;
}

.lightbox__panel {
  position: relative;
  display: grid;
  gap: 14px;
  width: min(1100px, 100%);
}

.lightbox__image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: min(78vh, 760px);
}

.lightbox__image {
  max-width: 100%;
  max-height: 78vh;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
}

.lightbox__caption {
  min-height: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
  font-weight: 700;
  text-align: center;
}

.lightbox__button {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  transition: background 160ms ease, transform 160ms ease;
}

.lightbox__button:hover,
.lightbox__button:focus-visible {
  background: rgba(255, 255, 255, 0.2);
  outline: none;
  transform: scale(1.04);
}

.lightbox__close {
  top: 10px;
  right: 10px;
}

.lightbox__prev,
.lightbox__next {
  top: 50%;
  transform: translateY(-50%);
}

.lightbox__prev:hover,
.lightbox__prev:focus-visible,
.lightbox__next:hover,
.lightbox__next:focus-visible {
  transform: translateY(-50%) scale(1.04);
}

.lightbox__prev {
  left: 10px;
}

.lightbox__next {
  right: 10px;
}

.contact-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-radius: 8px;
  background: #fff;
  padding: 28px;
  box-shadow: 0 18px 44px rgba(68, 64, 60, 0.08);
}

.client-band-contact .contact-band {
  background: #17211c;
  color: #fffaf3;
  box-shadow: 0 24px 64px rgba(23, 33, 28, 0.18);
}

.client-band-contact .section-kicker {
  color: #d7a099;
}

.client-band-contact .button-brand {
  background: #fffaf3;
  color: #17211c;
}

.home-visit-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.7fr);
  gap: 20px;
  margin-bottom: 20px;
}

.home-visit-intro,
.home-hours-card {
  border-radius: 8px;
  background: rgba(255, 250, 243, 0.76);
  padding: 26px;
  box-shadow: 0 22px 54px rgba(23, 33, 28, 0.08);
}

.home-visit-intro h2 {
  max-width: 620px;
  margin-top: 12px;
  font-size: clamp(2.1rem, 4vw, 4.2rem);
  line-height: 0.98;
  font-weight: 750;
  letter-spacing: 0;
}

.home-visit-intro address {
  margin-top: 22px;
  color: #57534e;
  font-style: normal;
  font-weight: 700;
  line-height: 1.75;
}

.home-hours-list {
  margin-top: 18px;
}

.home-hours-list div {
  border-bottom-color: rgba(23, 23, 23, 0.12);
}

.client-page {
  min-height: 100vh;
}

.client-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(23, 23, 23, 0.16);
  background: #fff;
}

.client-info-bar {
  border-bottom: 1px solid rgba(23, 23, 23, 0.08);
  background: color-mix(in srgb, var(--brand-primary, #111827) 92%, white);
  color: #fffaf3;
}

.client-info-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 14px;
  min-height: 34px;
  font-family: Montserrat, Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.66rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-align: center;
  text-transform: uppercase;
}

.client-info-bar-inner > * + *:not(.client-info-phone-group)::before {
  content: "|";
  margin-right: 14px;
  opacity: 0.5;
}

.client-info-bar a {
  color: inherit;
  text-decoration: none;
}

.client-info-bar a:not(.client-info-phone):hover,
.client-info-bar a:not(.client-info-phone):focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.client-info-phone-group {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.client-info-separator {
  opacity: 0.5;
}

.client-info-phone {
  display: inline-flex;
  min-height: 23px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 250, 243, 0.34);
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.1);
  padding: 0 10px;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.client-info-phone:hover,
.client-info-phone:focus-visible {
  border-color: rgba(255, 250, 243, 0.62);
  background: rgba(255, 250, 243, 0.18);
  text-decoration: none;
  transform: translateY(-1px);
}

.client-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 72px;
}

.site-shell.client-nav {
  width: min(1500px, calc(100% - 48px));
}

.client-wordmark {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  color: var(--brand-primary, #111827);
  font-family: Montserrat, Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
}

.client-wordmark-logo {
  display: inline-flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  color: #1a1a1a;
  line-height: 1;
  text-transform: none;
}

.client-wordmark-logo-main {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 0.86;
}

.client-wordmark-logo-sub {
  margin-top: 4px;
  font-family: "Courier New", Courier, monospace;
  font-size: 0.47rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  line-height: 1;
}

.client-menu-toggle {
  display: none;
}

.client-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  min-width: 0;
  gap: clamp(10px, 1.6vw, 26px);
  color: #4a4946;
  font-family: Montserrat, Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.client-links a {
  border-bottom: 3px solid transparent;
  padding: 26px 0 22px;
  text-decoration: none;
  text-decoration-thickness: 0;
  text-underline-offset: 0;
  transition:
    border-color 180ms ease,
    color 180ms ease,
    opacity 180ms ease,
    transform 180ms ease;
  white-space: nowrap;
}

.client-links a:hover,
.client-links a:focus-visible,
.client-links a.is-active {
  border-bottom-color: var(--brand-primary, #111827);
  color: #111;
  text-decoration: none;
}

.client-links a:hover,
.client-links a:focus-visible {
  transform: translateY(-1px);
}

.client-instagram-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.client-instagram-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
  transition: transform 180ms ease;
}

.client-instagram-link:hover svg,
.client-instagram-link:focus-visible svg {
  transform: scale(1.08);
}

.client-kicker {
  color: var(--brand-accent, #be123c);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.velvet-hero {
  display: flex;
  align-items: center;
  min-height: calc(100vh - 72px);
  background-color: var(--brand-primary, #111827);
  color: #fff;
}

.parallax-bg {
  background-image:
    linear-gradient(rgba(12, 17, 14, 0.34), rgba(12, 17, 14, 0.5)),
    var(--parallax-bg-image);
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

.velvet-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 72px);
  padding-top: 72px;
  padding-bottom: 72px;
  text-align: center;
}

.velvet-hero h1,
.client-page-heading h1 {
  max-width: 820px;
  margin-top: 16px;
  font-size: clamp(3.2rem, 8vw, 7.6rem);
  line-height: 0.92;
  font-weight: 750;
  letter-spacing: 0;
}

.velvet-hero .velvet-hero-logo-heading {
  display: flex;
  justify-content: center;
  max-width: min(520px, 82vw);
  margin-top: 20px;
  line-height: 0;
}

.velvet-hero-logo-heading img {
  display: block;
  width: min(100%, 500px);
  height: auto;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.26));
}

.velvet-hero-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: min(42vw, 390px);
  aspect-ratio: 1;
  border: 10px solid rgba(42, 29, 46, 0.08);
  border-radius: 999px;
  background: #fff7f1;
  color: #2a1d2e;
  text-align: center;
  box-shadow: 0 28px 80px rgba(42, 29, 46, 0.18);
}

.velvet-hero-logo span {
  max-width: 78%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 5.6vw, 5.8rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.86;
}

.velvet-hero-logo small {
  margin-top: 16px;
  font-family: "Courier New", Courier, monospace;
  font-size: clamp(0.74rem, 1.35vw, 1.18rem);
  font-weight: 400;
  letter-spacing: 0.26em;
  line-height: 1;
  text-transform: lowercase;
}

.velvet-hero p:not(.client-kicker),
.client-page-heading p:not(.client-kicker) {
  max-width: 650px;
  margin-top: 22px;
  color: color-mix(in srgb, var(--brand-primary, #111827) 70%, white);
  font-size: 1.08rem;
  line-height: 1.8;
}

.velvet-hero p:not(.client-kicker) {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.28);
}

.velvet-hero-kicker {
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.28);
}

.velvet-hero .button-secondary {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.86);
}

.client-action-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.client-section {
  padding-top: 64px;
  padding-bottom: 64px;
}

.client-band {
  position: relative;
  border-top: 1px solid rgba(23, 23, 23, 0.08);
}

.client-band-intro {
  background: #f0dfd2;
}

.client-band-story {
  background: #fffaf3;
}

.client-band-gallery {
  background: #17211c;
  color: #f7f2ea;
}

.client-band-staff {
  background: #f7e9e2;
}

.client-band-contact {
  background: #dce8e8;
}

.section-title-row h2,
.staff-story h2 {
  margin-top: 12px;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1;
  font-weight: 750;
  letter-spacing: 0;
}

.staff-story-copy p {
  color: color-mix(in srgb, var(--brand-primary, #111827) 72%, white);
  font-size: 1rem;
  line-height: 1.85;
}

.velvet-story {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}

.velvet-story h2 {
  margin-top: 12px;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 0.96;
  font-weight: 750;
  letter-spacing: 0;
}

.velvet-award {
  display: grid;
  gap: 6px;
  max-width: 360px;
  margin-top: 28px;
  border-top: 1px solid rgba(181, 102, 92, 0.42);
  padding-top: 16px;
}

.velvet-award span:first-child {
  color: var(--brand-accent, #b5665c);
  font-family: Montserrat, Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1.35;
  text-transform: uppercase;
}

.velvet-award span:last-child {
  color: #57534e;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  font-style: italic;
  line-height: 1.15;
}

.velvet-story-copy {
  display: grid;
  gap: 18px;
  border-left: 1px solid rgba(23, 23, 23, 0.12);
  padding-left: 34px;
}

.velvet-story-copy p {
  color: #57534e;
  font-size: 1rem;
  line-height: 1.86;
}

.service-statement {
  display: grid;
  justify-items: center;
  gap: 18px;
  max-width: 920px;
  padding-top: 72px;
  padding-bottom: 72px;
  text-align: center;
}

.service-statement h2 {
  max-width: 820px;
  font-size: clamp(2.1rem, 5vw, 4.4rem);
  line-height: 0.98;
  font-weight: 750;
  letter-spacing: 0;
}

.service-statement p:not(.client-kicker) {
  max-width: 680px;
  color: #57534e;
  font-size: 1rem;
  line-height: 1.8;
}

.section-title-row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  margin-bottom: 22px;
}

.section-action-link {
  display: inline-flex;
  flex: 0 0 auto;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid color-mix(in srgb, var(--brand-accent, #be123c) 36%, transparent);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--brand-primary, #111827);
  padding: 0 16px;
  font-size: 0.88rem;
  font-weight: 850;
  white-space: nowrap;
  box-shadow: 0 12px 28px rgba(68, 64, 60, 0.08);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.section-action-link:hover,
.section-action-link:focus-visible {
  background: #fff;
  box-shadow: 0 16px 34px rgba(68, 64, 60, 0.14);
  transform: translateY(-1px);
}

.client-band-gallery .client-kicker,
.client-band-gallery .section-action-link {
  color: #d7a099;
}

.client-band-gallery .section-action-link {
  border-color: rgba(215, 160, 153, 0.42);
  background: rgba(255, 250, 243, 0.1);
  color: #fffaf3;
  box-shadow: none;
}

.client-band-gallery .section-action-link:hover,
.client-band-gallery .section-action-link:focus-visible {
  background: rgba(255, 250, 243, 0.18);
}

.client-band-gallery .section-title-row h2 {
  color: #fffaf3;
}

.velvet-gallery-preview,
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.gallery-masonry .gallery-tile {
  aspect-ratio: 1 / 1;
}

.gallery-filter-bar {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
}

.gallery-filter-select-form {
  display: none;
}

.gallery-filter-select {
  min-height: 50px;
  border: 1px solid rgba(23, 16, 23, 0.16);
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.88);
  color: var(--brand-primary, #171017);
  padding: 0 44px 0 18px;
  font-family: Montserrat, Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
  box-shadow: 0 14px 32px rgba(68, 64, 60, 0.08);
}

.gallery-filter-submit {
  display: none;
}

.gallery-filter-row {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.gallery-filter-row > span {
  padding-top: 8px;
  color: rgba(23, 16, 23, 0.62);
  font-family: Montserrat, Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.gallery-filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.gallery-filter-chips a {
  border: 1px solid rgba(23, 16, 23, 0.14);
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.74);
  color: var(--brand-primary, #171017);
  padding: 8px 12px;
  font-family: Montserrat, Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.gallery-filter-chips a:hover,
.gallery-filter-chips a:focus-visible,
.gallery-filter-chips a.is-active {
  border-color: var(--brand-primary, #171017);
  background: var(--brand-primary, #171017);
  color: #fffaf3;
}

.gallery-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.gallery-pagination a,
.gallery-pagination span {
  display: inline-grid;
  min-width: 42px;
  min-height: 38px;
  place-items: center;
  border: 1px solid rgba(23, 16, 23, 0.14);
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.74);
  color: var(--brand-primary, #171017);
  padding: 0 13px;
  font-family: Montserrat, Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.gallery-pagination a:hover,
.gallery-pagination a:focus-visible,
.gallery-pagination .is-active {
  border-color: var(--brand-primary, #171017);
  background: var(--brand-primary, #171017);
  color: #fffaf3;
}

.gallery-pagination span[aria-disabled="true"] {
  opacity: 0.42;
}

.gallery-pagination__pages {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.staff-preview-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.staff-mini-card {
  grid-column: span 2;
  border-radius: 8px;
  background: rgba(255, 252, 247, 0.86);
  padding: 14px;
  box-shadow: 0 22px 54px rgba(92, 60, 47, 0.1);
}

.staff-preview-grid .staff-mini-card:nth-child(4):nth-last-child(2) {
  grid-column: 2 / span 2;
}

.staff-mini-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
}

.staff-mini-card h3 {
  margin-top: 14px;
  font-size: 1.1rem;
  font-weight: 800;
}

.staff-mini-card p {
  margin-top: 4px;
  color: #6f625a;
  font-size: 0.9rem;
}

.client-page-heading {
  padding-top: 74px;
  padding-bottom: 28px;
}

.staff-story {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 0.8fr);
  gap: 36px;
  align-items: start;
  border-block: 1px solid rgba(23, 23, 23, 0.12);
  padding-top: 38px;
  padding-bottom: 38px;
}

.staff-story-copy {
  display: grid;
  gap: 16px;
}

.staff-list {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.staff-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 24px;
  border: 1px solid rgba(23, 23, 23, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  padding: 18px;
  box-shadow: 0 18px 44px rgba(92, 60, 47, 0.06);
}

.staff-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
}

.staff-card h2 {
  margin-top: 8px;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
  font-weight: 750;
}

.staff-card h3 {
  margin-top: 10px;
  color: color-mix(in srgb, var(--brand-primary, #111827) 72%, white);
  font-size: 1rem;
  font-weight: 800;
}

.staff-card p:last-child {
  margin-top: 16px;
  color: #57534e;
  line-height: 1.75;
}

.service-section-list {
  display: grid;
  gap: 34px;
}

.service-menu-section {
  border-top: 1px solid rgba(23, 23, 23, 0.14);
  padding-top: 24px;
}

.service-menu-section h2 {
  margin-bottom: 16px;
  color: var(--brand-accent, #be123c);
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-menu-items {
  display: grid;
  gap: 10px;
}

.service-menu-item {

  background: rgba(255, 255, 255, 0.72);

}

.service-menu-item h3 {
  font-size: 1.08rem;
  font-weight: 850;
}

.service-menu-item p {
  max-width: 760px;
  margin-top: 6px;
  color: #57534e;
  font-size: 0.94rem;
  line-height: 1.65;
}

.service-menu-meta {

}

.service-menu-meta strong {
  color: var(--brand-primary, #111827);
}

.service-book-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;

  border: 1px solid color-mix(in srgb, var(--brand-primary, #111827) 18%, transparent);
  border-radius: 999px;
  background: var(--brand-primary, #111827);
  color: white;
  padding: 0 18px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.service-book-link:hover,
.service-book-link:focus-visible {
  border-color: var(--brand-accent, #be123c);
  background: var(--brand-accent, #be123c);
  color: white;
  text-decoration: none;
  transform: translateY(-1px);
}

.service-note {
  margin-top: 24px;
  color: #78716c;
  font-size: 0.92rem;
}

.contact-page-heading {
  padding-bottom: 0;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.contact-page-card {
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 310px;
  border: 1px solid rgba(23, 23, 23, 0.1);
  border-radius: 8px;
  background: rgba(255, 252, 247, 0.78);
  padding: 26px;
  box-shadow: 0 22px 54px rgba(92, 60, 47, 0.09);
}

.contact-page-card h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  font-weight: 750;
  letter-spacing: 0;
}

.contact-page-card p:not(.client-kicker),
.contact-method-list address,
.contact-method-list a {
  color: #57534e;
  line-height: 1.7;
}

.contact-page-card .button-brand {
  justify-self: start;
  margin-top: 8px;
}

.contact-method-list {
  display: grid;
  gap: 12px;
}

.contact-method-list a {
  border-bottom: 1px solid rgba(23, 23, 23, 0.12);
  padding-bottom: 12px;
  font-weight: 700;
}

.contact-method-list address {
  border-bottom: 1px solid rgba(23, 23, 23, 0.12);
  font-style: normal;
  padding-bottom: 12px;
}

.business-hours-list {
  display: grid;
  gap: 9px;
}

.business-hours-list div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid rgba(23, 23, 23, 0.1);
  padding-bottom: 9px;
}

.business-hours-list dt {
  flex: 0 0 auto;
  white-space: nowrap;
  color: #57534e;
  font-weight: 800;
}

.business-hours-list dd {
  min-width: 0;
  color: #57534e;
  text-align: right;
}

@media (max-width: 1180px) {
  .client-nav {
    gap: 22px;
  }

  .client-wordmark {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
  }

  .client-links {
    gap: 8px 14px;
    font-size: 0.68rem;
    letter-spacing: 0.15em;
  }
}

@media (max-width: 960px) {
  .client-info-bar-inner {
    justify-content: center;
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    text-align: center;
  }

  .client-nav {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    min-height: auto;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .client-menu-toggle {
    position: relative;
    z-index: 45;
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid rgba(23, 23, 23, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.56);
    color: var(--brand-primary, #111827);
    transition: background 180ms ease, border-color 180ms ease;
  }

  .client-header.is-menu-open .client-menu-toggle {
    border-color: rgba(23, 23, 23, 0.2);
    background: rgba(255, 255, 255, 0.86);
  }

  .client-menu-toggle span {
    display: block;
    width: 17px;
    height: 1px;
    background: currentColor;
    transform-origin: center;
    transition: transform 160ms ease, opacity 160ms ease;
  }

  .client-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .client-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .client-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .client-links {
    position: fixed;
    inset: 0;
    z-index: 35;
    display: flex;
    width: 100vw;
    min-height: 100vh;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 18px;
    background:
      linear-gradient(rgba(250, 250, 246, 0.94), rgba(250, 250, 246, 0.98)),
      var(--brand-bg, #fafaf6);
    color: var(--brand-primary, #111827);
    font-size: clamp(1.05rem, 4.6vw, 2.35rem);
    font-weight: 300;
    letter-spacing: 0.28em;
    opacity: 0;
    padding: 92px 24px 48px;
    pointer-events: none;
    transform: translateY(-14px) scale(0.985);
    transition:
      opacity 240ms ease,
      transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0s linear 260ms;
    visibility: hidden;
  }

  .client-header.is-menu-open .client-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    transition:
      opacity 220ms ease,
      transform 280ms cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0s;
    visibility: visible;
  }

  .client-links a {
    width: auto;
    border-bottom: 2px solid transparent;
    opacity: 0;
    padding: 8px 0;
    text-align: center;
    transform: translateY(12px);
    transition:
      border-color 160ms ease,
      color 160ms ease,
      opacity 220ms ease,
      transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .client-instagram-link svg {
    width: 34px;
    height: 34px;
    stroke-width: 1.25;
  }

  .client-header.is-menu-open .client-links a {
    opacity: 1;
    transform: translateY(0);
  }

  .client-header.is-menu-open .client-links a:nth-child(1) {
    transition-delay: 45ms;
  }

  .client-header.is-menu-open .client-links a:nth-child(2) {
    transition-delay: 70ms;
  }

  .client-header.is-menu-open .client-links a:nth-child(3) {
    transition-delay: 95ms;
  }

  .client-header.is-menu-open .client-links a:nth-child(4) {
    transition-delay: 120ms;
  }

  .client-header.is-menu-open .client-links a:nth-child(5) {
    transition-delay: 145ms;
  }

  .client-header.is-menu-open .client-links a:nth-child(6) {
    transition-delay: 170ms;
  }

  .client-header.is-menu-open .client-links a:nth-child(7) {
    transition-delay: 195ms;
  }
}

@media (max-width: 720px) {
  .contact-band {
    align-items: flex-start;
    flex-direction: column;
  }
  .site-shell.client-nav {
    width: min(1500px, calc(100% - 32px));
  }

  .client-info-bar-inner {
    align-items: center;
    flex-direction: column;
    gap: 2px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .client-info-bar-inner > * + *:not(.client-info-phone-group)::before {
    content: none;
    margin-right: 0;
  }

  .client-info-phone-group {
    gap: 0;
  }

  .client-info-separator {
    display: none;
  }

  .section-title-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .gallery-filter-bar {
    gap: 0;
    margin-bottom: 18px;
  }

  .gallery-filter-select-form {
    display: grid;
  }

  .gallery-filter-row {
    display: none;
  }

  .gallery-filter-select {
    width: 100%;
  }

  .velvet-hero,
  .velvet-story,
  .home-visit-panel,
  .velvet-gallery-preview,
  .gallery-masonry,
  .contact-page-grid,
  .staff-preview-grid,
  .staff-story,
  .staff-card {
    grid-template-columns: 1fr;
  }

  .velvet-story-copy {
    border-left: 0;
    border-top: 1px solid rgba(23, 23, 23, 0.12);
    padding-top: 24px;
    padding-left: 0;
  }

  .staff-mini-card,
  .staff-preview-grid .staff-mini-card:nth-child(4):nth-last-child(2) {
    grid-column: auto;
  }

  .velvet-gallery-preview,
  .gallery-masonry,
  .staff-preview-grid {
    justify-items: center;
  }

  .velvet-gallery-preview .gallery-tile,
  .gallery-masonry .gallery-tile,
  .staff-mini-card {
    width: min(100%, 360px);
  }

  .staff-preview-grid {
    max-width: 390px;
    margin-inline: auto;
  }

  .velvet-hero {
    min-height: 76vh;
  }

  .parallax-bg {
    background-attachment: scroll;
  }

  .velvet-hero-inner {
    min-height: 76vh;
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .velvet-hero h1,
  .client-page-heading h1 {
    font-size: clamp(3rem, 16vw, 4.8rem);
  }

  .velvet-hero .velvet-hero-logo-heading {
    max-width: clamp(190px, 62vw, 270px);
    margin-top: 0;
  }

  .velvet-hero-logo-heading img {
    width: 100%;
  }

  .velvet-hero-logo {
    width: 100%;
  }

  .staff-card img {
    max-width: 260px;
  }

  .service-menu-item {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 16px;
    padding: 16px;
  }

  .service-menu-copy {
    grid-column: 1 / -1;
  }

  .service-menu-item h3 {
    overflow-wrap: anywhere;
    font-size: 1.18rem;
    line-height: 1.22;
  }

  .service-menu-item p {
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .service-menu-meta {

  }

  .service-book-link {
    grid-column: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gallery-tile,
  .gallery-tile::after,
  .gallery-tile img,
  .gallery-caption {
    transition: none;
  }

  .gallery-tile:hover,
  .gallery-tile:focus-visible,
  .gallery-tile:hover img,
  .gallery-tile:focus-visible img,
  .gallery-tile:hover .gallery-caption,
  .gallery-tile:focus-visible .gallery-caption {
    transform: none;
  }
}
