:root {
  --ink: #243029;
  --muted: #68736a;
  --paper: #fbf7ef;
  --shell: #f1e7d8;
  --sage: #9cae9d;
  --clay: #c98262;
  --ocean: #6f9ead;
  --deep: #173b42;
  --white: #fffdf8;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a { color: inherit; }
img { max-width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(251, 247, 239, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(36, 48, 41, 0.09);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 6px 18px rgba(23, 59, 66, 0.16);
}

nav { display: flex; gap: 20px; font-size: 14px; color: var(--muted); }
nav a { text-decoration: none; }
nav a:hover { color: var(--ink); }

main { overflow: hidden; }
.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(320px, 0.86fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
  min-height: 82vh;
  padding: clamp(56px, 9vw, 112px) clamp(20px, 5vw, 72px);
}

.eyebrow, .section-kicker {
  margin: 0 0 12px;
  color: var(--clay);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 800;
}

h1, h2, h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 0.98;
  margin: 0;
  color: var(--deep);
}
h1 { font-size: clamp(48px, 7vw, 96px); max-width: 980px; }
h2 { font-size: clamp(36px, 5vw, 66px); }
h3 { font-size: 28px; }

.lede {
  max-width: 700px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  margin: 28px 0;
}

.actions { display: flex; gap: 12px; flex-wrap: wrap; }
.centered { justify-content: center; }
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.trust-row span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(23, 59, 66, 0.08);
  color: var(--deep);
  font-size: 13px;
  font-weight: 800;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
}
.primary { background: var(--deep); color: var(--white); }
.secondary { border: 1px solid rgba(36, 48, 41, 0.18); color: var(--deep); background: rgba(255,255,255,.42); }

.hero-collage {
  position: relative;
  min-height: clamp(430px, 54vw, 660px);
}
.hero-photo {
  position: absolute;
  display: block;
  width: 64%;
  height: 62%;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: 0 30px 80px rgba(23, 59, 66, 0.22);
  background: var(--shell);
}
.hero-photo.main {
  left: 4%;
  top: 10%;
  width: 72%;
  height: 74%;
  z-index: 2;
}
.hero-photo.top {
  right: 0;
  top: 0;
  width: 43%;
  height: 36%;
  z-index: 3;
  transform: rotate(4deg);
}
.hero-photo.bottom {
  right: 6%;
  bottom: 0;
  width: 50%;
  height: 38%;
  z-index: 1;
  transform: rotate(-3deg);
}

.intro, .experience, .photo-section, .split, .booking {
  padding: clamp(56px, 8vw, 108px) clamp(20px, 5vw, 72px);
}
.intro { background: var(--white); }
.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: 36px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 18px;
}
.feature-list {
  margin: 0;
  padding: 24px 28px;
  list-style: none;
  border-radius: 26px;
  background: var(--shell);
  color: var(--ink);
  font-weight: 700;
}
.feature-list li + li { margin-top: 14px; }
.feature-list li::before { content: "•"; color: var(--clay); margin-right: 10px; }





.testimonials {
  padding: 24px clamp(20px, 5vw, 72px);
  background: var(--white);
  overflow: hidden;
}
.testimonial-label {
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--deep);
  font-weight: 900;
  letter-spacing: .04em;
  text-align: center;
}
.testimonial-label span {
  border-radius: 999px;
  background: var(--shell);
  padding: 10px 16px;
}
.testimonial-carousel {
  display: grid;
  grid-template-columns: 44px minmax(0, 680px) 44px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 auto;
}
.testimonial-window {
  overflow: hidden;
  border-radius: 24px;
  touch-action: pan-y;
}
.review-track {
  display: flex;
  transition: transform .55s ease;
  will-change: transform;
}
.review-track article {
  flex: 0 0 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 154px;
  padding: 22px;
  border-radius: 24px;
  background: var(--shell);
  box-shadow: 0 14px 38px rgba(23, 59, 66, 0.1);
}
.review-track p {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.48;
}
.review-track footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 0;
  color: var(--muted);
  font-size: 13px;
}
.review-track footer strong { color: var(--deep); }
.testimonial-arrow {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: var(--shell);
  color: var(--deep);
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
  box-shadow: 0 10px 28px rgba(23, 59, 66, 0.1);
}
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 14px;
}
.testimonial-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(23, 59, 66, .22);
  cursor: pointer;
}
.testimonial-dots button.active {
  width: 24px;
  border-radius: 999px;
  background: var(--clay);
}
@media (max-width: 680px) {
  .testimonials { padding-inline: 12px; }
  .testimonial-carousel { grid-template-columns: 36px minmax(0, 1fr) 36px; gap: 8px; }
  .testimonial-arrow { width: 36px; height: 36px; font-size: 25px; }
  .review-track article { min-height: 190px; padding: 18px; }
  .review-track p { font-size: 15px; }
}

.photo-section { background: linear-gradient(180deg, #f7efe3, var(--paper)); }
.section-heading { max-width: 820px; margin-bottom: 30px; }
.section-heading p:last-child { color: var(--muted); font-size: 17px; }
.photo-mosaic {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: clamp(180px, 22vw, 310px);
  gap: 14px;
}
.photo-card {
  margin: 0;
  min-height: 0;
  border-radius: 26px;
  overflow: hidden;
  background: var(--shell);
  box-shadow: 0 18px 55px rgba(23, 59, 66, 0.12);
}
.photo-card a, .photo-card img {
  display: block;
  width: 100%;
  height: 100%;
}
.photo-card img { object-fit: cover; transition: transform .45s ease; }
.photo-card:hover img { transform: scale(1.035); }
.photo-card.wide { grid-column: span 2; }
.photo-card.tall { grid-row: span 2; }

.experience { background: var(--white); }
.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.experience-grid article {
  padding: 28px;
  border-radius: 28px;
  background: var(--paper);
  box-shadow: 0 18px 55px rgba(23, 59, 66, 0.09);
}
.number {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--clay);
  font-weight: 900;
  letter-spacing: 0.16em;
}
.experience-grid h3 { margin-bottom: 10px; }
.experience-grid p { color: var(--muted); margin-bottom: 0; }

.split {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 32px;
  background: var(--deep);
  color: var(--white);
}
.split h2 { color: var(--white); }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.cards article {
  padding: 24px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 24px;
  background: rgba(255,255,255,.07);
}
.cards h3 { color: var(--white); font-size: 28px; }
.cards p { color: rgba(255,255,255,.72); }

.booking {
  text-align: center;
  background: var(--shell);
}
.booking p { max-width: 680px; margin: 18px auto 26px; color: var(--muted); }

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 30px clamp(20px, 5vw, 72px);
  color: var(--muted);
  font-size: 14px;
}
footer a { font-weight: 800; text-decoration: none; color: var(--deep); }

@media (max-width: 980px) {
  .hero, .intro-grid, .split { grid-template-columns: 1fr; }
  .hero-collage { min-height: 520px; }
  .photo-mosaic { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 230px; }
  .experience-grid, .cards { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .site-header { align-items: flex-start; }
  nav { display: none; }
  .hero-collage { min-height: 420px; }
  .hero-photo.main { width: 82%; height: 72%; }
  .hero-photo.top { width: 48%; }
  .hero-photo.bottom { width: 56%; }
  .photo-mosaic { display: block; }
  .photo-card { height: 280px; margin-bottom: 14px; }
  footer { flex-direction: column; }
}

.booking-shell {
  display: grid;
  grid-template-columns: minmax(280px, 430px) 1fr;
  gap: 22px;
  align-items: start;
  max-width: 1120px;
  margin: 34px auto 0;
  text-align: left;
}
.booking-card, .booking-details > * {
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 20px 70px rgba(23, 59, 66, 0.13);
}
.booking-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 22px;
}
.booking-card label {
  display: grid;
  gap: 7px;
  color: var(--deep);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.booking-card input, .booking-card select, .booking-card textarea {
  width: 100%;
  border: 1px solid rgba(36, 48, 41, 0.16);
  border-radius: 16px;
  background: #fffaf2;
  color: var(--ink);
  font: inherit;
  padding: 13px 14px;
  text-transform: none;
  letter-spacing: 0;
}
.booking-card textarea { resize: vertical; }
.booking-card .full { grid-column: 1 / -1; }
.booking-card button { border: 0; cursor: pointer; font-size: 16px; }
.fine-print {
  grid-column: 1 / -1;
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 12px;
}
.booking-details {
  display: grid;
  gap: 16px;
}
.property-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 16px;
}
.property-facts span {
  display: grid;
  place-items: center;
  min-height: 72px;
  border-radius: 20px;
  background: var(--paper);
  color: var(--deep);
  font-weight: 900;
}
.mini-calendar { padding: 22px; }
.calendar-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
  color: var(--deep);
}
.calendar-head span { color: var(--muted); font-size: 14px; }
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}
.weekdays { color: var(--muted); font-size: 12px; font-weight: 900; text-align: center; margin-bottom: 8px; }
.dates span {
  display: grid;
  place-items: center;
  min-height: 46px;
  border-radius: 14px;
  background: #eef4ef;
  color: var(--deep);
  font-weight: 800;
}
.dates .muted-day { opacity: .35; }
.dates .blocked { background: #ead8d1; color: #92513f; }
.dates .featured { background: var(--deep); color: var(--white); }
.calendar-key { display: flex; gap: 18px; margin-top: 14px; color: var(--muted); font-size: 13px; }
.calendar-key i {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #eef4ef;
  margin-right: 6px;
  border: 1px solid rgba(23, 59, 66, .18);
}
.calendar-key .blocked-key { background: #ead8d1; }
.sleeping-card { padding: 22px; }
.sleeping-card h3 { margin-bottom: 16px; }
.sleeping-card div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid rgba(36, 48, 41, .1);
}
.sleeping-card span { color: var(--muted); }

@media (max-width: 980px) {
  .booking-shell { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .booking-card, .property-facts { grid-template-columns: 1fr; }
  .dates span { min-height: 38px; font-size: 13px; }
}
