*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream: #EDF6FB;
  --cream-dark: #C8E6F4;
  --yellow: #F5C842;
  --yellow-light: #FDF3C4;
  --yellow-mid: #F0B800;
  --blue: #7EC8E3;
  --blue-light: #D6F0F8;
  --blue-mid: #4AADC7;
  --sky-base: #E8F4FB;
  --sky-mid: #D0EAF7;
  --text-dark: #1E3A4A;
  --text-mid: #3A637A;
  --text-muted: #7AAABB;
  --white: #FFFFFF;
  --radius: 20px;
  --radius-sm: 12px;
}

body {
  font-family: 'Nunito', sans-serif;
  background-color: var(--sky-base);
  background-image:
    /* Large fluffy cloud - top left */
    radial-gradient(ellipse 180px 90px at 12% 8%, rgba(255,255,255,0.82) 60%, transparent 100%),
    radial-gradient(ellipse 120px 70px at 8% 11%, rgba(255,255,255,0.65) 60%, transparent 100%),
    radial-gradient(ellipse 100px 60px at 18% 6%, rgba(255,255,255,0.70) 60%, transparent 100%),
    /* Small cloud - top center-right */
    radial-gradient(ellipse 130px 65px at 68% 4%, rgba(255,255,255,0.75) 60%, transparent 100%),
    radial-gradient(ellipse 90px 55px at 62% 6%, rgba(255,255,255,0.60) 60%, transparent 100%),
    radial-gradient(ellipse 80px 50px at 74% 3%, rgba(255,255,255,0.60) 60%, transparent 100%),
    /* Wide cloud - right side upper */
    radial-gradient(ellipse 200px 80px at 92% 18%, rgba(255,255,255,0.70) 60%, transparent 100%),
    radial-gradient(ellipse 140px 70px at 86% 21%, rgba(255,255,255,0.55) 60%, transparent 100%),
    /* Faint cloud - left mid */
    radial-gradient(ellipse 160px 75px at 5% 42%, rgba(255,255,255,0.55) 60%, transparent 100%),
    radial-gradient(ellipse 110px 60px at 12% 45%, rgba(255,255,255,0.45) 60%, transparent 100%),
    /* Puff - center lower */
    radial-gradient(ellipse 150px 70px at 48% 62%, rgba(255,255,255,0.60) 60%, transparent 100%),
    radial-gradient(ellipse 100px 55px at 42% 65%, rgba(255,255,255,0.50) 60%, transparent 100%),
    radial-gradient(ellipse 90px 50px at 55% 60%, rgba(255,255,255,0.50) 60%, transparent 100%),
    /* Wide wispy cloud - bottom right */
    radial-gradient(ellipse 220px 85px at 88% 80%, rgba(255,255,255,0.65) 60%, transparent 100%),
    radial-gradient(ellipse 130px 65px at 80% 83%, rgba(255,255,255,0.50) 60%, transparent 100%),
    /* Tiny puff - bottom left */
    radial-gradient(ellipse 100px 50px at 18% 88%, rgba(255,255,255,0.55) 60%, transparent 100%),
    radial-gradient(ellipse 70px 40px at 12% 91%, rgba(255,255,255,0.45) 60%, transparent 100%),
    /* Very subtle blue depth gradient */
    linear-gradient(180deg, #DAEEF8 0%, #EBF5FB 40%, #EFF7FC 100%);
  background-attachment: fixed;
  background-size: 100% 100%;
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.7;
}

/* NAV */
nav {
  background: rgba(255,255,255,0.80);
  backdrop-filter: blur(10px);
  border-bottom: 1.5px solid var(--cream-dark);
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 38px;
  height: 38px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.2;
}

.logo-text span {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--text-dark); }

.nav-cta {
  background: var(--yellow);
  color: var(--text-dark) !important;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 700 !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s;
}

/* HERO */
.hero-wrapper { background: rgba(255,255,255,0.72); backdrop-filter: blur(2px); }

.hero {
  padding: 5rem 2.5rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-tag {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue-mid);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.18;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--blue-mid);
}

.hero p {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 460px;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--yellow);
  color: var(--text-dark);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
}

.btn-primary:hover { background: var(--yellow-mid); }

.btn-secondary {
  background: transparent;
  color: var(--text-dark);
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 50px;
  border: 2px solid var(--cream-dark);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.2s;
}

.btn-secondary:hover { border-color: var(--blue-mid); }

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card {
  background: rgba(214, 240, 248, 0.45);
  border-radius: 28px;
  padding: 2.5rem;
  width: 100%;
  max-width: 340px;
}

.stat-badge {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1.5px solid var(--cream-dark);
}

.stat-badge:last-child { margin-bottom: 0; }

.stat-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.stat-icon.yellow { background: var(--yellow-light); }
.stat-icon.blue { background: var(--blue-light); }

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 2px;
}

.stat-val {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
}

/* SHARED SECTION */
section {
  padding: 4.5rem 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.section-tag {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--blue-mid);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 16px;
  color: var(--text-mid);
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

/* SERVICES */
.services-bg {
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(2px);
  padding: 4.5rem 0;
}

.services-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.service-card {
  background: rgba(255,255,255,0.80);
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1.5px solid rgba(180, 220, 240, 0.6);
  transition: border-color 0.2s;
}

.service-card:hover { border-color: var(--blue-mid); }

.service-icon {
  font-size: 22px;
  margin-bottom: 1rem;
  width: 52px;
  height: 52px;
  background: var(--yellow-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon.blue-icon { background: var(--blue-light); }

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.65;
}

/* WHO WE HELP */
.help-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.help-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 1.5rem;
}

.pill {
  background: var(--blue-light);
  color: var(--blue-mid);
  font-size: 13px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 50px;
}

.help-aside {
  background: var(--yellow-light);
  border-radius: var(--radius);
  padding: 2.25rem;
  border: 1.5px solid #EDD870;
}

.help-aside h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.help-aside p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.help-aside .btn-primary {
  font-size: 14px;
  padding: 11px 24px;
  background: var(--yellow-mid);
}

/* ABOUT */
.about-bg {
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(2px);
  padding: 4.5rem 0;
}

.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: center;
}

.about-avatar {
  background: var(--blue-light);
  border-radius: 28px;
  height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
}

.about-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
  display: none;
}

.avatar-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--blue-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 600;
  color: white;
}

.avatar-label {
  font-size: 13px;
  color: var(--blue-mid);
  font-weight: 600;
}

.about-text .section-sub { max-width: 100%; }

.cred-row {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.cred {
  background: var(--cream);
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14px;
  color: var(--text-mid);
}

.detail-icon {
  width: 36px;
  height: 36px;
  background: var(--yellow-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.25rem;
  border: 1.5px solid var(--cream-dark);
}

.contact-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group { margin-bottom: 1rem; }
.form-group:last-of-type { margin-bottom: 0; }

label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 6px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--cream-dark);
  background: var(--cream);
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  appearance: none;
}

textarea { resize: vertical; min-height: 100px; }

input:focus, select:focus, textarea:focus {
  border-color: var(--blue-mid);
  background: var(--white);
}

.submit-btn {
  width: 100%;
  background: var(--yellow);
  color: var(--text-dark);
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 14px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  margin-top: 1rem;
  transition: background 0.2s;
}

.submit-btn:hover { background: var(--yellow-mid); }

.form-success {
  display: none;
  text-align: center;
  padding: 2rem 1rem;
}

.form-success .success-icon {
  font-size: 40px;
  margin-bottom: 1rem;
}

.form-success h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.form-success p {
  font-size: 14px;
  color: var(--text-mid);
}

/* FOOTER */
footer {
  background: var(--text-dark);
  color: var(--cream);
  text-align: center;
  padding: 3rem 2.5rem;
  font-size: 14px;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.footer-sub {
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 1.5rem;
}

.footer-copy {
  color: var(--text-muted);
  font-size: 12px;
}

/* FAQ disclosure indicator (list-style: none removes the native arrow) */
details summary { position: relative; padding-right: 2rem; }
details summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 18px;
  font-weight: 400;
  color: var(--text-muted);
  transition: transform 0.2s;
}
details[open] summary::after {
  content: '−';
}

/* Utility: visually hidden (for screen readers) */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* DIVIDER */
.divider {
  height: 1px;
  background: var(--cream-dark);
  max-width: 1100px;
  margin: 0 auto;
}

.divider-full {
  height: 1px;
  background: var(--cream-dark);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hamburger { display: flex; }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1.5px solid var(--cream-dark);
    padding: 1rem 2rem;
    z-index: 99;
  }

  .nav-links.open { display: flex; }
  .nav-links li { padding: 10px 0; border-bottom: 1px solid var(--cream-dark); }
  .nav-links li:last-child { border-bottom: none; padding-bottom: 0; }
  .nav-cta { background: none; padding: 0; }

  .hero {
    grid-template-columns: 1fr;
    padding: 3rem 1.5rem;
    gap: 2.5rem;
  }

  .hero h1 { font-size: 2.2rem; }
  .hero-visual { display: none; }

  .services-inner { padding: 0 1.5rem; }
  .services-bg { padding: 3rem 0; }

  .help-grid { grid-template-columns: 1fr; }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1.5rem;
  }

  .about-bg { padding: 3rem 0; }
  .about-avatar { height: 240px; }

  .contact-grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }

  section { padding: 3rem 1.5rem; }
  .section-title { font-size: 1.8rem; }
}