/* ==========================================================================
   Bright Haven — Main Stylesheet
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS CUSTOM PROPERTIES (Design Tokens)
   -------------------------------------------------------------------------- */
:root {
    /* Typography */
    --font-heading: 'Montserrat', system-ui, -apple-system, sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    
    /* Primary Brand Colors */
    --charcoal: #18242D;              /* Brand name, fine details */
    --solar-yellow: #FABC17;          /* Hope, action, CTAs */
    --solar-yellow-hover: #E5AB14;    /* Yellow hover state */
    --solar-blue: #027ED4;            /* Links, interactive elements */
    --solar-blue-light: #7ECFF5;      /* Highlights, info blocks */
    --off-white: #FBF8F3;
    
    /* Warm heading blue - trustworthy but approachable */
    --heading-blue: #1E5A8A;
    
    /* Mapped for existing styles */
    --navy: #1E5A8A;
    --navy-dark: #164567;
    --solar-gold: #FABC17;
    --solar-amber: #E8AB2D;
    --panel-blue: #027ED4;
    
    /* Neutral - backgrounds */
    --cream: #FBF8F3;
    --cream-dark: #F0EDE6;
    --warm-light: #E6E3DC;
    --warm-mid: #D4D1CA;
    
    /* Text colors - warm and approachable */
    --text-primary: #4A5568;          /* Warm gray body text */
    --text-secondary: #64748B;        /* Lighter secondary */
    --text-on-dark: #FBF8F3;
    --heading-color: #1E5A8A;         /* Warm blue headings */
    --brand-color: #18242D;           /* Charcoal for brand name */
}


/* --------------------------------------------------------------------------
   RESET & BASE
   -------------------------------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: -0.011em;
    color: var(--text-primary);
    background: var(--cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
}


/* --------------------------------------------------------------------------
   TYPOGRAPHY
   -------------------------------------------------------------------------- */

/* Headings (Montserrat - logo-matched weights) */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--heading-color);
    margin-bottom: 0;
}

h1 {
    font-size: clamp(38px, 7vw, 56px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.025em;
}

h2 {
    font-size: clamp(32px, 5vw, 42px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

h3 {
    font-size: clamp(26px, 4vw, 32px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.015em;
}

h4 {
    font-size: clamp(22px, 3vw, 24px);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

h5 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: 0;
}

/* Body text */
p {
    margin-bottom: 24px;
    max-width: 70ch;
}

strong, b {
    font-weight: 600;
}

/* Tagline style (matches logo tagline) */
.tagline {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.85;
    line-height: 1.4;
}


/* --------------------------------------------------------------------------
   ACCESSIBILITY
   -------------------------------------------------------------------------- */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--navy);
    color: white;
    padding: 0.5rem 1rem;
    text-decoration: none;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

a:focus,
button:focus {
    outline: 3px solid var(--solar-gold);
    outline-offset: 2px;
}


/* --------------------------------------------------------------------------
   HEADER & NAVIGATION
   -------------------------------------------------------------------------- */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: #FBF8F3;
    box-shadow: 0 2px 8px rgba(24, 36, 45, 0.08);
    border-bottom: 1px solid rgba(24, 36, 45, 0.06);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.logo-link {
    display: flex;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-image {
    height: 50px;
    width: auto;
}

.brand-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--charcoal);
    letter-spacing: 0.03em;
    text-transform: uppercase;
    line-height: 1;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.03em;
    text-decoration: none;
    color: var(--charcoal);
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.nav-links a:hover {
    color: var(--solar-blue);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.hamburger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}


/* --------------------------------------------------------------------------
   BUTTONS
   -------------------------------------------------------------------------- */
.btn {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 14px 28px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    border-radius: 6px;
}

.btn-primary {
    background: var(--solar-yellow);
    color: var(--charcoal);
    box-shadow: 0 4px 12px rgba(250, 188, 23, 0.35);
}

.btn-primary:hover {
    background: var(--solar-yellow-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(250, 188, 23, 0.45);
}

.btn-secondary {
    background: transparent;
    color: var(--solar-blue);
    border: 2px solid var(--solar-blue);
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.02em;
}

.btn-secondary:hover {
    background: var(--solar-blue);
    color: white;
}


/* --------------------------------------------------------------------------
   SHARED SECTION STYLES
   -------------------------------------------------------------------------- */
.section-header {
    margin-bottom: 4rem;
    text-align: center;
}

.section-label {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.35rem;
    letter-spacing: 0.12em;
    color: var(--solar-yellow);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-intro {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 580px;
    margin: 0 auto;
    font-weight: 400;
}


/* --------------------------------------------------------------------------
   HERO SECTION
   -------------------------------------------------------------------------- */
.hero {
    margin-top: 70px;
    padding: 5rem 2rem;
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-container {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: center;
}

.hero-logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo {
    max-width: 450px;
    width: 100%;
    height: auto;
    display: block;
}

.hero-text {
    text-align: left;
}

.hero h1 {
    color: var(--navy);
    margin-bottom: 1.5rem;
}

.hero .tagline {
    color: var(--navy);
    margin-bottom: 2rem;
}

.hero .subtitle {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 580px;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}


/* --------------------------------------------------------------------------
   MISSION SECTION
   -------------------------------------------------------------------------- */
.mission {
    padding: 6rem 2rem;
    background: white;
}

.mission-content {
    max-width: 1200px;
    margin: 0 auto;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.mission-card {
    padding: 2.5rem 2rem;
    background: var(--cream);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.mission-card:hover {
    border-color: var(--solar-yellow);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.number {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 3rem;
    color: var(--solar-yellow);
    opacity: 0.7;
    line-height: 1;
    margin-bottom: 1rem;
}

.mission-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.mission-card p {
    max-width: 100%;
    margin-bottom: 0;
    font-size: 0.95rem;
}


/* --------------------------------------------------------------------------
   CHALLENGES SECTION
   -------------------------------------------------------------------------- */
.challenges {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    color: var(--text-on-dark);
}

.challenges-content {
    max-width: 1200px;
    margin: 0 auto;
}

.challenges .section-label {
    color: var(--solar-yellow);
}

.challenges h2,
.challenges h3 {
    color: var(--cream);
}

.challenges .section-intro {
    color: rgba(250, 247, 242, 0.85);
}

.challenges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.challenge-card {
    padding: 2.5rem 2rem;
    background: rgba(250, 247, 242, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(250, 247, 242, 0.15);
    transition: all 0.3s ease;
}

.challenge-card:hover {
    background: rgba(250, 247, 242, 0.12);
    border-color: var(--solar-yellow);
    transform: translateY(-4px);
}

.challenge-icon {
    width: 56px;
    height: 56px;
    background: var(--solar-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.challenge-icon svg {
    color: white;
}

.challenge-card h3 {
    margin-bottom: 1rem;
    font-size: 1.35rem;
}

.challenge-card p {
    color: rgba(250, 247, 242, 0.85);
    max-width: 100%;
    margin-bottom: 0;
    line-height: 1.7;
}


/* --------------------------------------------------------------------------
   SOLUTIONS SECTION
   -------------------------------------------------------------------------- */
.solutions {
    padding: 6rem 2rem;
    background: white;
}

.solutions-content {
    max-width: 1200px;
    margin: 0 auto;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.solution-card {
    padding: 3rem 2.5rem;
    background: linear-gradient(135deg, var(--cream) 0%, white 100%);
    border-radius: 16px;
    border: 2px solid var(--warm-light);
    transition: all 0.3s ease;
}

.solution-card:hover {
    border-color: var(--solar-yellow);
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.solution-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--solar-gold) 0%, var(--solar-amber) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.solution-icon svg {
    color: white;
    width: 36px;
    height: 36px;
}

.solution-card h3 {
    margin-bottom: 1.25rem;
    font-size: 1.65rem;
}

.solution-card p {
    max-width: 100%;
    margin-bottom: 1.5rem;
}

.solution-features {
    list-style: none;
    padding: 0;
}

.solution-features li {
    padding: 0.65rem 0;
    padding-left: 1.75rem;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.6;
}

.solution-features li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--solar-yellow);
    font-weight: bold;
    font-size: 1.1rem;
}


/* --------------------------------------------------------------------------
   PARTNERS SECTION
   -------------------------------------------------------------------------- */
.partners {
    padding: 6rem 2rem;
    background: white;
}

.partners-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.partners h2 {
    margin-bottom: 1.5rem;
}

.partner-categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.partner-category {
    text-align: left;
    padding: 2rem;
    background: var(--cream);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.partner-category:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.partner-category h3 {
    margin-bottom: 1.5rem;
    color: var(--navy);
    font-size: 1.35rem;
}

.partner-category ul {
    list-style: none;
    padding: 0;
}

.partner-category li {
    padding: 0.65rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.partner-category li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--solar-yellow);
    font-weight: bold;
}


/* --------------------------------------------------------------------------
   NETWORK LOGOS SECTION
   -------------------------------------------------------------------------- */
.network-logos {
    padding: 4rem 2rem;
    background: var(--cream);
    border-top: 1px solid var(--warm-light);
}

.network-logos-content {
    max-width: 1000px;
    margin: 0 auto;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    align-items: center;
    justify-items: center;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.logo-item:hover {
    opacity: 1;
}

.logo-item img {
    max-width: 180px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.logo-item:hover img {
    filter: grayscale(0%);
}


/* --------------------------------------------------------------------------
   CTA SECTION
   -------------------------------------------------------------------------- */
.cta-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--solar-gold) 0%, var(--solar-amber) 100%);
    text-align: center;
    color: white;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin: 0 auto 2.5rem;
    max-width: 650px;
    color: rgba(255, 255, 255, 0.95);
}

.cta-section .btn {
    background: white;
    color: var(--heading-blue);
    font-weight: 700;
}

.cta-section .btn:hover {
    background: var(--solar-yellow);
    color: var(--charcoal);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}


/* --------------------------------------------------------------------------
   LEADERSHIP / TEAM SECTION
   -------------------------------------------------------------------------- */
.leadership {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--solar-blue) 0%, var(--heading-blue) 100%);
    color: var(--text-on-dark);
}

.leadership-content {
    max-width: 1200px;
    margin: 0 auto;
}

.leadership .section-label {
    color: var(--solar-yellow);
}

.leadership h2 {
    color: var(--cream);
}

.leadership .section-intro {
    color: rgba(250, 247, 242, 0.85);
}

/* Team Subsections */
.team-subsection {
    margin-top: 4rem;
}

.team-subsection:first-of-type {
    margin-top: 2.5rem;
}

/* LARGE SCREENS: Card Grid Layout */
.directors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.advisors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.director-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.director-card:hover {
    border-color: var(--solar-yellow);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.director-photo {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--warm-light) 0%, var(--warm-mid) 100%);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.director-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.director-info {
    width: 100%;
}

.director-info h3 {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
    color: var(--heading-color);
}

.director-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--solar-yellow);
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.director-info p {
    line-height: 1.7;
    color: var(--text-secondary);
    font-size: 0.95rem;
    text-align: left;
    max-width: 100%;
    margin-bottom: 0;
}


/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */
footer {
    background: linear-gradient(135deg, var(--navy-dark) 0%, #08161F 100%);
    color: var(--warm-light);
    padding: 4.5rem 2rem 2.5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 1.35rem;
    color: var(--cream);
}

.footer-section p,
.footer-section a {
    line-height: 1.75;
    color: var(--warm-light);
    text-decoration: none;
    display: block;
    margin-bottom: 0.65rem;
    transition: all 0.2s;
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: var(--solar-yellow);
    padding-left: 4px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(250, 247, 242, 0.15);
    color: var(--warm-mid);
    font-size: 0.9rem;
}


/* --------------------------------------------------------------------------
   RESPONSIVE — Tablet (max-width: 1024px)
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .partner-categories {
        grid-template-columns: repeat(2, 1fr);
    }

    .directors-grid,
    .advisors-grid {
        display: flex;
        flex-direction: column;
        gap: 2.5rem;
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }

    .director-card {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
        gap: 2rem;
        padding: 2rem;
    }

    .director-card:hover {
        transform: translateX(8px);
    }

    .director-photo {
        width: 120px;
        height: 120px;
        margin-bottom: 0;
    }

    .director-info {
        flex: 1;
    }

    .director-info h3 {
        font-size: 1.4rem;
    }

    .director-info p {
        text-align: left;
    }
}


/* --------------------------------------------------------------------------
   RESPONSIVE — Mobile (max-width: 768px)
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
    body {
        font-size: 17px;
        line-height: 1.75;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--cream);
        flex-direction: column;
        padding: 1rem 2rem 1.5rem;
        gap: 0;
        box-shadow: 0 4px 12px rgba(24, 36, 45, 0.1);
        border-top: 1px solid rgba(24, 36, 45, 0.06);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(24, 36, 45, 0.06);
    }

    .nav-links li:last-child a {
        border-bottom: none;
    }

    .brand-name {
        display: none;
    }

    .hero {
        padding: 3rem 1.5rem;
        min-height: auto;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .hero-logo-wrapper {
        order: -1;
    }

    .hero-logo {
        max-width: 280px;
    }

    .hero-text {
        text-align: center;
    }

    .hero .subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .cta-buttons {
        justify-content: center;
    }

    .mission,
    .challenges,
    .solutions,
    .partners,
    .leadership,
    .cta-section {
        padding: 4rem 1.5rem;
    }

    .mission-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .mission-grid,
    .challenges-grid,
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    h1, h2, h3 {
        letter-spacing: -0.01em;
    }

    .tagline {
        font-size: 13px;
        letter-spacing: 0.12em;
    }

    .directors-grid,
    .advisors-grid {
        gap: 2rem;
    }

    .director-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: 2rem;
    }

    .director-card:hover {
        transform: translateY(-4px);
    }

    .director-photo {
        margin-bottom: 1.5rem;
    }

    .director-info h3 {
        font-size: 1.35rem;
    }

    .director-info p {
        text-align: left;
    }

    .logos-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}


/* --------------------------------------------------------------------------
   RESPONSIVE — Small Mobile (max-width: 640px)
   -------------------------------------------------------------------------- */
@media (max-width: 640px) {
    .partner-categories {
        grid-template-columns: 1fr;
    }
}


/* --------------------------------------------------------------------------
   RESPONSIVE — Extra Small (max-width: 480px)
   -------------------------------------------------------------------------- */
@media (max-width: 480px) {
    body {
        font-size: 16px;
    }

    p {
        max-width: 100%;
    }
}
