:root {
  --bg: #f6f1ea;
  --bg-soft: #e7dfd2;
  --card: #ffffff;
  --text: #2d372c;
  --muted: #6f7567;
  --primary: #a9ca92;
  --primary-deep: #445142;
  --accent: #d4bea7;
  --shadow: 0 18px 45px rgba(45, 55, 44, 0.12);
  --radius: 24px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.section { padding: 88px 0; }
.soft-bg { background: linear-gradient(180deg, rgba(169,202,146,.15), rgba(212,190,167,.18)); }
.grid-2 { display: grid; grid-template-columns: 1.1fr .9fr; gap: 42px; align-items: center; }
.section-tag, .eyebrow {
  text-transform: uppercase; letter-spacing: .2em; font-size: .78rem; color: var(--primary-deep); font-weight: 700;
}
h1, h2, h3, strong { font-family: 'Cormorant Garamond', serif; }
h1 { font-size: clamp(3rem, 7vw, 5.5rem); line-height: .95; margin: 10px 0 18px; }
h2 { font-size: clamp(2.2rem, 5vw, 3.4rem); line-height: 1; margin: 10px 0 18px; }
h3 { font-size: 1.9rem; line-height: 1.05; margin: 14px 0 12px; }
p { margin: 0 0 14px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 22px; border-radius: 999px; font-weight: 700; transition: .3s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--primary-deep); color: #fff; box-shadow: var(--shadow); }
.btn-secondary { background: rgba(255,255,255,.2); color: #fff; border: 1px solid rgba(255,255,255,.5); backdrop-filter: blur(12px); }
.site-header {
  position: sticky; top: 0; z-index: 50; background: rgba(246,241,234,.72); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(68,81,66,.08);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; min-height: 78px; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.brand strong { display: block; font-size: 1.8rem; }
.brand small { color: var(--muted); display: block; margin-top: -4px; }
.site-nav { display: flex; gap: 22px; font-weight: 600; }
.site-nav a { position: relative; }
.site-nav a::after { content: ''; position: absolute; left: 0; bottom: -8px; width: 0; height: 2px; background: var(--primary-deep); transition: .3s; }
.site-nav a:hover::after { width: 100%; }
.menu-toggle { display: none; background: none; border: none; font-size: 2rem; }
.hero { position: relative; min-height: 88vh; display: grid; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(33,42,33,.76) 0%, rgba(33,42,33,.55) 42%, rgba(33,42,33,.25) 100%); }
.hero-content { position: relative; z-index: 1; color: #fff; max-width: 700px; padding: 80px 0; }
.hero-text { font-size: 1.1rem; max-width: 620px; color: rgba(255,255,255,.92); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.intro-grid, .experience .grid-2 { align-items: stretch; }
.intro-card, .experience-media, .video-wrap, .form-card { background: var(--card); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.intro-card img, .experience-media img { width: 100%; height: 100%; object-fit: cover; }
.check-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 12px; }
.check-list li { padding-left: 30px; position: relative; }
.check-list li::before { content: '✦'; position: absolute; left: 0; top: 0; color: var(--primary-deep); }
.section-heading { text-align: center; max-width: 740px; margin: 0 auto 40px; }
.section-copy { color: var(--muted); }
.service-grid, .social-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card, .social-card {
  background: rgba(255,255,255,.82); border: 1px solid rgba(68,81,66,.08); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: .3s ease;
}
.service-card:hover, .social-card:hover, .gallery-item:hover { transform: translateY(-4px); }
.service-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.service-card h3, .service-card p { padding-inline: 20px; }
.service-card p { padding-bottom: 22px; color: var(--muted); }
.highlight-box { margin-top: 26px; padding: 22px; background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow); }
.check-list.compact { margin-top: 8px; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-item { border: 0; padding: 0; background: none; border-radius: 20px; overflow: hidden; cursor: pointer; box-shadow: var(--shadow); }
.gallery-item img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.video-wrap iframe, .map-wrap iframe { width: 100%; border: 0; display: block; }
.video-wrap iframe { aspect-ratio: 16 / 9; }
.contact-list { display: grid; gap: 12px; margin: 20px 0 26px; }
.contact-list a { background: rgba(255,255,255,.72); padding: 14px 18px; border-radius: 18px; box-shadow: var(--shadow); }
.map-wrap { overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.map-wrap iframe { height: 320px; }
.form-card { padding: 28px; }
.form-card form { display: grid; gap: 16px; }
.form-card label { display: grid; gap: 8px; font-weight: 600; }
.form-card input, .form-card textarea {
  width: 100%; padding: 14px 16px; border: 1px solid rgba(68,81,66,.16); border-radius: 16px; background: #fff;
}
.form-note { font-size: .92rem; color: var(--muted); }
.social-card { text-align: center; padding: 28px 18px; }
.social-icon {
  width: 64px; height: 64px; margin: 0 auto 16px; display: grid; place-items: center; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent)); font-size: 1.8rem; font-weight: 800;
}
.site-footer { padding: 26px 0 34px; background: #233022; color: #eff3eb; }
.footer-wrap { text-align: center; }
.footer-wrap a { color: #d7efc2; }
.whatsapp-float { position: fixed; right: 18px; bottom: 18px; z-index: 60; }
.whatsapp-float a {
  width: 62px; height: 62px; border-radius: 50%; display: grid; place-items: center; background: #1f7a45; color: #fff; box-shadow: var(--shadow); font-size: 0;
}
.whatsapp-float a::before { content: '✆'; font-size: 1.5rem; }
.lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,.82); display: none; align-items: center; justify-content: center; padding: 24px; z-index: 100;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: min(100%, 1000px); max-height: 88vh; border-radius: 20px; }
.lightbox-close {
  position: absolute; top: 18px; right: 18px; width: 46px; height: 46px; border-radius: 50%; border: 0; background: #fff; font-size: 2rem; cursor: pointer;
}
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
@media (max-width: 920px) {
  .grid-2, .service-grid, .social-grid, .gallery-grid { grid-template-columns: 1fr 1fr; }
  .site-nav {
    position: absolute; top: 78px; left: 16px; right: 16px; background: rgba(246,241,234,.98); border-radius: 18px; padding: 18px;
    flex-direction: column; box-shadow: var(--shadow); display: none;
  }
  .site-nav.open { display: flex; }
  .menu-toggle { display: block; }
}
@media (max-width: 640px) {
  .section { padding: 66px 0; }
  .grid-2, .service-grid, .social-grid, .gallery-grid { grid-template-columns: 1fr; }
  .hero { min-height: 78vh; }
  .hero-overlay { background: linear-gradient(180deg, rgba(33,42,33,.70), rgba(33,42,33,.42)); }
  h1 { font-size: 3.2rem; }
  h2 { font-size: 2.5rem; }
  .brand strong { font-size: 1.5rem; }
}
