/* ═══════════════════════════════════════════════════════ */
/*  Pets of Sugarland — Styles                            */
/*  Lightweight static site, no framework                 */
/* ═══════════════════════════════════════════════════════ */

/* Variables */
:root {
    --color-cream: #FFF8F0;
    --color-cream-dark: #F5EDE3;
    --color-warm-white: #FFFDFB;
    --color-bark: #3D2B1F;
    --color-bark-light: #5C4033;
    --color-espresso: #2C1810;
    --color-sage: #7DA06E;
    --color-sage-dark: #5E8A4D;
    --color-sage-light: #B5D4A7;
    --color-terracotta: #C77B5A;
    --color-gold: #D4A853;
    --color-gold-light: #F0D48A;
    --color-blush: #E8C4B8;
    --shadow: 0 4px 6px rgba(61, 43, 31, 0.06);
    --shadow-lg: 0 10px 40px rgba(61, 43, 31, 0.12);
    --radius: 12px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-bark);
    background: var(--color-warm-white);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    box-sizing: border-box;
}

h1,
h2,
h3,
h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    color: var(--color-espresso);
}

h1 {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1rem;
    color: var(--color-bark-light);
}

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

ul {
    list-style: none;
}

/* Section styling */
.section-label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--color-sage-dark);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-bark-light);
    max-width: 600px;
    margin-bottom: 3rem;
}

section h2+.section-subtitle {
    margin-top: -0.25rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-sage), var(--color-sage-dark));
    color: #fff;
    box-shadow: 0 4px 15px rgba(125, 160, 110, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(125, 160, 110, 0.45);
    color: #fff;
}

.btn-secondary {
    background: transparent;
    color: var(--color-espresso);
    border: 2px solid var(--color-bark);
}

.btn-secondary:hover {
    background: var(--color-espresso);
    color: #fff;
    border-color: var(--color-espresso);
    transform: translateY(-2px);
}

.btn-accent {
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light), var(--color-gold));
    color: var(--color-espresso);
    box-shadow: 0 4px 15px rgba(212, 168, 83, 0.35);
    width: 100%;
    font-size: 1rem;
    padding: 16px 32px;
    justify-content: center;
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 168, 83, 0.45);
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 16px 38px;
    font-size: 1.05rem;
}

/* ═══════════ HEADER ═══════════ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 253, 251, 0.95);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-espresso);
}

.logo-icon {
    font-size: 1.6rem;
}

.logo:hover {
    color: var(--color-sage-dark);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-weight: 500;
    color: var(--color-bark);
    font-size: 0.95rem;
}

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

.nav-links .btn-primary {
    color: #fff !important;
}

.nav-links .btn-primary:hover {
    color: #fff !important;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--color-espresso);
    border-radius: 3px;
    transition: var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ═══════════ HERO ═══════════ */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-warm-white) 50%, var(--color-blush) 100%);
    overflow: hidden;
    overflow-x: clip;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-sage-dark);
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.hero-content h1 {
    margin-bottom: 1.25rem;
}

.hero-subtitle {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: var(--color-bark-light);
    line-height: 1.8;
}

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

/* Hero graphic */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-graphic {
    position: relative;
    width: 380px;
    height: 380px;
}

.paw-circle {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2.5rem;
    z-index: 2;
}

.paw-1 {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--color-sage-light), var(--color-sage));
    top: 20px;
    right: 40px;
    animation: float 4s ease-in-out infinite;
}

.paw-2 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
    bottom: 40px;
    left: 20px;
    animation: float 4s ease-in-out infinite 1s;
}

.paw-3 {
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, var(--color-blush), var(--color-terracotta));
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float 4s ease-in-out infinite 0.5s;
    font-size: 3rem;
}

.graphic-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid var(--color-sage-light);
    opacity: 0.3;
}

.ring-1 {
    width: 380px;
    height: 380px;
    top: 0;
    left: 0;
    animation: pulse 5s ease-in-out infinite;
}

.ring-2 {
    width: 280px;
    height: 280px;
    top: 50px;
    left: 50px;
    animation: pulse 5s ease-in-out infinite 0.5s;
    border-color: var(--color-gold-light);
}

.ring-3 {
    width: 180px;
    height: 180px;
    top: 100px;
    left: 100px;
    animation: pulse 5s ease-in-out infinite 1s;
    border-color: var(--color-blush);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.paw-3 {
    animation: floatCenter 4s ease-in-out infinite 0.5s;
}

@keyframes floatCenter {

    0%,
    100% {
        transform: translate(-50%, -50%);
    }

    50% {
        transform: translate(-50%, calc(-50% - 12px));
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.04);
        opacity: 0.5;
    }
}

/* ═══════════ SERVICES ═══════════ */
.services {
    padding: 100px 0;
    background: var(--color-cream);
}

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

.service-card {
    background: #fff;
    padding: 36px 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(61, 43, 31, 0.04);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(125, 160, 110, 0.2);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--color-cream), var(--color-sage-light));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.6rem;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-list li {
    font-size: 0.92rem;
    color: var(--color-bark-light);
    padding-left: 20px;
    position: relative;
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-sage);
    font-weight: 700;
}

.service-desc {
    font-size: 0.95rem;
    color: var(--color-bark-light);
    margin-bottom: 0;
}

/* ═══════════ ABOUT / WHY US ═══════════ */
.about {
    padding: 100px 0;
    background: var(--color-warm-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 3rem;
}

.feature-item {
    text-align: center;
    padding: 32px 20px;
    background: var(--color-cream);
    border-radius: var(--radius);
    transition: var(--transition);
}

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

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.feature-item h4 {
    margin-bottom: 8px;
}

.feature-item p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.about-stats {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 24px 40px;
    background: linear-gradient(135deg, var(--color-sage-light), var(--color-sage));
    border-radius: var(--radius);
    transition: var(--transition);
}

.stat:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.5px;
}

/* ═══════════ TEAM ═══════════ */
.team {
    padding: 100px 0;
    background: var(--color-cream);
}

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

.team-card {
    text-align: center;
    padding: 40px 24px;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.team-avatar {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--color-blush), var(--color-terracotta));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.5rem;
}

.team-card h4 {
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.team-role {
    font-size: 0.85rem;
    color: var(--color-sage-dark);
    font-weight: 500;
    margin-bottom: 0;
}

/* ═══════════ GALLERY ═══════════ */
.gallery {
    padding: 100px 0;
    background: var(--color-warm-white);
}

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

.gallery-item {
    background: var(--color-cream);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    text-align: center;
}

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

.gallery-placeholder {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    background: linear-gradient(135deg, var(--color-cream-dark), var(--color-blush));
}

.gallery-item span {
    display: block;
    padding: 12px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-bark-light);
}

.gallery-note {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.9rem;
    color: var(--color-bark-light);
}

/* ═══════════ TESTIMONIALS ═══════════ */
.testimonials {
    padding: 100px 0;
    background: var(--color-cream);
}

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

.testimonial-card {
    background: #fff;
    padding: 36px 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.testimonial-stars {
    color: var(--color-gold);
    font-size: 1.2rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-card p {
    font-size: 0.95rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial-author strong {
    display: block;
    color: var(--color-espresso);
    font-size: 0.95rem;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--color-bark-light);
}

/* ═══════════ CONTACT ═══════════ */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--color-espresso), var(--color-bark-light));
    color: #fff;
}

.contact h2 {
    color: #fff;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item h4 {
    color: #fff;
    margin-bottom: 4px;
    font-size: 1rem;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0;
    font-size: 0.95rem;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.85);
}

.contact-item a:hover {
    color: #fff;
}

.contact-form {
    background: #fff;
    padding: 36px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

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

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--color-espresso);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    font-size: 0.95rem;
    font-family: inherit;
    border: 2px solid #e8e4e0;
    border-radius: 8px;
    transition: var(--transition);
    background: #fff;
    color: var(--color-bark);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-sage);
    box-shadow: 0 0 0 3px rgba(125, 160, 110, 0.15);
}

/* ═══════════ FOOTER ═══════════ */
.footer {
    background: var(--color-espresso);
    color: #fff;
    padding: 40px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.85rem;
    margin-bottom: 0;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a:hover {
    color: #fff;
}

/* ═══════════ MOBILE CTA BAR ═══════════ */
.mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: #fff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    padding: 10px;
    gap: 10px;
}

.mobile-cta-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 16px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
}

.cta-call {
    background: var(--color-espresso);
    color: #fff;
}

.cta-book {
    background: linear-gradient(135deg, var(--color-sage), var(--color-sage-dark));
    color: #fff;
}

/* ═══════════ SCROLL ANIMATIONS ═══════════ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
.animate-on-scroll:nth-child(2) {
    transition-delay: 0.1s;
}

.animate-on-scroll:nth-child(3) {
    transition-delay: 0.2s;
}

.animate-on-scroll:nth-child(4) {
    transition-delay: 0.3s;
}

.animate-on-scroll:nth-child(5) {
    transition-delay: 0.4s;
}

.animate-on-scroll:nth-child(6) {
    transition-delay: 0.5s;
}

/* ═══════════ MOBILE CTA BAR ═══════════ */
.mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: #fff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    padding: 10px 16px;
    gap: 10px;
}

.mobile-cta-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    border-radius: var(--radius);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
}

.cta-call {
    background: var(--color-sage);
    color: #fff;
}

.cta-book {
    background: var(--color-gold);
    color: var(--color-espresso);
}

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .mobile-cta {
        display: flex;
    }

    body {
        padding-bottom: 70px;
    }

    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--color-warm-white);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-150%);
        opacity: 0;
        transition: var(--transition);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
    }

    /* Hero: hide the graphic entirely on mobile, stack text */
    .hero {
        padding: 100px 0 60px;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 0;
    }

    .hero-visual {
        display: none;
    }

    .hero h1 {
        font-size: 1.75rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-label {
        font-size: 0.8rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .container {
        padding: 0 16px;
    }

    /* Mobile hamburger menu */
    .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        height: 100dvh;
        background: var(--color-warm-white);
        flex-direction: column;
        padding: 100px 24px 32px;
        gap: 0;
        box-shadow: var(--shadow-lg);
        transition: right 0.3s ease;
        z-index: 1001;
        overflow-y: auto;
    }

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

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 16px 0;
        border-bottom: 1px solid rgba(61, 43, 31, 0.08);
        font-size: 1.05rem;
    }

    /* Section padding */
    .services,
    .about,
    .team,
    .gallery,
    .testimonials,
    .contact {
        padding: 60px 0;
    }

    /* All grids to single column */
    .services-grid,
    .features-grid,
    .team-grid,
    .gallery-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    /* Contact */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .contact-form {
        padding: 24px;
    }

    /* Stats */
    .about-stats {
        gap: 12px;
    }

    .stat {
        padding: 16px 24px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    /* Sticky mobile CTA bar */
    .mobile-cta {
        display: flex;
    }

    body {
        padding-bottom: 72px;
    }

    /* Prevent iOS zoom on form focus */
    input,
    select,
    textarea {
        font-size: 16px;
    }

    /* Typography scale-down */
    h2 {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .gallery-placeholder {
        height: 140px;
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
    }

    .about-stats {
        flex-direction: column;
        align-items: center;
    }

    .stat {
        width: 100%;
    }

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

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

    .feature-item {
        padding: 24px 16px;
    }
}