/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-yellow: #FFFF00;
    --dark-black: #000000;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --text-muted: #999999;
    --section-bg: #1a1a1a;
}

body {
    font-family: 'Paddock', sans-serif;
    background-color: var(--text-light);
    color: var(--text-dark);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background-color: var(--primary-yellow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-weight: 900;
    font-size: 20px;
    letter-spacing: -1px;
}

.logo-img {
    height: 45px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.mobile-menu-toggle {
    display: none;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-family: 'Sen', 'Paddock', sans-serif;
    font-size: 14px;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.btn-contact {
    font-family: 'Sen', 'Paddock', sans-serif;
    background-color: var(--dark-black);
    color: var(--primary-yellow) !important;
    padding: 10px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 13px;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.btn-contact:hover {
    opacity: 0.7;
}

.btn-contact {
    background-color: var(--dark-black);
    color: var(--primary-yellow) !important;
    padding: 10px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 13px;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.btn-contact:hover {
    opacity: 0.8;
}

/* Hero Section */
.hero {
    padding: 80px 0 0 0;
    background-color: var(--primary-yellow);
    min-height: 650px;
    display: flex;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
}

.hero .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: flex-start;
}

.hero-text {
    padding-top: 0;
}

.hero-text h1 {
    font-size: 88px;
    font-weight: 900;
    margin-bottom: 30px;
    line-height: 1;
    letter-spacing: -2px;
    color: var(--dark-black);
}

.hero-no-break {
    white-space: nowrap;
}

.hero-text h1 .hero-heading-line {
    display: block;
    white-space: nowrap;
}

.hero-text p {
    font-family: 'Sen', 'Paddock', sans-serif;
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.6;
}

.btn-primary {
    background-color: var(--dark-black);
    color: var(--primary-yellow);
    padding: 12px 28px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: opacity 0.3s ease;
    display: inline-block;
    margin-top: 10px;
}

.btn-primary:hover {
    opacity: 0.8;
}

.hero-image {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    padding-top: 20px;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* 404 Page */
.error-404 {
    position: relative;
    overflow: hidden;
    background-color: var(--primary-yellow);
    padding: 90px 0 110px;
}

.error-404::before,
.error-404::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.06);
    pointer-events: none;
}

.error-404::before {
    width: 380px;
    height: 380px;
    top: -120px;
    right: -120px;
}

.error-404::after {
    width: 280px;
    height: 280px;
    bottom: -90px;
    left: -90px;
}

.error-404-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.error-404-copy .error-code {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    margin-bottom: 18px;
    background-color: var(--dark-black);
    color: var(--primary-yellow);
    border-radius: 999px;
    font-family: 'Sen', 'Paddock', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.error-404-copy h1 {
    font-size: clamp(48px, 9vw, 110px);
    line-height: 0.95;
    letter-spacing: -0.04em;
    margin-bottom: 18px;
    color: var(--dark-black);
}

.error-404-copy p {
    font-family: 'Sen', 'Paddock', sans-serif;
    color: rgba(0, 0, 0, 0.85);
    max-width: 560px;
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 26px;
}

.error-404-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.error-404-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    line-height: 1;
    text-decoration: none;
}

.error-404-actions .btn-primary,
.error-404-actions .btn-secondary-dark {
    height: 52px;
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 0;
}

.btn-secondary-dark {
    background-color: transparent;
    color: var(--dark-black);
    border: 1.5px solid var(--dark-black);
    border-radius: 25px;
    padding: 12px 22px;
    font-family: 'Sen', 'Paddock', sans-serif;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.25s ease, color 0.25s ease;
}

.btn-secondary-dark:hover {
    background-color: var(--dark-black);
    color: var(--primary-yellow);
}

.error-404-image-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

.error-404-image {
    width: min(100%, 380px);
    height: auto;
    filter: drop-shadow(0 14px 30px rgba(0, 0, 0, 0.2));
}

/* Clients Section */
.clients-section {
    padding: 60px 0;
    background-color: var(--text-light);
}

.clients-section h2 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.clients-marquee {
    overflow: hidden;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 10px 20px;
    box-sizing: border-box;
}

.clients-marquee-track {
    display: flex;
    gap: 50px;
    align-items: center;
    width: max-content;
    min-height: 80px;
    animation: marquee 80s linear infinite;
    padding: 0 20px;
}

.client-logo {
    flex: 0 0 auto;
}

.client-logo img {
    max-height: 60px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    display: block;
}

.client-logo img:hover {
    opacity: 1;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: var(--text-light);
}

.services h2 {
    text-align: left;
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.section-subtitle {
    color: var(--text-muted);
    max-width: 700px;
    margin-bottom: 50px;
    font-size: 16px;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service-card {
    padding: 30px;
    background-color: var(--section-bg);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    margin-bottom: 20px;
}

.service-icon img {
    width: 70px;
    height: 70px;
}

.service-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
    text-transform: uppercase;
}

.service-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.read-more {
    color: var(--primary-yellow);
    text-decoration: none;
    font-weight: 600;
    background-color: var(--dark-black);
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
    font-size: 13px;
    transition: opacity 0.3s ease;
}

/* Services Section (previously Portfolio) */
.services {
    padding: 80px 0;
    background-color: var(--section-bg);
}

.services h2 {
    text-align: left;
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-light);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin-top: 50px;
}


/* Make services stretch full-width while keeping headings/content centered */
.services .container {
    max-width: none;
    width: 100%;
    margin: 0;
    padding: 0 50px;
}

.services h2 {
    max-width: none;
    margin: 0;
    padding: 40px 20px 0;
    box-sizing: border-box;
    text-align: left;
}

.services-title-badge {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 170px;
    background-color: var(--primary-yellow);
    color: var(--text-dark);
    border-radius: 999px;
    padding: 12px 36px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.services .section-subtitle {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 0 20px;
    box-sizing: border-box;
}

.services-intro {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 40px 0 0;
    box-sizing: border-box;
}

.services-intro-copy h3 {
    margin: 0;
    font-size: clamp(2rem, 3.5vw, 3.5rem);
    line-height: 1.05;
    color: var(--text-light);
    text-align: left;
}

.outline-title {
    font-family: 'Paddock', 'Sen', sans-serif;
    font-weight: 500;
    color: transparent;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1.4px #ffffff;
    paint-order: stroke fill;
    letter-spacing: 0.015em;
}

.services-intro-note p {
    margin: 0;
    color: var(--text-muted);
    font-family: 'Sen', 'Paddock', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    max-width: 520px;
    text-align: right;
}

@media (min-width: 900px) {
    .services-intro {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
    .services-intro-copy {
        padding-left: 20px;
    }
    .services-intro-note {
        padding-right: 20px;
    }
}

@media (min-width: 900px) {
    .services-intro {
        grid-template-columns: 1.35fr 0.65fr;
        align-items: center;
    }
}

.portfolio-grid {
    padding: 20px;
    box-sizing: border-box;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    background-color: #ddd;
    display: block;
    text-decoration: none;
    color: inherit;
    container-type: inline-size;
}

.portfolio-item > img.portfolio-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.portfolio-item:hover > img.portfolio-thumb {
    transform: scale(1.05);
}

.portfolio-item h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: clamp(12px, 4vw, 20px) clamp(12px, 4vw, 20px) clamp(20px, 8vw, 40px);
    padding: clamp(12px, 5cqi, 20px) clamp(12px, 5cqi, 20px) clamp(20px, 10cqi, 40px);
    font-family: 'Paddock', sans-serif;
    margin: 0;
    color: var(--text-light);
    font-size: clamp(1.35rem, 5.4vw, 2.5rem);
    font-size: clamp(1.35rem, 11cqi, 2.5rem);
    line-height: 0.95;
    font-weight: 600;
    text-transform: uppercase;
}

/* Overlay that appears on hover */
.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    transition: background 0.25s ease;
    pointer-events: none;
}

/* Arrow icon (SVG) */
.portfolio-arrow {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 38px;
    height: 38px;
    max-width: 38px;
    max-height: 38px;
    opacity: 0;
    transform: translate(4px, -4px) scale(0.95);
    transition: all 0.12s ease;
    pointer-events: none;
}

.portfolio-item:hover .portfolio-overlay {
    background: rgba(0,0,0,0.85);
}

.portfolio-item:hover .portfolio-arrow {
    opacity: 1;
    transform: none;
}

/* News and Articles Section */
.news {
    padding: 80px 0;
    background-color: var(--text-light);
    position: relative;
}

.news h2 {
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.view-more {
    position: absolute;
    top: 80px;
    right: 20px;
    color: var(--dark-black);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.view-more:hover {
    text-decoration: underline;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.article-card {
    background-color: var(--section-bg);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px);
}

.article-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background-color: #ddd;
}

.article-content {
    padding: 25px;
}

.article-category {
    display: inline-block;
    background-color: var(--dark-black);
    color: var(--primary-yellow);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 10px;
}

.article-date {
    color: var(--text-muted);
    font-size: 12px;
    display: block;
    margin-bottom: 10px;
}

.article-card h3 {
    font-size: 17px;
    line-height: 1.4;
    color: var(--text-dark);
    font-weight: 600;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: var(--section-bg);
}

.testimonials h2 {
    text-align: left;
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-light);
}

.testimonials .section-subtitle {
    margin-bottom: 50px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--text-light);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.testimonial-text {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 20px;
    font-style: italic;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-dark);
}

/* Contact CTA */
.contact-cta {
    padding: 80px 0;
    background-color: var(--text-light);
    text-align: center;
    color: var(--text-dark);
}

.contact-cta h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
    line-height: 1.3;
}

.contact-cta h2 .highlight {
    color: #d946ef;
    font-weight: 900;
}

.contact-cta p {
    font-family: 'Sen', 'Paddock', sans-serif;
    font-size: 16px;
    margin-bottom: 30px;
    color: var(--text-muted);
}

.btn-cta {
    background-color: var(--primary-yellow);
    color: var(--dark-black);
    padding: 12px 32px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: opacity 0.3s ease;
    display: inline-block;
}

/* Contact Form Section */
.contact-form-section {
    padding: 100px 0 120px;
    background-color: #fff700;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 60px;
    align-items: start;
    justify-items: start;
}

.contact-text h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #111111;
    line-height: 1.05;
}

.contact-text p {
    color: #111111;
    font-family: 'Sen', 'Paddock', sans-serif;
    margin-bottom: 40px;
    line-height: 1.8;
    font-size: 16px;
    max-width: 520px;
}

.contact-img {
    width: 100%;
    height: auto;
    max-width: 420px;
    margin-top: 0;
}

.contact-form-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    align-items: stretch;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 36px;
    position: relative;
}

.contact-form-heading {
    margin-bottom: 24px;
    text-align: center;
    width: 100%;
}

.contact-form-heading h2 {
    font-size: 28px;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    margin: 0 auto;
    color: #111111;
    max-width: 380px;
}

.contact-form-heading .big-word {
    font-size: 40px;
    font-weight: 700;
}

.highlight-purple {
    color: #d946ef;
}

.highlight-blue {
    color: #3b82f6;
}

.contact-form .form-icon {
    position: absolute;
    top: -26px;
    left: -18px;
    width: 90px;
    height: 90px;
    object-fit: contain;
    z-index: 10;
    display: block;
    background-color: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}

.contact-form .btn-primary {
    background-color: var(--primary-yellow);
    color: var(--dark-black);
    width: 100%;
    padding: 18px 24px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 15px;
    border: none;
    transition: opacity 0.3s ease;
}

.contact-form .btn-primary:hover {
    opacity: 0.95;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group textarea {
    background-color: #f7f7f7;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 26px;
    padding: 18px 22px;
    color: #111111;
    font-size: 15px;
    font-family: inherit;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9b9b9b;
}

.form-group textarea {
    resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #111111;
    background-color: #ffffff;
}



.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: #111111;
    margin-bottom: 20px;
}

.checkbox-label input[type="checkbox"] {
    cursor: pointer;
    width: 18px;
    height: 18px;
}

/* Footer */
.footer {
    background-color: #1e1e1e;
    color: var(--text-light);
    padding: 60px 0 20px;
    font-family: 'Sen', 'Paddock', sans-serif;
}

.footer-content {
    display: grid;
    grid-template-columns: 220px 1fr 1fr 220px;
    gap: 48px;
    margin: 0 0 40px auto;
    align-items: start;
    max-width: 1080px;
    width: 100%;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-right: 30px;
}

.footer-logo {
    max-width: 100px;
    height: auto;
}

.footer-brand p {
    max-width: 240px;
    color: #d9d9d9;
    font-size: 14px;
    line-height: 1.8;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column h4 {
    margin: 0;
    color: #f5f5f5;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-column ul {
    list-style: none;
    padding: 0 0 0 0px;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column a {
    color: #b8b8b8;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 13px;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-column p {
    color: #b8b8b8;
    margin: 0;
    font-size: 13px;
}

.footer-highlight {
    color: var(--primary-yellow);
    text-decoration: none;
    font-weight: 700;
}

.footer-contact .social-links {
    margin-top: 12px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background-color: transparent;
    border: none;
    padding: 0;
    text-decoration: none;
}

.social-icon img {
    width: 100%;
    height: 100%;
    display: block;
}

.social-icon:hover {
    opacity: 0.95;
}

.footer-bottom {
    padding-top: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-size: 13px;
    text-align: center;
    gap: 10px;
    flex-wrap: wrap;
    width: 100%;
}

.footer-bottom a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--primary-yellow);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-content {
        flex-wrap: wrap;
        gap: 16px;
        align-items: center;
    }

    .mobile-menu-toggle {
        display: inline-flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 44px;
        height: 44px;
        border: none;
        background: transparent;
        cursor: pointer;
        padding: 0;
        gap: 6px;
    }

    .mobile-menu-toggle span {
        display: block;
        width: 24px;
        height: 3px;
        border-radius: 999px;
        background-color: var(--dark-black);
        transition: background-color 0.2s ease, transform 0.2s ease;
    }

    .mobile-menu-toggle:hover span {
        background-color: #242424;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 12px;
        padding: 12px 0;
        background-color: var(--primary-yellow);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        display: block;
        width: 100%;
        padding: 12px 0;
        text-align: center;
    }

    .clients-section {
        padding: 40px 0;
    }

    .clients-marquee {
        padding: 6px 12px;
    }

    .clients-marquee-track {
        animation-duration: 60s;
    }

    .btn-contact {
        width: 100%;
    }

    .hero-text h1 {
        font-size: 56px;
    }

    .hero {
        min-height: auto;
        padding-bottom: 40px;
        align-items: stretch;
    }

    .hero-content {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .error-404 {
        padding: 70px 0 90px;
    }

    .error-404-content {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }

    .error-404-copy p {
        margin-left: auto;
        margin-right: auto;
    }

    .error-404-actions {
        justify-content: center;
    }

    .services-grid,
    .articles-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .services h2 {
        padding: 32px 24px 0;
    }

    .services-intro {
        padding: 28px 24px 0;
    }

    .services-intro-note p {
        text-align: left;
        max-width: none;
    }

    .footer-content {
        grid-template-columns: 1fr;
        align-items: center;
        text-align: center;
    }

    .footer-brand,
    .footer-contact {
        padding-right: 0;
        margin: 0 auto;
        text-align: center;
    }

    .footer-brand {
        align-items: center;
    }

    .footer-column:not(.footer-contact) {
        display: none;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .nav-links {
        padding: 0;
    }

    .nav-links a {
        padding: 14px 0;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 36px;
    }

    .hero-image {
        display: none;
    }

    .services h2 {
        font-size: 24px;
    }

    .services .container {
        padding: 0;
    }

    .services h2 {
        padding: 28px 18px 0;
    }

    .services-intro {
        padding: 22px 18px 0;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0;
    }

    .error-404-copy h1 {
        font-size: 58px;
    }

    .error-404-copy p {
        font-size: 15px;
    }

    .portfolio-item {
        border-radius: 0;
    }
}

@font-face {
  font-family: 'Paddock';
  src: url('fonts/paddock-black.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap; /* Helps avoid invisible text while loading */
}