:root {
  --blue: #77b8db;
  --pink: #ffbcbc;
  --green: #9cd3a5;
  --coral: #ff8282;
  --yellow: #ffd166;
  --cream: #fff9f2;
  --cream-2: #fff2e5;
  --navy: #1e2a4a;
  --text: #49506a;
  --muted: #717893;
  --white: #ffffff;
  --line: rgba(30, 42, 74, 0.12);
  --shadow: 0 24px 70px rgba(30, 42, 74, 0.14);
  --soft-shadow: 0 16px 42px rgba(30, 42, 74, 0.09);
  --radius: 28px;
  --radius-lg: 38px;
  --container: min(1180px, calc(100% - clamp(32px, 6vw, 96px)));
  --section: clamp(64px, 8vw, 132px);
  --header-height: 88px;
  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(16px, 1.1vw, 19px);
  line-height: 1.7;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 209, 102, 0.34), transparent 26rem),
    radial-gradient(circle at 90% 10%, rgba(119, 184, 219, 0.24), transparent 28rem),
    var(--cream);
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
:focus-visible { outline: 4px solid rgba(255, 130, 130, 0.5); outline-offset: 4px; }
::selection { background: var(--yellow); color: var(--navy); }

.container { width: var(--container); margin-inline: auto; }
.section { padding-block: var(--section); position: relative; }
.section-soft { background: linear-gradient(180deg, rgba(255,255,255,0.62), rgba(255,242,229,0.88)); }
.section-title { max-width: 760px; margin-bottom: clamp(28px, 5vw, 58px); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 14px; padding: 8px 14px; border-radius: 999px;
  color: var(--navy); background: rgba(255,255,255,.78); border: 1px solid var(--line);
  font-size: .85rem; font-weight: 900; letter-spacing: .04em; text-transform: uppercase;
  box-shadow: 0 10px 28px rgba(30,42,74,.06);
}
.eyebrow::before { content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--coral); box-shadow: 16px 0 0 var(--yellow), 32px 0 0 var(--green); }
h1, h2, h3, h4 { margin: 0 0 14px; font-family: "Baloo 2", "Nunito", sans-serif; color: var(--navy); line-height: 1.08; letter-spacing: -.02em; font-weight: 700; }
h1 { font-size: clamp(3rem, 8vw, 7.4rem); }
h2 { font-size: clamp(2.25rem, 5vw, 4.7rem); }
h3 { font-size: clamp(1.45rem, 2.1vw, 2.15rem); }
h4 { font-size: 1.15rem; }
p { margin: 0 0 1rem; }
.lead { font-size: clamp(1.08rem, 1.6vw, 1.42rem); color: #59617e; max-width: 780px; }
.text-center { text-align: center; margin-inline: auto; }

.site-header { position: sticky; top: 0; z-index: 50; backdrop-filter: blur(18px); background: rgba(255, 249, 242, .83); border-bottom: 1px solid rgba(30,42,74,.08); }
.header-inner { width: var(--container); min-height: var(--header-height); margin-inline: auto; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: #6b3f72; font-weight: 800; }
.brand img { width: 58px; height: 58px; background: transparent; }
.brand span { display: grid; line-height: 1.05; font-family: "Baloo 2", "Nunito", sans-serif; letter-spacing: -.02em; }
.brand strong { font-size: 1.05rem; }
.brand small { font-size: .68rem; font-weight: 800; color: #9a6aa0; letter-spacing: .08em; text-transform: uppercase; }
.nav-toggle { display: none; width: 48px; height: 48px; border: 0; border-radius: 16px; color: var(--navy); background: var(--white); box-shadow: var(--soft-shadow); cursor: pointer; }
.nav-toggle span, .nav-toggle::before, .nav-toggle::after { content: ""; display: block; width: 22px; height: 3px; margin: 5px auto; border-radius: 99px; background: currentColor; transition: transform .25s ease, opacity .25s ease; }
.menu-open .nav-toggle span { opacity: 0; }
.menu-open .nav-toggle::before { transform: translateY(8px) rotate(45deg); }
.menu-open .nav-toggle::after { transform: translateY(-8px) rotate(-45deg); }
.primary-nav { display: flex; align-items: center; gap: 8px; }
.primary-nav a { padding: 12px 13px; border-radius: 999px; font-weight: 900; color: var(--navy); font-size: .92rem; transition: background .2s ease, transform .2s ease; }
.primary-nav a:hover, .primary-nav a[aria-current="page"] { background: rgba(255,255,255,.92); transform: translateY(-1px); }
.header-actions { display: flex; align-items: center; gap: 12px; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 52px; padding: 13px 22px; border: 0; border-radius: 999px; font-weight: 800; color: var(--navy); background: var(--white); box-shadow: var(--soft-shadow); cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.btn-primary { background: linear-gradient(135deg, var(--yellow), var(--coral)); color: var(--navy); }
.btn-blue { background: linear-gradient(135deg, #bde9ff, var(--blue)); }
.btn-outline { border: 2px solid rgba(30,42,74,.13); background: rgba(255,255,255,.58); }

.hero { padding: clamp(58px, 8vw, 120px) 0 clamp(56px, 7vw, 98px); overflow: clip; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(360px, .92fr); gap: clamp(36px, 6vw, 88px); align-items: center; }
.hero-copy { position: relative; z-index: 1; }
.hero h1 span { display: inline-block; color: var(--coral); text-shadow: 0 8px 0 rgba(255, 209, 102, .38); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.badge { display: inline-flex; align-items: center; gap: 8px; padding: 10px 14px; border-radius: 999px; background: rgba(255,255,255,.8); color: var(--navy); font-weight: 900; box-shadow: 0 10px 30px rgba(30,42,74,.08); }
.badge-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--green); }
.hero-art { position: relative; min-height: clamp(430px, 44vw, 650px); }
.photo-blob { position: absolute; overflow: hidden; border: 10px solid var(--white); box-shadow: var(--shadow); background: var(--white); }
.photo-blob img { width: 100%; height: 100%; object-fit: cover; }
.photo-main { inset: 3% 6% 18% 8%; border-radius: 46% 54% 46% 54% / 54% 38% 62% 46%; animation: floaty 7s ease-in-out infinite; }
.photo-top { width: 38%; height: 32%; right: 0; top: 0; border-radius: 52% 48% 65% 35% / 45% 65% 35% 55%; animation: floaty 6s ease-in-out infinite reverse; }
.photo-bottom { width: 45%; height: 34%; left: 0; bottom: 2%; border-radius: 42% 58% 45% 55% / 62% 42% 58% 38%; animation: floaty 8s ease-in-out infinite; }
.shape-sun { position: absolute; right: 14%; bottom: 12%; width: 108px; height: 108px; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 0 18px rgba(255,209,102,.25); }
.shape-ring { position: absolute; left: 7%; top: 10%; width: 76px; height: 76px; border-radius: 50%; border: 16px solid var(--green); }

@keyframes floaty { 0%,100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-14px) rotate(1.5deg); } }

.trust-strip { margin-top: 18px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.trust-card, .card, .info-card, .feature-card, .timeline-card, .contact-card, .page-card { border: 1px solid rgba(30,42,74,.08); background: rgba(255,255,255,.78); border-radius: var(--radius); box-shadow: var(--soft-shadow); }
.trust-card { padding: 20px; display: flex; align-items: center; gap: 14px; color: var(--navy); font-weight: 800; }
.trust-icon, .card-icon { display: grid; place-items: center; flex: 0 0 auto; width: 52px; height: 52px; border-radius: 18px; background: var(--yellow); font-size: 1.4rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(18px, 3vw, 28px); }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(18px, 3vw, 28px); }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(16px, 2vw, 24px); }
.card, .info-card, .feature-card, .page-card { padding: clamp(22px, 3vw, 34px); position: relative; overflow: hidden; }
.card::after { content: ""; position: absolute; right: -38px; bottom: -48px; width: 128px; height: 128px; border-radius: 50%; background: rgba(255,209,102,.32); }
.card:nth-child(2n)::after { background: rgba(119,184,219,.28); }
.card:nth-child(3n)::after { background: rgba(156,211,165,.32); }
.card-icon { margin-bottom: 18px; background: rgba(255,209,102,.7); }
.card p, .info-card p { position: relative; z-index: 1; }
.color-pink { background: linear-gradient(145deg, rgba(255,188,188,.92), rgba(255,255,255,.72)); }
.color-blue { background: linear-gradient(145deg, rgba(119,184,219,.86), rgba(255,255,255,.72)); }
.color-green { background: linear-gradient(145deg, rgba(156,211,165,.86), rgba(255,255,255,.72)); }
.color-yellow { background: linear-gradient(145deg, rgba(255,209,102,.82), rgba(255,255,255,.72)); }
.color-coral { background: linear-gradient(145deg, rgba(255,130,130,.82), rgba(255,255,255,.72)); }

.feature-list { display: grid; gap: 12px; margin: 20px 0 0; padding: 0; list-style: none; }
.feature-list li { display: flex; gap: 12px; align-items: flex-start; font-weight: 800; color: var(--navy); }
.feature-list li::before { content: ""; margin-top: .55em; width: 10px; height: 10px; border-radius: 50%; background: var(--coral); flex: 0 0 auto; }

.timeline { display: grid; gap: 14px; }
.timeline-card { display: grid; grid-template-columns: 130px 1fr; gap: 20px; padding: 18px; align-items: center; background: rgba(255,255,255,.82); }
.timeline-card time { color: var(--navy); font-weight: 700; font-family: "Baloo 2", "Nunito", sans-serif; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-item { border: 0; padding: 0; border-radius: 26px; overflow: hidden; background: var(--white); box-shadow: var(--soft-shadow); cursor: pointer; aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:nth-child(5n+1) { border-radius: 42% 58% 48% 52% / 56% 42% 58% 44%; }
.gallery-item:nth-child(5n+2) { border-radius: 28px 64px 28px 52px; }

.cta { padding: clamp(44px, 6vw, 72px); border-radius: var(--radius-lg); background: linear-gradient(135deg, var(--blue), var(--green) 52%, var(--yellow)); box-shadow: var(--shadow); color: var(--navy); display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; overflow: hidden; position: relative; }
.cta::after { content: ""; position: absolute; right: -70px; top: -70px; width: 220px; height: 220px; border-radius: 50%; background: rgba(255,255,255,.25); }
.cta > * { position: relative; z-index: 1; }
.site-footer { padding: 56px 0 28px; background: #142039; color: rgba(255,255,255,.78); }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 32px; }
.footer-grid h3, .footer-grid h4 { color: var(--white); }
.footer-grid a { display: inline-block; color: rgba(255,255,255,.82); margin: 4px 0; }
.footer-brand { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 16px; color: var(--white); text-decoration: none; }
.footer-brand img { width: 58px; height: 58px; background: transparent; }
.footer-brand span { display: grid; line-height: 1.05; font-family: "Baloo 2", "Nunito", sans-serif; letter-spacing: -.02em; }
.footer-brand strong { font-size: 1.05rem; }
.footer-brand small { font-size: .68rem; font-weight: 800; color: rgba(255,255,255,.62); letter-spacing: .08em; text-transform: uppercase; }
.footer-bottom { margin-top: 36px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: .9rem; }

.page-hero { padding: clamp(52px, 7vw, 100px) 0; background: linear-gradient(135deg, rgba(255,209,102,.38), rgba(119,184,219,.18)); }
.page-hero-grid { display: grid; grid-template-columns: 1fr .55fr; gap: 36px; align-items: center; }
.page-hero img { border: 10px solid var(--white); border-radius: 44px; aspect-ratio: 4/3; object-fit: cover; box-shadow: var(--shadow); }
.rich-text { max-width: 920px; }
.rich-text h2, .rich-text h3 { margin-top: 1.4em; }
.rich-text ul { padding-left: 1.2rem; }
.rich-text li { margin-bottom: .6rem; }
.model-grid { display: grid; gap: 20px; }
.contact-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 28px; align-items: start; }
.contact-card { padding: clamp(22px, 3vw, 34px); }
.contact-list { display: grid; gap: 18px; margin: 0; padding: 0; list-style: none; }
.contact-list li { padding: 18px; border-radius: 22px; background: rgba(255,249,242,.9); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.form-field { display: grid; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
label { font-weight: 800; color: var(--navy); }
input, textarea { width: 100%; border: 2px solid rgba(30,42,74,.1); border-radius: 18px; padding: 14px 16px; background: var(--white); color: var(--navy); }
textarea { min-height: 150px; resize: vertical; }
.honeypot { position: absolute; left: -9999px; }
.form-status { margin-top: 14px; font-weight: 900; }
.map-frame { width: 100%; min-height: 360px; border: 0; border-radius: var(--radius); box-shadow: var(--soft-shadow); }

.lightbox { border: 0; padding: 0; background: transparent; max-width: min(92vw, 1180px); width: max-content; }
.lightbox::backdrop { background: rgba(20,32,57,.82); backdrop-filter: blur(7px); }
.lightbox-inner { position: relative; padding: 16px; border-radius: 30px; background: var(--white); box-shadow: var(--shadow); }
.lightbox img { max-height: 82vh; width: auto; border-radius: 20px; }
.lightbox-close { position: absolute; right: 8px; top: 8px; width: 42px; height: 42px; border: 0; border-radius: 50%; background: var(--coral); color: var(--navy); font-weight: 800; cursor: pointer; }

@media (max-width: 1120px) {
  .primary-nav { position: fixed; inset: var(--header-height) 16px auto; display: grid; gap: 8px; padding: 18px; border-radius: 24px; background: rgba(255,255,255,.96); box-shadow: var(--shadow); transform: translateY(-18px); opacity: 0; pointer-events: none; transition: opacity .22s ease, transform .22s ease; }
  .menu-open .primary-nav { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-toggle { display: block; }
  .header-actions .btn { display: none; }
  .hero-grid, .page-hero-grid, .contact-layout { grid-template-columns: 1fr; }
  .trust-strip, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  :root { --header-height: 76px; --container: min(100% - 28px, 1180px); }
  .brand img { width: 48px; height: 48px; }
  .brand strong { font-size: .92rem; }
  .hero-art { min-height: 370px; }
  .grid-2, .grid-3, .gallery-grid, .trust-strip, .grid-4, .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline-card { grid-template-columns: 1fr; gap: 4px; }
  .cta { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
}
@media (min-width: 1600px) {
  :root { --container: min(1440px, calc(100% - 140px)); }
  .primary-nav a { font-size: 1rem; padding-inline: 16px; }
}
@media (min-width: 2200px) {
  :root { --container: min(1780px, calc(100% - 220px)); }
  body { font-size: 22px; }
  .hero-grid { grid-template-columns: 1fr .9fr; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
}
