/* ============================================
   915 Remodels LLC — Styles
   Copper theme | Dark & trustworthy
   ============================================ */

:root {
    --copper: #b87333;
    --copper-light: #d4956b;
    --copper-dark: #8b5528;
    --copper-glow: rgba(184, 115, 51, 0.3);
    --dark: #0f0f0f;
    --dark-card: #1a1a1a;
    --dark-lighter: #222222;
    --text: #e0e0e0;
    --text-muted: #999999;
    --white: #ffffff;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Raleway', sans-serif;
    background: var(--dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.accent {
    color: var(--copper);
}

.section {
    padding: 120px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--copper);
    margin-bottom: 16px;
    position: relative;
    padding: 0 20px;
}

.section-tag::before,
.section-tag::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    background: var(--copper);
}

.section-tag::before { right: 100%; }
.section-tag::after { left: 100%; }

.section-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: var(--white);
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 520px;
    margin: 0 auto;
}

/* ============================================
   Buttons
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 4px;
    font-family: 'Raleway', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: none;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.btn:hover svg {
    transform: translateX(4px);
}

.btn-primary {
    background: var(--copper);
    color: var(--white);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--copper-light), var(--copper-dark));
    opacity: 0;
    transition: opacity 0.4s;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--copper-glow);
}

.btn-primary span,
.btn-primary svg {
    position: relative;
    z-index: 1;
}

.btn-outline {
    background: transparent;
    color: var(--copper);
    border: 1.5px solid var(--copper);
}

.btn-outline:hover {
    background: var(--copper);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--copper-glow);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ============================================
   Navigation
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 50px;
    transition: transform 0.3s ease;
}

.nav-logo:hover img {
    transform: scale(1.05);
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 16px;
    right: 16px;
    height: 1.5px;
    background: var(--copper);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-links a:not(.nav-cta):hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-links a:not(.nav-cta):hover {
    color: var(--white);
}

.nav-cta {
    background: var(--copper) !important;
    color: var(--white) !important;
    padding: 10px 24px !important;
    border-radius: 4px !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
}

.nav-cta:hover {
    background: var(--copper-light) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 20px var(--copper-glow);
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 100px 24px 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(184, 115, 51, 0.08) 0%, transparent 70%);
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(184, 115, 51, 0.04) 0%, transparent 50%),
                radial-gradient(circle at 70% 70%, rgba(184, 115, 51, 0.03) 0%, transparent 50%);
    animation: heroFloat 20s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(2%, -1%) rotate(1deg); }
    66% { transform: translate(-1%, 1%) rotate(-0.5deg); }
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-logo {
    width: 180px;
    max-width: 55vw;
    margin-bottom: 32px;
    animation: logoEntrance 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    filter: drop-shadow(0 0 40px var(--copper-glow));
}

@keyframes logoEntrance {
    from { opacity: 0; transform: scale(0.8) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.hero-title {
    font-size: clamp(2.8rem, 9vw, 6rem);
    color: var(--white);
    margin-bottom: 20px;
    text-align: center;
    width: 100%;
}

.hero-title-line {
    display: block;
    opacity: 0;
    animation: titleSlide 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-title-line:nth-child(1) { animation-delay: 0.3s; }
.hero-title-line:nth-child(2) { animation-delay: 0.5s; }

@keyframes titleSlide {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-subtitle {
    font-size: clamp(0.95rem, 2.5vw, 1.25rem);
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto 40px;
    text-align: center;
    opacity: 0;
    animation: fadeIn 0.8s 0.7s forwards;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    opacity: 0;
    animation: fadeIn 0.8s 0.9s forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    animation: fadeIn 0.8s 1.5s forwards;
}

.scroll-arrow {
    width: 24px;
    height: 40px;
    border: 2px solid var(--copper);
    border-radius: 12px;
    position: relative;
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--copper);
    border-radius: 2px;
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(12px); opacity: 0.3; }
}

/* ============================================
   About Section
   ============================================ */

.about {
    background: var(--dark);
}

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

.about-card {
    background: var(--dark-card);
    padding: 40px 32px;
    border-radius: 8px;
    border: 1px solid rgba(184, 115, 51, 0.1);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--copper), var(--copper-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.about-card:hover::before {
    transform: scaleX(1);
}

.about-card:hover {
    transform: translateY(-8px);
    border-color: rgba(184, 115, 51, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px var(--copper-glow);
}

.about-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(184, 115, 51, 0.1);
    color: var(--copper);
    margin-bottom: 24px;
    transition: all 0.4s ease;
}

.about-card:hover .about-icon {
    background: var(--copper);
    color: var(--white);
    transform: scale(1.1) rotate(-5deg);
}

.about-icon svg {
    width: 28px;
    height: 28px;
}

.about-card h3 {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 12px;
}

.about-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ============================================
   Services Section
   ============================================ */

.services {
    background: var(--dark-card);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.service-card {
    padding: 40px;
    border: 1px solid rgba(184, 115, 51, 0.1);
    border-radius: 8px;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    cursor: default;
}

.service-card:hover {
    border-color: var(--copper);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.service-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(184, 115, 51, 0.15);
    line-height: 1;
    margin-bottom: 16px;
    transition: color 0.4s ease;
}

.service-card:hover .service-number {
    color: rgba(184, 115, 51, 0.35);
}

.service-card h3 {
    font-size: 1.35rem;
    color: var(--white);
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: var(--copper-light);
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.service-line {
    width: 40px;
    height: 2px;
    background: var(--copper);
    margin-top: 20px;
    transition: width 0.5s ease;
}

.service-card:hover .service-line {
    width: 80px;
}

/* ============================================
   Portfolio Grid
   ============================================ */

.portfolio {
    background: var(--dark);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.portfolio-card {
    position: relative;
    width: 100%;
    min-width: 0;
    aspect-ratio: 4 / 3;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(184, 115, 51, 0.15);
    background: var(--dark-lighter);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    border-color: rgba(184, 115, 51, 0.5);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 40px var(--copper-glow);
}

.portfolio-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.portfolio-card:hover img {
    transform: scale(1.08);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--white);
    transform: translateY(20px);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-sub {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--copper-light);
    margin-top: 6px;
    transform: translateY(20px);
    transition: transform 0.5s 0.05s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-card:hover .portfolio-title,
.portfolio-card:hover .portfolio-sub {
    transform: translateY(0);
}

/* ============================================
   Team Section
   ============================================ */

.team {
    background: var(--dark-card);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 700px;
    margin: 0 auto;
}

.team-card {
    text-align: center;
    padding: 48px 32px;
    border-radius: 8px;
    border: 1px solid rgba(184, 115, 51, 0.1);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.team-card:hover {
    transform: translateY(-8px);
    border-color: rgba(184, 115, 51, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.team-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--copper), var(--copper-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all 0.5s ease;
    box-shadow: 0 4px 20px var(--copper-glow);
}

.team-card:hover .team-avatar {
    transform: scale(1.1);
    box-shadow: 0 8px 40px var(--copper-glow);
}

.team-avatar span {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.team-card h3 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 4px;
}

.team-role {
    font-size: 0.85rem;
    color: var(--copper);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 16px;
}

.team-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ============================================
   Contact Section
   ============================================ */

.contact {
    background: var(--dark);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact-info .section-tag {
    padding-left: 0;
}

.contact-info .section-tag::before {
    display: none;
}

.contact-info .section-title {
    text-align: left;
    margin-bottom: 16px;
}

.contact-info > p {
    color: var(--text-muted);
    margin-bottom: 32px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
    text-decoration: none;
    font-size: 0.95rem;
    padding: 12px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

a.contact-link:hover {
    background: rgba(184, 115, 51, 0.08);
    border-color: rgba(184, 115, 51, 0.2);
    color: var(--copper-light);
    transform: translateX(4px);
}

.contact-link svg {
    width: 22px;
    height: 22px;
    color: var(--copper);
    flex-shrink: 0;
}

/* Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    background: var(--dark-card);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(184, 115, 51, 0.1);
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px;
    background: var(--dark);
    border: 1.5px solid rgba(184, 115, 51, 0.15);
    border-radius: 6px;
    color: var(--white);
    font-family: 'Raleway', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--copper);
    box-shadow: 0 0 0 3px var(--copper-glow);
}

.form-group label {
    position: absolute;
    left: 16px;
    top: 16px;
    color: var(--text-muted);
    font-size: 0.95rem;
    pointer-events: none;
    transition: all 0.3s ease;
    background: transparent;
    padding: 0 4px;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -10px;
    left: 12px;
    font-size: 0.75rem;
    color: var(--copper);
    background: var(--dark-card);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* ============================================
   Footer
   ============================================ */

.footer {
    background: var(--dark-card);
    padding: 40px 0;
    border-top: 1px solid rgba(184, 115, 51, 0.1);
}

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

.footer-logo {
    height: 40px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.footer-logo:hover {
    opacity: 1;
}

.footer-content p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ============================================
   Scroll Animations
   ============================================ */

[data-animate] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   Responsive — Tablet (max 968px)
   ============================================ */

@media (max-width: 968px) {
    /* Disable scroll-in animations on mobile — prevents blank gap bug */
    [data-animate] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        height: 100dvh;
        background: rgba(15, 15, 15, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 4px;
        padding: 24px;
        transition: right 0.4s ease;
        box-shadow: -4px 0 30px rgba(0,0,0,0.5);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        font-size: 1.1rem;
        padding: 14px 16px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info .section-title {
        text-align: center;
    }

    .contact-info .section-tag {
        padding-left: 20px;
    }

    .contact-info .section-tag::before {
        display: block;
    }

    .contact-info > p {
        text-align: center;
    }

    .team-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
        gap: 20px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 520px;
    }

    /* Always show overlay on touch — no hover available */
    .portfolio-overlay {
        opacity: 1;
        padding: 20px;
    }

    .portfolio-title {
        font-size: 1.3rem;
        transform: none;
    }

    .portfolio-sub {
        transform: none;
    }

    .footer-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ============================================
   Responsive — Mobile (max 600px)
   ============================================ */

@media (max-width: 600px) {
    .section {
        padding: 64px 0;
    }

    .section-header {
        margin-bottom: 36px;
    }

    .container {
        padding: 0 16px;
    }

    /* Hero */
    .hero {
        padding: 100px 16px 72px;
    }

    .hero-logo {
        width: 130px;
        margin-bottom: 24px;
    }

    .hero-title {
        font-size: clamp(2.4rem, 11vw, 3.2rem);
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 32px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .scroll-indicator {
        bottom: 20px;
    }

    /* Cards */
    .about-card {
        padding: 28px 20px;
    }

    .service-card {
        padding: 28px 20px;
    }

    .service-number {
        font-size: 2.2rem;
    }

    /* Portfolio */
    .portfolio-grid {
        max-width: 100%;
        gap: 14px;
    }

    .portfolio-card {
        border-radius: 8px;
    }

    .portfolio-overlay {
        padding: 14px;
    }

    .portfolio-title {
        font-size: 1.1rem;
    }

    /* Team */
    .team-grid {
        max-width: 100%;
    }

    .team-card {
        padding: 32px 20px;
    }

    /* Contact */
    .contact-form {
        padding: 24px 16px;
        gap: 18px;
    }

    .contact-link {
        font-size: 0.88rem;
        padding: 10px 8px;
        word-break: break-all;
    }

    /* Footer */
    .footer {
        padding: 28px 0;
    }
}

/* ============================================
   Responsive — Small phones (max 380px)
   ============================================ */

@media (max-width: 380px) {
    .hero-title {
        font-size: 2.1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .nav-logo img {
        height: 36px;
    }

    .team-avatar {
        width: 80px;
        height: 80px;
    }

    .team-avatar span {
        font-size: 1.2rem;
    }
}
