:root {
  --purple: #7a57b6;
  --purple-dark: #56358f;
  --cyan: #26c7d7;
  --orange: #f3a43b;
  --cream: #fffaf5;
  --ink: #2d2b35;
  --muted: #676571;
  --line: rgba(86,53,143,.12);
  --shadow: 0 20px 50px rgba(56, 34, 97, 0.14);
  --radius: 26px;
  --container: min(1180px, calc(100% - 2rem));
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Nunito', system-ui, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(243,164,59,.13), transparent 28%),
    radial-gradient(circle at bottom right, rgba(38,199,215,.14), transparent 32%),
    var(--cream);
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
.container { width: var(--container); margin: 0 auto; }
.skip-link { position: absolute; left: -999px; top: 0; background: #111; color: #fff; padding: .75rem 1rem; z-index: 1000; }
.skip-link:focus { left: 1rem; }
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.84);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: .9rem 0;
}
.brand { display: flex; align-items: center; gap: .8rem; min-width: 0; }
.brand img {
  width: 58px; height: 58px; object-fit: cover; border-radius: 18px; background: #fff;
  box-shadow: var(--shadow);
}
.brand strong {
  display: block; font-family: 'Baloo 2', cursive; font-size: 1.6rem; color: var(--purple-dark); line-height: .95;
}
.brand span { color: var(--muted); font-weight: 700; }
.nav {
  display: flex; justify-content: center; gap: .4rem; flex-wrap: wrap;
}
.nav a {
  padding: .75rem 1rem; border-radius: 999px; font-weight: 800; color: var(--purple-dark);
}
.nav a:hover, .nav a:focus-visible { background: rgba(38,199,215,.14); }
.lang-switch {
  display: inline-flex; gap: .35rem; padding: .3rem; border-radius: 999px; background: rgba(86,53,143,.08);
}
.lang-btn {
  border: 0; background: transparent; color: var(--purple-dark); border-radius: 999px; padding: .55rem .8rem; font-weight: 800; cursor: pointer;
}
.lang-btn.active { background: linear-gradient(135deg, var(--purple), var(--cyan)); color: #fff; }
.menu-toggle {
  display: none; border: 0; background: rgba(86,53,143,.08); color: var(--purple-dark); width: 48px; height: 48px; border-radius: 14px; font-size: 1.3rem; cursor: pointer;
}
.hero {
  position: relative; overflow: hidden; min-height: 88vh; display: flex; align-items: center;
}
.hero-media {
  position: absolute; inset: 0;
}
.hero-media img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(33,22,50,.78) 0%, rgba(33,22,50,.56) 37%, rgba(33,22,50,.26) 62%, rgba(33,22,50,.12) 100%),
    linear-gradient(180deg, rgba(86,53,143,.18), rgba(38,199,215,.16));
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(280px, .7fr); gap: 1.5rem; align-items: end;
  padding: 5.5rem 0 4rem;
}
.card-glass {
  background: rgba(255,255,255,.88); border: 1px solid rgba(255,255,255,.55); border-radius: 30px; box-shadow: var(--shadow); backdrop-filter: blur(12px);
}
.hero-copy { max-width: 700px; padding: clamp(1.5rem, 3vw, 3rem); }
.eyebrow {
  display: inline-flex; padding: .45rem .9rem; border-radius: 999px; background: rgba(86,53,143,.10); color: var(--purple-dark); font-weight: 800; text-transform: uppercase; letter-spacing: .04em; font-size: .88rem;
}
.hero-copy h1, .section-heading h2, .story-copy h2, .contact-info h2 {
  font-family: 'Baloo 2', cursive; line-height: .95; letter-spacing: -.02em;
}
.hero-copy h1 {
  margin: .8rem 0 1rem; font-size: clamp(2.8rem, 6vw, 5.6rem); color: var(--purple-dark);
}
.hero-copy p { margin: 0; font-size: 1.1rem; color: var(--ink); max-width: 58ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin: 1.5rem 0 1rem; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; border: 0; border-radius: 999px; padding: .95rem 1.3rem; font-weight: 800; cursor: pointer; box-shadow: var(--shadow); transition: transform .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--orange), #ffd066); color: #4d3100; }
.btn-secondary { background: linear-gradient(135deg, var(--purple), var(--cyan)); color: #fff; }
.hero-mini-list {
  display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1rem;
}
.hero-mini-list span {
  display: inline-flex; align-items: center; padding: .55rem .85rem; border-radius: 999px; background: rgba(255,255,255,.76); border: 1px solid rgba(86,53,143,.12); font-weight: 800; color: var(--purple-dark);
}
.hero-side {
  padding: 1.4rem; display: grid; gap: .9rem; align-self: stretch;
}
.hero-side img {
  width: 112px; height: 112px; object-fit: contain; background: #fff; border-radius: 22px; padding: .5rem;
}
.hero-side h2 { margin: 0; font-family: 'Baloo 2', cursive; color: var(--purple-dark); font-size: 2rem; line-height: .98; }
.hero-side p { margin: 0; color: var(--muted); }
.mini-link { color: var(--purple-dark); font-weight: 800; }
.intro-strip {
  margin-top: -2rem; position: relative; z-index: 2;
}
.intro-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
.intro-item {
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); border-radius: 24px; padding: 1.2rem 1.25rem;
}
.intro-item strong { display: block; color: var(--purple-dark); margin-bottom: .35rem; }
.intro-item span { color: var(--muted); }
.section { padding: 5.4rem 0; }
.section.alt { background: rgba(122,87,182,.05); }
.section-heading { max-width: 760px; text-align: center; margin: 0 auto 2.2rem; }
.section-heading h2, .story-copy h2, .contact-info h2 {
  margin: .7rem 0 .8rem; font-size: clamp(2.2rem, 4.2vw, 3.6rem); color: var(--purple-dark);
}
.section-heading p, .story-copy p, .contact-info p { color: var(--muted); font-size: 1.04rem; }
.cards-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
}
.service-card, .card-soft, .social-card, .embed-card, .contact-card, .contact-form, .map-card {
  background: rgba(255,255,255,.9); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow);
}
.service-card { padding: 1.45rem; }
.icon-badge {
  width: 56px; height: 56px; display: grid; place-items: center; border-radius: 18px; background: linear-gradient(135deg, rgba(38,199,215,.18), rgba(243,164,59,.18)); font-size: 1.7rem; margin-bottom: .85rem;
}
.service-card h3, .social-card h3, .embed-card h3, .contact-form h3 { margin: 0 0 .5rem; color: var(--purple-dark); }
.service-card p, .social-card p, .embed-card p { margin: 0; color: var(--muted); }
.story-grid, .contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; align-items: center;
}
.feature-list {
  list-style: none; padding: 0; margin: 1.2rem 0 0; display: grid; gap: .8rem;
}
.feature-list li { position: relative; padding-left: 1.7rem; font-weight: 700; }
.feature-list li::before { content: '✓'; position: absolute; left: 0; top: 0; color: var(--cyan); font-weight: 900; }
.card-soft { padding: .9rem; }
.card-soft img { width: 100%; border-radius: 22px; }
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: .9rem;
}
.gallery-item {
  border: 0; background: transparent; padding: 0; border-radius: 22px; overflow: hidden; cursor: pointer; box-shadow: var(--shadow);
}
.gallery-item img {
  width: 100%; aspect-ratio: 1 / 1; object-fit: cover; transition: transform .3s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.social-grid, .embed-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.social-card { display: flex; align-items: center; gap: 1rem; padding: 1.2rem; }
.social-card img, .fallback-card img {
  width: 72px; height: 72px; object-fit: cover; border-radius: 20px; background: #fff; flex: 0 0 auto;
}
.embed-card { padding: 1rem; overflow: hidden; }
.embed-card iframe {
  width: 100%; max-width: 100%; border-radius: 18px; background: #fff;
}
.fallback-card { display: grid; place-items: start; gap: .8rem; min-height: 100%; align-content: center; }
.video-frame {
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); border-radius: 28px; padding: .8rem;
}
.video-frame iframe { width: 100%; min-height: min(72vh, 680px); border: 0; border-radius: 20px; }
.contact-info { align-self: start; }
.contact-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; margin-top: 1rem;
}
.contact-card { padding: 1.2rem; }
.contact-card strong { display: block; color: var(--purple-dark); margin-bottom: .3rem; }
.contact-card span { color: var(--muted); }
.contact-form { padding: 1.4rem; display: grid; gap: .95rem; }
.contact-form label { display: grid; gap: .35rem; font-weight: 700; color: var(--purple-dark); }
.contact-form input, .contact-form textarea {
  width: 100%; border: 1px solid rgba(86,53,143,.18); border-radius: 16px; padding: .95rem 1rem; color: var(--ink); background: #fff;
}
.full-btn { width: 100%; }
.map-section { padding: 0 0 5rem; }
.map-card { overflow: hidden; }
.map-card iframe { width: 100%; min-height: 420px; border: 0; display: block; }
.site-footer { background: #231836; color: rgba(255,255,255,.92); }
.footer-wrap { text-align: center; padding: 1.2rem 0; }
.footer-wrap a { color: #8be6ee; }
.whatsapp-float {
  position: fixed; right: 1rem; bottom: 1rem; width: 64px; height: 64px; border-radius: 50%; z-index: 80; display: grid; place-items: center;
  background: linear-gradient(135deg, #2de276, #11b55a); box-shadow: 0 18px 40px rgba(17,181,90,.34);
}
.whatsapp-float svg { width: 34px; fill: #fff; }
.lightbox {
  position: fixed; inset: 0; background: rgba(15, 11, 23, .88); display: none; place-items: center; padding: 1rem; z-index: 100;
}
.lightbox.active { display: grid; }
.lightbox-image { max-width: min(960px, 100%); max-height: 85vh; border-radius: 24px; box-shadow: var(--shadow); }
.lightbox-close {
  position: absolute; top: 1rem; right: 1rem; width: 52px; height: 52px; border: 0; border-radius: 50%; font-size: 2rem; cursor: pointer; background: rgba(255,255,255,.14); color: #fff;
}

@media (max-width: 1080px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-grid, .story-grid, .contact-grid, .social-grid, .embed-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
}
@media (max-width: 860px) {
  .nav-wrap { grid-template-columns: auto auto auto; }
  .menu-toggle { display: inline-grid; place-items: center; }
  .nav {
    display: none; position: absolute; left: 1rem; right: 1rem; top: calc(100% + .5rem); background: rgba(255,255,255,.96); border: 1px solid var(--line); border-radius: 24px; padding: .8rem; box-shadow: var(--shadow);
  }
  .nav.open { display: grid; justify-content: stretch; }
  .nav a { text-align: center; }
}
@media (max-width: 720px) {
  .brand strong { font-size: 1.35rem; }
  .hero-grid { padding: 5rem 0 3rem; }
  .hero-copy h1 { font-size: clamp(2.3rem, 12vw, 4rem); }
  .intro-grid, .cards-grid, .gallery-grid, .contact-cards { grid-template-columns: 1fr; }
  .section { padding: 4.3rem 0; }
  .hero-side img { width: 90px; height: 90px; }
  .hero-side h2 { font-size: 1.7rem; }
  .video-frame iframe { min-height: 300px; }
  .map-card iframe { min-height: 320px; }
  .whatsapp-float { width: 58px; height: 58px; }
}
