:root {
  --green: #1b4d3e;
  --green-link: #246b54;
  --green-soft: #1b4d3e38;
  --ink: #171717;
  --ink-deep: #111111;
  --body: #989898;
  --muted: #8a8a8a;
  --white: #ffffff;
  --off: #f6f5f2;
  --border: #e6e6e6;
  --font: "Montserrat", sans-serif;
  --nav-h: 88px;
  --ease: cubic-bezier(0.2, 1, 0.3, 1);
  --max: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--body);
  font-size: 16px;
  line-height: 1.6;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--green);
  text-decoration: none;
  transition: color 0.35s ease;
}

a:hover,
a:focus-visible {
  color: var(--green-link);
}

:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 2000;
  background: var(--green);
  color: var(--white);
  padding: 10px 16px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
  font-weight: 700;
}

.skip-link:focus {
  top: 16px;
  color: var(--white);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--ink);
  letter-spacing: 0.05em;
  line-height: 1.15;
  margin: 0 0 0.4em;
}

p {
  margin: 0 0 1.15em;
}

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.section-head {
  margin-bottom: 28px;
}

.section-head.center {
  text-align: center;
}

.kicker {
  display: block;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--body);
  font-weight: 400;
  margin-bottom: 8px;
}

.section-head h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.55rem);
}

.hr-heading {
  display: block;
  width: 92px;
  height: 2px;
  background: var(--green);
  border: 0;
  margin: 18px 0 0;
}

.section-head.center .hr-heading {
  margin-left: auto;
  margin-right: auto;
}

.dark .kicker {
  color: #b0b0b0;
}

.dark h2,
.dark h3 {
  color: var(--white);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font);
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 0;
  font-size: 16px;
  padding: 12px 26px;
  border: 5px solid var(--green);
  background: transparent;
  color: var(--green);
  cursor: pointer;
  transition:
    background 0.25s var(--ease),
    color 0.25s var(--ease),
    border-color 0.25s var(--ease);
}

.btn-icon {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 16px;
  line-height: 1;
}

.btn:hover,
.btn:focus-visible {
  background: var(--green);
  color: var(--white);
}

.btn-on-dark {
  border-color: var(--green);
  color: var(--white);
}

.btn-on-dark:hover,
.btn-on-dark:focus-visible {
  background: var(--green);
  color: var(--white);
}

.btn-plain {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 400;
  color: var(--green);
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.plus-circle {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 16px;
  line-height: 1;
}

.btn-plain:hover {
  color: var(--ink);
}

.dark .btn-plain:hover {
  color: var(--white);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--nav-h);
  padding: 0 28px;
}

.wordmark {
  display: flex;
  align-items: baseline;
  gap: 0.32em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: clamp(0.92rem, 1.55vw, 1.15rem);
  color: var(--ink);
  line-height: 1;
}

.wordmark .casa {
  color: var(--green);
  letter-spacing: 0.2em;
}

.wordmark .slash {
  color: var(--ink);
  font-weight: 400;
  letter-spacing: 0;
  display: inline-block;
  transform: skew(-16deg);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  display: block;
  padding: 28px 11px;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
  font-weight: 400;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--green);
}

.nav-panel {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex: 1;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--green);
  margin: 6px 0;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--nav-h));
  display: grid;
  place-items: center;
  color: var(--white);
  overflow: hidden;
  background: var(--ink-deep);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #1717172e, #1717176b);
}

.hero-films[hidden] {
  display: none !important;
}

.hero-films {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-items: center;
  gap: 12px;
  padding: 20px;
  background: #111;
}

.hero-films--single {
  grid-template-columns: 1fr;
}

.hero-films::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #17171733, #17171773);
  pointer-events: none;
}

.hero-films .film {
  width: auto;
  height: 100%;
  max-width: 100%;
  max-height: calc(100svh - var(--nav-h) - 40px);
  aspect-ratio: 9 / 16;
  object-fit: contain;
  object-position: center;
  background: #000;
  display: block;
}

.hero[data-hero="films"] .hero-media {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 72px 24px;
  max-width: 980px;
  text-shadow: 0 3px 7px rgba(0, 0, 0, 0.28);
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: var(--white);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: clamp(0.85rem, 1.6vw, 1.15rem);
  font-weight: 400;
}

.hero-kicker::before,
.hero-kicker::after {
  content: "";
  width: 48px;
  height: 2px;
  background: var(--white);
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 6.8vw, 4.6rem);
  letter-spacing: 0.1em;
  line-height: 1.05;
  margin: 18px 0 0;
}

.hero-rule {
  width: 120px;
  height: 3px;
  background: var(--white);
  border: 0;
  margin: 28px auto;
}

.hero p {
  color: var(--white);
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  max-width: 680px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero .btn {
  color: var(--white);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  min-height: 620px;
}

.split.reverse {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.split-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 7vw, 92px) clamp(28px, 5vw, 72px);
}

.split-copy p:last-of-type {
  margin-bottom: 22px;
}

.split-visual {
  position: relative;
  min-height: 420px;
  background: var(--ink-deep);
}

.split-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.photo-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  background: var(--ink-deep);
  overflow: hidden;
  min-height: 0;
  padding: 18px;
}

.photo-pair img {
  position: static;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.more-copy[hidden] {
  display: none;
}

.dark {
  background: var(--ink);
}

.dark p {
  color: #bdbdbd;
}

.align-right {
  text-align: right;
}

.align-right .hr-heading {
  margin-left: auto;
}

.amenities {
  padding: 96px 0 80px;
}

.table-amenities {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
}

.amenity-cell {
  position: relative;
  padding: 20px 18px 20px 52px;
  border: 1px solid var(--border);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  line-height: 1.45;
  color: var(--body);
}

.amenity-cell::before {
  content: "›";
  position: absolute;
  left: 16px;
  top: 20px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 18px;
  line-height: 20px;
  text-align: center;
}

.house-rules {
  margin-top: 36px;
  border: 1px solid var(--border);
  padding: 28px 30px 22px;
}

.house-rules h3 {
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  margin-bottom: 14px;
}

.house-rules ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 28px;
}

.house-rules li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  color: var(--ink);
}

.house-rules li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  border: 2px solid var(--green);
  transform: rotate(45deg);
}

.gallery {
  padding: 0;
}

.gallery-strip {
  display: grid;
  grid-template-columns: minmax(160px, 22%) 1fr;
  background: var(--ink);
  min-height: 300px;
}

.gallery-label {
  display: grid;
  place-items: center;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 700;
}

.gallery-viewport {
  position: relative;
  overflow: hidden;
}

.gallery-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  height: 320px;
}

.gallery-track::-webkit-scrollbar {
  display: none;
}

.gallery-track a {
  flex: 0 0 33.333%;
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
  background: #000;
}

.gallery-track img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.35s ease;
}

.gallery-track a:hover img {
  opacity: 0.55;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 48px;
  height: 48px;
  transform: translateY(-50%);
  background: var(--green);
  color: var(--white);
  border: 0;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.gallery-arrow.prev {
  left: 0;
}

.gallery-arrow.next {
  right: 0;
}

.rates {
  padding: 96px 0;
}

.table-rates {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--border);
}

.table-rates th {
  background: var(--green);
  color: var(--white);
  text-align: left;
  padding: 22px 24px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  width: 82%;
}

.table-rates td {
  border: 1px solid var(--border);
  text-align: center;
  color: var(--body);
  font-size: 18px;
  font-weight: 400;
  padding: 22px 16px;
}

.table-rates .note td {
  background: var(--border);
  color: var(--body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  padding: 18px 16px;
}

.rates-tax {
  margin: 18px 0 0;
  text-align: center;
  color: var(--body);
  font-size: 15px;
}

.rates-quiet {
  margin: 10px 0 0;
  text-align: center;
  color: #b0b0b0;
  font-size: 13px;
  letter-spacing: 0.04em;
}

.faq {
  padding: 88px 0 80px;
  background: var(--white);
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-list > div {
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}

.faq-list dt {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink);
  margin-bottom: 8px;
}

.faq-list dd {
  margin: 0;
  color: var(--body);
}

.reserve {
  padding: 96px 0 88px;
}

.reserve-lead {
  max-width: 640px;
  margin: 0 auto 36px;
  text-align: center;
  color: #b5b5b5;
}

.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form .full {
  grid-column: 1 / -1;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8a8a8a;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  background: transparent;
  border: 1px solid #6b6b6b;
  border-radius: 0;
  color: var(--white);
  font-family: var(--font);
  font-size: 15px;
  letter-spacing: 0.03em;
  padding: 14px 15px;
  text-transform: uppercase;
}

.field textarea {
  text-transform: none;
  min-height: 120px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #7a7a7a;
  text-transform: uppercase;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--green);
  outline: none;
  box-shadow: 0 0 0 3px var(--green-soft);
}

.form-actions {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.form-note {
  margin: 0;
  font-size: 13px;
  color: #9a9a9a;
  max-width: 520px;
}

.form-status {
  grid-column: 1 / -1;
  color: #c5d5ce;
  min-height: 1.4em;
}

.map {
  line-height: 0;
}

.map iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
  filter: grayscale(0.2);
}

.reviews {
  padding: 96px 0 80px;
}

.review-badges {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.badge {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  border: 1px solid #2c2c2c;
  background: #1d1d1d;
  color: var(--white);
  padding: 16px 22px;
  min-width: 240px;
}

.badge:hover {
  border-color: var(--green);
  color: var(--white);
}

.badge strong {
  color: var(--green);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 12px;
}

.badge span {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.badge em {
  font-style: normal;
  color: #9a9a9a;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.review-card {
  background: #1d1d1d;
  border: 1px solid #2a2a2a;
  padding: 28px 26px 24px;
}

.review-card blockquote {
  margin: 0 0 18px;
  color: #d8d8d8;
  font-size: 15px;
  line-height: 1.65;
}

.review-card footer {
  color: var(--green);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.review-card cite {
  font-style: normal;
  color: var(--white);
}

.cta-band {
  background: var(--green);
  color: var(--white);
  text-align: center;
  padding: 42px 20px;
}

.cta-band a {
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: clamp(1.15rem, 2.6vw, 1.85rem);
}

.cta-band a:hover {
  color: var(--ink);
}

.contact {
  position: relative;
  padding: 96px 0 72px;
  background:
    linear-gradient(#171717c7, #171717d1),
    url("../images/hero-sunset-pool-1600.webp") center / cover;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  text-align: center;
}

.contact-item h2 {
  color: var(--white);
  font-size: 1.15rem;
  margin: 18px 0 12px;
}

.contact-item p {
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 14px;
  line-height: 1.7;
}

.contact-item a {
  color: #c5d5ce;
}

.contact-item a:hover {
  color: var(--white);
}

.icon-circle {
  width: 86px;
  height: 86px;
  margin: 0 auto;
  border: 0;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: grid;
  place-items: center;
}

.icon-circle svg {
  width: 28px;
  height: 28px;
}

.tagline-bar {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 1.15rem;
  font-weight: 400;
  padding: 28px 20px;
}

.copyright {
  margin: 0;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  background:
    linear-gradient(#171717c7, #171717d1),
    url("../images/hero-sunset-pool-1600.webp") center / cover;
  font-size: 12px;
  padding: 22px 20px 12px;
}

.twb-credit {
  margin: 0;
  background: var(--ink);
  display: flex;
  justify-content: center;
  padding: 0 20px 36px;
}

.twb-credit a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #b0b0b0;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.twb-credit img {
  display: block;
  height: 40px;
  width: auto;
}

.twb-credit a:hover,
.twb-credit a:focus-visible {
  color: var(--green);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: #171717f0;
  display: none;
  place-items: center;
  padding: 40px 20px;
}

.lightbox.is-open {
  display: grid;
}

.lightbox img {
  max-width: min(1200px, 92vw);
  max-height: 84vh;
  object-fit: contain;
}

.lightbox-caption {
  color: var(--white);
  text-align: center;
  margin-top: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: transparent;
  border: 0;
  color: var(--white);
  cursor: pointer;
  font-size: 28px;
  padding: 10px;
}

.lightbox-close {
  top: 16px;
  right: 18px;
}

.lightbox-prev {
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 1180px) {
  .nav-toggle {
    display: block;
  }

  .nav-panel {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 8px 20px 20px;
  }

  .nav.is-open .nav-panel {
    display: block;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links a {
    padding: 12px 0;
  }
}

@media (max-width: 1024px) {
  .split,
  .split.reverse {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .split-visual {
    min-height: 360px;
  }

  .photo-pair {
    min-height: 0;
  }

  .photo-pair img {
    min-height: 0;
    height: auto;
    object-fit: contain;
  }

  .align-right {
    text-align: left;
  }

  .align-right .hr-heading {
    margin-left: 0;
  }

  .table-amenities,
  .review-grid,
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .gallery-label {
    padding: 28px 16px;
  }

  .gallery-track a {
    flex-basis: 70%;
  }
}

@media (max-width: 720px) {
  .nav {
    padding: 0 16px;
  }

  .hero {
    min-height: 78svh;
  }

  .hero[data-hero="films"] {
    min-height: 0;
  }

  .hero-films {
    position: relative;
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 0;
    padding: 0;
    min-height: 0;
  }

  .hero-films .film {
    flex: 0 0 100%;
    width: 100%;
    height: auto;
    max-width: none;
    max-height: none;
    aspect-ratio: 9 / 16;
    object-fit: contain;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .hero[data-hero="films"] .hero-content {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    align-content: center;
  }

  .hero-media {
    display: grid;
    place-items: center;
    background: #111;
  }

  .hero-media img {
    width: 100%;
    height: auto;
    max-height: 78svh;
    object-fit: contain;
    object-position: center center;
  }

  .split-visual {
    min-height: 0;
    aspect-ratio: auto;
  }

  .split-visual img {
    position: static;
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .photo-pair {
    padding: 10px;
  }

  .photo-pair img {
    min-height: 0;
    height: auto;
    object-fit: contain;
  }

  .gallery-track {
    height: auto;
  }

  .gallery-track a {
    aspect-ratio: 4 / 3;
    background: #111;
  }

  .gallery-track img {
    object-fit: contain;
    object-position: center;
  }

  .hero-kicker::before,
  .hero-kicker::after {
    width: 24px;
  }

  .table-amenities,
  .review-grid,
  .contact-grid,
  .form,
  .house-rules ul,
  .photo-pair {
    grid-template-columns: 1fr;
  }

  .gallery-track a {
    flex-basis: 88%;
  }

  .table-rates th,
  .table-rates td {
    display: block;
    width: 100%;
  }

  .map iframe {
    height: 280px;
  }

  .split-copy {
    padding: 48px 22px;
  }
}

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

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