@font-face {
  font-family: "Cormorant";
  src: url("assets/fonts/cormorant-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant";
  src: url("assets/fonts/cormorant-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant";
  src: url("assets/fonts/cormorant-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/manrope-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/manrope-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/manrope-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  --white: #ffffff;
  --ink: #151216;
  --muted: #6f6870;
  --purple: #58155c;
  --purple-dark: #190d25;
  --purple-soft: #2a1233;
  --gold: #b6852c;
  --gold-light: #d6af62;
  --line: #e3dde2;
  --line-dark: rgba(255, 255, 255, 0.18);
  --container: 1420px;
  --header-height: 98px;
  --display: "Cormorant", Georgia, serif;
  --body: "Manrope", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

button {
  color: inherit;
  font: inherit;
}

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

h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ol,
ul {
  margin: 0;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

[hidden] {
  display: none !important;
}

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

::selection {
  color: var(--white);
  background: var(--purple);
}

.container {
  width: min(calc(100% - 120px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--purple);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: none;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.97);
  transition: box-shadow 220ms ease, height 220ms ease;
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
  box-shadow: 0 12px 34px rgba(34, 15, 37, 0.08);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 18px;
}

.brand-mark {
  width: 72px;
  height: 58px;
  object-fit: contain;
}

.brand-divider {
  width: 1px;
  height: 52px;
  background: var(--gold);
}

.brand-name {
  color: var(--ink);
  font-family: var(--display);
  font-size: 25px;
  font-weight: 500;
  line-height: 0.92;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 2.2vw, 44px);
}

.desktop-nav a,
.header-phone {
  position: relative;
  font-size: 14px;
  white-space: nowrap;
}

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

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

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

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 15px 28px;
  border: 1px solid var(--purple);
  border-radius: 1px;
  color: var(--white);
  background: var(--purple);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.25;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  border-color: var(--purple-dark);
  background: var(--purple-dark);
  transform: translateY(-2px);
}

.button-small {
  min-height: 52px;
  padding-inline: 24px;
  white-space: nowrap;
}

.button-outline {
  color: var(--purple);
  background: transparent;
}

.button-outline:hover,
.button-outline:focus-visible {
  color: var(--white);
  background: var(--purple);
}

.button-light {
  border-color: var(--white);
  color: var(--purple-dark);
  background: var(--white);
}

.button-light:hover,
.button-light:focus-visible {
  border-color: var(--gold-light);
  color: var(--purple-dark);
  background: var(--gold-light);
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.75);
  color: var(--white);
  background: transparent;
}

.button-outline-light:hover,
.button-outline-light:focus-visible {
  border-color: var(--white);
  color: var(--purple-dark);
  background: var(--white);
}

.icon-arrow {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.icon-telegram {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 18px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--gold);
  color: var(--purple);
  font-family: var(--display);
  font-size: 19px;
  line-height: 1.1;
  transition: gap 180ms ease, color 180ms ease;
}

.text-link:hover,
.text-link:focus-visible {
  gap: 24px;
  color: var(--gold);
}

.text-link-light {
  color: var(--white);
}

.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid var(--gold);
  background: transparent;
}

.menu-toggle span {
  position: absolute;
  width: 24px;
  height: 1px;
  background: var(--ink);
  transition: transform 180ms ease;
}

.menu-toggle span:first-child {
  transform: translateY(-5px);
}

.menu-toggle span:last-child {
  transform: translateY(5px);
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg);
}

.mobile-menu {
  position: absolute;
  z-index: 99;
  top: 100%;
  right: 0;
  left: 0;
  height: calc(100dvh - var(--header-height));
  overflow-y: auto;
  padding: 42px 6vw 60px;
  background: var(--white);
}

.mobile-menu a:not(.button) {
  display: block;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--display);
  font-size: 36px;
  line-height: 1.1;
}

.mobile-menu .button {
  width: 100%;
  margin-top: 28px;
}

.hero {
  min-height: 0;
  background: var(--white);
}

.hero-grid {
  display: grid;
  height: min(700px, calc(100svh - var(--header-height)));
  min-height: 650px;
  grid-template-columns: minmax(560px, 47.5%) 1fr;
}

.hero-copy {
  display: grid;
  min-height: 0;
  min-width: 0;
  grid-template-rows: 1fr auto;
  border-right: 1px solid var(--line);
}

.hero-copy-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px clamp(52px, 5.6vw, 104px) 24px clamp(105px, 8.5vw, 160px);
}

.editorial-rail {
  position: absolute;
  top: 50%;
  left: 52px;
  color: var(--gold);
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: translate(-50%, -50%) rotate(-90deg);
  white-space: nowrap;
}

.editorial-rail::before,
.editorial-rail::after {
  display: inline-block;
  width: 54px;
  height: 1px;
  margin: 0 18px 4px;
  background: var(--gold);
  content: "";
}

.hero h1 {
  max-width: 760px;
  font-family: var(--display);
  font-size: clamp(54px, 4.45vw, 84px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.92;
}

.gold-rule {
  display: block;
  width: 62px;
  height: 2px;
  margin: 30px 0;
  background: var(--gold);
}

.hero-copy-inner > p {
  max-width: 590px;
  color: #332d33;
  font-size: clamp(16px, 1.16vw, 20px);
  line-height: 1.55;
}

.hero .gold-rule {
  margin: 24px 0;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 42px;
  margin-top: 26px;
}

.hero-buttons .button {
  min-width: 300px;
}

.hero-facts {
  display: grid;
  margin: 0 clamp(42px, 4.5vw, 84px) 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(4, 1fr);
}

.hero-facts div {
  min-width: 0;
  padding: 0 18px;
  border-right: 1px solid var(--line);
  text-align: center;
}

.hero-facts div:first-child {
  padding-left: 0;
  text-align: left;
}

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

.hero-facts dt {
  color: var(--gold);
  font-family: var(--display);
  font-size: clamp(25px, 2vw, 36px);
  line-height: 1;
}

.hero-facts dd {
  margin-top: 6px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

.hero-media {
  display: grid;
  min-height: 0;
  min-width: 0;
  grid-template-columns: minmax(0, 1fr) 148px;
}

.hero-main-photo {
  min-width: 0;
  overflow: hidden;
}

.hero-main-photo img {
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: 50% 45%;
}

.hero-photo-rail {
  display: grid;
  gap: 1px;
  background: var(--white);
  grid-template-rows: repeat(3, 1fr);
}

.hero-photo-rail img {
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.section-shell {
  position: relative;
}

.section-marker {
  position: absolute;
  z-index: 3;
  top: 92px;
  left: 26px;
  display: flex;
  width: 38px;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  color: var(--gold);
  pointer-events: none;
}

.section-marker::before,
.section-marker::after {
  width: 1px;
  height: 54px;
  background: var(--gold);
  content: "";
}

.section-marker span {
  font-family: var(--display);
  font-size: 28px;
  line-height: 1;
}

.section-marker b {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.section-marker-light {
  color: var(--gold-light);
}

.section-marker-light::before,
.section-marker-light::after {
  background: var(--gold-light);
}

.section-label {
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-label-light {
  color: var(--gold-light);
}

.services {
  padding: 100px 0 82px;
}

.services-layout {
  display: grid;
  align-items: start;
  gap: clamp(70px, 9vw, 150px);
  grid-template-columns: 0.8fr 1.35fr;
}

.services h2,
.reviews h2,
.works h2,
.prices h2,
.about h2,
.contacts h2,
.interior h2 {
  font-family: var(--display);
  font-size: clamp(54px, 5vw, 82px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.95;
}

.section-intro {
  max-width: 520px;
  margin: 28px 0 34px;
  color: var(--muted);
  font-size: 16px;
}

.service-list {
  display: grid;
  gap: 0 36px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-list li {
  display: grid;
  min-height: 82px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 42px 1fr 24px;
}

.service-list li:nth-child(-n + 2) {
  border-top: 1px solid var(--line);
}

.service-list span {
  color: var(--gold);
  font-family: var(--display);
  font-size: 22px;
}

.service-list a {
  font-size: 16px;
  transition: color 180ms ease;
}

.service-list li:hover a {
  color: var(--purple);
}

.service-list .icon-arrow {
  transition: transform 180ms ease;
}

.service-list li:hover .icon-arrow {
  transform: translateX(5px);
}

.interior {
  overflow: hidden;
  padding: 28px;
  color: var(--white);
  background: var(--purple-dark);
}

.interior-grid {
  display: grid;
  max-width: 1650px;
  min-height: 760px;
  margin: 0 auto;
  gap: 8px;
  grid-template-columns: 1.05fr 0.72fr 0.7fr 1.2fr;
  grid-template-rows: 1fr 0.95fr;
}

.interior-photo {
  overflow: hidden;
}

.interior-photo img {
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.interior-photo:hover img {
  transform: scale(1.035);
}

.interior-photo-wide {
  grid-column: 1 / 3;
}

.interior-photo-tall {
  grid-column: 3 / 4;
  grid-row: 1 / 3;
}

.interior-photo-detail {
  grid-column: 1 / 2;
}

.interior-photo-station {
  grid-column: 4 / 5;
  grid-row: 1 / 3;
}

.interior-copy {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 4vw, 70px);
  background: var(--purple-soft);
}

.interior-copy h2 {
  font-size: clamp(48px, 4.1vw, 70px);
}

.interior-copy > p:not(.section-label) {
  max-width: 320px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.74);
}

.reviews {
  padding: 118px 0 126px;
}

.reviews-heading,
.prices-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 48px;
}

.reviews-heading > p,
.prices-heading > div:last-child > p {
  max-width: 520px;
  color: var(--muted);
}

.reviews-layout {
  display: grid;
  gap: 22px;
  grid-template-columns: 1.35fr 1.08fr 0.42fr;
}

.review {
  position: relative;
  min-height: 220px;
  padding: 40px 46px 34px;
  border: 1px solid var(--line);
}

.review-featured {
  min-height: 464px;
  padding: 52px 54px 42px;
  border-color: var(--purple-dark);
  color: var(--white);
  background: var(--purple-dark);
}

.quote-mark {
  display: block;
  height: 55px;
  color: var(--gold);
  font-family: var(--display);
  font-size: 94px;
  line-height: 0.75;
}

.review blockquote {
  margin-top: 22px;
  font-family: var(--display);
  font-size: clamp(27px, 2.05vw, 38px);
  line-height: 1.08;
}

.review-featured blockquote {
  font-size: clamp(34px, 2.8vw, 50px);
}

.review p {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  color: var(--gold);
  font-size: 13px;
}

.review p span {
  width: 36px;
  height: 1px;
  background: currentColor;
}

.reviews-secondary {
  display: grid;
  gap: 22px;
}

.reviews-facts {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0 0 0 28px;
  border-left: 1px solid var(--gold);
}

.reviews-facts div {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.reviews-facts strong {
  display: block;
  color: var(--gold);
  font-family: var(--display);
  font-size: 44px;
  font-weight: 400;
  line-height: 1;
}

.reviews-facts span {
  display: block;
  margin-top: 6px;
  font-size: 13px;
}

.reviews-facts .text-link {
  font-family: var(--body);
  font-size: 12px;
}

.works {
  padding: 34px 0;
  color: var(--white);
  background: var(--purple-dark);
}

.works-layout {
  display: grid;
  min-height: 770px;
  gap: 38px;
  grid-template-columns: 300px 1fr;
}

.works-aside {
  display: flex;
  flex-direction: column;
  padding: 58px 0 32px;
}

.works-aside > p:not(.section-label) {
  max-width: 270px;
  color: rgba(255, 255, 255, 0.7);
}

.gallery-filters {
  margin: 46px 0 34px;
}

.filter-button {
  display: grid;
  width: 100%;
  align-items: center;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, 0.68);
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  text-align: left;
  grid-template-columns: 1fr auto;
}

.filter-button span {
  grid-column: 2;
  grid-row: 1;
  color: var(--gold);
  font-family: var(--display);
  font-size: 18px;
}

.filter-button.is-active {
  color: var(--gold-light);
}

.gallery-grid {
  display: grid;
  gap: 8px;
  grid-auto-rows: 245px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gallery-item {
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: 0;
  border: 0;
  background: #0e0812;
  cursor: zoom-in;
}

.gallery-item::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  content: "";
  opacity: 0;
  transition: opacity 220ms ease;
}

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

.gallery-item img {
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.16, 1, 0.3, 1), filter 220ms ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  filter: brightness(0.92);
  transform: scale(1.035);
}

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

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

.gallery-item-before {
  grid-column: span 2;
}

.gallery-item-before span {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 10px 14px;
  color: var(--purple-dark);
  background: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.prices {
  padding: 118px 0 126px;
}

.prices-heading {
  align-items: start;
  padding-bottom: 38px;
  border-bottom: 1px solid var(--line);
}

.prices-heading > div:last-child {
  max-width: 540px;
}

.prices-heading .text-link {
  margin-top: 22px;
  font-family: var(--body);
  font-size: 13px;
}

.prices-layout {
  display: grid;
  gap: 54px;
  margin-top: 46px;
  grid-template-columns: minmax(0, 1.45fr) minmax(330px, 0.55fr);
}

.price-groups {
  border-top: 1px solid var(--line);
}

.price-group {
  border-bottom: 1px solid var(--line);
}

.price-group h3 {
  font-weight: 400;
}

.price-group h3 button {
  display: grid;
  width: 100%;
  min-height: 74px;
  align-items: center;
  padding: 0 16px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: var(--display);
  font-size: 27px;
  text-align: left;
  grid-template-columns: 62px 1fr 24px;
  transition: color 180ms ease, background 180ms ease;
}

.price-group h3 button:hover,
.price-group h3 button:focus-visible {
  color: var(--purple);
  background: #fbf9fb;
}

.price-group.is-open h3 button {
  color: var(--white);
  background: var(--purple-dark);
}

.price-number {
  color: var(--gold);
  font-family: var(--display);
  font-size: 22px;
}

.icon-chevron {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
  transition: transform 180ms ease;
}

.price-group.is-open .icon-chevron {
  transform: rotate(180deg);
}

.price-panel {
  padding: 12px 18px 28px 78px;
}

.price-panel li {
  display: flex;
  min-height: 50px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  color: #3d363e;
  font-size: 14px;
}

.price-panel li:last-child {
  border-bottom: 0;
}

.price-panel strong {
  flex: 0 0 auto;
  color: var(--ink);
  font-weight: 500;
  white-space: nowrap;
}

.prices-photo {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  height: min(660px, calc(100vh - var(--header-height) - 48px));
  min-height: 520px;
  overflow: hidden;
}

.prices-photo img {
  height: 100%;
  object-fit: cover;
}

.prices-photo figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 16px 18px;
  color: var(--white);
  background: rgba(25, 13, 37, 0.88);
  font-size: 12px;
  line-height: 1.5;
  backdrop-filter: blur(8px);
}

.booking-cta {
  color: var(--white);
  background: var(--purple-dark);
}

.booking-cta-grid {
  display: grid;
  min-height: 355px;
  grid-template-columns: minmax(0, 1.35fr) minmax(420px, 0.65fr);
}

.booking-cta-copy {
  display: grid;
  align-items: center;
  gap: 38px;
  padding: 68px max(60px, calc((100vw - var(--container)) / 2));
  grid-template-columns: 50px minmax(360px, 1fr) auto;
}

.booking-index {
  align-self: start;
  color: var(--gold);
  font-family: var(--display);
  font-size: 34px;
}

.booking-cta h2 {
  font-family: var(--display);
  font-size: clamp(42px, 3.5vw, 62px);
  font-weight: 400;
  line-height: 1;
}

.booking-cta-copy > div:nth-child(2) p {
  max-width: 650px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.7);
}

.booking-actions {
  display: grid;
  gap: 14px;
  min-width: 250px;
}

.booking-cta-media {
  display: grid;
  gap: 2px;
  background: var(--purple-dark);
  grid-template-columns: 1fr 1fr;
}

.booking-cta-media img {
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.booking-cta-media img:first-child {
  grid-row: span 2;
}

.about {
  padding: 118px 0 0;
}

.about-layout {
  display: grid;
  align-items: center;
  gap: clamp(70px, 9vw, 150px);
  grid-template-columns: 0.9fr 1.1fr;
}

.about-copy > p:not(.section-label) {
  max-width: 620px;
  margin-top: 28px;
  color: var(--muted);
}

.about-copy blockquote {
  max-width: 650px;
  margin-top: 34px;
  padding: 25px 0 25px 28px;
  border-left: 2px solid var(--gold);
  color: var(--purple);
  font-family: var(--display);
  font-size: 27px;
  line-height: 1.25;
}

.about-facts {
  display: grid;
  gap: 28px;
  margin-top: 40px;
  grid-template-columns: 0.7fr 1.3fr;
}

.about-facts p {
  display: grid;
  gap: 10px;
  padding-right: 22px;
  border-right: 1px solid var(--line);
}

.about-facts p:last-child {
  border-right: 0;
}

.about-facts strong {
  color: var(--gold);
  font-family: var(--display);
  font-size: 46px;
  font-weight: 400;
  line-height: 1;
}

.about-facts span {
  color: var(--muted);
  font-size: 12px;
}

.about-media {
  position: relative;
  min-height: 690px;
  padding-left: 74px;
  padding-bottom: 74px;
}

.about-photo-main {
  width: 74%;
  height: 610px;
  margin-left: auto;
  object-fit: cover;
  object-position: 50% 28%;
}

.about-photo-small {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48%;
  height: 320px;
  border: 12px solid var(--white);
  object-fit: cover;
}

.about-caption {
  position: absolute;
  top: 42px;
  left: 0;
  padding: 20px 25px;
  border-left: 1px solid var(--gold);
  color: var(--purple);
  background: var(--white);
  font-family: var(--display);
  font-size: 20px;
  line-height: 1.15;
}

.process {
  display: grid;
  gap: 60px;
  margin-top: 90px;
  padding: 68px 0 92px;
  border-top: 1px solid var(--line);
  grid-template-columns: 260px 1fr;
}

.process h3 {
  font-family: var(--display);
  font-size: 42px;
  font-weight: 400;
  line-height: 1;
}

.process ol {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.process li {
  position: relative;
  padding: 0 28px;
  border-left: 1px solid var(--line);
}

.process li:first-child {
  padding-left: 0;
  border-left: 0;
}

.process li::after {
  position: absolute;
  top: 15px;
  right: -10px;
  width: 20px;
  height: 1px;
  background: var(--gold);
  content: "";
}

.process li:last-child::after {
  display: none;
}

.process li > span {
  color: var(--gold);
  font-family: var(--display);
  font-size: 34px;
  line-height: 1;
}

.process h4 {
  margin-top: 26px;
  font-size: 14px;
  font-weight: 600;
}

.process li p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.contacts {
  padding: 112px 0 118px;
  border-top: 1px solid var(--line);
}

.contacts > .container > h2 {
  margin-bottom: 48px;
}

.contacts-layout {
  display: grid;
  align-items: stretch;
  gap: 38px;
  grid-template-columns: minmax(220px, 0.45fr) minmax(330px, 0.7fr) minmax(480px, 1.25fr);
}

.contacts-photo {
  min-height: 510px;
  overflow: hidden;
}

.contacts-photo img {
  height: 100%;
  object-fit: cover;
}

.contacts-info {
  display: flex;
  flex-direction: column;
}

.contact-row {
  display: grid;
  min-height: 78px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 52px 1fr;
}

.contact-row:first-child {
  border-top: 1px solid var(--line);
}

.contact-row svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: var(--gold);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.contact-row p {
  font-size: 14px;
  line-height: 1.6;
}

.contact-row small {
  color: var(--muted);
  font-size: 11px;
}

.contacts-buttons {
  display: grid;
  gap: 12px;
  margin-top: auto;
  padding-top: 28px;
  grid-template-columns: 1fr 1fr;
}

.contacts-buttons .button {
  min-width: 0;
  padding-inline: 18px;
}

.map-frame {
  min-height: 510px;
  border: 1px solid var(--line);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 508px;
  border: 0;
  filter: saturate(0.78) contrast(0.96);
}

.site-footer {
  color: var(--white);
  background: var(--purple-dark);
}

.footer-main {
  display: grid;
  gap: 64px;
  padding-top: 74px;
  padding-bottom: 72px;
  grid-template-columns: 1.35fr 0.55fr 0.9fr 1fr;
}

.brand-footer .brand-mark {
  filter: brightness(0) saturate(100%) invert(66%) sepia(45%) saturate(707%) hue-rotate(2deg) brightness(91%) contrast(90%);
}

.brand-footer .brand-name {
  color: var(--white);
  font-size: 34px;
}

.footer-brand > p {
  max-width: 390px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer-column h2 {
  margin-bottom: 8px;
  color: var(--gold-light);
  font-family: var(--display);
  font-size: 25px;
  font-weight: 400;
}

.footer-column a,
.footer-column span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  transition: color 180ms ease;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--gold-light);
}

.footer-cta {
  padding-left: 44px;
  border-left: 1px solid var(--gold);
}

.footer-cta .button {
  width: 100%;
}

.footer-cta p {
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.footer-cta strong {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--white);
  font-weight: 500;
}

.footer-bottom {
  border-top: 1px solid rgba(182, 133, 44, 0.62);
}

.footer-bottom .container {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
}

.footer-bottom div div {
  display: flex;
  gap: 16px;
}

.footer-bottom i {
  color: var(--gold);
  font-style: normal;
}

.lightbox {
  width: min(92vw, 1050px);
  max-width: none;
  height: min(90vh, 900px);
  max-height: none;
  padding: 0;
  border: 0;
  overflow: visible;
  color: var(--white);
  background: transparent;
}

.lightbox::backdrop {
  background: rgba(10, 5, 12, 0.9);
  backdrop-filter: blur(8px);
}

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

.lightbox-close {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  display: grid;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
  background: rgba(25, 13, 37, 0.8);
  cursor: pointer;
  place-items: center;
}

.lightbox-close svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.5;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1450px) {
  :root {
    --container: 1260px;
  }

  .container {
    width: min(calc(100% - 92px), var(--container));
  }

  .header-inner {
    gap: 24px;
  }

  .brand {
    gap: 13px;
  }

  .brand-mark {
    width: 60px;
  }

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

  .desktop-nav {
    gap: 24px;
  }

  .header-actions {
    gap: 18px;
  }

  .hero-grid {
    grid-template-columns: minmax(520px, 48%) 1fr;
  }

  .hero-media {
    grid-template-columns: minmax(0, 1fr) 112px;
  }

  .hero-copy-inner {
    padding-left: 112px;
  }

  .editorial-rail {
    left: 42px;
  }

  .section-marker {
    left: 16px;
  }

  .interior-grid {
    min-height: 660px;
  }

  .booking-cta-copy {
    padding-inline: 55px;
    grid-template-columns: 42px minmax(340px, 1fr) auto;
  }

  .contacts-layout {
    grid-template-columns: 0.42fr 0.7fr 1.1fr;
  }
}

@media (max-width: 1180px) {
  :root {
    --header-height: 82px;
  }

  .container {
    width: min(calc(100% - 64px), var(--container));
  }

  .desktop-nav,
  .header-actions {
    display: none;
  }

  .menu-toggle {
    position: relative;
    display: grid;
    place-items: center;
  }

  .brand-mark {
    width: 58px;
    height: 48px;
  }

  .brand-divider {
    height: 44px;
  }

  .hero-grid {
    height: auto;
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: 720px;
    border-right: 0;
  }

  .hero-copy-inner {
    padding: 90px 11vw 54px;
  }

  .editorial-rail {
    display: none;
  }

  .hero h1 {
    font-size: clamp(60px, 8.4vw, 92px);
  }

  .hero-media {
    min-height: 680px;
    grid-template-columns: minmax(0, 1fr) 150px;
  }

  .hero-main-photo img {
    min-height: 680px;
  }

  .section-marker {
    display: none;
  }

  .services-layout {
    gap: 60px;
  }

  .interior {
    padding: 20px;
  }

  .interior-grid {
    min-height: 950px;
    grid-template-columns: 1fr 0.75fr 1fr;
    grid-template-rows: 1fr 0.9fr 0.9fr;
  }

  .interior-photo-wide {
    grid-column: 1 / 3;
  }

  .interior-photo-tall {
    grid-column: 3;
    grid-row: 1 / 3;
  }

  .interior-copy {
    grid-column: 1 / 2;
    grid-row: 2 / 4;
  }

  .interior-photo-detail {
    grid-column: 2;
    grid-row: 2 / 4;
  }

  .interior-photo-station {
    grid-column: 3;
    grid-row: 3;
  }

  .reviews-layout {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .reviews-facts {
    display: grid;
    padding: 28px 0 0;
    border-top: 1px solid var(--gold);
    border-left: 0;
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, 1fr) 1.2fr;
  }

  .reviews-facts div {
    padding: 0 20px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .gallery-grid {
    grid-auto-rows: 205px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .prices-layout {
    grid-template-columns: minmax(0, 1fr) 340px;
  }

  .booking-cta-grid {
    grid-template-columns: 1fr;
  }

  .booking-cta-copy {
    grid-template-columns: 42px 1fr auto;
  }

  .booking-cta-media {
    height: 290px;
    grid-template-columns: 1.2fr 1fr 1fr;
  }

  .booking-cta-media img:first-child {
    grid-row: auto;
  }

  .contacts-layout {
    grid-template-columns: 0.7fr 1.1fr;
  }

  .map-frame {
    min-height: 450px;
    grid-column: 1 / -1;
  }

  .map-frame iframe {
    min-height: 450px;
  }

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

  .footer-cta {
    padding: 38px 0 0;
    border-top: 1px solid var(--gold);
    border-left: 0;
    grid-column: 1 / -1;
  }

  .footer-cta .button {
    width: auto;
  }
}

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

  .hero-copy {
    min-height: auto;
  }

  .hero-copy-inner {
    padding: 68px 28px 42px;
  }

  .hero h1 {
    font-size: clamp(50px, 13vw, 74px);
  }

  .hero-buttons {
    align-items: stretch;
    flex-direction: column;
    gap: 20px;
  }

  .hero-buttons .button {
    min-width: 0;
    width: 100%;
  }

  .hero-facts {
    margin: 0 28px 36px;
    gap: 22px 0;
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-facts div:nth-child(2) {
    border-right: 0;
  }

  .hero-facts div:nth-child(3) {
    padding-left: 0;
    text-align: left;
  }

  .hero-media {
    min-height: 620px;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 130px;
  }

  .hero-main-photo img {
    min-height: 490px;
  }

  .hero-photo-rail {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
  }

  .services,
  .reviews,
  .prices,
  .contacts {
    padding: 82px 0;
  }

  .services-layout,
  .about-layout {
    gap: 52px;
    grid-template-columns: 1fr;
  }

  .services h2,
  .reviews h2,
  .works h2,
  .prices h2,
  .about h2,
  .contacts h2,
  .interior h2 {
    font-size: clamp(48px, 12vw, 68px);
  }

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

  .service-list li:nth-child(2) {
    border-top: 0;
  }

  .interior {
    padding: 10px;
  }

  .interior-grid {
    min-height: 0;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 300px auto 250px 260px;
  }

  .interior-photo-wide {
    grid-column: 1 / -1;
  }

  .interior-photo-tall {
    grid-column: 2;
    grid-row: 2;
  }

  .interior-copy {
    min-height: 390px;
    grid-column: 1;
    grid-row: 2;
  }

  .interior-photo-detail {
    grid-column: 1;
    grid-row: 3;
  }

  .interior-photo-station {
    grid-column: 2;
    grid-row: 3;
  }

  .reviews-heading,
  .prices-heading {
    align-items: start;
    flex-direction: column;
    gap: 24px;
  }

  .reviews-layout {
    grid-template-columns: 1fr;
  }

  .review-featured {
    min-height: 390px;
  }

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

  .reviews-facts .text-link {
    margin-top: 26px;
    grid-column: 1 / -1;
  }

  .works-layout {
    gap: 20px;
    grid-template-columns: 1fr;
  }

  .works-aside {
    padding: 54px 0 24px;
  }

  .gallery-filters {
    display: grid;
    gap: 8px;
    grid-template-columns: 1fr 1fr;
  }

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

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

  .prices-layout {
    grid-template-columns: 1fr;
  }

  .prices-photo {
    position: relative;
    top: auto;
    height: 480px;
    min-height: 0;
  }

  .booking-cta-copy {
    padding: 64px 28px;
    grid-template-columns: 1fr;
  }

  .booking-index {
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gold);
  }

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

  .booking-actions .button:first-child {
    grid-column: 1 / -1;
  }

  .booking-cta-media {
    height: 250px;
  }

  .about {
    padding-top: 82px;
  }

  .about-media {
    min-height: 600px;
  }

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

  .process ol {
    gap: 30px 0;
    grid-template-columns: repeat(2, 1fr);
  }

  .process li:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }

  .process li::after {
    display: none;
  }

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

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

  .footer-main {
    gap: 48px 30px;
    grid-template-columns: 1.4fr 0.6fr;
  }

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

@media (max-width: 560px) {
  :root {
    --header-height: 74px;
  }

  body {
    font-size: 15px;
  }

  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .brand {
    gap: 9px;
  }

  .brand-mark {
    width: 45px;
    height: 40px;
  }

  .brand-divider {
    height: 38px;
  }

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

  .menu-toggle {
    width: 48px;
    height: 48px;
  }

  .mobile-menu {
    padding-inline: 24px;
  }

  .mobile-menu a:not(.button) {
    font-size: 32px;
  }

  .hero-copy-inner {
    padding: 54px 20px 36px;
  }

  .hero h1 {
    font-size: clamp(43px, 12.5vw, 62px);
    line-height: 0.94;
  }

  .gold-rule {
    margin: 24px 0;
  }

  .hero-copy-inner > p {
    font-size: 15px;
  }

  .hero-facts {
    margin-inline: 20px;
  }

  .hero-facts div {
    padding-inline: 10px;
  }

  .hero-media {
    min-height: 520px;
    grid-template-rows: 1fr 105px;
  }

  .hero-main-photo img {
    min-height: 415px;
  }

  .services,
  .reviews,
  .prices,
  .contacts {
    padding: 68px 0;
  }

  .services h2,
  .reviews h2,
  .works h2,
  .prices h2,
  .about h2,
  .contacts h2,
  .interior h2 {
    font-size: 48px;
  }

  .service-list li {
    min-height: 72px;
    grid-template-columns: 36px 1fr 20px;
  }

  .interior-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 260px auto 220px 220px;
  }

  .interior-photo-wide {
    grid-column: 1;
  }

  .interior-copy {
    min-height: 370px;
    grid-column: 1;
    grid-row: 2;
    padding: 36px 28px;
  }

  .interior-photo-tall {
    display: none;
  }

  .interior-photo-detail {
    grid-column: 1;
    grid-row: 3;
  }

  .interior-photo-station {
    grid-column: 1;
    grid-row: 4;
  }

  .review {
    padding: 32px 28px;
  }

  .review-featured {
    min-height: 360px;
  }

  .review-featured blockquote {
    font-size: 33px;
  }

  .review blockquote {
    font-size: 26px;
  }

  .reviews-facts {
    gap: 20px 0;
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews-facts div {
    padding-inline: 14px;
  }

  .reviews-facts div:nth-child(2) {
    border-right: 0;
  }

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

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

  .gallery-item-portrait,
  .gallery-item-tall {
    grid-row: span 1;
  }

  .gallery-item-before {
    grid-column: span 2;
  }

  .price-group h3 button {
    min-height: 68px;
    padding-inline: 10px;
    font-size: 22px;
    grid-template-columns: 42px 1fr 20px;
  }

  .price-panel {
    padding: 10px 10px 24px;
  }

  .price-panel li {
    align-items: start;
    flex-direction: column;
    gap: 3px;
    min-height: 0;
    padding: 13px 0;
  }

  .prices-photo {
    height: 370px;
  }

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

  .booking-actions .button:first-child {
    grid-column: auto;
  }

  .booking-cta-media {
    height: 220px;
    grid-template-columns: 1fr 1fr;
  }

  .booking-cta-media img:not(:first-child):last-child {
    display: none;
  }

  .about {
    padding-top: 68px;
  }

  .about-copy blockquote {
    font-size: 24px;
  }

  .about-facts {
    grid-template-columns: 1fr;
  }

  .about-facts p {
    padding-bottom: 22px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .about-media {
    min-height: 490px;
    padding-left: 32px;
    padding-bottom: 46px;
  }

  .about-photo-main {
    width: 86%;
    height: 440px;
  }

  .about-photo-small {
    width: 56%;
    height: 210px;
    border-width: 7px;
  }

  .about-caption {
    display: none;
  }

  .process {
    gap: 38px;
    margin-top: 58px;
    padding: 52px 0 68px;
  }

  .process ol {
    grid-template-columns: 1fr;
  }

  .process li,
  .process li:nth-child(3) {
    padding: 0 0 25px;
    border-bottom: 1px solid var(--line);
    border-left: 0;
  }

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

  .contacts-photo {
    min-height: 320px;
  }

  .contact-row {
    min-height: 72px;
  }

  .map-frame {
    min-height: 380px;
    grid-column: auto;
  }

  .map-frame iframe {
    min-height: 378px;
  }

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

  .footer-brand {
    grid-column: auto;
  }

  .brand-footer .brand-name {
    font-size: 26px;
  }

  .footer-cta {
    grid-column: auto;
  }

  .footer-cta .button {
    width: 100%;
  }

  .footer-bottom .container {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 22px 0;
  }

  .footer-bottom div div {
    flex-wrap: wrap;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Client revision: one strong photo language, no interior collages or price tables. */
.hero-media {
  grid-template-columns: minmax(0, 1fr);
  background: #162615;
}

.hero-main-photo img {
  object-position: 50% 50%;
}

.works-layout {
  min-height: 730px;
  grid-template-columns: 350px minmax(0, 1fr);
}

.works-aside h2 {
  font-size: clamp(45px, 3.55vw, 64px);
}

.works-more {
  margin-top: auto;
  padding-top: 48px;
}

.gallery-grid-editorial {
  align-self: center;
  grid-auto-flow: dense;
  grid-auto-rows: 330px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gallery-grid-editorial .gallery-item-featured {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-grid-editorial .gallery-item:nth-child(1) img {
  object-position: 50% 42%;
}

.gallery-grid-editorial .gallery-item:nth-child(2) img,
.gallery-grid-editorial .gallery-item:nth-child(3) img,
.gallery-grid-editorial .gallery-item:nth-child(5) img {
  object-position: 50% 24%;
}

.gallery-grid-editorial .gallery-item:nth-child(4) img {
  object-position: 48% 32%;
}

.booking-cta-grid {
  grid-template-columns: minmax(0, 1.25fr) minmax(480px, 0.75fr);
}

.booking-cta-media {
  display: block;
  overflow: hidden;
  background: #d9dbef;
}

.booking-cta-media img,
.booking-cta-media img:first-child {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.about-media {
  min-height: 620px;
  padding: 0;
}

.about-photo-main {
  width: 100%;
  height: 620px;
  margin: 0;
  object-position: 52% 35%;
}

.about-caption {
  top: auto;
  bottom: 38px;
  left: -34px;
  box-shadow: 0 18px 44px rgba(32, 15, 42, 0.08);
}

.contacts-layout-clean {
  grid-template-columns: minmax(330px, 0.72fr) minmax(520px, 1.28fr);
}

.contacts-layout-clean .map-frame {
  grid-column: auto;
}

@media (max-width: 1360px) {
  .works-layout {
    grid-template-columns: 300px minmax(0, 1fr);
  }

  .gallery-grid-editorial {
    grid-auto-rows: 285px;
  }

  .booking-cta-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(400px, 0.8fr);
  }
}

@media (max-width: 1180px) {
  .works-layout {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .works-aside {
    padding-bottom: 16px;
  }

  .works-aside > p:not(.section-label) {
    max-width: 560px;
  }

  .works-more {
    margin-top: 8px;
    padding-top: 24px;
  }

  .gallery-grid-editorial {
    grid-auto-rows: 260px;
  }

  .booking-cta-grid {
    grid-template-columns: 1fr;
  }

  .booking-cta-media {
    min-height: 330px;
  }

  .about-media {
    min-height: 560px;
  }

  .about-photo-main {
    height: 560px;
  }
}

@media (max-width: 760px) {
  .hero-main-photo img {
    object-position: 58% 50%;
  }

  .gallery-grid-editorial {
    gap: 5px;
    grid-auto-rows: 190px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid-editorial .gallery-item-featured {
    grid-column: span 2;
    grid-row: span 2;
  }

  .booking-cta-media {
    min-height: 230px;
  }

  .about-media {
    min-height: 430px;
  }

  .about-photo-main {
    height: 430px;
  }

  .about-caption {
    right: 18px;
    bottom: 18px;
    left: 18px;
  }

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

/* Client layout pass: photographs distributed through the page. */
.services-layout {
  gap: clamp(34px, 4vw, 64px);
  grid-template-columns: minmax(250px, 0.72fr) minmax(230px, 0.62fr) minmax(470px, 1.35fr);
}

.services-media {
  height: 590px;
  overflow: hidden;
}

.services-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.gallery-grid-club {
  align-self: center;
  gap: 6px;
  grid-auto-flow: dense;
  grid-auto-rows: 222px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.gallery-grid-club .gallery-item-featured {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-grid-club .gallery-item-featured img {
  object-position: 50% 44%;
}

.gallery-grid-club .gallery-item:not(.gallery-item-featured) img {
  object-position: 50% 22%;
}

.booking-cta-media img,
.booking-cta-media img:first-child {
  object-position: 54% 32%;
}

.about-media {
  min-height: 590px;
}

.about-photo-main {
  height: 590px;
  object-position: 38% 50%;
}

.about-proof {
  display: grid;
  align-items: stretch;
  gap: clamp(46px, 7vw, 110px);
  margin-top: 76px;
  grid-template-columns: minmax(460px, 1.15fr) minmax(360px, 0.85fr);
}

.about-proof figure {
  min-height: 420px;
  overflow: hidden;
}

.about-proof figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 44%;
}

.about-proof-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 44px 0;
}

.about-proof-copy > p:last-child {
  max-width: 570px;
  margin-top: 34px;
  color: var(--muted);
}

.founder {
  overflow: hidden;
  color: var(--white);
  background: var(--purple-dark);
}

.founder-layout {
  display: grid;
  height: 560px;
  min-height: 560px;
  grid-template-columns: minmax(420px, 0.85fr) minmax(520px, 1.15fr);
}

.founder-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 84px 72px 84px 0;
}

.founder-copy h2 {
  margin-top: 40px;
  color: var(--gold-light);
  font-family: var(--display);
  font-size: clamp(54px, 5vw, 82px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.95;
}

.founder-copy p {
  margin-top: 40px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.founder-copy p strong {
  color: var(--white);
  font-family: var(--display);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.founder-media {
  height: 560px;
  min-height: 560px;
  overflow: hidden;
}

.founder-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 45%;
}

@media (max-width: 1360px) {
  .services-layout {
    grid-template-columns: minmax(230px, 0.7fr) minmax(210px, 0.55fr) minmax(420px, 1.25fr);
  }

  .services-media {
    height: 540px;
  }

  .gallery-grid-club {
    grid-auto-rows: 192px;
  }
}

@media (max-width: 1180px) {
  .services-layout {
    grid-template-columns: minmax(320px, 0.9fr) minmax(300px, 1.1fr);
  }

  .services-media {
    height: 480px;
  }

  .service-list {
    grid-column: 1 / -1;
  }

  .gallery-grid-club {
    grid-auto-rows: 210px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .about-proof {
    gap: 48px;
    grid-template-columns: minmax(390px, 1fr) minmax(330px, 0.9fr);
  }

  .founder-layout {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .founder-copy {
    padding-right: 48px;
  }
}

@media (max-width: 820px) {
  .hero-media {
    grid-template-rows: minmax(0, 1fr);
  }

  .hero-main-photo img {
    min-height: 100%;
  }

  .services-layout {
    grid-template-columns: 1fr;
  }

  .services-media {
    height: min(120vw, 560px);
  }

  .service-list {
    grid-column: auto;
  }

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

  .gallery-grid-club .gallery-item:last-child {
    grid-column: span 2;
  }

  .about-proof {
    gap: 0;
    grid-template-columns: 1fr;
  }

  .about-proof figure {
    min-height: 340px;
  }

  .about-proof-copy {
    padding-bottom: 0;
  }

  .founder-layout {
    height: auto;
    grid-template-columns: 1fr;
  }

  .founder-copy {
    min-height: 390px;
    padding: 70px 0;
  }

  .founder-media {
    height: 520px;
    min-height: 520px;
  }
}

@media (max-width: 560px) {
  .gallery-grid-club {
    grid-auto-rows: 160px;
  }

  .about-photo-main {
    object-position: 35% 50%;
  }

  .about-proof {
    margin-top: 54px;
  }

  .about-proof figure {
    min-height: 290px;
  }

  .about-facts {
    gap: 18px;
  }

  .founder-copy h2 {
    font-size: 50px;
  }

  .founder-media {
    height: 440px;
    min-height: 440px;
  }
}
