/* The Prodigies — static site styles */
:root {
  --bg: #fdfaf3;
  --fg: #2c2620;
  --muted: #6c6255;
  --card: #ffffff;
  --border: #e8e0d2;
  --primary: #1f8a7d;
  --primary-fg: #ffffff;
  --sun: #f2b544;
  --sun-fg: #3a2c10;
  --berry: #d64d5a;
  --panel: linear-gradient(135deg, #fbf1dd, #e6f4f2);
  --shadow: 0 1px 2px rgba(60, 45, 25, 0.05), 0 12px 30px -12px rgba(60, 45, 25, 0.18);
  --shadow-lift: 0 24px 60px -24px rgba(60, 45, 25, 0.35);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
h1, h2, h3 { font-family: Fraunces, Georgia, serif; font-weight: 600; letter-spacing: -0.02em; line-height: 1.15; margin: 0; }
h1 { font-size: clamp(2.2rem, 6vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 4vw, 2.4rem); }
h3 { font-size: 1.4rem; }
p { margin: 0; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 20px; }
.section { padding: 72px 0; }


.contact-hero .hero-grid {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}
.contact-hero .cta-row {
  justify-content: center;
}
.contact-hero .muted {
  margin-left: auto;
  margin-right: auto;
}



.surface { background: var(--card); border: 1px solid var(--border); box-shadow: var(--shadow); border-radius: var(--radius); }
.muted { color: var(--muted); }
.eyebrow { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--primary); }
.stack > * + * { margin-top: 16px; }
.lift { transition: transform .35s cubic-bezier(.2,.7,.3,1), box-shadow .35s ease; }
.lift:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }

.btn {
  display: inline-block; border-radius: 999px; padding: 13px 26px;
  font-size: 1rem; font-weight: 600; cursor: pointer; border: 1px solid transparent;
  transition: transform .2s ease, opacity .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--primary); color: var(--primary-fg); }
.btn-ghost { background: var(--card); border-color: var(--border); color: var(--fg); }
.btn-sun { background: var(--sun); color: var(--sun-fg); }

/* Header */
/* .header { position: sticky; top: 0; z-index: 50; background: rgba(253,250,243,.88); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 20px; max-width: 1120px; margin: 0 auto; } */

.header { position: sticky; top: 0; z-index: 50; background: rgba(253,250,243,.88); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 12px 16px; max-width: 1120px; margin: 0 auto; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark { width: 100px; height: 100px; border-radius: 14px; object-fit: contain; display: block; }
.brand-name { font-family: Fraunces, serif; font-size: 2rem; display: block; }
.brand-tag { font-size: 0.9rem; color: var(--muted); display: block; }
.nav { display: flex; align-items: center; gap: 6px; }
.nav a { padding: 9px 16px; border-radius: 999px; font-size: 0.9rem; font-weight: 500; color: var(--muted); }
.nav a:hover, .nav a.active { background: #f2ead9; color: var(--fg); }
.nav .btn { margin-left: 8px; }
.menu-btn { display: none; background: none; border: 1px solid var(--border); border-radius: 12px; padding: 9px 12px; font-size: 0.8rem; cursor: pointer; }
.mobile-nav { display: none; flex-direction: column; gap: 4px; padding: 8px 20px 16px; border-top: 1px solid var(--border); background: var(--bg); }
.mobile-nav.open { display: flex; }
.mobile-nav a { padding: 12px; border-radius: 12px; font-weight: 500; }
.mobile-nav .btn { text-align: center; }

@media (max-width: 820px) {
  .nav { display: none; }
  .menu-btn { display: block; }
}

/* Hero */
.hero-grid { display: grid; gap: 48px; align-items: center; padding: 64px 0; }
@media (min-width: 900px) { .hero-grid { grid-template-columns: 1fr 1fr; padding: 88px 0; } }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }


#gallery-slider {
  margin-top: 40px;
}


/* Slider */
.slider { position: relative; width: 70%; aspect-ratio: 4/3; overflow: hidden; border-radius: var(--radius); align-items: center; justify-content: center; margin: 0 auto; }
.slider img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .7s ease; }
.slider img.active { opacity: 1; }
.slider button { position: absolute; top: 50%; transform: translateY(-50%); width: 40px; height: 40px; border-radius: 999px; border: none; background: rgba(255,255,255,.9); cursor: pointer; font-size: 1.1rem; }
.slider .prev { left: 12px; }
.slider .next { right: 12px; }
.dots { position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; }
.dots span { width: 8px; height: 8px; border-radius: 999px; background: rgba(255,255,255,.85); transition: all .3s ease; }
.dots span.active { width: 24px; background: var(--primary); }

/* Grids */
.grid { display: grid; gap: 24px; }
.g2 { grid-template-columns: 1fr; }
.g3 { grid-template-columns: 1fr; }
.g4 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .g3 { grid-template-columns: repeat(3, 1fr); } .g4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .g2 { grid-template-columns: 1fr 1fr; } .g4 { grid-template-columns: repeat(4, 1fr); } }

.card { padding: 30px; }
.card ul li { display: flex; gap: 10px; color: var(--muted); }
.card ul li + li { margin-top: 12px; }
.card ul li::before { content: "•"; color: var(--berry); font-weight: 700; }

.founder { display: grid; gap: 36px; }
@media (min-width: 900px) { .founder { grid-template-columns: 2fr 3fr; } }
.founder img { aspect-ratio: 3/4; object-fit: cover; width: 100%; border-radius: var(--radius); }

.square { aspect-ratio: 1/1; object-fit: cover; width: 100%; border-radius: var(--radius); }
.portrait { aspect-ratio: 4/5; object-fit: cover; width: 100%; border-radius: var(--radius); }
.wide { aspect-ratio: 4/3; object-fit: cover; width: 100%; border-radius: var(--radius); }

.stars { color: var(--sun); letter-spacing: 2px; }
figure { margin: 0; }
blockquote { margin: 16px 0 0; color: var(--muted); }
.highlights { margin-top: 16px; font-size: 0.88rem; color: var(--muted); }
.highlights b { color: var(--fg); font-size: 0.72rem; letter-spacing: .12em; }

.cta-band { text-align: center; padding: 56px 32px; border-radius: var(--radius); }

/* Contact */
.contact-card { padding: 26px; display: block; }
.contact-card .label { font-size: 0.7rem; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); margin-top: 14px; }
.contact-card .value { font-weight: 600; word-break: break-word; }
.map { width: 100%; height: 340px; border: 0; display: block; }
.socials { display: flex; gap: 12px; margin-top: 18px; }
.socials a { padding: 10px 18px; border-radius: 999px; background: #f2ead9; font-size: 0.85rem; font-weight: 600; }

/* Footer */
.footer { margin-top: 80px; border-top: 1px solid var(--border); }
.footer-grid { display: grid; gap: 36px; padding: 52px 20px; max-width: 1120px; margin: 0 auto; }
@media (min-width: 800px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }
.footer p, .footer a { font-size: 1.2rem; color: var(--muted); }
.footer h3 { font-size: 2rem; color: var(--fg); }
.footer .col > * + * { margin-top: 10px; }
.footer strong { color: var(--fg); font-size: 1.2rem; }
.copyright { border-top: 1px solid var(--border); text-align: center; padding: 18px; font-size: 0.82rem; color: var(--muted); }

/* Floating WhatsApp */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 60;
  background: #25d366; color: #fff; border-radius: 999px;
  padding: 14px 20px; font-weight: 700; font-size: 0.9rem;
  box-shadow: var(--shadow-lift);
}
