:root {
  --bg: #f7f3ec;
  --bg-soft: #eef1e8;
  --text: #2d312c;
  --muted: #6a6f67;
  --primary: #9eab90;
  --primary-dark: #728066;
  --accent: #eadfce;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(52, 61, 49, 0.12);
  --radius: 24px;
  --radius-sm: 18px;
  --container: min(1180px, calc(100% - 2rem));
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f9f6f0 0%, #f5f2ec 100%);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
.container { width: var(--container); margin: 0 auto; }
.topbar {
  background: var(--primary-dark);
  color: #f7f5ef;
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  padding: .7rem 1rem;
  font-size: .92rem;
}
.header { position: relative; }
.nav {
  position: absolute;
  inset: 1rem 0 auto;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .85rem;
  color: var(--white);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.55);
  object-fit: cover;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,.18);
  padding: .75rem 1rem;
  border-radius: 999px;
}
.nav-menu a { color: var(--white); font-size: .95rem; }
.nav-toggle { display: none; }
.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
}
.hero-bg, .hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-bg { object-fit: cover; }
.hero-overlay {
  background: linear-gradient(90deg, rgba(31,35,29,.72) 0%, rgba(31,35,29,.45) 38%, rgba(31,35,29,.2) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 2rem;
  align-items: end;
  padding: 9rem 0 5rem;
}
.eyebrow, .section-tag {
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .8rem;
  color: #efe9dd;
}
.hero h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  line-height: .95;
  margin: 0 0 1rem;
}
.hero h1 { font-size: clamp(3.6rem, 8vw, 6.8rem); color: var(--white); }
.hero .lead { color: rgba(255,255,255,.93); font-size: 1.06rem; max-width: 640px; line-height: 1.75; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.35rem;
  border-radius: 999px;
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  border: 0;
  box-shadow: var(--shadow);
  transition: transform .25s ease, background .25s ease;
}
.btn:hover { transform: translateY(-2px); background: var(--primary-dark); }
.btn-secondary, .btn-outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,.45);
  color: var(--white);
  box-shadow: none;
}
.btn-secondary:hover, .btn-outline:hover { background: rgba(255,255,255,.12); }
.glass {
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(20px);
}
.hero-card {
  border-radius: var(--radius);
  padding: 1.8rem;
  color: var(--white);
  box-shadow: var(--shadow);
}
.hero-card h2 { font-size: 2.2rem; }
.hero-card p, .hero-card li { color: rgba(255,255,255,.9); line-height: 1.7; }
.hero-card ul { margin: 1rem 0 0; padding-left: 1rem; }
.hero-logo { width: 86px; border-radius: 50%; margin-bottom: 1rem; }
.section { padding: 6rem 0; }
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 2rem;
}
.align-center { align-items: center; }
.intro { background: var(--bg); }
.intro h2, .services h2, .highlight h2, .gallery h2, .video-section h2, .social-proof h2, .contact h2 { font-size: clamp(2.6rem, 5vw, 4.1rem); }
.intro p, .services p, .highlight p, .video-section p, .social-proof p, .contact p { line-height: 1.8; color: var(--muted); }
.section-head { max-width: 800px; margin: 0 auto 2.5rem; }
.section-head.center { text-align: center; }
.section-tag { color: var(--primary-dark); margin-bottom: .8rem; display: inline-block; }
.feature-stack { display: grid; gap: 1rem; }
.feature-card, .service-card, .social-card, .contact-form, .map-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.feature-card { padding: 1.5rem; }
.feature-card h3 { font-size: 2rem; margin-bottom: .4rem; }
.services { background: linear-gradient(180deg, #eef2ea 0%, #f7f3ec 100%); }
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1.25rem;
}
.service-card { padding: 1.6rem; }
.service-icon {
  width: 56px; height: 56px; display: grid; place-items: center;
  border-radius: 50%; background: var(--accent); color: var(--primary-dark);
  font-size: 1.35rem; margin-bottom: 1rem;
}
.service-card h3 { font-size: 2rem; }
.image-frame img { border-radius: calc(var(--radius) + 6px); box-shadow: var(--shadow); }
.pill-list { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.25rem; }
.pill-list span {
  background: var(--white); border-radius: 999px; padding: .8rem 1rem;
  box-shadow: var(--shadow); color: var(--primary-dark); font-weight: 600;
}
.gallery { background: var(--bg-soft); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  grid-auto-rows: 220px;
  gap: 1rem;
}
.gallery-item {
  border: 0; padding: 0; overflow: hidden; border-radius: var(--radius-sm); cursor: pointer;
  background: #ddd; box-shadow: var(--shadow);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; }
.video-section { background: linear-gradient(180deg, #f7f3ec 0%, #eef2ea 100%); }
.video-wrapper {
  overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 16/10; background: #000;
}
.video-wrapper iframe { width: 100%; height: 100%; border: 0; }
.social-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1.25rem;
}
.social-card { padding: 1.7rem; border: 1px solid rgba(114,128,102,.12); }
.social-name {
  display: inline-block; margin-bottom: .8rem; color: var(--primary-dark);
  text-transform: uppercase; letter-spacing: .18em; font-size: .75rem; font-weight: 700;
}
.social-card strong { display: block; font-size: 1.15rem; margin-bottom: .5rem; }
.contact { background: var(--bg); }
.contact-wrap {
  display: grid; grid-template-columns: 1fr .95fr; gap: 1.5rem; align-items: start;
}
.contact-list { display: grid; gap: .9rem; margin: 1.5rem 0; }
.contact-list a, .contact-list p {
  background: rgba(255,255,255,.8); padding: 1rem 1.15rem; border-radius: 16px; margin: 0;
}
.map-card { overflow: hidden; min-height: 320px; }
.map-card iframe { width: 100%; min-height: 320px; border: 0; }
.contact-form { padding: 1.7rem; }
.contact-form h3 { font-size: 2.2rem; }
.contact-form label { display: grid; gap: .55rem; margin-bottom: 1rem; font-weight: 600; }
.contact-form input, .contact-form textarea {
  border: 1px solid rgba(114,128,102,.2); border-radius: 16px; padding: 1rem 1rem; background: #fcfbf8;
}
.form-note { font-size: .92rem; color: var(--muted); margin-top: .9rem; }
.footer {
  padding: 1.25rem 0 4.5rem; background: #dde5d6; color: var(--text);
}
.footer-inner {
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; align-items: center;
}
.whatsapp-float {
  position: fixed; right: 1rem; bottom: 1rem; width: 62px; height: 62px; z-index: 50;
  border-radius: 50%; display: grid; place-items: center; background: #25D366; box-shadow: var(--shadow);
}
.whatsapp-float svg { width: 32px; fill: white; }
.lightbox {
  position: fixed; inset: 0; background: rgba(10,12,10,.88); display: none; place-items: center; z-index: 60; padding: 1rem;
}
.lightbox.active { display: grid; }
.lightbox img { max-width: min(92vw, 1120px); max-height: 88vh; border-radius: 20px; }
.lightbox-close {
  position: absolute; top: 1rem; right: 1rem; width: 52px; height: 52px; border-radius: 50%;
  border: 0; font-size: 2rem; background: rgba(255,255,255,.12); color: white; cursor: pointer;
}
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }

@media (max-width: 960px) {
  .nav { position: absolute; }
  .nav-toggle {
    display: inline-grid; place-items: center; width: 48px; height: 48px; border-radius: 50%;
    border: 0; background: rgba(255,255,255,.16); color: var(--white); font-size: 1.3rem; backdrop-filter: blur(16px);
  }
  .nav-menu {
    position: absolute; right: 0; top: calc(100% + .75rem); flex-direction: column; align-items: stretch;
    min-width: 220px; border-radius: 20px; display: none;
  }
  .nav-menu.open { display: flex; }
  .hero-content, .grid-2, .contact-wrap, .cards-grid, .social-grid { grid-template-columns: 1fr; }
  .hero-content { padding-top: 8.5rem; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0,1fr)); grid-auto-rows: 190px; }
}

@media (max-width: 640px) {
  .topbar { font-size: .82rem; }
  .hero h1 { font-size: 3.3rem; }
  .section { padding: 4.5rem 0; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .gallery-item.wide, .gallery-item.tall { grid-column: span 1; grid-row: span 1; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
