﻿:root {
  --bg-900: #031b17;
  --bg-850: #062d27;
  --bg-800: #0d342d;
  --green-700: #1c4d3f;
  --green-600: #2d755d;
  --gold: #d9b86c;
  --gold-soft: #f3d88d;
  --text: #edf6f0;
  --muted: #cfe2d6;
  --soft: #d6e2d9;
  --surface: #d6c6ae;
  --card: rgba(10, 35, 31, 0.58);
  --line: rgba(236, 242, 235, 0.18);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'DM Sans', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 15% 8%, rgba(113, 167, 104, 0.32), transparent 24%),
    radial-gradient(circle at 82% 12%, rgba(220, 182, 82, 0.24), transparent 18%),
    linear-gradient(180deg, var(--bg-900) 0%, #041e18 18%, #041b17 100%);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.5;
}

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

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

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 4.2vw 16px;
  background: rgba(5, 25, 21, 0.48);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 2;
}

.brand-logo {
  width: 178px;
  height: auto;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.22));
}

.main-nav { display: flex; align-items: center; gap: 2.3rem; }
.main-nav a {
  position: relative;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.86);
  transition: opacity 0.2s ease;
}
.main-nav a:hover { opacity: 0.75; }
.nav-cta {
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(255,255,255,0.72);
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(255,255,255,0.26);
  background: rgba(255,255,255,0.04);
  color: white;
  font: inherit;
  font-weight: 700;
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
}

main {
  position: relative;
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: 790px;
  display: grid;
  grid-template-columns: 1.02fr 1.28fr;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(3, 27, 23, 0.94) 0%, rgba(3, 27, 23, 0.70) 28%, rgba(3, 27, 23, 0.18) 58%, rgba(3, 27, 23, 0.06) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.25));
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(213, 255, 140, 0.22), transparent 17%),
    radial-gradient(circle at 64% 68%, rgba(227, 214, 112, 0.16), transparent 16%),
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 12%, rgba(233, 243, 216, 0.86) 0 1.7%, transparent 2%),
    radial-gradient(circle at 19% 18%, rgba(233, 243, 216, 0.8) 0 1.4%, transparent 1.8%),
    radial-gradient(circle at 28% 28%, rgba(233, 243, 216, 0.7) 0 1.7%, transparent 2.1%),
    radial-gradient(circle at 80% 6%, rgba(233, 243, 216, 0.9) 0 1.6%, transparent 2%),
    radial-gradient(circle at 73% 18%, rgba(233, 243, 216, 0.8) 0 1.5%, transparent 2.1%),
    radial-gradient(circle at 64% 28%, rgba(233, 243, 216, 0.7) 0 1.5%, transparent 1.9%);
  opacity: 0.66;
  pointer-events: none;
}

.hero-copy,
.hero-art,
.hero-note {
  position: relative;
  z-index: 1;
}

.hero-copy {
  padding: 135px 0 80px 9.5vw;
  max-width: 610px;
}

.eyebrow {
  margin: 0 0 1.3rem;
  color: rgba(227, 233, 224, 0.8);
  font-size: 0.68rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1, h2, h3 {
  margin: 0;
  font-family: var(--serif);
  letter-spacing: -0.055em;
  color: var(--text);
}

h1 {
  font-size: clamp(3.1rem, 5vw, 6.8rem);
  line-height: 0.9;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  max-width: 520px;
  text-shadow: 0 18px 34px rgba(0,0,0,0.35);
}

h2 {
  font-size: clamp(2.4rem, 4vw, 4.6rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

em {
  font-style: normal;
  color: var(--gold-soft);
}

.hero-text {
  max-width: 420px;
  margin: 0;
  color: rgba(235, 242, 236, 0.76);
  font-size: 1.05rem;
  line-height: 1.7;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  min-height: 52px;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}

.button-dark {
  background: rgba(241, 235, 216, 0.9);
  color: #0b2b22;
  margin-top: 2rem;
}

.button span,
.text-link span,
.nav-cta span {
  margin-left: 0.8rem;
  font-size: 1.1em;
}

.hero-art {
  position: relative;
  width: min(710px, 90%);
  min-height: 640px;
  margin: 2.2rem auto 1.7rem 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.10), rgba(0, 0, 0, 0.10)),
    url('https://images.unsplash.com/photo-1542838132-92c53300491e?auto=format&fit=crop&w=1200&q=88') center/cover no-repeat;
  border-radius: 46% 54% 50% 50% / 50% 48% 52% 50%;
  box-shadow: 0 28px 60px rgba(0,0,0,0.28);
  transform: translateY(8px);
  overflow: hidden;
}

.hero-art::before {
  content: "";
  position: absolute;
  inset: 7% 9% 9% 9%;
  border-radius: 48% 52% 44% 56% / 52% 56% 44% 48%;
  background: rgba(150, 190, 88, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.1);
}

.hero-caption {
  position: absolute;
  left: 3%;
  right: 3%;
  bottom: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(243, 247, 242, 0.82);
}

.hero-note {
  position: absolute;
  left: 2.5vw;
  bottom: 110px;
  transform: rotate(-90deg);
  transform-origin: left top;
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1;
  letter-spacing: 0.04em;
}

.section-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 5.8rem 2rem 4.2rem;
}

.experiences {
  display: grid;
  grid-template-columns: 0.8fr 1.8fr;
  gap: 2.4rem;
  align-items: start;
}

.section-heading {
  padding-top: 0.8rem;
}

.experience-list {
  display: grid;
  gap: 1rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.experience-row {
  display: grid;
  grid-template-columns: 44px 1.1fr 1.3fr 28px;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.number {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  opacity: 0.9;
}

.experience-row h3 {
  font-size: clamp(1.3rem, 2vw, 2rem);
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.experience-row p {
  margin: 0;
  color: rgba(231, 237, 233, 0.78);
  font-size: 0.8rem;
  line-height: 1.7;
}

.experience-row > a {
  justify-self: end;
  font-size: 1.5rem;
  color: #f0dd9f;
}

.philosophy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: rgba(220, 230, 215, 0.06);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.philosophy-image {
  min-height: 520px;
  background-size: cover;
  background-position: center;
}

.philosophy-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 8vw 5rem 4vw;
}

.philosophy-copy p:not(.eyebrow) {
  max-width: 430px;
  color: rgba(233, 238, 234, 0.8);
  font-size: 1rem;
  line-height: 1.8;
}

.text-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 1.2rem;
  border-bottom: 1px solid rgba(255,255,255,0.7);
  padding-bottom: 0.45rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.visit {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  align-items: end;
}

.visit-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.8rem 1.2rem;
}

.detail-label {
  display: block;
  margin-bottom: 0.55rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(233, 238, 234, 0.76);
}

.visit-details p {
  margin: 0;
  color: rgba(233, 238, 234, 0.86);
  font-size: 0.92rem;
  line-height: 1.8;
}

.visit-details .button {
  grid-column: 1 / -1;
  width: fit-content;
  margin-top: 0.4rem;
  border: 1px solid rgba(255,255,255,0.52);
  color: var(--text);
  background: transparent;
}

.booking {
  background: linear-gradient(180deg, rgba(211, 163, 74, 0.98), rgba(194, 148, 56, 0.94));
  color: #0d2a23;
}

.booking-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 2rem;
  padding-top: 5.5rem;
  padding-bottom: 6rem;
  align-items: end;
}

.booking h2 {
  color: #0a2a22;
}

.booking .eyebrow {
  color: rgba(10, 42, 34, 0.78);
}

.booking label {
  display: block;
  max-width: 360px;
  margin: 0 0 1.2rem;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.2vw, 2rem);
  line-height: 1.15;
  letter-spacing: -0.04em;
  color: rgba(10,42,34,0.82);
}

.email-field {
  display: flex;
  width: min(100%, 520px);
  border-bottom: 1px solid rgba(10, 42, 34, 0.52);
  padding-bottom: 0.5rem;
}

.email-field input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: none;
  outline: none;
  color: #0a2a22;
  font: inherit;
  padding: 0.8rem 0.2rem 0.8rem 0;
}

.email-field input::placeholder { color: rgba(10, 42, 34, 0.62); }

.email-field button {
  border: none;
  background: transparent;
  color: #0a2a22;
  font-size: 1.4rem;
  cursor: pointer;
}

.form-message {
  min-height: 1.4rem;
  margin-top: 0.8rem;
  font-size: 0.82rem;
  color: rgba(10,42,34,0.78);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 2rem 4.2vw 2.25rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(5, 22, 20, 0.72);
}

.site-footer .brand-logo {
  width: 136px;
}

.site-footer p {
  margin: 0;
  color: rgba(255,255,255,0.72);
  font-size: 0.8rem;
}

.whatsapp-button {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.8rem 1.1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #2ec76f, #1a9c56);
  color: white;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 18px 44px rgba(22, 149, 86, 0.38);
}

.whatsapp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.7);
  font-size: 1rem;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-bottom: 3rem;
  }

  .hero-copy {
    padding: 128px 8vw 0;
  }

  .hero-art {
    width: min(760px, 88vw);
    min-height: 450px;
    margin: 2rem auto 0;
  }

  .hero-note {
    display: none;
  }

  .experiences,
  .philosophy,
  .visit,
  .booking-inner {
    grid-template-columns: 1fr;
  }

  .philosophy-copy {
    padding-top: 3rem;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: absolute;
    padding-inline: 6vw;
  }

  .menu-toggle { display: inline-flex; align-items: center; gap: 0.5rem; }

  .main-nav {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 5.5rem 7vw 2rem;
    background: rgba(2, 20, 18, 0.96);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav.open { display: flex; }

  .hero-copy {
    padding-top: 120px;
  }

  h1 {
    max-width: none;
    font-size: clamp(3rem, 14vw, 5.2rem);
  }

  .experience-row {
    grid-template-columns: 32px 1fr 24px;
  }

  .experience-row p {
    grid-column: 2 / -1;
  }

  .section-shell {
    padding: 4.3rem 1.1rem 3.2rem;
  }

  .philosophy-copy {
    padding: 3rem 1.1rem 4rem;
  }

  .visit-details {
    grid-template-columns: 1fr;
  }

  .booking-inner {
    padding: 4.2rem 1.1rem 4.8rem;
  }

  .site-footer {
    padding: 1.5rem 1.1rem 2rem;
  }
}
