
:root {
  --paper: #f3f0e8;
  --paper-light: #faf8f3;
  --ink: #20231f;
  --muted: #666b64;
  --line: rgba(32, 35, 31, 0.16);
  --green: #304638;
  --green-dark: #213229;
  --white: #fff;
  --radius: 22px;
  --max: 1460px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

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

.site-header {
  position: relative;
  z-index: 10;
  width: min(calc(100% - 56px), var(--max));
  margin: 0 auto;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.brand img {
  width: 270px;
  height: auto;
}

.site-header nav {
  display: flex;
  gap: 34px;
  align-items: center;
}

.site-header nav a {
  text-decoration: none;
  color: #474b46;
  font-size: 14px;
  letter-spacing: .04em;
}

.site-header nav a:hover { color: var(--green); }

.intro {
  width: min(calc(100% - 56px), 980px);
  margin: 0 auto;
  padding: 112px 0 126px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .28em;
}

.intro h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(64px, 9vw, 128px);
  line-height: .93;
  font-weight: 400;
  letter-spacing: -.045em;
}

.lead {
  max-width: 720px;
  margin: 42px auto 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.75;
}

.scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 38px;
  color: var(--green);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .06em;
}

.scroll-cue span {
  font-size: 20px;
  transition: transform .2s ease;
}

.scroll-cue:hover span { transform: translateY(4px); }

.stays {
  padding: 92px 28px 110px;
  background: var(--paper-light);
}

.section-heading {
  width: min(100%, var(--max));
  margin: 0 auto 46px;
}

.section-heading h2,
.shared h2,
.contact h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5vw, 76px);
  line-height: 1.02;
  font-weight: 400;
  letter-spacing: -.035em;
}

.stay-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.stay-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform .22s ease, box-shadow .22s ease;
}

.stay-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 60px rgba(34, 42, 36, .13);
}

.stay-image {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.stay-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}

.stay-card:hover .stay-image img { transform: scale(1.035); }

.stay-content { padding: 28px 30px 32px; }

.stay-type {
  margin: 0 0 9px;
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .24em;
}

.stay-content h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1.1;
  font-weight: 400;
}

.stay-content > p:not(.stay-type) {
  min-height: 82px;
  margin: 20px 0 24px;
  color: var(--muted);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.card-link span {
  font-size: 20px;
  transition: transform .2s ease;
}

.card-link:hover span { transform: translateX(5px); }

.shared {
  width: min(calc(100% - 56px), var(--max));
  margin: 0 auto;
  padding: 126px 0 132px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 92px;
  align-items: start;
}

.shared-text {
  padding-top: 35px;
  color: var(--muted);
  font-size: 19px;
}

.shared-text p { margin: 0 0 24px; }

.contact {
  padding: 110px 28px 118px;
  text-align: center;
  color: var(--white);
  background: var(--green-dark);
}

.contact .eyebrow { color: #c8d4ca; }

.contact h2 { color: var(--white); }

.contact-links,
.social-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px 42px;
}

.contact-links {
  margin-top: 42px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
}

.contact-links a,
.social-links a { text-decoration: none; }

.social-links {
  margin-top: 34px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact a:hover { text-decoration: underline; }

footer {
  padding: 28px;
  color: #666b64;
  background: var(--paper-light);
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.footer-main,
.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a { text-decoration: none; }

.footer-links a:hover { text-decoration: underline; }

@media (max-width: 1040px) {
  .site-header {
    width: min(calc(100% - 36px), var(--max));
  }

  .brand img { width: 230px; }

  .site-header nav { gap: 20px; }

  .stay-grid {
    grid-template-columns: 1fr;
    max-width: 760px;
  }

  .stay-card {
    display: grid;
    grid-template-columns: 48% 52%;
  }

  .stay-image { aspect-ratio: auto; min-height: 330px; }

  .stay-content > p:not(.stay-type) { min-height: 0; }

  .shared { gap: 52px; }
}

@media (max-width: 720px) {
  .site-header {
    width: calc(100% - 30px);
    padding: 15px 0;
    justify-content: center;
  }

  .brand img { width: 215px; }

  .site-header nav { display: none; }

  .intro {
    width: calc(100% - 34px);
    padding: 80px 0 86px;
  }

  .intro h1 { font-size: clamp(56px, 18vw, 88px); }

  .lead {
    margin-top: 30px;
    font-size: 17px;
  }

  .stays { padding: 68px 16px 78px; }

  .section-heading { margin-bottom: 30px; }

  .stay-card { display: block; }

  .stay-image {
    aspect-ratio: 4 / 3;
    min-height: 0;
  }

  .stay-content { padding: 25px 24px 28px; }

  .stay-content h3 { font-size: 30px; }

  .shared {
    width: calc(100% - 34px);
    padding: 84px 0 92px;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .shared-text {
    padding-top: 0;
    font-size: 17px;
  }

  .contact { padding: 82px 18px 88px; }

  .contact-links {
    flex-direction: column;
    gap: 12px;
    font-size: 21px;
  }

  footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-main,
  .footer-links {
    justify-content: center;
  }
}


.legal-page {
  background: var(--paper-light);
}

.legal-page .legal-header,
.legal-page header {
  position: static;
}

.legal-page main,
.legal-page .legal-main {
  width: min(calc(100% - 40px), 920px);
  margin: 0 auto;
  padding: 68px 0 100px;
}

.legal-page h1,
.legal-page h2,
.legal-page h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.legal-page h1 { font-size: clamp(42px, 6vw, 68px); line-height: 1.05; }
.legal-page h2 { margin-top: 44px; font-size: 30px; }
.legal-page p,
.legal-page li { color: #4f554f; }


/* v0.4 — compact desktop introduction, accommodation cards higher on screen */
@media (min-width: 1041px) {
  .intro {
    padding: 58px 0 66px;
  }

  .intro h1 {
    font-size: clamp(54px, 5.8vw, 88px);
    line-height: 0.96;
  }

  .lead {
    max-width: 760px;
    margin-top: 26px;
    font-size: 18px;
    line-height: 1.65;
  }

  .scroll-cue {
    margin-top: 22px;
  }

  .stays {
    padding-top: 62px;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2 {
    font-size: clamp(40px, 4.2vw, 64px);
  }
}


/* v0.5 — slightly smaller desktop intro */
@media (min-width: 1041px) {
  .intro {
    padding: 46px 0 54px;
  }

  .intro h1 {
    font-size: clamp(50px, 5.2vw, 78px);
  }

  .lead {
    margin-top: 22px;
    font-size: 17px;
  }

  .scroll-cue {
    margin-top: 18px;
  }

  .stays {
    padding-top: 52px;
  }
}
