:root {
  --forest: #173f35;
  --forest-deep: #0d2923;
  --moss: #71806d;
  --cream: #f3efe4;
  --sand: #d8c6a5;
  --ink: #202723;
  --white: #fffdf8;
  --line: rgba(32, 39, 35, 0.16);
  --serif: "Prata", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open,
body.dialog-open {
  overflow: hidden;
}

body.menu-open .site-header {
  color: var(--cream);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.16);
  backdrop-filter: none;
}

button,
input,
select {
  font: inherit;
}

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

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

button {
  color: inherit;
}

.noise {
  position: fixed;
  z-index: 1000;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.75'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(24px, 5vw, 76px);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transition: background 0.4s ease, height 0.4s ease, color 0.4s ease;
}

.site-header.scrolled {
  height: 76px;
  color: var(--forest-deep);
  background: rgba(243, 239, 228, 0.92);
  border-color: rgba(23, 63, 53, 0.12);
  backdrop-filter: blur(16px);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  width: 72px;
  height: 54px;
  display: grid;
  place-items: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: hidden;
}

.logo-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}

.logo-copy {
  display: grid;
  line-height: 1.1;
}

.logo-copy b {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
  letter-spacing: 0.03em;
}

.logo-copy small {
  margin-top: 4px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.21em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3.3vw, 52px);
  margin-left: auto;
  margin-right: clamp(24px, 4vw, 64px);
  font-size: 13px;
  font-weight: 600;
}

.desktop-nav a {
  position: relative;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

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

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

.lang-switch {
  display: flex;
  gap: 5px;
  padding: 8px 0;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  opacity: 0.68;
}

.lang-switch .lang-active {
  opacity: 1;
  font-weight: 800;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 100px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

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

.button-small {
  min-height: 42px;
  padding: 0 21px;
  color: var(--forest-deep);
  background: var(--white);
}

.site-header.scrolled .button-small {
  color: var(--white);
  background: var(--forest);
}

.button-light {
  color: var(--forest-deep);
  background: var(--white);
}

.button-light:hover {
  background: #ebe3d2;
}

.button-dark {
  color: var(--white);
  background: var(--forest);
}

.button-dark:hover {
  background: var(--forest-deep);
}

.menu-toggle {
  width: 42px;
  height: 42px;
  display: none;
  place-items: center;
  padding: 0;
  color: currentColor;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-toggle span {
  grid-area: 1 / 1;
  width: 24px;
  height: 1px;
  background: currentColor;
  transform: translateY(-4px);
  transition: transform 0.3s ease;
}

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

.menu-toggle.active span:first-child {
  transform: rotate(45deg);
}

.menu-toggle.active span:last-child {
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 30px 42px;
  color: var(--cream);
  background: var(--forest-deep);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-14px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.mobile-menu nav {
  display: grid;
  gap: 10px;
}

.mobile-menu nav a {
  font-family: var(--serif);
  font-size: clamp(36px, 11vw, 58px);
  line-height: 1.3;
}

.mobile-menu .social-link {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 13px;
}

.hero {
  position: relative;
  min-height: 760px;
  height: 100svh;
  display: flex;
  align-items: center;
  color: var(--white);
  background: var(--forest-deep);
  isolation: isolate;
}

.hero-backdrop,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-backdrop {
  z-index: -2;
  background:
    url("assets/web/hero.jpg")
    center 58% / cover no-repeat;
  transform: scale(1.04);
  animation: heroReveal 1.6s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

@keyframes heroReveal {
  from { opacity: 0.4; transform: scale(1.12); }
  to { opacity: 1; transform: scale(1.04); }
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 29, 24, 0.78) 0%, rgba(8, 29, 24, 0.34) 50%, rgba(8, 29, 24, 0.1) 80%),
    linear-gradient(0deg, rgba(8, 29, 24, 0.72) 0%, transparent 45%),
    linear-gradient(180deg, rgba(8, 29, 24, 0.55) 0%, transparent 28%);
}

.hero-content {
  width: min(780px, 88vw);
  margin-left: clamp(24px, 8vw, 128px);
  padding-top: 30px;
}

.eyebrow {
  margin: 0 0 24px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--forest);
}

.hero h1,
.house-title h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(58px, 7.9vw, 118px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.96;
}

.hero h1 span,
.hero h1 em,
.house-title h2 span,
.house-title h2 em {
  display: block;
}

.hero h1 em,
.house-title h2 em {
  font-weight: 400;
}

.hero h1 em {
  margin-left: clamp(0px, 7vw, 102px);
  color: #e8d8bc;
}

.hero-lead {
  width: min(475px, 100%);
  margin: 34px 0 0;
  font-size: 16px;
  line-height: 1.8;
  opacity: 0.88;
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 600;
}

.text-link span:last-child {
  transition: transform 0.25s ease;
}

.text-link:hover span:last-child {
  transform: translate(3px, 3px);
}

.hero-meta {
  position: absolute;
  right: clamp(24px, 5vw, 76px);
  bottom: 38px;
  left: clamp(24px, 5vw, 76px);
  display: flex;
  align-items: flex-end;
  gap: clamp(30px, 6vw, 90px);
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.hero-meta > div {
  display: grid;
  gap: 6px;
}

.hero-meta span {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.65;
}

.hero-meta strong {
  font-size: 13px;
  font-weight: 500;
}

.hero-meta i {
  margin-left: 6px;
  color: #e6cf9d;
  font-size: 8px;
  font-style: normal;
  letter-spacing: 0.12em;
}

.hero-scroll {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.hero-scroll svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
}

.section {
  padding-right: clamp(24px, 8vw, 128px);
  padding-left: clamp(24px, 8vw, 128px);
}

.intro {
  display: grid;
  grid-template-columns: 1.45fr 0.8fr;
  gap: clamp(60px, 10vw, 180px);
  padding-top: clamp(100px, 12vw, 180px);
  padding-bottom: clamp(100px, 12vw, 180px);
}

.intro h2,
.gallery-heading h2,
.location-card h2,
.dialog-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(44px, 5.5vw, 84px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.intro-copy {
  align-self: end;
}

.intro-copy p {
  margin: 0;
  color: #4e5752;
  font-size: 16px;
  line-height: 1.85;
}

.circle-link {
  width: 112px;
  height: 112px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 42px;
  color: var(--white);
  background: var(--forest);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 600;
  transition: transform 0.3s ease, background 0.3s ease;
}

.circle-link:hover {
  transform: rotate(-6deg) scale(1.04);
  background: var(--forest-deep);
}

.feature-cards {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 18px;
  padding-right: 0;
  padding-left: 0;
}

.feature-card {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  color: var(--white);
}

.feature-card-large {
  min-height: 760px;
}

.feature-image {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.65, 0.25, 1);
}

.feature-card:hover .feature-image {
  transform: scale(1.035);
}

.feature-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 26, 22, 0.72), transparent 55%);
}

.feature-image-house {
  background-image: url("assets/web/feature-gazebo.jpg");
}

.feature-image-terrace {
  background-image: url("assets/web/feature-yurt.jpg");
}

.feature-overlay {
  position: absolute;
  right: 38px;
  bottom: 40px;
  left: 38px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.feature-overlay > span {
  font-size: 10px;
  opacity: 0.75;
}

.feature-overlay > div {
  width: min(370px, 75%);
}

.feature-overlay h3 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 400;
}

.feature-overlay p {
  margin: 0;
  font-size: 12px;
  line-height: 1.7;
  opacity: 0.75;
}

.experiences {
  padding-top: clamp(110px, 13vw, 190px);
  padding-bottom: clamp(110px, 13vw, 190px);
}

.experiences-heading {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: clamp(50px, 10vw, 150px);
  align-items: end;
  margin-bottom: 70px;
}

.experiences-heading h2 {
  max-width: 800px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(44px, 5.5vw, 82px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.experiences-heading > p {
  margin: 0;
  color: #5c655f;
  font-size: 14px;
  line-height: 1.85;
}

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

.experience {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  padding: 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: color 0.35s ease, background 0.35s ease, transform 0.35s ease;
}

.experience:hover,
.experience-accent {
  color: var(--cream);
  background: var(--forest);
}

.experience:hover {
  transform: translateY(-5px);
}

.experience > span {
  font-size: 9px;
  letter-spacing: 0.15em;
  opacity: 0.55;
}

.experience h3 {
  margin: auto 0 12px;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 400;
}

.experience p {
  margin: 0;
  font-size: 12px;
  line-height: 1.75;
  opacity: 0.67;
}

.tariffs {
  padding-top: clamp(100px, 11vw, 160px);
  padding-bottom: clamp(105px, 12vw, 175px);
  background: var(--cream);
}

.tariffs-heading {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 0.62fr);
  gap: clamp(36px, 8vw, 120px);
  align-items: end;
  margin-bottom: 58px;
}

.tariffs-heading h2 {
  grid-column: 1;
  margin: 0;
  color: var(--forest-deep);
  font-family: var(--serif);
  font-size: clamp(44px, 5.5vw, 80px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.tariffs-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.tariffs-heading > p:last-child {
  grid-column: 2;
  grid-row: 2;
  margin: 0;
  color: #5c655f;
  font-size: 14px;
  line-height: 1.85;
}

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

.tariff-card,
.tariff-note {
  min-height: 100%;
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid var(--line);
  background: #eee8db;
}

.tariff-card {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.tariff-card-accent {
  color: var(--cream);
  background: var(--forest);
  border-color: transparent;
}

.tariff-top {
  display: grid;
  gap: 10px;
  padding-bottom: 30px;
  border-bottom: 1px solid currentColor;
}

.tariff-top span {
  width: max-content;
  padding: 8px 15px;
  color: var(--cream);
  background: var(--forest);
  border-radius: 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tariff-card-accent .tariff-top span {
  color: var(--forest);
  background: var(--cream);
}

.tariff-top strong {
  font-size: clamp(42px, 5vw, 72px);
  letter-spacing: -0.06em;
  line-height: 1;
}

.tariff-top small {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tariff-card ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tariff-card li {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
  font-weight: 700;
}

.tariff-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--forest);
}

.tariff-card-accent li::before {
  color: #e8d8bc;
}

.tariff-note {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  color: var(--cream);
  background:
    linear-gradient(0deg, rgba(13, 41, 35, 0.72), rgba(13, 41, 35, 0.72)),
    url("assets/web/tariff-note.jpg")
    center / cover no-repeat;
}

.tariff-note h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 400;
}

.tariff-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  line-height: 1.85;
}

.house {
  padding-top: clamp(100px, 11vw, 160px);
  padding-bottom: clamp(110px, 13vw, 190px);
  background: #e6dfd1;
}

.house-title {
  max-width: 870px;
}

.house-title h2 {
  color: var(--forest-deep);
}

.house-title h2 em {
  margin-left: clamp(0px, 9vw, 140px);
  color: #8d7458;
}

.amenities {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: 90px 0 70px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.amenity {
  min-height: 145px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-right: 1px solid var(--line);
  text-align: center;
}

.amenity:last-child {
  border-right: 0;
}

.amenity svg {
  width: 34px;
  fill: none;
  stroke: var(--forest);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.2;
}

.amenity span {
  font-size: 11px;
  font-weight: 600;
}

.house-layout {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: clamp(45px, 8vw, 120px);
  align-items: stretch;
}

.house-photo {
  position: relative;
  min-height: 630px;
  background:
    linear-gradient(0deg, rgba(6, 27, 22, 0.5), transparent 35%),
    url("assets/web/house.jpg")
    center / cover no-repeat;
}

.photo-label {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.4);
}

.photo-label span {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.photo-label strong {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
}

.house-details {
  align-self: center;
}

.house-details > p {
  margin: 0 0 50px;
  color: #525c56;
  line-height: 1.9;
}

.house-details dl {
  margin: 0 0 44px;
}

.house-details dl div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.house-details dl div:last-child {
  border-bottom: 1px solid var(--line);
}

.house-details dt {
  color: #737a76;
  font-size: 11px;
}

.house-details dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 15px;
}

.gallery {
  padding-top: clamp(100px, 11vw, 160px);
  padding-bottom: clamp(110px, 13vw, 190px);
  background: #e6dfd1;
}

.gallery-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 65px;
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  font-weight: 600;
}

.instagram-link svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.72fr 0.88fr;
  gap: 18px;
  align-items: start;
}

.gallery-item {
  margin: 0;
}

.gallery-item div {
  min-height: 540px;
  background-position: center;
  background-size: cover;
}

.gallery-item-1 div {
  min-height: 650px;
  background-image: url("assets/web/gallery-river.jpg");
}

.gallery-item-2 {
  margin-top: 95px;
}

.gallery-item-2 div {
  background-image: url("assets/web/gallery-field.jpg");
}

.gallery-item-3 div {
  min-height: 720px;
  background-image: url("assets/web/gallery-green.jpg");
}

.gallery-item figcaption {
  display: flex;
  align-items: center;
  gap: 11px;
  padding-top: 15px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.gallery-item figcaption::before {
  content: "";
  width: 20px;
  height: 1px;
  background: currentColor;
}

.quote {
  position: relative;
  min-height: 610px;
  display: grid;
  place-items: center;
  color: var(--cream);
  background: var(--forest);
  text-align: center;
  overflow: hidden;
}

.quote-mark {
  position: absolute;
  top: 20px;
  color: rgba(255, 255, 255, 0.06);
  font-family: var(--serif);
  font-size: 430px;
  line-height: 1;
}

.quote blockquote {
  position: relative;
  max-width: 920px;
  margin: 0;
}

.quote p {
  margin: 0 0 28px;
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 76px);
  letter-spacing: -0.035em;
  line-height: 1.24;
}

.quote cite {
  font-size: 10px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.6;
}

.location {
  min-height: 680px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #d7cfbe;
}

.location-map {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.location-map > svg {
  position: absolute;
  width: 100%;
  height: 100%;
}

.map-lines {
  fill: none;
  stroke: rgba(23, 63, 53, 0.2);
  stroke-width: 1.3;
}

.map-pin {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 12px;
}

.map-pin span {
  width: 28px;
  height: 28px;
  display: block;
  background: var(--forest);
  border: 8px solid #d7cfbe;
  border-radius: 50% 50% 50% 0;
  box-shadow: 0 0 0 1px var(--forest);
  transform: rotate(-45deg);
}

.map-pin b {
  padding: 6px 12px;
  color: var(--white);
  background: var(--forest);
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 400;
}

.location-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(60px, 8vw, 125px);
  color: var(--cream);
  background: #304c43;
}

.location-card h2 {
  margin-bottom: 32px;
}

.location-card > p:not(.eyebrow) {
  max-width: 460px;
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  line-height: 1.8;
}

.contact-list {
  display: grid;
  align-items: start;
  gap: 6px;
  margin-top: 30px;
}

.contact-list a {
  width: max-content;
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.35;
}

.contact-list a:hover {
  color: var(--sand);
}

.contact-list span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

.site-footer {
  padding: 70px clamp(24px, 5vw, 76px) 28px;
  color: var(--cream);
  background: var(--forest-deep);
}

.footer-top {
  min-height: 200px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 50px;
}

.logo-footer {
  color: var(--cream);
}

.footer-cta {
  display: grid;
  gap: 9px;
}

.footer-cta > span {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.55;
}

.footer-cta button {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 0 8px;
  color: var(--cream);
  background: none;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 40px);
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.58;
}

.footer-bottom span:nth-child(2) {
  text-align: center;
}

.footer-bottom a {
  text-align: right;
}

.booking-dialog {
  width: min(620px, calc(100vw - 30px));
  max-height: calc(100vh - 30px);
  padding: 58px;
  color: var(--ink);
  background: var(--cream);
  border: 0;
  overflow: auto;
}

.booking-dialog::backdrop {
  background: rgba(5, 21, 17, 0.75);
  backdrop-filter: blur(6px);
}

.dialog-close {
  position: absolute;
  top: 18px;
  right: 21px;
  width: 38px;
  height: 38px;
  color: var(--forest);
  background: none;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.dialog-heading h2 {
  margin-bottom: 16px;
  font-size: clamp(40px, 6vw, 58px);
}

.dialog-heading > p:last-child {
  color: #606862;
  font-size: 13px;
}

.booking-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 14px;
  margin-top: 34px;
}

.booking-form label {
  display: grid;
  gap: 8px;
}

.booking-form label span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.booking-form input,
.booking-form select {
  width: 100%;
  height: 50px;
  padding: 0 14px;
  color: var(--ink);
  background: #f9f6ef;
  border: 1px solid var(--line);
  border-radius: 0;
  outline: none;
}

.booking-form input:focus,
.booking-form select:focus {
  border-color: var(--forest);
}

.booking-form .button {
  grid-column: 1 / -1;
  margin-top: 8px;
}

.dialog-note {
  margin: 17px 0 0;
  color: #777e79;
  font-size: 10px;
  text-align: center;
}

.toast {
  position: fixed;
  z-index: 300;
  right: 22px;
  bottom: 22px;
  max-width: 360px;
  padding: 16px 20px;
  color: var(--white);
  background: var(--forest-deep);
  box-shadow: 0 12px 40px rgba(5, 21, 17, 0.22);
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.toast.show {
  opacity: 1;
  transform: none;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.65, 0.25, 1);
}

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

@media (max-width: 1080px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .header-actions .button-small {
    display: none;
  }

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

  .amenity:nth-child(3) {
    border-right: 0;
  }

  .amenity:nth-child(-n + 3) {
    border-bottom: 1px solid var(--line);
  }

  .house-layout {
    grid-template-columns: 1.12fr 0.88fr;
    gap: 50px;
  }

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

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

  .tariff-note {
    grid-column: 1 / -1;
    min-height: 360px;
  }

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

  .gallery-item-3 {
    grid-column: 1 / -1;
  }

  .gallery-item-3 div {
    min-height: 560px;
  }
}

@media (max-width: 760px) {
  .site-header {
    height: 74px;
    padding: 0 20px;
  }

  .site-header.scrolled {
    height: 66px;
  }

  .logo-mark {
    width: 62px;
    height: 46px;
  }

  .logo-copy b {
    font-size: 17px;
  }

  .header-actions {
    gap: 8px;
  }

  .hero {
    min-height: 700px;
  }

  .hero-content {
    width: auto;
    margin: 0 22px;
    padding-bottom: 90px;
  }

  .hero h1 {
    font-size: clamp(49px, 14vw, 72px);
    line-height: 1.02;
  }

  .hero h1 em {
    margin-left: 0;
  }

  .hero-lead {
    margin-top: 25px;
    font-size: 14px;
    line-height: 1.7;
  }

  .hero-buttons {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    margin-top: 28px;
  }

  .hero-meta {
    right: 22px;
    bottom: 20px;
    left: 22px;
    gap: 26px;
  }

  .hero-meta > div:nth-child(2) {
    display: none;
  }

  .hero-scroll {
    margin-left: auto;
  }

  .section {
    padding-right: 22px;
    padding-left: 22px;
  }

  .intro {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-top: 95px;
    padding-bottom: 95px;
  }

  .intro h2,
  .gallery-heading h2,
  .location-card h2 {
    font-size: clamp(40px, 12vw, 58px);
  }

  .circle-link {
    width: 96px;
    height: 96px;
    margin-top: 30px;
  }

  .feature-cards {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 0;
  }

  .feature-card,
  .feature-card-large {
    min-height: 540px;
  }

  .feature-overlay {
    right: 22px;
    bottom: 25px;
    left: 22px;
  }

  .feature-overlay > div {
    width: 82%;
  }

  .experiences {
    padding-top: 95px;
    padding-bottom: 95px;
  }

  .experiences-heading {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 45px;
  }

  .experiences-heading h2 {
    font-size: clamp(40px, 12vw, 58px);
  }

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

  .experience {
    min-height: 250px;
    padding: 26px;
  }

  .tariffs {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .tariffs-heading {
    display: block;
    margin-bottom: 40px;
  }

  .tariffs-heading h2 {
    margin-top: 18px;
    font-size: clamp(40px, 12vw, 58px);
  }

  .tariffs-heading > p:last-child {
    margin-top: 24px;
  }

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

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

  .tariff-note {
    grid-column: auto;
    min-height: 420px;
  }

  .house {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .house-title h2 {
    font-size: clamp(48px, 13vw, 68px);
  }

  .house-title h2 em {
    margin-left: 0;
  }

  .amenities {
    grid-template-columns: repeat(2, 1fr);
    margin: 60px 0 50px;
  }

  .amenity {
    min-height: 120px;
    border-right: 1px solid var(--line) !important;
    border-bottom: 1px solid var(--line);
  }

  .amenity:nth-child(even) {
    border-right: 0 !important;
  }

  .amenity:last-child {
    grid-column: 1 / -1;
    border-right: 0 !important;
    border-bottom: 0;
  }

  .house-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .house-photo {
    min-height: 470px;
  }

  .photo-label strong {
    max-width: 55%;
    text-align: right;
  }

  .gallery {
    padding-top: 90px;
    padding-bottom: 100px;
  }

  .gallery-heading {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 42px;
  }

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

  .gallery-item-2,
  .gallery-item-3 {
    grid-column: auto;
    margin-top: 0;
  }

  .gallery-item div,
  .gallery-item-1 div,
  .gallery-item-2 div,
  .gallery-item-3 div {
    min-height: 500px;
  }

  .quote {
    min-height: 500px;
  }

  .quote p {
    font-size: 39px;
  }

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

  .location-map {
    min-height: 430px;
  }

  .location-card {
    min-height: 530px;
    padding: 70px 25px;
  }

  .location-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer {
    padding-top: 55px;
  }

  .footer-top {
    min-height: 270px;
    flex-direction: column;
  }

  .footer-bottom {
    grid-template-columns: 1fr auto;
    gap: 10px;
  }

  .footer-bottom span:nth-child(2) {
    display: none;
  }

  .booking-dialog {
    padding: 55px 22px 30px;
  }

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

  .booking-form .button {
    grid-column: auto;
  }
}

@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;
  }

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