@font-face {
  font-family: "Bodoni Moda";
  src: url("../fonts/bodoni-moda-latin.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400 900;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-latin.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 200 800;
}

:root {
  --obsidian: #090a09;
  --charcoal: #141513;
  --charcoal-2: #1d1e1b;
  --ivory: #f3efe7;
  --stone: #c9c2b7;
  --muted: #948c80;
  --brass: #b78a4a;
  --brass-light: #d0ad72;
  --brass-dark: #7c5b2f;
  --success: #4f8063;
  --error: #b85a55;
  --font-display: "Bodoni Moda", Georgia, serif;
  --font-body: "Manrope", Arial, sans-serif;
  --container: min(1280px, calc(100% - 40px));
  --reading: 760px;
  --header-height: 82px;
  --border: 1px solid rgb(243 239 231 / 0.12);
  --shadow: 0 24px 70px rgb(0 0 0 / 0.34);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--brass-dark) var(--obsidian);
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 90% 7%, rgb(183 138 74 / 0.08), transparent 24rem),
    var(--obsidian);
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  z-index: 100;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.78' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

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

img {
  height: auto;
}

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

a {
  color: inherit;
}

::selection {
  background: var(--brass);
  color: var(--obsidian);
}

:focus-visible {
  outline: 3px solid var(--brass-light);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  background: var(--ivory);
  color: var(--obsidian);
  transform: translateY(-180%);
}

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

.container {
  width: var(--container);
  margin-inline: auto;
}

.reading {
  width: min(var(--reading), 100%);
}

.section {
  padding-block: clamp(72px, 10vw, 144px);
}

.section-sm {
  padding-block: clamp(48px, 7vw, 88px);
}

.section-rule {
  border-top: var(--border);
}

.surface {
  background: var(--charcoal);
}

.surface-light {
  background: var(--ivory);
  color: var(--obsidian);
}

.eyebrow {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin: 0 0 22px;
  color: var(--brass-light);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 30px;
  height: 1px;
  content: "";
  background: currentColor;
}

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

h1 {
  max-width: 940px;
  margin-bottom: 30px;
  font-size: clamp(3.3rem, 8vw, 7.3rem);
}

h2 {
  max-width: 840px;
  margin-bottom: 26px;
  font-size: clamp(2.55rem, 5.5vw, 5rem);
}

h3 {
  margin-bottom: 14px;
  font-size: clamp(1.6rem, 2.8vw, 2.35rem);
}

.lead {
  max-width: 700px;
  color: var(--stone);
  font-size: clamp(1.08rem, 1.8vw, 1.34rem);
  line-height: 1.65;
}

.copy-muted {
  color: var(--stone);
}

.meta {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  padding: 13px 22px;
  border: 1px solid transparent;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--obsidian);
  background: var(--brass-light);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.035em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms var(--ease), background 220ms ease, border-color 220ms ease;
}

.button:hover {
  background: #e3c48e;
  transform: translateY(-2px);
}

.button-secondary {
  border-color: rgb(208 173 114 / 0.52);
  color: var(--ivory);
  background: rgb(9 10 9 / 0.28);
}

.button-secondary:hover {
  background: rgb(183 138 74 / 0.13);
}

.text-link {
  display: inline-flex;
  padding-block: 3px;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgb(208 173 114 / 0.48);
  color: var(--ivory);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link::after {
  content: "↗";
  color: var(--brass-light);
}

.utility {
  position: relative;
  z-index: 51;
  padding: 8px 0;
  border-bottom: var(--border);
  background: #070807;
  color: var(--stone);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.utility-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.utility-rating {
  color: var(--brass-light);
}

.utility-contact {
  color: var(--ivory);
  text-decoration-color: rgb(208 173 114 / 0.55);
  text-underline-offset: 3px;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgb(9 10 9 / 0.78);
  backdrop-filter: blur(16px);
  transition: height 300ms var(--ease), border-color 300ms ease, background 300ms ease;
}

.site-header.scrolled {
  height: 70px;
  border-color: rgb(243 239 231 / 0.1);
  background: rgb(9 10 9 / 0.96);
}

.header-inner {
  display: grid;
  width: min(1440px, calc(100% - 40px));
  height: 100%;
  margin-inline: auto;
  grid-template-columns: 120px 1fr auto;
  align-items: center;
  gap: 30px;
}

.brand {
  display: inline-flex;
  width: 105px;
  height: 70px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.brand img {
  display: block;
  width: 105px;
  height: 70px;
  object-fit: contain;
}

.site-nav {
  justify-self: center;
}

.nav-list {
  display: flex;
  padding: 0;
  margin: 0;
  align-items: center;
  gap: clamp(18px, 2vw, 34px);
  list-style: none;
}

.nav-link {
  position: relative;
  color: var(--stone);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.045em;
  text-decoration: none;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--brass-light);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease);
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  color: var(--ivory);
}

.nav-link:hover::after,
.nav-link[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-book {
  min-height: 44px;
  padding: 10px 18px;
}

.header-whatsapp {
  min-height: 44px;
  padding: 10px 16px;
  border-color: rgb(37 211 102 / 0.56);
}

.header-whatsapp:hover {
  border-color: rgb(37 211 102 / 0.9);
  background: rgb(37 211 102 / 0.11);
}

.header-whatsapp svg {
  width: 17px;
  height: 17px;
  fill: #25d366;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: var(--border);
  place-items: center;
  color: var(--ivory);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  width: 19px;
  height: 1px;
  content: "";
  background: currentColor;
  transition: transform 240ms var(--ease);
}

.menu-toggle {
  gap: 5px;
}

.nav-open .menu-toggle span {
  opacity: 0;
}

.nav-open .menu-toggle::before {
  transform: translateY(6px) rotate(45deg);
}

.nav-open .menu-toggle::after {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: min(870px, calc(100svh - 36px));
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgb(7 8 7 / 0.96) 0%, rgb(7 8 7 / 0.75) 42%, rgb(7 8 7 / 0.18) 76%),
    linear-gradient(0deg, var(--obsidian) 0%, transparent 30%);
}

.hero-content {
  width: var(--container);
  padding: clamp(96px, 14vw, 170px) 0 120px;
  margin-inline: auto;
}

.hero .lead {
  max-width: 630px;
  color: #ded8cf;
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  padding: 0;
  margin: 34px 0 0;
  color: var(--stone);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  list-style: none;
  text-transform: uppercase;
}

.trust-line li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.trust-line li::before {
  width: 4px;
  height: 4px;
  content: "";
  border-radius: 50%;
  background: var(--brass-light);
}

.trust-rail {
  position: relative;
  z-index: 2;
  width: min(1380px, calc(100% - 40px));
  margin: -62px auto 0;
  border: var(--border);
  background: rgb(20 21 19 / 0.96);
  box-shadow: var(--shadow);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.trust-item {
  min-height: 124px;
  padding: 26px;
  border-right: var(--border);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 400;
}

.trust-item span {
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.trust-item.action {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brass);
}

.trust-item.action .text-link {
  border-color: rgb(9 10 9 / 0.5);
  color: var(--obsidian);
}

.trust-item.action .text-link::after {
  color: var(--obsidian);
}

.section-heading-row {
  display: flex;
  margin-bottom: clamp(40px, 6vw, 74px);
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.section-heading-row h2 {
  margin-bottom: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
  min-height: 470px;
  display: flex;
  padding: 28px;
  grid-column: span 4;
  flex-direction: column;
  justify-content: flex-end;
  isolation: isolate;
  overflow: hidden;
  border: var(--border);
  background: var(--charcoal);
}

.service-card.featured {
  grid-column: span 6;
}

.service-card img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms var(--ease), filter 400ms ease;
  filter: saturate(0.7);
}

.service-card::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgb(9 10 9 / 0.97), rgb(9 10 9 / 0.06) 78%);
}

.service-card:hover img {
  transform: scale(1.035);
  filter: saturate(0.95);
}

.card-kicker {
  color: var(--brass-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.service-card h3 {
  margin: 8px 0 10px;
}

.service-card p {
  max-width: 44ch;
  margin-bottom: 22px;
  color: var(--stone);
}

.service-meta {
  display: flex;
  margin-bottom: 20px;
  justify-content: space-between;
  gap: 20px;
  color: var(--ivory);
  font-size: 0.84rem;
  font-weight: 600;
}

.standard-grid {
  display: grid;
  margin-top: 64px;
  grid-template-columns: repeat(4, 1fr);
  border-top: var(--border);
}

.standard-card {
  min-height: 290px;
  padding: 36px 28px;
  border-right: var(--border);
}

.standard-card:last-child {
  border-right: 0;
}

.standard-number {
  display: block;
  margin-bottom: 50px;
  color: var(--brass-light);
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.standard-card p {
  color: var(--stone);
}

.editorial-split {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(350px, 0.8fr);
  align-items: center;
  gap: clamp(50px, 9vw, 130px);
}

.editorial-image {
  position: relative;
}

.editorial-image::after {
  position: absolute;
  z-index: -1;
  right: -24px;
  bottom: -24px;
  width: 60%;
  height: 60%;
  content: "";
  border: 1px solid rgb(183 138 74 / 0.42);
}

.editorial-image img {
  width: 100%;
  min-height: 620px;
  object-fit: cover;
}

.process-list {
  padding: 0;
  margin: 38px 0 0;
  list-style: none;
}

.process-list li {
  display: grid;
  padding: 18px 0;
  border-top: var(--border);
  grid-template-columns: 38px 1fr;
  align-items: baseline;
}

.process-list span {
  color: var(--brass-light);
  font-family: var(--font-display);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.team-card {
  position: relative;
  min-height: 420px;
  display: flex;
  padding: 28px;
  border: var(--border);
  color: var(--ivory);
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(145deg, transparent 45%, rgb(183 138 74 / 0.09)),
    var(--charcoal);
  overflow: hidden;
}

.team-card::after {
  position: absolute;
  top: -40px;
  right: -42px;
  width: 180px;
  height: 300px;
  content: "";
  border: 1px solid rgb(183 138 74 / 0.14);
  transform: rotate(26deg);
}

.team-initial {
  color: rgb(208 173 114 / 0.24);
  font-family: var(--font-display);
  font-size: 8rem;
  line-height: 0.8;
}

.team-card h3 {
  margin-bottom: 6px;
}

.team-role {
  margin-bottom: 24px;
  color: var(--brass-light);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.surface-light .copy-muted,
.surface-light .address,
.surface-light .hours th {
  color: #5f594f;
}

.surface-light .team-card h3,
.surface-light .team-card .text-link {
  color: var(--ivory);
}

.review-layout {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: clamp(50px, 10vw, 150px);
}

.rating-big {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(5rem, 13vw, 11rem);
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.stars {
  color: var(--brass-light);
  letter-spacing: 0.14em;
}

.review-card {
  padding: 34px 0;
  border-top: var(--border);
}

.review-card blockquote {
  margin: 0 0 22px;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1.25;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  padding: 0;
  border: 0;
  grid-column: span 4;
  background: var(--charcoal);
  cursor: zoom-in;
  overflow: hidden;
}

.gallery-item.wide {
  grid-column: span 8;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms var(--ease), filter 300ms ease;
  filter: saturate(0.72);
}

.gallery-item:hover img {
  transform: scale(1.035);
  filter: saturate(1);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.location-copy {
  padding: clamp(54px, 8vw, 110px);
}

.location-media {
  min-height: 620px;
}

.location-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.address {
  margin: 28px 0;
  color: var(--stone);
  font-style: normal;
  font-size: 1.06rem;
}

.contact-direct {
  display: grid;
  margin: 0 0 30px;
  gap: 6px;
}

.contact-direct span {
  color: #6c6458;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-direct a {
  width: fit-content;
  color: var(--obsidian);
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  text-decoration-color: rgb(124 91 47 / 0.5);
  text-underline-offset: 6px;
}

.hours {
  width: 100%;
  border-collapse: collapse;
}

.hours th,
.hours td {
  padding: 14px 0;
  border-top: var(--border);
  text-align: left;
}

.hours th {
  color: var(--stone);
  font-weight: 500;
}

.hours td {
  text-align: right;
}

.final-cta {
  position: relative;
  padding: clamp(86px, 12vw, 160px) 0;
  isolation: isolate;
  overflow: hidden;
  text-align: center;
}

.final-cta::before {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  width: min(820px, 90vw);
  height: min(820px, 90vw);
  content: "";
  border: 1px solid rgb(183 138 74 / 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.final-cta h2,
.final-cta .lead {
  margin-inline: auto;
}

.final-cta .button-row {
  justify-content: center;
}

.page-hero {
  position: relative;
  padding: clamp(110px, 15vw, 210px) 0 clamp(72px, 10vw, 130px);
  border-bottom: var(--border);
  overflow: hidden;
}

.page-hero::after {
  position: absolute;
  z-index: -1;
  top: -18rem;
  right: -10rem;
  width: 44rem;
  height: 44rem;
  content: "";
  border: 1px solid rgb(183 138 74 / 0.16);
  border-radius: 50%;
}

.page-hero h1 {
  font-size: clamp(3.7rem, 8vw, 7rem);
}

.filters {
  position: sticky;
  z-index: 8;
  top: 70px;
  display: flex;
  padding: 16px 0;
  border-bottom: var(--border);
  gap: 10px;
  overflow-x: auto;
  background: rgb(9 10 9 / 0.95);
  scrollbar-width: none;
}

.filter {
  min-height: 42px;
  padding: 8px 16px;
  border: 1px solid rgb(243 239 231 / 0.16);
  color: var(--stone);
  background: transparent;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
}

.filter[aria-pressed="true"] {
  border-color: var(--brass);
  color: var(--obsidian);
  background: var(--brass-light);
}

.service-list {
  display: grid;
}

.service-row {
  display: grid;
  padding: 28px 0;
  border-top: var(--border);
  grid-template-columns: minmax(210px, 1.2fr) minmax(220px, 1fr) 140px 120px 150px;
  align-items: center;
  gap: 24px;
}

.service-row[hidden] {
  display: none;
}

.service-row h3 {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.06rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.35;
}

.service-row p {
  margin: 0;
  color: var(--stone);
  font-size: 0.9rem;
}

.service-row .price {
  font-family: var(--font-display);
  font-size: 1.4rem;
}

.service-note {
  display: flex;
  padding: 20px 0;
  border-top: var(--border);
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 0.78rem;
}

.timeline {
  position: relative;
  max-width: 930px;
  margin: 70px auto 0;
}

.timeline::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 24px;
  width: 1px;
  content: "";
  background: linear-gradient(var(--brass), rgb(183 138 74 / 0.06));
}

.timeline-item {
  position: relative;
  padding: 0 0 70px 90px;
}

.timeline-number {
  position: absolute;
  left: 0;
  width: 49px;
  height: 49px;
  display: grid;
  border: 1px solid var(--brass-dark);
  place-items: center;
  border-radius: 50%;
  color: var(--brass-light);
  background: var(--obsidian);
  font-family: var(--font-display);
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(50px, 10vw, 150px);
}

.content-grid aside {
  color: var(--brass-light);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.prose {
  max-width: 760px;
}

.prose h2 {
  margin: 1.4em 0 0.5em;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.prose h3 {
  margin: 1.5em 0 0.5em;
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.4;
}

.prose p,
.prose li {
  color: var(--stone);
}

.prose a {
  color: var(--brass-light);
}

.faq-list {
  max-width: 900px;
  margin-top: 54px;
}

.faq-item {
  border-top: var(--border);
}

.faq-item summary {
  position: relative;
  padding: 26px 50px 26px 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.3vw, 1.85rem);
  cursor: pointer;
  list-style: none;
}

.faq-item summary::after {
  position: absolute;
  top: 28px;
  right: 4px;
  content: "+";
  color: var(--brass-light);
  font-family: var(--font-body);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  max-width: 700px;
  padding-bottom: 28px;
  color: var(--stone);
}

.lightbox {
  width: min(1100px, calc(100% - 32px));
  max-width: none;
  padding: 0;
  border: 1px solid rgb(243 239 231 / 0.2);
  color: var(--ivory);
  background: var(--charcoal);
  box-shadow: var(--shadow);
}

.lightbox::backdrop {
  background: rgb(0 0 0 / 0.9);
  backdrop-filter: blur(8px);
}

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

.lightbox-bar {
  display: flex;
  padding: 14px 18px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.icon-button {
  width: 44px;
  height: 44px;
  border: var(--border);
  color: var(--ivory);
  background: transparent;
  cursor: pointer;
}

.site-footer {
  padding: 80px 0 110px;
  border-top: var(--border);
  background: #070807;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.7fr 0.7fr 1fr;
  gap: 50px;
}

.footer-brand img {
  display: block;
  width: 210px;
  height: 140px;
  object-fit: contain;
}

.footer-brand p {
  max-width: 320px;
  margin-top: 24px;
  color: var(--stone);
}

.footer-heading {
  margin-bottom: 18px;
  color: var(--brass-light);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-links li + li {
  margin-top: 9px;
}

.footer-links a {
  color: var(--stone);
  font-size: 0.88rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--ivory);
}

.footer-bottom {
  display: flex;
  padding-top: 48px;
  margin-top: 60px;
  border-top: var(--border);
  justify-content: space-between;
  gap: 30px;
  color: var(--muted);
  font-size: 0.75rem;
}

.mobile-actions {
  position: fixed;
  z-index: 45;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  padding: 10px max(16px, env(safe-area-inset-right)) calc(10px + env(safe-area-inset-bottom)) max(16px, env(safe-area-inset-left));
  border-top: var(--border);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  background: rgb(9 10 9 / 0.96);
  backdrop-filter: blur(14px);
}

.mobile-actions.is-hidden {
  transform: translateY(110%);
}

.button-whatsapp {
  border-color: #2ca76d;
  color: #fff;
  background: #167c4d;
}

.button-whatsapp:hover {
  background: #1b915a;
}

.button-whatsapp svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.button-call {
  border-color: rgb(208 173 114 / 0.58);
  color: var(--ivory);
  background: rgb(29 30 27 / 0.94);
}

.button-call:hover {
  background: rgb(183 138 74 / 0.16);
}

.button-call svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.cookie-banner {
  position: fixed;
  z-index: 80;
  right: 22px;
  bottom: 22px;
  width: min(430px, calc(100% - 44px));
  padding: 24px;
  border: 1px solid rgb(208 173 114 / 0.38);
  background: var(--charcoal);
  box-shadow: var(--shadow);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner p {
  margin-bottom: 18px;
  color: var(--stone);
  font-size: 0.88rem;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions .button {
  min-height: 42px;
  padding: 8px 14px;
  font-size: 0.7rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

@media (max-width: 1120px) {
  .site-nav {
    display: none;
  }

  .header-inner {
    grid-template-columns: 120px 1fr auto;
  }

  .menu-toggle {
    display: grid;
  }

  .nav-open .site-nav {
    position: absolute;
    z-index: 1;
    top: 100%;
    left: 50%;
    display: block;
    width: 100vw;
    max-width: none;
    height: calc(100dvh - 100%);
    padding: 50px 20px;
    background: #090a09;
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: translateX(-50%);
  }

  .nav-open .site-header {
    border-color: rgb(243 239 231 / 0.1);
    background: #090a09;
  }

  .nav-open .nav-list {
    width: min(720px, 100%);
    margin-inline: auto;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .nav-open .nav-link {
    display: block;
    padding: 17px 0;
    border-bottom: var(--border);
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 6vw, 3rem);
    font-weight: 400;
    letter-spacing: -0.02em;
    color: var(--ivory);
  }

  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .trust-item:nth-child(3) {
    border-right: 0;
  }

  .trust-item:nth-child(n + 4) {
    border-top: var(--border);
  }

  .trust-item.action {
    grid-column: span 2;
  }

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

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

  .standard-card:nth-child(2) {
    border-right: 0;
  }

  .standard-card:nth-child(n + 3) {
    border-top: var(--border);
  }

  .service-row {
    grid-template-columns: minmax(180px, 1fr) 120px 100px 140px;
  }

  .service-row p {
    display: none;
  }
}

@media (max-width: 820px) {
  :root {
    --container: min(100% - 32px, 1280px);
    --header-height: 72px;
  }

  body {
    padding-bottom: calc(80px + env(safe-area-inset-bottom));
  }

  .utility {
    display: none;
  }

  .header-inner {
    width: calc(100% - 32px);
    grid-template-columns: 96px 1fr auto;
    gap: 10px;
  }

  .brand {
    width: 87px;
    height: 58px;
  }

  .brand img {
    width: 87px;
    height: 58px;
  }

  .header-book {
    min-height: 42px;
    padding: 8px 12px;
    font-size: 0.68rem;
  }

  .header-whatsapp {
    display: none;
  }

  .nav-open .site-nav {
    padding: 28px 16px calc(110px + env(safe-area-inset-bottom));
  }

  .hero {
    min-height: calc(100svh - 72px);
  }

  .hero::after {
    background:
      linear-gradient(0deg, rgb(7 8 7 / 0.98) 0%, rgb(7 8 7 / 0.65) 75%, rgb(7 8 7 / 0.25)),
      linear-gradient(90deg, rgb(7 8 7 / 0.4), transparent);
  }

  .hero-media {
    object-position: 58% center;
  }

  .hero-content {
    padding: 90px 0 82px;
  }

  .trust-rail {
    width: 100%;
    margin-top: 0;
    border-right: 0;
    border-left: 0;
  }

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

  .trust-item {
    min-height: 105px;
    padding: 20px 16px;
  }

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(3) {
    border-right: var(--border);
  }

  .trust-item:nth-child(n + 3) {
    border-top: var(--border);
  }

  .trust-item.action {
    grid-column: span 2;
  }

  .section-heading-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .service-card,
  .service-card.featured {
    min-height: 420px;
    grid-column: span 12;
  }

  .editorial-split,
  .review-layout,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .editorial-image {
    order: 2;
  }

  .editorial-image img {
    min-height: 440px;
  }

  .gallery-grid {
    grid-auto-rows: 180px;
  }

  .gallery-item,
  .gallery-item.wide {
    grid-column: span 6;
  }

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

  .location-media {
    min-height: 420px;
  }

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

  .mobile-actions {
    display: grid;
    transition: transform 300ms var(--ease);
  }

  .mobile-actions .button {
    min-width: 0;
    min-height: 58px;
    padding: 7px 4px;
    flex-direction: column;
    gap: 3px;
    font-size: 0.68rem;
    letter-spacing: 0.02em;
    line-height: 1.1;
  }

  .mobile-actions .js-booking > span[aria-hidden="true"] {
    display: none;
  }

  .mobile-actions .button svg {
    width: 19px;
    height: 19px;
  }

  .cookie-banner {
    right: 16px;
    bottom: calc(90px + env(safe-area-inset-bottom));
    width: calc(100% - 32px);
  }

  .service-row {
    padding: 24px 0;
    grid-template-columns: 1fr auto;
    gap: 8px 18px;
  }

  .service-row h3 {
    padding-right: 18px;
  }

  .service-row .price {
    grid-column: 2;
    grid-row: 1;
  }

  .service-row .duration {
    grid-column: 1;
    grid-row: 2;
    color: var(--muted);
  }

  .service-row .text-link {
    grid-column: 2;
    grid-row: 2;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: clamp(3.25rem, 15vw, 4.35rem);
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button-row .button {
    width: 100%;
  }

  .header-book {
    display: none;
  }

  .header-inner {
    grid-template-columns: 96px 1fr auto;
  }

  .trust-item strong {
    font-size: 1.35rem;
  }

  .standard-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .standard-card {
    min-height: auto;
    border-right: 0;
    border-top: var(--border);
  }

  .standard-card:first-child {
    border-top: 0;
  }

  .standard-number {
    margin-bottom: 30px;
  }

  .team-card {
    min-height: 360px;
  }

  .gallery-grid {
    display: block;
  }

  .gallery-item,
  .gallery-item.wide,
  .gallery-item.tall {
    width: 100%;
    height: 280px;
    margin-bottom: 14px;
  }

  .location-copy {
    padding: 58px 20px;
  }

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

  .footer-bottom {
    flex-direction: column;
  }

  .service-note {
    flex-direction: column;
  }
}

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

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

@media print {
  .site-header,
  .utility,
  .mobile-actions,
  .cookie-banner,
  .site-footer {
    display: none !important;
  }

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