/* ============================================
   785 Spalding Drive - Property Website
   Modern & Elegant Theme
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
    --color-navy: #1a2332;
    --color-navy-light: #2a3a52;
    --color-navy-dark: #0f1721;
    --color-gold: #c9a96e;
    --color-gold-light: #ddc08a;
    --color-gold-dark: #b08d4f;
    --color-white: #ffffff;
    --color-off-white: #f8f7f4;
    --color-gray-100: #f3f2ef;
    --color-gray-200: #e5e3dd;
    --color-gray-300: #d0cdc5;
    --color-gray-500: #8a8680;
    --color-gray-700: #4a4740;
    --color-gray-900: #2a2825;
    --color-success: #2d8a4e;
    --color-error: #c0392b;

    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --transition: 0.3s ease;
    --transition-slow: 0.6s ease;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);

    --container-max: 1200px;
    --section-padding: 100px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-gray-700);
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

a:hover {
    color: var(--color-gold);
}

/* ---------- Utilities ---------- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 600;
    color: var(--color-navy);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-description {
    font-size: 1.05rem;
    color: var(--color-gray-500);
    line-height: 1.7;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

.btn-primary {
    background-color: var(--color-gold);
    color: var(--color-navy-dark);
}

.btn-primary:hover {
    background-color: var(--color-gold-light);
    color: var(--color-navy-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-full {
    width: 100%;
}

/* ---------- Navbar ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(26, 35, 50, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all var(--transition);
}

.navbar.scrolled {
    background: rgba(26, 35, 50, 0.97);
    padding: 12px 0;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(10px);
}

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

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-white);
    letter-spacing: 0.5px;
}

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

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

.nav-menu a {
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    transition: color var(--transition);
}

.nav-menu a:hover {
    color: var(--color-gold-light);
}

.nav-cta {
    background-color: var(--color-gold);
    color: var(--color-navy-dark) !important;
    padding: 10px 24px;
    border-radius: 2px;
    font-weight: 500 !important;
}

.nav-cta:hover {
    background-color: var(--color-gold-light);
    color: var(--color-navy-dark) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--color-white);
    transition: all var(--transition);
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
    background: url('../images/optimized/hero-front-exterior.jpg') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(15, 23, 33, 0.55) 0%,
        rgba(15, 23, 33, 0.4) 50%,
        rgba(15, 23, 33, 0.7) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 0 24px;
}

.hero-subtitle {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-gold-light);
    margin-bottom: 16px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.3s forwards;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 8px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.5s forwards;
}

.hero-address {
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 40px;
    opacity: 0.9;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.7s forwards;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin-bottom: 48px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.9s forwards;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-white);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-top: 4px;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.25);
}

.hero-cta {
    opacity: 0;
    animation: fadeUp 0.8s ease 1.1s forwards;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.6);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-arrow {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.4);
    animation: scrollBounce 2s ease infinite;
}

/* ---------- Features ---------- */
.features {
    padding: var(--section-padding) 0;
    background: var(--color-white);
}

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

.feature-card {
    padding: 40px 32px;
    background: var(--color-off-white);
    border-radius: 4px;
    transition: all var(--transition);
    opacity: 0;
    transform: translateY(30px);
}

.feature-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

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

.feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    color: var(--color-gold);
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--color-gray-500);
    line-height: 1.7;
}

/* ---------- Gallery ---------- */
.gallery {
    padding: var(--section-padding) 0;
    background: var(--color-gray-100);
}

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

.gallery-item {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    opacity: 0;
    transform: translateY(20px);
}

.gallery-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item-large {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: var(--color-white);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--transition);
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- About ---------- */
.about {
    padding: var(--section-padding) 0;
    background: var(--color-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: start;
}

.about-content {
    opacity: 0;
    transform: translateY(30px);
}

.about-content.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.about-content .section-subtitle {
    text-align: left;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 28px;
}

.about-text p {
    margin-bottom: 18px;
    font-size: 1rem;
    line-height: 1.8;
}

.about-text strong {
    color: var(--color-navy);
    font-weight: 600;
}

.about-details {
    background: var(--color-navy);
    color: var(--color-white);
    padding: 40px;
    border-radius: 4px;
    opacity: 0;
    transform: translateY(30px);
}

.about-details.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.about-details h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 28px;
    color: var(--color-gold-light);
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

.detail-value {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-white);
    text-align: right;
}

/* ---------- Updates & Improvements ---------- */
.updates {
    padding: var(--section-padding) 0;
    background: var(--color-white);
}

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

.updates-timeline::before {
    content: '';
    position: absolute;
    left: 80px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--color-gray-200);
}

.update-item {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(20px);
}

.update-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.update-item:last-child {
    margin-bottom: 0;
}

.update-year {
    flex-shrink: 0;
    width: 80px;
    text-align: right;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-gold-dark);
    padding-top: 18px;
    position: relative;
}

.update-year::after {
    content: '';
    position: absolute;
    right: -21px;
    top: 22px;
    width: 10px;
    height: 10px;
    background: var(--color-gold);
    border-radius: 50%;
    border: 2px solid var(--color-white);
    box-shadow: 0 0 0 2px var(--color-gold);
}

.update-content {
    flex: 1;
    background: var(--color-off-white);
    padding: 24px 28px;
    border-radius: 4px;
    transition: all var(--transition);
}

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

.update-content h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 8px;
}

.update-content p {
    font-size: 0.9rem;
    color: var(--color-gray-500);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .updates-timeline::before {
        left: 12px;
    }

    .update-item {
        flex-direction: column;
        gap: 0;
        padding-left: 32px;
        position: relative;
    }

    .update-year {
        width: auto;
        text-align: left;
        padding-top: 0;
        margin-bottom: 8px;
        font-size: 0.85rem;
    }

    .update-year::after {
        left: -26px;
        right: auto;
        top: 4px;
    }
}

/* ---------- Neighborhood ---------- */
.neighborhood {
    padding: var(--section-padding) 0;
    background: var(--color-off-white);
}

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

.neighborhood-card {
    padding: 32px 24px;
    background: var(--color-white);
    border-radius: 4px;
    text-align: center;
    transition: all var(--transition);
    opacity: 0;
    transform: translateY(20px);
}

.neighborhood-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

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

.neighborhood-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 16px;
    color: var(--color-gold);
}

.neighborhood-icon svg {
    width: 100%;
    height: 100%;
}

.neighborhood-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 10px;
}

.neighborhood-card p {
    font-size: 0.9rem;
    color: var(--color-gray-500);
    line-height: 1.6;
}

.map-container {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    opacity: 0;
    transform: translateY(20px);
}

.map-container.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.map-container iframe {
    display: block;
}

/* ---------- Contact ---------- */
.contact {
    padding: var(--section-padding) 0;
    background: var(--color-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: start;
}

.contact-form-wrapper {
    opacity: 0;
    transform: translateY(30px);
}

.contact-form-wrapper.animate-in {
    opacity: 1;
    transform: translateY(0);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-navy);
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.required {
    color: var(--color-gold);
}

input, textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-gray-900);
    background: var(--color-gray-100);
    border: 2px solid transparent;
    border-radius: 4px;
    transition: all var(--transition);
    outline: none;
}

input:focus, textarea:focus {
    border-color: var(--color-gold);
    background: var(--color-white);
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.15);
}

input::placeholder, textarea::placeholder {
    color: var(--color-gray-300);
}

textarea {
    resize: vertical;
    min-height: 120px;
}

.form-error {
    display: block;
    font-size: 0.8rem;
    color: var(--color-error);
    margin-top: 4px;
    min-height: 1.2em;
}

.form-success {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: #edf7ed;
    border-radius: 4px;
    margin-top: 20px;
}

.form-success svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--color-success);
}

.form-success p {
    font-size: 0.95rem;
    color: var(--color-success);
    font-weight: 500;
}

.form-error-message {
    padding: 16px 20px;
    background: #fdf0ef;
    border-radius: 4px;
    margin-top: 20px;
}

.form-error-message p {
    font-size: 0.95rem;
    color: var(--color-error);
}

.contact-info {
    opacity: 0;
    transform: translateY(30px);
}

.contact-info.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.contact-info-card {
    background: var(--color-navy);
    color: var(--color-white);
    padding: 40px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.contact-info-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-gold-light);
    margin-bottom: 28px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-method:last-child {
    margin-bottom: 0;
}

.contact-method svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    color: var(--color-gold);
    margin-top: 2px;
}

.contact-label {
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 4px;
}

.contact-value {
    font-size: 1rem;
    color: var(--color-white);
    font-weight: 500;
    line-height: 1.5;
}

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

.google-voice-tip {
    padding: 20px;
    background: var(--color-gray-100);
    border-radius: 4px;
    font-size: 0.85rem;
    color: var(--color-gray-500);
    line-height: 1.6;
}

.google-voice-tip strong {
    color: var(--color-navy);
}

/* ---------- Footer ---------- */
.footer {
    padding: 40px 0;
    background: var(--color-navy-dark);
    text-align: center;
}

.footer-address {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-gold-light);
    margin-bottom: 16px;
}

.footer-disclaimer {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    max-width: 600px;
    margin: 0 auto 12px;
    line-height: 1.6;
}

.footer-copy {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.3);
}

/* ---------- Lightbox ---------- */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0,0,0,0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 2px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: none;
    border: none;
    color: var(--color-white);
    cursor: pointer;
    font-size: 2rem;
    padding: 16px;
    transition: color var(--transition);
    z-index: 10;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--color-gold);
}

.lightbox-close {
    top: 16px;
    right: 24px;
    font-size: 2.5rem;
}

.lightbox-prev {
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
}

.lightbox-next {
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
}

.lightbox-caption {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* ---------- Animations ---------- */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollBounce {
    0%, 100% { transform: scaleY(1); opacity: 0.4; }
    50% { transform: scaleY(1.3); opacity: 1; }
}

[data-animate] {
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

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

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

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

    .gallery-item-large {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }

    /* Mobile nav */
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--color-navy);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 32px 32px;
        gap: 0;
        transition: right var(--transition);
        box-shadow: var(--shadow-lg);
    }

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

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

    .nav-menu a {
        display: block;
        padding: 14px 0;
        font-size: 1rem;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .nav-cta {
        margin-top: 16px;
        text-align: center;
    }

    .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 mobile */
    .hero-stats {
        gap: 16px;
        flex-wrap: wrap;
    }

    .hero-stat-divider {
        height: 30px;
    }

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

    /* Features mobile */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .feature-card {
        padding: 28px 24px;
    }

    /* Gallery mobile */
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .gallery-item-large {
        grid-column: span 2;
    }

    /* About mobile */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-content .section-subtitle,
    .about-content .section-title {
        text-align: center;
    }

    /* Neighborhood mobile */
    .neighborhood-grid {
        grid-template-columns: 1fr;
    }

    .map-container iframe {
        height: 300px;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }
}

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

    .hero-stats {
        gap: 12px;
    }

    .hero-stat-divider {
        display: none;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

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

    .gallery-item-large {
        grid-column: span 1;
    }

    .contact-info-card {
        padding: 28px 24px;
    }
}
