/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 300;
  color: #1a1a1a;
  background: #FAF8F4;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3 { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 400; line-height: 1.15; }
.section-eyebrow {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #059669;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #064E3B;
  margin-bottom: 20px;
}
.section-line {
  width: 48px;
  height: 1px;
  background: #059669;
  margin-bottom: 32px;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  padding: 14px 32px;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.btn-primary {
  background: #065F46;
  color: #FAF8F4;
  border: 1px solid #065F46;
}
.btn-primary:hover { background: #047857; border-color: #047857; }
.btn-ghost {
  background: transparent;
  color: #FAF8F4;
  border: 1px solid rgba(250,248,244,0.5);
}
.btn-ghost:hover { background: rgba(250,248,244,0.1); border-color: #FAF8F4; }
.btn-ghost-light {
  background: transparent;
  color: #065F46;
  border: 1px solid #065F46;
}
.btn-ghost-light:hover { background: #065F46; color: #FAF8F4; }
.btn-lg { padding: 18px 40px; font-size: 0.95rem; }
.btn-full { width: 100%; }
.btn-book-mobile { display: none; }

/* ─── HEADER ─── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250,248,244,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(6,95,70,0.08);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: 0 1px 20px rgba(0,0,0,0.06); }
.header-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: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #064E3B;
  letter-spacing: 0.02em;
}
.logo-mark {
  font-size: 0.75rem;
  color: #059669;
  letter-spacing: 0.1em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1a1a1a;
  position: relative;
  transition: color 0.3s ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: #059669;
  transition: width 0.3s ease;
}
.nav-links a:hover { color: #059669; }
.nav-links a:hover::after { width: 100%; }
.btn-header {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #065F46;
  border: 1px solid #065F46;
  padding: 10px 24px;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.btn-header:hover { background: #065F46; color: #FAF8F4; }

/* ─── MENU TOGGLE ─── */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  padding: 0;
}
.menu-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: #1a1a1a;
  transition: all 0.3s ease;
  transform-origin: center;
}
.menu-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─── MOBILE MENU ─── */
.mobile-menu {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(250,248,244,0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-bottom: 1px solid rgba(6,95,70,0.1);
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 99;
}
.mobile-menu.open { transform: translateY(0); opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-size: 1.1rem;
  color: #1a1a1a;
  padding: 8px 0;
  border-bottom: 1px solid rgba(6,95,70,0.08);
  transition: color 0.3s ease;
}
.mobile-menu a:hover { color: #059669; }
.btn-book-mobile {
  display: block;
  text-align: center;
  border: 1px solid #065F46;
  color: #065F46;
  padding: 14px 24px;
  border-radius: 2px;
  margin-top: 8px;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}

/* ─── 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-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(6,78,59,0.88) 0%,
    rgba(4,120,87,0.78) 50%,
    rgba(6,95,70,0.85) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  padding: 120px 24px 80px;
}
.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(250,248,244,0.7);
  margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 300;
  color: #FAF8F4;
  line-height: 1.1;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(250,248,244,0.82);
  line-height: 1.8;
  max-width: 520px;
  margin: 0 auto 40px;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ─── INTRO STRIP ─── */
.intro-strip {
  background: #065F46;
  padding: 0;
}
.intro-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1200px;
  margin: 0 auto;
}
.intro-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 40px 24px;
  text-align: center;
  border-right: 1px solid rgba(250,248,244,0.1);
  transition: background 0.3s ease;
}
.intro-item:last-child { border-right: none; }
.intro-item:hover { background: rgba(250,248,244,0.05); }
.intro-icon {
  width: 28px;
  height: 28px;
  color: #d4c5a9;
}
.intro-item span:last-child {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250,248,244,0.85);
}

/* ─── SERVICES ─── */
.services {
  padding: 120px 0;
  background: #FAF8F4;
}
.services .container { max-width: 1200px; }
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header .section-line { margin: 0 auto 32px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 64px;
}
.service-card {
  padding: 40px 32px;
  background: #FFFFFF;
  border: 1px solid rgba(6,95,70,0.08);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.service-card:hover {
  border-color: rgba(6,95,70,0.2);
  box-shadow: 0 8px 40px rgba(6,95,70,0.08);
  transform: translateY(-2px);
}
.service-icon {
  width: 40px;
  height: 40px;
  color: #059669;
  margin-bottom: 24px;
}
.service-card h3 {
  font-size: 1.4rem;
  color: #064E3B;
  margin-bottom: 14px;
  line-height: 1.3;
}
.service-card p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.75;
}
.services-cta {
  text-align: center;
  padding-top: 16px;
}
.services-cta p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: #064E3B;
  margin-bottom: 20px;
}

/* ─── ABOUT ─── */
.about {
  padding: 120px 0;
  background: #EDE5D5;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
}
.about-content .section-header { text-align: left; margin-bottom: 32px; }
.about-text {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.85;
  margin-bottom: 20px;
}
.about-text strong { color: #064E3B; font-weight: 500; }
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}
.value-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: #1a1a1a;
}
.value-icon {
  color: #059669;
  font-size: 0.6rem;
  flex-shrink: 0;
}

/* ─── GALLERY ─── */
.gallery {
  padding: 120px 0;
  background: #FAF8F4;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}
.gallery-item {
  overflow: hidden;
  border-radius: 2px;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.03); }
.gallery-item:nth-child(1) { grid-column: 1 / 6; grid-row: 1 / 2; }
.gallery-item:nth-child(2) { grid-column: 6 / 9; grid-row: 1 / 2; }
.gallery-item:nth-child(3) { grid-column: 9 / 13; grid-row: 1 / 2; }
.gallery-item:nth-child(4) { grid-column: 1 / 5; grid-row: 2 / 3; }
.gallery-item:nth-child(5) { grid-column: 5 / 9; grid-row: 2 / 3; }
.gallery-item:nth-child(6) { grid-column: 9 / 13; grid-row: 2 / 3; }

/* ─── CTA SECTION ─── */
.cta-section {
  padding: 120px 0;
  background: #064E3B;
  text-align: center;
}
.cta-inner { max-width: 640px; margin: 0 auto; padding: 0 24px; }
.cta-eyebrow {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(250,248,244,0.6);
  margin-bottom: 20px;
}
.cta-title {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  color: #FAF8F4;
  margin-bottom: 24px;
}
.cta-text {
  font-size: 1rem;
  color: rgba(250,248,244,0.78);
  line-height: 1.8;
  margin-bottom: 40px;
}
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ─── CONTACT ─── */
.contact {
  padding: 120px 0;
  background: #FAF8F4;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.contact-info .section-header { text-align: left; margin-bottom: 36px; }
.contact-details { display: flex; flex-direction: column; gap: 28px; margin-bottom: 36px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-icon {
  width: 22px;
  height: 22px;
  color: #059669;
  flex-shrink: 0;
  margin-top: 3px;
}
.contact-item strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #064E3B;
  margin-bottom: 4px;
}
.contact-item span, .contact-item a {
  font-size: 0.92rem;
  color: #444;
  line-height: 1.6;
}
.contact-item a:hover { color: #059669; }
.map-container { border-radius: 2px; overflow: hidden; }

/* ─── CONTACT FORM ─── */
.contact-form-wrap {
  background: #FFFFFF;
  border: 1px solid rgba(6,95,70,0.1);
  border-radius: 2px;
  padding: 48px;
}
.contact-form-wrap h3 {
  font-size: 1.6rem;
  color: #064E3B;
  margin-bottom: 32px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: #1a1a1a;
  background: #FAF8F4;
  border: 1px solid rgba(6,95,70,0.15);
  border-radius: 2px;
  outline: none;
  transition: border-color 0.3s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #059669;
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23059669' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.form-success {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  background: rgba(6,95,70,0.06);
  border: 1px solid rgba(6,95,70,0.2);
  border-radius: 2px;
  margin-top: 16px;
}
.form-success svg { width: 20px; height: 20px; color: #059669; flex-shrink: 0; }
.form-success p { font-size: 0.88rem; color: #064E3B; }

/* ─── FOOTER ─── */
.footer {
  background: #064E3B;
  padding: 64px 0 40px;
}
.footer-top { margin-bottom: 48px; }
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-brand .logo-mark { color: #d4c5a9; font-size: 0.75rem; }
.footer-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: #FAF8F4;
}
.footer-desc {
  font-size: 0.88rem;
  color: rgba(250,248,244,0.6);
  max-width: 380px;
  line-height: 1.7;
}
.footer-bottom {
  border-top: 1px solid rgba(250,248,244,0.12);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(250,248,244,0.5);
}
.footer-bottom a {
  color: rgba(250,248,244,0.6);
  transition: color 0.3s ease;
}
.footer-bottom a:hover { color: #FAF8F4; }

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 48px; }
  .contact-grid { gap: 48px; }
}

@media (max-width: 768px) {
  .nav-links, .btn-header { display: none; }
  .menu-toggle { display: flex; }
  .header-inner { height: 64px; }
  .mobile-menu { top: 64px; }

  .hero { min-height: 100svh; }
  .hero-content { padding: 100px 24px 60px; }
  .hero-title { font-size: clamp(2rem, 8vw, 3rem); }

  .intro-inner { grid-template-columns: repeat(2, 1fr); }
  .intro-item { border-bottom: 1px solid rgba(250,248,244,0.1); }
  .intro-item:nth-child(2) { border-right: none; }

  .services { padding: 80px 0; }
  .services-grid { grid-template-columns: 1fr; gap: 20px; }

  .about { padding: 80px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-content .section-header { text-align: center; }
  .about-content .section-line { margin: 0 auto 32px; }
  .about-values { grid-template-columns: 1fr; }

  .gallery { padding: 80px 0; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item:nth-child(1) { grid-column: 1 / 2; grid-row: auto; }
  .gallery-item:nth-child(2) { grid-column: 2 / 3; grid-row: auto; }
  .gallery-item:nth-child(3) { grid-column: 1 / 2; grid-row: auto; }
  .gallery-item:nth-child(4) { grid-column: 2 / 3; grid-row: auto; }
  .gallery-item:nth-child(5) { grid-column: 1 / 2; grid-row: auto; }
  .gallery-item:nth-child(6) { grid-column: 2 / 3; grid-row: auto; }

  .cta-section { padding: 80px 0; }
  .cta-actions { flex-direction: column; }
  .cta-actions .btn { width: 100%; }

  .contact { padding: 80px 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-info .section-header { text-align: center; }
  .contact-info .section-line { margin: 0 auto 36px; }
  .contact-form-wrap { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }

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

@media (max-width: 480px) {
  .intro-inner { grid-template-columns: 1fr; }
  .intro-item { border-right: none; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(n) { grid-column: auto; grid-row: auto; }
}
