@charset "UTF-8";
:root {
  --color-bg: #fff;
  --color-bg-soft: #fbf7f2;
  --color-paper: #f9f3ec;
  --color-paper-green: #e4ead6;
  --color-text: #641219;
  --color-text-strong: #6e1f22;
  --color-text-beige: #c9a083;
  --color-text-light: #fcf6ee;
  --color-accent: #7f2229;
  --color-accent-dark: #5d171d;
  --color-olive: #a7ba99;
  --color-olive-dark: #6d7d57;
  --color-line: rgba(111, 57, 47, 0.18);
  --color-white: #ffffff;
  --color-shadow: 0 20px 45px rgba(72, 37, 28, 0.14);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", Arial, sans-serif;
  --container: min(1120px, calc(100vw - 4rem));
  --radius-sm: 18px;
  --radius-md: 28px;
  --radius-round: 999px;
  --transition: 180ms ease;
}

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

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.7), transparent 28%), var(--color-bg);
}

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.page-shell {
  overflow: clip;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: var(--color-bg);
  border-bottom: 1px solid rgba(111, 57, 47, 0.08);
  background-image: url(img/nav-border.svg);
  background-position: top;
  background-repeat: no-repeat;
  background-size: contain;
}
.site-header .nav-wrap {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 1rem;
  min-height: 88px;
}
.site-header .nav-wrap .brand-meta {
  display: grid;
  gap: 0.2rem;
  justify-items: center;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 26px;
}
.site-header .nav-wrap .brand-meta .brand-meta__sub {
  letter-spacing: 0.14em;
  opacity: 0.72;
  font-size: 14px;
}
.site-header .nav-wrap .nav-toggle {
  display: block;
  border: 0;
  background: transparent;
  padding: 0.125rem;
  line-height: 0;
  cursor: pointer;
  justify-self: end;
}
.site-header .nav-wrap .nav-toggle svg {
  display: block;
  width: 42px;
  height: auto;
}
.site-header .nav-wrap .brand img {
  width: 100px;
  padding: 18px;
}

.header-tools {
  position: absolute;
  /* justify-self: left; */
  top: 0rem;
  right: 2rem;
}

.language-switcher {
  position: relative;
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  min-height: 44px;
  padding: 0.6rem 0.9rem;
  border: 0;
  border-radius: 0px 0px 10px 10px;
  background: #c9a083;
  color: var(--color-white);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 700;
}

.language-toggle__flag,
.lang-option__flag {
  font-size: 1.1rem;
  line-height: 1;
}

.language-menu {
  position: absolute;
  top: calc(100% + 0.55rem);
  right: 0;
  z-index: 26;
  display: grid;
  gap: 0.45rem;
  min-width: 160px;
  padding: 0.7rem;
  border: 1px solid rgba(111, 57, 47, 0.12);
  border-radius: 18px;
  background: rgba(249, 243, 236, 0.98);
  box-shadow: var(--color-shadow);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--color-text);
  cursor: pointer;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.lang-option:hover,
.lang-option:focus-visible,
.lang-option.is-active {
  background: var(--color-accent);
  color: var(--color-white);
}

.brand,
.seal,
.hero-seal {
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  text-align: center;
  line-height: 0.9;
  letter-spacing: 0.02em;
  border-radius: 50%;
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 24;
  background: rgba(74, 33, 26, 0.28);
  opacity: 0;
  transition: opacity var(--transition);
}

.menu-backdrop.is-open {
  opacity: 1;
}

.menu-panel {
  position: fixed;
  top: 96px;
  right: max(1rem, (100vw - var(--container)) / 2);
  z-index: 25;
  display: grid;
  gap: 0.35rem;
  min-width: min(320px, 100vw - 2rem);
  padding: 1rem;
  border: 1px solid rgba(111, 57, 47, 0.12);
  border-radius: 24px;
  background: rgba(249, 243, 236, 0.98);
  box-shadow: var(--color-shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity var(--transition), transform var(--transition);
}
.menu-panel a {
  display: block;
  padding: 0.9rem 1rem;
  border-radius: 999px;
  color: var(--color-text-strong);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background var(--transition), color var(--transition);
}
.menu-panel a:hover,
.menu-panel a:focus-visible {
  background: var(--color-accent);
  color: var(--color-white);
}

.menu-panel.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.button,
.link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  gap: 0.45rem;
  border-radius: var(--radius-round);
  transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
  width: -webkit-fit-content;
}

.button {
  --button-star-bg: var(--color-accent-dark);
  --button-star-color: var(--color-text-light);
  padding: 10px 30px 10px 20px;
  border: 1px solid transparent;
  background: var(--color-white);
  color: var(--color-text);
  font-size: 14px;
  font-weight: 600;
  line-height: 100%;
}

.button::before {
  content: url(img/button-icon.svg);
  margin: -1rem 1rem -1rem -1rem;
}

.button:hover,
.button:focus-visible,
.link-button:hover,
.link-button:focus-visible {
  transform: translateY(-1px);
}

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

.button--light::before {
  content: url(img/button-icon-dark.svg);
}

.button--sm {
  min-height: 40px;
  font-size: 0.84rem;
}

.button--sm::before {
  flex-basis: 1.35rem;
  width: 1.35rem;
  height: 1.35rem;
  font-size: 0.78rem;
}

.link-button {
  color: var(--color-white);
  font-weight: 600;
}

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

.section-tag {
  margin: 0 0 0.65rem;
  color: var(--color-text-strong);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  font-weight: 700;
}

.section-tag--light {
  color: rgba(255, 255, 255, 0.82);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: amandine;
  font-weight: 600;
}

h1 {
  font-size: clamp(3.6rem, 9vw, 6.3rem);
  color: var(--color-white);
  text-shadow: 0 10px 30px rgba(21, 32, 38, 0.25);
  color: #fff;
  text-align: center;
  -webkit-text-stroke-width: 0.25px;
  -webkit-text-stroke-color: #fff;
  font-family: amandine;
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  line-height: 63px; /* 105% */
  letter-spacing: 3px;
}

h2 {
  font-size: clamp(2.6rem, 4vw, 4.2rem);
  color: var(--color-text-strong);
  margin-bottom: 1.1rem;
  line-height: 120%;
}

h3 {
  font-size: clamp(1.6rem, 2.7vw, 2.15rem);
  margin-bottom: 0.7rem;
  color: var(--color-text-strong);
  line-height: 120%;
}

p {
  margin: 0;
  line-height: 1.75;
  font-family: "ivysoft-variable";
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 14px;
  font-weight: 400;
}

section {
  position: relative;
}

.hero {
  min-height: 92vh;
  display: grid;
  align-items: end;
}

.hero__image,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__image {
  background: url("img/hero.png") center/cover;
}

.hero__overlay {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0, rgba(17, 35, 43, 0.06) 35%, rgba(9, 78, 101, 0.78) 78%, rgba(3, 84, 104, 0) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 10rem 0 9rem;
  max-width: 44rem;
}

.hero__lead {
  margin-top: 1.3rem;
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.03rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.75rem;
  justify-content: center;
}

.hero-seal {
  position: absolute;
  left: 50%;
  bottom: -3.6rem;
  transform: translateX(-50%);
  z-index: 6;
  width: 124px;
  height: 124px;
}

.scallop--bottom::after {
  bottom: -1px;
}

.scallop--top::before {
  top: -1px;
}

.paper-bg {
  background-color: var(--color-bg);
}

.ziczac-bg {
  background-image: url(img/bg-beige-recziczac.png);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: contain;
}

.paper-bg--green {
  background-image: url(img/land-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.intro p {
  color: var(--color-text);
}
.intro .button {
  --button-star-bg: var(--color-text-light);
  --button-star-color: var(--color-text);
  background-color: var(--color-text);
  color: var(--color-text-light);
}

.wash-top::before,
.wash-bottom::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 140px;
  pointer-events: none;
  background: radial-gradient(circle at 12% 70%, rgba(116, 205, 218, 0.7), transparent 26%), radial-gradient(circle at 30% 25%, rgba(72, 181, 221, 0.5), transparent 21%), radial-gradient(circle at 58% 40%, rgba(169, 204, 133, 0.35), transparent 26%), radial-gradient(circle at 82% 55%, rgba(255, 255, 255, 0.9), transparent 24%);
  filter: blur(18px);
  opacity: 0.95;
}

.wash-top::before {
  top: 0;
}

.wash-bottom::after {
  bottom: 0;
}

.split {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.split--intro,
.split--discover,
.split--stay {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
  padding: 8rem 0 12rem;
}

.copy-block p + p {
  margin-top: 1rem;
}

.copy-block .button {
  --button-star-bg: var(--color-text-light);
  --button-star-color: var(--color-accent-dark);
  margin-top: 1.8rem;
  background-color: var(--color-accent-dark);
  color: var(--color-text-light);
}

.postcard-stack,
.map-panel,
.plan-card {
  position: relative;
  min-height: 26rem;
}

.map-panel {
  min-height: 34rem;
}

.postcard {
  position: absolute;
  border: 0;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
}

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

.postcard.is-active {
  z-index: 3;
}

.postcard--back {
  transform: translate(100px, -100px);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 2rem 0 6rem;
}

.feature-card {
  overflow: hidden;
}
.feature-card img {
  width: 100%;
  aspect-ratio: 0.86;
  -o-object-fit: contain;
     object-fit: contain;
}
.feature-card p {
  color: #641219;
  text-align: center;
  font-size: 12px;
  font-style: normal;
  line-height: 30px; /* 250% */
  letter-spacing: 2.4px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  text-transform: uppercase;
  padding: 2rem;
}

.banner {
  background: var(--color-olive);
  color: var(--color-white);
}
.banner .banner__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14rem;
  align-items: start;
  padding: 2rem;
}
.banner .banner__inner .seal {
  width: 108px;
  height: 108px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: var(--color-white);
  font-size: 1.55rem;
}
.banner .banner__inner .seal--dark {
  position: absolute;
  left: 50%;
  top: -50px;
  transform: translateX(-50%);
  z-index: 6;
  width: 140px;
}
.banner .banner__inner div {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.banner .banner__inner div h3 {
  color: var(--color-bg);
  text-align: end;
  max-width: 280px;
  align-self: end;
}
.banner .banner__inner div .button--light {
  width: -webkit-fit-content;
}
.banner .banner__inner .banner--text p {
  font-weight: 600;
}

.discover {
  background-image: url(img/ocean-bg.png);
  background-position: top;
  background-size: cover;
}
.discover .split--discover {
  padding-top: 450px;
}
.discover .split--discover .copy-block .button {
  background-color: var(--color-accent-dark);
  color: var(--color-text-light);
}
.discover .split--discover .map-panel .postcard {
  position: absolute;
  border: none;
  background: none;
  box-shadow: none;
  cursor: pointer;
}
.discover .map-panel__outline {
  position: absolute;
  inset: 0.5rem 1rem 0.5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}
.discover .map-panel__outline img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.discover .map-panel__marker {
  position: absolute;
  z-index: 1;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-round);
  background: rgba(127, 34, 41, 0.9);
  color: var(--color-white);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.discover .map-panel__marker--villa {
  top: 5rem;
  left: 9rem;
}
.discover .map-panel__marker--sea {
  bottom: 6rem;
  left: 14rem;
}
.discover .postcard--map-front {
  inset: auto 0 -20rem auto;
  z-index: 3;
}
.discover .postcard--map-back {
  inset: auto 2rem -20rem auto;
  z-index: 1;
}
.discover .coast-grid {
  margin: 1rem auto 0;
  display: grid;
  grid-template-areas: "gallery article" "image article";
  grid-template-columns: 2fr 1fr;
  align-items: stretch;
}
.discover .coast-grid .coast-gallery {
  grid-area: gallery;
  display: flex;
  background-color: var(--color-bg-soft);
  padding: 70px 30px 70px 70px;
  gap: 1rem;
}
.discover .coast-grid .coast-gallery .coast-copy h4 {
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: 4px;
  text-transform: uppercase;
}
.discover .coast-grid .coast-gallery .coast-copy h4 strong {
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 900;
  line-height: 24px; /* 120% */
  letter-spacing: 4px;
  text-transform: uppercase;
}
.discover .coast-grid .coast-gallery .coast-copy p {
  color: #000;
}
.discover .coast-grid .experience-panel {
  grid-area: article;
  display: grid;
  background-image: url(img/coast-article.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--color-white);
  overflow: hidden;
}
.discover .coast-grid .experience-panel .experience-panel__content {
  padding: 3rem;
  display: grid;
  align-content: end;
  gap: 1rem;
  color: var(--color-white);
}
.discover .coast-grid .experience-panel .experience-panel__content h3 {
  color: var(--color-white);
}
.discover .coast-grid .coast-image {
  grid-area: image;
  background-image: url(img/cost.png);
  height: 375px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.discover .coast-grid > img,
.discover .coast-copy {
  min-height: 15rem;
  border-radius: var(--radius-md);
}
.discover .coast-grid > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0 14px 34px rgba(72, 37, 28, 0.12);
}

.stay {
  padding-top: 0;
  overflow: hidden;
  background-color: var(--color-bg);
  background-position: top center;
  background-size: 100% auto;
}
.stay .split--stay {
  width: min(1320px, 100vw - 6rem);
  min-height: 780px;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 0.38fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  padding: clamp(7rem, 9vw, 8.75rem) 0 6rem;
}
.stay .copy-block {
  grid-column: 2;
  grid-row: 1;
  align-self: start;
  max-width: 22rem;
  padding-top: clamp(10rem, 15vw, 13.5rem);
}
.stay .section-tag {
  position: relative;
  width: 2.3rem;
  height: 2rem;
  margin: 0 0 0.6rem;
  overflow: visible;
  color: transparent;
  font-size: 0;
}
.stay .section-tag::before,
.stay .section-tag::after {
  position: absolute;
  color: var(--color-accent-dark);
  font-family: var(--font-display);
  line-height: 1;
}
.stay .section-tag::before {
  content: "✦";
  left: 0;
  top: 0.45rem;
  font-size: 1.3rem;
}
.stay .section-tag::after {
  content: "✦";
  left: 1.15rem;
  top: 0;
  font-size: 0.75rem;
}
.stay .copy-block h2 {
  max-width: 20rem;
  margin-bottom: 2.25rem;
  font-size: clamp(2rem, 4vw, 5.25rem);
  line-height: 1;
}
.stay .copy-block p:not(.section-tag) {
  max-width: 19rem;
  font-size: 0.78rem;
  line-height: 2.2;
}
.stay .copy-block .button {
  margin-top: 2.1rem;
}
.stay .plan-card {
  grid-column: 1;
  grid-row: 1;
  min-height: clamp(800px, 72vw, 984px);
  margin-top: 0;
  display: block;
}
.stay .plan-card__drawing {
  inset: auto;
  left: clamp(0rem, 2vw, 2rem);
  top: clamp(16.25rem, 28vw, 24.5rem);
  width: min(780px, 96%);
  transform: none;
}

.living-grid {
  --living-row-height: clamp(20rem, 25vw, 32rem);
  margin: 0 auto;
  display: grid;
  grid-template-areas: "article gallery" "article image";
  grid-template-columns: 1fr 2fr;
  grid-template-rows: repeat(2, var(--living-row-height));
  align-items: stretch;
}
.living-grid .living-gallery {
  grid-area: gallery;
  display: grid;
  grid-template-columns: 0.47fr 1fr 1.2fr 0.9fr;
  align-items: stretch;
  background-color: var(--color-olive);
  padding: clamp(2.5rem, 4.75vw, 6rem) clamp(2.5rem, 4.5vw, 5.5rem) clamp(2.5rem, 4.75vw, 6rem) clamp(2rem, 3vw, 3.75rem);
  gap: clamp(1rem, 2.2vw, 2.8rem);
}
.living-grid .living-gallery .living-gallery__image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: clamp(0.65rem, 1vw, 0.9rem);
}
.living-grid .living-gallery .living-gallery__image--1 {
  background-image: url(img/living-1.png);
}
.living-grid .living-gallery .living-gallery__image--2 {
  background-image: url(img/living-2.png);
}
.living-grid .living-gallery .living-gallery__image--3 {
  background-image: url(img/living-3.png);
}
.living-grid .living-gallery .living-copy {
  grid-column: 4;
  align-self: center;
  min-width: 0;
}
.living-grid .living-gallery .living-copy h4 {
  color: #000;
  font-size: clamp(1rem, 1.4vw, 1.75rem);
  font-style: normal;
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.living-grid .living-gallery .living-copy h4 strong {
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 900;
  line-height: 24px; /* 120% */
  letter-spacing: 4px;
  text-transform: uppercase;
}
.living-grid .living-gallery .living-copy p {
  color: #000;
}
.living-grid .experience-panel {
  grid-area: article;
  display: grid;
  background-image: url(img/living-article.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--color-white);
  overflow: hidden;
}
.living-grid .experience-panel .experience-panel__content {
  padding: 3rem;
  display: grid;
  align-content: end;
  gap: 1rem;
  color: var(--color-white);
}
.living-grid .experience-panel .experience-panel__content h3 {
  color: var(--color-white);
}
.living-grid .living-image {
  grid-area: image;
  background-image: url(img/living.png);
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.plan-card {
  display: grid;
  place-items: center;
  margin-top: -24rem;
}

.plan-card__drawing {
  position: absolute;
  inset: 20rem 4rem 2rem 0rem;
}

.plan-map {
  position: relative;
  width: 100%;
  isolation: isolate;
}

.plan-zoom-trigger {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--color-accent-dark);
  cursor: zoom-in;
}
.plan-zoom-trigger img {
  width: 100%;
  height: auto;
  pointer-events: none;
  transition: filter var(--transition), transform var(--transition);
}

.plan-hotspots {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.plan-hotspot {
  --spot-radius: 12px;
  position: absolute;
  display: block;
  padding: 0;
  border: 0;
  border-radius: var(--spot-radius);
  background: transparent;
  color: inherit;
  cursor: pointer;
  pointer-events: auto;
}

.plan-hotspot::before {
  content: "";
  position: absolute;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition), background var(--transition), border-color var(--transition);
}

.plan-hotspot::before {
  inset: 0;
  border: 1px solid rgba(127, 34, 41, 0);
  border-radius: inherit;
  background: rgba(127, 34, 41, 0);
  opacity: 0;
}

.plan-hotspot::after {
  content: none;
}

.plan-hotspot__label {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 0.65rem);
  z-index: 3;
  width: -moz-max-content;
  width: max-content;
  max-width: min(15rem, 42vw);
  padding: 0.7rem 0.85rem;
  border: 1px solid rgba(111, 57, 47, 0.15);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 32px rgba(72, 37, 28, 0.16);
  color: var(--color-text);
  opacity: 0;
  text-align: left;
  transform: translate(-50%, 0.35rem);
  transition: opacity var(--transition), transform var(--transition);
}
.plan-hotspot__label strong,
.plan-hotspot__label span {
  display: block;
}
.plan-hotspot__label strong {
  margin-bottom: 0.2rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.25;
  text-transform: uppercase;
}
.plan-hotspot__label span {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  line-height: 1.45;
  text-transform: none;
}

.plan-hotspot:hover::before,
.plan-hotspot:focus-visible::before {
  border-color: rgba(127, 34, 41, 0.45);
  background: rgba(127, 34, 41, 0.08);
  opacity: 1;
}

.plan-hotspot:hover::after,
.plan-hotspot:focus-visible::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.25);
}

.plan-hotspot:hover .plan-hotspot__label,
.plan-hotspot:focus-visible .plan-hotspot__label {
  opacity: 1;
  transform: translate(-50%, 0);
}

.plan-hotspot:focus-visible {
  outline: 2px solid var(--color-accent-dark);
  outline-offset: 0.18rem;
}

.plan-hotspot--pool {
  --spot-radius: 0;
  left: 56.5%;
  top: 7.7%;
  width: 21.7%;
  height: 12.4%;
}

.plan-hotspot--outdoor-kitchen {
  left: 94.8%;
  top: 73.8%;
  width: 5%;
  height: 15.4%;
}

.plan-hotspot--bedroom-1 {
  left: 67.3%;
  top: 34.6%;
  width: 8.1%;
  height: 14.2%;
}

.plan-hotspot--bedroom-2 {
  left: 88.3%;
  top: 34%;
  width: 10.8%;
  height: 15.2%;
}

.plan-hotspot--bedroom-3 {
  left: 88.2%;
  top: 56.8%;
  width: 10.9%;
  height: 18.1%;
}

.plan-hotspot--living {
  left: 63.8%;
  top: 57.8%;
  width: 19.2%;
  height: 16.2%;
}

.plan-hotspot--terrace {
  left: 64.7%;
  top: 75.4%;
  width: 31%;
  height: 10.7%;
}

.plan-hotspot--football {
  --spot-radius: 50%;
  left: 0;
  top: 50.6%;
  width: 10.1%;
  height: 17.3%;
}

.plan-hotspot--outdoor-kitchen .plan-hotspot__label,
.plan-hotspot--bedroom-2 .plan-hotspot__label,
.plan-hotspot--bedroom-3 .plan-hotspot__label {
  right: calc(100% + 0.65rem);
  left: auto;
  bottom: 50%;
  transform: translate(0.35rem, 50%);
}

.plan-hotspot--outdoor-kitchen:hover .plan-hotspot__label,
.plan-hotspot--outdoor-kitchen:focus-visible .plan-hotspot__label,
.plan-hotspot--bedroom-2:hover .plan-hotspot__label,
.plan-hotspot--bedroom-2:focus-visible .plan-hotspot__label,
.plan-hotspot--bedroom-3:hover .plan-hotspot__label,
.plan-hotspot--bedroom-3:focus-visible .plan-hotspot__label {
  transform: translate(0, 50%);
}

.plan-hotspot--football .plan-hotspot__label {
  bottom: 50%;
  left: calc(100% + 0.65rem);
  transform: translate(-0.35rem, 50%);
}

.plan-hotspot--football:hover .plan-hotspot__label,
.plan-hotspot--football:focus-visible .plan-hotspot__label {
  transform: translate(0, 50%);
}

.plan-zoom-trigger__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4.25rem;
  height: 4.25rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 34px rgba(72, 37, 28, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.86);
  transition: opacity var(--transition), transform var(--transition);
}

.plan-zoom-trigger__icon::before,
.plan-zoom-trigger__icon::after {
  content: "";
  position: absolute;
}

.plan-zoom-trigger__icon::before {
  top: 1.15rem;
  left: 1.15rem;
  width: 1.45rem;
  height: 1.45rem;
  border: 3px solid currentColor;
  border-radius: 50%;
}

.plan-zoom-trigger__icon::after {
  top: 2.55rem;
  left: 2.55rem;
  width: 1.05rem;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
  transform: rotate(45deg);
  transform-origin: left center;
}

.plan-zoom-trigger:hover img,
.plan-zoom-trigger:focus-visible img {
  filter: drop-shadow(0 16px 22px rgba(72, 37, 28, 0.08));
}

.plan-zoom-trigger:hover .plan-zoom-trigger__icon,
.plan-zoom-trigger:focus-visible .plan-zoom-trigger__icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.plan-zoom-trigger:focus-visible {
  outline: 2px solid var(--color-accent-dark);
  outline-offset: 0.4rem;
}

body.is-floor-plan-open {
  overflow: hidden;
}

.floor-plan-modal[hidden] {
  display: none;
}

.floor-plan-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
}

.floor-plan-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(36, 18, 18, 0.66);
  cursor: zoom-out;
}

.floor-plan-modal__panel {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: min(1180px, 94vw);
  max-height: 90vh;
  padding: clamp(1rem, 2vw, 1.5rem);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 28px 70px rgba(36, 18, 18, 0.28);
}

.floor-plan-modal__panel img {
  width: 100%;
  max-height: calc(90vh - 4rem);
  -o-object-fit: contain;
     object-fit: contain;
}

.floor-plan-modal__map {
  width: 100%;
}

.floor-plan-modal__close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  border-radius: 50%;
  background: var(--color-accent-dark);
  color: var(--color-white);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

body.is-gallery-open {
  overflow: hidden;
}

.gallery-modal[hidden] {
  display: none;
}

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 110;
  padding: clamp(0.75rem, 3vw, 2rem);
}

.gallery-modal__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  border: 0;
  background: rgba(28, 18, 15, 0.78);
  cursor: zoom-out;
}

.gallery-modal__panel {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  height: 100%;
  margin: 0 auto;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: clamp(1.25rem, 3vw, 2.5rem);
  padding-top: 0px;
  border-radius: 1.5rem;
  background: #f4efe5;
  box-shadow: 0 28px 80px rgba(20, 10, 8, 0.38);
  opacity: 0;
  transform: translateY(1rem) scale(0.985);
  transition: opacity 180ms ease, transform 180ms ease;
}

[data-gallery-open] {
  cursor: pointer;
}

.gallery-modal.is-open .gallery-modal__panel {
  opacity: 1;
  transform: none;
}

.gallery-modal__sticky {
  position: sticky;
  top: 0;
  z-index: 4;
  margin: 0 calc(clamp(1.25rem, 3vw, 2.5rem) * -1) 2.5rem;
  padding: 2.5rem clamp(1.25rem, 3vw, 2.5rem) 0;
  border-bottom: 1px solid rgba(93, 23, 29, 0.12);
  background: rgba(244, 239, 229, 0.96);
  backdrop-filter: blur(12px);
}

.gallery-modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(1.25rem, 3vw, 2.25rem);
  margin-top: 0;
}

.gallery-modal__header h2 {
  margin: 0;
  color: var(--color-accent-dark);
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 0.9;
}

.gallery-modal__eyebrow {
  margin: 0 0 0.35rem;
  color: var(--color-accent-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.gallery-modal__categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0 calc(clamp(1.25rem, 3vw, 2.5rem) * -1);
  padding: 0.85rem clamp(1.25rem, 3vw, 2.5rem);
  border-block: 1px solid rgba(93, 23, 29, 0.12);
  background: rgba(244, 239, 229, 0.96);
  backdrop-filter: blur(12px);
}

.gallery-modal__categories button {
  padding: 0.7rem 1rem;
  border: 1px solid var(--color-accent-dark);
  border-radius: 999px;
  background: transparent;
  color: var(--color-accent-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
}

.gallery-modal__categories button:hover,
.gallery-modal__categories button:focus-visible {
  background: var(--color-accent-dark);
  color: var(--color-white);
  outline: none;
}

.gallery-section {
  scroll-margin-top: 6rem;
}

.gallery-section + .gallery-section {
  margin-top: clamp(3.5rem, 7vw, 6rem);
  padding-top: clamp(2.5rem, 5vw, 4rem);
  border-top: 1px solid rgba(93, 23, 29, 0.18);
}

.gallery-section h3 {
  margin: 0 0 1.15rem;
  color: var(--color-accent-dark);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 600;
}

.gallery-section h3:focus {
  outline: none;
}

.gallery-modal__close {
  position: fixed;
  top: max(1rem, env(safe-area-inset-top));
  right: max(1rem, env(safe-area-inset-right));
  z-index: 5;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border: 0;
  border-radius: 50%;
  background: var(--color-accent-dark);
  color: var(--color-white);
  font: inherit;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.gallery-modal__close:hover,
.gallery-modal__close:focus-visible {
  background: var(--color-primary);
  outline: 2px solid var(--color-accent-dark);
  outline-offset: 3px;
}

.gallery-modal__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.85rem, 2vw, 1.4rem);
}

.gallery-card {
  position: relative;
  min-height: 22rem;
  margin: 0;
  overflow: hidden;
  border-radius: 1rem;
  background: var(--color-accent-dark);
  cursor: zoom-in;
}

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

.gallery-card--tall {
  grid-row: span 2;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 500ms ease;
}

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

.gallery-card:focus-visible {
  outline: 3px solid var(--color-accent-dark);
  outline-offset: 4px;
}

.gallery-card figcaption {
  position: absolute;
  inset: auto 0 0;
  display: grid;
  gap: 0.2rem;
  padding: 3.5rem 1.2rem 1.2rem;
  background: linear-gradient(transparent, rgba(24, 14, 12, 0.88));
  color: var(--color-white);
}

.gallery-card figcaption strong {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
}

.gallery-card figcaption span {
  max-width: 40rem;
  font-size: 0.78rem;
  line-height: 1.5;
}

.gallery-lightbox[hidden] {
  display: none;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: grid;
  grid-template-columns: minmax(3.5rem, 0.15fr) minmax(0, 1fr) minmax(3.5rem, 0.15fr);
  align-items: center;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 2.5rem);
  background: rgba(17, 11, 10, 0.96);
  opacity: 0;
  transition: opacity 180ms ease;
}

.gallery-lightbox.is-open {
  opacity: 1;
}

.gallery-lightbox__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: transparent;
  cursor: zoom-out;
}

.gallery-lightbox__figure {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  justify-self: center;
  width: min(100%, 1120px);
  height: min(92vh, 880px);
  margin: 0;
}

.gallery-lightbox__figure img {
  width: 100%;
  height: 100%;
  min-height: 0;
  -o-object-fit: contain;
     object-fit: contain;
}

.gallery-lightbox__figure figcaption {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 1rem;
  color: var(--color-white);
}

.gallery-lightbox__figure figcaption div {
  display: grid;
  gap: 0.25rem;
}

.gallery-lightbox__figure figcaption strong {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  font-weight: 600;
}

.gallery-lightbox__figure figcaption span:not(.gallery-lightbox__counter) {
  max-width: 46rem;
  font-size: 0.8rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
}

.gallery-lightbox__counter {
  flex: 0 0 auto;
  padding-top: 0.45rem;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
}

.gallery-lightbox__close,
.gallery-lightbox__nav {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.gallery-lightbox__close:hover,
.gallery-lightbox__close:focus-visible,
.gallery-lightbox__nav:hover,
.gallery-lightbox__nav:focus-visible {
  background: var(--color-accent-dark);
  outline: 2px solid var(--color-white);
  outline-offset: 3px;
}

.gallery-lightbox__close {
  position: absolute;
  top: clamp(1rem, 2.5vw, 2rem);
  right: clamp(1rem, 2.5vw, 2rem);
  width: 3rem;
  height: 3rem;
  font-size: 2rem;
}

.gallery-lightbox__nav {
  width: 3.5rem;
  height: 3.5rem;
  font-size: 1.6rem;
}

.gallery-lightbox__nav--prev {
  justify-self: end;
}

.gallery-lightbox__nav--next {
  justify-self: start;
}

@media (max-width: 820px) {
  .gallery-modal {
    padding: 0;
  }
  .gallery-modal__panel {
    border-radius: 0;
    padding: 1.25rem;
  }
  .gallery-modal__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .gallery-card,
  .gallery-card--tall {
    min-height: 18rem;
    grid-row: auto;
  }
}
@media (max-width: 520px) {
  .gallery-modal__grid {
    grid-template-columns: 1fr;
  }
  .gallery-card,
  .gallery-card--wide {
    grid-column: auto;
    min-height: 20rem;
  }
  .gallery-card figcaption {
    padding-inline: 1rem;
  }
  .gallery-modal__categories {
    flex-wrap: nowrap;
    gap: 0.4rem;
    overflow-x: auto;
    margin-bottom: 0;
    scrollbar-width: none;
  }
  .gallery-modal__categories::-webkit-scrollbar {
    display: none;
  }
  .gallery-modal__categories button {
    flex: 0 0 auto;
    font-size: 0.66rem;
  }
  .gallery-lightbox {
    grid-template-columns: 1fr;
    align-content: center;
    padding: 4.5rem 1rem 1rem;
  }
  .gallery-lightbox__figure {
    grid-column: 1;
    grid-row: 1;
    height: min(78vh, 760px);
  }
  .gallery-lightbox__figure figcaption {
    gap: 1rem;
  }
  .gallery-lightbox__nav {
    position: absolute;
    top: 48%;
    width: 2.8rem;
    height: 2.8rem;
    background: rgba(17, 11, 10, 0.64);
  }
  .gallery-lightbox__nav--prev {
    left: 0.75rem;
  }
  .gallery-lightbox__nav--next {
    right: 0.75rem;
  }
}
.room {
  position: absolute;
  border: 2px solid rgba(111, 57, 47, 0.2);
  background: rgba(255, 255, 255, 0.35);
}

.room--a {
  top: 1.8rem;
  left: 1.4rem;
  width: 42%;
  height: 34%;
}

.room--b {
  top: 1.8rem;
  right: 1.4rem;
  width: 30%;
  height: 52%;
}

.room--c {
  left: 1.4rem;
  bottom: 1.6rem;
  width: 36%;
  height: 34%;
}

.room--d {
  right: 4rem;
  bottom: 3.5rem;
  width: 22%;
  height: 18%;
  border-radius: 999px;
}

.postcard--stay-front {
  right: 0;
  top: 0;
  width: 15rem;
  height: 18rem;
}

.postcard--stay-back {
  right: 8rem;
  top: 2.25rem;
  width: 12.5rem;
  height: 15.5rem;
}

.stay .postcard--stay-front {
  left: clamp(0rem, 1vw, 1rem);
  right: auto;
  top: clamp(4.25rem, 6vw, 5.6rem);
  z-index: 4;
  width: clamp(15rem, 22vw, 19.8rem);
  height: clamp(18.5rem, 25vw, 23rem);
}

.stay .postcard--stay-back {
  left: clamp(6.5rem, 11vw, 9rem);
  right: auto;
  top: clamp(0.75rem, 2vw, 1.4rem);
  z-index: 2;
  width: clamp(13rem, 18vw, 16.4rem);
  height: clamp(17rem, 23vw, 21rem);
}

.living-grid img,
.living-copy {
  border-radius: var(--radius-md);
}

.social {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--color-bg-soft) 0%, #fff 100%);
}
.social .social__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.social .social__header .social__header-left {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.social .social__header .social__header-left .social__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.social .social__header .social__header-left .social__actions .button {
  background-color: var(--color-accent-dark);
  color: var(--color-text-light);
}
.social .social__header .social__header-left .social__actions .carousel-controls {
  display: flex;
  gap: 0.6rem;
}
.social .social__header .social__header-left .social__actions .carousel-controls .carousel-button {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(111, 57, 47, 0.18);
  border-radius: 50%;
  background: var(--color-accent-dark);
  color: var(--color-text-light);
  cursor: pointer;
}
.social .social-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 1fr);
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scrollbar-width: none;
}
.social .social-strip .social-card {
  min-height: 15rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(111, 57, 47, 0.08);
}
.social .social-strip .social-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.social .social-strip .social-card--quote {
  display: grid;
  place-items: center;
  padding: 1.8rem;
  color: var(--color-white);
  text-align: center;
  background: linear-gradient(180deg, #b8c7a2 0%, #8ea67a 100%);
}
.social .social-strip::-webkit-scrollbar {
  display: none;
}

.site-footer {
  background: linear-gradient(180deg, #fcf6ee 0%, var(--color-bg-soft) 100%);
  padding-top: 3rem;
}
.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(2, 1fr);
  gap: 2rem;
  padding: 4rem 0 3rem;
}
.site-footer .footer-grid .footer-brand {
  display: grid;
  align-content: start;
}
.site-footer .footer-grid .footer-title {
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  color: var(--color-text-beige);
  font-weight: 700;
}
.site-footer .footer-grid div p {
  color: var(--color-text-beige);
}
.site-footer .footer-bottom {
  border-top: 1px solid #c9a083;
}
.site-footer .footer-bottom .footer-bottom__inner {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  padding: 1rem 0 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.7rem;
  color: var(--color-text-beige);
}

.back-to-top {
  position: fixed;
  right: 0;
  bottom: clamp(4.5rem, 12vh, 8rem);
  z-index: 18;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 72px;
  height: 230px;
  padding: 1.5rem 0;
  color: var(--color-white);
  font: 700 1rem/1 Manrope, sans-serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: #d0a486;
  border: 0;
  border-radius: 22px 0 0 22px;
  box-shadow: 0 10px 28px rgba(70, 40, 30, 0.18);
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease;
}
.back-to-top[hidden] {
  display: none;
}
.back-to-top svg {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}
.back-to-top span {
  position: absolute;
  top: 60%;
  left: 50%;
  width: -moz-max-content;
  width: max-content;
  transform: translate(-50%, -50%) rotate(-90deg);
}
.back-to-top:hover {
  background: #c89573;
}
.back-to-top:focus-visible {
  outline: 3px solid var(--color-burgundy);
  outline-offset: 3px;
}

@media (max-width: 1080px) {
  .nav-wrap {
    grid-template-columns: auto 1fr auto;
  }
  .brand-meta {
    justify-items: start;
  }
  .split--intro,
  .split--discover,
  .split--stay,
  .experience-panel,
  .banner__inner,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .feature-grid,
  .coast-grid,
  .living-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .living-grid {
    display: grid;
    grid-template-areas: "article gallery" "article image";
    grid-template-columns: 1fr 2fr;
    grid-template-rows: repeat(2, var(--living-row-height));
    gap: 0;
  }
  .living-grid img {
    min-height: 6.5rem;
    border-radius: 5px;
  }
  .living-grid .living-gallery {
    grid-template-columns: 0.47fr 1fr 1.2fr 0.9fr;
    display: grid;
    padding: clamp(2rem, 4.75vw, 3.25rem) clamp(2rem, 4.5vw, 3rem) clamp(2rem, 4.75vw, 3.25rem) clamp(1.5rem, 3vw, 2rem);
  }
  .living-grid .living-gallery .living-gallery__image {
    height: 100%;
  }
  .living-grid .living-gallery .living-copy {
    grid-column: 4;
    min-height: 0;
    padding: 0rem;
    border-radius: 20px;
  }
  .living-grid .experience-panel {
    margin-top: 0;
    overflow: hidden;
  }
  .living-grid .experience-panel .experience-panel__image {
    min-height: 13rem;
  }
  .living-grid .experience-panel .experience-panel__content {
    padding: 1.5rem;
  }
  .stay {
    background-size: auto 42rem;
  }
  .stay .split--stay {
    width: var(--container);
    min-height: auto;
    padding: 6rem 0 4rem;
  }
  .stay .copy-block,
  .stay .plan-card {
    grid-column: auto;
    grid-row: auto;
  }
  .stay .copy-block {
    max-width: 38rem;
    padding-top: 0;
  }
  .stay .copy-block h2,
  .stay .copy-block p {
    max-width: 100%;
  }
  .stay .plan-card {
    min-height: clamp(48rem, 72vw, 49rem);
  }
  .stay .plan-card__drawing {
    left: 0;
    top: 13rem;
    width: min(760px, 100%);
  }
  .stay .postcard--stay-front {
    left: 0;
    top: 2.5rem;
    width: 14rem;
    height: 17rem;
  }
  .stay .postcard--stay-back {
    left: 10rem;
    top: 0.75rem;
    width: 11.5rem;
    height: 15rem;
  }
  .living-copy,
  .living-grid__wide {
    grid-column: auto;
    grid-row: auto;
  }
  .postcard--front {
    inset: 0rem 17rem -3rem -1rem;
    margin-left: 16rem;
  }
  .postcard--back {
    inset: 0rem 3rem -2rem 29rem;
  }
  .discover {
    background-image: url(img/ocean-bg-mobil.png);
  }
  .paper-bg--green {
    background-image: url(img/land-bg-mobil.png);
    background-position: top;
  }
  .menu-panel {
    top: 96px;
    right: 1.5rem;
  }
}
@media (max-width: 720px) {
  :root {
    --container: min(100vw - 2rem, 100%);
  }
  main {
    display: flex;
    flex-direction: column;
  }
  .hero {
    order: 1;
    min-height: 39rem;
  }
  .intro {
    order: 2;
  }
  .banner {
    order: 3;
  }
  .stay {
    order: 4;
    background-size: auto 34rem;
  }
  .discover {
    order: 5;
  }
  .social {
    order: 6;
    padding: 3rem 0 3.5rem;
  }
  .site-header {
    position: sticky;
  }
  .site-header .nav-wrap {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    justify-content: unset;
  }
  .site-header .nav-wrap .brand {
    width: 130px;
    height: 130px;
    font-size: 1rem;
  }
  .site-header .nav-wrap .brand img {
    width: 100%;
  }
  .site-header .nav-wrap .brand-meta {
    display: none;
  }
  .nav-wrap {
    min-height: 140px;
  }
  .language-toggle {
    min-height: 38px;
    padding: 0.45rem 0.7rem;
    font-size: 0.65rem;
  }
  .language-toggle__label {
    display: none;
  }
  .language-menu {
    right: -2.5rem;
  }
  .menu-panel {
    top: 82px;
    right: 0.75rem;
    left: 0.75rem;
    min-width: 0;
  }
  .hero__content {
    max-width: 100%;
    padding: 9.25rem 0 6.5rem;
  }
  .hero__lead {
    max-width: 16rem;
    font-size: 0.92rem;
  }
  .hero-seal {
    width: 90px;
    height: 90px;
    bottom: -2.6rem;
    border-width: 4px;
    font-size: 1.08rem;
  }
  h1 {
    font-size: clamp(2.5rem, 12vw, 4rem);
    line-height: 110%;
  }
  h2 {
    margin-bottom: 0.85rem;
    font-size: clamp(2rem, 10vw, 3rem);
  }
  h3 {
    font-size: 1.15rem;
    line-height: 140%;
  }
  p {
    font-size: 0.88rem;
    line-height: 1.6;
  }
  .split--intro,
  .split--discover,
  .split--stay {
    gap: 1.75rem;
    padding: 5rem 0 2.5rem;
  }
  .copy-block .button {
    margin-top: 1.25rem;
  }
  .stay .split--stay {
    padding: 4.5rem 0 2.5rem;
  }
  .stay .copy-block h2 {
    margin-bottom: 1.25rem;
    font-size: clamp(2.55rem, 12vw, 3.35rem);
    line-height: 1;
  }
  .stay .copy-block p:not(.section-tag) {
    font-size: 0.82rem;
    line-height: 1.75;
    max-width: 100%;
  }
  .postcard-stack,
  .map-panel,
  .plan-card {
    min-height: 18rem;
  }
  .postcard--front {
    inset: 2.75rem 1.5rem 0.75rem 0;
  }
  .postcard--back {
    inset: 0 0 2.5rem 4rem;
  }
  .feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.6rem;
    padding: 1rem 0 8.25rem;
  }
  .feature-card {
    border-radius: 14px;
  }
  .feature-card img {
    aspect-ratio: 0.64;
  }
  .feature-card h3,
  .feature-card p {
    padding-inline: 0.5rem;
  }
  .feature-card h3 {
    min-height: 2rem;
    margin-top: 0.5rem;
    font-size: 0.7rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
  .feature-card p {
    display: none;
  }
  .banner .banner__inner {
    justify-items: center;
    gap: 0.9rem;
    padding: 1.2rem 0 1.35rem;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
  .banner .banner__inner div h3 {
    text-align: center;
    margin-bottom: 0px;
    padding-top: 2rem;
  }
  .banner .banner__inner .seal,
  .banner .banner__inner .seal--dark {
    width: 84px;
    height: 84px;
    font-size: 1.15rem;
  }
  .banner .banner__inner .banner--text p {
    display: none;
  }
  .stay .plan-card {
    min-height: clamp(23rem, 90vw, 40rem);
  }
  .stay .plan-card__drawing {
    inset: 1.5rem auto auto 0;
    width: calc(100% - 2rem);
    transform: rotate(-11deg);
  }
  .stay .postcard--stay-front {
    left: auto;
    top: 0.5rem;
    right: 0.5rem;
    width: 9rem;
    height: 11rem;
  }
  .stay .postcard--stay-back {
    left: auto;
    top: 2rem;
    right: 6rem;
    width: 7.5rem;
    height: 9.5rem;
  }
  .living-grid {
    display: flex;
    flex-direction: column;
    gap: 0rem;
  }
  .living-grid img {
    min-height: 6.5rem;
    border-radius: 5px;
  }
  .living-grid .living-gallery {
    grid-template-columns: minmax(4.5rem, 0.75fr) minmax(0, 1.75fr);
    grid-template-rows: repeat(3, auto);
    display: grid;
    padding: 35px;
  }
  .living-grid .living-gallery .living-gallery__image {
    grid-column: 1;
    height: 150px;
  }
  .living-grid .living-gallery .living-gallery__image:nth-child(1) {
    grid-row: 1;
  }
  .living-grid .living-gallery .living-gallery__image:nth-child(2) {
    grid-row: 2;
  }
  .living-grid .living-gallery .living-gallery__image:nth-child(3) {
    grid-row: 3;
  }
  .living-grid .living-gallery .living-copy {
    grid-column: 2;
    grid-row: 1/span 3;
    align-self: center;
    min-height: 10rem;
    padding: 0rem;
    border-radius: 20px;
  }
  .living-grid .experience-panel {
    margin-top: 1.2rem;
    overflow: hidden;
  }
  .living-grid .experience-panel .experience-panel__image {
    min-height: 13rem;
  }
  .living-grid .experience-panel .experience-panel__content {
    padding: 1.5rem;
  }
  .living-grid__wide {
    grid-column: 1/-1;
    min-height: 10rem;
    margin-top: 0.25rem;
  }
  .map-panel__outline {
    inset: 0.5rem 0 1.5rem 0;
  }
  .map-panel__marker--villa {
    top: 3rem;
    left: 3.75rem;
  }
  .map-panel__marker--sea {
    bottom: 4rem;
    left: 6.5rem;
  }
  .postcard--map-front {
    right: 0;
    bottom: 0.5rem;
    width: 8rem;
    height: 10rem;
  }
  .postcard--map-back {
    right: 1.5rem;
    width: 6.5rem;
    height: 8.5rem;
  }
  .discover .coast-grid {
    grid-template-areas: "article" "gallery" "image";
    grid-template-columns: 1fr;
  }
  .discover .coast-grid .coast-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    display: grid;
    padding: 35px;
  }
  .discover .coast-grid .coast-gallery img {
    height: 150px;
  }
  .discover .coast-grid .coast-gallery .coast-copy {
    order: 4;
    grid-column: 1/-1;
    min-height: auto;
    padding: 0rem;
    border-radius: 18px;
  }
  .discover .coast-grid > img {
    min-height: 5.6rem;
    border-radius: 5px;
  }
  .social__header {
    align-items: center;
    margin-bottom: 1rem;
  }
  .social__actions {
    width: 100%;
  }
  .social-strip {
    gap: 0.55rem;
    grid-auto-columns: 32%;
  }
  .social-card {
    min-height: 5.6rem;
    border-radius: 14px;
  }
  .social-card--quote {
    padding: 0.8rem;
    font-size: 0.72rem;
  }
  .footer-grid {
    gap: 1.25rem;
    padding: 3rem 0 2rem;
    text-align: center;
  }
  .footer-bottom__inner {
    flex-wrap: wrap;
  }
}
.intro .postcard-stack {
  width: 100%;
  max-width: 34rem;
  min-height: clamp(27rem, 42vw, 36rem);
  margin-inline: auto;
}

.intro .postcard {
  inset: auto;
  margin: 0;
  transform: none;
}

.intro .postcard--front {
  top: clamp(3rem, 5vw, 5rem);
  left: 0;
  width: clamp(15rem, 25vw, 22rem);
  aspect-ratio: 587/733;
}

.intro .postcard--back {
  top: 0;
  right: 0;
  width: clamp(14rem, 23vw, 20rem);
  aspect-ratio: 615/753;
}

@media (max-width: 720px) {
  .intro .postcard-stack {
    width: min(100%, 21rem);
    min-height: clamp(21rem, 104vw, 26rem);
    margin: 0 auto;
  }
  .intro .postcard--front {
    top: clamp(2.75rem, 11vw, 3.75rem);
    left: 0;
    width: 68%;
  }
  .intro .postcard--back {
    top: 0;
    right: 0;
    width: 64%;
  }
}
@media (max-width: 720px) {
  html {
    scroll-padding-top: 5rem;
  }
  body {
    overflow-x: hidden;
    background: var(--color-white);
  }
  .back-to-top {
    right: 0;
    bottom: clamp(3.5rem, 10vh, 6rem);
    width: 58px;
    height: 160px;
    min-height: 0;
    padding: 1.1rem 0;
    border-radius: 18px 0 0 18px;
    font-size: 0.78rem;
  }
  .back-to-top span {
    top: 60%;
    width: -moz-max-content;
    width: max-content;
    height: auto;
    overflow: visible;
    clip: auto;
    white-space: nowrap;
  }
  .back-to-top svg {
    width: 25px;
    height: 25px;
  }
  .site-header {
    background-color: rgba(255, 255, 255, 0.97);
    background-size: 300%;
  }
  .site-header .nav-wrap {
    grid-template-columns: 1fr auto 1fr;
    min-height: 82px;
    padding-inline: 0.25rem;
  }
  .site-header .brand {
    grid-column: 2;
    justify-self: center;
  }
  .site-header .brand img {
    width: 88px;
    padding: 9px;
  }
  .site-header .nav-toggle {
    grid-column: 3;
    justify-self: end;
    align-self: end;
    margin-bottom: 0.85rem;
  }
  .site-header .nav-toggle svg {
    width: 34px;
  }
  .header-tools {
    top: 0;
    right: 3rem;
  }
  .language-toggle {
    min-height: 28px;
    padding: 0.3rem 0.5rem;
    border-radius: 0 0 7px 7px;
  }
  .language-toggle__flag {
    font-size: 0.85rem;
  }
  .menu-panel {
    top: 88px;
  }
  .hero {
    min-height: 42rem;
  }
  .hero__image {
    background-position: 48% center;
  }
  .hero__overlay {
    background: linear-gradient(180deg, rgba(17, 35, 43, 0) 25%, rgba(5, 69, 88, 0.12) 48%, rgba(3, 83, 105, 0.88) 82%, rgba(3, 83, 105, 0.48) 100%);
  }
  .hero__content {
    padding: 19rem 0 5.5rem;
  }
  .hero h1 {
    font-size: clamp(3.15rem, 15vw, 4rem);
    line-height: 0.92;
    letter-spacing: 0.025em;
  }
  .hero__actions {
    margin-top: 1.4rem;
  }
  .hero .button {
    min-height: 34px;
    font-size: 0.62rem;
  }
  .hero-seal {
    width: 96px;
    height: 96px;
    bottom: -3.1rem;
  }
  h2 {
    margin-bottom: 1.2rem;
    font-size: clamp(2.75rem, 13vw, 3.45rem);
    line-height: 0.96;
  }
  p {
    font-size: 0.72rem;
    line-height: 1.85;
    letter-spacing: 0.09em;
  }
  .button {
    min-height: 34px;
    padding: 9px 24px 9px 18px;
    font-size: 0.62rem;
    letter-spacing: 0.14em;
  }
  .intro .split--intro {
    gap: 2.25rem;
    padding: 7.25rem 0 2.25rem;
  }
  .intro .copy-block {
    max-width: 100%;
  }
  .intro .postcard-stack {
    min-height: 22rem;
    margin-top: 0.5rem;
  }
  .intro .postcard--front {
    inset: 2.5rem 2.6rem 0.5rem 0.75rem;
  }
  .intro .postcard--back {
    inset: 0.25rem 0.65rem 3.25rem 5.6rem;
  }
  .feature-grid {
    gap: 0.45rem;
    padding: 0.5rem 0 6.75rem;
  }
  .feature-card {
    border-radius: 0;
  }
  .feature-card img {
    aspect-ratio: 0.78;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .feature-card p {
    display: block;
    padding: 0.7rem 0.12rem 0;
    font-size: 0.48rem;
    line-height: 1.45;
    letter-spacing: 0.055em;
    text-decoration: none;
  }
  .banner .banner__inner {
    min-height: 11rem;
    gap: 0.6rem;
    padding: 3rem 1rem 1.8rem;
  }
  .banner .banner__inner .seal--dark {
    top: -44px;
    width: 96px;
  }
  .banner .banner__inner div h3 {
    max-width: 100%;
    padding-top: 1.75rem;
    font-size: 1.55rem;
    line-height: 1.05;
  }
  .stay {
    background-position: top center;
    background-size: 100% auto;
  }
  .stay .split--stay {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 7rem 0 2rem;
  }
  .stay .copy-block {
    width: 100%;
    max-width: 100%;
  }
  .stay .copy-block h2 {
    font-size: clamp(2.85rem, 13vw, 3.55rem);
  }
  .stay .plan-card {
    width: 100%;
  }
  .stay .plan-card__drawing {
    inset: 1rem 0 auto;
    width: 100%;
    transform: rotate(-3deg);
  }
  .stay .postcard--stay {
    display: none;
  }
  .living-grid .experience-panel {
    min-height: 31rem;
    margin-top: 0;
    background-image: linear-gradient(180deg, transparent 36%, rgba(15, 48, 38, 0.78) 100%), url(img/living-article.png);
  }
  .living-grid .experience-panel .experience-panel__content {
    padding: 2.25rem 1.35rem;
  }
  .living-grid .experience-panel h3 {
    font-size: 1.9rem;
    line-height: 1;
  }
  .living-grid .living-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: auto 7.5rem;
    gap: 0.55rem;
    padding: 2.5rem 1.25rem 2rem;
  }
  .living-grid .living-gallery .living-copy {
    grid-column: 1/-1;
    grid-row: 1;
    min-height: 0;
    margin-bottom: 1.25rem;
  }
  .living-grid .living-gallery .living-copy h4 {
    max-width: 12rem;
    font-size: 1.2rem;
    line-height: 1.05;
  }
  .living-grid .living-gallery .living-gallery__image {
    grid-row: 2 !important;
    grid-column: auto !important;
    height: 7.5rem;
    border-radius: 0;
  }
  .living-grid .living-image {
    min-height: 14rem;
    background-position: center;
  }
  .discover {
    background-color: var(--color-white);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: 100% auto;
  }
  .discover .split--discover {
    gap: 2.25rem;
    padding: 18rem 0 3rem;
  }
  .discover .map-panel {
    min-height: 31rem;
  }
  .discover .map-panel .postcard {
    display: none;
  }
  .discover .map-panel__outline {
    inset: 0;
  }
  .discover .coast-grid {
    margin-top: 0;
  }
  .discover .coast-grid .experience-panel {
    min-height: 31rem;
    background-image: linear-gradient(180deg, transparent 35%, rgba(0, 76, 96, 0.82) 100%), url(img/coast-article.png);
  }
  .discover .coast-grid .experience-panel .experience-panel__content {
    padding: 2.25rem 1.35rem;
  }
  .discover .coast-grid .experience-panel h3 {
    max-width: 15rem;
    font-size: 1.9rem;
    line-height: 1;
  }
  .discover .coast-grid .coast-gallery {
    gap: 0.45rem;
    padding: 2.2rem 1rem;
  }
  .discover .coast-grid .coast-gallery img {
    height: 12.5rem;
    border-radius: 0;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .discover .coast-grid .coast-gallery .coast-copy {
    margin-top: 1.25rem;
  }
  .discover .coast-grid .coast-image {
    height: 22rem;
  }
  .social {
    padding: 4rem 0 3rem;
  }
  .social .social__header {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
    align-items: start;
    margin-bottom: 1.5rem;
  }
  .social .social__header-left {
    margin-bottom: 0;
  }
  .social .social__header h2 {
    font-size: 2.35rem;
    line-height: 1;
  }
  .social .social__header-right img {
    width: 78px;
  }
  .social .carousel-controls {
    display: none !important;
  }
  .social .social-strip {
    grid-auto-columns: 31%;
    gap: 0.55rem;
  }
  .social .social-card {
    min-height: 7rem;
    border-radius: 0;
  }
  .social .social-card--quote {
    display: none;
  }
  .site-footer {
    padding-top: 1rem;
  }
  .site-footer .footer-grid {
    padding: 2.5rem 0 2rem;
    gap: 0.5rem;
  }
  .site-footer .footer-grid .footer-brand {
    width: 80%;
  }
  .site-footer .footer-grid .footer-title {
    text-align: left;
  }
  .site-footer .footer-grid p {
    text-align: left;
    font-size: 8px;
  }
}/*# sourceMappingURL=styles.css.map */