    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Vazirmatn', sans-serif;
      background: var(--canvas);
      color: var(--ink);
      line-height: 1.8;
      overflow-x: hidden;
    }
    h1, h2, h3, h4, .brand, .btn, .chip, .nav a, .stat-num {
      font-family: 'Baloo Bhaijaan 2', 'Vazirmatn', sans-serif;
    }
    img, svg { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }
    ul { list-style: none; }
    button { font: inherit; cursor: pointer; border: none; background: none; }
    section { position: relative; }
    .wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

    /* ===================== Navbar ===================== */
    .nav {
      position: sticky; top: 0; z-index: 100;
      background: rgba(255, 249, 238, 0.92);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--line);
    }
    .nav-inner {
      max-width: 1180px; margin: 0 auto; padding: 12px 24px;
      display: flex; align-items: center; justify-content: space-between; gap: 24px;
    }
    .brand {
      display: flex; align-items: center; gap: 10px;
      font-weight: 800; font-size: 24px; color: var(--ink);
    }
    .brand img { width: 42px; height: 42px; object-fit: contain; border-radius: 50%; }
    .nav-links { display: flex; align-items: center; gap: 6px; }
    .nav-links a {
      padding: 10px 16px; border-radius: 100px; font-weight: 600; font-size: 15px;
      color: var(--ink-soft); transition: background .2s var(--ease), color .2s var(--ease);
    }
    .nav-links a:hover, .nav-links a.active { background: var(--sun-100); color: var(--sun-deep); }
    .nav-cta { display: flex; align-items: center; gap: 12px; }
    .nav-ghost { font-weight: 600; font-size: 15px; color: var(--ink-soft); padding: 10px 12px; }

    .burger {
      display: none; flex-direction: column; gap: 6px;
      width: 30px; height: 24px; justify-content: center; z-index: 101;
    }
    .burger span {
      width: 100%; height: 3px; background: var(--ink); border-radius: 4px;
      transition: transform .3s var(--ease), opacity .3s var(--ease);
    }
    .burger.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    .burger.open span:nth-child(2) { opacity: 0; }
    .burger.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

    .mobile-drawer {
      position: fixed; inset: 0; background: var(--canvas); z-index: 99;
      display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 20px;
      transform: translateX(100%); transition: transform 0.4s var(--ease);
    }
    .mobile-drawer.open { transform: translateX(0); }
    .mobile-drawer a {
      font-size: 22px; font-weight: 700; color: var(--ink);
      padding: 10px 20px; border-radius: 100px;
    }
    .mobile-drawer a:hover { background: var(--sun-100); }

    /* ===================== Buttons ===================== */
    .btn {
      display: inline-flex; align-items: center; justify-content: center; gap: 8px;
      padding: 14px 28px; border-radius: 100px; font-weight: 700; font-size: 16px;
      transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
      white-space: nowrap;
    }
    .btn-primary {
      background: var(--sun); color: #fff; box-shadow: 0 4px 0 var(--sun-deep);
    }
    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 0 var(--sun-deep), var(--shadow-sm); }
    .btn-primary:active { transform: translateY(2px); box-shadow: 0 2px 0 var(--sun-deep); }
    .btn-primary:disabled { opacity: .6; cursor: not-allowed; transform: none; }
    .btn-outline {
      background: #fff; color: var(--ink); border: 2px solid var(--line);
    }
    .btn-outline:hover { border-color: var(--sky); color: var(--sky); transform: translateY(-2px); }
    .btn-sm { padding: 10px 20px; font-size: 14px; }

    .chip {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--white); border: 1px solid var(--line); border-radius: 100px;
      padding: 8px 16px; font-weight: 600; font-size: 13px; color: var(--ink-soft); box-shadow: var(--shadow-sm);
    }
    .chip .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--leaf); }

    /* ===================== Masthead ===================== */
    .masthead {
      padding: 56px 0 70px; overflow: hidden; color: #fff; text-align: center;
      background:
        radial-gradient(ellipse 60% 60% at 88% 10%, rgba(255,159,28,.28), transparent 55%),
        radial-gradient(ellipse 50% 50% at 8% 90%, rgba(47,163,107,.22), transparent 55%),
        linear-gradient(135deg, var(--grape), var(--sky));
    }
    .breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 13.5px; color: rgba(255,255,255,.75); margin-bottom: 20px; }
    .breadcrumb a { color: rgba(255,255,255,.75); font-weight: 600; }
    .breadcrumb a:hover { color: #fff; }
    .breadcrumb span.sep { opacity: .5; }
    .breadcrumb span.current { color: #fff; font-weight: 700; }
    .masthead-mascot { width: 92px; margin: 0 auto 16px; filter: drop-shadow(0 10px 20px rgba(0,0,0,.2)); }
    .masthead h1 { font-size: clamp(28px, 4.6vw, 46px); font-weight: 800; max-width: 700px; margin: 0 auto 16px; line-height: 1.3; }
    .masthead p.lead { font-size: 16.5px; color: rgba(255,255,255,.9); max-width: 560px; margin: 0 auto; }

    /* ===================== Contact Grid ===================== */
    .contact-section { padding: 70px 0 20px; }
    .contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 40px; align-items: start; }

    /* Info cards */
    .info-stack { display: flex; flex-direction: column; gap: 16px; }
    .info-card {
      display: flex; align-items: flex-start; gap: 16px;
      background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
      padding: 22px; box-shadow: var(--shadow-sm);
      transition: transform .2s var(--ease), box-shadow .2s var(--ease);
    }
    .info-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
    .info-icon {
      flex-shrink: 0; width: 48px; height: 48px; border-radius: 14px;
      display: flex; align-items: center; justify-content: center; font-size: 20px;
    }
    .info-card h3 { font-size: 15.5px; font-weight: 800; margin-bottom: 4px; }
    .info-card p, .info-card a { font-size: 14px; color: var(--ink-soft); }
    .info-card a:hover { color: var(--sky); }
    .info-card .hours { margin-top: 6px; font-size: 13px; }

    .social-row { display: flex; gap: 10px; margin-top: 6px; }
    .social-row a {
      width: 42px; height: 42px; border-radius: 50%; background: var(--canvas-2);
      display: flex; align-items: center; justify-content: center; transition: background .2s var(--ease), transform .2s var(--ease);
    }
    .social-row a:hover { background: var(--sun-100); transform: translateY(-3px); }
    .social-row svg { width: 19px; height: 19px; color: var(--ink); }

    /* Form */
    .form-card {
      background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
      padding: 36px; box-shadow: var(--shadow-md);
    }
    .form-card h2 { font-size: 22px; font-weight: 800; margin-bottom: 6px; }
    .form-card p.sub { font-size: 14.5px; color: var(--ink-soft); margin-bottom: 24px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
    .field { display: flex; flex-direction: column; gap: 8px; }
    .field.full { grid-column: 1 / -1; }
    .field label { font-size: 13.5px; font-weight: 700; color: var(--ink); }
    .field input, .field select, .field textarea {
      font-family: 'Vazirmatn', sans-serif; font-size: 14.5px; padding: 13px 16px;
      border: 2px solid var(--line); border-radius: var(--radius-sm); background: var(--canvas);
      color: var(--ink); transition: border-color .2s var(--ease), background .2s var(--ease);
      outline: none;
    }
    .field input:focus, .field select:focus, .field textarea:focus {
      border-color: var(--sky); background: #fff;
    }
    .field textarea { resize: vertical; min-height: 120px; font-family: 'Vazirmatn', sans-serif; }
    .field-note { font-size: 12.5px; color: var(--ink-soft); }
    .form-foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 8px; }
    .form-privacy { font-size: 12.5px; color: var(--ink-soft); max-width: 320px; }
    .form-msg { margin-top: 16px; padding: 14px 16px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 600; display: none; }
    .form-msg.show { display: block; }
    .form-msg.success { background: var(--leaf-100); color: var(--leaf); }

    /* ===================== FAQ ===================== */
    .faq { padding: 70px 0; }
    .faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
    .faq-item {
      background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md);
      overflow: hidden; box-shadow: var(--shadow-sm);
    }
    .faq-q {
      display: flex; align-items: center; justify-content: space-between; gap: 16px;
      padding: 18px 22px; font-weight: 700; font-size: 15.5px; cursor: pointer;
      list-style: none; user-select: none;
    }
    .faq-q::-webkit-details-marker { display: none; }
    .faq-q svg { width: 20px; height: 20px; color: var(--ink-soft); transition: transform .2s var(--ease); flex-shrink: 0; }
    .faq-item[open] .faq-q svg { transform: rotate(45deg); color: var(--berry); }
    .faq-a { padding: 0 22px 20px; font-size: 14.5px; color: var(--ink-soft); }

    .section-head { max-width: 640px; margin: 0 auto 40px; text-align: center; }
    .section-head .eyebrow {
      display: inline-block; font-weight: 700; font-size: 13px;
      color: var(--grape); background: var(--grape-100); padding: 6px 16px; border-radius: 100px; margin-bottom: 14px;
    }
    .section-head h2 { font-size: clamp(24px, 3.5vw, 34px); font-weight: 800; margin-bottom: 12px; }
    .section-head p { color: var(--ink-soft); font-size: 16px; }

    /* ===================== CTA ===================== */
    .cta-banner { padding: 0 0 80px; }
    .cta-inner {
      background: linear-gradient(135deg, var(--grape), var(--sky));
      border-radius: var(--radius-lg); padding: 56px 40px; text-align: center; color: #fff;
      position: relative; overflow: hidden;
    }
    .cta-mascot {
      width: 120px; height: auto; margin: 0 auto 18px;
      position: relative; z-index: 1;
      filter: drop-shadow(0 8px 20px rgba(0,0,0,.25));
      mix-blend-mode: screen;
    }
    .cta-inner h2 { font-size: clamp(24px, 3.5vw, 34px); font-weight: 800; margin-bottom: 12px; position: relative; }
    .cta-inner p { opacity: .92; margin-bottom: 26px; font-size: 15.5px; max-width: 520px; margin-inline: auto; position: relative; }
    .cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

    /* ===================== Footer ===================== */
    footer { padding: 56px 0 28px; border-top: 1px solid var(--line); background: var(--white); }
    .footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 36px; }
    .footer-brand p { color: var(--ink-soft); font-size: 14px; margin-top: 12px; max-width: 280px; }
    .footer-col b { font-family: 'Baloo Bhaijaan 2'; font-size: 15px; display: block; margin-bottom: 14px; }
    .footer-col ul { display: flex; flex-direction: column; gap: 10px; }
    .footer-col a { font-size: 14px; color: var(--ink-soft); transition: color .2s; }
    .footer-col a:hover { color: var(--sky); }
    .footer-bottom {
      display: flex; align-items: center; justify-content: space-between; padding-top: 22px;
      border-top: 1px solid var(--line); font-size: 13px; color: var(--ink-soft); flex-wrap: wrap; gap: 12px;
    }

    /* ===================== Responsive ===================== */
    @media (max-width: 1024px) {
      .burger { display: flex; }
      .nav-links, .nav-cta { display: none; }
      .contact-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 640px) {
      .form-row { grid-template-columns: 1fr; }
      .form-card { padding: 26px 20px; }
      .footer-grid { grid-template-columns: 1fr; }
      .cta-inner { padding: 44px 22px; }
      .cta-mascot { width: 96px; }
      .form-foot { flex-direction: column; align-items: stretch; }
      .form-foot .btn { width: 100%; }
    }

/* ---- extracted from former inline styles ---- */
.icon-sprite-defs { position: absolute; width: 0; height: 0; overflow: hidden; }
.info-icon--sun { background: var(--sun-100); color: var(--sun-deep); }
.info-icon--sky { background: var(--sky-100); color: var(--sky); }
.info-icon--grape { background: var(--grape-100); color: var(--grape); }
.info-icon--leaf { background: var(--leaf-100); color: var(--leaf); }
.ltr-inline { display: inline-block; }
.social-title { margin-bottom: 10px; }
.field.full.field-spaced { margin-bottom: 16px; }
.form-privacy a { text-decoration: underline; }
.btn-on-dark { background: #fff; }
.contact-form input,
.contact-form textarea,
.contact-form select {
  font-size: 16px;
  width: 100%;
  max-width: 100%;
}
.form-card--disabled {
  text-align: center;
  padding: 48px 36px;
}
.form-card--disabled .form-disabled-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--sun-100);
  color: var(--sun-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.form-card--disabled h2 { margin-bottom: 10px; }
.form-card--disabled p { color: var(--ink-soft); margin-bottom: 20px; }
.field-error {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--berry);
  margin-top: 4px;
}
.form-note {
  margin-bottom: 16px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: var(--sky-100);
  color: var(--ink-soft);
  font-size: 12.5px;
}
