:root {
  --paper: #fbf7ef;
  --paper-deep: #f1e8d8;
  --ink: #25231e;
  --muted: #706b5f;
  --olive: #58634a;
  --olive-dark: #2f3b31;
  --clay: #b56e4b;
  --stone: #d6c5aa;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(37, 35, 30, .16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, sans-serif;
  overflow-x: hidden;
}

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

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

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

button {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 22px clamp(20px, 4vw, 58px);
  color: var(--white);
  transition: background .25s ease, color .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(251, 247, 239, .94);
  color: var(--ink);
  box-shadow: 0 8px 30px rgba(37, 35, 30, .08);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  line-height: 1;
  letter-spacing: 0;
}

.brand span {
  font-weight: 500;
}

.brand strong {
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 34px);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .22s ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-book {
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  padding: 12px 18px;
  text-transform: inherit;
}

.nav-book::after {
  display: none;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.language-switcher span {
  font-size: .72rem;
}

.language-switcher select {
  min-width: 62px;
  border: 1px solid currentColor;
  border-radius: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .08em;
  padding: 9px 8px;
  text-transform: uppercase;
}

.site-header:not(.is-scrolled):not(.is-open) .language-switcher option {
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 112px 0 86px;
  overflow: hidden;
  color: var(--white);
}

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

.hero-media {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(23, 23, 18, .68), rgba(23, 23, 18, .22) 52%, rgba(23, 23, 18, .42)),
    linear-gradient(180deg, rgba(23, 23, 18, .4), transparent 28%, rgba(23, 23, 18, .72));
}

.hero-content {
  position: relative;
  width: min(760px, calc(100% - 40px));
  margin-left: clamp(20px, 8vw, 120px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--clay);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f0c9a4;
}

h1,
h2,
h3,
blockquote {
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: 0;
}

h1 {
  margin: 0;
  font-size: clamp(3.4rem, 11vw, 10rem);
  font-weight: 700;
  line-height: .86;
  overflow-wrap: anywhere;
}

h2 {
  margin: 0;
  font-size: clamp(2.05rem, 4.8vw, 4.8rem);
  font-weight: 600;
  line-height: .96;
  overflow-wrap: anywhere;
}

h3 {
  margin: 0;
  font-size: 1.75rem;
  line-height: 1;
}

p {
  color: var(--muted);
  line-height: 1.75;
  overflow-wrap: anywhere;
}

.hero-copy {
  width: min(560px, 100%);
  margin: 24px 0 32px;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(1rem, 2vw, 1.24rem);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  cursor: pointer;
  padding: 0 22px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-align: center;
}

.primary {
  background: var(--clay);
  color: var(--white);
}

.ghost {
  border-color: rgba(255, 255, 255, .62);
  color: var(--white);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.scroll-cue {
  position: absolute;
  right: clamp(20px, 4vw, 58px);
  bottom: 28px;
  writing-mode: vertical-rl;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.section {
  padding: clamp(74px, 10vw, 132px) clamp(20px, 4vw, 58px);
  overflow: hidden;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 90px);
  align-items: center;
}

.section-copy {
  max-width: 700px;
}

.section-copy p:last-child {
  max-width: 610px;
  margin-top: 24px;
  font-size: 1.05rem;
}

.image-cluster {
  display: grid;
  grid-template-columns: 1.08fr .82fr;
  grid-template-rows: clamp(170px, 18vw, 230px) clamp(220px, 24vw, 330px);
  gap: 14px;
  min-width: 0;
}

.image-cluster img,
.room-card img,
.experience-grid img,
.quote-band img,
.gallery-grid img,
.booking img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-cluster img:first-child {
  grid-row: 1 / 3;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(28px, 5vw, 58px);
}

.text-link {
  border: 0;
  background: transparent;
  color: var(--olive);
  cursor: pointer;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  padding: 0;
  text-transform: uppercase;
}

.room-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 22px;
  align-items: stretch;
}

.room-card {
  display: grid;
  grid-template-rows: auto 1fr;
  background: var(--white);
  box-shadow: 0 16px 42px rgba(37, 35, 30, .08);
  overflow: hidden;
  min-width: 0;
}

.room-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.room-card div {
  display: grid;
  align-content: start;
  padding: 26px;
}

.room-card ul {
  display: grid;
  gap: 9px;
  margin: 18px 0;
  padding: 0;
  color: var(--olive-dark);
  font-size: .9rem;
  font-weight: 700;
  list-style: none;
}

.room-card li::before {
  color: var(--clay);
  content: "+ ";
}

.room-card p {
  margin-bottom: 0;
}

.dark {
  background: var(--olive-dark);
  color: var(--white);
}

.dark p {
  color: rgba(255, 255, 255, .72);
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr));
  gap: 22px;
}

.experience-grid article {
  display: grid;
  gap: 18px;
}

.experience-grid img {
  aspect-ratio: 4 / 3;
}

.experience-grid h3 {
  color: var(--paper);
}

.experience-grid p {
  margin: 0;
}

.quote-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .72fr);
  background: var(--paper-deep);
}

.quote-band > div {
  display: grid;
  align-content: center;
  padding: clamp(46px, 8vw, 110px);
}

blockquote {
  max-width: 780px;
  margin: 0 0 24px;
  font-size: clamp(2rem, 4.6vw, 5rem);
  line-height: .98;
  overflow-wrap: anywhere;
}

.quote-band span {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  border-top: 1px solid rgba(37, 35, 30, .18);
  border-left: 1px solid rgba(37, 35, 30, .18);
}

.service-grid article {
  min-height: 230px;
  padding: 30px;
  border-right: 1px solid rgba(37, 35, 30, .18);
  border-bottom: 1px solid rgba(37, 35, 30, .18);
}

.service-grid span {
  display: block;
  margin-bottom: 44px;
  color: var(--clay);
  font-weight: 800;
}

.gallery {
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: clamp(180px, 22vw, 330px);
  gap: 12px;
  min-width: 0;
}

.gallery-grid img:nth-child(1),
.gallery-grid img:nth-child(6) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-grid img {
  cursor: zoom-in;
}

.gallery-grid img:focus-visible {
  outline: 3px solid var(--clay);
  outline-offset: 3px;
}

.booking {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, .78fr);
  background: var(--olive);
  color: var(--white);
}

.booking > div {
  display: grid;
  align-content: center;
  justify-items: start;
  padding: clamp(42px, 7vw, 90px);
}

.booking p {
  color: rgba(255, 255, 255, .74);
}

.footer {
  display: grid;
  grid-template-columns: 1.25fr .8fr .8fr 1.2fr;
  gap: 32px;
  padding: 54px clamp(20px, 4vw, 58px);
  background: #1e211b;
  color: var(--paper);
}

.footer h2 {
  margin-bottom: 16px;
  font-family: Inter, system-ui, sans-serif;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.footer p,
.footer a {
  display: block;
  color: rgba(251, 247, 239, .72);
}

.footer a + a,
.footer a + .footer-link-button {
  margin-top: 10px;
}

.footer-link-button {
  display: block;
  border: 0;
  background: transparent;
  color: rgba(251, 247, 239, .72);
  cursor: pointer;
  padding: 0;
  text-align: inherit;
}

.footer-brand {
  color: var(--paper);
}

.footer-location iframe {
  width: 100%;
  min-height: 180px;
  margin-top: 16px;
  border: 0;
  filter: saturate(.85);
}

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 20px;
}

.booking-modal[hidden],
.whatsapp-modal[hidden],
.gallery-lightbox[hidden] {
  display: none;
}

.whatsapp-modal,
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 82;
}

.whatsapp-modal {
  display: grid;
  place-items: center;
  padding: 20px;
}

.booking-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(22, 24, 19, .68);
  backdrop-filter: blur(8px);
}

.booking-modal-panel {
  position: relative;
  width: min(680px, 100%);
  max-height: calc(100svh - 40px);
  overflow: auto;
  background: var(--paper);
  box-shadow: var(--shadow);
  padding: clamp(28px, 5vw, 48px);
}

.booking-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(37, 35, 30, .22);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
}

.booking-modal-panel h2 {
  max-width: 420px;
  font-size: clamp(2rem, 5vw, 3.4rem);
}

.booking-modal-panel p:not(.eyebrow) {
  margin: 18px 0 28px;
}

.contact-choice-panel {
  width: min(520px, 100%);
}

.host-options {
  display: grid;
  gap: 14px;
}

.host-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(37, 35, 30, .16);
  background: var(--white);
  color: var(--ink);
  padding: 20px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.host-option:first-child {
  border-color: rgba(37, 35, 30, .12);
  background: #fff9f1;
  box-shadow: 0 12px 34px rgba(181, 110, 75, .12);
}

.host-option:hover {
  box-shadow: 0 16px 42px rgba(37, 35, 30, .12);
  transform: translateY(-2px);
}

.host-option strong {
  font-size: 1.05rem;
}

.host-option span {
  color: var(--muted);
  font-weight: 700;
}

.booking-socials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.social-book {
  position: relative;
  display: grid;
  min-height: 150px;
  place-items: center;
  gap: 12px;
  border: 1px solid rgba(37, 35, 30, .16);
  background: var(--white);
  color: var(--ink);
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease;
}

.preferred-book {
  border-color: rgba(181, 110, 75, .38);
  background: #fff9f1;
  box-shadow: 0 12px 34px rgba(181, 110, 75, .12);
}

.preferred-label {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--clay);
  color: var(--white);
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .08em;
  padding: 6px 8px;
  text-transform: uppercase;
}

.social-book:hover {
  box-shadow: 0 16px 42px rgba(37, 35, 30, .12);
  transform: translateY(-2px);
}

.social-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
}

.facebook-icon {
  border-radius: 50%;
  background: #1877f2;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
}

.whatsapp-icon {
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 800;
}

.email-icon {
  border-radius: 50%;
  background: var(--olive-dark);
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

.airbnb-icon {
  border-radius: 50%;
  background: #ff385c;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 2rem;
  font-weight: 800;
}

.instagram-icon {
  position: relative;
  border: 4px solid #d7358a;
  border-radius: 16px;
}

.instagram-icon::before {
  width: 18px;
  height: 18px;
  border: 4px solid #d7358a;
  border-radius: 50%;
  content: "";
}

.instagram-icon::after {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d7358a;
  content: "";
}

.gallery-lightbox {
  display: grid;
  place-items: center;
  background: rgba(12, 14, 11, .92);
  padding: clamp(14px, 4vw, 42px);
}

.lightbox-figure {
  display: grid;
  gap: 12px;
  width: min(1180px, 100%);
  margin: 0;
  justify-items: center;
}

.lightbox-figure img {
  width: auto;
  max-width: 100%;
  max-height: min(78svh, 820px);
  object-fit: contain;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .35);
}

.lightbox-figure figcaption {
  color: rgba(255, 255, 255, .78);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .34);
  background: rgba(251, 247, 239, .08);
  color: var(--white);
  cursor: pointer;
}

.lightbox-close {
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.8rem;
}

.lightbox-nav {
  top: 50%;
  width: 54px;
  height: 72px;
  transform: translateY(-50%);
  font-size: 3rem;
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.is-rtl {
  direction: rtl;
}

.is-rtl .site-nav,
.is-rtl .hero-actions,
.is-rtl .language-switcher {
  direction: rtl;
}

.is-rtl .hero-content {
  margin-right: clamp(20px, 8vw, 120px);
  margin-left: 0;
}

.is-rtl .scroll-cue {
  right: auto;
  left: clamp(20px, 4vw, 58px);
}

.is-rtl .booking-modal-close {
  right: auto;
  left: 14px;
}

.is-rtl .lightbox-close {
  right: auto;
  left: 20px;
}

.is-rtl .preferred-label {
  right: auto;
  left: 10px;
}

.is-rtl .room-card li::before {
  content: "+ ";
}

@media (max-width: 1180px) {
  .site-header {
    padding-inline: 24px;
  }

  .site-nav {
    gap: 16px;
    font-size: .76rem;
  }

  .nav-book {
    padding-inline: 14px;
  }
}

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

  .site-nav {
    position: fixed;
    top: 78px;
    right: 16px;
    left: 16px;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 16px;
    background: var(--paper);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 15px 6px;
  }

  .language-switcher {
    justify-content: space-between;
    padding: 12px 6px;
  }

  .nav-book {
    margin-top: 8px;
    text-align: center;
  }

  .intro,
  .quote-band,
  .booking,
  .footer {
    grid-template-columns: 1fr;
  }

  .intro {
    align-items: start;
  }

  .quote-band img,
  .booking img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .booking img {
    order: -1;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 16px 18px;
  }

  .brand {
    font-size: 1.7rem;
  }

  .hero {
    min-height: 760px;
    padding: 106px 0 74px;
    align-items: end;
  }

  .hero-content {
    width: calc(100% - 36px);
    margin-left: 18px;
  }

  .is-rtl .hero-content {
    margin-right: 18px;
    margin-left: 0;
  }

  .hero-copy {
    margin: 18px 0 24px;
  }

  .button {
    width: 100%;
  }

  .booking-socials {
    grid-template-columns: 1fr;
  }

  .host-option {
    display: grid;
    justify-items: start;
  }

  .lightbox-nav {
    top: auto;
    bottom: 18px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    transform: none;
    font-size: 2.2rem;
  }

  .lightbox-prev {
    left: calc(50% - 58px);
  }

  .lightbox-next {
    right: calc(50% - 58px);
  }

  .lightbox-figure img {
    max-height: 70svh;
  }

  .scroll-cue {
    display: none;
  }

  .section {
    padding: 64px 18px;
  }

  .section-heading {
    display: block;
  }

  .text-link {
    display: inline-block;
    margin-top: 18px;
  }

  .image-cluster,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .image-cluster {
    grid-template-rows: repeat(3, 240px);
  }

  .image-cluster img:first-child,
  .gallery-grid img:nth-child(1),
  .gallery-grid img:nth-child(6) {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-grid {
    grid-auto-rows: 260px;
  }

  .service-grid article {
    min-height: 180px;
  }

  .quote-band > div,
  .booking > div {
    padding: 58px 18px;
  }

  .footer {
    padding: 44px 18px;
  }

  .footer-location iframe {
    min-height: 220px;
  }
}

@media (max-width: 420px) {
  .hero {
    min-height: 690px;
  }

  h1 {
    font-size: clamp(3rem, 18vw, 4.8rem);
  }

  h2 {
    font-size: clamp(1.9rem, 12vw, 2.8rem);
  }

  h3 {
    font-size: 1.5rem;
  }

  .room-card div,
  .service-grid article {
    padding: 22px;
  }

  .gallery-grid {
    grid-auto-rows: 220px;
  }
}

@media (min-width: 1500px) {
  .section,
  .site-header,
  .footer {
    padding-inline: max(58px, calc((100vw - 1440px) / 2));
  }

  .hero-content {
    margin-left: max(120px, calc((100vw - 1440px) / 2));
  }

  .is-rtl .hero-content {
    margin-right: max(120px, calc((100vw - 1440px) / 2));
    margin-left: 0;
  }
}
