/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-dark: #060F08;
  --bg-card: #0B1710;
  --bg-elevated: #0F1F14;
  --green-deep: #0B1D0E;
  --green-mid: #1A3A20;
  --green-light: #2D5A35;
  --gold: #C9A227;
  --gold-light: #E2C05A;
  --gold-dim: rgba(201, 162, 39, 0.15);
  --off-white: #F2F0E9;
  --cream: #E8E4D8;
  --text-primary: #F2F0E9;
  --text-secondary: #A8B8A0;
  --text-muted: #6B7F68;
  --border: rgba(201, 162, 39, 0.2);
  --border-subtle: rgba(255, 255, 255, 0.06);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 32px rgba(0, 0, 0, 0.4);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
address { font-style: normal; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Typography ─── */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text-primary);
}

h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

p { color: var(--text-secondary); }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: all var(--transition);
  border: none;
  white-space: nowrap;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--bg-dark);
  box-shadow: 0 4px 20px rgba(201, 162, 39, 0.3);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201, 162, 39, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-full { width: 100%; }

/* ─── Navigation ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(6, 15, 8, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  transition: background var(--transition);
}
.nav.scrolled {
  background: rgba(6, 15, 8, 0.92);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}
.logo-icon { width: 28px; height: 28px; flex-shrink: 0; }

.nav nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav nav a {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-secondary);
  transition: color var(--transition);
  letter-spacing: 0.02em;
}
.nav nav a:hover { color: var(--gold); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-primary);
  transition: all var(--transition);
  transform-origin: center;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 5px);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -5px);
}

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(6, 15, 8, 0.55) 0%,
    rgba(6, 15, 8, 0.4) 40%,
    rgba(6, 15, 8, 0.65) 70%,
    rgba(6, 15, 8, 0.95) 100%
  );
  z-index: 1;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(26, 58, 32, 0.5) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 30% 60%, rgba(201, 162, 39, 0.08) 0%, transparent 60%);
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 780px;
  padding: 0 24px;
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero-headline {
  font-size: clamp(2.4rem, 7vw, 5rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--off-white);
  margin-bottom: 24px;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.5);
}
.hero-headline br { display: none; }
.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(242, 240, 233, 0.8);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── Intro ─── */
.intro {
  padding: 120px 0;
  background: var(--bg-dark);
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.intro-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 24px;
  color: var(--text-primary);
}
.intro-text p {
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.8;
}
.intro-images {
  position: relative;
  height: 620px;
}
.intro-img-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 65%;
  height: 78%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.intro-img-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60%;
  height: 50%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 3px solid var(--bg-dark);
}

/* ─── Section Header ─── */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.section-header h2 { margin-bottom: 16px; }
.section-note { font-size: 1.05rem; }

/* ─── Rooms ─── */
.rooms {
  padding: 120px 0;
  background: var(--green-deep);
}
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.room-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  transition: all var(--transition);
}
.room-card:hover {
  transform: translateY(-6px);
  border-color: var(--border);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
}
.room-img-wrap {
  overflow: hidden;
  height: 220px;
}
.room-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.room-card:hover .room-img-wrap img {
  transform: scale(1.06);
}
.room-body {
  padding: 28px;
}
.room-body h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.room-tag {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.room-body p {
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 18px;
}
.room-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.room-features li {
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding-left: 18px;
  position: relative;
}
.room-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

/* ─── Experience ─── */
.experience {
  padding: 120px 0;
  background: var(--bg-dark);
}
.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.exp-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition);
}
.exp-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}
.exp-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-dim);
  border-radius: 12px;
  margin-bottom: 20px;
}
.exp-icon svg { width: 26px; height: 26px; }
.exp-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.exp-card p {
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ─── Nature ─── */
.nature {
  padding: 120px 0;
  background: var(--green-deep);
}
.nature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.nature-images {
  position: relative;
  height: 640px;
}
.nature-img-1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 72%;
  height: 75%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.nature-img-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 65%;
  height: 42%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 3px solid var(--green-deep);
}
.nature-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 24px;
  color: var(--text-primary);
}
.nature-content p {
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.8;
}

/* ─── Gallery ─── */
.gallery {
  padding: 120px 0;
  background: var(--bg-dark);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 16px;
}
.gallery-img {
  border-radius: var(--radius);
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-img:hover img { transform: scale(1.05); }
.gallery-img--wide {
  grid-column: span 7;
}

/* ─── CTA ─── */
.cta {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}
.cta .cta-bg {
  position: absolute;
  inset: 0;
}
.cta .cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta .hero-scrim {
  background: linear-gradient(
    to bottom,
    rgba(6, 15, 8, 0.8) 0%,
    rgba(6, 15, 8, 0.85) 100%
  );
}
.cta .container {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 640px;
}
.cta .eyebrow { margin-bottom: 16px; }
.cta h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--off-white);
  margin-bottom: 20px;
}
.cta p {
  font-size: 1.05rem;
  color: rgba(242, 240, 233, 0.75);
  margin-bottom: 36px;
}

/* ─── Contact ─── */
.contact {
  padding: 120px 0;
  background: var(--green-deep);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.contact-info h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 24px;
}
.contact-info address {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 28px;
}
.contact-info address p { margin-bottom: 2px; }
.contact-info address strong { color: var(--text-primary); }
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}
.contact-details a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  transition: color var(--transition);
}
.contact-details a:hover { color: var(--gold); }
.contact-details svg { width: 20px; height: 20px; flex-shrink: 0; }
.contact-map { border-radius: var(--radius); overflow: hidden; }

.contact-form-wrap h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin-bottom: 12px;
}
.contact-form-wrap > p {
  font-size: 0.95rem;
  margin-bottom: 32px;
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-group input,
.form-group textarea {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 14px 16px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.5;
  transition: border-color var(--transition);
  outline: none;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group input:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 120px; }

.form-success {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
  padding: 18px 22px;
  background: rgba(74, 222, 128, 0.08);
  border: 1px solid rgba(74, 222, 128, 0.25);
  border-radius: var(--radius);
}
.form-success svg { width: 24px; height: 24px; flex-shrink: 0; }
.form-success p {
  font-size: 0.92rem;
  color: #4ADE80;
  margin: 0;
}

/* ─── Footer ─── */
.footer {
  padding: 64px 0 32px;
  background: var(--bg-dark);
  border-top: 1px solid var(--border-subtle);
}
.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.footer-brand { max-width: 280px; }
.footer-brand p {
  margin-top: 12px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.footer-nav {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-nav a {
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.82rem;
  color: var(--text-muted);
}
.footer-bottom a {
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-bottom a:hover { color: var(--gold); }

/* ─── Scroll Reveal (progressive enhancement) ─── */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── Mobile Menu ─── */
.nav nav {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(6, 15, 8, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: stretch;
  padding: 32px 24px;
  gap: 20px;
  border-bottom: 1px solid var(--border-subtle);
  transform: translateY(-110%);
  opacity: 0;
  transition: all var(--transition);
  pointer-events: none;
}
.nav nav.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.nav nav a { font-size: 1.05rem; }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .rooms-grid { grid-template-columns: repeat(2, 1fr); }
  .exp-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav nav { gap: 16px; }

  .hero-headline br { display: block; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 280px; }

  .intro-grid,
  .nature-split,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .intro-images,
  .nature-images { height: 420px; }
  .intro-img-1,
  .nature-img-1 { width: 70%; height: 72%; }
  .intro-img-2,
  .nature-img-2 { width: 65%; height: 48%; }

  .rooms-grid { grid-template-columns: 1fr; }
  .exp-grid { grid-template-columns: 1fr; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 180px);
  }
  .gallery-img--wide { grid-column: span 2; }

  .form-row { grid-template-columns: 1fr; }

  .footer-top { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .nav-inner { padding: 0 16px; }
  .intro, .rooms, .experience, .nature, .gallery, .cta, .contact { padding: 80px 0; }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .gallery-img--wide { grid-column: span 1; }
  .gallery-img { height: 200px; }
}
