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

:root {
  --emerald-900: #064e3b;
  --emerald-800: #065f46;
  --emerald-700: #047857;
  --emerald-600: #059669;
  --emerald-500: #10b981;
  --cream-50:  #fafaf5;
  --cream-100: #f5f5ef;
  --cream-200: #ecedd8;
  --cream-300: #e3e4d6;
  --stone-50:  #fafaf9;
  --stone-100: #f5f5f4;
  --stone-200: #e7e5e4;
  --stone-300: #d6d3d1;
  --stone-400: #a8a29e;
  --stone-500: #78716c;
  --stone-600: #57534e;
  --stone-700: #44403c;
  --stone-800: #292524;
  --stone-900: #1c1917;

  --font-serif: 'Instrument Serif', 'Georgia', serif;
  --font-sans:  'Inter', system-ui, sans-serif;
  --font-elegant: 'Cormorant Garamond', 'Georgia', serif;

  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--stone-700);
  background-color: var(--cream-50);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
address { font-style: normal; }

.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-sm);
  background: var(--emerald-900);
  color: #fff;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  z-index: 200;
  font-size: 0.875rem;
}
.skip-link:focus { top: var(--space-sm); }

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

/* ── Typography ─────────────────────────────────── */
.label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--emerald-700);
  margin-bottom: var(--space-md);
}
.label.center { text-align: center; }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--stone-900);
  margin-bottom: var(--space-lg);
}
.section-title.center { text-align: center; }

/* ── Buttons ────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: 0.875rem 2rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--emerald-800);
  color: #fff;
  border: 1px solid var(--emerald-800);
}
.btn-primary:hover {
  background: var(--emerald-700);
  border-color: var(--emerald-700);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(6, 78, 59, 0.25);
}

.btn-ghost {
  background: transparent;
  color: var(--stone-600);
  border: 1px solid var(--stone-300);
}
.btn-ghost:hover {
  color: var(--emerald-700);
  border-color: var(--emerald-500);
}

.btn-white {
  background: #fff;
  color: var(--emerald-900);
  border: 1px solid #fff;
}
.btn-white:hover {
  background: var(--cream-100);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

.btn-full { width: 100%; }

/* ── Header ─────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: var(--space-sm) 0;
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(250, 250, 245, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--stone-200);
  padding: var(--space-xs) 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.logo-mark {
  color: var(--emerald-700);
  flex-shrink: 0;
  transition: var(--transition);
}
.site-header.scrolled .logo-mark { color: var(--emerald-800); }

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--stone-800);
}

.logo-sub {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone-500);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-list a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--stone-500);
  position: relative;
  transition: var(--transition);
}
.nav-list a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--emerald-600);
  transition: var(--transition);
}
.nav-list a:hover { color: var(--emerald-700); }
.nav-list a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  color: var(--stone-700);
  padding: var(--space-xs);
}

/* ── Hero ───────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(
    160deg,
    var(--emerald-900) 0%,
    #0a6e52 25%,
    var(--emerald-600) 50%,
    #34d399 70%,
    #6ee7b7 85%,
    var(--cream-200) 100%
  );
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(6, 78, 59, 0.4) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(16, 185, 129, 0.3) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(110, 231, 183, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  padding: var(--space-3xl) var(--space-lg);
}

.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: var(--space-lg);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 400;
  line-height: 1.08;
  color: #fff;
  margin-bottom: var(--space-lg);
}
.hero-title em {
  font-style: italic;
  font-family: var(--font-elegant);
  color: rgba(255,255,255,0.85);
}

.hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.75;
  color: rgba(255,255,255,0.8);
  max-width: 540px;
  margin: 0 auto var(--space-xl);
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.hero-actions .btn-primary {
  background: #fff;
  color: var(--emerald-900);
  border-color: #fff;
}
.hero-actions .btn-primary:hover {
  background: var(--cream-100);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.hero-actions .btn-ghost {
  color: rgba(255,255,255,0.8);
  border-color: rgba(255,255,255,0.3);
}
.hero-actions .btn-ghost:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.7);
}

.hero-scroll {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  color: rgba(255,255,255,0.5);
}
.hero-scroll span {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ── Intro ──────────────────────────────────────── */
.intro {
  padding: var(--space-3xl) 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.intro-text .label { margin-bottom: var(--space-sm); }

.intro-text .section-title { margin-bottom: var(--space-lg); }

.intro-text p {
  color: var(--stone-600);
  margin-bottom: var(--space-md);
  font-size: 1.025rem;
}

.intro-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.intro-image:hover img { transform: scale(1.03); }

/* ── Features ───────────────────────────────────── */
.features {
  padding: var(--space-3xl) 0;
  background: var(--cream-100);
  border-top: 1px solid var(--stone-200);
  border-bottom: 1px solid var(--stone-200);
}

.features .section-title { max-width: 480px; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.feature-card {
  padding: var(--space-xl);
  background: var(--cream-50);
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.feature-card:hover {
  border-color: var(--emerald-300, var(--emerald-500));
  box-shadow: 0 8px 32px rgba(6, 78, 59, 0.08);
  transform: translateY(-2px);
}

.feature-icon {
  color: var(--emerald-700);
  margin-bottom: var(--space-md);
}

.feature-card h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--stone-800);
  margin-bottom: var(--space-sm);
}

.feature-card p {
  color: var(--stone-500);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ── Location ───────────────────────────────────── */
.location {
  padding: var(--space-3xl) 0;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.map-placeholder {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--stone-200);
  aspect-ratio: 4/3;
}
.map-placeholder iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.location-info .section-title { margin-bottom: var(--space-lg); }

.address {
  font-size: 1.05rem;
  color: var(--stone-700);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--stone-200);
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.location-details li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--stone-600);
}

.location-details a {
  color: var(--emerald-700);
  transition: var(--transition);
}
.location-details a:hover { color: var(--emerald-600); text-decoration: underline; }

.location-note {
  color: var(--stone-500);
  font-size: 0.95rem;
  line-height: 1.75;
}

/* ── Amenities ──────────────────────────────────── */
.amenities {
  padding: var(--space-3xl) 0;
  background: var(--emerald-900);
  color: #fff;
}

.amenities .label { color: var(--emerald-400, var(--emerald-500)); }
.amenities .section-title { color: #fff; }

.amenities-list { margin-top: var(--space-2xl); }

.amenity-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm) var(--space-2xl);
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: rgba(255,255,255,0.8);
  font-size: 0.975rem;
}

.amenity-dot {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--emerald-500);
}

/* ── Gallery ────────────────────────────────────── */
.gallery {
  padding: var(--space-3xl) 0;
}

.gallery .section-title { max-width: 480px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: var(--space-md);
  margin-top: var(--space-2xl);
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.15), transparent 40%);
  pointer-events: none;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-item:hover img { transform: scale(1.04); }

.gallery-item:nth-child(1) { grid-column: 1 / 6; grid-row: 1 / 3; aspect-ratio: 2/3; }
.gallery-item:nth-child(2) { grid-column: 6 / 9; grid-row: 1; aspect-ratio: 3/2; }
.gallery-item:nth-child(3) { grid-column: 9 / 13; grid-row: 1; aspect-ratio: 3/2; }
.gallery-item:nth-child(4) { grid-column: 6 / 8; grid-row: 2; aspect-ratio: 1; }
.gallery-item:nth-child(5) { grid-column: 8 / 13; grid-row: 2; aspect-ratio: 3/4; }

/* ── CTA ────────────────────────────────────────── */
.cta {
  position: relative;
  padding: var(--space-3xl) 0;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    var(--emerald-800) 0%,
    var(--emerald-700) 50%,
    var(--emerald-600) 100%
  );
}

.cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 80% 50%, rgba(16, 185, 129, 0.3) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(6, 78, 59, 0.4) 0%, transparent 50%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.cta-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: var(--space-md);
}

.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.12;
  color: #fff;
  margin-bottom: var(--space-lg);
}

.cta-text {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: var(--space-xl);
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* ── Contact ────────────────────────────────────── */
.contact {
  padding: var(--space-3xl) 0;
  background: var(--cream-100);
  border-top: 1px solid var(--stone-200);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-2xl);
  align-items: start;
}

.contact-info .section-title { margin-bottom: var(--space-md); }

.contact-info > p {
  color: var(--stone-500);
  margin-bottom: var(--space-xl);
  font-size: 1.025rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  color: var(--stone-600);
}

.contact-detail svg {
  flex-shrink: 0;
  margin-top: 0.2rem;
  color: var(--emerald-700);
}

.contact-detail strong {
  display: block;
  font-weight: 500;
  color: var(--stone-800);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.contact-detail a {
  color: var(--emerald-700);
  transition: var(--transition);
}
.contact-detail a:hover { color: var(--emerald-600); text-decoration: underline; }

.contact-detail span {
  line-height: 1.7;
}

/* ── Form ───────────────────────────────────────── */
.contact-form-wrap {
  background: var(--cream-50);
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
}

.contact-form { display: flex; flex-direction: column; gap: var(--space-md); }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }

.form-group label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone-500);
}

.form-group .optional {
  font-weight: 300;
  text-transform: none;
  letter-spacing: 0;
  color: var(--stone-400);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--stone-800);
  background: var(--cream-50);
  border: 1px solid var(--stone-300);
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.9rem;
  transition: var(--transition);
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--emerald-600);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-note {
  font-size: 0.8rem;
  color: var(--stone-400);
  text-align: center;
  margin-top: var(--space-xs);
}

.form-success {
  text-align: center;
  padding: var(--space-2xl) var(--space-lg);
}
.form-success svg {
  color: var(--emerald-600);
  margin: 0 auto var(--space-md);
}
.form-success h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--stone-800);
  margin-bottom: var(--space-sm);
}
.form-success p {
  color: var(--stone-500);
  font-size: 0.95rem;
}

/* ── Footer ─────────────────────────────────────── */
.site-footer {
  padding: var(--space-xl) 0;
  border-top: 1px solid var(--stone-200);
  background: var(--cream-50);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-sm);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--emerald-800);
}

.footer-name {
  font-family: var(--font-serif);
  font-size: 1rem;
}

.footer-address {
  font-size: 0.85rem;
  color: var(--stone-400);
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--stone-400);
}

/* ── Animations ─────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  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);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 900px) {
  .intro-grid,
  .location-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .intro-image { order: -1; aspect-ratio: 16/9; }

  .features-grid { grid-template-columns: 1fr; }

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

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item:nth-child(1) { grid-column: 1 / 3; grid-row: auto; aspect-ratio: 16/9; }
  .gallery-item:nth-child(2) { grid-column: 1; grid-row: auto; aspect-ratio: 16/9; }
  .gallery-item:nth-child(3) { grid-column: 2; grid-row: auto; aspect-ratio: 16/9; }
  .gallery-item:nth-child(4) { grid-column: 1; grid-row: auto; aspect-ratio: 16/9; }
  .gallery-item:nth-child(5) { grid-column: 2; grid-row: auto; aspect-ratio: 16/9; }
}

@media (max-width: 640px) {
  :root {
    --space-lg: 1.25rem;
    --space-xl: 2.5rem;
    --space-2xl: 4rem;
    --space-3xl: 5rem;
  }

  .nav-toggle { display: flex; }

  .nav-list {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 85vw);
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    background: var(--cream-50);
    border-left: 1px solid var(--stone-200);
    padding: var(--space-xl);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 101;
  }
  .nav-list.open { transform: translateX(0); }
  .nav-list a {
    font-size: 1rem;
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--stone-200);
    letter-spacing: 0.06em;
  }
  .nav-list a::after { display: none; }

  .hero-title { font-size: clamp(2rem, 10vw, 3rem); }

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

  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(n) { grid-column: 1; grid-row: auto; aspect-ratio: 4/3; }

  .cta-actions { flex-direction: column; }
  .cta-actions .btn { width: 100%; }
}

/* Mobile nav overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.3);
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.nav-overlay.active {
  opacity: 1;
  pointer-events: all;
}
