:root {
  --wine-950: #25070f;
  --wine-900: #350b16;
  --wine-800: #4a1422;
  --wine-700: #681f30;
  --cream-50: #fffdf8;
  --cream-100: #f8f1e5;
  --cream-200: #e9ddcc;
  --ink: #271e1d;
  --muted: #6f625e;
  --gold: #c5a26a;
  --sky: #d8e7eb;
  --line: rgb(52 25 27 / 14%);
  --shadow: 0 28px 70px rgb(35 13 17 / 13%);
  --display: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Baskerville, Georgia, serif;
  --sans: Inter, "Segoe UI", Arial, sans-serif;
  --container: min(1240px, calc(100vw - 72px));
}

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

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  background: var(--cream-50);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 90% 12%, rgb(216 231 235 / 38%), transparent 29rem),
    var(--cream-50);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

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

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

button {
  color: inherit;
  font: inherit;
}

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

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 400;
  hyphens: auto;
  letter-spacing: -0.035em;
  overflow-wrap: break-word;
}

h2 {
  margin-bottom: 28px;
  font-size: clamp(2.4rem, 4.8vw, 5.25rem);
  line-height: 0.98;
}

h3 {
  margin-bottom: 14px;
  font-size: clamp(1.55rem, 2vw, 2.15rem);
  line-height: 1.08;
}

p {
  margin-bottom: 1.15em;
}

svg {
  display: block;
}

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--cream-50);
  background: var(--wine-800);
  transform: translateY(-160%);
}

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

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: 230px 1fr 230px;
  align-items: center;
  width: 100vw;
  max-width: 100vw;
  min-height: 96px;
  padding: 0 42px;
  color: #fff;
  border-bottom: 1px solid rgb(255 255 255 / 18%);
  transition:
    min-height 250ms ease,
    background 250ms ease,
    box-shadow 250ms ease;
}

.site-header--scrolled {
  min-height: 76px;
  background: rgb(38 7 15 / 94%);
  box-shadow: 0 12px 40px rgb(18 2 8 / 18%);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  width: fit-content;
  color: inherit;
}

.brand-mark {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 8px);
  align-items: end;
  gap: 4px;
  width: 32px;
  height: 37px;
}

.brand-mark::before {
  position: absolute;
  inset: 0 1px 5px;
  border: 1px solid currentColor;
  border-radius: 50% 50% 8px 8px;
  content: "";
  opacity: 0.85;
}

.brand-mark i {
  z-index: 1;
  display: block;
  height: 20px;
  border-left: 1px solid currentColor;
  transform-origin: bottom;
}

.brand-mark i:first-child {
  transform: rotate(24deg);
}

.brand-mark i:last-child {
  transform: rotate(-24deg);
}

.brand-text {
  display: flex;
  flex-direction: column;
  font-family: var(--display);
  text-transform: uppercase;
  line-height: 0.95;
}

.brand-text strong {
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.12em;
}

.brand-text small {
  margin-top: 5px;
  font-family: var(--sans);
  font-size: 0.55rem;
  letter-spacing: 0.34em;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.3vw, 36px);
}

.site-nav a {
  position: relative;
  padding: 10px 0;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0.75;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

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

.site-nav__more {
  display: none;
}

.header-phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-self: end;
  line-height: 1.3;
}

.header-phone span {
  font-size: 0.64rem;
  letter-spacing: 0.15em;
  opacity: 0.7;
  text-transform: uppercase;
}

.header-phone strong {
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  background: transparent;
}

.menu-toggle i {
  display: block;
  width: 24px;
  height: 1px;
  margin: 7px auto;
  background: currentColor;
  transition: transform 200ms ease;
}

.menu-toggle[aria-expanded="true"] i:first-of-type {
  transform: translateY(4px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] i:last-of-type {
  transform: translateY(-4px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  min-height: clamp(690px, 88svh, 940px);
  overflow: hidden;
  color: #fff;
  background: var(--wine-950);
  isolation: isolate;
}

.hero--home {
  min-height: 100svh;
}

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

.hero-media {
  z-index: -2;
}

.hero-media img {
  object-fit: cover;
  object-position: 50% 52%;
  animation: hero-zoom 18s ease-out both;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgb(28 4 10 / 86%) 0%, rgb(28 4 10 / 48%) 48%, rgb(28 4 10 / 12%) 78%),
    linear-gradient(0deg, rgb(25 4 9 / 74%) 0%, transparent 48%),
    linear-gradient(180deg, rgb(19 2 7 / 36%) 0%, transparent 25%);
}

.hero-content {
  align-self: end;
  width: var(--container);
  margin: 0 auto;
  padding: 180px 0 clamp(104px, 13vh, 150px);
}

.hero-content > * {
  max-width: 850px;
}

.hero-eyebrow,
.eyebrow {
  margin-bottom: 24px;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--wine-700);
}

.hero-eyebrow {
  color: #f4dfbb;
}

.hero h1 {
  max-width: 1100px;
  margin-bottom: 24px;
  font-size: clamp(4rem, 10vw, 9.5rem);
  line-height: 0.82;
  text-wrap: balance;
}

.hero:not(.hero--home) h1 {
  max-width: 980px;
  font-size: clamp(3.5rem, 7.8vw, 7.5rem);
}

.hero-lead {
  max-width: 700px;
  margin-bottom: 36px;
  font-size: clamp(1.04rem, 1.6vw, 1.3rem);
  line-height: 1.55;
  text-wrap: pretty;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 30px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  opacity: 0.75;
  text-transform: uppercase;
}

.breadcrumbs a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
  transition:
    color 200ms ease,
    background 200ms ease,
    border 200ms ease,
    transform 200ms ease;
}

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

.button:disabled {
  cursor: wait;
  opacity: 0.62;
  transform: none;
}

.button svg,
.text-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.button--large {
  min-height: 62px;
  padding-inline: 32px;
}

.button--cream {
  color: var(--wine-900);
  background: var(--cream-100);
}

.button--cream:hover {
  background: #fff;
}

.button--glass {
  color: #fff;
  border-color: rgb(255 255 255 / 45%);
  background: rgb(255 255 255 / 7%);
  backdrop-filter: blur(8px);
}

.button--glass:hover {
  border-color: #fff;
  background: rgb(255 255 255 / 15%);
}

.button--wine {
  color: #fff;
  background: var(--wine-800);
}

.button--wine:hover {
  background: var(--wine-700);
}

.button--ghost-dark {
  color: var(--wine-800);
  border-color: rgb(74 20 34 / 42%);
}

.button--ghost-dark:hover {
  color: #fff;
  background: var(--wine-800);
}

.hero-scroll {
  position: absolute;
  right: 42px;
  bottom: 42px;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgb(255 255 255 / 40%);
  border-radius: 50%;
}

.hero-scroll span {
  width: 1px;
  height: 17px;
  background: #fff;
  animation: scroll-pulse 1.8s ease-in-out infinite;
}

.hero-scroll span::after {
  display: block;
  width: 6px;
  height: 6px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  content: "";
  transform: translate(-3px, 9px) rotate(45deg);
}

.stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: var(--container);
  margin: -52px auto 0;
  color: var(--ink);
  background: var(--cream-100);
  box-shadow: var(--shadow);
}

.stats div {
  min-width: 0;
  min-height: 152px;
  padding: 32px;
  border-right: 1px solid var(--line);
}

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

.stats strong {
  display: block;
  margin-bottom: 8px;
  color: var(--wine-800);
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 400;
  line-height: 1;
  overflow-wrap: anywhere;
}

.stats span {
  display: block;
  max-width: 190px;
  color: var(--muted);
  font-size: 0.77rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

#project {
  padding-top: 64px;
}

.section {
  width: var(--container);
  margin: 0 auto;
  padding: clamp(72px, 9vw, 138px) 0;
}

.section + .section {
  border-top: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.65fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 54px;
}

.section-heading > *,
.editorial-split > *,
.links-section > *,
.legal-section > *,
.section-copy {
  min-width: 0;
}

.section-heading h2 {
  max-width: 830px;
  margin-bottom: 0;
}

.section-heading > p {
  max-width: 520px;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 1.03rem;
}

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

.editorial-split--reverse {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.section-copy {
  max-width: 600px;
}

.section-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.02rem;
}

.editorial-media {
  position: relative;
  overflow: hidden;
  min-height: 590px;
  background: var(--cream-200);
  box-shadow: var(--shadow);
}

.editorial-media::after {
  position: absolute;
  inset: 20px;
  border: 1px solid rgb(255 255 255 / 50%);
  content: "";
  pointer-events: none;
}

.editorial-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

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

.feature-card {
  position: relative;
  min-height: 320px;
  padding: 34px 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition:
    color 220ms ease,
    background 220ms ease,
    transform 220ms ease;
}

.feature-card:hover {
  z-index: 1;
  color: #fff;
  background: var(--wine-800);
  transform: translateY(-6px);
}

.feature-card:hover p,
.feature-card:hover .card-index,
.feature-card:hover .card-meta {
  color: rgb(255 255 255 / 72%);
}

.card-index {
  display: block;
  margin-bottom: 76px;
  color: var(--gold);
  font-family: var(--display);
  font-size: 0.9rem;
}

.card-meta {
  margin-bottom: 8px;
  color: var(--wine-700);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.feature-card p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
  transition: color 220ms ease;
}

.section-action {
  display: flex;
  justify-content: flex-end;
  margin-top: 34px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding: 10px 0;
  color: var(--wine-800);
  border-bottom: 1px solid currentColor;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.text-link svg {
  transition: transform 180ms ease;
}

.text-link:hover svg {
  transform: translateX(5px);
}

.image-band {
  position: relative;
  display: grid;
  place-items: center;
  min-height: min(72vw, 790px);
  overflow: hidden;
  color: #fff;
  background: var(--wine-900);
}

.image-band::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgb(34 6 14 / 52%), rgb(34 6 14 / 10%));
  content: "";
}

.image-band-media,
.image-band-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.image-band-media img {
  object-fit: cover;
}

.image-band blockquote {
  z-index: 1;
  width: min(900px, calc(100vw - 60px));
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.7rem, 6vw, 6.8rem);
  line-height: 0.98;
  text-align: center;
  text-wrap: balance;
}

.trust-panel {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(48px, 8vw, 130px);
  width: min(1380px, calc(100vw - 40px));
  margin-block: 56px;
  padding: clamp(64px, 7vw, 105px);
  color: #fff;
  border: 0;
  background:
    radial-gradient(circle at 85% 12%, rgb(197 162 106 / 20%), transparent 25rem),
    var(--wine-900);
}

.trust-panel .eyebrow {
  color: var(--gold);
}

.trust-panel h2 {
  margin-bottom: 0;
  font-size: clamp(2.6rem, 5vw, 5.6rem);
}

.trust-panel__body {
  align-self: end;
}

.trust-panel__body > p {
  max-width: 680px;
  color: rgb(255 255 255 / 74%);
  font-size: 1.04rem;
}

.link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 34px;
  margin-top: 28px;
}

.text-link--light {
  color: #fff;
}

.table-wrap {
  overflow-x: auto;
  border-top: 1px solid var(--line);
  scrollbar-color: var(--wine-700) var(--cream-200);
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

th,
td {
  padding: 24px 20px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

thead th {
  color: var(--wine-700);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

tbody th {
  width: 24%;
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 400;
}

tbody td {
  color: var(--muted);
  font-size: 0.93rem;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 96px;
  padding: 18px 0;
  cursor: pointer;
  font-family: var(--display);
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  line-height: 1.15;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary i {
  position: relative;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.faq-list summary i::before,
.faq-list summary i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 1px;
  background: var(--wine-800);
  content: "";
  transform: translate(-50%, -50%);
}

.faq-list summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 180ms ease;
}

.faq-list details[open] summary i::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-answer {
  max-width: 760px;
  padding: 0 0 30px;
  color: var(--muted);
}

.steps {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
  counter-reset: none;
}

.steps li {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 30px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.steps li > span {
  color: var(--gold);
  font-family: var(--display);
  font-size: 1.1rem;
}

.steps h3 {
  margin-bottom: 7px;
}

.steps p {
  max-width: 750px;
  margin-bottom: 0;
  color: var(--muted);
}

.gallery-section {
  width: min(1480px, calc(100vw - 32px));
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.gallery-card {
  position: relative;
  min-height: 430px;
  padding: 0;
  overflow: hidden;
  color: #fff;
  border: 0;
  background: var(--wine-900);
  cursor: zoom-in;
}

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

.gallery-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgb(30 4 10 / 72%), transparent 45%);
  content: "";
}

.gallery-card__media,
.gallery-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.gallery-card__media img {
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

.gallery-card > span {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 22px;
  left: 24px;
  font-family: var(--display);
  font-size: 1.45rem;
  text-align: left;
}

.links-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(50px, 8vw, 130px);
}

.links-section h2 {
  font-size: clamp(2.5rem, 4.5vw, 4.7rem);
}

.links-section__text {
  max-width: 540px;
  color: var(--muted);
}

.source-links {
  border-top: 1px solid var(--line);
}

.source-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--display);
  font-size: clamp(1.25rem, 2vw, 1.8rem);
}

.source-links svg {
  flex: 0 0 22px;
  width: 22px;
  fill: none;
  stroke: var(--wine-700);
  stroke-width: 1.5;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 90px;
  align-items: end;
}

.contact-panel > div:first-child {
  max-width: 720px;
}

.contact-panel > div:first-child > p:last-child {
  color: var(--muted);
}

.contact-panel__actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 340px;
}

.contact-number {
  display: flex;
  flex-direction: column;
  padding: 25px 28px;
  color: #fff;
  background: var(--wine-900);
}

.contact-number span {
  margin-bottom: 5px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  opacity: 0.65;
  text-transform: uppercase;
}

.contact-number strong {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 400;
}

.legal-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1.35fr);
  gap: 80px;
  padding-block: 64px;
}

.legal-section h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 3.4vw, 3.7rem);
}

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

.final-cta {
  position: relative;
  display: grid;
  min-height: 690px;
  place-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--wine-900);
}

.final-cta__media,
.final-cta__media img,
.final-cta__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.final-cta__media img {
  object-fit: cover;
  object-position: center 56%;
}

.final-cta__overlay {
  background:
    radial-gradient(circle at center, rgb(58 10 23 / 30%), rgb(35 5 13 / 80%)),
    linear-gradient(0deg, rgb(35 5 13 / 68%), transparent);
}

.final-cta__content {
  position: relative;
  width: min(840px, calc(100vw - 48px));
  text-align: center;
}

.final-cta__content .eyebrow {
  color: var(--gold);
}

.final-cta h2 {
  margin-bottom: 22px;
  font-size: clamp(3.2rem, 7vw, 7.4rem);
  line-height: 0.9;
}

.final-cta p:not(.eyebrow) {
  margin-bottom: 34px;
  font-size: 1.05rem;
}

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

.site-footer {
  display: grid;
  grid-template-columns: 1.35fr 0.7fr 0.8fr 1fr;
  gap: 55px;
  padding: 82px max(42px, calc((100vw - 1240px) / 2));
  color: rgb(255 255 255 / 72%);
  background: var(--wine-950);
}

.brand--footer {
  color: #fff;
}

.footer-brand p {
  max-width: 360px;
  margin-top: 25px;
  font-size: 0.82rem;
}

.footer-nav,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.82rem;
}

.footer-nav strong,
.footer-contact span {
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-nav a:hover,
.footer-contact a:hover,
.footer-bottom a:hover {
  color: #fff;
}

.footer-contact a:first-of-type {
  color: #fff;
  font-family: var(--display);
  font-size: 1.65rem;
}

.footer-bottom {
  display: flex;
  grid-column: 1 / -1;
  flex-wrap: wrap;
  gap: 15px 30px;
  padding-top: 28px;
  border-top: 1px solid rgb(255 255 255 / 12%);
  font-size: 0.72rem;
}

.footer-bottom span {
  margin-right: auto;
}

.floating-contact {
  position: fixed;
  z-index: 35;
  right: 24px;
  bottom: 24px;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: #fff;
  border: 1px solid rgb(255 255 255 / 35%);
  border-radius: 50%;
  background: var(--wine-700);
  box-shadow: 0 14px 36px rgb(40 4 14 / 35%);
  transition: transform 180ms ease;
}

.floating-contact:hover {
  transform: translateY(-4px);
}

.floating-contact svg {
  width: 27px;
  height: 27px;
  fill: currentColor;
}

.lightbox {
  width: min(1240px, calc(100vw - 40px));
  max-width: none;
  max-height: calc(100vh - 40px);
  padding: 0;
  overflow: visible;
  color: #fff;
  border: 0;
  background: transparent;
}

.lightbox::backdrop {
  background: rgb(20 2 8 / 92%);
  backdrop-filter: blur(12px);
}

.lightbox figure {
  margin: 0;
}

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

.lightbox figcaption {
  padding-top: 12px;
  font-family: var(--display);
  font-size: 1.2rem;
  text-align: center;
}

.lightbox__close {
  position: absolute;
  z-index: 2;
  top: -10px;
  right: -10px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0 0 4px;
  color: #fff;
  border: 1px solid rgb(255 255 255 / 45%);
  border-radius: 50%;
  background: var(--wine-900);
  cursor: pointer;
  font-family: var(--sans);
  font-size: 1.8rem;
  line-height: 1;
}

.lead-dialog {
  width: min(640px, calc(100vw - 32px));
  max-width: none;
  max-height: calc(100dvh - 32px);
  padding: 0;
  overflow: visible;
  color: var(--ink);
  border: 0;
  background: transparent;
}

.lead-dialog::backdrop {
  background: rgb(25 3 9 / 76%);
  backdrop-filter: blur(12px);
}

.lead-dialog__card {
  position: relative;
  max-height: calc(100dvh - 32px);
  padding: clamp(32px, 6vw, 58px);
  overflow-y: auto;
  background:
    radial-gradient(circle at 92% 5%, rgb(216 231 235 / 55%), transparent 20rem),
    var(--cream-50);
  box-shadow: 0 36px 100px rgb(20 2 8 / 42%);
}

.lead-dialog__card::before {
  position: absolute;
  inset: 15px;
  border: 1px solid var(--line);
  content: "";
  pointer-events: none;
}

.lead-dialog__close {
  position: absolute;
  z-index: 2;
  top: 17px;
  right: 17px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0 0 4px;
  color: var(--wine-800);
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgb(255 253 248 / 82%);
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
}

.lead-dialog__intro,
.lead-success {
  position: relative;
  z-index: 1;
}

.lead-dialog .eyebrow {
  margin-bottom: 18px;
}

.lead-dialog h2 {
  max-width: 500px;
  margin-bottom: 20px;
  padding-right: 28px;
  font-size: clamp(2.55rem, 7vw, 4.7rem);
}

.lead-dialog__intro > p:not(.eyebrow),
.lead-success > p:not(.eyebrow) {
  max-width: 500px;
  margin-bottom: 28px;
  color: var(--muted);
}

.lead-form {
  display: grid;
  gap: 18px;
}

.field {
  display: grid;
  gap: 8px;
}

.field > span {
  color: var(--wine-800);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.field > span b {
  color: #a52b42;
}

.field input {
  width: 100%;
  min-height: 58px;
  padding: 0 17px;
  color: var(--ink);
  border: 1px solid rgb(74 20 34 / 25%);
  border-radius: 0;
  outline: 0;
  background: rgb(255 255 255 / 70%);
  font: 1rem var(--sans);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.field input:focus {
  border-color: var(--wine-700);
  background: #fff;
  box-shadow: 0 0 0 3px rgb(104 31 48 / 10%);
}

.field input[aria-invalid="true"] {
  border-color: #a52b42;
}

.field small {
  color: var(--muted);
  font-size: 0.72rem;
}

.field .field-error {
  min-height: 1em;
  color: #93223a;
}

.consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 11px;
  align-items: start;
  margin-block: 2px 6px;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.75rem;
  line-height: 1.5;
}

.consent input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--wine-700);
}

.consent a {
  color: var(--wine-700);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.lead-form__trap {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.lead-form__submit {
  width: 100%;
}

.lead-form__status {
  min-height: 1.5em;
  margin: -5px 0 0;
  color: #93223a;
  font-size: 0.78rem;
  text-align: center;
}

.lead-success {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 420px;
  justify-content: center;
}

.lead-success__mark {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  margin-bottom: 30px;
  color: #fff;
  border-radius: 50%;
  background: var(--wine-800);
}

.lead-success__mark svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.not-found {
  color: #fff;
  background: var(--wine-950);
}

.not-found__main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 78vh;
  width: var(--container);
  padding-top: 120px;
}

.not-found__main h1 {
  margin-bottom: 20px;
  font-size: clamp(4rem, 10vw, 9rem);
  line-height: 0.9;
}

.not-found__main p:not(.eyebrow) {
  max-width: 600px;
  color: rgb(255 255 255 / 70%);
}

.motion-ready [data-reveal] {
  opacity: 1;
  transform: translateY(28px);
  transition:
    opacity 650ms ease var(--reveal-delay, 0ms),
    transform 650ms cubic-bezier(0.2, 0.7, 0.2, 1) var(--reveal-delay, 0ms);
}

.motion-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes hero-zoom {
  from {
    transform: scale(1.045);
  }
  to {
    transform: scale(1);
  }
}

@keyframes scroll-pulse {
  0%,
  100% {
    opacity: 0.4;
    transform: translateY(-3px);
  }
  50% {
    opacity: 1;
    transform: translateY(3px);
  }
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 1fr auto 1fr;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: -1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
    padding: 110px max(34px, 8vw) 60px;
    color: #fff;
    background:
      radial-gradient(circle at 85% 12%, rgb(197 162 106 / 18%), transparent 23rem),
      var(--wine-950);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-15px);
    transition:
      opacity 220ms ease,
      transform 220ms ease;
  }

  .site-nav--open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    font-family: var(--display);
    font-size: clamp(2.2rem, 6vw, 4.6rem);
    font-weight: 400;
    letter-spacing: -0.03em;
    text-transform: none;
  }

  .site-nav__more {
    display: block;
  }

  .menu-toggle {
    z-index: 2;
    display: block;
    grid-column: 2;
    grid-row: 1;
  }

  .header-phone {
    grid-column: 3;
    grid-row: 1;
  }

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

  .feature-card {
    min-height: 280px;
  }

  .contact-panel {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .contact-panel__actions {
    width: min(500px, 100%);
  }

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

  .footer-contact {
    grid-column: 2;
  }
}

@media (max-width: 820px) {
  :root {
    --container: min(100% - 36px, 680px);
  }

  .site-header {
    min-height: 76px;
    padding: 0 18px;
  }

  .brand-text strong {
    font-size: 1.05rem;
  }

  .brand-text small {
    font-size: 0.46rem;
  }

  .brand-mark {
    transform: scale(0.86);
  }

  .header-phone span {
    display: none;
  }

  .header-phone strong {
    font-size: 0;
  }

  .header-phone strong::after {
    display: block;
    content: "Позвонить";
    font-size: 0.69rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .hero,
  .hero--home {
    min-height: 780px;
  }

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

  .hero-overlay {
    background:
      linear-gradient(90deg, rgb(28 4 10 / 78%), rgb(28 4 10 / 22%)),
      linear-gradient(0deg, rgb(25 4 9 / 82%) 0%, transparent 65%);
  }

  .hero-content {
    padding: 140px 0 105px;
  }

  .hero h1,
  .hero:not(.hero--home) h1 {
    font-size: clamp(3.6rem, 17vw, 6.4rem);
    line-height: 0.88;
  }

  .hero-lead {
    max-width: 560px;
  }

  .hero-scroll {
    display: none;
  }

  .stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: -32px;
  }

  .stats div {
    min-height: 130px;
    padding: 25px 22px;
    border-bottom: 1px solid var(--line);
  }

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

  .stats div:nth-child(n + 3) {
    border-bottom: 0;
  }

  .section {
    padding-block: 78px;
  }

  .section-heading,
  .editorial-split,
  .editorial-split--reverse,
  .trust-panel,
  .links-section,
  .legal-section {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .editorial-split--reverse .editorial-media {
    order: 2;
  }

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

  .trust-panel {
    width: calc(100vw - 20px);
    padding: 58px 28px;
  }

  .trust-panel__body {
    align-self: auto;
  }

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

  .gallery-card,
  .gallery-card--wide {
    grid-column: auto;
    min-height: 390px;
  }

  .gallery-card:first-child {
    grid-column: span 2;
    min-height: 520px;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
    padding: 68px 24px;
  }

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

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

@media (max-width: 560px) {
  :root {
    --container: calc(100vw - 28px);
  }

  body {
    font-size: 15px;
  }

  h2 {
    font-size: clamp(2.25rem, 12vw, 3.55rem);
  }

  .site-header {
    grid-template-columns: 1fr auto auto;
    gap: 8px;
  }

  .brand {
    gap: 7px;
  }

  .brand-mark {
    width: 27px;
  }

  .header-phone {
    grid-column: 2;
  }

  .menu-toggle {
    grid-column: 3;
  }

  .site-nav a {
    font-size: clamp(2rem, 12vw, 3.4rem);
  }

  .hero,
  .hero--home {
    min-height: 710px;
  }

  .hero-content {
    padding-bottom: 84px;
  }

  .hero h1,
  .hero:not(.hero--home) h1 {
    font-size: clamp(3.2rem, 18vw, 5.4rem);
  }

  .hero-lead {
    font-size: 0.98rem;
  }

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

  .button {
    width: 100%;
  }

  .stats {
    width: calc(100vw - 18px);
  }

  .stats div {
    padding: 22px 17px;
  }

  .stats strong {
    font-size: 1.9rem;
  }

  .stats span {
    font-size: 0.71rem;
  }

  #project {
    padding-top: 30px;
  }

  .section {
    padding-block: 64px;
  }

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

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

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

  .feature-card {
    min-height: 250px;
  }

  .card-index {
    margin-bottom: 50px;
  }

  .image-band {
    min-height: 610px;
  }

  .image-band blockquote {
    width: calc(100vw - 34px);
    font-size: clamp(2.5rem, 13vw, 4rem);
  }

  .trust-panel {
    margin-block: 20px;
  }

  .steps li {
    grid-template-columns: 45px 1fr;
    gap: 14px;
  }

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

  .gallery-card,
  .gallery-card--wide,
  .gallery-card:first-child {
    grid-column: auto;
    min-height: 390px;
  }

  .contact-panel__actions {
    min-width: 0;
  }

  .contact-number strong {
    font-size: 1.7rem;
  }

  .final-cta {
    min-height: 650px;
  }

  .final-cta h2 {
    font-size: clamp(3rem, 15vw, 5rem);
  }

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

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

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

  .footer-bottom span {
    margin-right: 0;
  }

  .floating-contact {
    right: 14px;
    bottom: 14px;
    width: 52px;
    height: 52px;
  }

  .lead-dialog {
    width: calc(100vw - 16px);
    max-height: calc(100dvh - 16px);
  }

  .lead-dialog__card {
    max-height: calc(100dvh - 16px);
    padding: 40px 24px 30px;
  }

  .lead-dialog__card::before {
    inset: 8px;
  }

  .lead-dialog__close {
    top: 12px;
    right: 12px;
  }

  .lead-dialog h2 {
    font-size: clamp(2.45rem, 12vw, 3.5rem);
  }

  .lead-success {
    min-height: 480px;
  }
}

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

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

  .motion-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
