:root {
  --ink: #1f211d;
  --muted: #62665d;
  --line: #dcdbd1;
  --paper: #fbfaf5;
  --snow: #edf3f4;
  --white: #ffffff;
  --sage: #718167;
  --sage-dark: #3c4a36;
  --clay: #bd765d;
  --night: #182018;
  --shadow: 0 24px 70px rgba(31, 33, 29, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(251, 250, 245, 0.94);
  border-bottom: 1px solid rgba(220, 219, 209, 0.88);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  font-weight: 850;
}

.site-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
  color: var(--muted);
  font-size: 0.94rem;
}

.site-nav a:hover {
  color: var(--sage-dark);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 6px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: calc(100vh - 72px);
  overflow: hidden;
  isolation: isolate;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(16, 20, 18, 0.74) 0%, rgba(16, 20, 18, 0.42) 50%, rgba(16, 20, 18, 0.1) 100%),
    linear-gradient(0deg, rgba(16, 20, 18, 0.65) 0%, rgba(16, 20, 18, 0.06) 55%);
}

.hero img {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-content {
  width: min(900px, calc(100% - 36px));
  margin: 0 0 clamp(42px, 9vh, 88px) clamp(18px, 7vw, 86px);
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow,
.winter-section .eyebrow,
.contact .eyebrow {
  color: #f3c0a8;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
}

h1 {
  max-width: 880px;
  font-size: clamp(3rem, 8vw, 7rem);
}

h2 {
  max-width: 820px;
  font-size: clamp(2rem, 4.5vw, 4.15rem);
}

h3 {
  font-size: 1.22rem;
}

.hero-content p:not(.eyebrow) {
  max-width: 720px;
  margin: 18px 0 0;
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 900px;
  margin-top: 22px;
}

.hero-contact span {
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 750;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 850;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: var(--sage-dark);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.12);
}

.section {
  padding: clamp(72px, 10vw, 132px) clamp(18px, 5vw, 72px);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.section-heading > p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: clamp(34px, 7vw, 86px);
  align-items: start;
  background: var(--paper);
}

.intro-copy p {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.intro-panel {
  padding: clamp(24px, 4vw, 36px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 26px;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 12px;
  height: 2px;
  content: "";
  background: var(--clay);
}

.living {
  background: var(--snow);
}

.living-grid,
.room-grid,
.info-grid {
  display: grid;
  gap: 18px;
}

.living-grid {
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
}

.living-grid.kitchen-layout {
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  align-items: stretch;
}

.living-grid article,
.room-grid article,
.info-grid article {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.living-grid img {
  height: 330px;
}

.kitchen-card {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  padding: 8px;
}

.kitchen-card img {
  height: 360px;
  border-radius: 5px;
}

.living-grid.kitchen-layout article:not(.kitchen-card) {
  display: grid;
  grid-template-rows: auto 1fr;
  padding: 8px;
}

.living-grid.kitchen-layout article:not(.kitchen-card) img {
  height: 360px;
  border-radius: 5px;
}

.kitchen-card div {
  grid-column: 1 / -1;
}

.living-grid div,
.room-grid div,
.info-grid article {
  padding: 22px;
}

.living-grid p,
.room-grid p,
.info-grid p,
.contact-copy p,
.legal-grid p,
.form-note {
  color: var(--muted);
}

.rooms {
  background: var(--paper);
}

.room-grid {
  grid-template-columns: repeat(4, 1fr);
}

.room-grid img {
  height: 260px;
}

.winter-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  min-height: 760px;
  color: var(--white);
  background: var(--night);
}

.winter-media {
  min-height: 620px;
}

.winter-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  padding: clamp(42px, 7vw, 86px);
}

.winter-content > p:not(.eyebrow) {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.06rem;
}

.winter-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  position: relative;
}

.winter-grid article {
  position: relative;
  min-height: 154px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.winter-grid article::after {
  content: "";
  position: absolute;
  inset: auto 20px 18px auto;
  width: 32px;
  height: 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0 0 8px 0;
}

.winter-hub {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  justify-self: center;
  width: min(100%, 380px);
  min-height: 190px;
  grid-column: 1 / -1;
  grid-row: 1;
  text-align: center;
  color: var(--night);
  background: linear-gradient(135deg, #ffffff, #f8dbc8) !important;
  border-color: rgba(255, 255, 255, 0.55) !important;
}

.winter-hub strong {
  color: var(--night) !important;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.6rem) !important;
  line-height: 0.95;
}

.winter-hub span,
.winter-hub small {
  color: var(--clay);
  font-weight: 850;
}

.winter-grid strong {
  display: block;
  margin-bottom: 12px;
  color: #f3c0a8;
  font-size: 1.35rem;
}

.winter-grid span {
  color: rgba(255, 255, 255, 0.82);
}

.info-section,
.price-section {
  background: var(--snow);
}

.info-grid {
  grid-template-columns: repeat(3, 1fr);
}

.info-grid article {
  min-height: 190px;
}

.info-card {
  position: relative;
}

.info-card::before {
  content: "";
  display: block;
  width: 42px;
  height: 3px;
  margin-bottom: 18px;
  background: var(--sage);
  border-radius: 999px;
}

.info-card:nth-child(2n)::before {
  background: var(--clay);
}

.info-card:nth-child(3n)::before {
  background: var(--ember);
}

.info-card.highlight {
  background: var(--night);
  color: var(--white);
}

.info-card.highlight p {
  color: rgba(255, 255, 255, 0.78);
}

.info-card.highlight::before {
  background: #f3c0a8;
}

.info-card.soft {
  background: #f3eadf;
  border-color: #dbc8b6;
}

.info-card.soft::before {
  background: var(--clay);
}

.info-card.wide {
  grid-column: span 2;
}

.info-card.wide .terms-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 22px;
}

.price-layout {
  display: grid;
  gap: 20px;
}

.season-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.season-card {
  position: relative;
  overflow: hidden;
  min-height: 270px;
  padding: clamp(24px, 4vw, 38px);
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff, #fbf7f1);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.season-card::before {
  content: none;
}

.season-card.featured {
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff, #f8f1e7);
  border-color: #dbc8b6;
}

.season-card.top {
  background: linear-gradient(180deg, #ffffff, #f5ebe0);
  border-color: #d8bda7;
}

.season-card.featured p,
.season-card.featured span {
  color: var(--ink);
}

.season-card.featured::before {
  content: none;
}

.season-card.top::before {
  content: none;
}

.season-card span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  padding: 9px 12px;
  color: var(--sage-dark);
  background: #edf1e8;
  border: 1px solid rgba(116, 125, 104, 0.22);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.season-card.featured span {
  color: #7a432d;
  background: #f5e8dc;
  border-color: #dbc8b6;
}

.season-card.top span {
  color: #8a351e;
  background: #f7e1d6;
  border-color: #d8bda7;
}

.season-card strong {
  display: block;
  margin: 24px 0 18px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.45rem, 4.8vw, 4.05rem);
  line-height: 0.9;
}

.season-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.price-notes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.price-notes article {
  min-height: 170px;
  padding: clamp(22px, 3vw, 30px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.price-notes h3 {
  margin-bottom: 12px;
}

.price-notes p {
  margin: 0;
  color: var(--muted);
}

.price-notes a {
  color: var(--clay);
  font-weight: 800;
}

.compact-list {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.location {
  background: var(--paper);
  padding-bottom: clamp(84px, 12vw, 150px);
}

.location-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 18px;
}

.map-card {
  overflow: hidden;
  min-height: 520px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
}

.single-map,
.single-map iframe {
  min-height: clamp(560px, 82vh, 820px);
}

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

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 12px;
}

.photo-grid img {
  min-height: 0;
  border-radius: 8px;
}

.photo-grid .wide {
  grid-column: span 2;
}

.upgraded-gallery {
  grid-template-columns: 1.35fr 0.9fr 0.9fr;
  grid-auto-rows: 260px;
}

.upgraded-gallery img {
  box-shadow: var(--shadow);
}

.upgraded-gallery .gallery-hero {
  grid-row: span 2;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(30px, 7vw, 82px);
  color: var(--white);
  background: var(--sage-dark);
}

.contact-copy p {
  max-width: 650px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.76);
}

.contact-details {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.88);
}

.booking-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 36px);
  color: var(--ink);
  background: var(--paper);
  border-radius: 8px;
}

.booking-form label {
  display: grid;
  gap: 7px;
  font-weight: 750;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--sage);
  outline: 3px solid rgba(113, 129, 103, 0.22);
}

.booking-form .button {
  width: 100%;
  border: 0;
  font-size: 1rem;
}

.form-note {
  min-height: 24px;
  margin: 0;
}

.terms-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
}

.terms-list li {
  padding-left: 4px;
}

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

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.legal-grid article {
  padding: clamp(24px, 4vw, 34px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 26px clamp(18px, 5vw, 72px);
  color: var(--muted);
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-footer a {
  color: var(--sage-dark);
  font-weight: 800;
}

@media (max-width: 1080px) {
  .room-grid,
  .info-grid,
  .season-cards,
  .price-notes {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .winter-hub {
    grid-row: auto;
    grid-column: 1 / -1;
  }

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

  .living-grid.kitchen-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 940px) {
  .intro-section,
  .winter-section,
  .location-layout,
  .contact,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .winter-media {
    min-height: 420px;
  }

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

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

  .upgraded-gallery .gallery-hero {
    grid-column: span 2;
  }
}

@media (max-width: 720px) {
  .site-header {
    align-items: flex-start;
    min-height: 64px;
  }

  .brand {
    max-width: calc(100% - 56px);
  }

  .nav-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 64px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 18px 18px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }

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

  .site-nav a {
    padding: 13px 0;
  }

  .hero {
    min-height: 760px;
  }

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

  h1 {
    font-size: clamp(2.65rem, 15vw, 4rem);
  }

  .section-heading {
    display: block;
  }

  .facts,
  .kitchen-card,
  .room-grid,
  .winter-grid,
  .info-grid,
  .season-cards,
  .price-notes,
  .photo-grid {
    grid-template-columns: 1fr;
  }

  .winter-hub,
  .info-card.wide,
  .upgraded-gallery .gallery-hero {
    grid-column: span 1;
  }

  .info-card.wide .terms-list {
    grid-template-columns: 1fr;
  }

  .map-card,
  .map-card iframe,
  .winter-media {
    min-height: 340px;
  }

  .single-map,
  .single-map iframe {
    min-height: 520px;
  }

  .photo-grid {
    grid-auto-rows: 240px;
  }

  .photo-grid .wide {
    grid-column: span 1;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

