@font-face {
  font-family: Manrope;
  src: url("../assets/vendor/fonts/manrope-regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Manrope;
  src: url("../assets/vendor/fonts/manrope-semibold.ttf") format("truetype");
  font-weight: 500 800;
  font-display: swap;
}
@font-face {
  font-family: "Cormorant Garamond";
  src: url("../assets/vendor/fonts/cormorant-medium.ttf") format("truetype");
  font-weight: 400 700;
  font-display: swap;
}
@font-face {
  font-family: "Cormorant Garamond";
  src: url("../assets/vendor/fonts/cormorant-italic.ttf") format("truetype");
  font-style: italic;
  font-weight: 400 700;
  font-display: swap;
}

:root {
  --cream: #f7f5ef;
  --sand: #eeebe3;
  --forest: #263c33;
  --forest-deep: #1c2e27;
  --ink: #2d3830;
  --muted: #535b50;
  --clay: #b55b3d;
  --line: #dcded3;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: Manrope, Arial, sans-serif;
  --header-height: 92px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
  scroll-padding-bottom: 90px;
}
body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}
body.modal-open {
  overflow: hidden;
}
::selection {
  background: #d6b293;
  color: var(--forest-deep);
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--clay);
  outline-offset: 5px;
}
img {
  max-width: 100%;
  display: block;
}
button {
  cursor: pointer;
}
[hidden] {
  display: none !important;
}
h1,
h2,
h3,
p,
figure {
  margin-top: 0;
}
h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.045em;
}
h2 {
  font-size: clamp(42px, 4.4vw, 66px);
  margin-bottom: 26px;
}
h3 {
  font-size: 32px;
  letter-spacing: -0.035em;
}
h2 em,
h3 em {
  font-weight: 400;
}
p {
  margin-bottom: 20px;
}
.container-wide {
  width: calc(100% - 112px);
  max-width: 1312px;
  margin-left: auto;
  margin-right: auto;
}
.section-space {
  padding: 110px 0;
}
.eyebrow {
  font: 600 12px/1.7 var(--sans);
  letter-spacing: 2.3px;
  color: #686f5c;
  margin-bottom: 23px;
  display: block;
}
.eyebrow.light {
  color: #e0d9c4;
}
.small-copy {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.9;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 55px;
  padding: 16px 24px;
  background: var(--forest);
  color: white;
  border: 1px solid transparent;
  border-radius: 3px;
  font: 600 16px/1.5 var(--sans);
  transition:
    background 0.2s,
    transform 0.2s,
    color 0.2s;
  white-space: normal;
}
.button:hover {
  background: var(--forest-deep);
  color: white;
  transform: translateY(-2px);
}
.button i {
  font-size: 20px;
  line-height: 1;
}
.button-clay {
  background: var(--clay);
}
.button-clay:hover {
  background: #94472f;
}
.button-light {
  background: var(--cream);
  color: var(--forest);
}
.button-light:hover {
  background: white;
  color: var(--forest);
}
.button-outline {
  border-color: #a2a999;
  background: transparent;
  color: var(--forest);
}
.button-outline:hover {
  background: var(--forest);
  color: white;
}
.button-small {
  min-height: 43px;
  padding: 12px 17px;
  gap: 19px;
  font-size: 16px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  font-size: 16px;
  font-weight: 600;
  padding: 6px 0;
  border-bottom: 1px solid #b7bcae;
  transition:
    color 0.2s,
    gap 0.2s;
}
.text-link:hover {
  color: var(--clay);
  gap: 18px;
}
.skip-link {
  position: fixed;
  top: -80px;
  left: 20px;
  z-index: 2000;
  background: var(--cream);
  padding: 14px;
}
.skip-link:focus {
  top: 8px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  transition: box-shadow 0.25s;
}
.site-header.scrolled {
  box-shadow: 0 3px 22px #1c2e2710;
}
.navbar {
  min-height: var(--header-height);
  padding: 0;
  gap: 24px;
}
.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  color: var(--forest);
  line-height: 1;
  flex-shrink: 0;
}
.brand-name {
  font-family: var(--serif);
  font-size: 47px;
  font-weight: 500;
  letter-spacing: -3px;
  line-height: 0.85;
}
.brand-dot {
  color: var(--clay);
}
.brand-sub {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3.2px;
  margin-top: 10px;
  padding-left: 5px;
}
.header-actions {
  display: flex;
  gap: 23px;
  align-items: center;
}
.header-instagram {
  font-size: 18px;
  line-height: 1;
}
.header-instagram:hover {
  color: var(--clay);
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
}
.header-phone i {
  font-size: 18px;
}
.header-phone:hover {
  color: var(--clay);
}
.contact-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 22px 0;
}
.contact-socials a {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 16px;
  border-bottom: 1px solid #ffffff50;
}
.navbar-nav {
  gap: 22px;
}
.navbar .nav-link {
  font-size: 16px;
  color: var(--ink);
  padding: 7px 0 !important;
  position: relative;
}
.navbar .nav-link::after {
  content: "";
  position: absolute;
  height: 1px;
  left: 0;
  right: 100%;
  bottom: 0;
  background: var(--clay);
  transition: right 0.25s;
}
.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
  right: 0;
}
.navbar-toggler {
  border: 0;
  padding: 4px 0 4px 8px;
  color: var(--forest);
  font-size: 27px;
  box-shadow: none !important;
}
.hero {
  position: relative;
  min-height: 720px;
  height: calc(100svh - 92px);
  max-height: 920px;
  color: var(--cream);
  isolation: isolate;
  overflow: hidden;
}
.hero-image {
  position: absolute;
  z-index: -3;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 57%;
}
.hero-shade {
  position: absolute;
  z-index: -2;
  inset: 0;
  background: linear-gradient(
      90deg,
      rgba(19, 34, 28, 0.86) 0%,
      rgba(20, 34, 28, 0.65) 30%,
      rgba(16, 26, 22, 0.12) 69%
    ),
    linear-gradient(0deg, rgba(14, 25, 20, 0.66), transparent 35%);
}
.hero-content {
  padding-top: 77px;
  padding-bottom: 140px;
}
.hero-content .eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 31px;
  font-size: 13px;
  letter-spacing: 2.8px;
}
.tiny-line {
  width: 32px;
  height: 1px;
  background: #d4cbb3;
}
.hero h1 {
  font-size: clamp(66px, 6.9vw, 102px);
  letter-spacing: -0.035em;
  line-height: 0.96;
  margin-bottom: 28px;
  max-width: 670px;
}
.hero h1 em {
  color: #e7d9b8;
  font-weight: 400;
}
.hero-description {
  font-size: 17px;
  line-height: 1.95;
  color: #f0eee5;
  max-width: 410px;
  margin-bottom: 27px;
}
.hero-actions {
  display: flex;
  gap: 26px;
  align-items: center;
  flex-wrap: wrap;
}
.hero-actions .button {
  font-size: 16px;
  padding: 18px 24px;
  min-height: 55px;
}
.hero-gallery-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
}
.hero-gallery-link:hover {
  color: #e7d9b8;
}
.hero-bottom {
  position: absolute;
  bottom: 32px;
  left: 0;
  right: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.hero-bottom > span {
  font-size: 12px;
  letter-spacing: 2.2px;
  line-height: 1.9;
  color: #e8e5d9;
}
.hero-bottom > a {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
}
.hero-bottom > a i {
  display: grid;
  place-items: center;
  border: 1px solid #ffffff70;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  font-size: 20px;
  transition: transform 0.2s;
}
.hero-bottom > a:hover i {
  transform: translateY(4px);
}
.hero-side-note {
  position: absolute;
  right: 23px;
  top: 40%;
  writing-mode: vertical-rl;
  font-size: 12px;
  letter-spacing: 2.5px;
}
.facts-strip {
  background: var(--sand);
  border-bottom: 1px solid #e1e1d6;
}
.facts-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding-top: 31px;
  padding-bottom: 31px;
}
.facts-grid > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border-right: 1px solid #cfd3c6;
}
.facts-grid > div:first-child {
  justify-content: flex-start;
}
.facts-grid > div:last-child {
  border-right: 0;
}
.facts-grid i {
  font-size: 29px;
  color: #6f7a63;
}
.facts-grid p {
  margin: 0;
  line-height: 1.3;
}
.facts-grid strong {
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 500;
  display: block;
  letter-spacing: -1px;
}
.facts-grid p span {
  font-size: 14px;
  color: #68705f;
  display: block;
  margin-top: 5px;
}
.house-visual {
  position: relative;
  padding-right: 70px;
  padding-bottom: 44px;
}
.house-main {
  width: 85%;
  height: 540px;
  object-fit: cover;
  border-radius: 2px;
}
.house-inset {
  position: absolute;
  right: 25px;
  bottom: 77px;
  width: 43%;
  height: 266px;
  object-fit: cover;
  border: 8px solid var(--cream);
  border-radius: 2px;
}
.house-stamp {
  position: absolute;
  right: 31px;
  top: 34px;
  width: 130px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  background: #dedfcb;
  border-radius: 50%;
  transform: rotate(9deg);
}
.house-stamp i {
  font-size: 29px;
  line-height: 1;
}
.house-stamp span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.8px;
  line-height: 1.7;
  text-align: center;
}
.photo-note {
  font-family: var(--serif);
  font-style: italic;
  color: #737d66;
  display: block;
  margin-top: 18px;
  font-size: 19px;
}
.house-copy {
  padding-left: 40px;
}
.house-copy > p:not(.eyebrow) {
  max-width: 490px;
}
.house-copy .lead-copy {
  font-size: 18px;
  line-height: 1.9;
  color: var(--forest);
}
.house-copy > p {
  font-size: 16px;
  color: var(--muted);
}
.house-details {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 16px 14px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 23px 0;
  margin: 26px 0 21px;
}
.house-details > div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}
.house-details i {
  font-size: 19px;
  color: #7a826c;
}
.experience-section {
  background: var(--sand);
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 50px;
  margin-bottom: 45px;
}
.section-heading h2 {
  margin-bottom: 0;
}
.section-heading > p {
  font-size: 16px;
  max-width: 335px;
  color: var(--muted);
  margin-bottom: 4px;
  line-height: 1.95;
}
.experience-card .card-photo {
  position: relative;
  overflow: hidden;
  height: 330px;
  margin-bottom: 25px;
  border-radius: 2px;
}
.card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.experience-card:hover .card-photo img {
  transform: scale(1.045);
}
.photo-label {
  position: absolute;
  left: 17px;
  bottom: 17px;
  color: white;
  background: #20352cd9;
  backdrop-filter: blur(6px);
  font-size: 12px;
  padding: 8px 12px;
  letter-spacing: 1.5px;
}
.experience-card h3 {
  font-size: 31px;
  margin-bottom: 13px;
}
.experience-card p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--muted);
  max-width: 350px;
}
.play-panel {
  margin-top: 45px;
  padding: 32px 35px 0;
  border: 1px solid #cbd0c0;
  border-radius: 2px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 0 40px;
}
.play-intro .eyebrow {
  margin-bottom: 12px;
  font-size: 12px;
}
.play-intro h3 {
  font-size: 32px;
  margin-bottom: 12px;
}
.play-intro p {
  font-size: 16px;
  color: var(--muted);
}
.play-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 17px;
  align-content: center;
}
.play-list li {
  display: flex;
  gap: 7px;
  align-items: center;
  font-size: 14px;
  white-space: nowrap;
}
.play-list i {
  color: #78805f;
  font-size: 18px;
}
.play-footnote {
  grid-column: 1/-1;
  border-top: 1px solid #cbd0c0;
  margin: 12px 0 0;
  padding: 17px 0;
  font-size: 14px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 11px;
}
.play-footnote i {
  font-size: 18px;
}
.essentials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 34px 0 0;
}
.essentials > div {
  display: flex;
  gap: 19px;
  align-items: flex-start;
}
.essentials i {
  font-size: 26px;
  color: #7a826c;
}
.essentials p {
  margin: 0;
}
.essentials strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}
.essentials p span {
  display: block;
  font-size: 16px;
  color: var(--muted);
  max-width: 425px;
}
.gallery-section .section-heading {
  align-items: flex-end;
}
.gallery-section h2 {
  max-width: 710px;
}
.gallery-section .section-heading .text-link {
  white-space: nowrap;
  font-size: 14px;
}
.gallery-filters {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}
.filter-button {
  font-size: 14px;
  border: 1px solid #d9ddcf;
  border-radius: 50px;
  background: transparent;
  color: var(--muted);
  padding: 9px 18px;
  transition:
    background 0.2s,
    color 0.2s;
}
.filter-button.active,
.filter-button:hover {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  grid-auto-flow: row dense;
}
.gallery-item {
  position: relative;
  height: 285px;
  overflow: hidden;
  border-radius: 2px;
  background: var(--sand);
}
.gallery-item.gallery-wide {
  grid-column: span 2;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-item > span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 35px 17px 16px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  background: linear-gradient(transparent, #14211caa);
}
.gallery-item > span i {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border: 1px solid #ffffff80;
  border-radius: 50%;
}
.gallery-more-wrap {
  text-align: center;
  margin-top: 30px;
}
.gallery-more-wrap .button {
  font-size: 16px;
  min-height: 48px;
}
.slow-section {
  position: relative;
  background: url("../assets/img/pool-view.webp") center 58% / cover fixed;
  min-height: 550px;
  isolation: isolate;
  text-align: center;
  color: var(--cream);
  display: flex;
  align-items: center;
  padding: 85px 0;
}
.slow-overlay {
  position: absolute;
  inset: 0;
  background: rgba(22, 41, 32, 0.66);
  z-index: -1;
}
.slow-content h2 {
  font-size: clamp(50px, 5.7vw, 80px);
  margin-bottom: 25px;
}
.slow-content h2 em {
  color: #e8dec4;
}
.slow-content > p:not(.eyebrow) {
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 26px;
}
.slow-content .button {
  font-size: 16px;
}
.location-card {
  background: var(--sand);
  height: 100%;
}
.location-card > img {
  width: 100%;
  height: 270px;
  object-fit: cover;
}
.location-copy {
  padding: 29px 33px 34px;
}
.location-copy .eyebrow {
  font-size: 12px;
  margin-bottom: 17px;
}
.location-copy h3 {
  font-size: 34px;
  margin-bottom: 18px;
}
.location-copy p {
  font-size: 16px;
  color: var(--muted);
}
.location-copy .text-link {
  font-size: 14px;
}
.destinations {
  display: flex;
  flex-direction: column;
  padding-left: 45px;
}
.destination {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}
.destination:first-child {
  padding-top: 0;
}
.destination:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.destination-number {
  font-family: var(--serif);
  color: #8b947b;
  font-size: 24px;
  line-height: 1.2;
}
.destination .eyebrow {
  font-size: 12px;
  letter-spacing: 1.3px;
  margin-bottom: 8px;
}
.destination h3 {
  font-size: 30px;
  margin-bottom: 11px;
}
.destination p {
  font-size: 16px;
  color: var(--muted);
  margin: 0;
  line-height: 1.9;
}
.destination > i {
  margin-left: auto;
  flex-shrink: 0;
  font-size: 23px;
  color: #8b947b;
}
.travel-note {
  text-align: right;
  font-size: 13px;
  color: var(--muted);
  margin: 24px 0 0;
}
.faq-section {
  background: var(--sand);
  padding-top: 85px;
  padding-bottom: 85px;
}
.faq-section > .container-wide {
  padding: 0;
}
.faq-section .eyebrow {
  font-size: 12px;
  letter-spacing: 1.7px;
}
.faq-section h2 {
  font-size: 56px;
}
.faq-section p {
  font-size: 16px;
  color: var(--muted);
}
.faq-section .text-link {
  font-size: 14px;
}
.faq-list details {
  border-bottom: 1px solid #cdd2c3;
}
.faq-list details:first-child {
  border-top: 1px solid #cdd2c3;
}
.faq-list summary {
  font-weight: 600;
  font-size: 16px;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  cursor: pointer;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary i {
  font-size: 16px;
  transition: transform 0.2s;
  flex-shrink: 0;
}
.faq-list details[open] summary i {
  transform: rotate(45deg);
}
.faq-list details p {
  margin: 0;
  padding: 0 38px 22px 0;
  font-size: 16px;
  line-height: 1.9;
  max-width: 650px;
}
.contact-section {
  background: var(--forest);
  color: var(--cream);
}
.contact-copy h2 {
  font-size: clamp(45px, 4.7vw, 70px);
}
.contact-copy h2 em {
  color: #d4d3b5;
}
.contact-copy > p:not(.eyebrow) {
  font-size: 16px;
  line-height: 1.95;
  color: #d0d5c9;
  max-width: 420px;
}
.contact-channel {
  display: flex;
  align-items: center;
  gap: 17px;
  padding: 20px 0;
  border-bottom: 1px solid #f0f1d929;
  max-width: 430px;
}
.contact-channel > i:first-child {
  font-size: 22px;
  color: #c1c5a5;
}
.contact-channel > i:last-child {
  margin-left: auto;
}
.contact-channel span {
  font-size: 18px;
}
.contact-channel small {
  display: block;
  font-size: 12px;
  letter-spacing: 1.8px;
  margin-bottom: 5px;
  color: #cbd1bd;
}
.contact-channel:hover {
  color: #dcc7a3;
}
.contact-copy .contact-address {
  font-size: 14px !important;
  margin-top: 23px;
}
.contact-address i {
  margin-right: 7px;
}
.booking-card {
  background: var(--cream);
  padding: 39px;
  color: var(--ink);
  border-radius: 3px;
}
.booking-card .eyebrow {
  font-size: 12px;
  margin-bottom: 13px;
}
.booking-card h3 {
  font-size: 39px;
  margin-bottom: 10px;
}
.booking-intro {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 27px;
}
.booking-card label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}
.booking-card label > span {
  font-weight: 400;
  color: var(--muted);
}
.booking-card label[for="guests"] {
  margin-top: 20px;
}
.form-control,
.form-select {
  min-height: 48px;
  border: 1px solid #cbd0c0;
  border-radius: 2px;
  background-color: transparent;
  font-size: 16px;
  color: var(--ink);
  padding: 12px;
}
.form-control:focus,
.form-select:focus {
  border-color: #778467;
  box-shadow: 0 0 0 3px #77846720;
  background-color: transparent;
  color: var(--ink);
}
input[type="date"] {
  min-width: 0;
  width: 100%;
  color-scheme: light;
}
.booking-card button[type="submit"] {
  margin-top: 25px;
}
.form-note {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
  margin: 15px 0 0;
}
.inquiry-result {
  border-top: 1px solid var(--line);
  padding-top: 22px;
  margin-top: 23px;
}
.inquiry-result textarea {
  font-size: 16px;
  line-height: 1.7;
  resize: vertical;
}
.result-actions {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.result-actions .button {
  font-size: 14px;
  gap: 10px;
  padding: 11px 15px;
  min-height: 43px;
}
.site-footer {
  background: var(--cream);
  padding: 46px 0 104px;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 37px;
}
.footer-top p {
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.25;
  text-align: center;
  margin: 0;
  letter-spacing: -0.4px;
}
.back-top {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
}
.back-top i {
  display: grid;
  place-items: center;
  border: 1px solid #b3bba6;
  border-radius: 50%;
  width: 40px;
  height: 40px;
}
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 13px;
  color: var(--muted);
}
.footer-bottom a {
  color: var(--forest);
  border-bottom: 1px solid #bbc1af;
}
.floating-contact {
  position: fixed;
  right: 22px;
  bottom: 20px;
  z-index: 90;
  display: flex;
  background: var(--cream);
  padding: 5px;
  border: 1px solid #daddcf;
  box-shadow: 0 5px 30px #12251e20;
  border-radius: 5px;
}
.floating-contact a {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  padding: 11px 15px;
  color: var(--forest);
  border-radius: 3px;
  font-weight: 600;
}
.floating-contact a:first-child {
  background: var(--forest);
  color: white;
}
.floating-contact a:hover {
  background: var(--clay);
  color: white;
}
.floating-contact i {
  font-size: 18px;
}
.lightbox {
  position: fixed;
  inset: 0;
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  border: 0;
  padding: 55px 75px;
  background: #112019f5;
  color: white;
  overflow: hidden;
}
.lightbox::backdrop {
  background: #112019;
}
.lightbox[open] {
  display: flex;
  justify-content: center;
  align-items: center;
}
.lightbox figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 100%;
  max-height: 100%;
}
.lightbox figure img {
  max-height: calc(100svh - 170px);
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.lightbox figcaption {
  font-size: 16px;
  text-align: center;
  padding: 20px 10px 0;
  max-width: 700px;
  min-height: 42px;
}
.lightbox button {
  position: absolute;
  border: 1px solid #ffffff50;
  background: #14251c70;
  color: white;
  width: 43px;
  height: 43px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 19px;
}
.lightbox button:hover {
  background: var(--clay);
}
.lightbox-close {
  right: 25px;
  top: 22px;
}
.lightbox-prev {
  left: 18px;
  top: 50%;
}
.lightbox-next {
  right: 18px;
  top: 50%;
}
.lightbox-count {
  position: absolute;
  left: 27px;
  top: 29px;
  font-size: 16px;
  color: #d3dccb;
}
html:not(.aos-ready) [data-aos] {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

@media (min-width: 1600px) {
  .hero-content {
    padding-top: 100px;
  }
  .hero h1 {
    font-size: 112px;
  }
  .hero-description {
    font-size: 18px;
  }
  .hero-image {
    object-position: center 55%;
  }
}
@media (max-width: 1199.98px) {
  :root {
    --header-height: 80px;
  }
  .container-wide {
    width: calc(100% - 72px);
  }
  .navbar {
    gap: 0;
    justify-content: space-between;
  }
  .navbar-collapse {
    flex-basis: 100%;
    order: 3;
  }
  .navbar-nav {
    gap: 0;
    padding: 10px 0 24px;
  }
  .navbar .nav-link {
    padding: 10px 0 !important;
    font-size: 17px;
  }
  .header-actions {
    gap: 20px;
  }
  .hero {
    min-height: 700px;
    height: auto;
  }
  .hero-content {
    padding-top: 75px;
    padding-bottom: 135px;
  }
  .hero h1 {
    font-size: 86px;
  }
  .hero-side-note {
    right: 15px;
  }
  .section-space {
    padding: 85px 0;
  }
  .house-visual {
    padding-right: 40px;
  }
  .house-main {
    height: 490px;
  }
  .house-inset {
    right: 12px;
    width: 44%;
    height: 230px;
  }
  .house-stamp {
    right: 14px;
    width: 115px;
    height: 115px;
  }
  .house-copy {
    padding-left: 25px;
  }
  .house-details {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .experience-card .card-photo {
    height: 280px;
  }
  .experience-card h3 {
    font-size: 28px;
  }
  .play-panel {
    gap: 0 20px;
    padding: 25px 25px 0;
  }
  .play-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item {
    height: 230px;
  }
  .section-heading {
    gap: 30px;
  }
  .destinations {
    padding-left: 25px;
  }
  .destination h3 {
    font-size: 27px;
  }
  .booking-card {
    padding: 30px;
  }
  .contact-channel span {
    font-size: 16px;
  }
}
@media (max-width: 991.98px) {
  h2 {
    font-size: 54px;
  }
  .hero {
    min-height: 720px;
  }
  .hero h1 {
    font-size: 85px;
  }
  .hero-image {
    object-position: 61% center;
  }
  .hero-shade {
    background: linear-gradient(90deg, #13221cd9, #14221c66 65%, #101a1626),
      linear-gradient(0deg, #0e1914aa, transparent 40%);
  }
  .hero-description {
    font-size: 17px;
  }
  .facts-grid {
    padding-top: 25px;
    padding-bottom: 25px;
  }
  .facts-grid > div {
    gap: 9px;
  }
  .facts-grid i {
    font-size: 22px;
  }
  .facts-grid strong {
    font-size: 27px;
  }
  .facts-grid p span {
    font-size: 12px;
  }
  .house-visual {
    max-width: 600px;
    margin: 0 auto;
  }
  .house-main {
    height: 540px;
  }
  .house-inset {
    width: 40%;
    height: 280px;
    right: 10px;
  }
  .house-stamp {
    right: 45px;
  }
  .house-copy {
    padding-left: 12px;
  }
  .house-copy > p:not(.eyebrow) {
    max-width: none;
  }
  .house-details {
    grid-template-columns: 1fr 1fr;
    font-size: 16px;
  }
  .house-details > div {
    font-size: 16px;
  }
  .house-copy > p {
    font-size: 16px;
  }
  .house-copy .lead-copy {
    font-size: 20px;
  }
  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 25px;
  }
  .section-heading > p {
    max-width: 520px;
    font-size: 17px;
  }
  .experience-card .card-photo {
    height: 250px;
  }
  .experience-card h3 {
    font-size: 28px;
  }
  .experience-card p {
    font-size: 16px;
  }
  .play-intro h3 {
    font-size: 28px;
  }
  .play-list li {
    font-size: 14px;
  }
  .essentials {
    gap: 30px;
  }
  .gallery-section .section-heading {
    align-items: flex-start;
  }
  .gallery-item {
    height: 225px;
  }
  .slow-section {
    background-attachment: scroll;
    min-height: 490px;
  }
  .location-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .location-card > img {
    height: 100%;
    min-height: 300px;
  }
  .location-copy {
    padding: 30px;
  }
  .destinations {
    padding-left: 12px;
    margin-top: 36px;
  }
  .destination {
    padding: 27px 0;
  }
  .destination h3 {
    font-size: 33px;
  }
  .destination p {
    font-size: 16px;
  }
  .destination .eyebrow {
    font-size: 13px;
  }
  .destination > i {
    padding-right: 15px;
  }
  .faq-list {
    padding-top: 10px;
  }
  .faq-section p,
  .faq-list details p {
    font-size: 16px;
  }
  .faq-list summary {
    font-size: 17px;
  }
  .contact-copy > p:not(.eyebrow) {
    max-width: 520px;
    font-size: 17px;
  }
  .contact-channel {
    max-width: none;
  }
  .booking-card {
    padding: 38px;
  }
  .booking-card h3 {
    font-size: 45px;
  }
  .booking-card label {
    font-size: 16px;
  }
  .form-note {
    font-size: 14px;
  }
  .contact-copy h2 {
    font-size: 62px;
  }
}
@media (max-width: 767.98px) {
  :root {
    --header-height: 76px;
  }
  .container-wide {
    width: calc(100% - 40px);
  }
  .section-space {
    padding: 67px 0;
  }
  h2 {
    font-size: 47px;
  }
  .eyebrow {
    font-size: 12px;
    letter-spacing: 1.8px;
    margin-bottom: 18px;
  }
  .brand-name {
    font-size: 41px;
  }
  .brand-sub {
    font-size: 11px;
    letter-spacing: 2.6px;
    margin-top: 8px;
  }
  .header-actions {
    gap: 13px;
  }
  .header-instagram {
    font-size: 18px;
  }
  .button-small {
    font-size: 13px;
    padding: 10px 12px;
    gap: 10px;
    min-height: 38px;
  }
  .button-small i {
    font-size: 16px;
  }
  .navbar-toggler {
    font-size: 26px;
  }
  .hero {
    height: calc(100svh - 76px);
    min-height: 650px;
    max-height: 830px;
  }
  .hero-content {
    padding-top: 62px;
    padding-bottom: 105px;
  }
  .hero h1 {
    font-size: clamp(66px, 11vw, 85px);
    margin-bottom: 25px;
  }
  .hero-image {
    object-position: 61% center;
  }
  .hero-shade {
    background: linear-gradient(90deg, #16281ed9, #16281e77 75%, #16281e3d),
      linear-gradient(0deg, #14251dcc, transparent 45%);
  }
  .hero-content .eyebrow {
    font-size: 12px;
    letter-spacing: 1.8px;
    gap: 10px;
    margin-bottom: 31px;
  }
  .tiny-line {
    width: 20px;
  }
  .hero-description {
    font-size: 16px;
    max-width: 320px;
    margin-bottom: 27px;
  }
  .hero-actions {
    gap: 18px;
    align-items: flex-start;
    flex-direction: column;
  }
  .hero-actions .button {
    min-height: 51px;
    font-size: 14px;
    padding: 16px 19px;
    gap: 17px;
  }
  .hero-gallery-link {
    font-size: 14px;
  }
  .hero-side-note {
    display: none;
  }
  .hero-bottom {
    bottom: 25px;
  }
  .hero-bottom > span {
    font-size: 11px;
    letter-spacing: 1.3px;
  }
  .hero-bottom > a {
    gap: 8px;
  }
  .hero-bottom > a span {
    display: none;
  }
  .hero-bottom > a i {
    width: 34px;
    height: 34px;
    font-size: 16px;
  }
  .facts-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 20px 0;
    padding: 23px 0;
  }
  .facts-grid > div {
    grid-column: span 2;
    gap: 11px;
    border-right: 1px solid #cfd3c6;
    justify-content: center;
  }
  .facts-grid > div:first-child {
    justify-content: center;
  }
  .facts-grid > div:nth-child(3) {
    border: 0;
  }
  .facts-grid > div:nth-child(n + 4) {
    grid-column: span 3;
    border-top: 1px solid #cfd3c6;
    padding-top: 18px;
  }
  .facts-grid > div:last-child {
    border-right: 0;
  }
  .facts-grid strong {
    font-size: 27px;
  }
  .facts-grid p span {
    font-size: 13px;
  }
  .facts-grid i {
    font-size: 24px;
  }
  .house-visual {
    padding-right: 45px;
    padding-bottom: 32px;
  }
  .house-main {
    height: 450px;
    width: 91%;
  }
  .house-inset {
    height: 230px;
    bottom: 65px;
    right: 10px;
    width: 41%;
    border-width: 6px;
  }
  .house-stamp {
    width: 107px;
    height: 107px;
    right: 20px;
    top: 24px;
  }
  .house-stamp span {
    font-size: 12px;
  }
  .house-stamp i {
    font-size: 25px;
  }
  .photo-note {
    font-size: 18px;
    margin-top: 15px;
  }
  .house-copy {
    padding-top: 0;
  }
  .house-copy .lead-copy {
    font-size: 18px;
  }
  .house-copy > p {
    font-size: 16px;
  }
  .house-details > div {
    font-size: 14px;
    gap: 8px;
  }
  .house-details {
    grid-template-columns: 1fr 1.4fr;
    gap: 15px 10px;
  }
  .house-details i {
    font-size: 18px;
  }
  .house-copy .text-link {
    font-size: 16px;
  }
  .section-heading {
    margin-bottom: 31px;
    gap: 20px;
  }
  .section-heading > p {
    font-size: 16px;
  }
  .experience-card {
    margin-bottom: 9px;
  }
  .experience-card .card-photo {
    height: 350px;
    margin-bottom: 22px;
  }
  .experience-card h3 {
    font-size: 36px;
  }
  .experience-card p {
    max-width: none;
    font-size: 16px;
  }
  .experience-cards {
    --bs-gutter-y: 24px;
  }
  .play-panel {
    grid-template-columns: 1fr;
    padding: 26px 22px 0;
    margin-top: 20px;
  }
  .play-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 13px 10px;
    padding: 9px 0 16px;
  }
  .play-intro h3 {
    font-size: 33px;
  }
  .play-list li {
    font-size: 16px;
  }
  .play-footnote {
    align-items: flex-start;
    font-size: 14px;
    line-height: 1.9;
    gap: 11px;
  }
  .essentials {
    grid-template-columns: 1fr;
    gap: 23px;
    padding-top: 27px;
  }
  .essentials p span {
    font-size: 16px;
  }
  .essentials i {
    font-size: 24px;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .gallery-item {
    height: 250px;
  }
  .gallery-item.gallery-wide {
    grid-column: span 2;
    height: 300px;
  }
  .gallery-item > span {
    font-size: 13px;
    padding: 30px 12px 13px;
    gap: 4px;
  }
  .gallery-item > span i {
    width: 22px;
    height: 22px;
    font-size: 16px;
    flex-shrink: 0;
  }
  .gallery-filters {
    gap: 7px;
    margin-bottom: 20px;
  }
  .filter-button {
    font-size: 13px;
    padding: 8px 12px;
  }
  .gallery-section .section-heading .text-link {
    font-size: 14px;
  }
  .slow-section {
    min-height: 470px;
    padding: 65px 0;
  }
  .slow-content h2 {
    font-size: 56px;
  }
  .slow-content > p:not(.eyebrow) {
    font-size: 16px;
  }
  .location-card {
    display: block;
  }
  .location-card > img {
    height: 280px;
    min-height: 0;
  }
  .location-copy {
    padding: 28px;
  }
  .location-copy h3 {
    font-size: 35px;
  }
  .destinations {
    margin-top: 30px;
  }
  .destination {
    gap: 15px;
    padding: 25px 0;
  }
  .destination h3 {
    font-size: 30px;
  }
  .destination p {
    font-size: 16px;
  }
  .destination .eyebrow {
    font-size: 12px;
    letter-spacing: 1px;
  }
  .destination > i {
    font-size: 20px;
    padding-right: 0;
  }
  .destination-number {
    font-size: 22px;
  }
  .travel-note {
    text-align: left;
    font-size: 13px;
  }
  .faq-section h2 {
    font-size: 47px;
  }
  .faq-section .eyebrow {
    font-size: 12px;
  }
  .faq-list summary {
    font-size: 16px;
    padding: 19px 0;
    line-height: 1.7;
  }
  .faq-list details p {
    font-size: 16px;
    padding-right: 18px;
  }
  .faq-section > .container-wide > * {
    padding-left: 0;
    padding-right: 0;
  }
  .contact-copy h2 {
    font-size: 51px;
  }
  .contact-copy > p:not(.eyebrow) {
    font-size: 16px;
  }
  .contact-channel span {
    font-size: 16px;
  }
  .contact-channel {
    padding: 18px 0;
  }
  .booking-card {
    padding: 26px 22px;
  }
  .booking-card h3 {
    font-size: 36px;
  }
  .booking-intro {
    font-size: 14px;
  }
  .booking-card label {
    font-size: 14px;
  }
  .form-control,
  .form-select {
    font-size: 17px;
  }
  .form-note {
    font-size: 13px;
  }
  .footer-top {
    flex-wrap: wrap;
    gap: 30px;
    padding-bottom: 25px;
  }
  .footer-top > p {
    order: 3;
    flex-basis: 100%;
    text-align: left;
    font-size: 25px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 9px;
    padding-top: 20px;
    font-size: 13px;
  }
  .site-footer {
    padding-top: 36px;
    padding-bottom: 106px;
  }
  .floating-contact {
    bottom: max(12px, env(safe-area-inset-bottom));
    right: 12px;
    left: 12px;
    justify-content: center;
    max-width: 390px;
    margin-left: auto;
  }
  .floating-contact a {
    justify-content: center;
    flex: 1;
    padding: 11px 13px;
    font-size: 14px;
  }
  .lightbox {
    padding: 75px 15px 95px;
  }
  .lightbox figure img {
    max-height: calc(100svh - 230px);
  }
  .lightbox-prev,
  .lightbox-next {
    top: auto;
    bottom: 30px;
  }
  .lightbox-prev {
    left: calc(50% - 58px);
  }
  .lightbox-next {
    right: calc(50% - 58px);
  }
  .lightbox figcaption {
    font-size: 16px;
    padding: 18px 0 0;
  }
  .lightbox-close {
    right: 15px;
    top: 17px;
  }
}
@media (max-width: 389.98px) {
  .container-wide {
    width: calc(100% - 32px);
  }
  .header-instagram {
    display: none;
  }
  .header-actions {
    gap: 10px;
  }
  .hero h1 {
    font-size: 66px;
  }
  .hero-content {
    padding-top: 54px;
  }
  .hero {
    min-height: 640px;
  }
  .hero-content .eyebrow {
    font-size: 11px;
    letter-spacing: 1.5px;
  }
  .house-main {
    height: 370px;
  }
  .house-inset {
    height: 200px;
    bottom: 58px;
  }
  .house-stamp {
    right: 10px;
    width: 94px;
    height: 94px;
  }
  .house-details {
    grid-template-columns: 1fr;
  }
  .gallery-item {
    height: 210px;
  }
  .gallery-item.gallery-wide {
    height: 255px;
  }
  .experience-card .card-photo {
    height: 290px;
  }
  .contact-copy h2 {
    font-size: 45px;
  }
  .play-list li {
    font-size: 14px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
  }
  .slow-section {
    background-attachment: scroll;
  }
}
@media print {
  .site-header,
  .floating-contact,
  .hero-actions,
  .gallery-filters,
  .gallery-more-wrap,
  .lightbox,
  .booking-card {
    display: none !important;
  }
  .hero {
    height: 500px;
    min-height: 0;
  }
  .hero-content {
    padding-top: 40px;
  }
  .section-space {
    padding: 35px 0;
  }
  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
  }
  .slow-section {
    background-attachment: scroll;
  }
  .gallery-item {
    break-inside: avoid;
  }
  .site-footer {
    padding-bottom: 20px;
  }
}

/* Readable controls and labels at every viewport size. */
.navbar .nav-link {
  font-size: 16px;
}
.header-phone,
.button-small {
  font-size: 15px;
}
.brand-sub {
  font-size: 10px;
  letter-spacing: 2px;
}
.play-list li {
  white-space: normal;
}
.play-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.facts-grid > div {
  min-width: 0;
}
.hero-description {
  max-width: 470px;
}
.hero-content {
  padding-bottom: 150px;
}
.contact-channel span {
  overflow-wrap: anywhere;
}
.contact-channel > i {
  flex-shrink: 0;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .navbar-nav {
    gap: 15px;
  }
  .navbar {
    gap: 18px;
  }
  .header-actions {
    gap: 15px;
  }
  .button-small {
    gap: 9px;
    padding: 12px;
  }
}
@media (max-width: 1199.98px) {
  .navbar .nav-link {
    font-size: 17px;
  }
}
@media (max-width: 991.98px) {
  .facts-grid > div {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}
@media (max-width: 767.98px) {
  .hero {
    min-height: 760px;
    height: auto;
  }
  .hero-content {
    padding-bottom: 160px;
  }
  .hero-bottom {
    bottom: 85px;
  }
  .hero-content .eyebrow {
    font-size: 12px;
    letter-spacing: 1.2px;
  }
  .hero-bottom > span {
    font-size: 11px;
    letter-spacing: 1px;
  }
  .facts-grid p span {
    font-size: 14px;
  }
  .house-details {
    grid-template-columns: 1fr;
  }
  .header-actions {
    gap: 8px;
  }
  .brand-sub {
    font-size: 10px;
    letter-spacing: 1px;
  }
  .header-phone span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
  }
  .header-phone {
    padding: 10px 4px;
  }
  .header-phone i {
    font-size: 20px;
  }
  .button-small {
    font-size: 14px;
    gap: 8px;
    padding: 11px 12px;
  }
  .navbar-toggler {
    padding-left: 3px;
  }
  .floating-contact a {
    font-size: 14px;
  }
  .gallery-item > span {
    font-size: 14px;
  }
  .form-control,
  .form-select {
    font-size: 16px;
  }
}
@media (max-width: 389.98px) {
  .button-small {
    padding: 11px 9px;
    gap: 6px;
    font-size: 13px;
  }
  .header-actions {
    gap: 6px;
  }
  .hero-actions .button {
    gap: 10px;
    padding: 16px 14px;
  }
  .hero-actions .button i {
    flex-shrink: 0;
  }
  .hero-content .eyebrow {
    font-size: 11px;
  }
  .play-panel {
    padding-left: 16px;
    padding-right: 16px;
  }
}
