:root {
  --cream: #f6f1e7;
  --cream-deep: #efe6d4;
  --stone-dark: #2b2621;
  --stone: #4a4038;
  --ink: #262220;
  --green: #33502f;
  --green-deep: #223a20;
  --gold: #c69a3d;
  --gold-soft: #e0c179;
  --white: #ffffff;

  --font-display: "Cormorant Garamond", "Marcellus", serif;
  --font-heading: "Marcellus", serif;
  --font-body: "Jost", sans-serif;

  --container-width: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 { font-family: var(--font-heading); font-weight: 400; color: var(--stone-dark); margin: 0 0 16px; }

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 500;
  margin: 0 0 10px;
}
.eyebrow.center { text-align: center; }
h2.center { text-align: center; max-width: 640px; margin-left: auto; margin-right: auto; }

.btn {
  display: inline-block;
  padding: 14px 30px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
}
.btn-primary {
  background: var(--gold);
  color: var(--stone-dark);
  border-color: var(--gold);
}
.btn-primary:hover { background: var(--gold-soft); border-color: var(--gold-soft); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

/* Topbar */
.topbar {
  background: var(--stone-dark);
  color: var(--gold-soft);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.topbar-inner { display: flex; justify-content: center; gap: 10px; padding: 8px 24px; }
.topbar-divider { color: var(--gold); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 241, 231, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(43, 38, 33, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-logo { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name { font-family: var(--font-heading); font-size: 1.15rem; color: var(--stone-dark); letter-spacing: 0.03em; }
.brand-sub { font-size: 0.72rem; color: var(--green); }

.site-nav { display: flex; align-items: center; gap: 30px; }
.site-nav a {
  text-decoration: none;
  color: var(--stone);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}
.site-nav a:hover { color: var(--green); }
.site-nav a.nav-cta {
  background: var(--green);
  color: var(--cream);
  padding: 10px 20px;
  border-radius: 2px;
}
.site-nav a.nav-cta:hover { background: var(--green-deep); color: var(--cream); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--stone-dark); }

/* Hero */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,17,13,0.35) 0%, rgba(20,17,13,0.45) 55%, rgba(20,17,13,0.75) 100%);
}
.hero-content { position: relative; z-index: 2; color: var(--white); max-width: 720px; padding-top: 60px; padding-bottom: 60px; }
.hero .eyebrow { color: var(--gold-soft); }
.hero h1 {
  color: var(--white);
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  margin-bottom: 18px;
}
.hero-tagline {
  font-size: 1.15rem;
  font-weight: 300;
  color: rgba(255,255,255,0.92);
  max-width: 540px;
  margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.scroll-cue {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 14px;
}
.scroll-cue span {
  position: absolute;
  top: 6px; left: 50%;
  width: 4px; height: 8px;
  background: var(--gold-soft);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scrollcue 1.6s ease infinite;
}
@keyframes scrollcue {
  0% { opacity: 1; top: 6px; }
  70% { opacity: 0; top: 18px; }
  100% { opacity: 0; top: 18px; }
}

/* About */
.about { padding: 110px 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.about-media img { border-radius: 3px; box-shadow: 0 30px 60px -20px rgba(43,38,33,0.35); }
.about-copy h2 { font-size: clamp(1.9rem, 3vw, 2.5rem); margin-bottom: 22px; }
.about-copy p { color: var(--stone); margin-bottom: 18px; }
.about-copy p:last-child { margin-bottom: 0; }

/* Amenities */
.amenities { padding: 100px 0; background: var(--cream-deep); }
.amenities h2 { font-size: clamp(1.9rem, 3vw, 2.5rem); margin-bottom: 50px; }
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.amenity-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: 4px;
  border: 1px solid rgba(43,38,33,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.amenity-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -18px rgba(43,38,33,0.25);
}
.amenity-icon { font-size: 1.8rem; margin-bottom: 16px; }
.amenity-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.amenity-card p { color: var(--stone); font-size: 0.94rem; margin: 0; }

/* Gallery */
.gallery { padding: 110px 0; }
.gallery h2 { font-size: clamp(1.9rem, 3vw, 2.5rem); margin-bottom: 50px; }
.gallery-carousel { position: relative; }
.gallery-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 4px 18px;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-soft) transparent;
}
.gallery-track::-webkit-scrollbar { height: 6px; }
.gallery-track::-webkit-scrollbar-track { background: transparent; }
.gallery-track::-webkit-scrollbar-thumb { background: var(--gold-soft); border-radius: 3px; }
.gallery-item {
  flex: 0 0 300px;
  height: 340px;
  scroll-snap-align: start;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  overflow: hidden;
  border-radius: 3px;
  position: relative;
}
.gallery-item.span-2 { flex-basis: 616px; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(43,38,33,0.15);
  background: var(--white);
  color: var(--stone-dark);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px -10px rgba(43,38,33,0.35);
  z-index: 2;
  transition: opacity 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.gallery-nav:hover:not(:disabled) { background: var(--gold); color: var(--white); }
.gallery-nav:disabled { opacity: 0.3; cursor: default; }
.gallery-prev { left: -22px; }
.gallery-next { right: -22px; }

/* Location */
.location { padding: 110px 0; background: var(--stone-dark); color: var(--cream); }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.location .eyebrow { color: var(--gold-soft); }
.location h2 { color: var(--white); font-size: clamp(1.9rem, 3vw, 2.5rem); }
.location-copy > p { color: rgba(246,241,231,0.8); margin-bottom: 20px; }
.location-facts { list-style: none; padding: 0; margin: 0 0 24px; }
.location-facts li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(246,241,231,0.12);
  color: rgba(246,241,231,0.85);
  font-size: 0.94rem;
}
.location-facts li strong { color: var(--gold-soft); font-weight: 500; margin-right: 8px; }
.location-note { font-size: 0.88rem; color: rgba(246,241,231,0.6); font-style: italic; }
.location-directions {
  display: inline-block;
  color: var(--gold-soft);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: color 0.2s ease;
}
.location-directions:hover { color: var(--white); }
.location-map { border-radius: 4px; overflow: hidden; box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5); }
.location-map iframe { width: 100%; height: 380px; border: 0; filter: grayscale(0.15) contrast(1.05); }

/* Stay / reservations */
.stay { padding: 110px 0; background: var(--cream-deep); }
.stay h2 { font-size: clamp(1.9rem, 3vw, 2.5rem); margin-bottom: 14px; }
.stay-copy {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 50px;
  color: var(--stone);
}
.stay-form {
  max-width: 640px;
  margin: 0 auto;
  background: var(--white);
  padding: 40px;
  border-radius: 6px;
  box-shadow: 0 30px 60px -25px rgba(43,38,33,0.2);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-field { margin-bottom: 20px; }
.form-field label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--stone);
  margin-bottom: 8px;
}
.form-field input, .form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(43,38,33,0.18);
  border-radius: 3px;
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  resize: vertical;
}
.form-field input:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}
.stay-form .btn { width: 100%; text-align: center; border: none; }
.form-note { text-align: center; margin: 16px 0 0; font-size: 0.88rem; color: var(--green); min-height: 1.2em; }

.stay-contact {
  text-align: center;
  margin-top: 46px;
  color: var(--stone);
}
.stay-contact a { color: var(--green-deep); font-weight: 500; text-decoration: none; border-bottom: 1px solid var(--gold); }
.stay-contact-hint { font-size: 0.78rem; color: rgba(74,64,56,0.55); font-style: italic; margin-top: 8px; }

/* Footer */
.site-footer { background: var(--stone-dark); color: rgba(246,241,231,0.7); padding: 50px 0 30px; }
.footer-inner { text-align: center; }
.footer-brand { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 14px; }
.footer-brand img { width: 34px; height: 34px; border-radius: 50%; }
.footer-brand span { font-family: var(--font-heading); color: var(--white); font-size: 1.1rem; }
.footer-inner p { margin: 4px 0; font-size: 0.85rem; }
.footer-social { display: flex; align-items: center; justify-content: center; gap: 12px; margin: 18px 0 8px; }
.social-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(246,241,231,0.25);
  color: rgba(246,241,231,0.8);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.social-icon:hover { background: var(--gold); border-color: var(--gold); color: var(--stone-dark); }
.footer-copyright { margin-top: 16px; font-size: 0.75rem; color: rgba(246,241,231,0.4); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(20,17,13,0.94);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 100%; max-height: 88vh; border-radius: 3px; }
.lightbox-close {
  position: absolute;
  top: 24px; right: 30px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 900px) {
  .about-grid, .location-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-media { order: -1; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item { flex-basis: 240px; height: 260px; }
  .gallery-item.span-2 { flex-basis: 496px; }
  .gallery-prev { left: 4px; }
  .gallery-next { right: 4px; }
}

@media (max-width: 760px) {
  .topbar-inner { font-size: 0.62rem; }
  .site-nav {
    position: fixed;
    top: 73px; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 10px 24px 20px;
    border-bottom: 1px solid rgba(43,38,33,0.1);
    transform: translateY(-130%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .site-nav.open { transform: translateY(0); opacity: 1; }
  .site-nav a { width: 100%; padding: 12px 0; border-bottom: 1px solid rgba(43,38,33,0.06); }
  .site-nav a.nav-cta { margin-top: 10px; text-align: center; }
  .nav-toggle { display: flex; }
  .amenities-grid { grid-template-columns: 1fr; }
  .gallery-item { flex-basis: 78vw; height: 220px; }
  .gallery-item.span-2 { flex-basis: 78vw; }
  .gallery-nav { width: 40px; height: 40px; font-size: 1.4rem; }
  .form-row { grid-template-columns: 1fr; }
  .stay-form { padding: 28px 22px; }
}
