/* ── 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;
    }
    
    /* ── HERO ── */
    .contact-hero {
    background: linear-gradient(135deg, var(--cream) 50%, #f3e8f0 100%);
    text-align: center;
    padding: 5rem 2rem 3.5rem;
    position: relative;
    overflow: hidden;
    }
    .contact-hero::before {
    content: '';
    position: absolute; top: -50px; left: -50px;
    width: 220px; height: 220px;
    background: var(--blush); opacity: .2; border-radius: 50%;
    }
    .contact-hero::after {
    content: '';
    position: absolute; bottom: -50px; right: -30px;
    width: 200px; height: 200px;
    background: var(--sage); opacity: .18; border-radius: 50%;
    }
    .contact-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700; color: var(--charcoal);
    margin: .5rem 0 1rem;
    position: relative; z-index: 1;
    }
    .contact-hero h1 em { color: var(--sage-deep); font-style: normal; }
    .contact-hero p {
    color: #5a4f55; font-size: 1.05rem;
    max-width: 500px; margin: 0 auto;
    position: relative; z-index: 1;
    }
    .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;
    position: relative; z-index: 1;
    }
    
    /* ── TEAM SECTION ── */
    .team-section { padding: 4rem 2rem 2rem; }
    .team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 760px;
    margin: 0 auto;
    }
    .person-card {
    background: var(--white);
    border: 1.5px solid var(--blush);
    border-radius: var(--radius);
    padding: 2.2rem 1.8rem 1.8rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform .2s, box-shadow .2s;
    }
    .person-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(58,46,53,.13);
    }
    .person-photo-wrap {
    width: 110px; height: 110px;
    border-radius: 50%;
    margin: 0 auto 1.2rem;
    border: 4px solid var(--blush);
    overflow: hidden;
    background: linear-gradient(135deg, var(--blush), var(--sage));
    box-shadow: 0 6px 20px rgba(168,197,160,.3);
    }
    .person-photo {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    }
    .person-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem; font-weight: 700;
    color: var(--charcoal); margin: 0 0 .25rem;
    }
    .person-role {
    font-size: .78rem; font-weight: 700;
    letter-spacing: .1em; text-transform: uppercase;
    color: var(--sage-deep); margin-bottom: 1.1rem;
    }
    .contact-detail {
    display: flex; align-items: center; justify-content: center;
    gap: .5rem; font-size: .87rem; color: #5a4f55;
    margin-bottom: .45rem;
    }
    .contact-detail a {
    color: var(--sage-deep); text-decoration: none; font-weight: 600;
    }
    .contact-detail a:hover { text-decoration: underline; }
    
    /* ── REACH OUT SECTION ── */
    .reach-section {
    padding: 3rem 2rem 5rem;
    background: linear-gradient(135deg, #f0dde6 0%, #ddf0e5 100%);
    }
    .section-center { text-align: center; margin-bottom: 2.5rem; }
    .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.4rem);
    font-weight: 700; margin-bottom: .8rem;
    }
    .section-sub { color: #5a4f55; font-size: 1.05rem; max-width: 500px; margin: 0 auto; }
    
    .reach-out-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
    }
    .reach-card {
    background: var(--white);
    border: 1.5px solid var(--blush);
    border-radius: var(--radius);
    padding: 2.2rem 1.8rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform .2s, box-shadow .2s;
    display: flex; flex-direction: column; align-items: center;
    }
    .reach-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(58,46,53,.13);
    }
    .reach-icon {
    font-size: 2rem;
    background: var(--blush);
    width: 64px; height: 64px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1rem;
    }
    .reach-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem; font-weight: 700;
    color: var(--charcoal); margin-bottom: .6rem;
    }
    .reach-card p {
    font-size: .9rem; color: #5a4f55;
    margin-bottom: 1.3rem; line-height: 1.6;
    }
    .reach-btn {
    display: block;
    background: var(--cream);
    border: 1.5px solid var(--blush);
    border-radius: 50px;
    padding: .55rem 1.3rem;
    font-size: .88rem; font-weight: 700;
    color: var(--sage-deep);
    text-decoration: none;
    transition: background .2s, border-color .2s, transform .15s;
    width: 100%; margin-bottom: .5rem;
    }
    .reach-btn:hover {
    background: var(--blush);
    border-color: var(--blush-deep);
    transform: translateY(-2px);
    }
    
    /* ── 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: 700px) {
    .team-grid { grid-template-columns: 1fr; }
    .reach-out-grid { grid-template-columns: 1fr; }
    footer { grid-template-columns: 1fr; padding: 2.5rem 1.5rem; gap: 2rem; }
    }
    @media (max-width: 600px) {
    .nav-links { display: none; }
    }

    .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;
        }
      }