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

:root {
  --green-900: #1B4332;
  --green-800: #2D6A4F;
  --green-700: #40916C;
  --green-600: #52B788;
  --green-100: #D8F3DC;
  --green-50:  #F0FFF4;
  --off-white: #FAFAF7;
  --warm-white:#F5F4F0;
  --cream:     #EDEDE8;
  --text-dark: #1A1A1A;
  --text-mid:  #3A3A3A;
  --text-light:#6B6B6B;
  --thin: 300;
  --regular: 400;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

body {
  font-family: var(--font-sans);
  font-weight: var(--regular);
  color: var(--text-dark);
  background: var(--off-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

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

/* ── Typography ───────────────────────────────────────── */
.label {
  font-family: var(--font-sans);
  font-weight: var(--thin);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-800);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-serif);
  font-weight: var(--thin);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  color: var(--green-900);
  margin-bottom: 1.5rem;
}

.text-center { text-align: center; }

/* ── Buttons ──────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-weight: var(--regular);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  padding: 0.9rem 2rem;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.4s var(--ease);
}

.btn-light {
  background: #fff;
  color: var(--green-900);
}
.btn-light:hover { background: var(--green-100); }

.btn-dark {
  background: var(--green-900);
  color: #fff;
}
.btn-dark:hover { background: var(--green-800); }

/* ── Nav ──────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 250, 247, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(27, 67, 50, 0.08);
  transition: background 0.3s var(--ease);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-serif);
  font-weight: var(--regular);
  font-size: 1.1rem;
  color: var(--green-900);
  letter-spacing: 0.01em;
}

.nav-logo-icon { flex-shrink: 0; }

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: var(--regular);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  position: relative;
  padding-bottom: 2px;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--green-800);
  transition: width 0.4s var(--ease);
}

.nav-links a:hover { color: var(--green-900); }
.nav-links a:hover::after { width: 100%; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle-line {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--green-900);
  transition: all 0.3s var(--ease);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
  transform: rotate(45deg) translate(4px, 5px);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -5px);
}

/* ── Hero ─────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  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-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(27, 67, 50, 0.55) 0%,
    rgba(27, 67, 50, 0.70) 50%,
    rgba(27, 67, 50, 0.82) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 2rem;
  max-width: 700px;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-weight: var(--thin);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.2rem;
}

.hero-headline {
  font-family: var(--font-serif);
  font-weight: var(--thin);
  font-size: clamp(3.5rem, 10vw, 7rem);
  line-height: 0.95;
  color: #fff;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-family: var(--font-serif);
  font-weight: var(--regular);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
  margin-bottom: 2.5rem;
  font-style: italic;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(255,255,255,0.5);
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── Sections ─────────────────────────────────────────── */
.section {
  padding: 7rem 0;
}

/* ── About ────────────────────────────────────────────── */
.about { background: var(--off-white); }

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image-wrap {
  overflow: hidden;
}

.about-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 600/750;
}

.about-text p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 1.2rem;
}

.about-text p:first-of-type {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--text-dark);
  line-height: 1.65;
}

/* ── Stay ─────────────────────────────────────────────── */
.stay { background: var(--warm-white); }

.stay-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.stay-card {
  background: var(--off-white);
  padding: 2.2rem;
  border: 1px solid rgba(27, 67, 50, 0.08);
  transition: all 0.4s var(--ease);
}

.stay-card:hover {
  border-color: var(--green-700);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(27, 67, 50, 0.08);
}

.stay-card-icon {
  margin-bottom: 1.2rem;
  color: var(--green-800);
}

.stay-card h3 {
  font-family: var(--font-serif);
  font-weight: var(--regular);
  font-size: 1.25rem;
  color: var(--green-900);
  margin-bottom: 0.6rem;
}

.stay-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

.stay-image-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.stay-image-row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 720/480;
}

/* ── Surroundings ─────────────────────────────────────── */
.surroundings { background: var(--off-white); }

.surroundings-grid {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin-top: 1rem;
}

.surroundings-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.surroundings-item.reverse { direction: rtl; }
.surroundings-item.reverse > * { direction: ltr; }

.surroundings-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 500/350;
}

.surroundings-item h3 {
  font-family: var(--font-serif);
  font-weight: var(--regular);
  font-size: 1.5rem;
  color: var(--green-900);
  margin-bottom: 0.6rem;
}

.surroundings-item p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.8;
}

/* ── Quote ────────────────────────────────────────────── */
.quote-section {
  background: var(--green-900);
  padding: 6rem 0;
  text-align: center;
}

.quote-section blockquote {
  max-width: 720px;
  margin: 0 auto;
}

.quote-section p {
  font-family: var(--font-serif);
  font-weight: var(--regular);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  color: rgba(255,255,255,0.9);
  line-height: 1.55;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.quote-section cite {
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* ── Gallery ──────────────────────────────────────────── */
.gallery { background: var(--warm-white); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.gallery-grid img:hover { transform: scale(1.02); }

.gallery-grid img:nth-child(1) { aspect-ratio: 400/500; }
.gallery-grid img:nth-child(2) { aspect-ratio: 400/300; }
.gallery-grid img:nth-child(3) { aspect-ratio: 400/300; }
.gallery-grid img:nth-child(4) { aspect-ratio: 400/500; }
.gallery-grid img:nth-child(5) { aspect-ratio: 400/300; }
.gallery-grid img:nth-child(6) { aspect-ratio: 400/300; }

/* ── Contact ──────────────────────────────────────────── */
.contact { background: var(--off-white); }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  font-size: 0.95rem;
  color: var(--text-mid);
}

.contact-details a {
  color: var(--green-800);
  border-bottom: 1px solid rgba(45, 106, 79, 0.2);
  transition: border-color 0.3s;
}

.contact-details a:hover { border-color: var(--green-800); }

.contact-form-wrap {
  background: var(--warm-white);
  padding: 2.5rem;
  border: 1px solid rgba(27, 67, 50, 0.08);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: var(--regular);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 0;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(27, 67, 50, 0.15);
  outline: none;
  transition: border-color 0.3s;
  resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--green-800);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
  opacity: 0.6;
}

.form-success {
  display: none;
  margin-top: 1.5rem;
  padding: 1rem 1.2rem;
  background: var(--green-50);
  border-left: 3px solid var(--green-700);
  font-size: 0.9rem;
  color: var(--green-900);
  line-height: 1.6;
}

.form-success.show { display: block; }

/* ── Footer ───────────────────────────────────────────── */
.footer {
  background: var(--green-900);
  padding: 3rem 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-serif);
  font-weight: var(--regular);
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
}

.footer-logo-icon { flex-shrink: 0; }

.footer-copy,
.footer-address {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.04em;
}

/* ── Scroll reveal (below fold only, progressive enh.) ── */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.revealed {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
  }
  .reveal.revealed {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 900px) {
  .about-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-image-wrap img { aspect-ratio: 4/5; }
  .stay-grid { grid-template-columns: 1fr 1fr; }
  .surroundings-item { grid-template-columns: 1fr; gap: 1.5rem; }
  .surroundings-item.reverse { direction: ltr; }
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid img:nth-child(1),
  .gallery-grid img:nth-child(4) { aspect-ratio: 4/3; }
}

@media (max-width: 640px) {
  .nav-links {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(250, 250, 247, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
    border-bottom: 1px solid rgba(27, 67, 50, 0.08);
  }

  .nav-links.open {
    max-height: 300px;
    padding: 1.5rem 0;
  }

  .nav-links li { padding: 0.6rem 0; }
  .nav-links a { font-size: 0.9rem; }

  .nav-toggle { display: flex; }

  .section { padding: 5rem 0; }
  .container { padding: 0 1.25rem; }

  .stay-grid { grid-template-columns: 1fr; }
  .stay-image-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }

  .hero-headline { font-size: clamp(3rem, 15vw, 4.5rem); }
}
