
:root {
  --bg0: #1a2420;
  --bg1: #24302a;
  --ink: #f3efe6;
  --muted: #c9c2b4;
  --line: rgba(243, 239, 230, 0.14);
  --accent: #c4a574;
  --accent-2: #7f9e8a;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Manrope", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  background:
    radial-gradient(1200px 700px at 10% -10%, #3a4a40 0%, transparent 55%),
    radial-gradient(900px 600px at 100% 0%, #4a3a28 0%, transparent 50%),
    linear-gradient(165deg, var(--bg0), var(--bg1) 45%, #15201c);
  min-height: 100vh;
  line-height: 1.55;
}

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: 0.08;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  z-index: 0;
}

.top, main, footer { position: relative; z-index: 1; }

.top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem clamp(1.25rem, 4vw, 3rem);
  border-bottom: 1px solid var(--line);
}
.brand {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.02em;
}
nav { display: flex; gap: 1.25rem; }
nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
}
nav a:hover { color: var(--ink); }

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: min(88vh, 820px);
}
.hero-copy {
  padding: clamp(2rem, 6vw, 5rem) clamp(1.25rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  animation: rise 900ms ease both;
}
.brand-mark {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  margin: 0 0 0.75rem;
  line-height: 1;
  color: var(--accent);
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.55rem, 3.2vw, 2.35rem);
  line-height: 1.2;
  margin: 0 0 1rem;
  max-width: 18ch;
}
.lede {
  color: var(--muted);
  max-width: 38ch;
  margin: 0 0 1.75rem;
  font-size: 1.05rem;
}
.cta { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  background: var(--accent);
  color: #1a1814;
  text-decoration: none;
  border: 0;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: transform 180ms ease, filter 180ms ease;
}
.btn:hover { transform: translateY(-1px); filter: brightness(1.05); }
.link {
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.15rem;
}
.link:hover { color: var(--ink); }

.hero-visual {
  background:
    linear-gradient(120deg, rgba(26,36,32,0.25), rgba(26,36,32,0.55)),
    url("https://images.unsplash.com/photo-1567527259232-3a7f234bc78d?auto=format&fit=crop&w=1600&q=80") center/cover;
  min-height: 420px;
  animation: fade 1.2s ease both;
}

.section {
  padding: clamp(3rem, 8vw, 5.5rem) clamp(1.25rem, 4vw, 3rem);
  border-top: 1px solid var(--line);
}
.section h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  max-width: 20ch;
  margin: 0 0 0.75rem;
}
.sub { color: var(--muted); max-width: 48ch; margin: 0 0 2rem; }

.rooms {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.rooms li {
  padding: 1.25rem 0 0;
  border-top: 1px solid var(--line);
}
.rooms h3 {
  font-family: var(--font-display);
  font-weight: 500;
  margin: 0 0 0.5rem;
  color: var(--accent-2);
}
.rooms p { margin: 0; color: var(--muted); }

.split {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 2rem;
  align-items: end;
}
.note {
  border-left: 2px solid var(--accent);
  padding-left: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 720px;
}
.form label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--muted);
}
.form .full { grid-column: 1 / -1; }
.form input, .form textarea {
  font: inherit;
  color: var(--ink);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  padding: 0.75rem 0.85rem;
  outline: none;
}
.form input:focus, .form textarea:focus { border-color: var(--accent); }
.form .btn { justify-self: start; margin-top: 0.25rem; }
.ok { grid-column: 1 / -1; color: var(--accent-2); margin: 0.25rem 0 0; }

footer {
  padding: 2rem clamp(1.25rem, 4vw, 3rem) 3rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
}
footer .fine { font-size: 0.85rem; opacity: 0.8; }

@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}
@keyframes fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-visual { min-height: 280px; order: -1; }
  .rooms { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .form { grid-template-columns: 1fr; }
  nav { display: none; }
}
