:root {
  --ink: #1d2823;
  --forest: #1f352d;
  --forest-deep: #14251f;
  --ivory: #f3f0e9;
  --paper: #fbfaf6;
  --stone: #c9bea9;
  --line: rgba(29, 40, 35, 0.18);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body,
a,
button,
summary {
  cursor: default;
}

a,
button,
summary {
  cursor: pointer;
}

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

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

.skip-link {
  position: fixed;
  top: -60px;
  left: 16px;
  z-index: 1000;
  padding: 12px 18px;
  color: white;
  background: var(--forest);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 96px;
  padding: 0 clamp(24px, 4vw, 72px);
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
  gap: 12px;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: currentColor;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.brand-mark span {
  margin-top: 3px;
  font-family: var(--serif);
  font-size: 16px;
}

.brand-mark i {
  position: absolute;
  top: 7px;
  width: 8px;
  height: 1px;
  background: currentColor;
  transform: rotate(-45deg);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1;
}

.brand-copy strong {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.brand-copy small {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.8vw, 46px);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.desktop-nav a,
.footer-links a {
  position: relative;
}

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

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.footer-links a:hover::after,
.footer-links a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  justify-self: end;
  padding: 12px 18px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.65);
  transition: color 0.25s ease, background 0.25s ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  color: var(--forest);
  background: white;
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  display: flex;
  min-height: min(900px, 100svh);
  align-items: flex-end;
  overflow: hidden;
  color: white;
  background: var(--forest-deep);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
  animation: settle 1.4s ease-out both;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(12, 23, 18, 0.76) 0%, rgba(12, 23, 18, 0.34) 47%, rgba(12, 23, 18, 0.12) 100%),
    linear-gradient(0deg, rgba(12, 23, 18, 0.55) 0%, transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(780px, 72vw);
  margin: 0 0 clamp(96px, 13vh, 150px) clamp(24px, 8vw, 140px);
}

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

.eyebrow.light {
  color: rgba(255, 255, 255, 0.72);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 770px;
  margin-bottom: 28px;
  font-size: clamp(58px, 7.3vw, 112px);
  line-height: 0.88;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(46px, 5vw, 76px);
  line-height: 0.98;
}

.hero-lead {
  max-width: 560px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.65;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 27px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: background 0.25s ease, color 0.25s ease, border 0.25s ease;
}

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

.button-light:hover,
.button-light:focus-visible {
  color: white;
  background: var(--forest);
  border-color: rgba(255, 255, 255, 0.45);
}

.button-outline-light {
  color: white;
  border-color: rgba(255, 255, 255, 0.55);
}

.button-outline-light:hover,
.button-outline-light:focus-visible {
  color: var(--forest);
  background: white;
}

.text-link {
  padding-bottom: 5px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
}

.text-link span,
.villa-card-copy a span {
  margin-left: 5px;
  transition: transform 0.2s ease;
}

.text-link:hover span,
.villa-card-copy a:hover span {
  display: inline-block;
  transform: translate(2px, -2px);
}

.light-link {
  color: rgba(255, 255, 255, 0.9);
}

.scroll-note {
  position: absolute;
  right: clamp(24px, 4vw, 72px);
  bottom: 42px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.scroll-note i {
  display: block;
  width: 56px;
  height: 1px;
  background: rgba(255, 255, 255, 0.55);
}

.section-pad {
  padding: clamp(90px, 11vw, 168px) clamp(24px, 8vw, 140px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.78fr);
  gap: clamp(48px, 9vw, 150px);
  align-items: start;
}

.intro-copy {
  padding-top: 36px;
}

.intro-copy p,
.section-head > p,
.dining-copy > p,
.experience-copy > p {
  color: #566159;
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.85;
}

.intro-copy p:first-child {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(23px, 2.25vw, 32px);
  line-height: 1.45;
}

.intro-copy p:last-child {
  margin-bottom: 0;
}

.amenity-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0 clamp(24px, 4vw, 72px);
  color: white;
  background: var(--forest);
}

.amenity-band article {
  min-height: 280px;
  padding: 52px clamp(20px, 2.4vw, 40px);
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

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

.amenity-band span {
  display: block;
  margin-bottom: 42px;
  color: var(--stone);
  font-family: var(--serif);
  font-size: 14px;
}

.amenity-band h3 {
  margin-bottom: 14px;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
}

.amenity-band p {
  max-width: 230px;
  margin: 0;
  color: rgba(255, 255, 255, 0.61);
  font-size: 13px;
  line-height: 1.7;
}

.villas {
  background: var(--ivory);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.48fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 70px;
}

.section-head > p {
  margin: 0;
}

.villa-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 72px 32px;
}

.villa-card-1 {
  grid-column: 1 / 8;
}

.villa-card-2 {
  grid-column: 8 / 13;
  margin-top: 140px;
}

.villa-card-3 {
  grid-column: 3 / 10;
}

.villa-image-wrap {
  position: relative;
  overflow: hidden;
  background: #d9d5ca;
}

.villa-card-1 .villa-image-wrap {
  aspect-ratio: 4 / 3;
}

.villa-card-2 .villa-image-wrap {
  aspect-ratio: 4 / 5;
}

.villa-card-3 .villa-image-wrap {
  aspect-ratio: 16 / 9;
}

.villa-image-wrap img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.villa-card:hover .villa-image-wrap img {
  transform: scale(1.025);
}

.villa-image-wrap > span {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 9px 12px;
  color: var(--ink);
  background: rgba(251, 250, 246, 0.91);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.villa-card-copy {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 16px;
  padding-top: 25px;
}

.villa-card-copy > p {
  padding-top: 7px;
  color: #899088;
  font-family: var(--serif);
  font-size: 13px;
}

.villa-card-copy h3 {
  margin-bottom: 14px;
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 400;
  letter-spacing: -0.03em;
}

.villa-card-copy div > p {
  max-width: 600px;
  margin-bottom: 20px;
  color: #5f6861;
  font-size: 14px;
  line-height: 1.75;
}

.villa-card-copy a {
  display: inline-flex;
  padding-bottom: 4px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
}

.experience {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr;
  min-height: 720px;
  color: white;
  background: var(--forest-deep);
}

.experience-image {
  min-height: 620px;
  overflow: hidden;
}

.experience-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(72px, 8vw, 130px) clamp(36px, 6vw, 100px);
}

.experience-copy h2 {
  margin-bottom: 28px;
}

.experience-copy > p {
  margin-bottom: 38px;
  color: rgba(255, 255, 255, 0.65);
}

.experience-copy .button {
  align-self: flex-start;
}

.dining {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(60px, 9vw, 150px);
  align-items: center;
}

.dining-copy h2 {
  margin-bottom: 28px;
}

.dining-copy > p {
  margin-bottom: 44px;
}

.dining dl {
  margin: 0;
  border-top: 1px solid var(--line);
}

.dining dl div {
  display: grid;
  grid-template-columns: 110px 1fr;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.dining dt {
  color: #777e78;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.dining dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 16px;
}

.dining figure,
.gallery figure {
  margin: 0;
}

.dining figure img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.dining figcaption {
  margin-top: 12px;
  color: #747c76;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.gallery {
  padding-top: 40px;
  background: var(--paper);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  grid-template-rows: repeat(2, minmax(280px, 390px));
  gap: 16px;
}

.gallery-grid figure {
  overflow: hidden;
}

.gallery-grid figure:first-child {
  grid-row: 1 / 3;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.02);
}

.visual-note {
  margin: 14px 0 0;
  color: #8a8e8a;
  font-size: 10px;
}

.contact {
  display: grid;
  grid-template-columns: 1.2fr 0.5fr;
  gap: 80px;
  color: white;
  background: var(--forest);
}

.contact h2 {
  max-width: 850px;
  margin-bottom: 30px;
  font-size: clamp(50px, 6vw, 90px);
}

.contact-main > p {
  max-width: 600px;
  margin-bottom: 35px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 16px;
  line-height: 1.75;
}

.contact address {
  display: flex;
  flex-direction: column;
  align-self: end;
  padding-left: 36px;
  font-style: normal;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.contact address span {
  margin-bottom: 15px;
  color: var(--stone);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact address strong {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.4;
}

footer {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 54px clamp(24px, 4vw, 72px) 36px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--forest-deep);
}

.footer-brand {
  color: white;
}

footer > p {
  max-width: 360px;
  margin: 0 auto;
  text-align: center;
  font-size: 11px;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

footer > small {
  grid-column: 1 / -1;
  padding-top: 30px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 9px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

a:focus-visible,
summary:focus-visible {
  outline: 2px solid #e8bd77;
  outline-offset: 4px;
}

@keyframes settle {
  from {
    opacity: 0.75;
    transform: scale(1.035);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 82px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .mobile-menu {
    position: relative;
    display: block;
    justify-self: end;
  }

  .mobile-menu summary {
    display: flex;
    width: 44px;
    height: 44px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    list-style: none;
    border: 1px solid rgba(255, 255, 255, 0.45);
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu summary span {
    width: 17px;
    height: 1px;
    background: white;
  }

  .mobile-menu nav {
    position: absolute;
    top: 55px;
    right: 0;
    display: flex;
    width: min(280px, calc(100vw - 48px));
    flex-direction: column;
    padding: 12px 24px;
    color: var(--ink);
    background: var(--paper);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.17);
  }

  .mobile-menu nav a {
    padding: 14px 0;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--line);
  }

  .mobile-menu nav a:last-child {
    border-bottom: 0;
  }

  .intro,
  .section-head,
  .dining,
  .contact {
    grid-template-columns: 1fr;
  }

  .intro-copy {
    max-width: 650px;
    padding-top: 0;
  }

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

  .amenity-band article:nth-child(2) {
    border-right: 0;
  }

  .amenity-band article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .section-head {
    gap: 28px;
  }

  .section-head > p {
    max-width: 600px;
  }

  .experience {
    grid-template-columns: 1.15fr 0.85fr;
  }

  .experience-copy {
    padding-right: 36px;
    padding-left: 36px;
  }

  .dining figure img {
    max-height: 680px;
  }

  .contact address {
    padding: 30px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    border-left: 0;
  }

  footer {
    grid-template-columns: 1fr 1fr;
  }

  footer > p {
    display: none;
  }
}

@media (max-width: 700px) {
  .site-header {
    padding-right: 20px;
    padding-left: 20px;
  }

  .hero {
    min-height: 800px;
  }

  .hero-image {
    object-position: 61% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(12, 23, 18, 0.66), rgba(12, 23, 18, 0.14)),
      linear-gradient(0deg, rgba(12, 23, 18, 0.82), rgba(12, 23, 18, 0.08) 75%);
  }

  .hero-content {
    width: auto;
    margin: 0 20px 92px;
  }

  h1 {
    font-size: clamp(52px, 16.5vw, 72px);
  }

  .hero-lead {
    max-width: 460px;
  }

  .scroll-note {
    right: 20px;
    bottom: 25px;
  }

  .scroll-note span {
    display: none;
  }

  .section-pad {
    padding: 84px 20px;
  }

  .amenity-band {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

  .amenity-band article {
    min-height: 0;
    padding: 38px 4px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .amenity-band article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .amenity-band article:last-child {
    border-bottom: 0;
  }

  .amenity-band span {
    margin-bottom: 22px;
  }

  .villa-grid {
    display: flex;
    flex-direction: column;
    gap: 64px;
  }

  .villa-card-2 {
    margin-top: 0;
  }

  .villa-card-2 .villa-image-wrap {
    aspect-ratio: 4 / 3;
  }

  .villa-card-copy {
    grid-template-columns: 34px 1fr;
  }

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

  .experience-image {
    min-height: 420px;
  }

  .experience-copy {
    padding: 76px 20px;
  }

  .dining {
    gap: 54px;
  }

  .dining figure img {
    aspect-ratio: 4 / 5;
  }

  .gallery {
    padding-top: 20px;
  }

  .gallery-grid {
    display: flex;
    flex-direction: column;
  }

  .gallery-grid figure {
    aspect-ratio: 4 / 3;
  }

  .gallery-grid figure:first-child {
    aspect-ratio: 4 / 5;
  }

  .contact {
    gap: 50px;
  }

  .contact h2 {
    font-size: 50px;
  }

  footer {
    grid-template-columns: 1fr;
    align-items: start;
    padding-right: 20px;
    padding-left: 20px;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  footer > small {
    text-align: left;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
