/* ===== ROOT VARIABLES - PLUM & GOLD (OPTION 4) ===== */
:root {
    --royal-plum: #5A2A5F;
    --antique-gold: #C8A14B;
    --cream: #F7F3EC;
    --slate-grey: #4A5568;
    --plum-light: #7e3c84;
    --gold-light: #dbb86a;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(90, 42, 95, 0.15);
    --shadow-hover: 0 8px 35px rgba(90, 42, 95, 0.25);
    --border-radius: 16px;
    --transition: all 0.3s ease;
}

/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--cream);
    color: var(--slate-grey);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== SPARKLE CANVAS ===== */
#sparkle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.animate-fade {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.animate-slide-left {
    animation: slideInLeft 0.8s ease forwards;
    opacity: 0;
}

.animate-slide-right {
    animation: slideInRight 0.8s ease forwards;
    opacity: 0;
}

.animate-delay-1 { animation-delay: 0.2s; }
.animate-delay-2 { animation-delay: 0.4s; }
.animate-delay-3 { animation-delay: 0.6s; }
.animate-delay-4 { animation-delay: 0.8s; }

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
    color: white;
}

/* ===== HEADER ===== */
header {
    background: var(--royal-plum);
    color: white;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 15px rgba(90, 42, 95, 0.3);
    transition: var(--transition);
    border-bottom: 2px solid var(--antique-gold);
}

header.scrolled {
    padding: 8px 0;
    background: rgba(90, 42, 95, 0.95);
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    transition: var(--transition);
}

.logo img {
    height: 40px;
    width: auto;
    transition: height 0.3s ease;
}

header.scrolled .logo img {
    height: 30px;
}

/* ===== HAMBURGER (3 LINES) ===== */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    transition: var(--transition);
    z-index: 101;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--cream);
    border-radius: 4px;
    transition: var(--transition);
    transform-origin: center;
}

.hamburger:hover span {
    background: var(--antique-gold);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
    background: var(--antique-gold);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
    background: var(--antique-gold);
}

/* ===== NAVIGATION ===== */
nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

nav a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
    padding: 4px 0;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--antique-gold);
    transition: width 0.3s;
}

nav a:hover {
    color: white;
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

nav a.active {
    color: var(--antique-gold);
}

/* ===== RESPONSIVE NAV ===== */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    nav {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 8px;
        padding: 15px 0 8px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        order: 3;
    }

    nav.open {
        display: flex;
    }

    nav a {
        padding: 10px 0;
        width: 100%;
        text-align: center;
        font-size: 1.05rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    nav a::after {
        display: none;
    }

    nav a:hover,
    nav a.active {
        background: rgba(200, 161, 75, 0.15);
        border-radius: 6px;
    }

    .header-content {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .logo {
        order: 1;
    }

    .hamburger {
        order: 2;
    }
}

/* ===== HERO ===== */
.hero {
    background: linear-gradient(135deg, var(--royal-plum) 0%, var(--plum-light) 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(200, 161, 75, 0.15) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--antique-gold);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
    animation: float 4s ease-in-out infinite;
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.hero h1 span {
    color: var(--antique-gold);
}

.hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 25px;
}

.hero .separator {
    margin: 0 8px;
    color: var(--antique-gold);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* ===== PAGE HERO ===== */
.page-hero {
    background: linear-gradient(135deg, var(--royal-plum) 0%, var(--plum-light) 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
    border-bottom: 3px solid var(--antique-gold);
}

.page-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
}

.page-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-top: 8px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
}

.btn-primary {
    background: var(--antique-gold);
    color: var(--royal-plum);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(200, 161, 75, 0.4);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: var(--royal-plum);
    transform: translateY(-2px);
}

.btn-outline-dark {
    background: transparent;
    color: var(--royal-plum);
    border: 2px solid var(--royal-plum);
}

.btn-outline-dark:hover {
    background: var(--royal-plum);
    color: white;
    transform: translateY(-2px);
}

.btn-small {
    padding: 8px 18px;
    font-size: 0.85rem;
    border-radius: 30px;
}

.btn-gold {
    background: var(--antique-gold);
    color: var(--royal-plum);
}

.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

/* ===== SECTIONS ===== */
section {
    padding: 70px 0;
}

section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--royal-plum);
    text-align: center;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    color: var(--slate-grey);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

/* ===== ABOUT PREVIEW ===== */
.about-preview {
    background: var(--cream);
}

.about-preview-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.about-preview-content p {
    margin-bottom: 16px;
    color: var(--slate-grey);
}

.about-preview-cta {
    margin-top: 20px;
}

/* ===== PROJECTS PREVIEW ===== */
.projects-preview {
    background: white;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.project-card {
    background: var(--cream);
    padding: 25px;
    border-radius: var(--border-radius);
    border-left: 5px solid var(--antique-gold);
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-left-color: var(--royal-plum);
}

.project-card .badge {
    display: inline-block;
    background: var(--antique-gold);
    color: var(--royal-plum);
    font-weight: 700;
    font-size: 0.7rem;
    padding: 2px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.project-card h3 {
    color: var(--royal-plum);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.project-card p {
    color: var(--slate-grey);
    font-size: 0.95rem;
    margin-bottom: 6px;
}

.project-card p strong {
    color: var(--royal-plum);
}

.projects-cta {
    text-align: center;
    margin-top: 30px;
}

/* ===== BOOKS PREVIEW ===== */
.books-preview {
    background: var(--cream);
}

.books-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.books-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.book-card {
    background: white;
    padding: 16px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.book-card:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-hover);
}

.book-card img {
    width: 100%;
    max-width: 150px;
    aspect-ratio: 2/3;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
    transition: transform 0.3s;
}

.book-card:hover img {
    transform: scale(1.02);
}

.book-card h4 {
    color: var(--royal-plum);
    font-size: 0.85rem;
    margin-bottom: 10px;
    line-height: 1.3;
}

.books-cta {
    text-align: center;
}

.books-cta-full {
    text-align: center;
    margin-top: 10px;
}

/* ===== BOOKS FULL PAGE ===== */
.books-full {
    background: white;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--royal-plum) 0%, var(--plum-light) 100%);
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.cta-section h2 {
    color: white;
}

.cta-section p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.cta-buttons .btn-outline {
    border-color: white;
}

/* ===== ABOUT PAGE ===== */
.bio-section {
    background: white;
}

.bio-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
}

.bio-image img {
    width: 100%;
    max-width: 300px;
    border-radius: var(--border-radius);
    border: 4px solid var(--antique-gold);
    box-shadow: var(--shadow);
}

.bio-content h2 {
    text-align: left;
    margin-bottom: 16px;
}

.bio-content p {
    margin-bottom: 12px;
    color: var(--slate-grey);
}

/* ===== VALUES SECTION ===== */
.values-section {
    background: var(--cream);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.value-card h3 {
    color: var(--royal-plum);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.value-card p {
    color: var(--slate-grey);
}

.value-card ul {
    list-style: none;
    padding: 0;
}

.value-card ul li {
    padding: 6px 0;
    color: var(--slate-grey);
    border-bottom: 1px solid rgba(90, 42, 95, 0.06);
}

.value-card ul li:last-child {
    border-bottom: none;
}

/* ===== SKILLS SECTION ===== */
.skills-section {
    background: white;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.skill-category {
    background: var(--cream);
    padding: 25px;
    border-radius: var(--border-radius);
    border-top: 4px solid var(--antique-gold);
    transition: var(--transition);
}

.skill-category:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.skill-category h3 {
    color: var(--royal-plum);
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.skill-category ul {
    list-style: none;
    padding: 0;
}

.skill-category ul li {
    padding: 6px 0;
    color: var(--slate-grey);
    border-bottom: 1px solid rgba(90, 42, 95, 0.06);
}

.skill-category ul li:last-child {
    border-bottom: none;
}

/* ===== TIMELINE SECTION ===== */
.timeline-section {
    background: var(--cream);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 120px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--antique-gold);
}

.timeline-item {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
    position: relative;
}

.timeline-year {
    min-width: 100px;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--royal-plum);
    text-align: right;
    padding-top: 4px;
}

.timeline-content {
    background: white;
    padding: 20px 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    flex: 1;
    transition: var(--transition);
}

.timeline-content:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-hover);
}

.timeline-content h3 {
    color: var(--royal-plum);
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.timeline-content p {
    color: var(--slate-grey);
    font-size: 0.95rem;
}

/* ===== PRICING ===== */
.pricing-section {
    background: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 25px;
}

.pricing-card {
    background: var(--cream);
    padding: 30px 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border-top: 4px solid var(--antique-gold);
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-top-color: var(--royal-plum);
}

.pricing-card .service-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--royal-plum);
}

.pricing-card h3 {
    color: var(--royal-plum);
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.pricing-card .price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--royal-plum);
    margin: 10px 0;
}

.pricing-card .price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--slate-grey);
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.pricing-card ul li {
    padding: 6px 0;
    color: var(--slate-grey);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(90, 42, 95, 0.08);
}

.pricing-card ul li::before {
    content: '✓ ';
    color: var(--antique-gold);
    font-weight: 700;
}

.pricing-card .btn {
    width: 100%;
    margin-top: 10px;
}

/* ===== WHY ME ===== */
.why-me {
    background: var(--cream);
}

.why-me-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.why-me-item {
    background: white;
    padding: 25px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.why-me-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.why-me-item .icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--royal-plum);
}

.why-me-item h4 {
    color: var(--royal-plum);
    margin-bottom: 5px;
}

.why-me-item p {
    color: var(--slate-grey);
    font-size: 0.9rem;
}

/* ===== PORTFOLIO LINKS SECTION ===== */
.portfolio-links-section {
    background: white;
    text-align: center;
}

.portfolio-links-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.portfolio-links-grid .btn {
    margin: 4px;
}

/* ===== CONTACT INFO ===== */
.contact-info-section {
    background: white;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.contact-info-card {
    background: var(--cream);
    padding: 25px 20px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.contact-info-card .contact-icon {
    font-size: 2rem;
    color: var(--royal-plum);
    margin-bottom: 10px;
}

.contact-info-card h3 {
    color: var(--royal-plum);
    font-size: 1rem;
    margin-bottom: 6px;
}

.contact-info-card p {
    color: var(--slate-grey);
}

.contact-info-card a {
    color: var(--slate-grey);
    text-decoration: none;
    transition: var(--transition);
}

.contact-info-card a:hover {
    color: var(--royal-plum);
}

/* ===== QUICK RESPONSE ===== */
.quick-response {
    background: var(--cream);
}

.response-card {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    max-width: 700px;
    margin: 0 auto;
}

.response-card h2 {
    color: var(--royal-plum);
    margin-bottom: 10px;
}

.response-card p {
    color: var(--slate-grey);
    margin-bottom: 20px;
}

.response-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.response-buttons .btn i {
    margin-right: 8px;
}

/* ===== BACK SECTION ===== */
.back-section {
    padding: 30px 0;
    text-align: center;
    background: var(--cream);
}

/* ===== FOOTER ===== */
footer {
    background: var(--royal-plum);
    color: rgba(255, 255, 255, 0.8);
    padding: 30px 0;
    border-top: 2px solid var(--antique-gold);
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-social a {
    color: rgba(255, 255, 255, 0.7);
    margin-left: 18px;
    font-size: 1.2rem;
    transition: var(--transition);
}

.footer-social a:hover {
    color: var(--antique-gold);
    transform: translateY(-2px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .bio-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .bio-image img {
        margin: 0 auto;
    }
    .bio-content h2 {
        text-align: center;
    }
    .values-grid {
        grid-template-columns: 1fr 1fr;
    }
    .skills-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2rem; }
    .page-hero h1 { font-size: 1.8rem; }
    .hero p { font-size: 1rem; }
    .about-preview-content { padding: 25px; }
    .projects-grid { grid-template-columns: 1fr; }
    .books-grid { grid-template-columns: 1fr 1fr; }
    .books-grid-full { grid-template-columns: 1fr 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .why-me-grid { grid-template-columns: 1fr 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .skills-grid { grid-template-columns: 1fr; }
    .contact-info-grid { grid-template-columns: 1fr 1fr; }
    footer .container { flex-direction: column; text-align: center; }
    .footer-social a { margin: 0 10px; }
    section { padding: 40px 0; }
    section h2 { font-size: 1.6rem; }
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 26px;
        bottom: 20px;
        right: 20px;
    }
    .timeline::before {
        left: 20px;
    }
    .timeline-item {
        flex-direction: column;
        gap: 10px;
        padding-left: 50px;
    }
    .timeline-year {
        text-align: left;
        min-width: auto;
        font-size: 1.1rem;
    }
    .response-buttons {
        flex-direction: column;
        align-items: center;
    }
    .response-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .books-grid { grid-template-columns: 1fr; }
    .books-grid-full { grid-template-columns: 1fr 1fr; }
    .why-me-grid { grid-template-columns: 1fr; }
    .contact-info-grid { grid-template-columns: 1fr; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .btn { width: 100%; text-align: center; }
    .hero h1 { font-size: 1.6rem; }
    .page-hero h1 { font-size: 1.4rem; }
    .hero-img { width: 120px; height: 120px; }
    .portfolio-links-grid .btn {
        width: auto;
    }
    .response-buttons .btn {
        max-width: 100%;
    }
}