/* ==========================================================================
   Jojo Prints — stylesheet v2
   Visual language: bold violet + mint, soft gradient blobs, pill buttons,
   rounded cards, circular nav arrows. Inspired by modern POD/e-commerce UI.
   Change the palette from one place via the :root variables below.
   ========================================================================== */

:root {
  --purple: #6D28D9;
  --purple-dark: #4C1D95;
  --purple-light: #8B5CF6;
  --violet-tint: #F4F0FF;
  --mint: #2FD9A6;
  --mint-dark: #17B98A;
  --mint-tint: #E7FBF3;
  --pink-tint: #FCE7F3;
  --ink: #1E1533;
  --text-mid: #6B6580;
  --line: #ECE7F8;
  --paper: #FFFFFF;
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-pill: 999px;
  --shadow-card: 0 12px 32px rgba(109, 40, 217, 0.10);
  --shadow-pop: 0 18px 48px rgba(109, 40, 217, 0.18);
  --max-width: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', 'Open Sans', -apple-system, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Poppins', 'Montserrat', sans-serif;
  color: var(--ink);
  line-height: 1.2;
  margin: 0 0 0.5em;
  font-weight: 700;
}
h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: 1.1rem; }

p { color: var(--text-mid); margin: 0 0 1em; max-width: 65ch; }
a { color: var(--purple); text-decoration: none; }
img { max-width: 100%; display: block; }

/* Image loading component --------------------------------------------------
   Drop a photo in anywhere on the site with this markup:

     <div class="img-frame [ratio-16-9 | thumb | blob-1 ...]">
       <img src="assets/images/name.webp" alt="..." loading="lazy" decoding="async">
       <span class="img-fallback">Label</span>
     </div>

   While the image loads, the frame shimmers. If it loads, it fades in.
   If it 404s (image not added yet), js/script.js marks the frame
   .is-error and the label text above becomes the visible placeholder —
   no broken-image icon. See README.md for the full list of expected
   filenames (all .webp) to drop into assets/images/.
   ========================================================================== */
.img-frame { position: relative; overflow: hidden; background: var(--violet-tint); }
.img-frame img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0; transition: opacity 0.4s ease;
}
.img-frame img.is-loaded { opacity: 1; }
.img-frame .img-fallback {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 10px;
  font-size: 0.78rem; font-weight: 600; color: var(--purple);
  opacity: 0; transition: opacity 0.2s ease;
}
.img-frame.is-error .img-fallback { opacity: 1; }
.img-frame:not(.is-ready) {
  background: linear-gradient(100deg, var(--violet-tint) 8%, #EFE9FF 18%, var(--violet-tint) 33%);
  background-size: 200% 100%;
  animation: img-shimmer 1.4s ease-in-out infinite;
}
@keyframes img-shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
.img-frame.ratio-16-9 { aspect-ratio: 16/9; border-radius: 14px; margin-bottom: 14px; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
section { padding: 76px 0; position: relative; }
.section-tight { padding: 48px 0; }
.bg-mint { background: var(--mint-tint); }
.bg-violet { background: var(--violet-tint); }

.eyebrow-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 700;
  color: var(--purple);
  background: var(--violet-tint);
  border: 1px solid #E3D9FB;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

/* Buttons ---------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600; font-size: 0.95rem;
  padding: 13px 24px;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
  color: #fff;
  box-shadow: 0 10px 24px rgba(109,40,217,0.32);
}
.btn-primary:hover { box-shadow: 0 14px 30px rgba(109,40,217,0.4); }
.btn-mint { background: var(--mint); color: #093C31; }
.btn-mint:hover { background: var(--mint-dark); color: #fff; }
.btn-outline { background: #fff; border-color: var(--line); color: var(--ink); }
.btn-outline:hover { border-color: var(--purple); color: var(--purple); }
.btn-white { background: #fff; color: var(--purple); }
.btn-block { width: 100%; justify-content: center; }
.btn-sm { padding: 9px 18px; font-size: 0.85rem; }
.btn-arrow-circle {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(255,255,255,0.25);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.btn-outline .btn-arrow-circle { background: var(--violet-tint); color: var(--purple); }

/* Circular icon buttons (carousel arrows, socials) ------------------------*/
.icon-circle-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--purple);
  color: #fff;
  border: none;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(109,40,217,0.28);
  transition: transform 0.15s ease, background 0.15s ease;
  flex-shrink: 0;
}
.icon-circle-btn:hover { transform: scale(1.08); background: var(--purple-dark); }
.icon-circle-btn.ghost { background: #fff; color: var(--purple); border: 1px solid var(--line); box-shadow: none; }

/* Header ------------------------------------------------------------------ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; max-width: var(--max-width); margin: 0 auto; gap: 16px;
}
.logo { display: flex; align-items: center; gap: 10px; font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.25rem; color: var(--ink); flex-shrink: 0; }
.logo-mark {
  width: 38px; height: 38px; border-radius: 11px;
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.logo-mark svg { width: 21px; height: 21px; }
.logo span.accent { color: var(--purple); }

.nav-pill {
  display: flex; align-items: center; gap: 4px;
  background: var(--violet-tint);
  border-radius: var(--radius-pill);
  padding: 6px;
}
.nav-pill a {
  font-family: 'Poppins', sans-serif; font-weight: 500; font-size: 0.92rem;
  color: var(--ink); padding: 9px 18px; border-radius: var(--radius-pill);
  transition: background 0.15s, color 0.15s;
}
.nav-pill a:hover { color: var(--purple); }
.nav-pill a[aria-current="page"] {
  background: var(--purple); color: #fff;
  box-shadow: 0 6px 16px rgba(109,40,217,0.35);
}
@media (max-width: 899px) { .nav-pill { display: none; } }

.header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.header-cta { display: none; }
@media (min-width: 900px) { .header-cta { display: inline-flex; } }

.hamburger {
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 42px; height: 42px; background: var(--violet-tint);
  border: none; border-radius: 12px; cursor: pointer;
}
.hamburger span { width: 18px; height: 2px; background: var(--purple); margin: 0 auto; transition: transform 0.2s, opacity 0.2s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 900px) { .hamburger { display: none; } }

.mobile-nav {
  display: none; flex-direction: column;
  background: #fff; border-bottom: 1px solid var(--line);
  padding: 8px 24px 20px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { padding: 12px 4px; border-bottom: 1px solid var(--violet-tint); font-family: 'Poppins', sans-serif; font-weight: 500; }
.mobile-nav .btn { margin-top: 14px; }

/* Hero --------------------------------------------------------------------*/
.hero {
  padding: 56px 0 80px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(760px 480px at 8% 0%, var(--pink-tint) 0%, transparent 60%),
    radial-gradient(760px 480px at 95% 30%, var(--mint-tint) 0%, transparent 60%),
    linear-gradient(180deg, #FBFAFF 0%, #FFFFFF 100%);
}
.hero-grid { display: grid; gap: 40px; grid-template-columns: 1fr; align-items: center; }
@media (min-width: 980px) { .hero-grid { grid-template-columns: 1fr 1fr; } }
.hero-copy p.lead { font-size: 1.08rem; max-width: 46ch; }
.hero-copy h1 .accent { color: var(--purple); }
.hero-stats { display: flex; flex-wrap: wrap; gap: 14px 28px; margin: 22px 0 28px; }
.hero-stat { display: flex; align-items: center; gap: 8px; font-size: 0.86rem; font-weight: 600; color: var(--ink); }
.hero-stat .dot { width: 30px; height: 30px; border-radius: 9px; background: #fff; box-shadow: var(--shadow-card); display: flex; align-items: center; justify-content: center; color: var(--purple); flex-shrink: 0; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-visual { position: relative; min-height: 340px; }
.blob-photo {
  position: absolute;
  border-radius: 28px;
  box-shadow: var(--shadow-card);
  border: 1px solid #fff;
}
.blob-1 { width: 46%; aspect-ratio: 1; top: 0; right: 4%; border-radius: 50% 50% 42% 58% / 55% 45% 55% 45%; }
.blob-2 { width: 42%; aspect-ratio: 3/4; top: 6%; left: 0; }
.blob-3 { width: 44%; aspect-ratio: 1; bottom: 0; left: 8%; box-shadow: var(--shadow-pop); }
.blob-4 { width: 40%; aspect-ratio: 3/4; bottom: 2%; right: 0; }
.floating-badge {
  position: absolute; left: 50%; bottom: -6%; transform: translateX(-50%);
  background: #fff; border-radius: var(--radius-md);
  box-shadow: var(--shadow-pop); padding: 12px 18px;
  display: flex; align-items: center; gap: 10px;
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 0.85rem;
  white-space: nowrap; z-index: 2;
}
.floating-badge .icon-circle-btn { width: 34px; height: 34px; background: var(--mint); color: #093C31; box-shadow: none; }
@media (max-width: 640px) { .hero-visual { min-height: 260px; } .floating-badge { font-size: 0.72rem; padding: 9px 12px; bottom: -8%; } }

/* Section head -------------------------------------------------------------*/
.section-head-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 20px; margin-bottom: 34px; flex-wrap: wrap;
}
.section-head { max-width: 640px; }
.section-head.center { margin: 0 auto 44px; text-align: center; }

/* Carousel ------------------------------------------------------------------*/
.carousel-wrap { position: relative; }
.carousel-track {
  display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 6px; scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-track > * { scroll-snap-align: start; flex: 0 0 auto; width: 250px; }
.carousel-nav { display: none; }
@media (min-width: 860px) {
  .carousel-nav {
    display: flex; position: absolute; top: 50%; transform: translateY(-50%);
    z-index: 3;
  }
  .carousel-nav.prev { left: -22px; }
  .carousel-nav.next { right: -22px; }
}

/* Product / service cards --------------------------------------------------*/
.product-card {
  background: #fff; border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.product-card:hover { box-shadow: var(--shadow-card); transform: translateY(-4px); }
.product-card .thumb { aspect-ratio: 4/3.2; }
.product-card .card-body { padding: 16px 16px 18px; }
.product-card h3 { font-size: 0.98rem; margin-bottom: 6px; }
.product-card .price-row { display: flex; align-items: center; justify-content: space-between; margin: 8px 0 14px; }
.product-card .price { font-family: 'Poppins', sans-serif; font-weight: 700; color: var(--purple); font-size: 0.95rem; }
.product-card .card-actions { display: flex; align-items: center; gap: 10px; }
.product-card .card-actions .btn { flex: 1; }
.product-card .card-actions .icon-circle-btn { width: 40px; height: 40px; }

/* Grid of cards (non-carousel pages) ----------------------------------------*/
.card-grid { display: grid; gap: 22px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

.service-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 26px 22px; transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.service-card:hover { box-shadow: var(--shadow-card); transform: translateY(-3px); }
.service-card .icon-box {
  width: 50px; height: 50px; border-radius: 14px;
  background: var(--violet-tint); color: var(--purple);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.service-card ul { padding-left: 18px; margin: 10px 0 0; color: var(--text-mid); font-size: 0.9rem; }
.service-card li { margin-bottom: 4px; }

/* Feature list ----------------------------------------------------------- */
.feature-list { display: grid; gap: 26px; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.feature-item { display: flex; gap: 16px; }
.feature-item .icon-box { width: 46px; height: 46px; border-radius: 13px; background: var(--mint-tint); color: var(--mint-dark); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* Process steps -------------------------------------------------------------*/
.process-track { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 24px; }
.process-step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px 22px; }
.process-step .step-badge {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  color: #fff; font-family: 'Poppins', sans-serif; font-weight: 700;
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
}

/* FAQ accordion ---------------------------------------------------------- */
.faq-layout { display: grid; gap: 32px; grid-template-columns: 1fr; }
@media (min-width: 900px) { .faq-layout { grid-template-columns: 1.6fr 1fr; align-items: start; } }
.faq-item {
  background: #F8F6FE; border-radius: var(--radius-md);
  margin-bottom: 12px; overflow: hidden;
  transition: background 0.2s ease;
}
.faq-item.open { background: linear-gradient(135deg, var(--purple), var(--purple-dark)); }
.faq-question {
  width: 100%; background: none; border: none; text-align: left; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 18px 20px; font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 0.95rem;
  color: var(--ink);
}
.faq-item.open .faq-question { color: #fff; }
.faq-toggle-icon { width: 26px; height: 26px; border-radius: 50%; background: #fff; color: var(--purple); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-weight: 700; }
.faq-item.open .faq-toggle-icon { background: rgba(255,255,255,0.2); color: #fff; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.25s ease, padding 0.25s ease; padding: 0 20px; }
.faq-item.open .faq-answer { max-height: 220px; padding: 0 20px 18px; }
.faq-answer p { color: var(--text-mid); margin: 0; font-size: 0.9rem; }
.faq-item.open .faq-answer p { color: #EDE6FB; }

.faq-cta-card {
  background: linear-gradient(150deg, var(--purple) 0%, var(--purple-dark) 100%);
  border-radius: var(--radius-lg); padding: 34px 26px; text-align: center; color: #fff;
}
.faq-cta-card .icon-circle-btn { background: rgba(255,255,255,0.18); width: 56px; height: 56px; margin: 0 auto 16px; }
.faq-cta-card h3 { color: #fff; }
.faq-cta-card p { color: #E3D9FB; font-size: 0.9rem; }

/* Tips / insight cards -------------------------------------------------------*/
.tip-card { background: #fff; border-radius: var(--radius-lg); border: 1px solid var(--line); overflow: hidden; transition: box-shadow .2s ease, transform .2s ease; }
.tip-card:hover { box-shadow: var(--shadow-card); transform: translateY(-3px); }
.tip-card .thumb { aspect-ratio: 16/10; }
.tip-card .tip-num {
  position: absolute; top: 14px; left: 14px;
  background: var(--purple); color: #fff; font-family: 'Poppins', sans-serif; font-weight: 700;
  width: 40px; height: 40px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 0.85rem;
}
.tip-card .card-body { padding: 18px 20px 22px; }
.tip-card .tag { color: var(--mint-dark); font-weight: 700; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.03em; }
.tip-card h3 { margin: 8px 0 8px; font-size: 1rem; }

/* Logo strip ----------------------------------------------------------------*/
.logo-strip { display: flex; flex-wrap: wrap; gap: 40px; align-items: center; justify-content: center; opacity: 0.6; }
.logo-strip span { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.1rem; color: var(--text-mid); }

/* CTA band ------------------------------------------------------------------*/
.cta-band {
  background: linear-gradient(120deg, #4C6FE0 0%, var(--purple) 100%);
  color: #fff; padding: 44px 32px; border-radius: 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.cta-band-left { display: flex; align-items: center; gap: 18px; }
.cta-band-icon { width: 56px; height: 56px; border-radius: 16px; background: rgba(255,255,255,0.18); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cta-band h2 { color: #fff; margin-bottom: 4px; font-size: 1.4rem; }
.cta-band p { color: #E3E9FF; margin: 0; }

/* Footer --------------------------------------------------------------------*/
.site-footer { background: linear-gradient(160deg, var(--purple-dark) 0%, #34115F 100%); color: #D9CEF2; padding: 60px 0 26px; margin-top: 84px; }
.footer-grid { display: grid; gap: 36px; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.site-footer h4 { color: #fff; font-size: 1rem; }
.site-footer a { color: #D9CEF2; }
.site-footer a:hover { color: var(--mint); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 10px; font-size: 0.9rem; }
.footer-socials { display: flex; gap: 10px; margin-top: 16px; }
.footer-socials a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; }
.footer-socials a:hover { background: var(--mint); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); margin-top: 40px; padding-top: 22px; font-size: 0.82rem; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; color: #B7A8DD; }

/* WhatsApp floating button ------------------------------------------------- */
.whatsapp-float {
  position: fixed; bottom: 22px; right: 22px; z-index: 200;
  background: #25D366; color: #fff; width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(37,211,102,0.45);
  transition: transform 0.2s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 28px; height: 28px; }

/* Page header (interior pages) ------------------------------------------- */
.page-header {
  padding: 60px 0 46px;
  background:
    radial-gradient(600px 300px at 90% -20%, var(--mint-tint) 0%, transparent 60%),
    radial-gradient(600px 300px at 0% 0%, var(--pink-tint) 0%, transparent 60%),
    var(--violet-tint);
  border-bottom: 1px solid var(--line);
}
.breadcrumb { font-size: 0.85rem; color: var(--text-mid); margin-bottom: 12px; }
.breadcrumb a { color: var(--purple); }

/* Legal pages ------------------------------------------------------------ */
.legal-content { max-width: 78ch; }
.legal-content h2 { margin-top: 2em; font-size: 1.25rem; color: var(--purple-dark); }
.legal-content h2:first-child { margin-top: 0; }
.legal-content ul { color: var(--text-mid); }

/* Gallery ------------------------------------------------------------------*/
.gallery-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.filter-btn {
  font-family: 'Poppins', sans-serif; font-size: 0.86rem; font-weight: 600;
  padding: 10px 20px; border-radius: var(--radius-pill); border: 1px solid var(--line);
  background: #fff; cursor: pointer; transition: all 0.15s ease;
}
.filter-btn:hover { border-color: var(--purple); color: var(--purple); }
.filter-btn.active { background: var(--purple); color: #fff; border-color: var(--purple); box-shadow: 0 8px 18px rgba(109,40,217,0.3); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 22px; }
.gallery-item { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); background: #fff; transition: box-shadow .2s ease, transform .2s ease; }
.gallery-item:hover { box-shadow: var(--shadow-card); transform: translateY(-3px); }
.gallery-item .thumb { aspect-ratio: 4/3; }
.gallery-item .meta { padding: 16px 18px; }
.gallery-item .meta .tag { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--mint-dark); font-weight: 700; }

/* Contact page ------------------------------------------------------------*/
.contact-grid { display: grid; gap: 40px; grid-template-columns: 1fr; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.info-card { background: var(--violet-tint); border-radius: var(--radius-lg); padding: 28px; margin-bottom: 20px; }
.info-row { display: flex; gap: 14px; margin-bottom: 18px; }
.info-row:last-child { margin-bottom: 0; }
.info-icon { width: 42px; height: 42px; flex-shrink: 0; background: #fff; border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--purple); }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 0.88rem; margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 13px 16px; border: 1px solid var(--line); border-radius: var(--radius-md);
  font-family: inherit; font-size: 0.95rem; color: var(--ink); background: #fff;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--purple); box-shadow: 0 0 0 3px rgba(109,40,217,0.12);
}
.form-note { background: var(--mint-tint); border: 1px solid #C9F3E4; color: #0B6B4F; padding: 12px 16px; border-radius: var(--radius-md); font-size: 0.87rem; margin-bottom: 18px; }
#form-success { display: none; background: var(--mint-tint); border: 1px solid #C9F3E4; color: #0B6B4F; padding: 14px; border-radius: var(--radius-md); margin-top: 14px; font-size: 0.92rem; }
#form-success.show { display: block; }
.map-box { aspect-ratio: 16/9; background: var(--violet-tint); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; color: var(--text-mid); font-size: 0.9rem; text-align: center; padding: 20px; }

/* Values / mission (About) --------------------------------------------------*/
.value-grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }
.value-chip { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 22px; text-align: center; }
.value-chip .icon-box { margin: 0 auto 12px; }
.mv-grid { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); margin-top: 8px; }
.mv-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; border-top: 4px solid var(--mint); }

/* Utility ------------------------------------------------------------------*/
.text-center { text-align: center; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--mint); outline-offset: 2px;
}
