/* =============================================
   DEVON MARKS FOR DA — CAMPAIGN WEBSITE
   Colorado Flag: Blue · Red · White · Gold
   ============================================= */

:root {
    --blue:       #002868;
    --blue-dark:  #001a45;
    --blue-light: #1a4a8a;
    --red:        #BF0A30;
    --red-dark:   #8c0722;
    --red-light:  #d42a4f;
    --gold:       #FFD700;
    --gold-dark:  #c5a600;
    --white:      #FFFFFF;
    --off-white:  #F5F5F0;
    --gray-100:   #f0f0ec;
    --gray-200:   #ddd;
    --gray-600:   #666;
    --gray-800:   #222;
    --gray-900:   #111;

    --font-display: 'Oswald', sans-serif;
    --font-body: 'Source Sans 3', sans-serif;

    --section-pad: 100px;
    --container: 1200px;

    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.7;
    color: var(--gray-800);
    background: var(--white);
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.01em;
}
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.pos-relative { position: relative; z-index: 2; }
.text-accent { color: var(--red); }
.text-accent-gold { color: var(--gold); }
.lead { font-size: 1.15rem !important; font-weight: 400; line-height: 1.85 !important; }

/* === ANIMATIONS === */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
[data-animate="fade-left"] { transform: translateX(40px); }
[data-animate].is-visible { opacity: 1; transform: translate(0); }

/* === NAV === */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 16px 0;
    transition: background 0.4s var(--ease-smooth), padding 0.4s var(--ease-smooth), box-shadow 0.4s;
}
.nav.scrolled {
    background: rgba(0, 40, 104, 0.97);
    padding: 10px 0;
    box-shadow: 0 2px 30px rgba(0,0,0,0.2);
    backdrop-filter: blur(12px);
}
.nav-inner {
    max-width: var(--container); margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; gap: 8px; align-items: baseline; }
.logo-devon {
    font-family: var(--font-display); font-weight: 700; font-size: 1.3rem;
    color: var(--white); letter-spacing: 0.08em;
}
.logo-marks {
    font-family: var(--font-display); font-weight: 700; font-size: 1.3rem;
    color: var(--gold); letter-spacing: 0.08em;
}
.nav-links { list-style: none; display: flex; gap: 6px; align-items: center; }
.nav-links a {
    font-family: var(--font-display); font-size: 0.9rem; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.1em;
    color: rgba(255,255,255,0.8); padding: 8px 16px; border-radius: 4px;
    transition: color 0.3s, background 0.3s;
}
.nav-links a:hover, .nav-links a.active {
    color: var(--white); background: rgba(255,255,255,0.1);
}
.nav-cta {
    background: var(--red) !important; color: var(--white) !important;
    padding: 8px 20px !important; border-radius: 4px !important;
}
.nav-cta:hover { background: var(--red-light) !important; }

.nav-toggle {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span {
    display: block; width: 26px; height: 2px;
    background: var(--white); border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* === BUTTONS === */
.btn {
    display: inline-block; font-family: var(--font-display);
    font-size: 0.95rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.12em; padding: 14px 32px; border-radius: 4px;
    border: 2px solid transparent; cursor: pointer;
    transition: all 0.3s var(--ease-smooth); text-align: center;
}
.btn-primary { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-primary:hover {
    background: var(--red-dark); border-color: var(--red-dark);
    transform: translateY(-2px); box-shadow: 0 6px 24px rgba(191,10,48,0.3);
}
.btn-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--blue); transform: translateY(-2px); }
.btn-white { background: var(--white); color: var(--blue); border-color: var(--white); }
.btn-white:hover {
    background: var(--off-white); transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0,0,0,0.15);
}
.btn-lg { padding: 16px 40px; font-size: 1rem; }

/* === HERO === */
.hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg-img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(0,40,104,0.94) 0%, rgba(0,26,69,0.88) 50%, rgba(0,40,104,0.80) 100%);
}
.hero-content {
    position: relative; z-index: 2;
    max-width: var(--container); margin: 0 auto; padding: 120px 24px 60px;
    display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 40px;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--red); color: var(--white);
    font-family: var(--font-display); font-weight: 700; font-size: 1rem;
    letter-spacing: 0.2em; padding: 8px 20px; border-radius: 3px; margin-bottom: 20px;
}
.hero-badge-check { font-size: 1.2rem; }
.hero h1 {
    font-size: clamp(3.5rem, 8vw, 7rem); color: var(--white);
    line-height: 0.95; margin-bottom: 10px;
}
.hero-subtitle {
    font-family: var(--font-body); font-size: 1.2rem; font-style: italic;
    color: rgba(255,255,255,0.7); margin-bottom: 24px; font-weight: 300;
}
.hero-tagline {
    font-family: var(--font-display); font-size: 1.6rem; font-weight: 600;
    color: var(--gold); margin-bottom: 36px; text-transform: uppercase; letter-spacing: 0.04em;
}
.quote-mark { color: var(--red); font-size: 1.3em; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-image { display: flex; justify-content: center; align-items: flex-end; }
.hero-portrait {
    max-height: 450px; width: auto;
    filter: drop-shadow(0 20px 60px rgba(0,0,0,0.4));
    animation: float 4s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
.hero-scroll-indicator {
    position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    color: rgba(255,255,255,0.4); font-family: var(--font-display);
    font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; z-index: 2;
}
.scroll-line {
    width: 1px; height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.3; transform: scaleY(0.6); }
}

/* === SECTIONS === */
.section { padding: var(--section-pad) 0; position: relative; }

.section-grid {
    display: grid; grid-template-columns: 200px 1fr; gap: 60px; align-items: start;
}
.section-grid--reverse { direction: rtl; }
.section-grid--reverse > * { direction: ltr; }

.section-label { display: flex; flex-direction: column; gap: 12px; position: sticky; top: 120px; }
.section-label--light .label-number { color: var(--gold); }
.section-label--light .label-text { color: rgba(255,255,255,0.5); }
.section-label--light .label-line { background: var(--gold); }

.label-number { font-family: var(--font-display); font-size: 3rem; font-weight: 700; color: var(--red); line-height: 1; }
.label-line { width: 40px; height: 2px; background: var(--gold); }
.label-text { font-family: var(--font-display); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--gray-600); }

.section-content h2 { font-size: clamp(2rem, 4vw, 3rem); color: var(--blue); margin-bottom: 24px; }
.section-content p { font-size: 1.05rem; line-height: 1.8; margin-bottom: 16px; }
.section-content--light h2 { color: var(--white); }
.section-content--light p { color: rgba(255,255,255,0.9); }

.section-title-center {
    font-size: clamp(2rem, 4vw, 2.8rem); text-align: center;
    color: var(--blue); margin-bottom: 50px;
}

/* === FULL-BLEED IMAGE BREAK === */
.img-break { width: 100%; height: 340px; overflow: hidden; position: relative; }
.img-break img { width: 100%; height: 100%; object-fit: cover; transition: transform 8s linear; }
.img-break:hover img { transform: scale(1.03); }

/* === SECTION BACKGROUND PHOTO === */
.section-bg-photo { position: absolute; inset: 0; overflow: hidden; }
.section-bg-photo img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); }
.section-bg-tint {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(0,40,104,0.90), rgba(0,26,69,0.93));
}
.section-bg-tint--dark {
    background: linear-gradient(135deg, rgba(0,20,60,0.93), rgba(0,10,30,0.96));
}

/* === SPLIT CONTENT === */
.split-content { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.split-text .section-label { position: static; margin-bottom: 20px; }
.split-text h2 { font-size: clamp(2rem, 4vw, 3rem); color: var(--blue); margin-bottom: 24px; }
.split-text p { font-size: 1.05rem; line-height: 1.8; margin-bottom: 16px; }
.split-photo { border-radius: 10px; overflow: hidden; position: relative; height: 100%; min-height: 320px; }
.split-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-out); }
.split-photo:hover img { transform: scale(1.04); }

/* === BRIDGE SECTIONS === */
.section-photo-bridge { padding: 140px 0; position: relative; overflow: hidden; }
.bridge-content { max-width: 700px; }
.bridge-content h2 { font-size: clamp(2rem, 4vw, 3rem); color: var(--white); margin-bottom: 24px; }
.bridge-content p { color: rgba(255,255,255,0.85); font-size: 1.05rem; line-height: 1.8; margin-bottom: 16px; }
.bridge-quote { text-align: center; }
.quote-mark-lg { display: block; font-size: 5rem; color: var(--gold); line-height: 1; font-family: Georgia, serif; }
.bridge-quote p {
    font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 0.04em;
}

/* === WHY SECTION === */
.section-why { position: relative; overflow: hidden; }

/* === ENDORSEMENTS === */
.section-endorsements { background: var(--off-white); }
.endorsement-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px;
    max-width: 700px; margin: 0 auto;
}
.endorsement-card {
    background: var(--white); border-radius: 12px; padding: 40px 30px;
    text-align: center; box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    transition: transform 0.3s var(--ease-smooth), box-shadow 0.3s;
}
.endorsement-card:hover { transform: translateY(-4px); box-shadow: 0 8px 36px rgba(0,0,0,0.1); }
.endorsement-logo {
    width: 120px; height: 120px; margin: 0 auto 20px;
    display: flex; align-items: center; justify-content: center;
}
.endorsement-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.endorsement-card h3 {
    font-family: var(--font-display); font-size: 1rem; font-weight: 600;
    color: var(--blue); text-transform: uppercase; letter-spacing: 0.05em;
}

/* === CTA === */
.section-cta { padding: 100px 0; position: relative; overflow: hidden; background: var(--blue); }
.cta-box { text-align: center; max-width: 650px; margin: 0 auto; }
.cta-box h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--white); margin-bottom: 16px; }
.cta-box p { color: rgba(255,255,255,0.7); font-size: 1.1rem; margin-bottom: 32px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* === PAGE HEADER === */
.page-header { position: relative; padding: 180px 0 80px; overflow: hidden; }
.page-header-bg { position: absolute; inset: 0; }
.page-header-img { width: 100%; height: 100%; object-fit: cover; }
.page-header-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(0,40,104,0.7), rgba(0,26,69,0.95));
}
.page-header-label {
    font-family: var(--font-display); font-size: 0.85rem;
    text-transform: uppercase; letter-spacing: 0.2em;
    color: var(--gold); display: block; margin-bottom: 12px;
}
.page-header h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); color: var(--white); }

/* === ACTION HERO === */
.action-hero { position: relative; padding: 200px 0 120px; overflow: hidden; text-align: center; }
.action-hero-content { max-width: 700px; margin: 0 auto; }
.action-badge {
    display: inline-block; background: var(--red); color: var(--white);
    font-family: var(--font-display); font-weight: 700; font-size: 1.1rem;
    letter-spacing: 0.25em; padding: 10px 28px; border-radius: 3px; margin-bottom: 28px;
}
.action-hero h1 { font-size: clamp(3rem, 7vw, 5rem); color: var(--white); margin-bottom: 20px; }
.action-subtitle { font-size: 1.15rem; color: rgba(255,255,255,0.75); max-width: 500px; margin: 0 auto; }

/* === ABOUT PAGE === */
.about-intro { padding-top: 80px; }
.about-grid { display: grid; grid-template-columns: 300px 1fr; gap: 60px; align-items: start; }
.about-portrait { position: relative; }
.about-portrait-frame {
    background: var(--blue); border-radius: 12px; padding: 30px;
    position: relative; z-index: 2;
}
.about-portrait-frame img { width: 100%; }
.about-portrait-accent {
    position: absolute; top: 16px; left: 16px; right: -16px; bottom: -16px;
    border: 3px solid var(--red); border-radius: 12px; z-index: 1;
}
.about-bio h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); color: var(--blue); margin-bottom: 24px; }
.about-bio p { margin-bottom: 16px; line-height: 1.8; }

/* === TIMELINE === */
.section-timeline { background: var(--off-white); }
.timeline { position: relative; max-width: 700px; margin: 0 auto; padding-left: 40px; }
.timeline::before {
    content: ''; position: absolute; left: 12px; top: 0; bottom: 0;
    width: 2px; background: var(--gray-200);
}
.timeline-item { position: relative; margin-bottom: 40px; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-marker {
    position: absolute; left: -34px; top: 20px;
    width: 14px; height: 14px; background: var(--blue); border-radius: 50%;
    border: 3px solid var(--white); box-shadow: 0 0 0 3px var(--blue);
}
.timeline-item--highlight .timeline-marker { background: var(--red); box-shadow: 0 0 0 3px var(--red); }
.timeline-card {
    background: var(--white); border-radius: 10px; padding: 24px 28px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.timeline-date {
    font-family: var(--font-display); font-size: 0.8rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.15em; color: var(--red);
}
.timeline-card h3 { font-size: 1.2rem; color: var(--blue); margin: 6px 0 0; text-transform: none; }
.timeline-card p { font-size: 0.95rem; color: var(--gray-600); line-height: 1.7; margin-top: 8px; }

/* === PLAN PAGE === */
.plan-overview { text-align: center; padding-bottom: 60px; }
.plan-intro { max-width: 800px; margin: 0 auto; }
.plan-intro h2 { font-size: clamp(2rem, 4vw, 3rem); color: var(--blue); margin-bottom: 24px; }

.section-policies { background: var(--off-white); }
.policy-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.policy-card {
    background: var(--white); border-radius: 12px; padding: 40px 32px;
    position: relative; overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    transition: transform 0.3s var(--ease-smooth), box-shadow 0.3s;
}
.policy-card:hover { transform: translateY(-4px); box-shadow: 0 8px 36px rgba(0,0,0,0.1); }

/* PRIMARY CARD — all text white */
.policy-card--primary { background: var(--blue); }
.policy-card--primary h3 { color: var(--white); }
.policy-card--primary p { color: rgba(255,255,255,0.9); }
.policy-card--primary .policy-card-number { color: rgba(255,215,0,0.3); }
.policy-card--primary .policy-card-icon { color: var(--gold); }
.policy-card--primary .policy-tag { background: var(--red); color: var(--white); }

.policy-card--outline { background: transparent; border: 2px dashed var(--gray-200); box-shadow: none; }
.policy-card--outline:hover { border-color: var(--red); box-shadow: none; }
.policy-card-number {
    font-family: var(--font-display); font-size: 4rem; font-weight: 700;
    color: rgba(0,40,104,0.08); position: absolute; top: 12px; right: 20px; line-height: 1;
}
.policy-card-icon { width: 48px; height: 48px; color: var(--red); margin-bottom: 20px; }
.policy-card-icon svg { width: 100%; height: 100%; }
.policy-card h3 { font-size: 1.2rem; color: var(--blue); margin-bottom: 12px; text-transform: none; }
.policy-card p { font-size: 0.95rem; line-height: 1.7; color: var(--gray-600); margin-bottom: 20px; }
.policy-tag {
    display: inline-block; font-family: var(--font-display);
    font-size: 0.7rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.15em; padding: 5px 14px; border-radius: 3px;
    background: var(--off-white); color: var(--blue);
}

/* === STEPS === */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; max-width: 900px; margin: 0 auto; }
.step-card { text-align: center; padding: 40px 24px; }
.step-number {
    width: 60px; height: 60px; background: var(--red); color: var(--white);
    font-family: var(--font-display); font-size: 1.5rem; font-weight: 700;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
}
.step-card h3 { font-size: 1.1rem; color: var(--blue); margin-bottom: 12px; text-transform: none; }
.step-card p { font-size: 0.95rem; color: var(--gray-600); line-height: 1.7; }

/* === CONNECT === */
.section-connect { background: var(--off-white); }
.connect-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.connect-info h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); color: var(--blue); margin-bottom: 32px; }
.connect-card {
    display: flex; align-items: center; gap: 20px; padding: 20px;
    background: var(--white); border-radius: 10px; margin-bottom: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.connect-icon { width: 44px; height: 44px; flex-shrink: 0; color: var(--red); }
.connect-icon svg { width: 100%; height: 100%; }
.connect-card h3 {
    font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em;
    color: var(--gray-600); margin-bottom: 4px;
}
.connect-handle { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; color: var(--blue); }
.connect-visual { text-align: center; }
.connect-poster-frame {
    background: var(--blue); border-radius: 16px; padding: 40px; display: inline-block; margin-bottom: 20px;
}
.connect-poster-frame img {
    max-height: 280px; width: auto; margin: 0 auto;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
}
.connect-poster-text {
    font-family: var(--font-display); font-size: 1.4rem; font-weight: 600;
    color: var(--blue); text-transform: uppercase; letter-spacing: 0.04em;
}

/* === FINAL CTA === */
.section-final-cta { padding: 120px 0; text-align: center; position: relative; overflow: hidden; }
.final-cta h2 { font-size: clamp(2rem, 5vw, 3.5rem); color: var(--white); margin-bottom: 12px; }
.final-cta-tagline {
    font-family: var(--font-display); font-size: 1.4rem; color: var(--gold);
    text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 40px;
}
.final-cta-vote {
    display: inline-flex; align-items: center; gap: 12px;
    background: var(--red); color: var(--white);
    font-family: var(--font-display); font-size: 2rem; font-weight: 700;
    letter-spacing: 0.15em; padding: 16px 48px; border-radius: 6px;
}
.vote-check { font-size: 2.2rem; }

/* === FOOTER === */
.footer { background: var(--gray-900); padding: 60px 0 30px; }
.footer-inner {
    display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px;
    padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo-devon, .footer-brand .logo-marks { font-size: 1.1rem; }
.footer-tagline { color: rgba(255,255,255,0.4); font-style: italic; margin-top: 8px; font-size: 0.9rem; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
    font-family: var(--font-display); font-size: 0.85rem; text-transform: uppercase;
    letter-spacing: 0.1em; color: rgba(255,255,255,0.5); transition: color 0.3s;
}
.footer-links a:hover { color: var(--white); }
.footer-social p { color: rgba(255,255,255,0.5); font-size: 0.9rem; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 24px; }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.footer-credit {
    padding-top: 16px;
    text-align: center;
}
.footer-credit p {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.25);
    font-style: italic;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
    .hero-content { grid-template-columns: 1fr; text-align: center; padding-top: 140px; }
    .hero-image { order: -1; }
    .hero-portrait { max-height: 300px; }
    .hero-actions { justify-content: center; }
    .hero-scroll-indicator { display: none; }

    .section-grid { grid-template-columns: 1fr; gap: 30px; }
    .section-grid--reverse { direction: ltr; }
    .section-label { position: static; flex-direction: row; align-items: center; }
    .label-number { font-size: 2rem; }

    .split-content { grid-template-columns: 1fr; }
    .split-photo { min-height: 240px; border-radius: 10px; }

    .img-break { height: 220px; }

    .endorsement-grid { grid-template-columns: 1fr; max-width: 400px; }
    .about-grid { grid-template-columns: 1fr; }
    .about-portrait { max-width: 260px; margin: 0 auto; }
    .policy-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; gap: 16px; }
    .connect-grid { grid-template-columns: 1fr; }
    .connect-visual { order: -1; }
    .footer-inner { grid-template-columns: 1fr; gap: 24px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

    .nav-toggle { display: flex; }
    .nav-links {
        position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
        background: var(--blue-dark); flex-direction: column; padding: 100px 32px 40px; gap: 4px;
        transition: right 0.4s var(--ease-out); box-shadow: -10px 0 40px rgba(0,0,0,0.3);
    }
    .nav-links.open { right: 0; }
    .nav-links a { font-size: 1rem; padding: 12px 16px; width: 100%; }
}

@media (max-width: 500px) {
    :root { --section-pad: 60px; }
    body { font-size: 16px; }
    .hero h1 { font-size: 3rem; }
    .hero-tagline { font-size: 1.2rem; }
    .btn { padding: 12px 24px; font-size: 0.85rem; }
    .btn-lg { padding: 14px 28px; }
    .policy-card { padding: 30px 24px; }
    .timeline { padding-left: 30px; }
    .img-break { height: 180px; }
    .section-photo-bridge { padding: 100px 0; }
}
