:root {
  --forest: #164b2f;
  --forest-dark: #0d2f20;
  --olive: #758f3d;
  --moss: #9eb05a;
  --cream: #f7f2e7;
  --sand: #e9ddc9;
  --earth: #9a6b3f;
  --ink: #1b211b;
  --muted: #687063;
  --white: #fffdf8;
  --shadow: 0 24px 70px rgba(20, 42, 27, 0.16);
  --radius: 24px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(calc(100% - 24px), 1180px);
  margin: 12px auto 0;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 12px 40px rgba(18, 42, 27, 0.12);
  backdrop-filter: blur(18px);
  transition: padding 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
  padding: 8px 10px;
  box-shadow: 0 16px 48px rgba(18, 42, 27, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--forest);
  white-space: nowrap;
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.94rem;
  font-weight: 700;
  color: #304233;
}

.main-nav a {
  transition: color 0.2s ease, background 0.2s ease;
}

.main-nav a:hover {
  color: var(--forest);
}

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  color: var(--white) !important;
  background: var(--forest);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--forest);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: var(--white);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  padding: 150px 18px 46px;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(9, 39, 25, 0.88), rgba(20, 61, 35, 0.55), rgba(17, 46, 26, 0.25)),
    linear-gradient(180deg, rgba(10, 32, 20, 0.28), rgba(10, 32, 20, 0.65));
}

.organic-line {
  position: absolute;
  right: -80px;
  bottom: 80px;
  width: 360px;
  height: 360px;
  border: 2px solid rgba(247, 242, 231, 0.32);
  border-radius: 42% 58% 60% 40%;
  transform: rotate(-18deg);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding-bottom: clamp(20px, 5vw, 70px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--olive);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #e1eeb8;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 0.95;
}

h2 {
  margin-bottom: 16px;
  color: var(--forest-dark);
  font-size: clamp(2.1rem, 4.7vw, 4.4rem);
  line-height: 1.02;
}

h3 {
  color: var(--forest-dark);
  font-size: 1.12rem;
}

.hero-copy {
  max-width: 690px;
  color: rgba(255, 253, 248, 0.9);
  font-size: clamp(1rem, 2.3vw, 1.24rem);
  line-height: 1.7;
}

.hero-actions,
.calendar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover,
.gallery-item:hover {
  transform: translateY(-3px);
}

.btn-primary {
  color: var(--white);
  background: var(--forest);
  box-shadow: 0 16px 38px rgba(13, 47, 32, 0.24);
}

.hero .btn-primary {
  background: var(--white);
  color: var(--forest);
}

.btn-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.14);
}

.section {
  padding: clamp(72px, 11vw, 132px) 18px;
}

.section-heading {
  width: min(100%, 820px);
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.align-left {
  margin-left: 0;
  text-align: left;
}

.benefit-grid,
.event-grid,
.gallery-grid,
.availability-layout,
.contact-panel,
.site-footer {
  width: min(100%, var(--max));
  margin: 0 auto;
}

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

.benefit-card,
.event-card,
.calendar-card,
.contact-panel {
  border: 1px solid rgba(22, 75, 47, 0.1);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.benefit-card {
  padding: 28px;
}

.benefit-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 26px;
  border-radius: 50%;
  color: var(--forest);
  background: var(--cream);
  font-weight: 800;
}

.benefit-card p,
.event-card p {
  color: var(--muted);
  line-height: 1.68;
}

.events,
.availability,
.location {
  background:
    radial-gradient(circle at 12% 10%, rgba(158, 176, 90, 0.14), transparent 34%),
    linear-gradient(180deg, var(--cream), #fffaf2);
}

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

.event-card {
  position: relative;
  min-height: 210px;
  padding: 30px;
  overflow: hidden;
}

.event-card::after {
  content: "";
  position: absolute;
  right: -26px;
  bottom: -34px;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(117, 143, 61, 0.26);
  border-radius: 45% 55% 40% 60%;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-auto-rows: 240px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  border: 0;
  border-radius: 26px;
  overflow: hidden;
  background: var(--sand);
  box-shadow: var(--shadow);
  cursor: zoom-in;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
  filter: saturate(1.08);
}

.gallery-item.wide {
  grid-row: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

.availability-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.calendar-legend {
  margin-top: 26px;
  color: var(--muted);
  font-weight: 700;
}

.calendar-legend span {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot.available {
  background: #4f8d47;
}

.dot.consult {
  background: #c79331;
}

.dot.busy {
  background: #b45745;
}

.calendar-card {
  padding: clamp(18px, 4vw, 34px);
}

.calendar-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.calendar-top h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.5rem, 4vw, 2.3rem);
  text-transform: capitalize;
}

.icon-btn {
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  color: var(--forest);
  background: var(--cream);
  font-size: 1.8rem;
  cursor: pointer;
}

.weekdays,
.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}

.weekdays {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.day {
  position: relative;
  aspect-ratio: 1;
  border: 1px solid rgba(22, 75, 47, 0.1);
  border-radius: 16px;
  color: var(--ink);
  background: #fbf8f0;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.day:hover {
  transform: translateY(-2px);
  border-color: var(--olive);
}

.day.empty {
  visibility: hidden;
  pointer-events: none;
}

.day.available {
  background: rgba(79, 141, 71, 0.13);
}

.day.consult {
  background: rgba(199, 147, 49, 0.17);
}

.day.busy {
  color: #7b3a2d;
  background: rgba(180, 87, 69, 0.15);
}

.day.selected {
  color: var(--white);
  border-color: var(--forest);
  background: var(--forest);
  box-shadow: 0 10px 24px rgba(22, 75, 47, 0.25);
}

.day::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  transform: translateX(-50%);
  background: currentColor;
  opacity: 0.34;
}

.selected-date {
  margin: 18px 0 0;
  padding: 14px 16px;
  border-radius: 16px;
  color: var(--forest);
  background: var(--cream);
  font-weight: 800;
}

.contact-panel {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(28px, 5vw, 56px);
  padding: clamp(24px, 5vw, 54px);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.94), rgba(247, 242, 231, 0.94)),
    url("eco_1.png") center / cover;
}

.contact-copy p {
  color: var(--muted);
  line-height: 1.75;
}

.contact-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--forest);
  font-weight: 800;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--forest-dark);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(22, 75, 47, 0.16);
  border-radius: 16px;
  padding: 14px 15px;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.92);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--olive);
  box-shadow: 0 0 0 4px rgba(117, 143, 61, 0.14);
}

textarea {
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 20px;
  margin: 0;
  color: #a14334;
  font-weight: 700;
}

.map-wrap {
  width: min(100%, var(--max));
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  border: 10px solid var(--white);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.site-footer {
  width: 100%;
  max-width: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 0;
  padding: 44px max(18px, calc((100vw - var(--max)) / 2));
  color: rgba(255, 253, 248, 0.88);
  background: var(--forest-dark);
}

.site-footer img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 14px;
}

.site-footer h2 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 1.45rem;
}

.site-footer p {
  margin: 0;
}

.footer-links {
  display: grid;
  gap: 10px;
  text-align: right;
  font-weight: 700;
}

.footer-links a:hover {
  color: #e1eeb8;
}

.float-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  min-height: 58px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--white);
  background: #1f9d55;
  box-shadow: 0 14px 32px rgba(31, 157, 85, 0.36);
  font-weight: 900;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(8, 24, 16, 0.86);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: min(1120px, 94vw);
  max-height: 86svh;
  border-radius: 22px;
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.36);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  color: var(--forest-dark);
  background: var(--white);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

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

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

@media (max-width: 980px) {
  .site-header {
    border-radius: 28px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 84px;
    left: 12px;
    right: 12px;
    display: grid;
    gap: 4px;
    padding: 18px;
    border-radius: 24px;
    background: var(--white);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  }

  .main-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 12px;
    border-radius: 14px;
  }

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

  .nav-toggle.open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

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

  .nav-toggle.open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .benefit-grid,
  .event-grid,
  .availability-layout,
  .contact-panel {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .site-header {
    width: calc(100% - 20px);
    margin-top: 10px;
  }

  .brand span {
    font-size: 0.96rem;
  }

  .hero {
    min-height: 88svh;
    padding-top: 130px;
  }

  h1 {
    font-size: clamp(2.65rem, 15vw, 4.5rem);
  }

  .hero-actions .btn {
    width: 100%;
  }

  .benefit-grid,
  .event-grid,
  .gallery-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-auto-rows: 250px;
  }

  .gallery-item.wide,
  .gallery-item.tall {
    grid-row: span 1;
  }

  .calendar-card {
    border-radius: 20px;
  }

  .weekdays,
  .calendar-days {
    gap: 5px;
  }

  .day {
    border-radius: 12px;
    font-size: 0.88rem;
  }

  .map-wrap {
    aspect-ratio: 4 / 5;
    border-width: 6px;
  }

  .site-footer {
    display: grid;
    padding-bottom: 96px;
  }

  .footer-links {
    text-align: left;
  }

  .float-whatsapp {
    left: 18px;
  }
}
