:root {
  --bg-base: #0f0e0c;
  --bg-raised: #161310;
  --bg-sunken: #0b0a09;
  --ink: #ece7dd;
  --coal: #0b0a09;
  --paper: #0f0e0c;
  --white: #ece7dd;
  --muted: #a89f90;
  --gold: #d4a24a;
  --brass: #e5b65f;
  --leather: #8a5a3b;
  --smoke: #2a251e;
  --line: #2a251e;
  --shadow: 0 22px 60px rgba(10, 8, 5, 0.5);
  --font-display: "Outfit", "Helvetica Neue", Arial, ui-sans-serif, system-ui, sans-serif;
  --font-body: "Geist", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-ui: "Geist", "Helvetica Neue", Arial, ui-sans-serif, system-ui, sans-serif;
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out-strong: cubic-bezier(0.77, 0, 0.175, 1);
  --dur-micro: 180ms;
  --dur-enter: 450ms;
  --dur-hero: 650ms;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  font-family:
    var(--font-body);
}

* {
  box-sizing: border-box;
}

section[id] {
  scroll-margin-top: 88px;
}

#reviews,
#contact {
  scroll-margin-top: 104px;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  background:
    linear-gradient(90deg, rgba(236, 231, 221, 0.02) 1px, transparent 1px),
    linear-gradient(rgba(236, 231, 221, 0.014) 1px, transparent 1px),
    var(--paper);
  background-size: 42px 42px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

body.lock-scroll {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(212, 162, 74, 0.22);
}

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

::selection {
  background: rgba(212, 162, 74, 0.35);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  transform: translateY(-160%);
  background: var(--gold);
  color: #14110c;
  padding: 10px 14px;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(11, 10, 9, 0.72), rgba(11, 10, 9, 0));
  transition:
    background var(--dur-micro) var(--ease-out-quart),
    backdrop-filter var(--dur-micro) var(--ease-out-quart),
    box-shadow var(--dur-micro) var(--ease-out-quart),
    padding var(--dur-micro) var(--ease-out-quart);
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(15, 14, 12, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 36px rgba(10, 8, 5, 0.22);
  padding-top: 12px;
  padding-bottom: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-ui);
  font-size: 1.22rem;
  font-weight: 700;
}

.brand-mark {
  display: block;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  filter: drop-shadow(0 8px 18px rgba(10, 8, 5, 0.24));
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.65vw, 24px);
  font-family: var(--font-ui);
  font-size: 1.08rem;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-micro) var(--ease-out-quart);
}

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

.language-control {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-ui);
  font-size: 0.94rem;
  font-weight: 700;
  text-transform: uppercase;
}

.language-control select {
  min-height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 0;
  background: rgba(15, 14, 12, 0.56);
  color: var(--white);
  padding: 7px 20px 7px 11px;
  font-family: var(--font-ui);
  font-size: 0.94rem;
  font-weight: 700;
  outline: none;
}

.language-control select:focus-visible {
  border-color: rgba(212, 162, 74, 0.82);
  box-shadow: 0 0 0 4px rgba(212, 162, 74, 0.16);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: min(88vh, 820px);
  overflow: hidden;
  color: var(--white);
  background: var(--coal);
}

.hero picture,
.hero img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero picture {
  transform: scale(1.03);
  animation: heroDrift 16s ease-in-out infinite alternate;
}

.hero img {
  object-fit: cover;
  object-position: center 34%;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(15, 14, 12, 0.92), rgba(15, 14, 12, 0.56) 48%, rgba(15, 14, 12, 0.2)),
    linear-gradient(0deg, rgba(15, 14, 12, 0.86), rgba(15, 14, 12, 0.03) 40%);
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 190px;
  background: linear-gradient(0deg, var(--paper), transparent);
  content: "";
  opacity: 0.24;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: min(88vh, 820px);
  width: min(1240px, calc(100% - 36px));
  margin: 0 auto;
  flex-direction: column;
  justify-content: center;
  padding: 104px 0 70px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--gold);
  font-family: var(--font-ui);
  font-size: clamp(1rem, 0.9vw, 1.14rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: 7rem;
  line-height: 0.88;
}

.hero-copy {
  max-width: 610px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.12rem;
  line-height: 1.68;
}

.hero-actions,
.review-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 13px 20px;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 600;
  transition:
    transform var(--dur-micro) var(--ease-out-quart),
    background var(--dur-micro) var(--ease-out-quart),
    border-color var(--dur-micro) var(--ease-out-quart),
    box-shadow var(--dur-micro) var(--ease-out-quart);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 2px 6px rgba(10, 8, 5, 0.35), 0 10px 26px rgba(10, 8, 5, 0.45);
}

.button:active {
  transform: scale(0.97);
}

.button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.button.primary {
  background: var(--gold);
  color: #14110c;
}

.button.secondary {
  background: var(--white);
  color: #14110c;
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.44);
  color: var(--white);
}

.hero-status {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  border: 1px solid rgba(212, 162, 74, 0.4);
  background: rgba(15, 14, 12, 0.6);
  color: rgba(236, 231, 221, 0.92);
  padding: 8px 14px;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}

.hero-status::before {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px rgba(212, 162, 74, 0.8);
  content: "";
}

.hero-proof {
  display: flex;
  width: min(100%, 520px);
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.82);
}

.hero-proof strong {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.58rem;
  font-weight: 700;
}

.hero-proof .hero-proof-cta {
  color: var(--gold);
  font-family: var(--font-ui);
  font-weight: 600;
}

.hero-proof:hover .hero-proof-cta,
.hero-proof:focus-visible .hero-proof-cta {
  text-decoration: underline;
}

.info-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 2;
  background:
    linear-gradient(135deg, rgba(212, 162, 74, 0.07), transparent 60%),
    var(--bg-raised);
}

.info-strip > * {
  display: grid;
  gap: 4px;
  min-height: 100px;
  align-content: center;
  justify-items: center;
  border-right: 1px solid var(--line);
  padding: 20px 22px;
  text-align: center;
}

.info-strip > *:last-child {
  border-right: 0;
}

.info-strip strong {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.05;
  font-variant-numeric: tabular-nums;
}

.info-strip span {
  color: var(--muted);
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
}

a.info-strip-cell:hover strong,
.info-strip a:hover strong,
.info-strip a:focus-visible strong {
  color: var(--brass);
}

.section-lead {
  color: var(--muted);
}

.section {
  width: min(1240px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(36px, 4.8vw, 62px) 0;
}

.reviews,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
}

.section-heading h2,
.reviews h2,
.contact h2 {
  margin-bottom: 0;
  font-size: 4.15rem;
  line-height: 0.98;
}

.reviews-copy > p,
.contact p {
  color: var(--muted);
  font-size: 1.22rem;
  line-height: 1.72;
}

.section-heading {
  display: flex;
  max-width: 860px;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 34px;
}

.section-lead {
  max-width: 620px;
  margin: 10px 0 0;
  font-size: 1.18rem;
  line-height: 1.65;
}

.section-heading,
.location-section,
.reviews,
.contact {
  scroll-margin-top: 104px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}

.service-card,
.contact-list > *,
.rating-panel {
  border: 1px solid var(--line);
  background: var(--bg-raised);
  box-shadow: 0 8px 30px rgba(10, 8, 5, 0.35);
}

.service-card,
.gallery button,
.review-carousel,
.contact-list > * {
  transform: translateZ(0);
}

.service-card,
.contact-list > * {
  position: relative;
  overflow: hidden;
}

.service-card::before,
.contact-list > *::before {
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  background: linear-gradient(135deg, rgba(212, 162, 74, 0.5), transparent 45%, rgba(212, 162, 74, 0.26)) border-box;
  content: "";
  mask:
    linear-gradient(#000 0 0) padding-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--dur-micro) var(--ease-out-quart);
}

.service-card:hover::before,
.contact-list > *:hover::before {
  opacity: 1;
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 250px;
  padding: 24px;
  transition:
    transform var(--dur-micro) var(--ease-out-quart),
    box-shadow var(--dur-micro) var(--ease-out-quart);
}

.service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 6px rgba(10, 8, 5, 0.4), 0 16px 40px rgba(10, 8, 5, 0.5);
}

.service-card span {
  color: var(--gold);
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
}

.service-card h3 {
  margin: 28px 0 12px;
  font-size: 1.46rem;
  line-height: 1.04;
}

.service-card p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.62;
}

.service-meta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 12px;
}

.service-meta,
.service-price {
  display: inline-flex;
  width: fit-content;
  border: 1px solid rgba(212, 162, 74, 0.38);
  background: rgba(212, 162, 74, 0.1);
  color: var(--ink);
  padding: 6px 8px;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
}

.service-price {
  border-color: rgba(212, 162, 74, 0.4);
  background: rgba(212, 162, 74, 0.1);
  color: var(--gold);
  font-size: 0.84rem;
  letter-spacing: 0;
}

.service-price,
.hero-proof strong,
.rating-panel strong {
  font-variant-numeric: tabular-nums;
}

.image-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(1240px, calc(100% - 36px));
  margin: 0 auto;
  gap: var(--space-4);
}

.image-band img {
  width: 100%;
  aspect-ratio: 1 / 1.18;
  object-fit: cover;
  box-shadow: var(--shadow);
  filter: saturate(1.02) contrast(1.04);
  transition:
    clip-path 260ms var(--ease-in-out-strong),
    transform 260ms var(--ease-in-out-strong);
  clip-path: inset(0 0 0 0);
}

.image-band img:hover {
  clip-path: inset(12px 12px 12px 12px);
  transform: scale(1.018);
}

.location-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
}

.location-section::before {
  position: absolute;
  top: 34px;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 162, 74, 0.35), transparent);
  content: "";
}

.location-copy {
  display: grid;
  gap: 18px;
}

.location-copy h2 {
  margin: 0;
  font-size: 4.15rem;
  line-height: 0.98;
}

.location-copy p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 1.22rem;
  line-height: 1.72;
}

.location-details {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.location-details span {
  border: 1px solid rgba(212, 162, 74, 0.3);
  background: rgba(212, 162, 74, 0.08);
  color: var(--gold);
  padding: 8px 10px;
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
}

.location-media {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(75, 36, 29, 0.36), rgba(15, 14, 12, 0.92)),
    var(--coal);
  box-shadow: 0 28px 86px rgba(15, 14, 12, 0.2);
}

.location-media::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(15, 14, 12, 0.28), transparent 42%),
    linear-gradient(0deg, rgba(15, 14, 12, 0.62), transparent 48%);
  content: "";
  pointer-events: none;
}

.location-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.98) contrast(1.06) brightness(0.9);
  transform: scale(1.01);
}

.location-media figcaption {
  position: absolute;
  bottom: 18px;
  left: 18px;
  z-index: 2;
  max-width: calc(100% - 36px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(15, 14, 12, 0.72);
  color: rgba(255, 255, 255, 0.9);
  padding: 10px 12px;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  backdrop-filter: blur(14px);
}

.proof-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-bottom: var(--space-4);
  scroll-margin-top: 104px;
}

.proof-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-raised);
  box-shadow: 0 14px 44px rgba(10, 8, 5, 0.4);
}

.proof-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  min-height: 0;
  object-fit: cover;
  object-position: center top;
  transition:
    filter 220ms var(--ease-out-quart),
    transform 220ms var(--ease-out-quart);
}

.proof-card:hover img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.018);
}

.proof-card div {
  display: grid;
  gap: 8px;
  padding: 22px;
}

.proof-card span {
  color: var(--gold);
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
}

.proof-card h3 {
  margin: 0;
  font-size: 1.48rem;
  line-height: 1.04;
}

.proof-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.62;
}

.gallery-section {
  width: min(1240px, calc(100% - 36px));
}

.gallery-more-heading {
  margin-top: 46px;
}

.gallery-more-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-family: var(--font-ui);
  font-size: clamp(0.94rem, 0.8vw, 1.04rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-more-heading h3 {
  margin: 0;
  font-size: clamp(1.7rem, 2.6vw, 2.35rem);
  line-height: 1.06;
}

.gallery-more-lead {
  max-width: 620px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.65;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-3);
}

.gallery button {
  min-width: 0;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: zoom-in;
}

.gallery button:nth-child(1),
.gallery button:nth-child(4) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery button:nth-child(2),
.gallery button:nth-child(3),
.gallery button:nth-child(5),
.gallery button:nth-child(6) {
  grid-column: span 2;
}

.gallery img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  transition:
    transform 220ms var(--ease-out-quart),
    filter 220ms var(--ease-out-quart);
}

.gallery button:hover img,
.gallery button:focus-visible img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.015);
}

.reviews {
  width: min(1240px, calc(100% - 36px));
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1.38fr);
  align-items: center;
}

.reviews-copy {
  align-self: center;
}

.reviews h2 {
  margin-bottom: 22px;
}

.reviews {
  position: relative;
}

.reviews::before {
  position: absolute;
  top: 34px;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 162, 74, 0.35), transparent);
  content: "";
}

.rating-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 26px 0 18px;
  padding: 24px;
  border-left: 6px solid var(--gold);
}

.rating-panel strong {
  display: block;
  font-family: var(--font-display);
  font-size: 4.6rem;
  font-weight: 700;
  line-height: 0.82;
}

.rating-panel span,
.rating-panel p {
  color: var(--muted);
}

.rating-panel p {
  margin: 0;
  font-family: var(--font-ui);
  font-weight: 600;
}

.reviews-media {
  display: grid;
  gap: 18px;
}

.review-carousel {
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(22, 19, 16, 0.72);
  box-shadow: 0 18px 54px rgba(10, 8, 5, 0.4);
}

.review-carousel-top {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding: 14px 16px 14px 22px;
}

.review-carousel-top span {
  color: var(--gold);
  font-family: var(--font-ui);
  font-size: clamp(1rem, 0.9vw, 1.14rem);
  font-weight: 600;
  text-transform: uppercase;
}

.review-controls {
  display: flex;
  gap: 8px;
}

.review-controls button {
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--bg-raised);
  color: var(--ink);
  cursor: pointer;
}

.review-dots button {
  cursor: pointer;
}

.review-controls button {
  width: 44px;
  height: 44px;
  font-size: 1.7rem;
  line-height: 1;
}

.review-controls button:hover,
.review-controls button:focus-visible {
  border-color: rgba(212, 162, 74, 0.76);
  background: rgba(212, 162, 74, 0.16);
}

.review-track-wrap {
  overflow: hidden;
  padding: 20px 0 20px 20px;
}

.review-track {
  display: flex;
  gap: 18px;
  align-items: stretch;
  transition: transform 360ms var(--ease-out-quart);
  will-change: transform;
}

.review-card {
  display: grid;
  flex: 0 0 clamp(260px, 26vw, 330px);
  min-height: 280px;
  align-content: start;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--bg-raised);
  padding: 18px;
  box-shadow: 0 10px 28px rgba(10, 8, 5, 0.35);
}

.review-google-header {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 11px;
  align-items: center;
}

.review-avatar {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(212, 162, 74, 0.2), transparent 70%),
    var(--bg-base);
  color: var(--gold);
  font-family: var(--font-ui);
  font-weight: 700;
}

.review-identity {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.review-author-line {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 6px;
}

.review-author-line strong {
  overflow: hidden;
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 0.92rem;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.review-source-line {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 4px;
  color: var(--muted);
  font-size: 0.74rem;
}

.review-source-line > span:first-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.google-wordmark {
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 0.9rem;
  font-family: var(--font-ui);
  font-weight: 600;
  letter-spacing: 0;
}

.google-wordmark span:nth-child(1),
.google-wordmark span:nth-child(4) {
  color: #4285f4;
}

.google-wordmark span:nth-child(2),
.google-wordmark span:nth-child(6) {
  color: #db4437;
}

.google-wordmark span:nth-child(3) {
  color: #f4b400;
}

.google-wordmark span:nth-child(5) {
  color: #0f9d58;
}

.review-stars {
  color: #fbbc04;
  font-size: 1.05rem;
  letter-spacing: 0;
  line-height: 1;
}

.review-stars.is-insight {
  color: #fbbc04;
}

.review-quote-wrap {
  display: grid;
  gap: 2px;
}

.review-quote {
  display: -webkit-box;
  min-height: 96px;
  margin: 0;
  color: var(--ink);
  overflow: hidden;
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.48;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.review-card.is-expanded .review-quote {
  display: block;
  min-height: 0;
}

.review-read-more {
  width: fit-content;
  border: 0;
  background: transparent;
  color: #8ab4f8;
  padding: 0;
  cursor: pointer;
  font-family: var(--font-ui);
  font-weight: 500;
}

.review-read-more:hover,
.review-read-more:focus-visible {
  text-decoration: underline;
}

.review-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border-top: 1px solid var(--line);
  padding: 8px 18px 10px;
}

.review-dots button {
  position: relative;
  width: 32px;
  height: 10px;
  box-sizing: content-box;
  padding: 17px 6px;
  border: none;
  background: rgba(236, 231, 221, 0.22);
  background-clip: content-box;
  border-radius: 0;
  font-size: 0;
  transition:
    width var(--dur-micro) var(--ease-out-quart),
    background var(--dur-micro) var(--ease-out-quart);
}

.review-dots button:hover,
.review-dots button:focus-visible {
  background: rgba(236, 231, 221, 0.45);
  background-clip: content-box;
}

.review-dots button.is-active {
  width: 46px;
  background: var(--gold);
  background-clip: content-box;
}

.map-wrap {
  position: relative;
  overflow: hidden;
  min-height: 470px;
  background: var(--coal);
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 470px;
  border: 0;
}

.map-fallback {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  display: grid;
  gap: 5px;
  max-width: min(320px, calc(100% - 36px));
  border: 1px solid rgba(236, 231, 221, 0.16);
  background: rgba(15, 14, 12, 0.92);
  padding: 14px 16px;
  box-shadow: 0 14px 38px rgba(10, 8, 5, 0.4);
}

.map-fallback strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.05;
}

.map-fallback span,
.map-fallback a {
  font-family: var(--font-ui);
  font-size: 0.84rem;
  font-weight: 500;
}

.map-fallback span {
  color: var(--muted);
}

.map-fallback a {
  width: fit-content;
  color: var(--gold);
}

.contact {
  align-items: center;
}

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

.contact-list > * {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 4px 16px;
  align-items: center;
  padding: 22px;
}

.contact-icon {
  display: grid;
  grid-row: span 2;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(212, 162, 74, 0.32);
  background:
    linear-gradient(135deg, rgba(212, 162, 74, 0.12), transparent 65%),
    var(--bg-base);
  color: var(--gold);
}

.contact-icon svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.contact-label {
  color: var(--gold);
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.1;
  text-transform: uppercase;
}

.contact-list strong {
  font-family: var(--font-display);
  font-size: 1.38rem;
  font-weight: 700;
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.hours-list {
  margin: 0;
  align-self: start;
}

.hours-list > div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 6px 0;
}

.hours-list > div + div {
  border-top: 1px solid rgba(236, 231, 221, 0.08);
}

.hours-list dt {
  color: var(--muted);
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 500;
}

.hours-list dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1.15fr) minmax(180px, 0.72fr) minmax(220px, 0.82fr);
  gap: clamp(26px, 5vw, 72px);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(90deg, rgba(212, 162, 74, 0.06), transparent 52%),
    var(--bg-sunken);
  color: var(--white);
  padding: 54px clamp(18px, 4vw, 56px) 26px;
}

.site-footer .brand {
  width: fit-content;
  color: var(--white);
}

.footer-brand {
  display: grid;
  align-content: start;
  gap: 18px;
}

.footer-brand p {
  max-width: 420px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.08rem;
  line-height: 1.7;
}

.footer-cta {
  width: fit-content;
  margin-top: 2px;
}

.footer-chapters,
.footer-visit {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-chapters h2,
.footer-visit h2 {
  margin: 0 0 8px;
  color: var(--gold);
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
}

.footer-chapters a,
.footer-visit a,
.footer-visit span,
.footer-bottom a {
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 700;
}

.footer-chapters a,
.footer-visit a,
.footer-bottom a {
  width: fit-content;
  transition:
    color var(--dur-micro) var(--ease-out-quart),
    transform var(--dur-micro) var(--ease-out-quart);
}

.footer-chapters a:hover,
.footer-chapters a:focus-visible,
.footer-visit a:hover,
.footer-visit a:focus-visible,
.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: var(--gold);
  transform: translateX(3px);
}

.footer-visit span {
  max-width: 240px;
  color: rgba(255, 255, 255, 0.56);
  line-height: 1.52;
}

.footer-bottom {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 22px;
}

.footer-copy {
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-ui);
  font-size: 0.86rem;
  font-weight: 700;
}

.lightbox {
  width: min(920px, calc(100% - 28px));
  border: 0;
  padding: 0;
  background: transparent;
}

.lightbox::backdrop {
  background: rgba(10, 8, 5, 0.82);
}

.lightbox img {
  width: 100%;
  max-height: 86vh;
  object-fit: contain;
  background: var(--bg-sunken);
}

.lightbox button {
  position: absolute;
  top: -50px;
  right: 0;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
}

.mobile-action-bar {
  position: fixed;
  right: 12px;
  bottom: max(12px, env(safe-area-inset-bottom));
  left: 12px;
  z-index: 30;
  display: none;
  grid-template-columns: 1.15fr 0.9fr 0.8fr;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(15, 14, 12, 0.9);
  padding: 8px;
  box-shadow: 0 18px 60px rgba(15, 14, 12, 0.32);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(calc(100% + 18px));
  transition:
    opacity var(--dur-micro) var(--ease-out-quart),
    transform var(--dur-micro) var(--ease-out-quart);
}

.mobile-actions-visible .mobile-action-bar {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-action-bar a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  padding: 10px 8px;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
}

.mobile-action-bar a:first-child {
  background: var(--gold);
  color: #14110c;
}

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

.reveal-enabled .reveal {
  opacity: 1;
  transform: translateY(16px);
  transition:
    opacity var(--dur-enter) var(--ease-out-quart),
    transform var(--dur-enter) var(--ease-out-quart);
}

.reveal-enabled .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroDrift {
  from {
    transform: scale(1.03) translate3d(-0.6%, -0.5%, 0);
  }

  to {
    transform: scale(1.08) translate3d(0.8%, 0.4%, 0);
  }
}

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

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

@media (max-width: 920px) {
  .site-header {
    gap: 14px;
  }

  .nav-toggle {
    display: block;
    order: 3;
  }

  .language-control {
    order: 2;
    margin-left: auto;
  }

  .language-control span {
    display: none;
  }

  .site-nav {
    order: 4;
    position: absolute;
    top: 100%;
    right: 18px;
    left: 18px;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(15, 14, 12, 0.98);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 15px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

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

  .site-nav a::after {
    display: none;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(15, 14, 12, 0.9), rgba(15, 14, 12, 0.48)),
      linear-gradient(0deg, rgba(15, 14, 12, 0.78), rgba(15, 14, 12, 0.04) 42%);
  }

  .location-section,
  .reviews,
  .contact {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 46px 0;
  }

  .service-grid,
  .image-band,
  .proof-card-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-card {
    min-height: 220px;
  }

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

  .gallery button,
  .gallery button:nth-child(1),
  .gallery button:nth-child(2),
  .gallery button:nth-child(3),
  .gallery button:nth-child(4),
  .gallery button:nth-child(5),
  .gallery button:nth-child(6) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery img {
    min-height: 320px;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .info-strip {
    grid-template-columns: 1fr 1fr;
  }

  .info-strip > * {
    border-bottom: 1px solid var(--line);
  }

  .info-strip > *:nth-child(2n) {
    border-right: 0;
  }

  .info-strip > *:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .footer-brand,
  .footer-bottom {
    grid-column: 1 / -1;
  }

  h1 {
    font-size: clamp(4.3rem, 10vw, 5.15rem);
  }

  .section-heading h2,
  .location-copy h2,
  .reviews h2,
  .contact h2 {
    font-size: clamp(3rem, 7vw, 3.35rem);
  }
}

@media (max-width: 620px) {
  .section {
    width: min(100% - 24px, 1240px);
    padding: 34px 0;
  }

  .site-header {
    gap: 8px;
    padding: 10px 12px;
    background: rgba(15, 14, 12, 0.72);
    backdrop-filter: blur(16px);
  }

  .brand {
    gap: 7px;
    min-width: 0;
    font-size: 0.96rem;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  .brand span:last-child {
    max-width: min(36vw, 150px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .language-control select {
    min-height: 44px;
    padding: 7px 16px 7px 9px;
    font-size: 0.86rem;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
  }

  .site-nav {
    right: 12px;
    left: 12px;
    max-height: calc(100svh - 72px);
    overflow-y: auto;
  }

  .site-nav a {
    min-height: 50px;
    padding: 13px 16px;
  }

  .hero {
    min-height: min(76svh, 680px);
  }

  .hero-content {
    min-height: min(76svh, 680px);
    width: min(100% - 28px, 1240px);
    justify-content: flex-end;
    padding: 86px 0 34px;
  }

  .hero picture {
    animation: none;
  }

  .hero img {
    object-position: 58% 36%;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(15, 14, 12, 0.86), rgba(15, 14, 12, 0.54)),
      linear-gradient(0deg, rgba(15, 14, 12, 0.9), rgba(15, 14, 12, 0.08) 54%);
  }

  .eyebrow,
  .section-kicker {
    margin-bottom: 12px;
    font-size: 0.78rem;
    line-height: 1.25;
  }

  h1 {
    margin-bottom: 12px;
    font-size: clamp(3rem, 14vw, 3.74rem);
    line-height: 0.94;
  }

  .hero-copy {
    max-width: 34ch;
    margin-bottom: 20px;
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    gap: 10px;
  }

  .hero-actions .button {
    min-height: 52px;
    padding: 12px 10px;
    font-size: 0.88rem;
    text-align: center;
  }

  .hero-actions .button.primary {
    grid-column: 1 / -1;
  }

  .hero-actions .button.secondary,
  .hero-actions .button.ghost {
    display: none;
  }

  .section-heading h2,
  .location-copy h2,
  .reviews h2,
  .contact h2 {
    font-size: clamp(2.12rem, 10vw, 2.58rem);
    line-height: 1.02;
  }

  .location-copy p,
  .reviews-copy > p,
  .contact p {
    font-size: 1.02rem;
    line-height: 1.58;
  }

  .hero-proof {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    margin-top: 20px;
    padding-top: 16px;
  }

  .hero-proof strong {
    font-size: 1.34rem;
  }

  .info-strip {
    grid-template-columns: 1fr 1fr;
  }

  .info-strip > * {
    min-height: 84px;
    padding: 16px 14px;
  }

  .info-strip strong {
    font-size: 1.25rem;
  }

  .info-strip span {
    font-size: 0.74rem;
  }

  .service-grid,
  .proof-card-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
    padding: 20px;
  }

  .service-card h3 {
    margin-top: 18px;
  }

  .image-band,
  .gallery {
    position: relative;
    display: grid;
    width: calc(100% + 22px);
    grid-auto-columns: minmax(236px, 72vw);
    grid-auto-flow: column;
    grid-template-columns: none;
    gap: 10px;
    margin-right: -22px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    padding: 0 22px 4px 0;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }

  .image-band::after,
  .gallery::after {
    width: 1px;
    content: "";
  }

  .image-band::-webkit-scrollbar,
  .gallery::-webkit-scrollbar {
    display: none;
  }

  .image-band img,
  .gallery button {
    scroll-snap-align: start;
  }

  .gallery button,
  .gallery button:nth-child(1),
  .gallery button:nth-child(2),
  .gallery button:nth-child(3),
  .gallery button:nth-child(4),
  .gallery button:nth-child(5),
  .gallery button:nth-child(6) {
    grid-column: auto;
    grid-row: auto;
  }

  .image-band img,
  .location-media img,
  .gallery img,
  .proof-card img {
    aspect-ratio: 4 / 5;
    min-height: 0;
  }

  .gallery img {
    min-height: 310px;
  }

  .proof-card {
    grid-template-rows: auto auto;
  }

  .proof-card div {
    padding: 18px;
  }

  .location-details span {
    flex: 1 1 auto;
    text-align: center;
  }

  .rating-panel {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
  }

  .review-card {
    flex-basis: calc(100vw - 48px);
    min-height: 320px;
    padding: 16px;
  }

  .review-track-wrap {
    padding: 12px 0 14px 12px;
  }

  .review-carousel-top {
    min-height: 58px;
    padding: 12px 12px 12px 14px;
  }

  .review-controls button {
    width: 44px;
    height: 44px;
  }

  .review-quote {
    font-size: 1rem;
    line-height: 1.45;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 310px;
  }

  .map-fallback {
    top: 12px;
    left: 12px;
    max-width: calc(100% - 24px);
    padding: 12px 14px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 38px 18px 108px;
  }

  .footer-chapters,
  .footer-visit {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .mobile-action-bar {
    display: grid;
    right: 10px;
    bottom: max(10px, env(safe-area-inset-bottom));
    left: 10px;
    gap: 6px;
    padding: 6px;
  }

  .mobile-action-bar a {
    min-height: 46px;
    font-size: 0.76rem;
  }
}

@media (max-width: 420px) {
  .site-header {
    padding-right: 12px;
    padding-left: 12px;
  }

  .brand span:last-child {
    max-width: min(42vw, 154px);
  }

  .language-control select {
    min-height: 44px;
    max-width: 62px;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .hero-content {
    width: min(100% - 28px, 1240px);
    padding-top: 88px;
  }

  .hero-actions {
    grid-template-columns: 1fr;
  }

  .info-strip,
  .review-carousel,
  .contact-list > *,
  .service-card {
    border-radius: 0;
  }

  .mobile-action-bar {
    right: 8px;
    left: 8px;
    grid-template-columns: 1fr 0.85fr 0.85fr;
    gap: 6px;
    padding: 6px;
  }

  .mobile-action-bar a {
    min-height: 46px;
    font-size: 0.78rem;
  }
}

@media (max-width: 360px) {
  .brand span:last-child {
    display: none;
  }

  .language-control select {
    max-width: 58px;
  }
}

@media (hover: none) {
  .button:hover,
  .service-card:hover,
  .gallery button:hover img,
  .proof-card:hover img,
  .image-band img:hover {
    transform: none;
    box-shadow: none;
    filter: none;
    clip-path: none;
  }
}
