:root {
  /* Cheerful summer palette */
  --c-sun: #fbbf24;
  --c-sun-deep: #f59e0b;
  --c-coral: #fb7185;
  --c-coral-deep: #f43f5e;
  --c-orange: #fb923c;
  --c-mint: #34d399;
  --c-sky: #38bdf8;
  --c-sky-deep: #0ea5e9;
  --c-lavender: #a78bfa;
  --c-pink: #f472b6;
  --c-cream: #fff8ed;
  --c-cream-2: #fef3c7;

  --c-text: #1e293b;
  --c-text-soft: #64748b;
  --c-border: #fde68a;
  --c-border-soft: #fef3c7;
  --c-primary: #f97316;     /* warm orange — main accent */
  --c-primary-deep: #ea580c;
  --c-primary-soft: #fff7ed;
  --c-dark: #1f2937;

  --shadow-sm: 0 2px 6px rgba(251, 146, 60, 0.15);
  --shadow-md: 0 12px 30px -8px rgba(251, 146, 60, 0.25);
  --shadow-lg: 0 30px 60px -20px rgba(251, 146, 60, 0.3);
  --shadow-fun: 0 10px 0 rgba(0,0,0,0.06);

  --radius: 22px;
  --radius-sm: 14px;

  --font-display: "Baloo 2", "Quicksand", -apple-system, "Segoe UI", sans-serif;
  --font-body: "Quicksand", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--c-text);
  background: var(--c-cream);
  font-weight: 500;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; font-family: var(--font-body); }
img { max-width: 100%; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ═══════ Header ═══════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 248, 237, 0.92);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.site-header.scrolled {
  border-bottom-color: var(--c-border);
  box-shadow: 0 4px 20px -8px rgba(251, 146, 60, 0.2);
}
.nav-row {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}
.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--c-sun) 0%, var(--c-coral) 50%, var(--c-lavender) 100%);
  color: white;
  font-weight: 700;
  font-family: var(--font-display);
  display: grid;
  place-items: center;
  font-size: 16px;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 16px -4px rgba(251, 113, 133, 0.5);
  transform: rotate(-4deg);
  transition: transform 0.25s cubic-bezier(.34,1.56,.64,1);
}
.brand:hover .brand-mark { transform: rotate(4deg) scale(1.05); }
.brand-text { display: flex; flex-direction: column; }
.brand-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--c-text);
  line-height: 1.1;
}
.brand-sub {
  font-size: 12px;
  color: var(--c-text-soft);
}

.site-nav {
  display: flex;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.site-nav a {
  padding: 9px 16px;
  border-radius: 14px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--c-text-soft);
  transition: background 0.18s, color 0.18s, transform 0.18s;
}
.site-nav a:hover {
  background: var(--c-cream-2);
  color: var(--c-primary-deep);
  transform: translateY(-1px);
}

.header-actions { display: flex; gap: 10px; flex: 0 0 auto; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  border: none;
  background: transparent;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--c-text);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

/* ═══════ Buttons ═══════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 11px 22px;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 14.5px;
  text-align: center;
  transition: all 0.18s cubic-bezier(.34,1.56,.64,1);
  white-space: nowrap;
  letter-spacing: 0.2px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--c-coral) 0%, var(--c-primary) 100%);
  color: white;
  box-shadow: 0 6px 0 var(--c-primary-deep), 0 12px 24px -6px rgba(244, 63, 94, 0.45);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 0 var(--c-primary-deep), 0 16px 28px -6px rgba(244, 63, 94, 0.55);
}
.btn-primary:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 var(--c-primary-deep), 0 6px 12px -4px rgba(244, 63, 94, 0.4);
}
.btn-ghost {
  background: white;
  color: var(--c-text);
  border-color: var(--c-border);
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.05);
}
.btn-ghost:hover {
  border-color: var(--c-primary);
  color: var(--c-primary-deep);
  background: var(--c-primary-soft);
  transform: translateY(-2px);
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.05);
}
.btn-lg {
  padding: 15px 28px;
  font-size: 15.5px;
}

/* ═══════ Hero ═══════ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 130px;
  background:
    radial-gradient(800px 400px at 90% 10%, rgba(56, 189, 248, 0.18), transparent 65%),
    radial-gradient(600px 400px at 10% 90%, rgba(244, 114, 182, 0.18), transparent 65%),
    linear-gradient(180deg, #fff8ed 0%, #fef3c7 100%);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-bg .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
}
.blob-1 { width: 460px; height: 460px; background: var(--c-sun); top: -150px; left: -120px; }
.blob-2 { width: 380px; height: 380px; background: var(--c-coral); bottom: -120px; right: -80px; }
.blob-3 { width: 320px; height: 320px; background: var(--c-lavender); top: 30%; left: 55%; opacity: 0.35; }

/* Decorative emojis floating around */
.deco {
  position: absolute;
  font-size: 38px;
  filter: drop-shadow(0 6px 10px rgba(0,0,0,0.12));
  pointer-events: none;
  user-select: none;
}
.deco-sun { top: 60px; right: 8%; font-size: 56px; animation: spin 20s linear infinite; }
.deco-cloud-1 { top: 110px; left: 8%; font-size: 44px; animation: drift 14s ease-in-out infinite; }
.deco-cloud-2 { top: 220px; right: 22%; font-size: 36px; opacity: 0.85; animation: drift 18s ease-in-out infinite reverse; }
.deco-balloon { bottom: 18%; left: 5%; font-size: 50px; animation: float-up 5s ease-in-out infinite; }
.deco-star-1 { top: 40%; left: 4%; font-size: 24px; animation: twinkle 2.5s ease-in-out infinite; }
.deco-star-2 { top: 22%; right: 14%; font-size: 22px; animation: twinkle 2.5s ease-in-out infinite 1.2s; }
.deco-kite { bottom: 22%; right: 6%; font-size: 44px; animation: kite-fly 7s ease-in-out infinite; }

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes drift {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(30px); }
}
@keyframes float-up {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-18px) rotate(3deg); }
}
@keyframes twinkle {
  0%, 100% { opacity: 0.4; transform: scale(0.85); }
  50% { opacity: 1; transform: scale(1.15); }
}
@keyframes kite-fly {
  0%, 100% { transform: rotate(-5deg) translateY(0); }
  50% { transform: rotate(8deg) translateY(-15px); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  padding: 7px 16px;
  background: white;
  color: var(--c-primary-deep);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: 0.2px;
  margin-bottom: 20px;
  box-shadow: 0 4px 0 rgba(251, 146, 60, 0.2), 0 6px 14px -4px rgba(251, 146, 60, 0.3);
  transform: rotate(-1deg);
}

.hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 5.2vw, 60px);
  line-height: 1.05;
  margin: 0 0 20px;
  letter-spacing: -0.01em;
  font-weight: 700;
  color: var(--c-text);
}
.hl {
  position: relative;
  display: inline-block;
  background: linear-gradient(120deg, var(--c-coral) 0%, var(--c-primary) 50%, var(--c-sun-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hl::after {
  content: '';
  position: absolute;
  left: -2px;
  right: -2px;
  bottom: -6px;
  height: 10px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 10' preserveAspectRatio='none'%3E%3Cpath d='M0 6 Q 25 0, 50 6 T 100 6 T 150 6 T 200 6' stroke='%23fb7185' stroke-width='3' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
}
.hl-wave {
  background: linear-gradient(120deg, var(--c-mint) 0%, var(--c-sky) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  font-size: 18px;
  color: var(--c-text-soft);
  margin: 0 0 32px;
  max-width: 540px;
  line-height: 1.6;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 22px;
  background: white;
  border-radius: var(--radius);
  box-shadow: 0 8px 0 rgba(251, 146, 60, 0.12), var(--shadow-md);
  max-width: 560px;
  position: relative;
  border: 3px solid white;
}
.hero-stats li { display: flex; flex-direction: column; align-items: flex-start; }
.hero-stats strong {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--c-coral) 0%, var(--c-primary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.01em;
}
.hero-stats span {
  font-size: 12px;
  color: var(--c-text-soft);
  font-weight: 600;
  margin-top: 2px;
}

/* Hero art - playful sticker cards */
.hero-art {
  position: relative;
  height: 480px;
}
.art-card {
  position: absolute;
  background: white;
  border-radius: 22px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 14.5px;
  white-space: nowrap;
  border: 3px solid white;
  box-shadow: 0 10px 0 rgba(0,0,0,0.06), 0 20px 40px -10px rgba(251, 113, 133, 0.3);
  animation: float 5s ease-in-out infinite;
}
.art-card .art-icon {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 26px;
}
.art-card-1 {
  top: 20px; left: 30px;
  transform: rotate(-5deg);
  animation-delay: 0s;
  background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%);
}
.art-card-1 .art-icon { background: white; }

.art-card-2 {
  top: 110px; right: 0;
  transform: rotate(4deg);
  animation-delay: 1s;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
}
.art-card-2 .art-icon { background: white; }

.art-card-3 {
  bottom: 150px; left: 0;
  transform: rotate(-3deg);
  animation-delay: 2s;
  background: linear-gradient(135deg, #ddd6fe 0%, #c4b5fd 100%);
}
.art-card-3 .art-icon { background: white; }

.art-card-4 {
  bottom: 30px; right: 60px;
  transform: rotate(5deg);
  animation-delay: 3s;
  background: linear-gradient(135deg, #cffafe 0%, #a5f3fc 100%);
}
.art-card-4 .art-icon { background: white; }

.art-card-5 {
  top: 220px; left: 50%;
  transform: rotate(-2deg) translateX(-50%);
  animation-delay: 1.5s;
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}
.art-card-5 .art-icon { background: white; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); }
  50% { transform: translateY(-12px) rotate(var(--r, 0deg)); }
}
.art-card-1 { --r: -5deg; }
.art-card-2 { --r: 4deg; }
.art-card-3 { --r: -3deg; }
.art-card-4 { --r: 5deg; }
.art-card-5 { --r: -2deg; }

/* Wave divider */
.wave-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  line-height: 0;
  z-index: 1;
}
.wave-divider svg {
  width: 100%;
  height: 80px;
  display: block;
}
.wave-divider svg path { fill: white; }

/* ═══════ Sections ═══════ */
.section {
  padding: 90px 0;
  position: relative;
  background: white;
}
.section-alt {
  background: linear-gradient(180deg, #fff7ed 0%, #ffedd5 100%);
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  margin: 10px 0 14px;
  letter-spacing: -0.01em;
  font-weight: 700;
  line-height: 1.15;
}
.section-head p {
  color: var(--c-text-soft);
  margin: 0;
  font-size: 17px;
}

/* Categories */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  margin-bottom: 40px;
}
.cat-card {
  background: white;
  border: 3px solid var(--c-border-soft);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.2s cubic-bezier(.34,1.56,.64,1), box-shadow 0.2s, border-color 0.2s;
  position: relative;
}
.cat-card:nth-child(odd) { transform: rotate(-0.6deg); }
.cat-card:nth-child(even) { transform: rotate(0.6deg); }
.cat-card:hover {
  transform: translateY(-6px) rotate(0deg);
  box-shadow: 0 12px 0 rgba(251, 146, 60, 0.1), var(--shadow-lg);
  border-color: var(--c-primary);
}
.cat-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: color-mix(in srgb, var(--cat) 15%, white);
  color: var(--cat);
  display: grid;
  place-items: center;
  font-size: 30px;
  margin-bottom: 18px;
  border: 3px solid color-mix(in srgb, var(--cat) 25%, white);
  transform: rotate(-3deg);
  transition: transform 0.25s cubic-bezier(.34,1.56,.64,1);
}
.cat-card:hover .cat-icon { transform: rotate(6deg) scale(1.05); }
.cat-card h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
}
.cat-card p { margin: 0; color: var(--c-text-soft); font-size: 14.5px; line-height: 1.55; }

/* Activity strip (chips) */
.activity-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}
.activity-strip span {
  display: inline-block;
  padding: 8px 18px;
  background: white;
  color: var(--c-text);
  border: 2.5px solid var(--c-border);
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 700;
  font-family: var(--font-display);
  transition: all 0.18s cubic-bezier(.34,1.56,.64,1);
  box-shadow: 0 3px 0 rgba(251, 146, 60, 0.12);
}
.activity-strip span:hover {
  border-color: var(--c-primary);
  color: var(--c-primary-deep);
  background: var(--c-primary-soft);
  transform: translateY(-3px) rotate(-2deg);
  box-shadow: 0 6px 0 rgba(251, 146, 60, 0.18);
}
.activity-strip span:nth-child(3n):hover { transform: translateY(-3px) rotate(2deg); }

/* Features */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.feat {
  padding: 30px;
  background: white;
  border: 3px solid var(--c-border-soft);
  border-radius: var(--radius);
  transition: transform 0.2s cubic-bezier(.34,1.56,.64,1), box-shadow 0.2s, border-color 0.2s;
}
.feat:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 0 rgba(251, 146, 60, 0.1), var(--shadow-lg);
  border-color: var(--c-coral);
}
.feat-icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--c-cream-2), var(--c-sun));
  display: grid;
  place-items: center;
  font-size: 32px;
  margin-bottom: 18px;
  border: 3px solid white;
  box-shadow: 0 6px 0 rgba(251, 146, 60, 0.15);
  transform: rotate(-4deg);
  transition: transform 0.25s cubic-bezier(.34,1.56,.64,1);
}
.feat:nth-child(2) .feat-icon { background: linear-gradient(135deg, #d1fae5, var(--c-mint)); }
.feat:nth-child(3) .feat-icon { background: linear-gradient(135deg, #cffafe, var(--c-sky)); }
.feat:nth-child(4) .feat-icon { background: linear-gradient(135deg, #fce7f3, var(--c-pink)); }
.feat:nth-child(5) .feat-icon { background: linear-gradient(135deg, #ddd6fe, var(--c-lavender)); }
.feat:nth-child(6) .feat-icon { background: linear-gradient(135deg, #fed7aa, var(--c-orange)); }
.feat:hover .feat-icon { transform: rotate(8deg) scale(1.05); }
.feat h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
}
.feat p { margin: 0; color: var(--c-text-soft); font-size: 14.5px; line-height: 1.55; }

/* CTA */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--c-coral) 0%, var(--c-primary) 50%, var(--c-sun) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}
.cta-bg { position: absolute; inset: 0; pointer-events: none; }
.cta-deco {
  position: absolute;
  font-size: 48px;
  opacity: 0.25;
}
.cta-1 { top: 12%; left: 6%; animation: spin 25s linear infinite; }
.cta-2 { top: 70%; left: 14%; font-size: 56px; animation: float-up 5s ease-in-out infinite; }
.cta-3 { top: 20%; right: 12%; font-size: 38px; animation: twinkle 2.5s ease-in-out infinite; }
.cta-4 { bottom: 14%; right: 8%; font-size: 60px; animation: drift 12s ease-in-out infinite; }
.cta-5 { top: 50%; right: 28%; font-size: 44px; animation: float-up 6s ease-in-out infinite 1.5s; }

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 38px);
  margin: 0 0 10px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.cta-inner p { margin: 0; opacity: 0.95; font-size: 17px; font-weight: 500; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-section .btn-primary {
  background: white;
  color: var(--c-primary-deep);
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.15), 0 12px 24px -6px rgba(0, 0, 0, 0.25);
}
.cta-section .btn-primary:hover { background: #fff8ed; }
.cta-section .btn-ghost {
  border-color: rgba(255, 255, 255, 0.6);
  color: white;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.15);
}
.cta-section .btn-ghost:hover { background: rgba(255, 255, 255, 0.22); border-color: white; color: white; }

/* Footer */
.site-footer {
  background: linear-gradient(180deg, #1f2937 0%, #111827 100%);
  color: #cbd5e1;
  padding: 60px 0 28px;
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}
.site-footer .brand-title { color: white; }
.site-footer .brand-sub { color: #94a3b8; }
.footer-about {
  margin: 16px 0 0;
  color: #94a3b8;
  font-size: 14px;
  max-width: 360px;
  line-height: 1.6;
}
.site-footer h4 {
  color: white;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 16px;
}
.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.site-footer a { color: #94a3b8; font-size: 14px; transition: color 0.15s; font-weight: 500; }
.site-footer a:hover { color: var(--c-sun); }
.contact-list li { color: #94a3b8; font-size: 14px; }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 13px;
  color: #94a3b8;
  text-align: center;
}

/* ═══════ Responsive ═══════ */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-art { height: 380px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .deco-sun { font-size: 44px; right: 5%; }
  .deco-cloud-2, .deco-kite { display: none; }
}

@media (max-width: 760px) {
  .site-nav {
    display: none;
    position: absolute; top: 76px; left: 0; right: 0;
    background: white;
    flex-direction: column; align-items: stretch;
    padding: 14px 16px;
    border-bottom: 3px solid var(--c-border);
    box-shadow: 0 10px 30px -8px rgba(251, 146, 60, 0.25);
    gap: 4px;
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 12px 14px; }
  .nav-toggle { display: flex; }
  .header-actions .btn-ghost { display: none; }
  .header-actions { margin-left: auto; }
  .hero { padding: 60px 0 100px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-art { height: 340px; }
  .art-card { padding: 14px 18px; font-size: 13px; }
  .art-card .art-icon { width: 42px; height: 42px; font-size: 22px; }
  .section { padding: 70px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .cta-inner { text-align: center; justify-content: center; }
  .deco-balloon, .deco-cloud-1 { font-size: 36px; }
}

@media (max-width: 480px) {
  .nav-row { gap: 10px; height: 70px; }
  .brand-sub { display: none; }
  .hero-cta .btn { width: 100%; }
  .deco-sun { display: none; }
}

/* ─── Inquiry Modal ─── */
.inq-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(15, 23, 42, 0.55);
  display: flex; align-items: flex-start; justify-content: center;
  padding: 40px 16px; overflow-y: auto;
  animation: inqFade 200ms ease;
}
@keyframes inqFade { from { opacity: 0; } to { opacity: 1; } }
.inq-overlay[hidden] { display: none; }
.inq-modal {
  background: white; border-radius: 18px;
  max-width: 620px; width: 100%; padding: 28px 28px 22px;
  position: relative; box-shadow: 0 24px 60px rgba(0,0,0,0.28);
  animation: inqRise 240ms cubic-bezier(.2,.9,.3,1.2);
}
@keyframes inqRise { from { transform: translateY(20px); opacity: 0; } to { transform: none; opacity: 1; } }
.inq-close {
  position: absolute; top: 12px; right: 14px;
  background: transparent; border: none;
  font-size: 28px; line-height: 1; cursor: pointer; color: #64748b;
  width: 36px; height: 36px; border-radius: 50%;
}
.inq-close:hover { background: #f1f5f9; color: #0f172a; }
.inq-head h2 { margin: 0 0 6px; font-family: 'Baloo 2', sans-serif; font-size: 26px; }
.inq-head p { margin: 0 0 18px; color: #64748b; font-size: 14px; }
.inq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 14px; }
.inq-field { display: flex; flex-direction: column; gap: 4px; font-size: 13px; }
.inq-field-full { grid-column: 1 / -1; }
.inq-field span { font-weight: 600; color: #334155; }
.inq-field em { color: #ef4444; font-style: normal; }
.inq-field input, .inq-field textarea, .inq-field select {
  font: inherit; border: 1px solid #cbd5e1; border-radius: 10px;
  padding: 10px 12px; outline: none; transition: border-color 120ms ease;
  background: white;
}
.inq-field input:focus, .inq-field textarea:focus {
  border-color: #6366f1; box-shadow: 0 0 0 3px rgba(99,102,241,.15);
}
.inq-field textarea { resize: vertical; min-height: 70px; font-family: inherit; }
.inq-msg { margin-top: 12px; font-size: 13px; min-height: 18px; }
.inq-msg.success { color: #15803d; font-weight: 600; }
.inq-msg.error { color: #dc2626; font-weight: 600; }
.inq-actions { display: flex; gap: 10px; justify-content: flex-end; margin-top: 14px; }

@media (max-width: 560px) {
  .inq-grid { grid-template-columns: 1fr; }
  .inq-modal { padding: 22px 18px; }
  .inq-actions { flex-direction: column-reverse; }
  .inq-actions .btn { width: 100%; }
}
