/* ── Tokens ── */
:root {
    --blush:      #F9C6D0;
    --blush-deep: #F0A3B5;
    --sage:       #A8C5A0;
    --sage-deep:  #3D6B4F;
    --cream:      #FEF6F8;
    --charcoal:   #3A2E35;
    --white:      #FFFFFF;
    --shadow:     0 4px 24px rgba(58,46,53,.10);
    --radius:     18px;
    --radius-sm:  10px;
  }
  
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Nunito', sans-serif;
    background: var(--cream);
    color: var(--charcoal);
    line-height: 1.7;
  }
  
  /* ── NAV ── */
  nav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(254,246,248,.92);
    backdrop-filter: blur(10px);
    border-bottom: 1.5px solid var(--blush);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0.9rem 2.5rem;
  }
  .nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem; font-weight: 700;
    color: var(--sage-deep);
    display: flex; align-items: center; gap: .5rem;
    text-decoration: none;
  }
  .nav-logo span { color: var(--blush-deep); }
  .nav-links { display: flex; gap: 2rem; list-style: none; }
  .nav-links a {
    text-decoration: none; font-weight: 600; font-size: .95rem;
    color: var(--charcoal); transition: color .2s;
  }
  .nav-links a:hover { color: var(--sage-deep); }
  .nav-cta {
    background: var(--sage-deep); color: var(--white) !important;
    padding: .45rem 1.2rem; border-radius: 50px;
    transition: background .2s, transform .15s;
  }
  .nav-cta:hover { background: var(--blush-deep) !important; transform: translateY(-1px); }
  
  /* ── HERO ── */
  .hero {
    min-height: 90vh;
    display: grid; grid-template-columns: 1fr 1fr;
    align-items: center; gap: 3rem;
    padding: 5rem 6rem 4rem;
    background: linear-gradient(135deg, var(--cream) 55%, #f3e8f0 100%);
    position: relative; overflow: hidden;
  }
  .hero::after {
    content: '';
    position: absolute; bottom: -60px; right: -60px;
    width: 320px; height: 320px;
    background: var(--blush); opacity: .25;
    border-radius: 50%; pointer-events: none;
  }
  .hero-eyebrow {
    display: inline-block;
    background: var(--blush); color: var(--sage-deep);
    font-weight: 700; font-size: .82rem; letter-spacing: .12em;
    text-transform: uppercase; padding: .35rem 1rem;
    border-radius: 50px; margin-bottom: 1.2rem;
  }
  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 4.5vw, 3.6rem);
    font-weight: 700; line-height: 1.2;
    color: var(--charcoal); margin-bottom: 1.2rem;
  }
  .hero h1 em { color: var(--sage-deep); font-style: normal; }
  .hero p { font-size: 1.1rem; color: #5a4f55; max-width: 480px; margin-bottom: 2rem; }
  .btn-group { display: flex; gap: 1rem; flex-wrap: wrap; }
  .btn {
    display: inline-block; padding: .75rem 2rem;
    border-radius: 50px; font-weight: 700; font-size: 1rem;
    text-decoration: none; transition: transform .2s, box-shadow .2s;
    cursor: pointer; border: none;
  }
  .btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,.13); }
  .btn-primary { background: var(--sage-deep); color: var(--white); }
  .btn-outline {
    background: transparent; border: 2px solid var(--sage-deep); color: var(--sage-deep);
  }
  .btn-outline:hover { background: var(--sage-deep); color: var(--white); }
  .hero-visual { display: flex; justify-content: center; align-items: center; z-index: 2; }
  .hero-visual svg {
    width: min(420px, 90%);
    filter: drop-shadow(0 12px 36px rgba(168,197,160,.45));
    animation: float 5s ease-in-out infinite;
  }
  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-14px); }
  }
  
  /* ── STATS ── */
  .stats {
    background: var(--sage-deep);
    display: flex; justify-content: center; flex-wrap: wrap;
  }
  .stat-item {
    flex: 1 1 200px; text-align: center;
    padding: 2.2rem 2rem;
    border-right: 1px solid rgba(255,255,255,.15);
    color: var(--white);
  }
  .stat-item:last-child { border-right: none; }
  .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem; font-weight: 700; color: var(--blush);
  }
  .stat-label { font-size: .88rem; opacity: .85; margin-top: .2rem; }
  
  /* ── SECTION SHARED ── */
  section { padding: 5.5rem 6rem; }
  .section-label {
    display: inline-block; font-size: .78rem; font-weight: 700;
    letter-spacing: .14em; text-transform: uppercase; color: var(--sage-deep);
    background: rgba(168,197,160,.18); padding: .3rem .9rem;
    border-radius: 50px; margin-bottom: .75rem;
  }
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700; margin-bottom: 1rem;
  }
  .section-sub { color: #5a4f55; max-width: 560px; font-size: 1.05rem; }
  
  /* ── ABOUT ── */
  .about {
    background: var(--white);
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 5rem; align-items: center;
  }
  .about-cards { display: flex; flex-direction: column; gap: 1.2rem; }
  .about-card {
    background: var(--cream); border: 1.5px solid var(--blush);
    border-radius: var(--radius); padding: 1.4rem 1.6rem;
    display: flex; gap: 1rem; align-items: flex-start;
  }
  .about-card-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    background: var(--blush); border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.35rem;
  }
  .about-card h4 { font-weight: 700; margin-bottom: .25rem; }
  .about-card p { font-size: .93rem; color: #5a4f55; }
  
  /* ── LEARN ── */
  .learn { background: var(--cream); }
  .learn-header { text-align: center; margin-bottom: 3rem; }
  .learn-header .section-sub { margin: 0 auto; }
  .alphabet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(78px, 1fr));
    gap: .75rem; max-width: 860px; margin: 0 auto 3rem;
  }
  .letter-card {
    background: var(--white); border: 2px solid var(--blush);
    border-radius: var(--radius-sm); padding: 1rem .5rem;
    text-align: center; transition: border-color .2s, transform .2s, box-shadow .2s;
  }
  .letter-card:hover {
    border-color: var(--sage); transform: translateY(-4px); box-shadow: var(--shadow);
  }
  .letter-card .asl-emoji { font-size: 1.7rem; }
  .letter-card .letter-label { display: block; font-weight: 700; font-size: .95rem; margin-top: .3rem; color: var(--sage-deep); }
  .learn-cta-wrap { text-align: center; }
  
  /* ── GET INVOLVED ── */
  .involve { background: var(--white); }
  .involve-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.6rem; margin-top: 3rem;
  }
  .involve-card {
    background: var(--cream); border-radius: var(--radius);
    padding: 2rem; border-top: 5px solid var(--blush);
    box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s;
  }
  .involve-card:nth-child(2) { border-top-color: var(--sage); }
  .involve-card:nth-child(3) { border-top-color: var(--blush-deep); }
  .involve-card:hover { transform: translateY(-5px); box-shadow: 0 12px 32px rgba(58,46,53,.14); }
  .involve-card .card-icon { font-size: 2.2rem; margin-bottom: 1rem; }
  .involve-card h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; margin-bottom: .6rem; }
  .involve-card p { font-size: .95rem; color: #5a4f55; margin-bottom: 1.2rem; }
  .card-link {
    font-weight: 700; font-size: .9rem; color: var(--sage-deep);
    text-decoration: none; display: inline-flex; align-items: center; gap: .3rem;
    transition: gap .2s;
  }
  .card-link:hover { gap: .6rem; }
  
  /* ── CONTACT ── */
  .contact {
    background: linear-gradient(135deg, #f0dde6 0%, #ddf0e5 100%);
    text-align: center;
  }
  .contact .section-title, .contact .section-sub { margin: 0 auto; }
  .contact .section-sub { margin-bottom: 2.2rem; }
  .form-row {
    display: flex; gap: .8rem; justify-content: center;
    flex-wrap: wrap; max-width: 520px; margin: 0 auto 1rem;
  }
  .form-row input {
    flex: 1 1 220px; padding: .75rem 1.2rem;
    border: 2px solid var(--blush-deep); border-radius: 50px;
    font-size: 1rem; font-family: 'Nunito', sans-serif;
    background: var(--white); outline: none; transition: border-color .2s;
  }
  .form-row input:focus { border-color: var(--sage-deep); }
  .form-note { font-size: .82rem; color: #7a6a72; }
  
  /* ── FOOTER ── */
  footer {
    background: var(--charcoal); color: rgba(255,255,255,.75);
    padding: 3rem 6rem;
    display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem;
  }
  .footer-brand p { font-size: .9rem; margin-top: .6rem; line-height: 1.6; }
  footer h4 { font-weight: 700; color: var(--white); margin-bottom: .8rem; font-size: .95rem; }
  footer ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
  footer ul a { color: rgba(255,255,255,.7); text-decoration: none; font-size: .9rem; transition: color .2s; }
  footer ul a:hover { color: var(--blush); }
  .footer-bottom {
    background: #2a2028; text-align: center; padding: 1rem;
    font-size: .82rem; color: rgba(255,255,255,.45);
  }
  .footer-logo { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; color: var(--white); }
  .footer-logo span { color: var(--blush); }
  
  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    nav { padding: .8rem 1.4rem; }
    .nav-links { gap: 1.2rem; }
    .hero { grid-template-columns: 1fr; padding: 4rem 2rem 3rem; text-align: center; min-height: auto; }
    .hero-visual { order: -1; }
    .hero p { margin: 0 auto 2rem; }
    .btn-group { justify-content: center; }
    section { padding: 4rem 2rem; }
    .about { grid-template-columns: 1fr; gap: 2.5rem; }
    footer { grid-template-columns: 1fr; padding: 2.5rem 2rem; gap: 2rem; }
  }
  @media (max-width: 600px) {
    .nav-links { display: none; }
    .stats { flex-direction: column; }
    .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.15); }
  }
  @media (prefers-reduced-motion: reduce) {
    .hero-visual svg { animation: none; }
    * { transition-duration: 0ms !important; }
  }

  root {
    --blush:      #F9C6D0;
    --blush-deep: #F0A3B5;
    --sage:       #A8C5A0;
    --sage-deep:  #3D6B4F;
    --cream:      #FEF6F8;
    --charcoal:   #3A2E35;
    --white:      #FFFFFF;
    --shadow:     0 4px 24px rgba(58,46,53,.10);
    --radius:     18px;
    --radius-sm:  10px;
  }
  
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body { font-family: 'Nunito', sans-serif; background: var(--cream); color: var(--charcoal); line-height: 1.7; }
  
  /* NAV */
  nav { position: sticky; top: 0; z-index: 100; background: rgba(254,246,248,.92); backdrop-filter: blur(10px); border-bottom: 1.5px solid var(--blush); display: flex; align-items: center; justify-content: space-between; padding: 0.9rem 2.5rem; }
  .nav-logo { font-family: 'Playfair Display', serif; font-size: 1.35rem; font-weight: 700; color: var(--sage-deep); display: flex; align-items: center; gap: .5rem; text-decoration: none; }
  .nav-logo span { color: var(--blush-deep); }
  .nav-links { display: flex; gap: 2rem; list-style: none; }
  .nav-links a { text-decoration: none; font-weight: 600; font-size: .95rem; color: var(--charcoal); transition: color .2s; }
  .nav-links a:hover { color: var(--sage-deep); }
  .nav-cta { background: var(--sage-deep); color: var(--white) !important; padding: .45rem 1.2rem; border-radius: 50px; transition: background .2s, transform .15s; }
  .nav-cta:hover { background: var(--blush-deep) !important; transform: translateY(-1px); }
  
  /* HERO */
  .hero { min-height: 90vh; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 3rem; padding: 5rem 6rem 4rem; background: linear-gradient(135deg, var(--cream) 55%, #f3e8f0 100%); position: relative; overflow: hidden; }
  .hero::after { content: ''; position: absolute; bottom: -60px; right: -60px; width: 320px; height: 320px; background: var(--blush); opacity: .25; border-radius: 50%; pointer-events: none; }
  .hero-eyebrow { display: inline-block; background: var(--blush); color: var(--sage-deep); font-weight: 700; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; padding: .35rem 1rem; border-radius: 50px; margin-bottom: 1.2rem; }
  .hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.4rem, 4.5vw, 3.6rem); font-weight: 700; line-height: 1.2; color: var(--charcoal); margin-bottom: 1.2rem; }
  .hero h1 em { color: var(--sage-deep); font-style: normal; }
  .hero p { font-size: 1.1rem; color: #5a4f55; max-width: 480px; margin-bottom: 2rem; }
  .hero-visual { display: flex; justify-content: center; align-items: center; z-index: 2; }
  .hero-visual svg { width: min(420px, 90%); filter: drop-shadow(0 12px 36px rgba(168,197,160,.45)); animation: float 5s ease-in-out infinite; }
  @keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
  
  /* BUTTONS */
  .btn-group { display: flex; gap: 1rem; flex-wrap: wrap; }
  .btn { display: inline-block; padding: .75rem 2rem; border-radius: 50px; font-weight: 700; font-size: 1rem; text-decoration: none; transition: transform .2s, box-shadow .2s; cursor: pointer; border: none; font-family: 'Nunito', sans-serif; }
  .btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,.13); }
  .btn-primary { background: var(--sage-deep); color: var(--white); }
  .btn-outline { background: transparent; border: 2px solid var(--sage-deep); color: var(--sage-deep); }
  .btn-outline:hover { background: var(--sage-deep); color: var(--white); }
  
  /* STATS */
  .stats { background: var(--sage-deep); display: flex; justify-content: center; flex-wrap: wrap; }
  .stat-item { flex: 1 1 200px; text-align: center; padding: 2.2rem 2rem; border-right: 1px solid rgba(255,255,255,.15); color: var(--white); }
  .stat-item:last-child { border-right: none; }
  .stat-num { font-family: 'Playfair Display', serif; font-size: 2.6rem; font-weight: 700; color: var(--blush); }
  .stat-label { font-size: .88rem; opacity: .85; margin-top: .2rem; }
  
  /* SHARED SECTION STYLES */
  section { padding: 5.5rem 6rem; }
  .section-label { display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--sage-deep); background: rgba(168,197,160,.18); padding: .3rem .9rem; border-radius: 50px; margin-bottom: .75rem; }
  .section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700; margin-bottom: 1rem; }
  .section-sub { color: #5a4f55; max-width: 560px; font-size: 1.05rem; }
  
  /* ABOUT */
  .about { background: var(--white); display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
  .about-cards { display: flex; flex-direction: column; gap: 1.2rem; }
  .about-card { background: var(--cream); border: 1.5px solid var(--blush); border-radius: var(--radius); padding: 1.4rem 1.6rem; display: flex; gap: 1rem; align-items: flex-start; }
  .about-card-icon { width: 44px; height: 44px; flex-shrink: 0; background: var(--blush); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.35rem; }
  .about-card h4 { font-weight: 700; margin-bottom: .25rem; }
  .about-card p { font-size: .93rem; color: #5a4f55; }
  
  /* LEARN / ALPHABET */
  .learn { background: var(--cream); }
  .learn-header { text-align: center; margin-bottom: 3rem; }
  .learn-header .section-sub { margin: 0 auto; }
  .alphabet-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(90px, 1fr)); gap: .85rem; max-width: 900px; margin: 0 auto 1.5rem; }
  .letter-card { background: var(--white); border: 2px solid var(--blush); border-radius: var(--radius-sm); padding: .8rem .4rem; text-align: center; transition: border-color .2s, transform .2s, box-shadow .2s; cursor: pointer; position: relative; }
  .letter-card:hover { border-color: var(--sage-deep); transform: translateY(-4px); box-shadow: var(--shadow); z-index: 5; }
  .letter-card.active { border-color: var(--sage-deep); background: var(--sage-deep); }
  .letter-card.active .letter-label { color: var(--white); }
  
  /* Photo slot — replace inner content with <img> tag when you have photos */
  .letter-img-slot { width: 52px; height: 52px; border-radius: 8px; background: var(--blush); margin: 0 auto .3rem; display: flex; align-items: center; justify-content: center; overflow: hidden; font-size: .55rem; color: var(--sage-deep); font-weight: 700; text-align: center; line-height: 1.3; }
  .letter-img-slot img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; }
  .asl-emoji { font-size: 1.4rem; }
  .letter-label { display: block; font-weight: 700; font-size: .95rem; margin-top: .2rem; color: var(--sage-deep); }
  
  /* Expanded letter info panel */
  .letter-info-panel { max-width: 900px; margin: 0 auto 2rem; background: var(--white); border: 2px solid var(--sage); border-radius: var(--radius); padding: 1.6rem 2rem; display: none; }
  .letter-info-panel.visible { display: flex; gap: 1.5rem; align-items: flex-start; animation: fadeIn .3s ease; }
  .panel-img-slot { width: 120px; height: 120px; flex-shrink: 0; border-radius: var(--radius-sm); background: var(--blush); display: flex; align-items: center; justify-content: center; font-size: .72rem; color: var(--sage-deep); font-weight: 700; text-align: center; overflow: hidden; }
  .panel-img-slot img { width: 100%; height: 100%; object-fit: cover; }
  .panel-text h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--sage-deep); margin-bottom: .4rem; }
  .panel-text p { font-size: .93rem; color: #5a4f55; }
  @keyframes fadeIn { from { opacity:0; transform:translateY(8px); } to { opacity:1; transform:translateY(0); } }
  .learn-cta-wrap { text-align: center; }
  
  /* GET INVOLVED */
  .involve { background: var(--white); }
  .involve-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.6rem; margin-top: 3rem; }
  .involve-card { background: var(--cream); border-radius: var(--radius); padding: 2rem; border-top: 5px solid var(--blush); box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s; }
  .involve-card:nth-child(2) { border-top-color: var(--sage); }
  .involve-card:nth-child(3) { border-top-color: var(--blush-deep); }
  .involve-card:hover { transform: translateY(-5px); box-shadow: 0 12px 32px rgba(58,46,53,.14); }
  .involve-card .card-icon { font-size: 2.2rem; margin-bottom: 1rem; }
  .involve-card h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; margin-bottom: .6rem; }
  .involve-card p { font-size: .95rem; color: #5a4f55; margin-bottom: 1.2rem; }
  .card-link { font-weight: 700; font-size: .9rem; color: var(--sage-deep); text-decoration: none; display: inline-flex; align-items: center; gap: .3rem; transition: gap .2s; }
  .card-link:hover { gap: .6rem; }
  
  /* NEWSLETTER */
  .contact { background: linear-gradient(135deg, #f0dde6 0%, #ddf0e5 100%); text-align: center; }
  .contact .section-title, .contact .section-sub { margin: 0 auto; }
  .contact .section-sub { margin-bottom: 2.2rem; }
  .form-row { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; max-width: 520px; margin: 0 auto 1rem; }
  .form-row input { flex: 1 1 220px; padding: .75rem 1.2rem; border: 2px solid var(--blush-deep); border-radius: 50px; font-size: 1rem; font-family: 'Nunito', sans-serif; background: var(--white); outline: none; transition: border-color .2s; }
  .form-row input:focus { border-color: var(--sage-deep); }
  .form-note { font-size: .82rem; color: #7a6a72; }
  
  /* FOOTER */
  footer { background: var(--charcoal); color: rgba(255,255,255,.75); padding: 3rem 6rem; display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; }
  .footer-brand p { font-size: .9rem; margin-top: .6rem; line-height: 1.6; }
  footer h4 { font-weight: 700; color: var(--white); margin-bottom: .8rem; font-size: .95rem; }
  footer ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
  footer ul a { color: rgba(255,255,255,.7); text-decoration: none; font-size: .9rem; transition: color .2s; }
  footer ul a:hover { color: var(--blush); }
  .footer-bottom { background: #2a2028; text-align: center; padding: 1rem; font-size: .82rem; color: rgba(255,255,255,.45); }
  .footer-logo { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; color: var(--white); }
  .footer-logo span { color: var(--blush); }
  
  /* RESPONSIVE */
  @media (max-width: 900px) {
    nav { padding: .8rem 1.4rem; }
    .hero { grid-template-columns: 1fr; padding: 4rem 2rem 3rem; text-align: center; min-height: auto; }
    .hero-visual { order: -1; }
    .hero p { margin: 0 auto 2rem; }
    .btn-group { justify-content: center; }
    section { padding: 4rem 2rem; }
    .about { grid-template-columns: 1fr; gap: 2.5rem; }
    footer { grid-template-columns: 1fr; padding: 2.5rem 2rem; gap: 2rem; }
  }
  @media (max-width: 600px) {
    .nav-links { display: none; }
    .stats { flex-direction: column; }
    .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.15); }
  }
  @media (prefers-reduced-motion: reduce) {
    .hero-visual svg { animation: none; }
    * { transition-duration: 0ms !important; }
  }

  .nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
  }
  
  @media (max-width: 768px) {
    .nav-toggle {
      display: block;
    }
  
    .nav-links {
      display: none;
      flex-direction: column;
      width: 100%;
    }
  
    .nav-links.active {
      display: flex;
    }
  
    nav {
      flex-wrap: wrap;
    }
  }