@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500;1,600&family=Outfit:wght@300;400;500;600&display=swap");

:root {
  --pine: #13241c;
  --pine-deep: #0c1813;
  --moss: #3d5a45;
  --sage: #9aab8c;
  --cream: #f3ece1;
  --paper: #faf6ef;
  --ink: #1b1612;
  --copper: #c4a06a;
  --ember: #9c4630;
  --stone: #6f6860;
  --line: rgba(27, 22, 18, 0.12);
  --shadow: 0 24px 60px rgba(12, 24, 19, 0.18);
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Outfit", "Segoe UI", sans-serif;
  --max: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0.01em;
}

::selection {
  background: var(--copper);
  color: var(--pine-deep);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

h1,
h2,
h3,
.display {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0;
}

.wrap {
  width: min(var(--max), calc(100% - 2.5rem));
  margin-inline: auto;
}

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ember);
  font-weight: 500;
  margin-bottom: 0.7rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  color: var(--cream);
  background: linear-gradient(to bottom, rgba(12, 24, 19, 0.72), transparent);
  transition: background 0.25s ease, color 0.25s ease;
}

.site-header.is-scrolled,
.site-header.is-open,
body.is-inner .site-header {
  background: rgba(12, 24, 19, 0.94);
  backdrop-filter: blur(12px);
}

.nav-inner {
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.4rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--cream);
}

.brand-mark {
  width: 2.4rem;
  color: var(--copper);
}

.brand-type {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-family: var(--serif);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
}

.brand-sub {
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--sage);
  margin-top: 0.18rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  font-size: 0.92rem;
}

.site-nav a[aria-current="page"] {
  color: var(--copper);
}

.nav-cta {
  background: var(--copper);
  color: var(--pine-deep) !important;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--copper);
  color: var(--cream);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  color: var(--cream);
  isolation: isolate;
  margin-top: -4.4rem;
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.05);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 24, 19, 0.25) 0%, rgba(12, 24, 19, 0.12) 35%, rgba(12, 24, 19, 0.78) 100%),
    radial-gradient(80% 50% at 80% 20%, rgba(156, 70, 48, 0.18), transparent);
}

.hero-copy {
  width: min(var(--max), calc(100% - 2.5rem));
  margin: 0 auto 4.5rem;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 6.4rem);
  max-width: 14ch;
  font-style: italic;
  font-weight: 500;
}

.hero p.lede {
  max-width: 38rem;
  font-size: 1.08rem;
  color: rgba(243, 236, 225, 0.86);
  margin: 1.1rem 0 1.6rem;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.8rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.btn-gold {
  background: var(--copper);
  color: var(--pine-deep);
}

.btn-ghost {
  border-color: rgba(243, 236, 225, 0.45);
  color: var(--cream);
  background: transparent;
}

.btn-ink {
  background: var(--pine);
  color: var(--cream);
}

.btn-line {
  border-color: var(--pine);
  background: transparent;
}

.btn:disabled {
  opacity: 0.55;
  cursor: wait;
}

/* Home intro */
.intro-band {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  padding: 5.5rem 0 3rem;
  align-items: end;
}

.intro-band h2 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-style: italic;
}

.rule {
  height: 1px;
  background: linear-gradient(90deg, var(--copper), transparent);
  border: 0;
  margin: 1.2rem 0;
}

.stat-row {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.stat-row b {
  display: block;
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 600;
}

.stat-row span {
  color: var(--stone);
  font-size: 0.85rem;
}

/* Property cards */
.homes {
  padding: 1rem 0 5rem;
  display: grid;
  gap: 4rem;
}

.home-card {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 34rem;
  background: #fff;
  box-shadow: var(--shadow);
}

.home-card.reverse {
  grid-template-columns: 0.85fr 1.15fr;
}

.home-card.reverse .home-photo {
  order: 2;
}

.home-photo {
  position: relative;
  min-height: 22rem;
}

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

.home-body {
  padding: 2.4rem 2.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(180deg, rgba(154, 171, 140, 0.08), transparent 40%),
    #fffdf8;
}

.home-body h3 {
  font-size: 2.5rem;
  font-style: italic;
  margin-bottom: 0.8rem;
}

.meta-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 1rem 0 1.3rem;
}

.pill {
  border: 1px solid var(--line);
  padding: 0.22rem 0.6rem;
  border-radius: 999px;
  font-size: 0.78rem;
  color: var(--stone);
}

.home-body p {
  color: #3f3a34;
  margin: 0 0 1.4rem;
}

/* Experiences */
.experiences {
  background: var(--pine);
  color: var(--cream);
  padding: 5rem 0;
}

.experiences h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-style: italic;
  margin-bottom: 2rem;
}

.exp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.exp-card {
  border-top: 1px solid rgba(196, 160, 106, 0.45);
  padding-top: 1rem;
}

.exp-card h3 {
  font-size: 1.45rem;
  margin-bottom: 0.5rem;
}

.exp-card p {
  color: rgba(243, 236, 225, 0.75);
  font-size: 0.95rem;
  font-weight: 300;
}

/* Hosts teaser */
.hosts-band {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 2.5rem;
  padding: 5rem 0;
  align-items: center;
}

.hosts-band img {
  width: 100%;
  height: 28rem;
  object-fit: cover;
  filter: saturate(0.9);
}

.hosts-band h2 {
  font-size: 3rem;
  font-style: italic;
}

/* Property page */
.prop-hero {
  position: relative;
  min-height: 72vh;
  margin-top: -4.4rem;
  display: grid;
  align-items: end;
  color: var(--cream);
}

.prop-hero img.cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.prop-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(12, 24, 19, 0.2), rgba(12, 24, 19, 0.78));
}

.prop-hero .wrap {
  padding-bottom: 3rem;
}

.prop-hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  font-style: italic;
}

.facts {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  background: var(--pine-deep);
  color: var(--cream);
}

.facts div {
  padding: 1.1rem 1rem;
  border-right: 1px solid rgba(243, 236, 225, 0.08);
  text-align: center;
}

.facts b {
  display: block;
  font-family: var(--serif);
  font-size: 1.45rem;
}

.facts span {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
}

.layout-split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  padding: 4rem 0;
  align-items: start;
}

.story p {
  font-size: 1.05rem;
  color: #3a352f;
  margin: 0 0 1rem;
}

.amenity-list,
.nearby-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.amenity-list li,
.nearby-list li {
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.amenity-list li::before {
  content: "▴";
  color: var(--copper);
  margin-right: 0.55rem;
}

.book-panel {
  position: sticky;
  top: 5.2rem;
  background: #fff;
  padding: 1.4rem;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--copper);
}

.book-panel h2 {
  font-size: 1.8rem;
  font-style: italic;
  margin-bottom: 0.4rem;
}

.gallery {
  padding-bottom: 3rem;
}

.gallery-stage {
  width: 100%;
  height: min(68vh, 640px);
  object-fit: cover;
  cursor: zoom-in;
  background: #ddd;
}

.thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 0.4rem;
  margin-top: 0.4rem;
}

.thumbs button {
  padding: 0;
  border: 2px solid transparent;
  background: none;
  cursor: pointer;
}

.thumbs button.is-active,
.thumbs button:hover {
  border-color: var(--copper);
}

.thumbs img {
  width: 100%;
  height: 78px;
  object-fit: cover;
}

.sleeps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 0 0 4rem;
}

.sleep-card img {
  height: 160px;
  width: 100%;
  object-fit: cover;
}

.sleep-card h3 {
  font-size: 1.25rem;
  margin: 0.6rem 0 0.2rem;
}

.sleep-card p {
  margin: 0;
  color: var(--stone);
  font-size: 0.9rem;
}

/* Calendar */
.cal {
  user-select: none;
}

.cal-home {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ember);
  margin: 0 0 0.55rem;
}

.cal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.6rem;
}

.cal-title {
  font-size: 1.35rem;
}

.cal-nav {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
}

.cal-dow,
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.2rem;
  text-align: center;
}

.cal-dow {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 0.3rem;
}

.cal-day {
  aspect-ratio: 1;
  border: 0;
  background: var(--cream);
  cursor: pointer;
  border-radius: 4px;
  font-size: 0.85rem;
}

.cal-day:hover:not(:disabled) {
  background: var(--sage);
  color: var(--pine-deep);
}

.cal-day.is-busy,
.cal-day.is-past {
  background: #ece7df;
  color: #b0aaa2;
  text-decoration: line-through;
  cursor: not-allowed;
}

.cal-day.is-in {
  background: rgba(196, 160, 106, 0.35);
}

.cal-day.is-start,
.cal-day.is-end {
  background: var(--pine);
  color: var(--cream);
}

.cal-legend {
  display: flex;
  gap: 1rem;
  font-size: 0.78rem;
  color: var(--stone);
  margin-top: 0.7rem;
}

.swatch {
  display: inline-block;
  width: 0.7rem;
  height: 0.7rem;
  margin-right: 0.3rem;
  vertical-align: -1px;
  border-radius: 2px;
}

.swatch-open { background: var(--cream); border: 1px solid var(--line); }
.swatch-busy { background: #d8d2c8; }
.swatch-pick { background: var(--pine); }

.cal-status {
  min-height: 2.4em;
  font-size: 0.9rem;
  color: var(--moss);
  margin: 0.6rem 0 0;
}

/* Forms */
.form-grid {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.form-grid label {
  display: grid;
  gap: 0.28rem;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--stone);
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 0.65rem 0.7rem;
  border-radius: 4px;
  text-transform: none;
  letter-spacing: 0;
  font-size: 1rem;
  color: var(--ink);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.form-note {
  font-size: 0.92rem;
  margin: 0.6rem 0 0;
  min-height: 1.3em;
}

.form-note.is-err { color: var(--ember); }
.form-note.is-ok { color: var(--moss); }

.page-hero {
  background: var(--pine);
  color: var(--cream);
  padding: 7rem 0 3rem;
  margin-top: -4.4rem;
}

.page-hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  font-style: italic;
}

.book-page,
.about-page {
  padding: 3rem 0 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.about-page img.portrait {
  width: 100%;
  height: 28rem;
  object-fit: cover;
}

/* Footer */
.site-footer {
  background: var(--pine-deep);
  color: var(--cream);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  width: min(var(--max), calc(100% - 2.5rem));
  margin: 0 auto 2rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
}

.footer-brand {
  font-family: var(--serif);
  font-size: 1.6rem;
  margin: 0 0 0.4rem;
}

.footer-lede,
.footer-copy {
  color: rgba(243, 236, 225, 0.65);
  font-weight: 300;
}

.footer-label {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--copper);
}

.footer-grid a {
  display: block;
  margin: 0.3rem 0;
  color: rgba(243, 236, 225, 0.85);
}

.footer-copy {
  width: min(var(--max), calc(100% - 2.5rem));
  margin: 0 auto;
  font-size: 0.82rem;
  border-top: 1px solid rgba(243, 236, 225, 0.1);
  padding-top: 1rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(12, 24, 19, 0.92);
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 2rem;
  cursor: zoom-out;
}

.lightbox img {
  max-width: min(1100px, 100%);
  max-height: 90vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--copper);
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  cursor: pointer;
}

.airbnb-link {
  font-size: 0.85rem;
  color: var(--stone);
  display: inline-block;
  margin-top: 0.6rem;
}

.airbnb-link:hover {
  color: var(--ember);
}

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .site-nav {
    display: none;
    position: absolute;
    top: 4.4rem;
    left: 0;
    right: 0;
    background: var(--pine-deep);
    flex-direction: column;
    padding: 1rem 1.4rem 1.4rem;
    align-items: flex-start;
  }
  .site-header.is-open .site-nav { display: flex; }
  .intro-band,
  .home-card,
  .home-card.reverse,
  .hosts-band,
  .layout-split,
  .book-page,
  .about-page,
  .footer-grid,
  .exp-grid,
  .sleeps,
  .facts {
    grid-template-columns: 1fr;
  }
  .home-card.reverse .home-photo { order: 0; }
  .book-panel { position: static; }
  .facts { grid-template-columns: repeat(3, 1fr); }
  .hero { min-height: 86vh; }
}
