:root {
  --forest: #1f4d3a;
  --forest-dark: #163a2b;
  --leaf: #4a8f5c;
  --clay: #b3402f;
  --clay-dark: #8f2f21;
  --sand: #f7f3ea;
  --cream: #fffdf8;
  --ink: #223027;
  --ink-soft: #5b6a5f;
  --sky-blue: #4a7c9b;
  --gold: #e0a458;
  --radius: 14px;
  --shadow: 0 18px 40px -18px rgba(22, 58, 43, 0.35);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  margin: 0 0 .4em;
  color: var(--forest-dark);
  letter-spacing: -0.01em;
}

p { margin: 0 0 1em; color: var(--ink-soft); }

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

.wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 12px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.btn-primary {
  background: var(--clay);
  color: #fff;
  box-shadow: 0 12px 24px -10px rgba(179, 64, 47, 0.55);
}
.btn-primary:hover { background: var(--clay-dark); transform: translateY(-2px); }
.btn-ghost {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(255,255,255,0.55);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.22); transform: translateY(-2px); }
.btn-block { width: 100%; }

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 18px 0;
  background: linear-gradient(to bottom, rgba(22,58,43,0.55), transparent);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}
.brand-mark {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--clay);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 0.9rem;
}
.brand-name {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 700;
}
.brand-name em { font-style: italic; color: var(--gold); }
.site-nav { display: flex; gap: 28px; }
.site-nav a {
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
  font-weight: 600;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: border-color .2s;
}
.site-nav a:hover { border-color: var(--gold); }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; }
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,30,22,0.15) 0%, rgba(15,30,22,0.55) 65%, rgba(10,20,15,0.85) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding-bottom: 96px;
  padding-top: 160px;
  max-width: 640px;
}
.hero-content .eyebrow { color: var(--gold); }
.hero h1 {
  color: #fff;
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  margin-bottom: 6px;
}
.tagline {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.25rem;
  color: rgba(255,255,255,0.92);
  margin-bottom: 18px;
}
.hero-copy {
  color: rgba(255,255,255,0.86);
  font-size: 1.02rem;
  max-width: 520px;
}
.hero-cta { display: flex; gap: 16px; margin-top: 12px; flex-wrap: wrap; }
.scroll-cue {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.75);
  font-size: 1.3rem;
  animation: bob 2.2s ease-in-out infinite;
  z-index: 2;
}
@keyframes bob {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* Status strip */
.status-strip {
  background: var(--forest-dark);
  color: #fff;
  padding: 14px 0;
}
.status-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.86rem;
}
.status-item { display: flex; align-items: center; gap: 8px; }
.status-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(224,164,88,0.25);
  flex-shrink: 0;
}
.status-location { color: rgba(255,255,255,0.75); }

/* Section shared */
section { padding: 88px 0; }
.section-head { max-width: 620px; margin: 0 auto 48px; text-align: center; }
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); }
.section-lead { font-size: 1rem; }

/* Gallery */
.gallery { background: var(--sand); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 18px;
}
.gallery-item {
  margin: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.gallery-item:hover { transform: translateY(-4px); box-shadow: 0 24px 46px -16px rgba(22,58,43,0.4); }
.gallery-item:hover img { transform: scale(1.05); }
.span-2 { grid-column: span 2; }

@media (max-width: 860px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .span-2 { grid-column: span 2; }
}
@media (max-width: 540px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .span-2 { grid-column: span 1; }
}

/* Amenities */
.amenities { background: var(--cream); }
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.amenity-card {
  background: #fff;
  border: 1px solid rgba(31,77,58,0.10);
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
  box-shadow: 0 10px 28px -18px rgba(22,58,43,0.25);
}
.amenity-icon { font-size: 1.8rem; display: block; margin-bottom: 14px; }
.amenity-card h3 { font-size: 1.02rem; margin-bottom: 8px; }
.amenity-card p { font-size: 0.88rem; margin: 0; }

@media (max-width: 860px) {
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .amenities-grid { grid-template-columns: 1fr; }
}

/* Contact */
.contact {
  background: linear-gradient(160deg, var(--forest) 0%, var(--forest-dark) 100%);
  color: #fff;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: start;
}
.contact .eyebrow { color: var(--gold); }
.contact h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.1rem); }
.contact-copy p { color: rgba(255,255,255,0.82); }
.contact-list { list-style: none; padding: 0; margin: 28px 0 0; display: flex; flex-direction: column; gap: 18px; }
.contact-list li { display: flex; flex-direction: column; gap: 4px; font-size: 0.94rem; color: rgba(255,255,255,0.92); }
.contact-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.contact-list a:hover { text-decoration: underline; }

.notify-form {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  padding: 32px;
  backdrop-filter: blur(6px);
}
.notify-form h3 { color: #fff; font-size: 1.15rem; margin-bottom: 18px; }
.notify-form label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  margin-bottom: 6px;
}
.notify-form input {
  width: 100%;
  padding: 13px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 0.94rem;
  margin-bottom: 18px;
  font-family: inherit;
}
.notify-form input::placeholder { color: rgba(255,255,255,0.5); }
.notify-form input:focus { outline: none; border-color: var(--gold); }
.form-note { font-size: 0.76rem; color: rgba(255,255,255,0.6); margin: 12px 0 0; text-align: center; }

@media (max-width: 860px) {
  .contact-inner { grid-template-columns: 1fr; }
}

/* Footer */
.site-footer {
  background: var(--forest-dark);
  color: rgba(255,255,255,0.65);
  padding: 22px 0;
  font-size: 0.82rem;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-tag { font-style: italic; font-family: 'Fraunces', serif; color: rgba(255,255,255,0.5); }

@media (max-width: 600px) {
  .header-inner { flex-direction: column; gap: 10px; }
  .hero-content { padding-top: 130px; }
}
