:root {
  --cream: #f7f2eb;
  --sand: #e8dfd2;
  --sage: #7a9b86;
  --sage-deep: #4f6f5a;
  --blush: #d4a5a5;
  --gold: #c4a574;
  --text: #2c2620;
  --muted: #6b6258;
  --card: rgba(255, 255, 255, 0.72);
  --border: rgba(44, 38, 32, 0.1);
  --radius: 20px;
  --font: "Outfit", system-ui, sans-serif;
  --serif: "Cormorant Garamond", Georgia, serif;
  --shadow: 0 24px 60px rgba(44, 38, 32, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse at 80% 10%, rgba(212, 165, 165, 0.18), transparent 42%),
    radial-gradient(ellipse at 10% 30%, rgba(122, 155, 134, 0.14), transparent 38%),
    linear-gradient(180deg, #faf6f0 0%, var(--cream) 40%, #efe6da 100%);
}

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

a {
  color: var(--sage-deep);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.wrap {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1.25rem;
  background: rgba(247, 242, 235, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.brand {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text);
}

.brand em {
  font-style: italic;
  color: var(--sage-deep);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  align-items: center;
}

.nav a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
}

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

.header-cta {
  display: flex;
  gap: 0.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.72rem 1.25rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--sage-deep), var(--sage));
  color: #fff;
  box-shadow: 0 12px 32px rgba(79, 111, 90, 0.28);
}

.btn-ghost {
  background: var(--card);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-gold {
  background: linear-gradient(135deg, #b8956a, var(--gold));
  color: #fff;
}

.hero {
  padding: 7.5rem 0 4rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.1;
  margin: 0 0 1rem;
  font-weight: 500;
}

.hero .lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 34rem;
  margin-bottom: 1.5rem;
}

.hero-visual {
  border-radius: calc(var(--radius) + 8px);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/5;
  background:
    linear-gradient(160deg, rgba(122, 155, 134, 0.35), rgba(212, 165, 165, 0.4)),
    url("https://images.unsplash.com/photo-1608571423902-eed4a5ad8108?w=900&q=80") center/cover;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0 1.5rem;
}

.chip {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--muted);
}

section {
  padding: 4rem 0;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 0 0 0.5rem;
  font-weight: 500;
}

.section-sub {
  color: var(--muted);
  max-width: 36rem;
  margin: 0 0 2rem;
}

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

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

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.card h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  margin: 0 0 0.5rem;
}

.card .price {
  color: var(--gold);
  font-weight: 700;
  margin-top: 0.75rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: center;
}

.about-photo {
  border-radius: var(--radius);
  aspect-ratio: 1;
  background:
    linear-gradient(145deg, rgba(196, 165, 116, 0.3), rgba(122, 155, 134, 0.25)),
    url("https://images.unsplash.com/photo-1544161515-4ab6ce6db874?w=800&q=80") center/cover;
  box-shadow: var(--shadow);
}

.reviews {
  display: grid;
  gap: 1rem;
}

.review {
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--blush);
}

.review cite {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--muted);
  font-style: normal;
}

.booking-panel {
  background: linear-gradient(145deg, #fffefb, var(--sand));
  border-radius: calc(var(--radius) + 4px);
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 500;
}

input,
select,
textarea {
  font: inherit;
  padding: 0.7rem 0.9rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
}

textarea {
  min-height: 100px;
  resize: vertical;
}

.form-note {
  font-size: 0.8rem;
  color: var(--muted);
}

.form-status {
  font-size: 0.88rem;
  min-height: 1.2em;
}

.form-status.ok {
  color: var(--sage-deep);
}

.form-status.err {
  color: #a04444;
}

.site-footer {
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 900px) {
  .hero,
  .about-grid,
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--cream);
    padding: 1rem;
    border-bottom: 1px solid var(--border);
  }

  .nav.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .header-cta .btn-ghost {
    display: none;
  }
}
