
:root {
  --bg: #f1dfd7;
  --bg-soft: #f6ece7;
  --card: rgba(255,255,255,0.74);
  --text: #4c201f;
  --muted: #7b5b58;
  --primary: #8d1518;
  --primary-dark: #6f0f12;
  --shadow: 0 20px 50px rgba(76, 32, 31, 0.14);
  --radius: 24px;
  --radius-sm: 18px;
  --container: min(1120px, calc(100% - 32px));
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f7efeb 0%, #f0ddd5 100%);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: var(--container); margin: 0 auto; }
.topbar {
  display: flex; justify-content: center; gap: 20px; align-items: center;
  padding: 10px 16px; background: var(--primary); color: #fff; font-size: 14px;
}
.header {
  position: sticky; top: 0; z-index: 50; backdrop-filter: blur(16px);
  background: rgba(246, 236, 231, 0.82); border-bottom: 1px solid rgba(141, 21, 24, 0.08);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.brand { display: flex; align-items: center; gap: 12px; font-family: 'Cormorant Garamond', serif; font-size: 34px; font-weight: 600; }
.brand img { width: 42px; height: 42px; object-fit: contain; }
.menu { display: flex; gap: 24px; font-size: 15px; }
.menu a { position: relative; }
.menu a::after {
  content: ''; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px;
  background: var(--primary); transition: width .25s ease;
}
.menu a:hover::after { width: 100%; }
.nav-toggle { display: none; border: 0; background: transparent; font-size: 28px; color: var(--primary); }
.hero { position: relative; min-height: 88svh; display: grid; align-items: center; overflow: hidden; }
.hero-bg, .hero-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-bg { object-fit: cover; object-position: center; }
.hero-overlay { background: linear-gradient(90deg, rgba(60,20,18,.72) 0%, rgba(60,20,18,.42) 40%, rgba(60,20,18,.18) 100%); }
.hero-content { position: relative; z-index: 1; padding: 100px 0 80px; }
.hero-copy {
  max-width: 620px; color: #fff; padding: 34px; border-radius: var(--radius);
  background: rgba(76, 32, 31, 0.22); backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
}
.eyebrow, .section-kicker {
  letter-spacing: .18em; text-transform: uppercase; font-size: 12px; font-weight: 700;
  color: #eecfc8;
}
.section-kicker { color: var(--primary); }
.hero h1, h2, h3 { font-family: 'Cormorant Garamond', serif; margin: 0; }
.hero h1 { font-size: clamp(48px, 8vw, 84px); line-height: .92; margin: 8px 0 18px; }
.hero p { font-size: 17px; line-height: 1.75; }
.hero-actions, .social-grid, .program-grid, .benefits-grid, .contact-grid, .split { display: grid; gap: 24px; }
.hero-actions { display: flex; flex-wrap: wrap; margin-top: 28px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  border-radius: 999px; padding: 14px 26px; font-weight: 600; transition: .25s ease;
}
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 12px 24px rgba(141, 21, 24, .25); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); }
.btn-secondary { background: rgba(255,255,255,.16); color: #fff; border: 1px solid rgba(255,255,255,.28); }
.btn-secondary:hover { background: rgba(255,255,255,.24); }
.section { padding: 90px 0; }
.split { grid-template-columns: 1.1fr .9fr; align-items: center; }
.card {
  border-radius: var(--radius); background: var(--card); box-shadow: var(--shadow); overflow: hidden;
}
.soft { padding: 38px; }
.highlight img { width: 100%; height: 100%; object-fit: cover; min-height: 460px; }
.section-heading { text-align: center; max-width: 760px; margin: 0 auto 34px; }
.section-heading h2, .contact-card h2, .soft h2 { font-size: clamp(34px, 5vw, 56px); line-height: .95; margin: 8px 0 14px; }
.section-heading p, .soft p, .contact-card p { color: var(--muted); line-height: 1.8; }
.program-grid { grid-template-columns: repeat(3, 1fr); }
.program-card {
  background: rgba(255,255,255,.65); border: 1px solid rgba(141, 21, 24, .08); border-radius: var(--radius-sm);
  padding: 28px; box-shadow: var(--shadow);
}
.program-card h3 { font-size: 34px; margin: 12px 0 10px; }
.program-card p { margin: 0; color: var(--muted); line-height: 1.75; }
.age {
  display: inline-flex; padding: 8px 14px; border-radius: 999px; background: rgba(141, 21, 24, 0.08);
  color: var(--primary); font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
}
.quote { background: linear-gradient(180deg, rgba(141,21,24,.94), rgba(111,15,18,.9)); color: #fff; }
.quote p { color: rgba(255,255,255,.84); }
.benefits { padding-top: 0; }
.benefits-grid { grid-template-columns: repeat(3, 1fr); }
.benefit-card {
  overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); background: #fff;
}
.benefit-card img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-item {
  border: 0; padding: 0; background: #fff; border-radius: 22px; overflow: hidden; cursor: pointer;
  box-shadow: var(--shadow); position: relative;
}
.gallery-item img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; transition: transform .35s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.video-wrap { align-items: stretch; }
.video-frame {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); min-height: 420px;
}
.video-frame iframe { width: 100%; height: 100%; min-height: 420px; border: 0; }
.social-grid { grid-template-columns: repeat(2, 1fr); }
.social-card {
  background: linear-gradient(135deg, rgba(255,255,255,.78), rgba(255,255,255,.58)); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow); display: flex; justify-content: space-between; gap: 20px; align-items: center;
  border: 1px solid rgba(141, 21, 24, .08);
}
.social-label { font-size: 12px; text-transform: uppercase; letter-spacing: .16em; color: var(--primary); font-weight: 700; }
.social-card h3 { font-size: 40px; margin: 10px 0 10px; }
.social-card p { color: var(--muted); margin: 0; }
.social-arrow { font-size: 34px; color: var(--primary); }
.contact-grid { grid-template-columns: 1fr 1fr; }
.contact-card {
  background: rgba(255,255,255,.76); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow);
}
.contact-list { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 12px; color: var(--muted); line-height: 1.7; }
.contact-form { display: grid; gap: 14px; }
.contact-form input, .contact-form textarea {
  width: 100%; border: 1px solid rgba(141, 21, 24, .12); border-radius: 18px; padding: 16px 18px;
  font: inherit; background: rgba(255,255,255,.92); color: var(--text); outline: none;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: rgba(141, 21, 24, .38); }
.map-section iframe { width: 100%; height: 430px; border: 0; display: block; }
.footer { padding: 28px 0 40px; background: #eedcd4; }
.footer-inner { display: flex; gap: 20px; align-items: center; justify-content: space-between; flex-wrap: wrap; }
.footer-logo { width: 46px; margin-bottom: 8px; }
.footer p { color: var(--muted); margin: 0; }
.whatsapp-float {
  position: fixed; right: 18px; bottom: 18px; width: 62px; height: 62px; border-radius: 50%; z-index: 60;
  display: grid; place-items: center; background: #25D366; color: #fff; box-shadow: 0 16px 30px rgba(37,211,102,.3);
}
.whatsapp-float svg { width: 32px; fill: currentColor; }
.lightbox {
  position: fixed; inset: 0; background: rgba(20,12,12,.88); display: none; place-items: center; z-index: 100;
  padding: 20px;
}
.lightbox.open { display: grid; }
.lightbox img { max-width: min(100%, 1050px); max-height: 88vh; border-radius: 20px; }
.lightbox-close {
  position: absolute; top: 18px; right: 18px; border: 0; width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,.12); color: #fff; font-size: 34px; cursor: pointer;
}
.fade-up { opacity: 0; transform: translateY(22px); 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: 980px) {
  .split, .program-grid, .benefits-grid, .social-grid, .contact-grid, .gallery-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: clamp(42px, 9vw, 72px); }
  .menu {
    position: absolute; top: 100%; left: 0; right: 0; background: rgba(246,236,231,.98); padding: 16px;
    display: none; flex-direction: column; border-bottom: 1px solid rgba(141, 21, 24, 0.08);
  }
  .menu.open { display: flex; }
  .nav-toggle { display: block; }
}
@media (max-width: 720px) {
  .topbar { flex-direction: column; gap: 6px; text-align: center; }
  .hero { min-height: 74svh; }
  .hero-copy { padding: 24px; }
  .section { padding: 72px 0; }
  .split, .program-grid, .benefits-grid, .social-grid, .contact-grid, .gallery-grid { grid-template-columns: 1fr; }
  .brand { font-size: 30px; }
  .soft, .contact-card, .social-card, .program-card { padding: 24px; }
  .highlight img, .video-frame iframe { min-height: 300px; }
}
