:root {
  --brand: #c9a95f;
  --accent: #e2c981;
  --page-bg: #080705;
  --card-bg: #12100d;
  --surface-soft: #18140f;
  --text: #f4eee2;
  --muted: #b9af9f;
  --line: rgba(226, 201, 129, 0.24);
  --line-strong: rgba(226, 201, 129, 0.48);
  --danger: #df9b86;
  --font-body: Avenir, "Avenir Next", "Segoe UI", Arial, sans-serif;
  --font-heading: "Baskerville", "Palatino Linotype", Georgia, serif;
  --font-button: Avenir, "Avenir Next", "Segoe UI", Arial, sans-serif;
  --font-size-base: 18px;
  --font-size-small: 14px;
  --font-size-h1: 82px;
  --font-size-h2: 54px;
  --radius: 4px;
  --section-y: 112px;
  --container: 1240px;
  --header-height: 84px;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
  color-scheme: dark;
}

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

html {
  scroll-behavior: smooth;
  background: var(--page-bg);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 8% 8%, rgba(201, 169, 95, 0.09), transparent 31rem),
    radial-gradient(circle at 92% 45%, rgba(201, 169, 95, 0.055), transparent 34rem),
    var(--page-bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  line-height: 1.72;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-locked {
  overflow: hidden;
}

::selection {
  background: var(--brand);
  color: #090705;
}

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

img {
  height: auto;
}

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

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

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

button {
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: -120px;
  left: 10px;
  z-index: 5000;
  padding: 12px 18px;
  transform: none;
  background: var(--accent);
  color: #080705;
  font-weight: 800;
}

.skip-link:focus {
  top: 10px;
}

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

.container--narrow {
  width: min(calc(100% - 48px), 820px);
  margin-inline: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  color: var(--text);
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.02;
}

h1 {
  font-size: clamp(50px, 8vw, var(--font-size-h1));
}

h2 {
  font-size: clamp(38px, 5.6vw, var(--font-size-h2));
}

h3 {
  font-size: clamp(27px, 3vw, 38px);
}

h4 {
  font-size: clamp(22px, 2.4vw, 29px);
}

p,
ul,
ol,
blockquote {
  margin-top: 0;
}

p:last-child,
ul:last-child,
ol:last-child,
blockquote:last-child {
  margin-bottom: 0;
}

.lead {
  max-width: 720px;
  color: #d6cdbf;
  font-size: clamp(19px, 2.2vw, 24px);
  line-height: 1.58;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 22px;
  color: var(--brand);
  font-family: var(--font-button);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  line-height: 1.2;
  text-transform: uppercase;
}

.section-kicker::before {
  width: 46px;
  height: 1px;
  background: currentColor;
  content: "";
}

.section-heading {
  max-width: 900px;
  margin-bottom: 52px;
}

.section-heading h2 {
  max-width: 820px;
}

.section-heading .lead {
  margin-top: 24px;
}

.button,
.text-link {
  font-family: var(--font-button);
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid var(--brand);
  border-radius: 2px;
  padding: 14px 25px;
  background: var(--brand);
  color: #0b0906;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.09em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
}

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

.button--outline:hover {
  background: var(--text);
  border-color: var(--text);
  color: #090705;
}

.button--dark {
  background: #090705;
  border-color: #090705;
  color: var(--text);
}

.button--dark:hover {
  background: #201a12;
  border-color: #201a12;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-link::after {
  width: 34px;
  height: 1px;
  background: currentColor;
  content: "";
  transition: width 180ms ease;
}

.text-link:hover::after {
  width: 50px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1100;
  width: 100%;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(226, 201, 129, 0.14);
  background: #080705;
  transition: box-shadow 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.32);
}

.site-header__inner {
  display: flex;
  width: min(calc(100% - 48px), 1380px);
  min-height: var(--header-height);
  align-items: center;
  margin-inline: auto;
  gap: 28px;
}

.brand {
  display: inline-flex;
  width: 196px;
  min-width: 196px;
  align-items: center;
}

.brand img {
  width: 100%;
  max-height: 58px;
  object-fit: contain;
  object-position: left center;
}

.primary-nav {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 28px;
}

.primary-nav__list {
  display: flex;
  align-items: center;
  gap: clamp(15px, 1.7vw, 28px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-nav__list a {
  position: relative;
  display: block;
  padding: 31px 0 28px;
  color: #ded5c7;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.055em;
  line-height: 1;
  white-space: nowrap;
}

.primary-nav__list a::after {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--brand);
  content: "";
  transition: transform 180ms ease;
}

.primary-nav__list a:hover,
.primary-nav__list a[aria-current="page"] {
  color: var(--brand);
}

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

.header-cta {
  min-height: 44px;
  padding: 11px 17px;
  font-size: 11px;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin: 0 0 0 auto;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  padding: 0;
  background: #080705;
  cursor: pointer;
}

.nav-toggle__icon,
.nav-toggle__icon::before,
.nav-toggle__icon::after {
  width: 22px;
  height: 1px;
  background: var(--text);
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle__icon {
  position: relative;
}

.nav-toggle__icon::before,
.nav-toggle__icon::after {
  position: absolute;
  left: 0;
}

.nav-toggle__icon::before {
  top: -7px;
}

.nav-toggle__icon::after {
  top: 7px;
}

.site-header.is-menu-open .nav-toggle__icon {
  background: transparent;
}

.site-header.is-menu-open .nav-toggle__icon::before {
  top: 0;
  transform: rotate(45deg);
}

.site-header.is-menu-open .nav-toggle__icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  isolation: isolate;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #080705;
}

.hero__media,
.hero__overlay,
.hero__ornament {
  position: absolute;
  inset: 0;
}

.hero__media {
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: saturate(0.8) contrast(1.05);
}

.hero__overlay {
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(5, 4, 3, 0.55), rgba(5, 4, 3, 0.48) 42%, rgba(5, 4, 3, 0.9)),
    linear-gradient(90deg, rgba(5, 4, 3, 0.7), rgba(5, 4, 3, 0.16) 50%, rgba(5, 4, 3, 0.68));
}

.hero__ornament {
  z-index: -1;
  background:
    radial-gradient(circle at center, transparent 0 24%, rgba(201, 169, 95, 0.09) 24.2% 24.4%, transparent 24.6%),
    radial-gradient(circle at center, transparent 0 38%, rgba(201, 169, 95, 0.08) 38.2% 38.4%, transparent 38.6%);
  opacity: 0.75;
}

.hero__content {
  width: min(calc(100% - 48px), 1040px);
  margin-inline: auto;
  padding: 88px 0 104px;
  text-align: center;
}

.hero__mark {
  width: clamp(84px, 10vw, 126px);
  margin: 0 auto 28px;
  opacity: 0.9;
}

.hero h1 {
  max-width: 980px;
  margin-inline: auto;
  text-wrap: balance;
  text-shadow: 0 10px 42px rgba(0, 0, 0, 0.48);
}

.hero .lead {
  max-width: 720px;
  margin: 26px auto 0;
  color: #ece3d5;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 38px;
}

.hero__scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  display: grid;
  place-items: center;
  width: 32px;
  height: 48px;
  transform: translateX(-50%);
  border: 1px solid rgba(244, 238, 226, 0.45);
  border-radius: 18px;
}

.hero__scroll::after {
  width: 3px;
  height: 8px;
  border-radius: 3px;
  background: var(--brand);
  content: "";
  animation: scrollCue 1.8s ease-in-out infinite;
}

@keyframes scrollCue {
  0%, 100% {
    transform: translateY(-6px);
    opacity: 0.35;
  }
  50% {
    transform: translateY(6px);
    opacity: 1;
  }
}

.section {
  position: relative;
  padding-block: var(--section-y);
}

.section--tight {
  padding-block: calc(var(--section-y) * 0.72);
}

.section--surface {
  border-top: 1px solid rgba(226, 201, 129, 0.1);
  border-bottom: 1px solid rgba(226, 201, 129, 0.1);
  background:
    linear-gradient(135deg, rgba(201, 169, 95, 0.055), transparent 35%),
    var(--card-bg);
}

.section--gold {
  background: var(--brand);
  color: #0a0805;
}

.section--gold h2,
.section--gold h3,
.section--gold p,
.section--gold .lead {
  color: #0a0805;
}

.section--gold .section-kicker {
  color: #2b2112;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(44px, 7vw, 100px);
}

.about-copy {
  padding: clamp(8px, 2vw, 26px);
}

.about-copy .lead {
  margin: 24px 0 0;
}

.about-copy__body {
  margin-top: 28px;
  color: var(--muted);
}

.about-media {
  position: relative;
  min-height: 650px;
}

.about-media__main {
  position: absolute;
  top: 0;
  right: 0;
  width: 72%;
  height: 82%;
  border: 1px solid var(--line);
  object-fit: cover;
  object-position: center;
  box-shadow: var(--shadow);
}

.about-media__detail {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 52%;
  height: 48%;
  border: 10px solid var(--page-bg);
  object-fit: cover;
  object-position: center;
  box-shadow: var(--shadow);
}

.about-media__mark {
  position: absolute;
  right: 6%;
  bottom: 1%;
  width: 140px;
  opacity: 0.22;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 62px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.value-card {
  min-height: 230px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 34px;
  background: rgba(255, 255, 255, 0.012);
}

.value-card__index {
  display: block;
  margin-bottom: 36px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.value-card h3 {
  font-size: 29px;
}

.value-card p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 16px;
}

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

.service-card {
  position: relative;
  grid-column: span 4;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0e0c09;
}

.service-card:nth-of-type(1),
.service-card:nth-of-type(5) {
  grid-column: span 7;
}

.service-card:nth-of-type(2),
.service-card:nth-of-type(4) {
  grid-column: span 5;
}

.service-card__image,
.service-card__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.service-card__image {
  object-fit: cover;
  object-position: center;
  transition: transform 600ms cubic-bezier(.2,.7,.2,1), filter 400ms ease;
}

.service-card__shade {
  background: linear-gradient(180deg, rgba(6, 5, 4, 0.1), rgba(6, 5, 4, 0.88) 77%);
}

.service-card__body {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 34px;
}

.service-card__number {
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.service-card h3 {
  margin-top: 12px;
  font-size: clamp(31px, 4vw, 48px);
}

.service-card p {
  max-width: 580px;
  margin: 16px 0 22px;
  color: #d0c7b9;
  font-size: 16px;
  line-height: 1.6;
}

.service-card:hover .service-card__image {
  transform: scale(1.045);
  filter: saturate(1.08);
}

.home-experience {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  min-height: 680px;
  border: 1px solid var(--line);
}

.home-experience__media {
  min-height: 600px;
  object-fit: cover;
  object-position: center;
}

.home-experience__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 6vw, 84px);
  background:
    radial-gradient(circle at top right, rgba(201, 169, 95, 0.13), transparent 22rem),
    var(--surface-soft);
}

.home-experience__copy .lead {
  margin-top: 24px;
}

.home-experience__copy .button {
  align-self: flex-start;
  margin-top: 34px;
}

.preview-gallery {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr 0.9fr;
  grid-template-rows: 300px 300px;
  gap: 18px;
}

.preview-gallery__item {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--card-bg);
}

.preview-gallery__item:first-child {
  grid-row: 1 / 3;
}

.preview-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(.2,.7,.2,1);
}

.preview-gallery__item:hover img {
  transform: scale(1.04);
}

.preview-gallery__caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 24px;
  background: linear-gradient(180deg, transparent, rgba(5, 4, 3, 0.9));
  color: #f1eadf;
  font-family: var(--font-heading);
  font-size: 24px;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 46px;
  border: 1px solid rgba(10, 8, 5, 0.32);
  padding: clamp(40px, 6vw, 78px);
}

.cta-panel h2 {
  max-width: 780px;
}

.cta-panel p {
  max-width: 700px;
  margin: 22px 0 0;
  font-size: 19px;
}

.page-hero {
  position: relative;
  isolation: isolate;
  min-height: 480px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #0b0907;
}

.page-hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 80% 26%, rgba(201, 169, 95, 0.2), transparent 23rem),
    linear-gradient(118deg, #090705 0 56%, #15110d 56% 100%);
  content: "";
}

.page-hero::after {
  position: absolute;
  top: 50%;
  right: 8%;
  z-index: -1;
  width: min(36vw, 470px);
  aspect-ratio: 1;
  transform: translateY(-50%);
  border: 1px solid rgba(201, 169, 95, 0.18);
  border-radius: 50%;
  box-shadow:
    0 0 0 50px rgba(201, 169, 95, 0.035),
    0 0 0 100px rgba(201, 169, 95, 0.02);
  content: "";
}

.page-hero__inner {
  display: flex;
  min-height: 480px;
  flex-direction: column;
  justify-content: center;
  padding-block: 80px;
}

.page-hero h1 {
  max-width: 900px;
}

.page-hero .lead {
  margin-top: 24px;
}

.breadcrumbs {
  margin: 0 0 32px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.breadcrumbs a:hover {
  color: var(--accent);
}

.offer-list {
  display: grid;
  gap: 34px;
}

.offer-card {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  min-height: 560px;
  border: 1px solid var(--line);
  background: var(--card-bg);
}

.offer-card:nth-of-type(even) .offer-card__media {
  order: 2;
}

.offer-card__media {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}

.offer-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(.2,.7,.2,1);
}

.offer-card:hover .offer-card__media img {
  transform: scale(1.035);
}

.offer-card__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 6vw, 78px);
}

.offer-card__index {
  margin-bottom: 28px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.offer-card__category {
  display: block;
  margin: 0 0 14px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.offer-card__category:empty,
.offer-card__details:empty {
  display: none;
}

.offer-card h2 {
  font-size: clamp(38px, 5vw, 58px);
}

.offer-card__description {
  margin-top: 24px;
  color: var(--muted);
}

.offer-card__details {
  margin-top: 22px;
  color: #d9d0c3;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.025em;
}

.offer-card .text-link {
  align-self: flex-start;
  margin-top: 30px;
}

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

.step-card {
  min-height: 300px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 38px;
}

.step-card__number {
  color: var(--brand);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.step-card h3 {
  margin-top: 50px;
  font-size: 31px;
}

.step-card p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 16px;
}

.notice {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 28px;
  border: 1px solid var(--line-strong);
  padding: 34px;
  background: rgba(201, 169, 95, 0.045);
}

.notice__icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid var(--brand);
  color: var(--brand);
  font-family: var(--font-heading);
  font-size: 28px;
}

.notice h2,
.notice h3 {
  font-size: 28px;
}

.notice p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 16px;
}

.pricing-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: start;
  gap: 70px;
  margin-bottom: 56px;
}

.pricing-intro__note {
  border-left: 1px solid var(--brand);
  padding: 5px 0 5px 30px;
  color: var(--muted);
}

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

.price-row {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(210px, 0.65fr) minmax(170px, auto);
  align-items: center;
  gap: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
  padding: 30px 32px;
  transition: background-color 180ms ease;
}

.price-row:hover {
  background: rgba(201, 169, 95, 0.045);
}

.price-row h2 {
  font-size: 30px;
}

.price-row__note {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.price-row__price {
  color: var(--brand);
  font-family: var(--font-heading);
  font-size: 25px;
  line-height: 1.25;
}

.price-row .text-link {
  justify-self: end;
}

.gallery-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-auto-rows: 270px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.gallery-item {
  position: relative;
  grid-column: span 4;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 0;
  background: var(--card-bg);
  color: inherit;
  cursor: zoom-in;
  text-align: left;
}

.gallery-item:nth-of-type(1),
.gallery-item:nth-of-type(6) {
  grid-column: span 8;
  grid-row: span 2;
}

.gallery-item:nth-of-type(2),
.gallery-item:nth-of-type(5) {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(.2,.7,.2,1), filter 300ms ease;
}

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

.gallery-item__caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 52px 24px 22px;
  background: linear-gradient(180deg, transparent, rgba(4, 3, 2, 0.86));
  color: #f2eadf;
  font-size: 15px;
  font-weight: 700;
}

.lightbox {
  width: min(94vw, 1180px);
  max-width: none;
  border: 1px solid var(--line-strong);
  padding: 0;
  background: #070604;
  color: var(--text);
  box-shadow: var(--shadow);
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.92);
}

.lightbox__inner {
  position: relative;
  display: grid;
  max-height: 92vh;
  place-items: center;
  padding: 56px 24px 24px;
}

.lightbox__image {
  max-width: 100%;
  max-height: calc(92vh - 100px);
  object-fit: contain;
}

.lightbox__close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 0;
  background: #0d0b08;
  color: var(--text);
  cursor: pointer;
  font-size: 24px;
}

.results-list {
  display: grid;
  gap: 42px;
}

.result-card {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  border: 1px solid var(--line);
  background: var(--card-bg);
}

.result-card__media {
  min-height: 620px;
}

.result-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.result-card__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 6vw, 76px);
}

.result-card__content h2 {
  font-size: clamp(38px, 5vw, 56px);
}

.result-card__content p {
  margin-top: 24px;
  color: var(--muted);
}

.result-card__disclaimer {
  border-top: 1px solid var(--line);
  padding-top: 22px;
  font-size: 14px;
}

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

.contact-card {
  min-height: 280px;
  border: 1px solid var(--line);
  padding: clamp(32px, 5vw, 54px);
  background: var(--card-bg);
}

.contact-card__label {
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.contact-card h2 {
  margin-top: 44px;
  font-size: clamp(30px, 4vw, 44px);
}

.contact-card p {
  margin-top: 16px;
  color: var(--muted);
}

.contact-card a:hover {
  color: var(--brand);
}

.map-shell {
  display: grid;
  min-height: 520px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(rgba(8, 7, 5, 0.75), rgba(8, 7, 5, 0.75)),
    radial-gradient(circle at 25% 25%, rgba(201, 169, 95, 0.18), transparent 22rem),
    repeating-linear-gradient(42deg, rgba(201, 169, 95, 0.08) 0 1px, transparent 1px 48px),
    #100d09;
}

.map-shell__consent {
  width: min(calc(100% - 40px), 560px);
  border: 1px solid var(--line-strong);
  padding: 42px;
  background: #0c0a07;
  text-align: center;
}

.map-shell__consent h2 {
  font-size: 38px;
}

.map-shell__consent p {
  margin: 18px 0 26px;
  color: var(--muted);
  font-size: 16px;
}

.map-shell iframe {
  width: 100%;
  min-height: 520px;
  border: 0;
}

.map-shell.is-loaded {
  display: block;
}

.map-shell.is-loaded .map-shell__consent {
  display: none;
}

.contact-action {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.privacy-page {
  background: var(--page-bg);
}

.privacy-main {
  padding-block: 86px 110px;
}

.privacy-header {
  margin-bottom: 54px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 36px;
}

.privacy-header h1 {
  font-size: clamp(48px, 7vw, 76px);
}

.privacy-header p {
  margin-top: 18px;
  color: var(--muted);
}

.privacy-content {
  color: #d7cebf;
}

.privacy-content h2 {
  margin: 48px 0 18px;
  font-size: 32px;
}

.privacy-content h2:first-child {
  margin-top: 0;
}

.privacy-content h3 {
  margin: 32px 0 14px;
  font-size: 24px;
}

.privacy-content p,
.privacy-content li {
  font-size: 17px;
}

.privacy-content a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.privacy-content ul {
  padding-left: 22px;
}

.cookie-banner {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3000;
  display: none;
  border-top: 1px solid var(--line-strong);
  background: #0a0806;
  box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.42);
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-banner__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
  width: min(calc(100% - 48px), 1240px);
  margin-inline: auto;
  padding: 24px 0;
}

.cookie-banner p {
  margin: 0;
  color: #d3cabd;
  font-size: 14px;
  line-height: 1.55;
}

.cookie-banner p a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.cookie-banner .button {
  min-height: 46px;
  padding: 11px 16px;
  font-size: 10px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #060503;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr;
  gap: clamp(40px, 7vw, 100px);
  padding-block: 76px;
}

.footer-brand {
  width: 220px;
}

.footer-brand img {
  width: 100%;
}

.footer-intro {
  max-width: 520px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 16px;
}

.footer-column h2,
.footer-column h3 {
  margin-bottom: 24px;
  color: var(--brand);
  font-family: var(--font-button);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: #d8d0c3;
  font-size: 15px;
}

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

.footer-contact {
  display: grid;
  gap: 12px;
  color: #d8d0c3;
  font-size: 15px;
}

.footer-bottom {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(226, 201, 129, 0.12);
  color: #918778;
  font-size: 13px;
}

.footer-bottom a {
  color: #c9b78e;
}

.footer-bottom a:hover {
  color: var(--brand);
}

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

html.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 720ms ease, transform 720ms cubic-bezier(.2,.7,.2,1);
}

html.reveal-ready .reveal.is-visible {
  opacity: 1;
  transform: none;
}

html.reveal-ready .reveal[data-delay="1"] {
  transition-delay: 90ms;
}

html.reveal-ready .reveal[data-delay="2"] {
  transition-delay: 180ms;
}

html.reveal-ready .reveal[data-delay="3"] {
  transition-delay: 270ms;
}

@media (max-width: 1120px) {
  .site-header__inner {
    gap: 18px;
  }

  .primary-nav {
    gap: 16px;
  }

  .primary-nav__list {
    gap: 16px;
  }

  .primary-nav__list a {
    font-size: 12px;
  }

  .header-cta {
    padding-inline: 13px;
  }

  .service-card,
  .service-card:nth-of-type(1),
  .service-card:nth-of-type(2),
  .service-card:nth-of-type(4),
  .service-card:nth-of-type(5) {
    grid-column: span 6;
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 76px;
    --section-y: 88px;
  }

  .site-header__inner {
    width: 100%;
    min-height: var(--header-height);
    padding-inline: 20px 14px;
  }

  .brand {
    width: 170px;
    min-width: 170px;
  }

  .nav-toggle {
    display: flex;
  }

  .primary-nav {
    position: absolute;
    top: 100%;
    left: 0;
    display: block;
    width: 100vw;
    max-height: calc(100svh - var(--header-height));
    overflow-y: auto;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 18px 24px 30px;
    transform: translateY(-8px);
    background: #080705;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  }

  .site-header.is-menu-open .primary-nav {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .primary-nav__list {
    display: flex;
    width: 100%;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .primary-nav__list li {
    width: 100%;
    border-bottom: 1px solid rgba(226, 201, 129, 0.12);
  }

  .primary-nav__list a {
    width: 100%;
    padding: 17px 0;
    font-size: 14px;
  }

  .primary-nav__list a::after {
    display: none;
  }

  .header-cta {
    width: 100%;
    min-height: 52px;
    margin-top: 20px;
  }

  .hero__content {
    padding-block: 72px 98px;
  }

  .about-grid,
  .home-experience,
  .pricing-intro,
  .result-card {
    grid-template-columns: 1fr;
  }

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

  .home-experience__media {
    min-height: 540px;
  }

  .value-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .value-card,
  .step-card {
    min-height: 0;
  }

  .service-card,
  .service-card:nth-of-type(1),
  .service-card:nth-of-type(2),
  .service-card:nth-of-type(4),
  .service-card:nth-of-type(5) {
    grid-column: span 12;
    min-height: 500px;
  }

  .preview-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 420px 260px;
  }

  .preview-gallery__item:first-child {
    grid-column: 1 / 3;
    grid-row: auto;
  }

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

  .cta-panel .button {
    justify-self: start;
  }

  .offer-card {
    grid-template-columns: 1fr;
  }

  .offer-card:nth-of-type(even) .offer-card__media {
    order: initial;
  }

  .offer-card__media {
    min-height: 520px;
  }

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

  .price-row .text-link {
    grid-column: 1 / 3;
    justify-self: start;
  }

  .gallery-item,
  .gallery-item:nth-of-type(1),
  .gallery-item:nth-of-type(2),
  .gallery-item:nth-of-type(5),
  .gallery-item:nth-of-type(6) {
    grid-column: span 6;
    grid-row: span 2;
  }

  .result-card__media {
    min-height: auto;
  }

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

  .footer-main > :first-child {
    grid-column: 1 / 3;
  }
}

@media (max-width: 720px) {
  :root {
    --font-size-base: 17px;
    --font-size-h1: 64px;
    --font-size-h2: 44px;
    --section-y: 72px;
  }

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

  .hero {
    min-height: calc(100svh - var(--header-height));
  }

  .hero__media {
    object-position: 57% center;
  }

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

  .hero__actions .button {
    width: 100%;
  }

  .hero__scroll {
    display: none;
  }

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

  .about-media__main {
    width: 82%;
    height: 78%;
  }

  .about-media__detail {
    width: 58%;
    height: 48%;
    border-width: 7px;
  }

  .about-media__mark {
    width: 96px;
  }

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

  .service-card__body {
    padding: 28px;
  }

  .home-experience {
    min-height: 0;
  }

  .home-experience__media {
    min-height: 430px;
  }

  .preview-gallery {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 340px);
  }

  .preview-gallery__item:first-child {
    grid-column: auto;
  }

  .page-hero,
  .page-hero__inner {
    min-height: 410px;
  }

  .page-hero::after {
    right: -20%;
    width: 70vw;
  }

  .offer-card__media {
    min-height: 390px;
  }

  .offer-card__content {
    padding: 36px 28px 42px;
  }

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

  .pricing-intro {
    gap: 32px;
  }

  .price-row {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 26px 24px;
  }

  .price-row .text-link {
    grid-column: auto;
  }

  .gallery-grid {
    grid-auto-rows: 300px;
    grid-template-columns: 1fr;
  }

  .gallery-item,
  .gallery-item:nth-of-type(1),
  .gallery-item:nth-of-type(2),
  .gallery-item:nth-of-type(5),
  .gallery-item:nth-of-type(6) {
    grid-column: auto;
    grid-row: auto;
  }

  .result-card__content {
    padding: 36px 28px;
  }

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

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

  .map-shell__consent {
    padding: 32px 24px;
  }

  .cookie-banner__inner {
    grid-template-columns: 1fr;
    width: calc(100% - 36px);
    gap: 18px;
    padding-block: 20px;
  }

  .cookie-banner__actions {
    flex-direction: column;
  }

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

  .footer-main {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-block: 58px;
  }

  .footer-main > :first-child {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 20px;
  }
}

@media (max-width: 480px) {
  .brand {
    width: 148px;
    min-width: 148px;
  }

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

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

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

  .page-hero__inner {
    padding-block: 64px;
  }

  .contact-card {
    min-height: 0;
  }
}

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

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

  html.reveal-ready .reveal {
    opacity: 1;
    transform: none;
  }
}
