:root {
  --ink: #08090a;
  --ink-soft: #111315;
  --ink-raised: #17191b;
  --paper: #f2f4f3;
  --paper-dim: #aeb3b3;
  --rule: rgba(242, 244, 243, 0.23);
  --scarlet: #9f1023;
  --scarlet-hot: #dc3b50;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --condensed: "Arial Narrow", "Helvetica Neue Condensed", Impact, sans-serif;
  --serif: Didot, "Bodoni 72", Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
  background: var(--ink);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 99;
  pointer-events: none;
  opacity: 0.12;
  background-image: repeating-radial-gradient(circle at 30% 10%, rgba(255, 255, 255, 0.12) 0 0.45px, transparent 0.7px 4px);
  mix-blend-mode: soft-light;
}

::selection {
  background: var(--scarlet);
  color: #fff;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--paper);
  outline-offset: 5px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1200;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--paper);
  background: var(--paper);
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transform: translateY(calc(-100% - 20px));
}

.skip-link:focus {
  outline-color: var(--scarlet);
  transform: translateY(0);
}

.section-shell {
  width: min(100%, 1440px);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 64px);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: minmax(230px, 1fr) auto 1fr;
  align-items: center;
  min-height: 82px;
  padding: 0 clamp(20px, 3.2vw, 54px);
  border-bottom: 1px solid var(--rule);
  background: rgba(8, 9, 10, 0.89);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 14px;
}

.brand-seal {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.6);
  filter: grayscale(1) contrast(1.25);
}

.brand-name {
  font-family: var(--condensed);
  font-size: 25px;
  font-stretch: condensed;
  font-weight: 900;
  letter-spacing: 0.055em;
  line-height: 0.8;
  text-transform: uppercase;
}

.brand-name span {
  display: block;
  margin-left: 36px;
  color: var(--scarlet-hot);
}

.issue {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0;
  color: var(--paper-dim);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.issue::before,
.issue::after {
  content: "";
  width: 44px;
  height: 1px;
  background: var(--scarlet-hot);
}

.nav {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: clamp(15px, 1.8vw, 28px);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.nav > a:not(.nav-booking) {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--paper-dim);
  transition: color 180ms ease;
}

.nav-booking {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  min-height: 44px;
  padding: 0 17px;
  border: 1px solid var(--scarlet-hot);
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 140ms var(--ease-out);
}

.nav-booking > span,
.mobile-booking a:last-child > span {
  display: inline-block;
  transition: transform 180ms var(--ease-out);
  animation: booking-arrow-cue 680ms var(--ease-out) 850ms 1;
}

.mobile-section-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: min(840px, calc(100svh - 82px));
  overflow: hidden;
  padding: clamp(38px, 5vw, 76px) clamp(20px, 4vw, 64px) 54px;
  border-bottom: 1px solid var(--rule);
  background:
    radial-gradient(circle at 74% 40%, rgba(255, 255, 255, 0.07), transparent 28%),
    linear-gradient(135deg, #08090a 0%, #0b0c0d 58%, #050606 100%);
  isolation: isolate;
}

.side-note {
  position: absolute;
  left: 10px;
  top: 150px;
  z-index: 5;
  margin: 0;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: var(--paper-dim);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-copy {
  position: relative;
  z-index: 7;
  width: min(68vw, 990px);
  animation: hero-in 720ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.kicker,
.eyebrow {
  margin: 0;
  color: var(--paper-dim);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.kicker {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: clamp(26px, 4vw, 52px);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--scarlet-hot);
  box-shadow: 0 0 0 5px rgba(195, 23, 47, 0.14);
}

.hero h1,
.section-heading h2,
.editorial h2,
.contacts h2 {
  margin: 0;
  font-family: var(--condensed);
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 1000px;
  font-size: clamp(68px, 7.1vw, 96px);
  line-height: 0.77;
}

.hero h1 > span,
.hero h1 > em {
  display: block;
}

.hero h1 > em {
  position: relative;
  z-index: 2;
  margin: 0.18em 0 0.12em 1.1em;
  color: var(--scarlet-hot);
  font-family: var(--serif);
  font-size: 1.02em;
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.04em;
  line-height: 0.65;
  text-transform: lowercase;
}

.hero-last-line {
  font-size: 0.87em;
  white-space: nowrap;
}

.hero-services {
  max-width: 680px;
  margin: 30px 0 0;
  color: rgba(242, 244, 243, 0.86);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

.hero-meta {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1.35fr;
  width: min(100%, 760px);
  margin: clamp(38px, 5vw, 66px) 0 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.hero-meta div {
  min-height: 76px;
  padding: 15px 18px 13px;
  border-right: 1px solid var(--rule);
}

.hero-meta div:first-child {
  padding-left: 0;
}

.hero-meta div:last-child {
  border-right: 0;
}

.hero-meta dt {
  margin-bottom: 8px;
  color: var(--paper-dim);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-meta dd {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.1;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 27px;
}

.primary-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 360px);
  min-height: 66px;
  padding: 0 24px;
  overflow: hidden;
  background: var(--scarlet);
  color: #fff;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition:
    color 180ms ease,
    transform 140ms var(--ease-out);
}

.primary-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-102%);
  background: var(--paper);
  transition: transform 240ms var(--ease-out);
}

.primary-cta > span {
  position: relative;
  z-index: 1;
}

.cta-arrow {
  font-size: 24px;
  font-weight: 300;
  transition: transform 180ms var(--ease-out);
}

.hero-action-details {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 5px;
}

.hero-call {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--paper);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-decoration: underline;
  text-decoration-color: var(--scarlet-hot);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
  text-transform: uppercase;
}

.hero-address {
  margin: 0;
  color: var(--paper);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

.hero-address span {
  display: block;
  color: var(--paper-dim);
  font-weight: 600;
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-portrait {
  position: absolute;
  top: clamp(30px, 4vw, 62px);
  right: clamp(20px, 3.5vw, 58px);
  width: min(38vw, 560px);
  height: calc(100% - clamp(58px, 8vw, 116px));
  min-height: 600px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(242, 244, 243, 0.34);
  background: var(--ink-soft);
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%, 0 10%);
}

.hero-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 9, 10, 0.55), transparent 45%), linear-gradient(0deg, rgba(8, 9, 10, 0.85), transparent 38%);
}

.hero-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% 40%;
  filter: grayscale(0.78) contrast(1.15) brightness(0.73);
  transform: scale(1.045);
}

.hero-portrait picture,
.process-shot picture,
.editorial-image picture,
.gallery-card picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-portrait figcaption {
  position: absolute;
  right: 22px;
  bottom: 18px;
  z-index: 3;
  color: rgba(255, 255, 255, 0.76);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.portrait-number {
  position: absolute;
  left: -28px;
  bottom: -6px;
  z-index: 3;
  color: var(--scarlet-hot);
  font-family: var(--serif);
  font-size: clamp(86px, 9vw, 142px);
  font-style: italic;
  line-height: 1;
}

.process-shot {
  position: absolute;
  right: min(35.5vw, 530px);
  bottom: 45px;
  width: clamp(170px, 16vw, 240px);
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(242, 244, 243, 0.45);
  background: var(--ink-soft);
  box-shadow: 18px 18px 0 rgba(8, 9, 10, 0.75);
  transform: rotate(-2deg);
}

.process-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% 44%;
  filter: grayscale(1) contrast(1.28) brightness(0.68);
}

.process-shot span {
  position: absolute;
  left: 14px;
  bottom: 13px;
  padding: 5px 8px;
  background: var(--scarlet);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.editorial-slash {
  position: absolute;
  top: -48px;
  right: min(45vw, 670px);
  width: 2px;
  height: 310px;
  background: var(--scarlet-hot);
  box-shadow: 0 0 18px rgba(195, 23, 47, 0.22);
  transform: rotate(38deg);
}

.ticker {
  overflow: hidden;
  border-bottom: 1px solid var(--rule);
  background: var(--scarlet);
}

.ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  min-height: 58px;
  animation: ticker-move 28s linear infinite;
}

.ticker-track span {
  padding-inline: 28px;
  font-family: var(--condensed);
  font-size: 23px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ticker-track b {
  color: var(--ink);
  font-size: 13px;
}

.services,
.editorial,
.gallery,
.reviews {
  padding-top: clamp(82px, 10vw, 148px);
  padding-bottom: clamp(82px, 10vw, 148px);
}

.section-heading {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) minmax(240px, 360px);
  align-items: start;
  gap: clamp(20px, 3vw, 44px);
  margin-bottom: clamp(56px, 7vw, 92px);
}

.section-index {
  color: var(--scarlet-hot);
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
}

.section-heading .eyebrow,
.editorial-copy .eyebrow,
.contacts-copy .eyebrow {
  margin-bottom: 15px;
}

.section-heading h2,
.editorial h2,
.contacts h2 {
  font-size: clamp(54px, 6.2vw, 96px);
  line-height: 0.86;
}

.section-heading h2 em,
.editorial h2 em,
.contacts h2 em {
  color: var(--scarlet-hot);
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.04em;
  text-transform: lowercase;
}

.section-intro {
  align-self: end;
  margin: 0 0 3px;
  color: var(--paper-dim);
  font-size: 15px;
  line-height: 1.65;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--rule);
}

.service {
  position: relative;
  display: grid;
  grid-template-columns: minmax(85px, 0.35fr) 1fr auto;
  grid-template-rows: auto auto;
  gap: 8px 20px;
  align-items: center;
  min-height: 142px;
  padding: 26px clamp(18px, 2.5vw, 34px) 28px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
  transition:
    background-color 180ms ease,
    transform 140ms var(--ease-out);
}

.service:nth-child(even) {
  border-right: 0;
}

.service:focus-visible {
  z-index: 1;
  outline-color: var(--scarlet-hot);
  outline-offset: -3px;
}

.service-code {
  grid-row: 1 / 3;
  align-self: start;
  color: var(--paper-dim);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service h3 {
  margin: 0;
  font-size: clamp(18px, 1.6vw, 23px);
  line-height: 1.1;
}

.service p {
  margin: 0;
  color: var(--paper-dim);
  font-size: 12px;
}

.service strong {
  grid-row: 1 / 3;
  grid-column: 3;
  color: var(--scarlet-hot);
  font-family: var(--serif);
  font-size: clamp(24px, 2.25vw, 36px);
  font-style: italic;
  font-weight: 400;
  white-space: nowrap;
}

.service-line {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  transform: translateX(-101%);
  background: var(--scarlet-hot);
  transition: transform 240ms var(--ease-out);
}

.services-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 28px;
}

.services-footer p {
  margin: 0;
  color: var(--paper-dim);
  font-size: 13px;
}

.nearby {
  margin-top: 44px;
}

.nearby-heading {
  margin-bottom: 38px;
}

.nearby-heading h3 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 0.92;
}

.nearby-heading p:last-child {
  max-width: 56ch;
  margin: 18px 0 0;
  color: var(--paper-dim);
  font-size: 14px;
  line-height: 1.7;
}

.nearby-groups {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--rule);
}

.nearby-group {
  display: grid;
  align-content: start;
  gap: 28px;
  min-width: 0;
  padding: 28px clamp(18px, 2.6vw, 34px) 0;
  border-right: 1px solid var(--rule);
}

.nearby-group:last-child {
  border-right: 0;
}

.nearby-group-copy h4 {
  margin: 0;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.05;
}

.nearby-group-copy p:last-child {
  margin: 16px 0 0;
  color: var(--paper-dim);
  font-size: 13px;
  line-height: 1.7;
}

.nearby-links {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--rule);
  list-style: none;
}

.nearby-links li {
  border-bottom: 1px solid var(--rule);
}

.nearby-links a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 18px;
  min-height: 94px;
  padding: 18px 0 20px;
  color: var(--paper);
  text-decoration: none;
  transition:
    color 160ms ease,
    transform 140ms var(--ease-out);
}

.nearby-links a:focus-visible {
  outline-color: var(--scarlet-hot);
  outline-offset: 5px;
}

.nearby-links span {
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.08;
}

.nearby-links strong {
  align-self: start;
  color: var(--scarlet-hot);
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 28px);
  font-style: italic;
  font-weight: 400;
  text-align: right;
  white-space: nowrap;
}

.nearby-links small {
  grid-column: 1 / -1;
  color: var(--paper-dim);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding-bottom: 7px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: transform 140ms var(--ease-out);
}

.text-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  transform-origin: right;
  background: var(--scarlet-hot);
  transition: transform 180ms var(--ease-out);
}

.editorial {
  width: 100%;
  max-width: none;
  padding-inline: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--ink-soft);
}

.editorial-grid {
  display: grid;
  grid-template-columns: minmax(270px, 0.85fr) minmax(360px, 1.05fr) minmax(220px, 0.6fr);
  gap: clamp(26px, 4vw, 64px);
  width: min(100%, 1440px);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 64px);
}

.editorial-image {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.editorial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.95) contrast(1.12) brightness(0.73);
  transition: transform 260ms var(--ease-out);
}

.editorial-image figcaption,
.gallery-card figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 7px 9px;
  background: var(--scarlet);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.editorial-image-main {
  height: 650px;
  clip-path: polygon(9% 0, 100% 0, 100% 100%, 0 100%, 0 9%);
}

.editorial-image-detail {
  height: 380px;
  align-self: end;
  transform: translateY(36px);
}

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

.editorial-copy .section-index {
  display: block;
  margin-bottom: 70px;
}

.editorial-lead {
  max-width: 600px;
  margin: 36px 0 50px;
  color: var(--paper-dim);
  font-size: clamp(16px, 1.5vw, 21px);
  line-height: 1.6;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--rule);
  list-style: none;
}

.feature-list li {
  display: flex;
  gap: 16px;
  min-height: 68px;
  align-items: center;
  border-bottom: 1px solid var(--rule);
  font-size: 13px;
  font-weight: 700;
}

.feature-list li:nth-child(odd) {
  border-right: 1px solid var(--rule);
}

.feature-list span {
  color: var(--scarlet-hot);
  font-family: var(--serif);
  font-style: italic;
}

.gallery-heading {
  grid-template-columns: auto 1fr;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  grid-template-rows: 300px 300px;
  gap: clamp(14px, 2vw, 28px);
}

.gallery-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--ink-soft);
}

.gallery-card-tall {
  grid-row: 1 / 3;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.72) contrast(1.1) brightness(0.76);
  transition: transform 260ms var(--ease-out);
}

.gallery-card-wide img {
  object-position: center 38%;
}

.gallery-card-square img {
  object-position: center 29%;
}

.gallery-card figcaption {
  right: auto;
  left: 14px;
  max-width: calc(100% - 28px);
}

.gallery-card figcaption span {
  margin-right: 13px;
  color: rgba(255, 255, 255, 0.66);
}

.reviews {
  border-top: 1px solid var(--rule);
}

.rating-link {
  align-self: end;
  justify-self: end;
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  min-height: 44px;
  transition:
    color 180ms ease,
    transform 140ms var(--ease-out);
}

.rating-link strong {
  color: var(--scarlet-hot);
  font-family: var(--serif);
  font-size: 54px;
  font-style: italic;
  font-weight: 400;
  line-height: 0.8;
}

.rating-link span {
  color: var(--paper-dim);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.reviews-carousel {
  border-top: 1px solid var(--rule);
}

.reviews-editorial-note {
  max-width: 62ch;
  margin: 16px 0 0;
  color: var(--paper-dim);
  font-size: 12px;
  line-height: 1.5;
}

.reviews-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  min-height: 72px;
  padding: 10px 0;
  border-bottom: 1px solid var(--rule);
}

.reviews-controls button {
  display: grid;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--rule);
  background: transparent;
  color: var(--paper);
  cursor: pointer;
  place-items: center;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    transform 140ms var(--ease-out);
}

.reviews-controls button span {
  font-size: 21px;
  line-height: 1;
}

.reviews-controls button:disabled {
  border-color: rgba(242, 244, 243, 0.1);
  color: rgba(242, 244, 243, 0.28);
  cursor: default;
}

.reviews-status {
  min-width: 78px;
  color: var(--paper-dim);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-align: center;
  text-transform: uppercase;
}

.review-list {
  display: grid;
  grid-auto-columns: 100%;
  grid-auto-flow: column;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--scarlet-hot) transparent;
  scrollbar-width: thin;
}

.review {
  position: relative;
  min-height: clamp(310px, 33vw, 430px);
  margin: 0;
  padding: clamp(42px, 5vw, 72px) clamp(22px, 6vw, 92px) 38px;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.review-list:focus-visible {
  outline-color: var(--scarlet-hot);
  outline-offset: 4px;
}

.quote-mark {
  color: var(--scarlet-hot);
  font-family: var(--serif);
  font-size: 82px;
  font-style: italic;
  line-height: 0.5;
}

.review blockquote {
  max-width: 28ch;
  margin: 42px 0 65px;
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 58px);
  font-style: italic;
  letter-spacing: -0.025em;
  line-height: 1.04;
  text-wrap: balance;
}

.review figcaption {
  position: absolute;
  right: clamp(22px, 6vw, 92px);
  bottom: 32px;
  left: clamp(22px, 6vw, 92px);
  color: var(--paper-dim);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.review figcaption span {
  margin-right: 12px;
  color: var(--scarlet-hot);
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
}

.review figcaption a {
  color: var(--paper);
  transition: color 180ms ease;
}

.contacts {
  overflow: hidden;
  background: var(--scarlet);
  color: #fff;
}

.contacts-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: clamp(24px, 4vw, 58px);
  padding-top: clamp(78px, 9vw, 130px);
  padding-bottom: clamp(66px, 8vw, 112px);
}

.contacts .section-index,
.contacts .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.contacts h2 {
  max-width: 850px;
}

.contacts h2 em {
  display: block;
  color: var(--ink);
}

.contact-phone {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: 44px;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.58);
  font-size: clamp(21px, 2.3vw, 34px);
  font-weight: 800;
  letter-spacing: -0.03em;
  transition: transform 140ms var(--ease-out);
}

.contacts-actions {
  align-self: end;
}

.primary-cta-light {
  width: 100%;
  background: var(--paper);
  color: var(--ink);
}

.primary-cta-light::before {
  background: var(--ink);
}

.contact-links {
  display: grid;
  gap: 14px;
  margin-top: 25px;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-links a {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 44px;
  transition:
    color 180ms ease,
    transform 140ms var(--ease-out);
}

.contact-facts {
  grid-column: 2 / 4;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 70px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.42);
}

.contact-facts div {
  padding: 21px 20px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.42);
}

.contact-facts div:first-child {
  padding-left: 0;
}

.contact-facts div:last-child {
  border-right: 0;
}

.contact-facts dt {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-facts dd {
  margin: 0;
  font-size: 13px;
  font-weight: 750;
}

.footer {
  display: grid;
  grid-template-columns: auto minmax(150px, 1fr) minmax(310px, auto) auto;
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
  min-height: 148px;
  padding-top: 26px;
  padding-bottom: 26px;
  border-top: 1px solid var(--rule);
  color: var(--paper-dim);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-brand .brand-name {
  color: var(--paper);
}

.footer-brand {
  min-height: 44px;
}

.footer-location {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.footer p {
  margin: 0;
}

.footer p:last-child {
  justify-self: end;
  white-space: nowrap;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2px 18px;
}

.footer-legal a,
.footer-legal button {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--paper-dim);
  font: inherit;
  letter-spacing: inherit;
  text-align: left;
  text-transform: inherit;
  cursor: pointer;
  transition: color 180ms ease;
}

body.booking-open {
  overflow: hidden;
}

body.booking-open::before {
  opacity: 0;
}

body.booking-open .mobile-booking,
body.booking-open .nav-booking {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

body.cookie-banner-open .mobile-booking {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
  visibility: hidden;
}

.cookie-banner {
  position: fixed;
  right: clamp(16px, 3vw, 42px);
  bottom: clamp(16px, 3vw, 34px);
  left: clamp(16px, 3vw, 42px);
  z-index: 95;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  width: min(900px, calc(100% - clamp(32px, 6vw, 84px)));
  margin-inline: auto;
  padding: 20px 22px;
  border: 1px solid rgba(242, 244, 243, 0.3);
  background: #111315;
  color: var(--paper);
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 220ms var(--ease-out),
    transform 220ms var(--ease-out);
}

.cookie-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cookie-banner-copy {
  align-self: center;
}

.cookie-banner-copy strong {
  display: block;
  margin-bottom: 7px;
  font-family: var(--condensed);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cookie-banner-copy p {
  max-width: 66ch;
  margin: 0;
  color: var(--paper-dim);
  font-size: 12px;
  line-height: 1.55;
  text-wrap: pretty;
}

.cookie-banner-copy a {
  color: var(--paper);
  text-decoration: underline;
  text-decoration-color: rgba(242, 244, 243, 0.42);
  text-underline-offset: 3px;
}

.cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cookie-banner-actions button {
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid rgba(242, 244, 243, 0.3);
  background: transparent;
  color: var(--paper);
  font: inherit;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    transform 140ms var(--ease-out);
}

.cookie-banner-actions [data-cookie-acknowledge] {
  border-color: var(--scarlet);
  background: var(--scarlet);
  color: #fff;
}

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 220ms var(--ease-out),
    visibility 0s linear 240ms;
}

.booking-modal.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition-delay: 0s;
}

.booking-modal-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: rgba(3, 4, 5, 0.84);
  cursor: default;
  backdrop-filter: blur(14px);
}

.booking-modal-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  width: min(1040px, 100%);
  height: min(860px, calc(100dvh - 48px));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: #f1f1ef;
  color: var(--ink);
  box-shadow: 0 38px 110px rgba(0, 0, 0, 0.62);
  opacity: 0;
  transform: translateY(22px) scale(0.985);
  transition:
    opacity 220ms var(--ease-out),
    transform 280ms var(--ease-out);
  overscroll-behavior: contain;
}

.booking-modal.is-open .booking-modal-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.booking-modal-header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
  min-height: 112px;
  padding: 16px clamp(18px, 2.7vw, 38px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: var(--ink);
  color: var(--paper);
}

.booking-modal-header p,
.booking-modal-footer {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.booking-modal-header p {
  margin: 0 0 5px;
  color: var(--paper-dim);
}

.booking-modal-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-width: 92px;
  height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: transparent;
  color: var(--paper);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    transform 140ms var(--ease-out);
}

.booking-modal-back span:first-child {
  color: var(--scarlet-hot);
  font-size: 18px;
  line-height: 1;
}

.booking-modal-back:focus-visible {
  outline: 2px solid var(--paper);
  outline-offset: 4px;
}

.booking-modal-header h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.94;
}

.booking-modal-header h2 em {
  color: var(--scarlet-hot);
  font-weight: 400;
}

.booking-modal-close {
  display: grid;
  width: 50px;
  height: 50px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: transparent;
  color: var(--paper);
  cursor: pointer;
  place-items: center;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    transform 140ms var(--ease-out);
}

.booking-modal-close span {
  margin-top: -3px;
  font-family: var(--sans);
  font-size: 32px;
  font-weight: 200;
  line-height: 1;
}

.booking-modal-close:focus-visible {
  outline: 2px solid var(--paper);
  outline-offset: 4px;
}

.booking-frame-shell {
  position: relative;
  min-height: 0;
  overflow: hidden;
  background: #e7e7e5;
}

.booking-frame-shell iframe {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #fff;
  opacity: 0;
  transition: opacity 180ms var(--ease-out);
}

.booking-modal.is-loaded .booking-frame-shell iframe {
  opacity: 1;
}

.booking-frame-loading {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #555;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: opacity 180ms var(--ease-out);
}

.booking-frame-loading span {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(8, 9, 10, 0.2);
  border-top-color: var(--scarlet-hot);
  border-radius: 50%;
  animation: booking-spin 700ms linear infinite;
}

.booking-modal.is-loaded .booking-frame-loading {
  opacity: 0;
  pointer-events: none;
}

.booking-modal.is-error .booking-frame-shell iframe {
  opacity: 0;
  pointer-events: none;
}

.booking-modal.is-error .booking-frame-loading {
  opacity: 0;
  pointer-events: none;
}

.booking-frame-error {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: none;
  align-content: center;
  justify-items: center;
  gap: 28px;
  padding: clamp(28px, 6vw, 72px);
  background:
    radial-gradient(circle at 50% 26%, rgba(220, 59, 80, 0.09), transparent 34%),
    #f1f1ef;
  color: var(--ink);
}

.booking-frame-error:not([hidden]) {
  display: grid;
  animation: booking-state-in 180ms var(--ease-out) both;
}

.booking-frame-error-copy {
  max-width: 520px;
  text-align: center;
}

.booking-frame-error-copy :is(h3, strong) {
  display: block;
  max-width: 460px;
  margin: 0 auto;
  font-family: var(--condensed);
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.92;
  text-transform: uppercase;
  text-wrap: balance;
}

.booking-frame-error-copy p {
  max-width: 54ch;
  margin: 20px auto 0;
  color: #555c5c;
  font-size: 14px;
  line-height: 1.65;
  text-wrap: pretty;
}

.booking-frame-error-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.booking-fallback-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(8, 9, 10, 0.28);
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 140ms var(--ease-out);
}

.booking-fallback-action-primary {
  border-color: var(--scarlet);
  background: var(--scarlet);
  color: #fff;
}

.booking-fallback-action:focus-visible {
  outline-color: var(--ink);
}

.booking-modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 52px;
  padding: 10px clamp(18px, 2.7vw, 38px);
  border-top: 1px solid rgba(8, 9, 10, 0.15);
  color: #666;
}

.booking-modal-footer > span {
  margin-right: auto;
}

.booking-modal-footer a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--ink);
  transition:
    color 180ms ease,
    transform 140ms var(--ease-out);
}

.mobile-booking {
  display: none;
  transition: opacity 180ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .nav > a:not(.nav-booking):hover {
    color: var(--paper);
  }

  .nav-booking:hover {
    border-color: var(--scarlet);
    background: var(--scarlet);
  }

  .nav-booking:hover > span {
    transform: translateX(4px);
  }

  .primary-cta:hover {
    color: var(--ink);
    transform: translateY(-2px);
  }

  .primary-cta:hover::before {
    transform: translateX(0);
  }

  .primary-cta:hover .cta-arrow {
    transform: translateX(6px);
  }

  .service:hover .service-line {
    transform: translateX(0);
  }

  .service:hover {
    background: rgba(242, 244, 243, 0.025);
  }

  .nearby-links a:hover {
    color: #fff;
    transform: translateX(6px);
  }

  .text-link:hover::after {
    transform: scaleX(0.3);
  }

  .editorial-image:hover img,
  .gallery-card:hover img {
    transform: scale(1.018);
  }

  .rating-link:hover {
    color: var(--paper);
    transform: translateY(-1px);
  }

  .review figcaption a:hover,
  .footer-legal :is(a, button):hover {
    color: var(--paper);
  }

  .reviews-controls button:not(:disabled):hover {
    border-color: var(--scarlet);
    background: var(--scarlet);
  }

  .cookie-banner-actions button:hover {
    border-color: var(--paper);
  }

  .cookie-banner-actions [data-cookie-acknowledge]:hover {
    border-color: var(--paper);
    background: var(--paper);
    color: var(--ink);
  }

  .primary-cta-light:hover {
    color: var(--paper);
  }

  .contact-links a:hover {
    transform: translateX(3px);
  }

  .booking-modal-back:hover {
    border-color: var(--scarlet);
    background: var(--scarlet);
    transform: translateX(-2px);
  }

  .booking-modal-back:hover span:first-child {
    color: var(--paper);
  }

  .booking-modal-close:hover {
    border-color: var(--scarlet);
    background: var(--scarlet);
    transform: rotate(4deg);
  }

  .booking-modal-footer a:hover {
    color: var(--scarlet);
  }

  .booking-fallback-action:hover {
    border-color: var(--scarlet);
    color: var(--scarlet);
  }

  .booking-fallback-action-primary:hover {
    border-color: var(--ink);
    background: var(--ink);
    color: var(--paper);
  }
}

:where(
  .nav-booking,
  .primary-cta,
  .text-link,
  .rating-link,
  .contact-phone,
  .contact-links a,
  .mobile-booking a,
  .booking-modal-back,
  .booking-modal-close,
  .booking-modal-footer a,
  .booking-fallback-action,
  .reviews-controls button:not(:disabled),
  .cookie-banner-actions button,
  .footer-legal button
):active {
  transform: scale(0.97);
  transition-duration: 120ms;
}

.service:active {
  background: rgba(220, 59, 80, 0.08);
  transform: scale(0.995);
  transition-duration: 120ms;
}

@keyframes booking-spin {
  to { transform: rotate(360deg); }
}

@keyframes booking-state-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes booking-arrow-cue {
  0%, 100% { transform: translateX(0); }
  55% { transform: translateX(6px); }
}

@keyframes hero-in {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes booking-loading-breathe {
  0%, 100% { opacity: 0.45; }
  50% { opacity: 1; }
}

@keyframes ticker-move {
  to { transform: translateX(-50%); }
}

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

  .topbar {
    grid-template-columns: 1fr auto;
  }

  .hero-copy {
    width: 72vw;
  }

  .hero-portrait {
    width: 42vw;
  }

  .process-shot {
    right: 38vw;
  }

  .editorial-grid {
    grid-template-columns: 0.75fr 1.25fr;
  }

  .editorial-image-detail {
    display: none;
  }
}

@media (min-width: 901px) and (max-width: 1120px) {
  .hero-copy {
    width: 59vw;
  }

  .hero h1 {
    font-size: clamp(72px, 7.7vw, 88px);
  }

  .hero-meta,
  .hero-actions {
    width: 86%;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .hero-portrait {
    width: 40vw;
  }

  .process-shot {
    display: none;
  }
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 122px;
    scroll-padding-bottom: calc(76px + env(safe-area-inset-bottom));
  }

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

  .topbar {
    grid-template-columns: 1fr;
    min-height: 70px;
    padding-inline: 18px;
  }

  .brand-seal {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .brand-name {
    font-size: 20px;
  }

  .brand-name span {
    margin-left: 28px;
  }

  .nav {
    display: none;
  }

  .mobile-section-nav {
    position: sticky;
    top: 70px;
    z-index: 70;
    display: flex;
    align-items: center;
    min-height: 44px;
    padding-inline: 6px;
    overflow-x: auto;
    border-bottom: 1px solid var(--rule);
    background: var(--ink-soft);
    scrollbar-width: none;
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
  }

  .mobile-section-nav::-webkit-scrollbar {
    display: none;
  }

  .mobile-section-nav a {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    min-height: 44px;
    padding-inline: 14px;
    border-right: 1px solid var(--rule);
    color: var(--paper-dim);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
  }

  .mobile-section-nav a:last-child {
    border-right: 0;
  }

  .mobile-section-nav a:focus-visible {
    outline-color: var(--scarlet-hot);
    outline-offset: -3px;
  }

  .mobile-section-nav a:active {
    background: rgba(220, 59, 80, 0.08);
    color: var(--paper);
  }

  .hero {
    display: grid;
    align-items: start;
    min-height: calc(100svh - 70px);
    padding: 24px 18px 28px;
  }

  .side-note,
  .editorial-slash {
    display: none;
  }

  .hero-copy {
    align-self: start;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 660px;
  }

  .kicker {
    margin-bottom: 14px;
    color: rgba(242, 244, 243, 0.9);
    font-size: 10px;
    letter-spacing: 0.13em;
  }

  .hero h1 {
    max-width: 9ch;
    font-size: clamp(46px, 14vw, 66px);
    line-height: 0.84;
  }

  .hero h1 > em {
    margin: 0.18em 0 0.14em 0.68em;
  }

  .hero-last-line {
    font-size: 0.79em;
    white-space: normal;
  }

  .hero-services {
    max-width: 35ch;
    margin-top: 16px;
    color: rgba(242, 244, 243, 0.92);
    font-size: 13px;
    line-height: 1.35;
  }

  .hero-visual {
    position: absolute;
    inset: 0;
    height: auto;
    margin: 0;
  }

  .hero-portrait {
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
    border: 0;
    clip-path: none;
  }

  .hero-portrait::after {
    background:
      linear-gradient(180deg, rgba(8, 9, 10, 0.58) 0%, rgba(8, 9, 10, 0.72) 48%, rgba(8, 9, 10, 0.98) 100%),
      linear-gradient(90deg, rgba(8, 9, 10, 0.48), transparent 78%);
  }

  .hero-portrait img {
    object-position: 50% 32%;
    filter: grayscale(0.78) contrast(1.12) brightness(0.58);
    transform: scale(1.025);
  }

  .portrait-number,
  .hero-portrait figcaption,
  .process-shot {
    display: none;
  }

  .hero-meta {
    order: 2;
    grid-template-columns: 1.2fr 0.65fr 1.25fr;
    margin-top: 16px;
    background: rgba(8, 9, 10, 0.34);
  }

  .hero-meta div {
    min-height: 62px;
    padding: 11px 10px 9px;
  }

  .hero-meta div:first-child {
    padding-left: 0;
  }

  .hero-meta div:last-child {
    grid-column: auto;
    border-top: 0;
  }

  .hero-meta dt {
    margin-bottom: 5px;
    font-size: 8px;
  }

  .hero-meta dd {
    font-size: 13px;
  }

  .hero-actions {
    order: 1;
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
    margin-top: 14px;
  }

  .primary-cta {
    width: 100%;
    min-height: 58px;
  }

  .hero-action-details {
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    gap: 16px;
  }

  .hero-call {
    flex: 0 0 auto;
  }

  .hero-address {
    font-size: 11px;
    text-align: right;
  }

  .section-heading {
    grid-template-columns: auto 1fr;
  }

  .section-intro,
  .rating-link {
    grid-column: 2;
    justify-self: start;
    margin-top: 24px;
  }

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

  .service,
  .service:nth-child(even) {
    border-right: 0;
  }

  .nearby-groups {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nearby-group:nth-child(even) {
    border-right: 0;
  }

  .nearby-group:last-child {
    grid-column: 1 / -1;
    border-right: 0;
  }

  .editorial-grid {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .editorial-image-main {
    height: 560px;
  }

  .gallery-grid {
    grid-template-rows: 240px 240px;
  }

  .review {
    min-height: 300px;
    border: 0;
  }

  .contacts-inner {
    grid-template-columns: auto 1fr;
  }

  .contacts-actions {
    grid-column: 2;
    width: 100%;
  }

  .contact-facts {
    grid-column: 2;
    grid-template-columns: 1fr;
    margin-top: 45px;
  }

  .contact-facts div,
  .contact-facts div:first-child {
    padding: 17px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.34);
  }

  .mobile-booking {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 90;
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    min-height: calc(64px + env(safe-area-inset-bottom));
    padding: 6px 6px calc(6px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--rule);
    background: rgba(8, 9, 10, 0.94);
    backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(100%);
    visibility: hidden;
    transition:
      opacity 180ms var(--ease-out),
      transform 220ms var(--ease-out),
      visibility 0s linear 220ms;
  }

  .mobile-booking.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
    transition-delay: 0s;
  }

  .mobile-booking a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .mobile-booking a:first-child {
    color: var(--paper-dim);
  }

  .mobile-booking a:last-child {
    justify-content: space-between;
    padding-inline: 22px;
    background: var(--scarlet);
    color: #fff;
  }

  .footer {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .footer-legal {
    grid-column: 1;
    justify-content: flex-start;
  }

  .cookie-banner {
    right: 10px;
    bottom: calc(76px + env(safe-area-inset-bottom));
    left: 10px;
    grid-template-columns: 1fr;
    gap: 14px;
    width: auto;
    max-height: calc(100dvh - 100px - env(safe-area-inset-bottom));
    padding: 17px;
    overflow-y: auto;
  }

  .cookie-banner-actions {
    justify-content: flex-end;
  }

  .booking-modal {
    padding: 0;
  }

  .booking-modal-panel {
    width: 100%;
    height: 100dvh;
    border: 0;
    box-shadow: none;
    transform: translateY(18px);
  }

  .booking-modal-header {
    gap: 14px;
    min-height: 78px;
    padding: calc(10px + env(safe-area-inset-top)) 14px 10px;
  }

  .booking-modal-header h2 {
    font-size: clamp(24px, 7vw, 32px);
    line-height: 0.95;
  }

  .booking-modal-close {
    width: 46px;
    height: 46px;
  }

  .booking-modal-back {
    min-width: 78px;
    height: 46px;
    padding-inline: 11px;
  }

  .booking-modal-footer {
    min-height: calc(48px + env(safe-area-inset-bottom));
    padding: 8px 14px calc(8px + env(safe-area-inset-bottom));
  }

  .booking-modal-footer > span {
    display: none;
  }

  .booking-modal-footer a {
    margin-left: 0;
  }

  .booking-modal-footer a:first-of-type {
    margin-left: auto;
  }
}

@media (max-width: 620px) {
  .services,
  .editorial,
  .gallery,
  .reviews {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .section-heading {
    gap: 16px;
    margin-bottom: 45px;
  }

  .section-heading h2,
  .editorial h2,
  .contacts h2 {
    font-size: clamp(48px, 15vw, 68px);
  }

  .service {
    grid-template-columns: 58px 1fr auto;
    gap: 7px 10px;
    min-height: 128px;
    padding: 23px 0 24px;
  }

  .service strong {
    font-size: 26px;
  }

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

  .nearby-groups {
    grid-template-columns: 1fr;
  }

  .nearby-group,
  .nearby-group:nth-child(even),
  .nearby-group:last-child {
    grid-column: auto;
    padding-inline: 0;
    border-right: 0;
  }

  .nearby-group {
    padding-top: 24px;
  }

  .nearby-heading h3 {
    max-width: 11ch;
    font-size: clamp(30px, 10vw, 46px);
  }

  .nearby-links a {
    min-height: 82px;
  }

  .nearby-links strong {
    font-size: 24px;
  }

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

  .editorial-image-main {
    height: 430px;
  }

  .editorial-copy .section-index {
    margin-bottom: 42px;
  }

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

  .feature-list li:nth-child(odd) {
    border-right: 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 430px 280px 330px;
  }

  .gallery-card-tall {
    grid-row: auto;
  }

  .gallery-card-wide img {
    object-position: center 34%;
  }

  .review blockquote {
    margin-top: 32px;
  }

  .contacts-inner {
    grid-template-columns: 1fr;
  }

  .contacts-inner > .section-index,
  .contacts-copy,
  .contacts-actions,
  .contact-facts {
    grid-column: 1;
  }

  .contacts-copy .eyebrow {
    margin-top: 12px;
  }

  .contact-phone {
    margin-top: 34px;
  }

  .footer {
    grid-template-columns: 1fr auto;
    min-height: 120px;
  }

  .footer-location {
    display: none;
  }
}

@media (max-width: 420px) {
  .cookie-banner {
    bottom: calc(10px + env(safe-area-inset-bottom));
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    padding: 12px;
  }

  .cookie-banner-copy strong {
    margin-bottom: 3px;
    font-size: 15px;
  }

  .cookie-banner-copy p {
    font-size: 10px;
    line-height: 1.4;
  }

  .cookie-banner-actions {
    display: flex;
    align-self: end;
  }

  .cookie-banner-actions button {
    width: auto;
    min-height: 44px;
    padding-inline: 11px;
  }

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

  .footer-legal,
  .footer p:last-child {
    grid-column: 1;
    justify-self: start;
  }

  .footer p:last-child {
    white-space: normal;
  }

  .hero {
    padding: 16px 16px 18px;
  }

  .kicker {
    gap: 10px;
    margin-bottom: 10px;
    font-size: 9px;
  }

  .hero h1 {
    font-size: clamp(42px, 13.5vw, 54px);
  }

  .hero-services {
    margin-top: 12px;
    font-size: 12px;
  }

  .hero-meta {
    margin-top: 12px;
  }

  .hero-meta div {
    min-height: 55px;
    padding: 9px 7px 7px;
  }

  .hero-meta dd {
    font-size: 12px;
  }

  .hero-actions {
    margin-top: 10px;
  }

  .primary-cta {
    min-height: 54px;
    padding-inline: 18px;
    font-size: 11px;
    letter-spacing: 0.07em;
  }

  .hero-action-details {
    min-height: 44px;
  }

  .hero-address span {
    display: none;
  }

  .cookie-banner-actions {
    display: grid;
  }

  .cookie-banner-actions button {
    width: 100%;
  }

  .booking-modal-header {
    grid-template-areas:
      "back close"
      "title title";
    grid-template-columns: 1fr auto;
    gap: 10px 14px;
    min-height: 0;
    padding: calc(10px + env(safe-area-inset-top)) 12px 13px;
  }

  .booking-modal-header > div {
    grid-area: title;
    padding: 3px 2px 0;
  }

  .booking-modal-back {
    grid-area: back;
    justify-self: start;
  }

  .booking-modal-close {
    grid-area: close;
    justify-self: end;
  }

  .booking-modal-header h2 {
    max-width: 14ch;
    font-size: clamp(25px, 8vw, 30px);
  }

  .booking-frame-error {
    align-content: start;
    overflow-y: auto;
    padding: 28px 18px;
  }

  .booking-frame-error-copy :is(h3, strong) {
    font-size: 34px;
  }

  .booking-frame-error-actions {
    display: grid;
    width: 100%;
  }

  .booking-fallback-action {
    width: 100%;
  }
}

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

  .hero-copy,
  .ticker-track,
  .booking-frame-error:not([hidden]),
  .nav-booking > span,
  .mobile-booking a:last-child > span,
  .booking-frame-loading span {
    animation: none;
  }

  .review-list {
    scroll-behavior: auto;
  }

  .cookie-banner {
    transition: none;
  }

  .mobile-booking {
    transition: none;
  }

  .booking-modal-panel {
    transform: none;
    transition: opacity 180ms ease;
  }

  .primary-cta::before,
  .service-line {
    display: none;
  }

  .editorial-image img,
  .gallery-card img,
  .cta-arrow {
    transition: none;
  }

  :where(
    .nav-booking,
    .primary-cta,
    .text-link,
    .rating-link,
    .contact-phone,
    .contact-links a,
    .mobile-booking a,
    .booking-modal-back,
    .booking-modal-close,
    .booking-modal-footer a,
    .booking-fallback-action
  ):active {
    transform: none;
  }

  .service:active {
    transform: none;
  }
}
