:root {
  --bg: #f6f0e8;
  --bg-soft: #fbf7f2;
  --card: rgba(255, 255, 255, 0.52);
  --card-strong: rgba(255, 255, 255, 0.72);
  --text: #34291f;
  --muted: #76675b;
  --line: rgba(82, 62, 46, 0.14);
  --accent: #8f7053;
  --accent-deep: #6f5440;
  --shadow: 0 20px 60px rgba(51, 38, 27, 0.12);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.65), transparent 32%),
    linear-gradient(180deg, #f4ece2 0%, #f7f2eb 40%, #f2ebe3 100%);
  line-height: 1.6;
}

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

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

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(246, 240, 232, 0.72);
  border-bottom: 1px solid rgba(82, 62, 46, 0.08);
}

.nav-wrap {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  line-height: 0.95;
}

.brand-kicker,
.brand-name,
.hero h1,
.section-heading h2,
.intro h2,
.included-grid h2,
.notes-grid h2,
.contact-card h2,
.booking-card h3,
.text-card h3,
.included-item h3 {
  font-family: "Cormorant Garamond", serif;
}

.brand-kicker {
  font-size: 1rem;
  text-transform: lowercase;
  color: var(--muted);
}

.brand-name {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.site-nav {
  display: flex;
  gap: 1.4rem;
  font-size: 0.95rem;
  color: var(--muted);
}

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

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  overflow: clip;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  filter: saturate(0.92) contrast(0.96) brightness(0.82);
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(31, 24, 19, 0.14) 0%, rgba(31, 24, 19, 0.18) 28%, rgba(31, 24, 19, 0.52) 100%),
    linear-gradient(90deg, rgba(31, 24, 19, 0.36) 0%, rgba(31, 24, 19, 0.08) 45%, rgba(31, 24, 19, 0.18) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 8rem 0 5rem;
  color: #f8f3ed;
}

.eyebrow,
.section-label,
.booking-label,
.info-card-label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  font-weight: 600;
}

.hero h1 {
  max-width: 12ch;
  margin: 0.5rem 0 1rem;
  font-size: clamp(1.2rem, 2vw, 1.0rem);
  line-height: 0.95;
  font-weight: 200;
}

.hero-text {
  max-width: 650px;
  font-size: 1.08rem;
  color: rgba(248, 243, 237, 0.9);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.7rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: rgba(255,255,255,0.92);
  color: #302419;
}

.button-secondary {
  background: transparent;
  color: #fff7ef;
  border: 1px solid rgba(255,255,255,0.4);
}

.button-block {
  width: 100%;
}

.section {
  padding: 6rem 0;
}

.intro-grid,
.included-grid,
.notes-grid,
.contact-card {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: start;
}

.intro h2,
.section-heading h2,
.included-grid h2,
.notes-grid h2,
.contact-card h2 {
  margin: 0.3rem 0 1rem;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 0.98;
  font-weight: 600;
}

.lead {
  font-size: 1.12rem;
}

.info-card,
.booking-card,
.contact-card,
.text-card,
.included-item {
  background: var(--card-strong);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.info-card {
  padding: 1.5rem 1.6rem;
  border-radius: var(--radius-lg);
}

.info-card ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.info-card li {
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--line);
}

.info-card li:last-child {
  border-bottom: 0;
}

.section-heading {
  margin-bottom: 2rem;
}

.section-heading.centered,
.narrow {
  text-align: center;
}

.section-heading.narrow,
.centered.narrow {
  max-width: 760px;
  margin-inline: auto;
  margin-bottom: 2rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.feature-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.image-card {
  min-height: 290px;
  background: #e8ddd1;
}

.image-card.tall {
  min-height: 420px;
}

.text-card {
  padding: 2rem;
}

.text-card h3,
.included-item h3,
.booking-card h3 {
  margin: 0 0 0.7rem;
  font-size: 2rem;
  line-height: 1;
  font-weight: 600;
}

.accent {
  background: linear-gradient(180deg, rgba(164, 130, 102, 0.18), rgba(255,255,255,0.7));
}

.feature-grid > :nth-child(1) { grid-column: span 5; }
.feature-grid > :nth-child(2) { grid-column: span 4; }
.feature-grid > :nth-child(3) { grid-column: span 3; }
.feature-grid > :nth-child(4) { grid-column: span 4; }
.feature-grid > :nth-child(5) { grid-column: span 5; }
.feature-grid > :nth-child(6) { grid-column: span 3; }

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

.gallery-item {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.gallery-item img {
  aspect-ratio: 4 / 5;
}

.gallery-item figcaption {
  padding: 1rem 1.1rem 1.15rem;
  font-size: 0.95rem;
  color: var(--muted);
  text-transform: lowercase;
}

.included-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.included-item,
.booking-card {
  padding: 1.6rem;
  border-radius: var(--radius-lg);
}

.booking-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.notes-list {
  display: grid;
  gap: 1rem;
  color: var(--muted);
}

.contact-card {
  padding: 2rem;
  border-radius: calc(var(--radius-lg) + 4px);
  align-items: center;
}

.contact-section .button-primary {
  background: var(--accent-deep);
  color: #fff8f2;
}

.contact-section .button-secondary {
  border-color: rgba(111, 84, 64, 0.24);
  color: var(--accent-deep);
  background: rgba(255,255,255,0.45);
}

@media (max-width: 1024px) {
  .gallery-grid,
  .included-list,
  .booking-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-grid > * {
    grid-column: span 6 !important;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: static;
  }

  .nav-wrap,
  .site-nav,
  .intro-grid,
  .included-grid,
  .notes-grid,
  .contact-card,
  .booking-grid,
  .included-list,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .nav-wrap {
    padding: 1rem 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    display: flex;
    flex-wrap: wrap;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 7rem 0 4rem;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.8rem, 14vw, 4.6rem);
  }

  .feature-grid > * {
    grid-column: span 12 !important;
  }

  .image-card,
  .image-card.tall {
    min-height: 260px;
  }
}
