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

:root {
  --green-900: #0f2418;
  --green-800: #1a3a2a;
  --green-700: #234d38;
  --green-600: #2d6348;
  --green-500: #3a7d5c;
  --green-400: #5a9e7a;
  --green-300: #8fbfa0;
  --green-200: #c8d4c0;
  --green-100: #e4eadf;
  --green-50:  #f2f6f0;

  --cream:     #f7f5f0;
  --cream-light:#faf9f6;
  --cream-dark:#ece8e0;

  --text-primary:   #1a1a18;
  --text-secondary: #4a4a44;
  --text-tertiary:  #7a7a72;
  --text-light:     #f7f5f0;

  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--text-primary);
  background: var(--cream-light);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

/* ─── Navigation ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 24px;
  transition: background 0.4s var(--ease-out), backdrop-filter 0.4s var(--ease-out);
}

.nav.scrolled {
  background: rgba(247, 245, 240, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--green-200);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  transition: color 0.3s;
}

.nav.scrolled .nav-logo {
  color: var(--green-800);
}

.nav-logo-icon {
  color: var(--green-300);
  transition: color 0.3s;
}

.nav.scrolled .nav-logo-icon {
  color: var(--green-600);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-links a {
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(247, 245, 240, 0.75);
  transition: color 0.3s;
  position: relative;
}

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

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--text-light);
}

.nav.scrolled .nav-links a {
  color: var(--text-tertiary);
}

.nav.scrolled .nav-links a:hover {
  color: var(--green-700);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--text-light);
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}

.nav.scrolled .nav-toggle span {
  background: var(--green-800);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    url('https://images.pexels.com/photos/10047588/pexels-photo-10047588.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1080') center center / cover no-repeat;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 36, 24, 0.88) 0%,
    rgba(26, 58, 42, 0.82) 50%,
    rgba(35, 77, 56, 0.75) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  width: 100%;
}

.hero-text {
  max-width: 720px;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-300);
  margin-bottom: 28px;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text-light);
  margin-bottom: 28px;
}

.hero h1 em {
  font-style: italic;
  color: var(--green-200);
}

.hero-sub {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: rgba(247, 245, 240, 0.65);
  max-width: 520px;
  margin-bottom: 44px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
}

.btn-primary {
  background: var(--green-50);
  color: var(--green-900);
}

.btn-primary:hover {
  background: var(--green-200);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-light);
  border: 1px solid rgba(247, 245, 240, 0.3);
}

.btn-ghost:hover {
  border-color: var(--text-light);
  background: rgba(247, 245, 240, 0.08);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* Stat Cards */
.hero-stats {
  position: absolute;
  bottom: 60px;
  right: 24px;
  z-index: 2;
  display: flex;
  gap: 12px;
}

.stat-card {
  background: rgba(247, 245, 240, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(247, 245, 240, 0.15);
  padding: 24px 20px;
  min-width: 140px;
  transition: transform 0.3s var(--ease-out), background 0.3s;
}

.stat-card:hover {
  transform: translateY(-4px);
  background: rgba(247, 245, 240, 0.15);
}

.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--green-200);
  margin-bottom: 8px;
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(247, 245, 240, 0.55);
  line-height: 1.5;
}

/* ─── Section Shared ─── */
.section {
  padding: 120px 0;
}

.section-label {
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-500);
  margin-bottom: 20px;
}

.section h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.section h2 .accent-italic {
  font-style: italic;
  color: var(--green-600);
}

.section-desc {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 560px;
  margin-bottom: 60px;
}

/* ─── About ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-text h2 {
  margin-bottom: 32px;
}

.about-text p {
  font-size: 0.9375rem;
  line-height: 1.85;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: 750px;
  object-fit: cover;
  border-radius: 2px;
}

.about-image::before {
  content: '';
  position: absolute;
  top: -16px;
  left: -16px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--green-200);
  border-radius: 2px;
  z-index: -1;
}

/* ─── Divider ─── */
.divider {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.divider-line {
  height: 1px;
  background: var(--green-200);
}

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

.stay-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.stay-card {
  background: var(--cream-light);
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid var(--green-100);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.stay-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(26, 58, 42, 0.08);
}

.stay-card-image img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.stay-card-body {
  padding: 32px;
}

.stay-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 14px;
}

.stay-card p {
  font-size: 0.875rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

/* ─── Surroundings ─── */
.surroundings-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 64px;
}

.surrounding-item {
  padding-top: 32px;
  border-top: 1px solid var(--green-200);
}

.surrounding-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 0.875rem;
  color: var(--green-400);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}

.surrounding-item h3 {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.surrounding-item p {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

/* ─── Testimonial ─── */
.testimonial {
  background: var(--green-800);
  text-align: center;
}

.testimonial-content {
  max-width: 720px;
  margin: 0 auto;
}

.testimonial-quote {
  color: var(--green-400);
  margin-bottom: 32px;
  opacity: 0.6;
}

.testimonial blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.6;
  color: var(--text-light);
  margin-bottom: 28px;
}

.testimonial-location {
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-400);
}

/* ─── Contact ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 20px;
}

.contact-info > p {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 48px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  color: var(--green-500);
  flex-shrink: 0;
  margin-top: 3px;
}

.contact-detail-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 4px;
}

.contact-detail-value {
  display: block;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-primary);
  transition: color 0.3s;
}

.contact-detail-value:hover {
  color: var(--green-600);
}

/* Form */
.contact-form-wrap {
  background: var(--cream);
  padding: 48px;
  border: 1px solid var(--green-100);
  border-radius: 2px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

.optional {
  font-weight: 300;
  text-transform: none;
  letter-spacing: 0;
  color: var(--text-tertiary);
  opacity: 0.6;
}

.form-group input,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--text-primary);
  background: var(--cream-light);
  border: 1px solid var(--green-200);
  border-radius: 2px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  resize: vertical;
}

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

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(58, 125, 92, 0.1);
}

.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: var(--green-50);
  border: 1px solid var(--green-200);
  border-radius: 2px;
  font-size: 0.875rem;
  color: var(--green-700);
  margin-top: 8px;
}

.form-success.visible {
  display: flex;
}

.form-success svg {
  flex-shrink: 0;
  color: var(--green-500);
}

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

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-300);
}

.footer-logo-icon {
  color: var(--green-400);
}

.footer-address {
  font-size: 0.8125rem;
  color: rgba(200, 212, 192, 0.5);
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(200, 212, 192, 0.3);
}

/* ─── Scroll Reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .about-grid {
    gap: 48px;
  }

  .contact-grid {
    gap: 48px;
  }

  .hero-stats {
    bottom: 40px;
    right: 24px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 280px;
    background: var(--green-800);
    flex-direction: column;
    padding: 100px 40px 40px;
    gap: 28px;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-out);
    z-index: 99;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links a {
    color: rgba(247, 245, 240, 0.7) !important;
    font-size: 0.9375rem;
  }

  .nav-links a:hover {
    color: var(--green-200) !important;
  }

  .nav-toggle {
    display: flex;
    z-index: 101;
  }

  .hero h1 {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
  }

  .hero-stats {
    position: relative;
    bottom: auto;
    right: auto;
    padding: 0 24px 60px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
  }

  .stat-card {
    flex: 1;
    min-width: 120px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-image img {
    height: 500px;
  }

  .stay-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .surroundings-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-form-wrap {
    padding: 32px 24px;
  }

  .section {
    padding: 80px 0;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    flex-direction: column;
  }

  .stat-card {
    min-width: auto;
  }
}

/* ─── Reduced Motion ─── */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
  }

  .reveal.revealed {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

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

  html {
    scroll-behavior: auto;
  }
}
