:root {
  --bg: #f4efe4;
  --surface: rgba(255, 250, 242, 0.7);
  --surface-strong: #fffaf2;
  --text: #1f2d28;
  --muted: #5a695f;
  --line: rgba(31, 45, 40, 0.12);
  --accent: #295647;
  --accent-soft: #d8e2cb;
  --accent-warm: #c37c4a;
  --shadow: 0 24px 80px rgba(31, 45, 40, 0.12);
  --radius-lg: 32px;
  --radius-md: 24px;
  --radius-sm: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(195, 124, 74, 0.16), transparent 28%),
    radial-gradient(circle at top right, rgba(41, 86, 71, 0.16), transparent 26%),
    linear-gradient(180deg, #f8f4eb 0%, var(--bg) 100%);
}

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

p,
li,
summary {
  line-height: 1.6;
}

.site-header,
.hero,
.section,
.contact-strip,
.site-footer {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.25rem 0;
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), #3e7463);
  color: white;
  font-weight: 800;
}

.brand-name {
  font-family: "Newsreader", serif;
  font-size: 1.35rem;
  font-weight: 700;
}

.eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.site-nav {
  display: flex;
  gap: 1.2rem;
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 14px 28px rgba(41, 86, 71, 0.18);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.6);
}

.text-link {
  color: var(--accent);
  font-weight: 700;
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  padding: 3.5rem 0 2.25rem;
}

.hero h1,
.section h2,
.contact-strip h2 {
  margin: 0;
  font-family: "Newsreader", serif;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5.6rem);
  line-height: 0.96;
  max-width: 10ch;
}

.hero-text {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 58ch;
  margin: 1.4rem 0 0;
}

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

.hero-points,
.location-list {
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li,
.location-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 0.75rem;
  color: var(--muted);
}

.hero-points li::before,
.location-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-warm);
  flex: 0 0 auto;
}

.hero-card {
  display: grid;
  gap: 1rem;
}

.hero-visual,
.booking-panel,
.intro-card,
.amenity-card,
.location-panel,
.faq-list details,
.contact-strip,
.gallery-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.hero-visual {
  min-height: 420px;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(160deg, rgba(41, 86, 71, 0.92), rgba(27, 43, 38, 0.78)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent);
  color: white;
}

.visual-chip {
  align-self: flex-start;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 0.82rem;
}

.visual-card {
  max-width: 18rem;
  padding: 1rem 1.1rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.14);
}

.visual-card span {
  display: block;
  font-size: 0.82rem;
  margin-bottom: 0.35rem;
}

.booking-panel,
.intro-card,
.amenity-card,
.location-panel {
  padding: 1.5rem;
}

.booking-panel h2 {
  font-size: 1.9rem;
  line-height: 1.05;
}

.section {
  padding: 1.25rem 0 1rem;
}

.intro-grid,
.location-section {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 1rem;
}

.intro-card h2,
.section h2,
.contact-strip h2 {
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  line-height: 1;
}

.intro-card.muted {
  background: rgba(216, 226, 203, 0.45);
}

.section-heading {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 1rem;
  align-items: end;
  margin-bottom: 1.4rem;
}

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

.amenity-card h3 {
  margin: 1rem 0 0.5rem;
  font-size: 1.2rem;
}

.card-number {
  font-size: 0.86rem;
  font-weight: 800;
  color: var(--accent);
}

.highlight-band {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1rem;
  align-items: start;
  padding-top: 2.4rem;
  padding-bottom: 2rem;
}

.highlight-copy {
  display: grid;
  gap: 0.8rem;
  color: var(--muted);
}

.gallery-card {
  min-height: 220px;
  padding: 1.1rem;
  display: flex;
  align-items: end;
  font-family: "Newsreader", serif;
  font-size: 1.4rem;
  color: white;
  background:
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.42) 100%),
    linear-gradient(135deg, #879f7f 0%, #35584a 100%);
}

.gallery-card.tall {
  grid-row: span 2;
  min-height: 460px;
}

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

.location-copy {
  padding: 1rem 0;
}

.location-section {
  align-items: stretch;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-list details {
  padding: 1.2rem 1.4rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list details p {
  margin: 0.9rem 0 0;
  color: var(--muted);
}

.contact-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.92), rgba(216, 226, 203, 0.62));
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 0 2.5rem;
  color: var(--muted);
}

.footer-brand {
  margin: 0;
}

.footer-copy {
  margin: 0.45rem 0 0;
  max-width: 42ch;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-content: start;
}

@media (max-width: 960px) {
  .site-header,
  .hero,
  .intro-grid,
  .section-heading,
  .amenity-grid,
  .gallery-grid,
  .highlight-band,
  .location-section,
  .contact-strip,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-header,
  .contact-strip,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .amenity-grid,
  .gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .gallery-card.tall,
  .gallery-card.wide {
    grid-row: auto;
    grid-column: auto;
    min-height: 240px;
  }
}

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

  .hero {
    padding-top: 2rem;
  }

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

  .amenity-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .button,
  .site-header > .button {
    width: 100%;
  }

  .hero-actions .button,
  .contact-actions .button {
    width: auto;
  }

  .hero-actions,
  .contact-actions {
    width: 100%;
  }

  .hero-actions .button,
  .contact-actions .button {
    flex: 1 1 100%;
  }
}
