/* Little Wings Support LLC — site stylesheet */
:root {
  --teal: #008b95;
  --teal-dark: #1a6b73;
  --orange: #f47600;
  --orange-dark: #ca4f00;
  --orange-light: #ffdab6;
  --ink: #202a32;
  --cream: #fcf8f1;
  --teal-tint: #d0f7f9;
  --orange-tint: #ffe9d1;
  --border: #e9e6df;
}

* { box-sizing: border-box; }

html, body {
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--cream);
  font-family: 'Work Sans', sans-serif;
  font-weight: 300;
  color: var(--ink);
}

a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--teal-dark); }

img { max-width: 100%; display: block; }

h1, h2, h3 { font-family: 'Baloo 2', cursive; font-weight: 600; margin: 0; }

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Nav */
.site-nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-name { font-family: 'Baloo 2', cursive; font-weight: 700; font-size: 18px; color: var(--ink); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-link { font-size: 15px; font-weight: 500; color: var(--ink); }
.nav-link:hover { color: var(--teal); }
.nav-current { font-size: 15px; font-weight: 600; color: var(--teal); }
.btn-pill {
  background: var(--orange);
  color: #fff;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
}
.btn-pill:hover { background: var(--orange-dark); color: #fff; }
.hamburger {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}
.hamburger span { width: 24px; height: 2px; background: var(--ink); display: block; }

/* Buttons */
.btn-primary {
  display: inline-block;
  background: var(--teal);
  color: #fff;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
}
.btn-primary:hover { background: var(--teal-dark); color: #fff; }
.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--ink);
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
  border: 2px solid #d8d5cd;
}
.btn-outline:hover { border-color: var(--teal); color: var(--teal); }
.btn-orange {
  display: inline-block;
  background: #f4a460;
  color: #fff;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
}
.btn-orange:hover { background: #e08a3f; color: #fff; }
.btn-small {
  display: inline-block;
  background: var(--teal);
  color: #fff;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
}
.btn-small:hover { background: var(--teal-dark); color: #fff; }
.back-link { font-size: 14px; font-weight: 600; color: var(--teal); }

/* Hero */
.hero { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; padding: 56px 0 80px; }
.badge {
  display: inline-block;
  background: var(--orange-tint);
  color: var(--orange-dark);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .03em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.hero h1 { font-size: 52px; line-height: 1.08; margin-bottom: 20px; }
.hero p { font-size: 18px; line-height: 1.6; color: #454f57; max-width: 480px; margin: 0 0 32px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-art { display: flex; align-items: center; justify-content: center; }
.hero-art svg { animation: flutter 3.5s ease-in-out infinite; transform-origin: 50% 40%; }
@keyframes flutter { 0%, 100% { transform: rotate(0deg); } 50% { transform: rotate(-4deg); } }

/* About */
.section-about { padding: 56px 0; }
.about-card {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
  background: var(--orange-tint);
  border-radius: 32px;
  padding: 48px;
}
.about-photo { aspect-ratio: 1; border-radius: 24px; overflow: hidden; position: relative; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.05); }
.about-photo .tint { position: absolute; inset: 0; background: var(--teal-tint); mix-blend-mode: color; }
.eyebrow { font-size: 13px; font-weight: 600; letter-spacing: .03em; text-transform: uppercase; color: var(--teal); margin-bottom: 10px; }
.about-card h2 { font-size: 34px; margin-bottom: 16px; }
.about-card p { font-size: 17px; line-height: 1.65; color: #454f57; margin: 0 0 20px; }

/* Services */
.section-services { padding: 24px 0 56px; }
.services-card-wrap { background: var(--teal-tint); border-radius: 32px; padding: 48px; }
.services-intro { max-width: 620px; margin: 0 auto 48px; text-align: center; }
.services-intro h2 { font-size: 34px; margin-bottom: 12px; }
.services-intro p { font-size: 17px; line-height: 1.6; color: #454f57; margin: 0; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.service-card { background: #fff; border-radius: 20px; padding: 28px; border: 1px solid var(--border); display: flex; flex-direction: column; gap: 10px; }
.service-icon { width: 40px; height: 40px; border-radius: 12px; background: #f4a460; display: flex; align-items: center; justify-content: center; }
.service-card h3 { font-size: 18px; margin: 6px 0 0; }
.service-card p { font-size: 15px; line-height: 1.55; color: #545e66; margin: 0; flex: 1; }
.service-price { font-weight: 700; font-size: 16px; color: var(--teal); }
.services-note { text-align: center; font-size: 14px; color: #454f57; margin: 28px 0 0; }
.services-cta { text-align: center; margin-top: 28px; }

/* ESA banner */
.esa-banner {
  margin: 8px 0 8px;
  background: linear-gradient(120deg, var(--teal-tint), var(--orange-tint));
  border-radius: 24px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.esa-banner h3 { font-size: 22px; margin-bottom: 6px; }
.esa-banner p { font-size: 16px; line-height: 1.55; color: #454f57; margin: 0; max-width: 640px; }
.esa-banner-text { flex: 1; min-width: 240px; }

/* Contact */
.section-contact { padding: 56px 0 80px; display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.contact-info { background: var(--teal-tint); border-radius: 28px; padding: 56px 48px; display: flex; flex-direction: column; scroll-margin-top: 24px; }
.contact-info h2 { font-size: 36px; line-height: 1.2; margin-bottom: 20px; }
.contact-info > p { font-size: 18px; line-height: 1.65; color: #454f57; margin: 0 0 40px; }
.divider { height: 1px; background: #c7ecee; margin: 0 0 40px; }
.contact-details { display: flex; flex-direction: column; gap: 22px; font-size: 16px; color: #3d454b; }
.serving { font-weight: 700; font-size: 17px; }
.social-links { display: flex; gap: 14px; margin-top: 12px; }
.social-icon { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.social-icon.fb { background: var(--teal); }
.social-icon.fb:hover { background: var(--teal-dark); }
.social-icon.ig { background: #f4a460; }
.social-icon.ig:hover { background: #e08a3f; }
.book-consult { background: var(--orange-tint); border-radius: 28px; padding: 40px; scroll-margin-top: 24px; }
.book-consult h3 { font-size: 24px; margin-bottom: 16px; }
.jotform-frame { width: 100%; height: 1450px; border: none; display: block; }

/* Footer */
.site-footer { border-top: 1px solid var(--border); padding: 32px 0 48px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-brand span { font-family: 'Baloo 2', cursive; font-weight: 600; font-size: 15px; }
.footer-tag { font-size: 14px; color: #6b747b; }

/* Meet Bird page */
.meetbird-section { padding: 0 0 64px; }
.meetbird-grid { background: var(--orange-tint); border-radius: 32px; padding: 48px; display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: start; }
.meetbird-photo-col { position: sticky; top: 24px; display: flex; flex-direction: column; gap: 20px; }
.meetbird-founder { display: flex; align-items: center; justify-content: center; gap: 12px; }
.meetbird-founder span { font-family: 'Baloo 2', cursive; font-weight: 700; font-size: 20px; }
.meetbird-text h1 { font-size: 38px; line-height: 1.15; margin-bottom: 24px; }
.meetbird-text .body { display: flex; flex-direction: column; gap: 20px; font-size: 17px; line-height: 1.7; color: #454f57; }
.meetbird-text p { margin: 0; }
.highlight-box { background: var(--teal-tint); border-radius: 20px; padding: 24px 28px; margin-top: 4px; }
.highlight-box p { font-weight: 600; color: var(--ink); margin: 0; }

/* Services overview page */
.services-overview-intro { background: linear-gradient(120deg, var(--teal-tint), var(--orange-tint)); border-radius: 32px; padding: 48px; max-width: 760px; }
.services-overview-intro h1 { font-size: 38px; line-height: 1.15; margin-bottom: 20px; }
.services-overview-intro p { font-size: 17px; line-height: 1.7; color: #454f57; margin: 0; }
.service-detail-list { padding: 24px 0 80px; display: flex; flex-direction: column; gap: 20px; }
.service-detail-card { border-radius: 24px; padding: 36px; }
.service-detail-card.teal { background: var(--teal-tint); }
.service-detail-card.orange { background: var(--orange-tint); }
.service-detail-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 12px; }
.service-detail-head h2 { font-size: 24px; }
.service-detail-price { font-weight: 700; font-size: 17px; color: var(--teal); }
.service-detail-card p { font-size: 16px; line-height: 1.65; color: #454f57; margin: 0; }

/* Blog page */
.blog-header { padding: 40px 0 24px; }
.blog-header-card { background: linear-gradient(120deg, var(--teal-tint), var(--orange-tint)); border-radius: 32px; padding: 48px; max-width: 760px; }
.blog-header-card h1 { font-size: 44px; margin-bottom: 12px; }
.blog-header-card p { font-size: 17px; line-height: 1.6; color: #454f57; margin: 0; }
.blog-state { padding: 24px 0 80px; }
.blog-state-card { background: var(--teal-tint); border-radius: 32px; padding: 56px 40px; text-align: center; }
.blog-state-card.error-state { background: var(--orange-tint); }
.blog-state-card h2 { font-size: 24px; margin-bottom: 10px; }
.blog-state-card p { font-size: 16px; line-height: 1.6; color: #454f57; max-width: 440px; margin: 0 auto 24px; }
.blog-posts { padding: 24px 0 80px; }
.blog-posts-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.blog-post-card { border-radius: 20px; padding: 28px; display: flex; flex-direction: column; gap: 10px; color: var(--ink); }
.blog-post-card.teal { background: var(--teal-tint); }
.blog-post-card.teal:hover { background: #b9eef0; }
.blog-post-card.orange { background: var(--orange-tint); }
.blog-post-card.orange:hover { background: #ffdbb0; }
.blog-post-date { font-size: 13px; font-weight: 600; color: var(--teal); }
.blog-post-card h3 { font-size: 19px; }
.blog-post-card p { font-size: 15px; line-height: 1.55; color: #545e66; margin: 0; flex: 1; }
.blog-post-more { font-weight: 600; font-size: 14px; color: var(--teal); }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero h1 { font-size: 44px; }
  .about-card, .meetbird-grid { padding: 40px; gap: 44px; }
}

@media (max-width: 768px) {
  .wrap { padding: 0 20px; }
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--cream);
    padding: 20px 24px 28px;
    box-shadow: 0 12px 24px rgba(0,0,0,.1);
    border-radius: 0 0 20px 20px;
    z-index: 30;
  }
  .nav-links.open { display: flex; }

  .hero { grid-template-columns: 1fr; gap: 32px; padding: 28px 0 40px; }
  .hero h1 { font-size: 38px; }
  .hero p { font-size: 16px; }
  .hero-art svg { width: 200px; height: 200px; }

  .about-card { grid-template-columns: 1fr; gap: 28px; padding: 32px; }
  .about-card h2, .services-intro h2, .contact-info h2 { font-size: 28px; }

  .services-card-wrap { padding: 32px; }
  .services-grid { grid-template-columns: 1fr; }

  .section-contact { grid-template-columns: 1fr; gap: 24px; padding: 32px 0 56px; }
  .contact-info { padding: 40px 32px; }
  .book-consult { padding: 32px; }

  .meetbird-grid { grid-template-columns: 1fr; padding: 32px; gap: 28px; }
  .meetbird-photo-col { position: static; }
  .meetbird-text h1 { font-size: 32px; }

  .services-overview-intro { padding: 36px; }
  .services-overview-intro h1 { font-size: 32px; }
  .service-detail-card { padding: 28px; }

  .blog-header-card { padding: 36px; }
  .blog-header-card h1 { font-size: 36px; }
  .blog-posts-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .wrap { padding: 0 16px; }
  .hero h1 { font-size: 32px; }
  .hero-art svg { width: 160px; height: 160px; }
  .about-card, .services-card-wrap { padding: 24px; }
  .about-card h2, .services-intro h2 { font-size: 26px; }
  .contact-info { padding: 32px 24px; }
  .book-consult { padding: 24px; }
  .meetbird-grid { padding: 24px; }
  .meetbird-text h1 { font-size: 28px; }
  .services-overview-intro { padding: 28px; }
  .services-overview-intro h1 { font-size: 28px; }
  .service-detail-card { padding: 24px; }
  .blog-header-card h1 { font-size: 32px; }
}
