:root {
  --paper: #faf8f6;
  --surface: #ffffff;
  --surface-soft: #f4efe7;
  --border: #e9e4dc;
  --ink: #161718;
  --muted: #756f68;
  --muted-blue: #64738d;
  --accent: #061948;
  --accent-hover: #0b2564;
  --accent-soft: #e9edf4;
  --star: #f5b94a;
  --success: #28a76a;
  --shadow: 0 18px 48px rgba(38, 30, 18, 0.08);
  --radius-lg: 24px;
  --radius-md: 16px;
  --max: 86rem;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.modal-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

.serif {
  font-family: Georgia, "Times New Roman", serif;
}

.page-shell {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.page-shell > main {
  flex: 1 0 auto;
}

.page-shell > .footer {
  flex-shrink: 0;
}

.container {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

.top-header {
  position: relative;
  z-index: 20;
  padding: 2rem 0 1.25rem;
  background: var(--paper);
}

.top-header__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 2rem;
}

.brand-block {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  align-items: center;
  gap: 1rem;
}

.brand-logo {
  width: 76px;
  height: 76px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fffaf3;
  box-shadow: 0 12px 34px rgba(38, 30, 18, 0.06);
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.8vw, 3.25rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.rating-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.5rem;
  color: #6f6b7e;
  font-weight: 800;
}

.stars {
  display: inline-flex;
  gap: 0.08rem;
  color: var(--star);
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 2.5rem);
  font-weight: 800;
  color: #3f3b35;
}

.nav-links a,
.nav-links button {
  border: 0;
  background: transparent;
  color: inherit;
  font-weight: 800;
  padding: 0.75rem 0;
}

.sticky-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
  background: rgba(250, 248, 246, 0.88);
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 24px rgba(38, 30, 18, 0.06);
  transform: translateY(-110%);
  transition: transform 180ms ease;
}

.sticky-header.is-visible {
  transform: translateY(0);
}

.sticky-header__inner {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
}

.sticky-brand {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 0.7rem;
  font-weight: 900;
}

.sticky-brand img {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 9px;
  background: #fffaf3;
  object-fit: contain;
}

.sticky-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 900;
}

.sticky-header .nav-links {
  margin-left: auto;
}

.hero-gallery {
  overflow: hidden;
  margin-top: 2rem;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: #fff6ee;
  box-shadow: var(--shadow);
}

.hero-gallery__grid {
  display: grid;
  height: clamp(18rem, 34vw, 29rem);
  grid-template-columns: 2.55fr 0.85fr 0.85fr;
  gap: 1px;
  background: var(--border);
}

.hero-gallery__cell {
  overflow: hidden;
  background: #fff6ee;
}

.hero-gallery__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-gallery__cell:first-child img {
  object-fit: contain;
}

.section {
  margin-top: clamp(3.5rem, 7vw, 6rem);
  scroll-margin-top: 6rem;
}

.section--standalone-services {
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.section-title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 2.85rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.section-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 2.75rem;
  font-weight: 900;
  color: #55514b;
  white-space: nowrap;
}

.section-copy {
  max-width: 62rem;
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.section-copy a {
  color: #55514b;
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.search-row {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  gap: 0.6rem;
  max-width: 46rem;
  margin-bottom: 1rem;
  padding: 0.35rem 0;
  background: rgba(250, 248, 246, 0.94);
  backdrop-filter: blur(14px);
}

.filter-button,
.search-box {
  height: 3.25rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: 0 4px 14px rgba(38, 30, 18, 0.05);
}

.filter-button {
  width: 3.25rem;
  flex: 0 0 auto;
  color: var(--ink);
  font-size: 1.25rem;
}

.search-box {
  position: relative;
  flex: 1;
}

.search-box input {
  width: 100%;
  height: 100%;
  border: 0;
  outline: 0;
  border-radius: inherit;
  background: transparent;
  padding: 0 1rem 0 3rem;
  color: var(--ink);
  font-weight: 700;
}

.search-box::before {
  content: "⌕";
  position: absolute;
  left: 1rem;
  top: 50%;
  translate: 0 -50%;
  color: var(--muted-blue);
  font-size: 1.35rem;
}

.filter-panel {
  display: none;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1rem;
}

.filter-panel.is-open {
  display: flex;
}

.filter-chip {
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  padding: 0.55rem 0.85rem;
  color: #4d4841;
  font-weight: 800;
}

.filter-chip.is-active {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent);
}

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

.service-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 11rem;
  min-height: 16.25rem;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: 0 12px 34px rgba(38, 30, 18, 0.05);
}

.service-card__body {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 1.5rem;
}

.service-card h3 {
  min-height: 3.1rem;
  margin: 0 0 0.7rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  line-height: 1;
}

.service-card p {
  display: -webkit-box;
  min-height: 4.8rem;
  margin: 0;
  overflow: hidden;
  color: var(--muted-blue);
  font-weight: 650;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.details-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  align-self: flex-start;
  margin-top: 1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface-soft);
  padding: 0.65rem 1rem;
  color: #3f3b35;
  font-weight: 900;
}

.thumb-row {
  display: flex;
  gap: 0.55rem;
  margin-top: auto;
  padding-top: 1.15rem;
}

.thumb-row img,
.thumb-more {
  width: 3.3rem;
  height: 3.3rem;
  border-radius: 13px;
  object-fit: cover;
}

.thumb-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-soft);
  font-weight: 900;
}

.service-card__price {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-left: 1px solid var(--border);
  padding: 1.1rem;
}

.from-label {
  color: var(--muted-blue);
  font-weight: 900;
}

.price-value {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1;
}

.duration {
  display: grid;
  gap: 0.2rem;
  margin-top: 0.5rem;
  color: var(--muted-blue);
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
}

.book-button,
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.25rem;
  border: 0;
  border-radius: 14px;
  background: #55514b;
  color: #fff;
  padding: 0 1.25rem;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(38, 30, 18, 0.12);
}

.primary-button {
  background: var(--accent);
}

.primary-button:hover {
  background: var(--accent-hover);
}

.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface-soft);
  color: #3f3b35;
  padding: 0 1.15rem;
  font-weight: 800;
}

.book-button {
  margin-top: 1.3rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1fr;
  grid-auto-rows: 11.5rem;
  gap: 1rem;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: var(--surface-soft);
  box-shadow: 0 12px 34px rgba(38, 30, 18, 0.05);
}

.gallery-card__button {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: zoom-in;
  padding: 0;
  text-align: left;
}

.gallery-card:first-child {
  grid-row: span 2;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease;
}

.gallery-card:hover img,
.gallery-card:focus-within img {
  transform: scale(1.035);
}

.gallery-card span {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.9rem;
  color: #fff;
  font-weight: 900;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.42);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 3vw, 2rem);
  background: rgba(18, 17, 16, 0.88);
}

.lightbox[hidden] {
  display: none;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: transparent;
  cursor: zoom-out;
}

.lightbox__dialog {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(78rem, 100%);
  max-height: 92vh;
  margin: 0;
  place-items: center;
}

.lightbox__dialog img {
  display: block;
  max-width: 100%;
  max-height: min(78vh, 52rem);
  border-radius: 18px;
  background: #171411;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
  object-fit: contain;
}

.lightbox__dialog figcaption {
  display: flex;
  width: min(44rem, 100%);
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.8rem;
  color: #fff;
  font-weight: 800;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
}

.lightbox__dialog figcaption small {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
  white-space: nowrap;
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  z-index: 2;
  display: inline-grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
  font-size: 1.4rem;
  font-weight: 900;
}

.lightbox__close:hover,
.lightbox__nav:hover,
.lightbox__close:focus-visible,
.lightbox__nav:focus-visible {
  background: rgba(255, 255, 255, 0.28);
}

.lightbox__close {
  top: -0.25rem;
  right: -0.25rem;
}

.lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
}

.lightbox__nav--prev {
  left: -1rem;
}

.lightbox__nav--next {
  right: -1rem;
}

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

.info-card,
.review-card,
.hours-card,
.detail-card,
.price-widget {
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: 0 12px 34px rgba(38, 30, 18, 0.05);
}

.info-card,
.review-card,
.hours-card {
  padding: 1.5rem;
}

.info-card h3,
.review-card h3,
.hours-card h3 {
  margin: 0 0 1rem;
  font-size: 1.1rem;
}

.review-layout {
  display: grid;
  grid-template-columns: minmax(16rem, 0.72fr) minmax(0, 1.55fr);
  align-items: start;
  gap: 1rem;
}

.review-summary {
  position: sticky;
  top: 5rem;
  display: flex;
  min-height: 26rem;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
}

.review-summary .stars {
  color: var(--star);
  font-size: 1.1rem;
}

.review-summary__score {
  display: grid;
  gap: 0.35rem;
}

.review-summary__score strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.2rem;
  line-height: 1;
}

.review-summary__score span {
  color: var(--muted);
}

.rating-table {
  width: 100%;
  margin-top: 1.4rem;
  border-collapse: collapse;
}

.rating-table th,
.rating-table td {
  padding: 0.45rem 0;
  font-size: 0.92rem;
}

.rating-table th {
  width: 4.7rem;
  color: #303344;
  font-weight: 650;
  text-align: left;
}

.rating-table td:last-child {
  width: 2rem;
  color: var(--muted);
  text-align: right;
}

.rating-bar {
  display: block;
  overflow: hidden;
  height: 0.55rem;
  border-radius: 999px;
  background: var(--accent-soft);
}

.rating-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--star);
}

.section--price-list {
  margin-top: clamp(2rem, 4vw, 3.25rem);
}

.price-list-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.price-list-toolbar label {
  display: grid;
  width: min(100%, 22rem);
  gap: 0.45rem;
  color: #3f3b35;
  font-weight: 850;
}

.price-list-toolbar p {
  max-width: 34rem;
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.price-list-filter-button,
.price-list-print-button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  align-self: flex-end;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface-soft);
  color: #3f3b35;
  padding: 0 1rem;
  font-weight: 900;
  white-space: nowrap;
}

.price-list-filter-button:hover,
.price-list-print-button:hover {
  background: #efe9df;
}

.price-list-filters {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
  margin: 0 0 1rem;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface);
  padding: 1rem;
  box-shadow: 0 12px 34px rgba(38, 30, 18, 0.05);
}

.price-list-filters[hidden] {
  display: none;
}

.price-list-filters label {
  display: grid;
  gap: 0.45rem;
  color: #3f3b35;
  font-weight: 850;
}

.price-list-filters .secondary-button {
  align-self: end;
}

.price-list-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  border: 1px solid var(--border);
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
  background: var(--surface);
  padding: 1rem 1.2rem;
}

.price-list-meta strong {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.price-list-meta span {
  color: var(--muted);
  font-weight: 800;
}

.price-list-meta__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
}

.price-list-table-wrap {
  overflow: auto;
  border: 1px solid var(--border);
  border-radius: 0 0 18px 18px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(38, 30, 18, 0.05);
}

.price-list-table {
  width: 100%;
  min-width: 54rem;
  border-collapse: collapse;
}

.price-list-table th,
.price-list-table td {
  border-bottom: 1px solid var(--border);
  padding: 0.85rem 1rem;
  text-align: left;
  vertical-align: top;
}

.price-list-table th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: var(--paper);
  color: #3f3b35;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.price-list-table td {
  color: #303344;
}

.price-list-table th:first-child,
.price-list-table td:first-child {
  position: sticky;
  left: 0;
  min-width: 14rem;
  max-width: 16rem;
  background: #fff;
  box-shadow: 1px 0 0 var(--border), 10px 0 18px rgba(38, 30, 18, 0.04);
}

.price-list-table th:first-child {
  z-index: 2;
  background: var(--paper);
}

.price-list-table td:first-child {
  z-index: 1;
  font-weight: 650;
}

.price-list-table tr:last-child td {
  border-bottom: 0;
}

.price-list-table small {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 650;
}

.price-list-number {
  color: var(--accent);
  font-weight: 900;
  white-space: nowrap;
}

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

.review-item {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface);
  padding: 1.1rem;
  box-shadow: 0 10px 26px rgba(38, 30, 18, 0.04);
}

.review-item__rating {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: #303344;
  font-weight: 650;
}

.review-item h3 {
  margin: 0.45rem 0 0.55rem;
  font-size: 1.05rem;
}

.review-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.review-author {
  display: block;
  margin-top: 0.8rem;
  color: #303344;
  font-weight: 650;
}

.review-toggle {
  justify-self: start;
  margin-top: 0.15rem;
}

.hours-table {
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 16px;
  border-collapse: separate;
  border-spacing: 0;
}

.hours-table td {
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0.9rem;
  font-weight: 800;
}

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

.hours-table td:last-child {
  color: var(--muted);
  text-align: right;
}

.credential-list {
  display: grid;
  gap: 0.65rem;
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
}

.credential-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: #303344;
  line-height: 1.35;
}

.credential-icon {
  display: inline-grid;
  width: 2rem;
  height: 2rem;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
}

.credential-icon svg {
  width: 1.05rem;
  height: 1.05rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.footer {
  margin-top: 5rem;
  border-top: 1px solid var(--border);
  padding: 2.6rem 0 2.9rem;
  color: var(--muted);
}

.footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.95fr) minmax(0, 1.15fr);
  gap: 2rem;
}

.footer strong {
  display: block;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
}

.footer p {
  max-width: 25rem;
  margin: 0.55rem 0 0;
  line-height: 1.55;
}

.footer__links,
.footer__contact {
  display: grid;
  align-content: start;
  gap: 0.55rem;
}

.footer__links a,
.footer__contact a {
  color: #3f3b35;
  font-weight: 650;
}

.footer__links a:hover,
.footer__contact a:hover {
  color: var(--accent);
}

.footer__contact span {
  line-height: 1.45;
}

.footer__bottom {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  border-top: 1px solid var(--border);
  padding-top: 1.1rem;
  font-size: 0.9rem;
}

.bottom-nav {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 45;
  display: none;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
}

.bottom-nav a,
.bottom-nav button {
  display: flex;
  min-height: 4.7rem;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: var(--muted-blue);
  font-size: 0.85rem;
  font-weight: 900;
}

.service-detail-topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid var(--border);
  background: rgba(250, 248, 246, 0.94);
  backdrop-filter: blur(18px);
}

.service-detail-topbar__inner {
  display: flex;
  min-height: 2.75rem;
  align-items: center;
  gap: 0.75rem;
}

.back-button {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  font-weight: 900;
}

.detail-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 24.75rem;
  gap: 0 2.75rem;
  max-width: 70rem;
  padding-top: 2rem;
}

.detail-content {
  min-width: 0;
}

.detail-photos {
  display: flex;
  gap: 0.65rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
}

.detail-photos figure {
  position: relative;
  flex: 1;
  min-width: 11rem;
  height: 13.75rem;
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
  background: var(--surface-soft);
}

.detail-photos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-photos figcaption {
  position: absolute;
  right: 0.75rem;
  bottom: 0.7rem;
  left: 0.75rem;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 900;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.42);
}

.detail-title {
  margin: 1.6rem 0 0.65rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 5vw, 3.1rem);
  line-height: 0.98;
}

.detail-summary {
  max-width: 42rem;
  color: #303344;
  font-weight: 650;
  line-height: 1.55;
}

.price-widget {
  position: sticky;
  top: 4.75rem;
  padding: 1.4rem;
}

.eyebrow {
  margin: 0;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 1000;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price-widget h2 {
  margin: 0.5rem 0 1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1.1;
}

.typeahead {
  position: relative;
}

.typeahead input,
.form-control {
  width: 100%;
  min-height: 3rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--paper);
  padding: 0 0.9rem;
  color: var(--ink);
  font-weight: 750;
  outline: 0;
}

.typeahead input {
  padding-left: 2.4rem;
}

.typeahead::before {
  content: "⌕";
  position: absolute;
  left: 0.9rem;
  top: 1.5rem;
  translate: 0 -50%;
  color: var(--muted);
}

.suggestions {
  position: absolute;
  right: 0;
  left: 0;
  top: calc(100% + 0.35rem);
  z-index: 25;
  display: none;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow);
}

.suggestions.is-open {
  display: block;
}

.suggestions button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  border: 0;
  background: #fff;
  padding: 0.85rem 1rem;
  text-align: left;
}

.suggestions button:hover {
  background: var(--accent-soft);
}

.suggestion-note {
  padding: 0.85rem 1rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
  line-height: 1.45;
}

.choice-group {
  margin-top: 1rem;
}

.choice-group[hidden] {
  display: none;
}

.choice-label {
  margin: 0 0 0.45rem;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 1000;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.pill {
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  padding: 0.6rem 0.8rem;
  font-size: 0.82rem;
  font-weight: 900;
}

.pill.is-active {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.price-result {
  display: grid;
  gap: 1rem;
  margin-top: 1.2rem;
  border-top: 1px dashed var(--border);
  padding-top: 1.15rem;
}

.price-result > p {
  margin: 0;
  line-height: 1.35;
}

.price-result__row {
  display: grid;
  gap: 1rem;
  align-items: start;
}

.price-result__meta {
  display: grid;
  gap: 0.15rem;
}

.price-result__detail {
  color: #303344;
  font-size: 0.95rem;
  line-height: 1.35;
}

.price-result .primary-button {
  width: 100%;
}

.big-price {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 2.5rem;
  padding: 0;
  margin: 1.2rem 0 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 0.75rem;
  font-weight: 400;
  line-height: 1.55;
}

.check-list li::before {
  content: "✓";
  display: inline-grid;
  width: 1.25rem;
  height: 1.25rem;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 1000;
}

.detail-section {
  margin-top: 2.7rem;
}

.detail-section h2 {
  margin: 0 0 1.2rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
}

.menu-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  padding: 1.25rem;
}

.menu-group {
  border-top: 1px solid var(--border);
  padding: 1.15rem 0;
}

.menu-card .menu-group:first-child {
  border-top: 0;
  padding-top: 0;
}

.menu-group__head,
.menu-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
}

.menu-group__head h3 {
  margin: 0;
  font-size: 0.95rem;
}

.menu-rule {
  color: #8b8798;
  font-size: 0.8rem;
}

.menu-row {
  padding: 0.45rem 0;
}

.menu-row span:first-child {
  color: #303344;
}

.menu-dots {
  height: 1px;
  min-width: 2rem;
  flex: 1;
  border-bottom: 1px dotted #d8d1c5;
}

.free-price {
  color: var(--accent);
}

.staff-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.staff-chip {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  padding: 0.55rem 0.9rem 0.55rem 0.55rem;
}

.staff-chip img {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  object-fit: cover;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: flex-start;
  justify-content: center;
  overflow-y: auto;
  background: rgba(22, 23, 24, 0.42);
  padding: 1rem;
}

.modal-backdrop.is-open {
  display: flex;
}

.modal {
  width: min(46rem, 100%);
  margin: 2rem 0;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
}

.modal__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--border);
  padding: 1.4rem;
}

.modal__head h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
}

.modal__close {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 1.6rem;
}

.enquiry-form {
  display: grid;
  gap: 1rem;
  padding: 1.4rem;
}

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

.form-field {
  display: grid;
  gap: 0.45rem;
}

.form-field[hidden] {
  display: none;
}

.form-field label,
.radio-fieldset legend {
  color: #4d4841;
  font-size: 0.86rem;
  font-weight: 600;
}

.enquiry-form .form-control {
  font-weight: 400;
}

.date-control {
  position: relative;
  display: flex;
  min-height: 3rem;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--paper);
  padding: 0 0.9rem;
  cursor: pointer;
}

.date-control__icon {
  display: inline-grid;
  width: 1.15rem;
  height: 1.15rem;
  flex: 0 0 auto;
  place-items: center;
  color: var(--ink);
}

.date-control__icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.date-control input {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: calc(3rem - 2px);
  border: 0;
  background: transparent;
  color: var(--ink);
  outline: 0;
  cursor: pointer;
}

.date-control input::-webkit-calendar-picker-indicator {
  position: absolute;
  inset: 0;
  width: auto;
  height: auto;
  opacity: 0;
  cursor: pointer;
}

.form-field textarea {
  min-height: 8rem;
  resize: vertical;
  padding: 0.8rem 0.9rem;
}

.radio-fieldset {
  margin: 0;
  border: 0;
  padding: 0;
}

.check-row label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.55rem 0.8rem;
  font-weight: 500;
}

.check-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.45rem;
}

.check-row small {
  color: var(--muted);
  font-weight: 400;
}

.estimate-box {
  display: grid;
  gap: 0.25rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--paper);
  padding: 1rem;
  color: var(--muted);
  font-weight: 400;
}

.estimate-box strong {
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 600;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-weight: 750;
}

.modal .form-note,
.enquiry-form .form-note {
  font-weight: 400;
}

.price-widget .form-note {
  font-weight: 400;
}

.empty-state {
  border: 1px dashed var(--border);
  border-radius: 18px;
  padding: 2rem;
  color: var(--muted);
  text-align: center;
}

.thankyou-card {
  max-width: 42rem;
  margin: 6rem auto;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: #fff;
  padding: 2rem;
  box-shadow: var(--shadow);
  text-align: center;
}

.thankyou-card h1 {
  margin: 0 0 1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 6vw, 4rem);
}

.thankyou-card p {
  color: #4d4841;
  line-height: 1.55;
}

.thankyou-callout {
  display: grid;
  gap: 0.8rem;
  margin: 1.6rem 0;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--paper);
  padding: 1.2rem;
}

.thankyou-callout h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
}

.thankyou-callout p {
  margin: 0;
}

.thankyou-call-button {
  width: 100%;
}

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

  .service-card {
    grid-template-columns: minmax(0, 1fr) 10rem;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(100% - 1.5rem, var(--max));
  }

  .top-header {
    padding-top: 1.25rem;
  }

  .top-header__inner {
    display: block;
  }

  .brand-block {
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 1rem;
  }

  .brand-logo {
    width: 78px;
    height: 78px;
  }

  .nav-links {
    display: none;
  }

  .hero-gallery {
    margin-top: 2rem;
    border-radius: 24px;
  }

  .hero-gallery__grid {
    height: auto;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 2fr 1fr;
  }

  .hero-gallery__cell:first-child {
    grid-column: 1 / -1;
    aspect-ratio: 1.7;
  }

  .hero-gallery__cell:not(:first-child) {
    aspect-ratio: 1.6;
  }

  .section {
    margin-top: 4.25rem;
  }

  .section--standalone-services {
    margin-top: 1.5rem;
  }

  .section-header {
    align-items: flex-end;
  }

  .search-row {
    top: 0;
  }

  .price-list-toolbar {
    align-items: stretch;
  }

  .price-list-toolbar label,
  .price-list-filter-button,
  .price-list-toolbar p {
    width: 100%;
  }

  .price-list-meta__actions {
    justify-content: flex-start;
  }

  .price-list-filters {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .info-grid,
  .review-layout {
    grid-template-columns: 1fr;
  }

  .review-summary {
    min-height: 0;
    position: static;
  }

  .service-card {
    grid-template-columns: minmax(0, 1fr) 29%;
    min-height: 0;
  }

  .service-card__body {
    padding: 1.35rem;
  }

  .service-card h3 {
    min-height: 0;
    font-size: 1.65rem;
  }

  .service-card p {
    min-height: 0;
  }

  .service-card__price {
    padding: 1rem 0.7rem;
  }

  .price-value {
    font-size: 2rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 10rem;
  }

  .gallery-card:first-child {
    grid-row: span 2;
  }

  .footer {
    padding-bottom: 6.75rem;
  }

  .page-shell--service-detail .footer {
    padding-bottom: 2rem;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .footer__bottom {
    display: grid;
  }

  .bottom-nav {
    display: grid;
  }

  .sticky-header__inner {
    min-height: 5rem;
  }

  .sticky-header .nav-links {
    display: none;
  }

  .detail-shell {
    display: flex;
    flex-direction: column;
    padding-top: 1rem;
  }

  .detail-content {
    display: contents;
  }

  .detail-photos {
    order: 1;
  }

  .detail-title {
    order: 2;
  }

  .detail-summary {
    order: 3;
  }

  .included-section {
    order: 4;
  }

  .price-widget {
    order: 5;
  }

  .detail-content > .detail-section:not(.included-section) {
    order: 6;
  }

  .detail-photos {
    margin-right: -0.75rem;
    margin-left: -0.75rem;
    padding-right: 0.75rem;
    padding-left: 0.75rem;
  }

  .price-widget {
    position: static;
    margin-top: 2rem;
  }

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

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

  .modal {
    margin-top: 0.5rem;
  }
}

@media (max-width: 540px) {
  .service-detail-review-count {
    display: none;
  }

  .brand-title {
    font-size: clamp(2rem, 9vw, 2.85rem);
  }

  .section-title {
    font-size: clamp(2rem, 9vw, 2.75rem);
  }

  .section-link {
    font-size: 1rem;
  }

  .service-card {
    grid-template-columns: minmax(0, 1fr) 24%;
  }

  .service-card__body {
    padding: 1.1rem;
  }

  .service-card__price {
    align-items: center;
  }

  .book-button {
    min-width: 5.4rem;
    padding: 0 0.8rem;
  }

  .thumb-row img,
  .thumb-more {
    width: 3rem;
    height: 3rem;
  }

  .lightbox {
    padding: 0.8rem;
  }

  .lightbox__dialog img {
    max-height: 74vh;
    border-radius: 14px;
  }

  .lightbox__close {
    top: 0.5rem;
    right: 0.5rem;
  }

  .lightbox__nav--prev {
    left: 0.5rem;
  }

  .lightbox__nav--next {
    right: 0.5rem;
  }

  .lightbox__dialog figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0 0.35rem;
  }

  .price-list-table th:first-child,
  .price-list-table td:first-child {
    min-width: 11.5rem;
    max-width: 11.5rem;
  }
}

@media print {
  @page {
    size: landscape;
    margin: 12mm;
  }

  * {
    box-shadow: none !important;
    text-shadow: none !important;
  }

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

  .top-header,
  .sticky-header,
  .footer,
  .bottom-nav,
  .modal-backdrop,
  .lightbox,
  .price-list-toolbar,
  .price-list-filters {
    display: none !important;
  }

  .page-shell {
    display: block;
    min-height: 0;
  }

  .container {
    width: 100%;
  }

  .section {
    margin-top: 0;
  }

  .section-header {
    margin-bottom: 0.6rem;
  }

  .section-title {
    font-size: 24pt;
  }

  .price-list-meta {
    border: 1px solid #cfc8bd;
    border-radius: 0;
    background: #fff;
    padding: 6pt 8pt;
  }

  .price-list-table-wrap {
    overflow: visible;
    border: 1px solid #cfc8bd;
    border-top: 0;
    border-radius: 0;
  }

  .price-list-table {
    width: 100%;
    min-width: 0;
    font-size: 8pt;
  }

  .price-list-table th,
  .price-list-table td {
    border-bottom: 1px solid #ddd7cf;
    padding: 4pt 5pt;
  }

  .price-list-table th,
  .price-list-table th:first-child,
  .price-list-table td:first-child {
    position: static;
    min-width: 0;
    max-width: none;
    background: #f7f4ef;
  }

  .price-list-table td:first-child {
    background: #fff;
  }

  .price-list-table tr {
    break-inside: avoid;
  }

  .price-list-table small {
    font-size: 7pt;
  }
}
