:root {
  --bg: #0d1115;
  --bg-soft: #131a20;
  --panel: #ffffff;
  --panel-soft: #f5f2eb;
  --text: #111827;
  --text-soft: #5a6472;
  --white: #ffffff;
  --line: rgba(17, 24, 39, 0.1);
  --line-dark: rgba(255, 255, 255, 0.12);
  --accent: #b88c4a;
  --accent-dark: #8c6734;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.14);
  --radius: 22px;
  --radius-sm: 14px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  background: rgba(255,255,255,0.08);
  padding: 0.1rem 0.35rem;
  border-radius: 6px;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.section { padding: 5.5rem 0; }
.section-light { background: var(--panel); }
.section-dark {
  background: linear-gradient(180deg, #111820 0%, #0b1015 100%);
  color: var(--white);
}
.section-kicker,
.eyebrow {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 0.85rem;
}

h1, h2, h3 {
  margin: 0 0 1rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  line-height: 1.04;
}

h1 { font-size: clamp(3rem, 6vw, 5.6rem); }
h2 { font-size: clamp(2.2rem, 4vw, 3.6rem); }
h3 { font-size: clamp(1.4rem, 2vw, 1.9rem); }
p { margin: 0 0 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(13, 17, 21, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  color: var(--white);
}
.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #d7b47a);
  color: #201508;
  font-weight: 800;
}
.brand-text { display: grid; }
.brand-text strong { font-size: 1rem; }
.brand-text small { color: rgba(255,255,255,0.7); }

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: rgba(255,255,255,0.88);
}
.site-nav a:hover { color: #fff; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 48px;
  height: 48px;
  padding: 0;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
}

.hero {
  position: relative;
  min-height: min(90vh, 920px);
  display: grid;
  align-items: end;
  background: var(--bg);
  color: var(--white);
}
.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-media img { object-fit: cover; }
.hero-overlay {
  background:
    linear-gradient(180deg, rgba(8, 10, 12, 0.38) 0%, rgba(8, 10, 12, 0.65) 52%, rgba(8, 10, 12, 0.92) 100%),
    linear-gradient(90deg, rgba(8, 10, 12, 0.52) 0%, rgba(8, 10, 12, 0.1) 45%, rgba(8, 10, 12, 0.58) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 7rem 0 5rem;
  max-width: 760px;
}
.hero-copy {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  max-width: 650px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0 1.6rem;
}
.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.hero-highlights li {
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.14);
  font-size: 0.95rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 1.25rem;
  border-radius: 999px;
  border: 0;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.button:hover {
  transform: translateY(-1px);
}
.button-primary {
  background: var(--accent);
  color: #17120b;
  box-shadow: 0 14px 30px rgba(184, 140, 74, 0.28);
}
.button-primary:hover { background: #c89a56; }
.button-secondary {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
}

.two-column,
.scenic-grid,
.contact-grid,
.footer-grid,
.lists-grid {
  display: grid;
  gap: 2rem;
}
.two-column,
.contact-grid,
.scenic-grid { grid-template-columns: 1.2fr 0.9fr; }
.footer-grid { grid-template-columns: 1.2fr 1fr 1fr; align-items: start; }
.lists-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.info-card,
.feature-card,
.list-card,
.callout-card,
.contact-form,
.gallery-item,
.scenic-photo-card {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.info-card {
  background: var(--panel-soft);
  padding: 2rem;
}
.quick-facts {
  display: grid;
  gap: 1.1rem;
  margin: 0;
}
.quick-facts div { border-top: 1px solid rgba(17,24,39,0.08); padding-top: 1rem; }
.quick-facts div:first-child { border-top: 0; padding-top: 0; }
.quick-facts dt { font-size: 0.84rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-soft); }
.quick-facts dd { margin: 0.35rem 0 0; font-weight: 600; }

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem 2rem;
  margin-bottom: 2rem;
}
.section-heading.compact { margin-bottom: 1.8rem; }
.section-note { max-width: 480px; color: rgba(255,255,255,0.78); }

.gallery-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.gallery-item {
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
.gallery-button {
  padding: 0;
  border: 0;
  background: transparent;
  width: 100%;
  cursor: pointer;
  color: inherit;
  text-align: left;
}
.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-caption {
  padding: 1rem 1rem 1.1rem;
}
.gallery-caption strong { display: block; margin-bottom: 0.25rem; }
.gallery-caption span { color: rgba(255,255,255,0.72); }

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.feature-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 1.5rem;
}
.feature-card p { color: var(--text-soft); margin-bottom: 0; }
.list-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 1.75rem;
}
.list-card ul,
.check-list {
  margin: 0;
  padding-left: 1.2rem;
}
.accent-card {
  background: linear-gradient(180deg, #fffaf2 0%, #f4ece0 100%);
  border-color: rgba(184, 140, 74, 0.28);
}

.scenic-section {
  background: linear-gradient(180deg, #f7f3ee 0%, #ffffff 100%);
}
.scenic-photo-card {
  overflow: hidden;
  background: #fff;
}
.scenic-photo-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}
.check-list li { margin-bottom: 0.7rem; }

.callout-section {
  background: linear-gradient(135deg, #18130f 0%, #251c13 100%);
}
.callout-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  color: #fff;
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  border: 1px solid rgba(255,255,255,0.08);
}
.callout-card p { color: rgba(255,255,255,0.8); }

.contact-copy { color: var(--text-soft); }
.contact-details {
  display: grid;
  gap: 1.2rem;
  margin-top: 1.75rem;
}
.contact-details span {
  display: block;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.78rem;
  margin-bottom: 0.3rem;
}
.contact-details a { font-weight: 700; }
.contact-details p { margin: 0; }

.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  padding: 1.6rem;
}
.form-row { display: grid; gap: 0.9rem; margin-bottom: 1rem; }
.two-up { grid-template-columns: repeat(2, minmax(0, 1fr)); }
label span {
  display: block;
  font-weight: 600;
  margin-bottom: 0.45rem;
}
input,
textarea {
  width: 100%;
  border: 1px solid rgba(17,24,39,0.14);
  border-radius: 14px;
  padding: 0.95rem 1rem;
  background: #fff;
}
textarea { resize: vertical; }
input:focus,
textarea:focus {
  outline: 2px solid rgba(184, 140, 74, 0.28);
  border-color: var(--accent);
}
.hidden-field { position: absolute; left: -9999px; opacity: 0; }
.form-help {
  margin: 0.85rem 0 0;
  font-size: 0.92rem;
  color: var(--text-soft);
}
.submit-button { width: 100%; }

.site-footer {
  background: #0d1115;
  color: rgba(255,255,255,0.9);
  padding: 2.25rem 0;
}
.site-footer h2 {
  font-size: 2rem;
  margin-bottom: 0.3rem;
}
.site-footer p,
.site-footer a { color: rgba(255,255,255,0.74); }
.site-footer a { display: block; margin-bottom: 0.4rem; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 99;
  display: grid;
  place-items: center;
  padding: 2rem;
  background: rgba(8, 10, 12, 0.88);
}
.lightbox img {
  max-width: min(1100px, 92vw);
  max-height: 78vh;
  border-radius: 18px;
  box-shadow: 0 20px 70px rgba(0,0,0,0.35);
}
.lightbox p {
  color: #fff;
  margin: 1rem 0 0;
  text-align: center;
}
.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 0;
  font-size: 2rem;
  cursor: pointer;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 980px) {
  .two-column,
  .contact-grid,
  .scenic-grid,
  .footer-grid,
  .lists-grid,
  .amenities-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .section-heading,
  .callout-card {
    align-items: start;
    flex-direction: column;
  }

  .site-nav {
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    background: rgba(13, 17, 21, 0.97);
    padding: 1rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .site-nav.open { display: flex; }
  .nav-toggle { display: inline-block; }
  .two-up { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .section { padding: 4rem 0; }
  .hero-content { padding: 6rem 0 4rem; }
  .brand-text small { display: none; }
  .hero-highlights li { width: 100%; }
  .contact-form,
  .callout-card,
  .info-card,
  .list-card,
  .feature-card { padding: 1.25rem; }
}

.lightbox[hidden] {
  display: none !important;
}
