/* ================================================
   DESIGN SYSTEM — Sameer Prasad Shah Portfolio
   ================================================ */

:root {
    --bg-primary: #f8f7f4;
    --bg-white: #ffffff;
    --bg-dark: #151926;
    --bg-dark-lighter: #1e2233;
    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --text-muted: #8a8a8a;
    --text-light: #f0ece6;
    --text-light-secondary: #a8a8a8;
    --accent: #2c5282;
    --accent-hover: #1e3a5f;
    --accent-warm: #c27840;
    --accent-light: #6b9bd2;
    --gradient-accent: linear-gradient(135deg, #2c5282, #4a7ab5);
    --gradient-warm: linear-gradient(135deg, #2c5282, #c27840);
    --border: #e2dfd8;
    --border-light: #f0ece5;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.07);
    --shadow-lg: 0 24px 64px rgba(0,0,0,0.12);
    --shadow-accent: 0 8px 32px rgba(44, 82, 130, 0.18);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --transition: 0.3s ease;
}

/* ================================================
   RESET & BASE
   ================================================ */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--bg-primary);
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

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

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

::selection {
    background-color: var(--accent);
    color: white;
}

/* ================================================
   LAYOUT
   ================================================ */

.container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 32px;
}

.section {
    padding: 100px 0;
    background-color: var(--bg-primary);
}

.section:nth-child(even) {
    background-color: var(--bg-white);
}

.section-dark {
    padding: 100px 0;
    background: linear-gradient(160deg, var(--bg-dark) 0%, var(--bg-dark-lighter) 50%, var(--bg-dark) 100%);
    position: relative;
}

.section-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-warm);
}

.section-label {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}

.section-label-light {
    color: var(--accent-light);
}

.section-heading {
    font-family: var(--font-serif);
    font-size: 38px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 48px;
    position: relative;
    display: inline-block;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient-warm);
    border-radius: 2px;
}

.section-heading-light {
    color: var(--text-light);
}

.section-heading-light::after {
    background: linear-gradient(135deg, var(--accent-light), rgba(194, 120, 64, 0.7));
}

/* ================================================
   NAVIGATION
   ================================================ */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 32px;
    transition: background-color var(--transition), box-shadow var(--transition), padding var(--transition);
}

.nav.scrolled {
    background-color: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 var(--border);
}

.nav-inner {
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.3px;
}

.nav-logo:hover {
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 36px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.3px;
    position: relative;
    padding: 4px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: var(--accent);
    transition: width var(--transition);
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--accent);
}

.nav-links a.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 0;
}

/* ================================================
   HERO
   ================================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(44, 82, 130, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(194, 120, 64, 0.04) 0%, transparent 50%),
        linear-gradient(160deg, #f8f7f4 0%, #f0efe8 40%, #f5f2ec 100%);
    padding-top: 72px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(44, 82, 130, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Floating Shapes */
.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
    animation: float 20s infinite alternate ease-in-out;
}

.shape-1 {
    top: 10%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: rgba(44, 82, 130, 0.15);
    animation-delay: 0s;
}

.shape-2 {
    bottom: 10%;
    right: 5%;
    width: 400px;
    height: 400px;
    background: rgba(194, 120, 64, 0.1);
    animation-delay: -5s;
    animation-duration: 25s;
}

.shape-3 {
    top: 40%;
    left: 40%;
    width: 250px;
    height: 250px;
    background: rgba(107, 155, 210, 0.1);
    animation-delay: -10s;
    animation-duration: 18s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
    100% { transform: translate(40px, 40px) scale(1.05); }
}

.hero-inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 60px 32px;
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 72px;
    align-items: center;
}

.hero-photo {
    position: relative;
}

.hero-photo::before {
    content: '';
    position: absolute;
    top: 16px;
    left: 16px;
    right: -16px;
    bottom: -16px;
    border: 2px solid var(--accent);
    border-radius: var(--radius-lg);
    opacity: 0.2;
    z-index: 0;
    transition: all 0.5s ease;
    animation: framePulse 4s infinite alternate ease-in-out;
}

@keyframes framePulse {
    0% { transform: translate(0, 0); opacity: 0.2; }
    100% { transform: translate(4px, 4px); opacity: 0.3; }
}

.hero-photo:hover::before {
    top: 12px;
    left: 12px;
    right: -12px;
    bottom: -12px;
    opacity: 0.35;
}

.hero-photo img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    aspect-ratio: 1 / 1.1;
    object-fit: cover;
    object-position: top center;
    position: relative;
    z-index: 1;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.hero-photo:hover img {
    transform: translateY(-4px);
    box-shadow: 0 28px 70px rgba(0,0,0,0.15);
}

.hero-greeting {
    font-size: 15px;
    font-weight: 500;
    color: var(--accent);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.hero-name {
    font-family: var(--font-serif);
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--text-primary) 30%, var(--accent) 70%, var(--accent-warm) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: gradientText 6s linear infinite alternate;
}

@keyframes gradientText {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

.hero-title {
    font-size: 20px;
    font-weight: 500;
    color: var(--accent);
    margin-bottom: 12px;
    line-height: 1.4;
    display: inline-block;
    position: relative;
}

.hero-location {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-muted);
    margin-bottom: 28px;
    letter-spacing: 0.5px;
}

.hero-intro {
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 36px;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ================================================
   BUTTONS
   ================================================ */

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-accent);
    color: white;
    border: 1.5px solid var(--accent);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-hover), #2c5282);
    border-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-accent);
}

.btn-outline {
    background-color: transparent;
    color: var(--accent);
    border: 1.5px solid var(--accent);
    position: relative;
    overflow: hidden;
}

.btn-outline:hover {
    background: var(--gradient-accent);
    color: white;
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-accent);
}

.btn-light {
    background-color: transparent;
    color: var(--text-light);
    border: 1.5px solid rgba(240, 236, 230, 0.3);
    padding: 14px 36px;
    position: relative;
    overflow: hidden;
}

.btn-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
    transition: left 0.5s ease;
}

.btn-light:hover::before {
    left: 100%;
}

.btn-light:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(240, 236, 230, 0.55);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

/* ================================================
   ABOUT
   ================================================ */

.about-content {
    max-width: 760px;
}

.about-lead {
    font-size: 20px;
    line-height: 1.75;
    color: var(--text-primary);
    margin-bottom: 24px;
    font-weight: 400;
    border-left: 3px solid var(--accent);
    padding-left: 24px;
}

.about-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.about-content p:last-child {
    margin-bottom: 0;
}

/* ================================================
   TIMELINE (Experience)
   ================================================ */

.timeline {
    position: relative;
    padding-left: 32px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 1.5px;
    background-color: var(--border);
}

.timeline-item {
    position: relative;
    padding-bottom: 40px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -38px;
    top: 8px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--accent);
    border: 2px solid var(--bg-primary);
    box-shadow: 0 0 0 3px var(--accent);
}

.timeline-role {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
    line-height: 1.3;
}

.timeline-company {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.timeline-date {
    font-size: 13px;
    font-weight: 500;
    color: var(--accent);
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.timeline-details {
    list-style: none;
}

.timeline-details li {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    padding-left: 20px;
    position: relative;
    margin-bottom: 10px;
}

.timeline-details li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--text-muted);
    font-weight: 300;
}

/* ================================================
   EDUCATION
   ================================================ */

.education-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.education-card {
    background-color: var(--bg-primary);
    border: 1px solid var(--border);
    border-top: 3px solid var(--accent);
    border-radius: var(--radius-md);
    padding: 36px;
    transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}

.education-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-top-color: var(--accent-warm);
}

.education-period {
    font-size: 13px;
    font-weight: 500;
    color: var(--accent);
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.education-degree {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
    line-height: 1.3;
}

.education-institution {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-weight: 500;
}

.education-details li {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-secondary);
    padding-left: 16px;
    position: relative;
    margin-bottom: 8px;
}

.education-details li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--text-muted);
    font-size: 12px;
}

/* ================================================
   SKILLS
   ================================================ */

.skills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 56px;
}

.skill-item {
    padding: 22px 28px;
    background-color: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
    transition: all var(--transition);
    border-left: 3px solid rgba(44, 82, 130, 0.2);
    position: relative;
    overflow: hidden;
}

.skill-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(44, 82, 130, 0.05), transparent);
    transition: width 0.4s ease;
}

.skill-item:hover::before {
    width: 100%;
}

.skill-item:hover {
    border-left-color: var(--accent);
    transform: translateX(6px);
    box-shadow: var(--shadow-sm);
}

.languages-title {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.languages-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.language-tag {
    padding: 10px 24px;
    background-color: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.35s ease;
    cursor: default;
}

.language-tag:hover {
    background: var(--gradient-accent);
    color: white;
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-accent);
}

/* ================================================
   CERTIFICATIONS
   ================================================ */

.cert-list {
    display: grid;
    gap: 1px;
    background-color: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.cert-item {
    background-color: var(--bg-white);
    padding: 32px 36px;
    transition: all var(--transition);
    border-left: 3px solid transparent;
}

.cert-item:hover {
    background-color: #fdfcfa;
    border-left-color: var(--accent);
    padding-left: 40px;
}

.cert-name {
    font-family: var(--font-serif);
    font-size: 19px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.cert-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ================================================
   CONTACT & FORM
   ================================================ */

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.contact-intro {
    font-size: 17px;
    color: var(--text-light-secondary);
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 40px;
}

.contact-item {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-item:first-child {
    padding-top: 0;
}

.contact-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-light-secondary);
    margin-bottom: 8px;
}

.contact-value {
    font-size: 17px;
    font-weight: 400;
    color: var(--text-light);
    transition: color var(--transition);
    word-break: break-word;
}

a.contact-value:hover {
    color: var(--accent-light);
}

.contact-cta {
    padding-top: 16px;
}

/* Form Styles */
.contact-form-col {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 40px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    font-family: var(--font-sans);
    font-size: 15px;
    color: var(--text-light);
    transition: all var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-light);
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 0 3px rgba(107, 155, 210, 0.2);
}

.captcha-group {
    margin-bottom: 32px;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    font-size: 16px;
}

/* ================================================
   FOOTER
   ================================================ */

.footer {
    background-color: #141824;
    padding: 32px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-text {
    font-size: 13px;
    color: var(--text-light-secondary);
}

.footer-sub {
    font-style: italic;
    font-size: 12px;
}

/* ================================================
   SCROLL REVEAL ANIMATION
   ================================================ */

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.24s; }
.reveal:nth-child(5) { transition-delay: 0.32s; }

/* Hero entrance */
.hero-photo {
    opacity: 0;
    transform: translateX(-30px);
    animation: heroPhotoIn 0.9s ease 0.2s forwards;
}

.hero-content {
    opacity: 0;
    transform: translateX(30px);
    animation: heroContentIn 0.9s ease 0.35s forwards;
}

@keyframes heroPhotoIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes heroContentIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ================================================
   RESPONSIVE — TABLET
   ================================================ */

@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 300px 1fr;
        gap: 48px;
    }

    .hero-name {
        font-size: 42px;
    }

    .section-heading {
        font-size: 32px;
    }

    .education-grid {
        grid-template-columns: 1fr;
    }

    .skills-grid {
        grid-template-columns: 1fr;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-form-col {
        padding: 32px 24px;
    }
}

/* ================================================
   RESPONSIVE — MOBILE
   ================================================ */

@media (max-width: 680px) {
    .container {
        padding: 0 20px;
    }

    .nav {
        padding: 0 20px;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(16px);
        flex-direction: column;
        align-items: center;
        padding: 32px 0 40px;
        gap: 24px;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-md);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        font-size: 16px;
    }

    .nav-toggle {
        display: block;
    }

    .hero {
        padding-top: 72px;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 20px 60px;
        text-align: center;
    }

    .hero-photo {
        max-width: 280px;
        margin: 0 auto;
    }

    .hero-name {
        font-size: 36px;
    }

    .hero-title {
        font-size: 17px;
    }

    .hero-intro {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .section {
        padding: 72px 0;
    }

    .section-dark {
        padding: 72px 0;
    }

    .section-heading {
        font-size: 28px;
        margin-bottom: 36px;
    }

    .timeline {
        padding-left: 24px;
    }

    .timeline-marker {
        left: -30px;
    }

    .timeline-role {
        font-size: 19px;
    }

    .timeline-details li {
        font-size: 14px;
    }

    .education-card {
        padding: 28px;
    }

    .cert-item {
        padding: 24px;
    }
    
    .contact-form-col {
        padding: 24px 16px;
    }

    .footer-inner {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .btn {
        padding: 12px 28px;
    }
}

/* ================================================
   PRINT STYLES
   ================================================ */

@media print {
    .nav, .hero-actions, .contact-cta, .nav-toggle {
        display: none;
    }

    .section, .section-dark {
        padding: 32px 0;
        background: white;
        color: black;
    }

    .hero {
        min-height: auto;
        padding: 32px 0;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }

    .hero-photo, .hero-content {
        opacity: 1;
        transform: none;
        animation: none;
    }

    .section-heading-light,
    .section-label-light {
        color: var(--text-primary);
    }

    .contact-value, .contact-label, .contact-intro {
        color: var(--text-primary);
    }
}
