:root {
  --bg: #e8e0d2;
  --bg-deep: #dad0c0;
  --surface: rgba(247, 242, 233, 0.78);
  --surface-strong: rgba(252, 248, 242, 0.92);
  --line: rgba(37, 33, 29, 0.12);
  --ink: #171411;
  --muted: #685f54;
  --accent: #7a6244;
  --olive: #6b7866;
  --shadow: 0 24px 70px rgba(31, 25, 20, 0.12);
  --radius-xl: 2rem;
  --radius-2xl: 3rem;
  --radius-3xl: 4rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Instrument Sans", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.55), transparent 34%),
    radial-gradient(circle at 85% 12%, rgba(255, 244, 221, 0.5), transparent 16%),
    linear-gradient(180deg, #efe7db 0%, var(--bg) 46%, var(--bg-deep) 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.55) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.45) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.22), transparent 72%);
}

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

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

.page-shell {
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0 40px;
}

.site-header,
.site-footer,
.hero,
.gallery-section,
.experience-section,
.reserve-section {
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.site-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-radius: 999px;
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 10;
}

.brand,
.site-nav a,
.eyebrow,
.panel-copy p,
.experience-card p,
.site-footer p {
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.brand {
  font-weight: 600;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  color: var(--muted);
}

.nav-button {
  padding: 0.75rem 1.15rem;
  border-radius: 999px;
  border: 1px solid rgba(23, 20, 17, 0.12);
  background: rgba(255, 255, 255, 0.4);
  color: var(--ink);
}

.hero,
.gallery-section,
.experience-section,
.reserve-section {
  margin-top: 22px;
  border-radius: var(--radius-3xl);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 2rem;
  padding: clamp(24px, 4vw, 48px);
  min-height: calc(100svh - 120px);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(12px, 1vw, 20px) 0;
}

.hero h1,
.section-heading h2,
.experience-copy h2,
.reserve-section h2 {
  margin: 0;
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.04em;
}

.hero h1 {
  max-width: 11ch;
  font-size: clamp(4rem, 8vw, 7.5rem);
}

.hero-text,
.panel-copy span,
.experience-card span,
.reserve-section {
  color: var(--muted);
}

.hero-text {
  max-width: 32rem;
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  transition:
    transform 200ms ease,
    background-color 200ms ease,
    border-color 200ms ease;
}

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

.button-primary {
  background: var(--ink);
  color: #f8f3eb;
}

.button-secondary {
  border-color: rgba(23, 20, 17, 0.16);
  background: rgba(255, 255, 255, 0.44);
}

.hero-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.hero-details div {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-details span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--ink);
  font-size: 2rem;
  line-height: 1;
  font-family: "Instrument Serif", serif;
}

.hero-visual {
  position: relative;
  min-height: 42rem;
  overflow: hidden;
  border-radius: 2rem 2rem 6rem 2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), transparent 38%),
    linear-gradient(160deg, #667463 0%, #b9a488 36%, #efe5d7 67%, #7f8d8a 100%);
  isolation: isolate;
  animation: settle 900ms cubic-bezier(0.18, 0.82, 0.24, 1) both;
}

.hero-visual::before,
.hero-visual::after,
.panel-visual::before,
.panel-visual::after {
  content: "";
  position: absolute;
}

.hero-visual::before {
  inset: auto 8% 0 8%;
  height: 36%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.2)),
    linear-gradient(180deg, rgba(42, 50, 53, 0.18), rgba(19, 24, 25, 0.58));
  border-radius: 100% 100% 0 0 / 70% 70% 0 0;
  filter: blur(0.5px);
}

.hero-visual::after {
  inset: 0;
  background:
    radial-gradient(circle at 75% 23%, rgba(255, 250, 238, 0.28), transparent 14%),
    linear-gradient(0deg, rgba(17, 20, 23, 0.22), transparent 42%);
  mix-blend-mode: soft-light;
}

.sun-disc {
  position: absolute;
  top: 11%;
  right: 18%;
  width: clamp(100px, 12vw, 170px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 252, 244, 0.96) 0%, rgba(246, 221, 180, 0.75) 42%, rgba(255, 255, 255, 0) 72%);
  filter: blur(1px);
  animation: drift 11s ease-in-out infinite;
}

.waterline {
  position: absolute;
  left: 6%;
  right: 6%;
  bottom: 23%;
  height: 22%;
  border-radius: 999px 999px 28px 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.32), transparent 24%),
    linear-gradient(180deg, rgba(32, 45, 53, 0.08), rgba(23, 29, 33, 0.52)),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.18) 0,
      rgba(255, 255, 255, 0.18) 1px,
      transparent 1px,
      transparent 18px
    );
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.stone-column {
  position: absolute;
  bottom: 0;
  width: 18%;
  height: 68%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.25), transparent 16%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.16), rgba(116, 102, 78, 0.18), rgba(255, 255, 255, 0.05)),
    linear-gradient(180deg, #e8d8c3 0%, #c6b197 100%);
  border-top-left-radius: 2.2rem;
  border-top-right-radius: 2.2rem;
}

.stone-column-left {
  left: 10%;
}

.stone-column-right {
  right: 12%;
}

.terrace-card {
  position: absolute;
  width: min(250px, 38%);
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 1.5rem;
  background: rgba(247, 241, 233, 0.28);
  backdrop-filter: blur(16px);
  color: #f6efe7;
}

.terrace-card p {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.terrace-card-top {
  top: 7%;
  left: 7%;
}

.terrace-card-bottom {
  right: 8%;
  bottom: 8%;
}

.gallery-section,
.experience-section,
.reserve-section {
  padding: clamp(24px, 4vw, 44px);
}

.section-heading,
.experience-copy,
.reserve-section {
  display: grid;
  gap: 0.9rem;
}

.section-heading {
  max-width: 36rem;
  margin-bottom: 1.8rem;
}

.section-heading h2,
.experience-copy h2,
.reserve-section h2 {
  font-size: clamp(2.4rem, 5vw, 4.7rem);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  grid-template-areas:
    "tall wide"
    "tall small";
  gap: 1.2rem;
}

.gallery-panel {
  overflow: hidden;
  border-radius: var(--radius-2xl);
  background: var(--surface-strong);
  border: 1px solid rgba(23, 20, 17, 0.08);
}

.gallery-panel-tall {
  grid-area: tall;
}

.gallery-panel-wide {
  grid-area: wide;
}

.gallery-panel-small {
  grid-area: small;
}

.panel-visual {
  position: relative;
  min-height: 20rem;
}

.gallery-panel-tall .panel-visual {
  min-height: 42rem;
}

.panel-copy {
  display: grid;
  gap: 0.55rem;
  padding: 1.2rem 1.25rem 1.35rem;
}

.panel-copy span,
.experience-card span {
  font-size: 0.95rem;
  line-height: 1.7;
}

.panel-suite {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), transparent 40%),
    linear-gradient(180deg, rgba(45, 38, 29, 0.04), rgba(45, 38, 29, 0.18)),
    linear-gradient(140deg, #d7c1a3 0%, #f2eadf 40%, #baa48a 100%);
}

.panel-suite::before {
  inset: auto 12% 0 12%;
  height: 72%;
  border-radius: 14rem 14rem 0 0;
  background: linear-gradient(180deg, rgba(250, 247, 240, 0.95), rgba(227, 212, 191, 0.9));
}

.panel-suite::after {
  left: 50%;
  top: 19%;
  transform: translateX(-50%);
  width: 34%;
  height: 44%;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, rgba(131, 118, 93, 0.24), rgba(255, 255, 255, 0.08));
  box-shadow:
    -160px 118px 0 -126px rgba(119, 102, 73, 0.3),
    160px 118px 0 -126px rgba(119, 102, 73, 0.3);
}

.panel-pool {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.35), transparent 30%),
    linear-gradient(180deg, rgba(53, 65, 72, 0.08), rgba(29, 37, 42, 0.26)),
    linear-gradient(145deg, #d4c0a1 0%, #a7b3ae 46%, #4b5c5f 100%);
}

.panel-pool::before {
  inset: auto 6% 12% 6%;
  height: 34%;
  border-radius: 2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), transparent 24%),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.16) 0,
      rgba(255, 255, 255, 0.16) 1px,
      transparent 1px,
      transparent 22px
    ),
    linear-gradient(180deg, rgba(41, 59, 67, 0.4), rgba(16, 22, 25, 0.75));
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.panel-pool::after {
  top: 16%;
  left: 11%;
  width: 36%;
  height: 42%;
  border-radius: 0 0 2rem 2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent 25%),
    linear-gradient(180deg, #ebdcc8 0%, #c4b095 100%);
  box-shadow: 280px 24px 0 -112px rgba(242, 234, 223, 0.9);
}

.panel-dining {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.32), transparent 30%),
    linear-gradient(135deg, #f2e5d7 0%, #bea17d 42%, #5f6b63 100%);
}

.panel-dining::before {
  inset: auto 12% 16% 12%;
  height: 26%;
  border-radius: 999px 999px 24px 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), transparent 28%),
    linear-gradient(180deg, rgba(42, 50, 55, 0.2), rgba(18, 23, 26, 0.65));
}

.panel-dining::after {
  top: 14%;
  left: 16%;
  width: 22%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 250, 236, 0.92) 0%, rgba(255, 221, 165, 0.64) 42%, rgba(255, 255, 255, 0) 70%);
  box-shadow:
    210px 80px 0 -42px rgba(247, 241, 233, 0.55),
    110px 140px 0 -62px rgba(255, 251, 243, 0.34);
}

.experience-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.4rem;
  align-items: start;
}

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

.experience-card {
  min-height: 18rem;
  display: grid;
  align-content: space-between;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(23, 20, 17, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0.18)),
    linear-gradient(160deg, rgba(241, 234, 224, 0.9), rgba(225, 215, 201, 0.5));
}

.experience-card p,
.panel-copy p,
.site-footer p {
  margin: 0;
}

.reserve-section {
  justify-items: start;
  text-align: left;
}

.reserve-section h2 {
  max-width: 12ch;
  color: var(--ink);
}

.site-footer {
  margin-top: 22px;
  color: var(--muted);
}

.site-footer span {
  font-size: 0.9rem;
}

@keyframes settle {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, 10px, 0);
  }
}

@media (max-width: 1080px) {
  .hero,
  .experience-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 32rem;
  }

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

@media (max-width: 860px) {
  .page-shell {
    width: min(100% - 24px, 1320px);
    padding-top: 12px;
  }

  .site-header,
  .site-footer {
    border-radius: 2rem;
  }

  .site-header {
    position: static;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .site-nav {
    flex-wrap: wrap;
  }

  .hero {
    gap: 1.2rem;
  }

  .hero h1 {
    max-width: 10ch;
    font-size: clamp(3.3rem, 16vw, 5.8rem);
  }

  .hero-details,
  .experience-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "tall"
      "wide"
      "small";
  }

  .gallery-panel-tall .panel-visual,
  .panel-visual {
    min-height: 20rem;
  }

  .section-heading h2,
  .experience-copy h2,
  .reserve-section h2 {
    font-size: clamp(2.25rem, 12vw, 3.6rem);
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
