:root {
  --bg: #f6f1e8;
  --bg-dark: #15110c;
  --text: #201a14;
  --muted: #6f6258;
  --gold: #b9853b;
  --gold-dark: #8a5d22;
  --white: #ffffff;
  --soft: #fffaf2;
  --border: rgba(32, 26, 20, 0.14);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.12);
  --radius: 28px;
  --max: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }

.topbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
  background: rgba(246, 241, 232, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.nav { height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display:flex; flex-direction:column; line-height:1; letter-spacing:-0.04em; font-weight:850; font-size:26px; }
.brand span { font-size:12px; letter-spacing:.18em; text-transform:uppercase; color:var(--muted); margin-top:6px; font-weight:650; }
.navlinks { display:flex; align-items:center; gap:22px; font-size:14px; color:var(--muted); font-weight:700; }
.navlinks a:hover { color: var(--text); }
.nav-actions { display:flex; align-items:center; gap:10px; }
.btn {
  display:inline-flex; align-items:center; justify-content:center; min-height:46px;
  padding:0 20px; border-radius:999px; font-size:14px; font-weight:800;
  border:1px solid transparent; cursor:pointer; transition:.2s ease; white-space:nowrap;
}
.btn-primary { background:var(--text); color:var(--white); box-shadow:0 12px 30px rgba(0,0,0,.16); }
.btn-primary:hover { transform:translateY(-2px); background:#000; }
.btn-gold { background:var(--gold); color:white; }
.btn-gold:hover { background:var(--gold-dark); transform:translateY(-2px); }
.btn-outline { border-color:rgba(255,255,255,.45); color:white; background:rgba(255,255,255,.08); }
.btn-outline-dark { border-color:var(--border); color:var(--text); background:rgba(255,255,255,.35); }
.btn-outline-dark:hover { background:var(--white); }
.menu-toggle { display:none; width:46px; height:46px; border-radius:50%; border:1px solid var(--border); background:rgba(255,255,255,.45); font-size:22px; }
.mobile-menu { display:none; }

.hero {
  min-height:100vh; padding-top:76px; position:relative; display:flex; align-items:center; overflow:hidden; color:white;
  background: linear-gradient(90deg, rgba(0,0,0,.78), rgba(0,0,0,.43), rgba(0,0,0,.14)), var(--hero-image, url("../img/photo1.jpg")) center/cover no-repeat;
}
.hero::after { content:""; position:absolute; inset:0; background:radial-gradient(circle at 70% 30%, rgba(255,255,255,.14), transparent 34%); pointer-events:none; }
.hero-content { position:relative; z-index:2; max-width:820px; padding:70px 0; }
.eyebrow { display:inline-flex; align-items:center; gap:10px; padding:8px 14px; border-radius:999px; background:rgba(255,255,255,.12); border:1px solid rgba(255,255,255,.22); font-size:13px; font-weight:800; letter-spacing:.08em; text-transform:uppercase; margin-bottom:22px; }
.hero h1 { font-size:clamp(42px,7vw,86px); line-height:.95; letter-spacing:-.07em; margin-bottom:24px; }
.hero p { font-size:clamp(18px,2.2vw,24px); color:rgba(255,255,255,.87); max-width:760px; margin-bottom:32px; }
.hero-actions { display:flex; flex-wrap:wrap; gap:12px; margin-bottom:34px; }
.hero-meta { display:flex; flex-wrap:wrap; gap:12px; }
.meta-pill { padding:10px 14px; border-radius:999px; background:rgba(255,255,255,.12); border:1px solid rgba(255,255,255,.22); font-size:14px; color:rgba(255,255,255,.88); font-weight:700; }

section { padding:92px 0; }
.section-title { max-width:820px; margin-bottom:36px; }
.section-title .tag { color:var(--gold-dark); text-transform:uppercase; letter-spacing:.16em; font-size:12px; font-weight:850; margin-bottom:12px; }
.section-title h2 { font-size:clamp(34px,5vw,58px); line-height:1; letter-spacing:-.055em; margin-bottom:18px; }
.section-title p { color:var(--muted); font-size:18px; max-width:740px; margin-bottom:12px; }
.stats { background:var(--bg-dark); color:white; padding:38px 0; }
.stats-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.stat { padding:22px; border-radius:24px; background:rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.08); }
.stat strong { display:block; font-size:34px; letter-spacing:-.05em; margin-bottom:6px; }
.stat span { color:rgba(255,255,255,.68); font-size:14px; }
.cards { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.card { background:var(--soft); border:1px solid var(--border); border-radius:var(--radius); padding:28px; box-shadow:0 12px 36px rgba(0,0,0,.04); transition:.2s ease; }
.card:hover { transform:translateY(-4px); box-shadow:var(--shadow); }
.card .icon { width:48px; height:48px; border-radius:16px; background:rgba(185,133,59,.14); display:flex; align-items:center; justify-content:center; margin-bottom:18px; font-size:24px; }
.card h3 { font-size:22px; letter-spacing:-.035em; margin-bottom:10px; }
.card p { color:var(--muted); font-size:15.5px; }
.split { display:grid; grid-template-columns:1fr .92fr; gap:34px; align-items:center; }
.image-stack { display:grid; grid-template-columns:1fr .75fr; gap:16px; align-items:end; }
.image-stack img { border-radius:var(--radius); height:520px; width:100%; object-fit:cover; box-shadow:var(--shadow); background:#e5d9ca; }
.image-stack img:nth-child(2) { height:360px; }
.list { display:grid; gap:14px; margin-top:24px; }
.list-item { display:flex; gap:12px; align-items:flex-start; color:var(--muted); font-size:16px; }
.check { min-width:26px; height:26px; border-radius:50%; background:var(--gold); color:white; display:flex; align-items:center; justify-content:center; font-size:14px; font-weight:850; margin-top:1px; }
.gallery { display:grid; grid-template-columns:1.2fr .8fr .8fr; grid-auto-rows:260px; gap:16px; }
.gallery img { width:100%; height:100%; object-fit:cover; border-radius:24px; background:#e5d9ca; }
.gallery img:first-child { grid-row:span 2; }
.dark-cta { background:linear-gradient(rgba(0,0,0,.68), rgba(0,0,0,.68)), url("../img/photo6.jpg") center/cover no-repeat; color:white; border-radius:42px; padding:74px; overflow:hidden; box-shadow:var(--shadow); }
.dark-cta h2 { font-size:clamp(34px,5vw,64px); line-height:1; letter-spacing:-.06em; max-width:780px; margin-bottom:18px; }
.dark-cta p { color:rgba(255,255,255,.78); font-size:19px; max-width:680px; margin-bottom:28px; }
.capacities { display:grid; grid-template-columns:.9fr 1.1fr; gap:30px; align-items:start; }
table { width:100%; border-collapse:collapse; overflow:hidden; border-radius:24px; background:var(--soft); border:1px solid var(--border); }
th,td { padding:20px; text-align:left; border-bottom:1px solid var(--border); }
th { background:rgba(185,133,59,.12); font-size:14px; text-transform:uppercase; letter-spacing:.08em; color:var(--gold-dark); }
tr:last-child td { border-bottom:none; }
td:last-child { font-weight:850; }
.contact-wrap { display:grid; grid-template-columns:.85fr 1.15fr; gap:28px; align-items:start; }
.contact-box { background:var(--bg-dark); color:white; border-radius:var(--radius); padding:34px; position:sticky; top:100px; }
.contact-box h3 { font-size:30px; line-height:1; letter-spacing:-.04em; margin-bottom:16px; }
.contact-box p { color:rgba(255,255,255,.72); margin-bottom:22px; }
.contact-line { display:grid; gap:10px; color:rgba(255,255,255,.84); font-weight:700; }
form { background:var(--soft); border:1px solid var(--border); border-radius:var(--radius); padding:28px; box-shadow:0 12px 36px rgba(0,0,0,.05); }
.form-grid { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.field { display:grid; gap:7px; }
.field.full { grid-column:1 / -1; }
label { font-size:13px; font-weight:850; color:var(--muted); }
input,select,textarea { width:100%; border:1px solid var(--border); border-radius:16px; min-height:50px; padding:13px 14px; font:inherit; background:white; color:var(--text); outline:none; }
textarea { min-height:130px; resize:vertical; }
input:focus,select:focus,textarea:focus { border-color:var(--gold); box-shadow:0 0 0 4px rgba(185,133,59,.12); }
.faq { display:grid; gap:12px; }
details { background:var(--soft); border:1px solid var(--border); border-radius:20px; padding:20px 22px; }
summary { cursor:pointer; font-weight:850; font-size:18px; letter-spacing:-.02em; }
details p { color:var(--muted); margin-top:12px; }
footer { background:var(--bg-dark); color:white; padding:56px 0 34px; }
.footer-grid { display:grid; grid-template-columns:1fr 1fr 1fr; gap:28px; margin-bottom:36px; }
footer h4 { margin-bottom:12px; font-size:16px; }
footer p, footer a { color:rgba(255,255,255,.68); font-size:14px; }
.copyright { border-top:1px solid rgba(255,255,255,.1); padding-top:22px; color:rgba(255,255,255,.48); font-size:13px; }
.whatsapp-float { position:fixed; right:20px; bottom:20px; z-index:120; width:58px; height:58px; border-radius:50%; background:#25D366; color:white; display:flex; align-items:center; justify-content:center; font-size:28px; box-shadow:0 16px 40px rgba(0,0,0,.24); }
.breadcrumb { padding-top:110px; padding-bottom:0; color:var(--muted); font-size:14px; }
.breadcrumb a { text-decoration:underline; }
.page-hero { min-height:62vh; padding-top:76px; }
.seo-note { background:var(--soft); border:1px solid var(--border); padding:24px; border-radius:24px; color:var(--muted); }

@media (max-width:940px) {
  .navlinks,.nav-actions { display:none; }
  .menu-toggle { display:inline-flex; align-items:center; justify-content:center; }
  .mobile-menu.active { display:grid; gap:10px; padding:0 0 18px; }
  .mobile-menu a { padding:14px 0; border-bottom:1px solid var(--border); font-weight:800; }
  .stats-grid,.cards,.split,.capacities,.contact-wrap,.footer-grid { grid-template-columns:1fr; }
  .gallery { grid-template-columns:1fr; grid-auto-rows:240px; }
  .gallery img:first-child { grid-row:span 1; }
  .image-stack { grid-template-columns:1fr; }
  .image-stack img,.image-stack img:nth-child(2) { height:360px; }
  .dark-cta { padding:38px 24px; border-radius:30px; }
  .contact-box { position:static; }
}
@media (max-width:640px) {
  section { padding:68px 0; }
  .hero { min-height:92vh; }
  .hero-content { padding:52px 0; }
  .hero-actions,.hero-meta { flex-direction:column; align-items:stretch; }
  .btn { width:100%; }
  .stats-grid { gap:12px; }
  .stat strong { font-size:30px; }
  .form-grid { grid-template-columns:1fr; }
  .brand { font-size:23px; }
}
