:root {
  --brown: #1f1814;
  --brown-soft: #2b221d;
  --green: #1f4233;
  --green-soft: #2b4b3b;
  --gold: #c99459;
  --gold-light: #c5ae91;
  --white: #fff;
  --muted: #d7cfc8;
  --line: rgba(197, 174, 145, 0.42);
  --content: 1260px;
  --header-height: 70px;
  --pattern: url("media/pattern.svg");
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--white);
  background: var(--brown);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

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

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

h1,
h2,
h3,
p,
figure,
dl,
dd {
  margin: 0;
}

button {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 20px;
  right: 2%;
  left: 2%;
  display: grid;
  grid-template-columns: 160px 1fr 48px;
  align-items: center;
  min-height: var(--header-height);
  padding: 8px 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(31, 24, 20, 0.62);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
  transition: top 250ms ease, background-color 250ms ease, box-shadow 250ms ease;
}

.site-header.is-scrolled {
  top: 10px;
  background: rgba(31, 24, 20, 0.88);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.34);
}

.site-logo {
  width: 122px;
}

.site-logo img {
  width: 100%;
  height: 50px;
  object-fit: contain;
}

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

.main-nav a {
  position: relative;
  color: var(--gold-light);
  font-size: clamp(14px, 1.15vw, 18px);
  white-space: nowrap;
}

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

.main-nav a:hover::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.main-nav a.is-active {
  color: var(--white);
}

.call-button,
.scroll-button {
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold-light);
  color: var(--brown);
}

.call-button {
  width: 42px;
  height: 42px;
  font-size: 20px;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: max(760px, 100vh);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.2), transparent 38%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.32), transparent 35%),
    url("media/hero.webp") center center / cover no-repeat;
}

.hero-copy {
  position: absolute;
  z-index: 1;
  top: 25%;
  left: 39%;
  width: min(560px, 46vw);
}

.hero h1 {
  color: #d3b88f;
  font-size: clamp(62px, 7.8vw, 118px);
  font-style: italic;
  font-weight: 800;
  line-height: 0.82;
}

.hero-copy p {
  width: fit-content;
  margin-top: 22px;
  padding: 12px 22px;
  background: rgba(201, 148, 89, 0.18);
  font-size: clamp(18px, 1.6vw, 27px);
  line-height: 1.25;
}

.scroll-button {
  position: absolute;
  z-index: 2;
  right: 2.8%;
  bottom: 3.5%;
  width: 64px;
  height: 64px;
  font-size: 52px;
  font-weight: 300;
  line-height: 1;
}

.section {
  position: relative;
  overflow: hidden;
}

.section-inner {
  position: relative;
  z-index: 2;
  width: min(var(--content), calc(100% - 72px));
  margin-inline: auto;
}

.patterned {
  position: relative;
  background-color: var(--brown);
}

.patterned::before {
  position: absolute;
  inset: 0;
  background-image: var(--pattern);
  background-repeat: repeat;
  background-size: auto;
  content: "";
  opacity: 0.1;
  pointer-events: none;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 3.4vw, 54px);
  font-weight: 400;
  line-height: 1.12;
  text-align: center;
}

.section-title::before,
.section-title::after {
  width: 18px;
  height: 42px;
  border-color: var(--gold-light);
  border-style: solid;
  content: "";
  opacity: 0.8;
}

.section-title::before {
  border-width: 0 0 2px 2px;
}

.section-title::after {
  border-width: 2px 2px 0 0;
}

.section-subtitle {
  margin-top: 18px;
  text-align: center;
}

.concept {
  min-height: 760px;
  padding: 150px 0 110px;
  box-shadow: inset -20px 0 42px rgba(0, 0, 0, 0.38);
}

.concept .section-title {
  margin-bottom: 72px;
}

.accordion {
  width: 100%;
}

.accordion-item {
  border-top: 1px solid var(--line);
}

.accordion-item:last-child {
  border-bottom: 1px solid var(--line);
}

.accordion-trigger {
  display: grid;
  grid-template-columns: 74px 1fr 40px;
  align-items: center;
  width: 100%;
  min-height: 88px;
  padding: 10px 20px;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.accordion-number {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(197, 174, 145, 0.32);
  border-radius: 50%;
  color: var(--gold-light);
  font-size: 18px;
  transition: color 250ms ease, background-color 250ms ease;
}

.accordion-name {
  font-size: clamp(20px, 1.8vw, 29px);
  font-weight: 700;
}

.accordion-arrow {
  font-size: 30px;
  text-align: center;
  transition: transform 350ms ease;
}

.accordion-trigger[aria-expanded="true"] .accordion-number {
  background: var(--gold-light);
  color: var(--brown);
}

.accordion-trigger[aria-expanded="true"] .accordion-arrow {
  transform: rotate(180deg);
}

.accordion-panel {
  overflow: hidden;
  transition: height 420ms cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-content {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 1.15fr);
  gap: 56px;
  align-items: center;
  min-height: 360px;
  padding: 28px 24px 54px 94px;
}

.accordion-content p {
  color: #f4f0ed;
  font-size: clamp(17px, 1.4vw, 21px);
}

.accordion-content img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.oak-alley {
  min-height: 0;
  padding: 0;
  background: var(--brown);
}

.oak-intro {
  position: relative;
  display: grid;
  min-height: clamp(620px, 78vh, 840px);
  place-items: center;
  overflow: hidden;
}

.oak-intro-bg,
.oak-intro-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.oak-intro-bg {
  object-fit: cover;
  object-position: center;
  filter: brightness(0.72);
}

.oak-intro-shade {
  background: rgba(31, 24, 20, 0.35);
}

.oak-intro-panel {
  position: relative;
  z-index: 2;
  width: min(900px, calc(100% - 120px));
  padding: 50px 60px 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(19, 18, 17, 0.62);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(9px);
  text-align: center;
}

.oak-intro-panel h2 {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 2.4vw, 42px);
  font-weight: 400;
  line-height: 1.05;
}

.oak-intro-panel p {
  width: min(760px, 100%);
  margin: 34px auto 0;
  color: #f5f0ea;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.45;
}

.oak-intro-panel img {
  width: 46px;
  height: 56px;
  margin: 32px auto 0;
}

.park-map {
  position: relative;
  height: clamp(760px, 94vh, 940px);
  margin-top: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(53, 87, 60, 0.28), transparent 60%),
    var(--brown);
}

.park-strip {
  position: absolute;
  right: -2%;
  left: -2%;
  width: 104%;
  height: clamp(130px, 13.3vw, 300px);
  max-width: none;
  object-fit: fill;
}

.park-strip-top {
  top: 0;
}

.park-strip-bottom {
  top: auto;
  bottom: 0;
}

.park-locations {
  position: absolute;
  z-index: 3;
  top: clamp(285px, 41%, 420px);
  left: max(28px, calc((100% - var(--content)) / 2));
  width: min(520px, 36vw);
  color: var(--white);
}

.park-locations h3 {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 2.3vw, 44px);
  font-weight: 400;
  line-height: 1;
}

.park-locations h3::before,
.park-locations h3::after {
  width: 16px;
  height: 42px;
  border-color: var(--gold-light);
  content: "";
}

.park-locations h3::before {
  border-top: 2px solid var(--gold-light);
  border-left: 2px solid var(--gold-light);
}

.park-locations h3::after {
  border-top: 2px solid var(--gold-light);
  border-right: 2px solid var(--gold-light);
}

.park-locations ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(13px, 1vw, 16px);
  line-height: 1.25;
}

.park-locations li {
  position: relative;
  padding-left: 16px;
}

.park-locations li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-light);
  content: "";
}

.hotspot {
  position: absolute;
  z-index: 4;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.hotspot-dot {
  position: absolute;
  inset: 3px;
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 0 9px rgba(255, 255, 255, 0.15);
}

.hotspot-card {
  position: absolute;
  bottom: 72px;
  left: 50%;
  display: grid;
  width: 340px;
  overflow: visible;
  border-radius: 16px;
  background: #174739;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.hotspot-opens-down .hotspot-card {
  top: 72px;
  bottom: auto;
  transform: translate(-50%, -12px);
}

.hotspot-card::after {
  position: absolute;
  top: 100%;
  left: calc(50% - 1px);
  width: 2px;
  height: 42px;
  background: var(--white);
  content: "";
}

.hotspot-opens-down .hotspot-card::after {
  top: auto;
  bottom: 100%;
}

.hotspot-card img {
  width: 100%;
  height: 210px;
  border-radius: 16px 16px 0 0;
  object-fit: cover;
}

.hotspot-card > span {
  padding: 12px;
  font-size: 20px;
  text-align: center;
}

.hotspot:hover .hotspot-card,
.hotspot:focus-visible .hotspot-card,
.hotspot.is-open .hotspot-card {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.hotspot-1 { top: 15%; left: 16%; }
.hotspot-2 { top: 80%; left: 29%; }
.hotspot-3 { top: 15%; left: 43%; }
.hotspot-4 { top: 81%; left: 57%; }
.hotspot-5 { top: 15%; left: 72%; }
.hotspot-6 { top: 80%; left: 86%; }

.location {
  width: 100%;
  min-height: 900px;
  aspect-ratio: 1280 / 1000;
  background: var(--brown);
}

.section-video,
.location-shade,
.contact-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.section-video {
  background: var(--brown);
  object-fit: contain;
}

.location-shade {
  background: rgba(31, 24, 20, 0.38);
}

.location-copy {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding-top: 150px;
  padding-bottom: 70px;
}

.distance-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: min(920px, 100%);
  margin: auto auto 0;
}

.distance-list div {
  border-top: 1px solid var(--gold-light);
  padding-top: 14px;
  text-align: center;
}

.distance-list dt {
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
}

.distance-list dd {
  color: var(--muted);
}

.showcase {
  min-height: max(680px, 80vh);
  background: var(--brown);
}

.slider {
  position: relative;
}

.slider-viewport {
  overflow: hidden;
}

.slider-track {
  display: flex;
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.feature-slide,
.gallery-slide {
  flex: 0 0 100%;
}

.feature-slide {
  position: relative;
  height: max(680px, 80vh);
}

.feature-slide > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-slide::after {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.12);
  content: "";
}

.feature-panel {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: min(900px, calc(100% - 120px));
  padding: 38px 48px 42px;
  background: rgba(20, 20, 20, 0.7);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  text-align: center;
  transform: translate(-50%, -50%);
}

.feature-icon {
  width: 46px;
  height: 54px;
  margin: 0 auto 8px;
}

.feature-panel h2 {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3vw, 46px);
  text-transform: uppercase;
}

.feature-panel p {
  margin: 12px auto 14px;
  font-size: 18px;
  line-height: 1.35;
}

.feature-panel strong {
  display: block;
  margin-bottom: 10px;
}

.feature-panel ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 34px;
  width: min(700px, 100%);
  margin: 0 auto;
  padding: 0;
  list-style: none;
  text-align: left;
}

.feature-panel li {
  position: relative;
  min-height: 20px;
  padding-left: 44px;
}

.feature-panel li::before {
  position: absolute;
  top: 0.1em;
  left: 0;
  width: 32px;
  height: 18px;
  background: var(--gold);
  content: "";
  -webkit-mask: url("media/list-marker.svg") center / contain no-repeat;
  mask: url("media/list-marker.svg") center / contain no-repeat;
}

.slider-controls {
  position: absolute;
  z-index: 8;
  right: 50%;
  bottom: 24px;
  display: grid;
  grid-template-columns: 58px minmax(90px, 1fr) 58px;
  align-items: center;
  width: clamp(260px, 25vw, 520px);
  max-width: calc(100% - 32px);
  min-height: 64px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  transform: translateX(50%);
}

.slider-button {
  position: relative;
  height: 62px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 0;
  line-height: 1;
}

.slider-button::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 15px;
  border-top: 4px solid var(--white);
  border-right: 4px solid var(--white);
  content: "";
}

.slider-button[data-prev]::before {
  transform: translate(-42%, -50%) rotate(-135deg);
}

.slider-button[data-next]::before {
  transform: translate(-58%, -50%) rotate(45deg);
}

.slider-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 12px;
}

.slider-dot {
  width: 6px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
}

.slider-dot.is-active {
  background: var(--gold);
}

.comfort {
  min-height: 1270px;
  padding: 100px 0 110px;
}

.comfort-heading {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 66px;
}

.comfort-heading h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 4.5vw, 68px);
  font-weight: 700;
  line-height: 1.04;
}

.comfort-heading p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(23px, 2.25vw, 34px);
  line-height: 1.15;
  text-align: center;
}

.comfort-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  align-items: center;
}

.compact-accordion .accordion-trigger {
  grid-template-columns: 60px 1fr 34px;
  min-height: 72px;
  padding-inline: 0;
}

.compact-accordion .accordion-number {
  width: 40px;
  height: 40px;
  font-size: 14px;
}

.compact-accordion .accordion-name {
  font-size: 18px;
}

.compact-accordion .accordion-arrow {
  font-size: 22px;
}

.accordion-copy {
  padding: 12px 24px 28px 60px;
  color: var(--muted);
}

.comfort-images {
  position: relative;
  min-height: 560px;
}

.comfort-images img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 380ms ease, transform 600ms ease;
}

.comfort-images img.is-active {
  opacity: 1;
  transform: scale(1);
}

.gallery {
  height: max(720px, 100vh);
  min-height: 720px;
  padding: 0;
  background: var(--brown);
}

.gallery::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(31, 24, 20, 0.72) 0%, rgba(31, 24, 20, 0.2) 36%, rgba(31, 24, 20, 0.52) 100%),
    linear-gradient(90deg, rgba(31, 24, 20, 0.42), transparent 28%, transparent 72%, rgba(31, 24, 20, 0.42));
  content: "";
  pointer-events: none;
}

.gallery .section-inner {
  position: absolute;
  z-index: 3;
  top: clamp(120px, 15vh, 170px);
  left: 50%;
  width: min(var(--content), calc(100% - 72px));
  margin: 0;
  pointer-events: none;
  transform: translateX(-50%);
}

.gallery .section-title {
  margin: 0;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.65);
}

.gallery-slider {
  position: absolute;
  z-index: 0;
  inset: 0;
  padding: 0;
}

.gallery-slider .slider-viewport,
.gallery-slider .slider-track {
  height: 100%;
}

.gallery-slide {
  height: 100%;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-slider .slider-controls {
  z-index: 4;
  bottom: clamp(34px, 6vh, 72px);
}

.apartments {
  min-height: 1110px;
  padding: 150px 0 110px;
  background: var(--green);
}

.apartment-actions {
  display: flex;
  justify-content: space-between;
  margin: 42px 0 44px;
}

.action-button {
  min-width: 190px;
  padding: 14px 20px;
  border: 0;
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 9px 20px rgba(0, 0, 0, 0.16);
  cursor: pointer;
  text-align: center;
}

.apartment-slider,
.news-slider {
  padding-bottom: 142px;
}

.apartment-slider .slider-controls,
.news-slider .slider-controls {
  bottom: 28px;
}

.apartment-slider .slider-track,
.news-slider .slider-track {
  gap: 18px;
}

.apartment-card {
  flex: 0 0 calc((100% - 72px) / 5);
  min-width: 0;
  min-height: 420px;
  padding: 30px 12px 24px;
  background: rgba(255, 255, 255, 0.055);
}

.apartment-card > img {
  width: 78%;
  height: 235px;
  margin: 0 auto 22px;
  object-fit: contain;
}

.apartment-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.apartment-meta span,
.apartment-meta strong {
  min-width: 0;
  padding: 8px 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  font-size: clamp(10px, 0.72vw, 12px);
  font-weight: 400;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.apartment-orientation {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 31px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(10px, 0.72vw, 12px);
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.apartment-orientation span {
  color: rgba(255, 255, 255, 0.56);
}

.apartment-orientation strong {
  min-width: 0;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(197, 174, 145, 0.18);
  color: var(--sand);
  font-weight: 500;
}

.technologies {
  min-height: 900px;
  padding: 160px 0 90px;
  background: var(--brown);
}

.technology-building {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  width: 48%;
  height: 100%;
  background: linear-gradient(90deg, var(--brown), transparent 45%), url("media/technology.webp") center / cover;
  opacity: 0.82;
}

.technologies .section-title {
  justify-content: flex-start;
  width: 62%;
  margin-bottom: 88px;
}

.technology-grid {
  display: grid;
  gap: 1px;
  width: 64%;
  background: var(--line);
}

.technology-grid article {
  position: relative;
  padding: 24px 38px 28px 78px;
  background: rgba(31, 24, 20, 0.94);
}

.technology-grid article > span {
  position: absolute;
  top: 25px;
  left: 26px;
  color: var(--gold-light);
  font-size: 13px;
}

.technology-grid h3 {
  margin-bottom: 8px;
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 400;
}

.technology-grid p {
  color: var(--muted);
}

.news {
  min-height: 948px;
  padding: 150px 0 110px;
}

.news .section-title {
  margin-bottom: 62px;
}

.news-card {
  flex: 0 0 calc((100% - 72px) / 5);
  min-width: 0;
  min-height: 405px;
  background: rgba(65, 54, 41, 0.78);
}

.news-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.news-card h3,
.news-card p,
.news-card a {
  margin-inline: 16px;
  overflow-wrap: break-word;
}

.news-card h3 {
  margin-top: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.15;
  overflow-wrap: normal;
}

.news-card p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.news-card a {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 16px;
  background: rgba(197, 174, 145, 0.16);
  font-size: 13px;
}

.advantages {
  min-height: 600px;
  padding: 122px 0 104px;
  background: var(--brown);
}

.advantages .section-title {
  width: min(1120px, 100%);
  margin-inline: auto;
  font-size: 40px;
  white-space: nowrap;
}

.advantage-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 70px;
  margin-top: 74px;
}

.advantage-column {
  display: grid;
  align-content: start;
  gap: 24px;
}

.advantage-column p {
  position: relative;
  min-height: 56px;
  padding-left: 48px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
}

.advantage-column p::before {
  position: absolute;
  top: 6px;
  left: 0;
  width: 32px;
  height: 18px;
  background: var(--gold);
  content: "";
  -webkit-mask: url("media/list-marker.svg") center / contain no-repeat;
  mask: url("media/list-marker.svg") center / contain no-repeat;
}

.contact {
  min-height: 760px;
  background: var(--brown);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(390px, 35.4%) 1fr;
  min-height: 760px;
}

.contact-panel {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 42px 58px;
  background-color: rgba(31, 66, 51, 0.96);
  box-shadow: 18px 0 40px rgba(0, 0, 0, 0.24);
}

.contact-panel::before {
  position: absolute;
  inset: 0;
  background-image: var(--pattern);
  background-repeat: repeat;
  background-size: auto;
  content: "";
  opacity: 0.1;
  pointer-events: none;
}

.contact-panel > * {
  position: relative;
  z-index: 1;
}

.contact-panel h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 3.7vw, 56px);
  font-weight: 400;
  line-height: 1.05;
}

.contact-panel > p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 16px;
}

.contact-media {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: var(--brown);
}

.contact-media::after {
  position: absolute;
  inset: 0;
  background: rgba(31, 24, 20, 0.22);
  content: "";
  pointer-events: none;
}

.contact-media video {
  width: 100%;
  height: 100%;
  background: var(--brown);
  object-fit: contain;
}

.contact-form {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.contact-form label {
  display: grid;
  gap: 6px;
}

.contact-form label span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.contact-form input {
  width: 100%;
  height: 42px;
  padding: 8px 4px;
  border: 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.65);
  outline: 0;
  background: transparent;
  color: var(--white);
}

.contact-form input:focus {
  border-color: var(--gold-light);
}

.contact-form button {
  min-height: 50px;
  margin-top: 12px;
  border: 0;
  background: var(--gold);
  color: var(--white);
  cursor: pointer;
  font-weight: 700;
}

.form-status {
  min-height: 24px;
  color: var(--gold-light);
  text-align: center;
}

.site-footer {
  position: relative;
  min-height: 275px;
  padding: 82px 0 38px;
  background: #1f1814;
  box-shadow:
    inset -25px 0 25px 14px rgba(0, 0, 0, 0.5),
    inset 0 28px 65px rgba(0, 0, 0, 0.6);
}

.site-footer::before {
  position: absolute;
  inset: 0;
  background-image: var(--pattern);
  background-repeat: repeat;
  background-size: auto;
  content: "";
  opacity: 0.1;
  pointer-events: none;
}

.footer-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 220px minmax(300px, 1fr) 260px;
  gap: 40px;
  align-items: center;
  width: min(var(--content), calc(100% - 72px));
  margin-inline: auto;
}

.footer-brand img {
  width: 118px;
  height: 64px;
  object-fit: contain;
}

.footer-brand p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
}

.footer-center {
  text-align: center;
}

.footer-center p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
  text-transform: uppercase;
}

.footer-center img {
  width: 92px;
  max-height: 48px;
  margin: 26px auto 8px;
  object-fit: contain;
}

.footer-center span {
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
}

.footer-socials {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.footer-socials a {
  display: grid;
  place-items: center;
  width: 41px;
  height: 41px;
  border-radius: 50%;
  background: #fff;
  color: #223b2e;
  transition: background-color 180ms ease, transform 180ms ease;
}

.footer-socials svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.footer-socials a:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.back-to-top {
  position: absolute;
  right: 2.8%;
  bottom: 34px;
  width: 64px;
  height: 64px;
  border: 0;
  border-radius: 50%;
  background: var(--gold-light);
  cursor: pointer;
}

.back-to-top::before {
  position: absolute;
  top: 56%;
  left: 50%;
  width: 20px;
  height: 20px;
  border-top: 3px solid var(--brown);
  border-left: 3px solid var(--brown);
  content: "";
  transform: translate(-50%, -50%) rotate(45deg);
}

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

  .main-nav {
    gap: 16px;
  }

  .main-nav a {
    font-size: 14px;
  }

  .hero-copy {
    left: 34%;
  }

  .accordion-content {
    gap: 30px;
    padding-left: 72px;
  }

  .comfort-layout {
    gap: 34px;
  }

  .contact-layout {
    grid-template-columns: minmax(340px, 38%) 1fr;
    gap: 0;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 62px;
  }

  .site-header {
    grid-template-columns: 1fr 44px 44px;
    overflow: visible;
    padding-inline: 14px;
    backdrop-filter: none;
  }

  .site-logo {
    width: 104px;
  }

  .menu-toggle {
    position: relative;
    display: block;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span {
    position: absolute;
    right: 9px;
    left: 9px;
    height: 1px;
    background: var(--white);
    transition: transform 250ms ease, top 250ms ease;
  }

  .menu-toggle span:first-child {
    top: 16px;
  }

  .menu-toggle span:last-child {
    top: 25px;
  }

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

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

  .main-nav {
    position: absolute;
    z-index: 10;
    top: calc(100% + 1px);
    right: -1px;
    left: -1px;
    display: grid;
    justify-items: center;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: #1f1814;
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.42);
    opacity: 0;
    transition: max-height 320ms ease, opacity 250ms ease, padding 320ms ease;
  }

  .main-nav.is-open {
    max-height: 520px;
    padding-block: 18px;
    opacity: 1;
  }

  .main-nav a {
    width: 100%;
    padding: 11px;
    text-align: center;
  }

  .main-nav a::after {
    display: none;
  }

  .section-inner {
    width: min(100% - 36px, var(--content));
  }

  .hero-copy {
    top: 27%;
    left: 12%;
    width: 78%;
  }

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

  .accordion-content {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 16px 0 38px 60px;
  }

  .accordion-content img {
    height: 280px;
  }

  .hotspot-card {
    width: 220px;
  }

  .hotspot-card img {
    height: 130px;
  }

  .feature-panel {
    width: calc(100% - 50px);
    padding: 28px 24px 34px;
  }

  .feature-panel ul {
    gap: 6px 18px;
  }

  .comfort-heading {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .comfort-heading p {
    text-align: left;
  }

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

  .comfort-images {
    min-height: 480px;
  }

  .apartment-card,
  .news-card {
    flex-basis: calc((100% - 18px) / 2);
  }

  .technology-building {
    width: 100%;
    opacity: 0.28;
  }

  .technologies .section-title,
  .technology-grid {
    width: 100%;
  }

  .advantage-list {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .advantages .section-title {
    font-size: clamp(30px, 5vw, 40px);
    white-space: normal;
  }

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

  .contact-panel {
    padding: 100px 8vw 58px;
  }

  .contact-media {
    min-height: 0;
    aspect-ratio: 1280 / 1000;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .footer-brand img {
    margin-inline: auto;
  }

  .footer-socials {
    justify-content: center;
  }

  .back-to-top {
    right: 20px;
    bottom: 20px;
  }

  .site-footer {
    padding-bottom: 120px;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 15px;
  }

  .site-header {
    top: 10px;
  }

  .hero {
    min-height: 720px;
    background-position: 56% center;
  }

  .hero-copy {
    top: 24%;
    left: 8%;
    width: 88%;
  }

  .hero h1 {
    font-size: 64px;
  }

  .hero-copy p {
    font-size: 16px;
  }

  .scroll-button {
    width: 54px;
    height: 54px;
    font-size: 43px;
  }

  .section-title {
    gap: 10px;
    font-size: 30px;
  }

  .section-title::before,
  .section-title::after {
    width: 12px;
    height: 30px;
  }

  .concept {
    padding-block: 70px;
  }

  .concept .section-title {
    margin-bottom: 42px;
  }

  .accordion-trigger {
    grid-template-columns: 52px 1fr 28px;
    min-height: 76px;
    padding-inline: 0;
  }

  .accordion-number {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

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

  .accordion-content {
    padding-left: 52px;
  }

  .accordion-content img {
    height: 220px;
  }

  .oak-alley {
    min-height: 0;
    padding: 0;
  }

  .oak-intro {
    min-height: 620px;
  }

  .oak-intro-panel {
    width: calc(100% - 36px);
    padding: 30px 20px 28px;
  }

  .oak-intro-panel h2 {
    font-size: 25px;
  }

  .oak-intro-panel p {
    margin-top: 20px;
    font-size: 13px;
  }

  .oak-intro-panel img {
    width: 38px;
    height: 46px;
    margin-top: 22px;
  }

  .park-map {
    height: 700px;
    margin-top: 0;
  }

  .park-strip {
    width: 170%;
    height: clamp(120px, 22vw, 180px);
  }

  .park-strip-top {
    right: auto;
    left: -16%;
    top: 0;
  }

  .park-strip-bottom {
    right: -16%;
    left: auto;
    top: auto;
    bottom: 0;
  }

  .park-locations {
    top: 38%;
    left: 18px;
    width: calc(100% - 36px);
  }

  .park-locations h3 {
    gap: 10px;
    font-size: 24px;
  }

  .park-locations h3::before,
  .park-locations h3::after {
    width: 12px;
    height: 30px;
  }

  .park-locations ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px 10px;
    margin-top: 14px;
    font-size: 12px;
  }

  .hotspot-card {
    width: 160px;
  }

  .hotspot-card img {
    height: 100px;
  }

  .hotspot-card > span {
    padding: 8px;
    font-size: 14px;
  }

  .hotspot-1 { top: 15%; left: 12%; }
  .hotspot-2 { top: 80%; left: 27%; }
  .hotspot-3 { top: 15%; left: 42%; }
  .hotspot-4 { top: 81%; left: 58%; }
  .hotspot-5 { top: 15%; left: 73%; }
  .hotspot-6 { top: 80%; left: 88%; }

  .location {
    min-height: 760px;
  }

  .location-copy {
    padding-top: 100px;
  }

  .distance-list {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: auto;
  }

  .distance-list div {
    display: grid;
    grid-template-columns: 100px 1fr;
    align-items: center;
    text-align: left;
  }

  .distance-list dt {
    font-size: 28px;
  }

  .showcase,
  .feature-slide {
    min-height: 780px;
    height: 780px;
  }

  .feature-panel {
    width: calc(100% - 24px);
    padding: 24px 18px 28px;
  }

  .feature-panel h2 {
    font-size: 27px;
  }

  .feature-panel p {
    font-size: 15px;
  }

  .feature-panel ul {
    grid-template-columns: 1fr;
    font-size: 14px;
  }

  .slider-controls {
    grid-template-columns: 48px minmax(90px, 1fr) 48px;
    width: min(320px, calc(100% - 24px));
    bottom: 16px;
  }

  .comfort {
    padding-block: 70px;
  }

  .comfort-heading h2 {
    font-size: 42px;
  }

  .comfort-heading p {
    font-size: 23px;
  }

  .compact-accordion .accordion-name {
    font-size: 15px;
  }

  .accordion-copy {
    padding-left: 52px;
  }

  .comfort-images {
    min-height: 300px;
  }

  .gallery {
    height: max(620px, 100svh);
    min-height: 620px;
  }

  .gallery .section-inner {
    top: 104px;
    width: min(100% - 36px, var(--content));
  }

  .gallery-slide {
    height: 100%;
  }

  .gallery-slider .slider-controls {
    bottom: 26px;
  }

  .apartments {
    min-height: 920px;
  }

  .apartment-actions {
    gap: 10px;
  }

  .action-button {
    min-width: 0;
    width: 50%;
    padding-inline: 10px;
    font-size: 13px;
  }

  .apartment-card,
  .news-card {
    flex-basis: 100%;
  }

  .apartment-card {
    min-height: 460px;
  }

  .apartment-card > img {
    height: 290px;
  }

  .technology-grid article {
    padding-left: 60px;
  }

  .advantages .section-title {
    font-size: 27px;
  }

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

  .contact-form {
    padding: 0;
  }

  .contact-panel {
    padding: 82px 20px 48px;
  }

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

  .footer-socials {
    flex-wrap: wrap;
  }

  .back-to-top {
    width: 54px;
    height: 54px;
  }
}

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