/* ============================================
   REBECCA MCCANTS PHOTOGRAPHY
   Warm & Friendly — Terracotta + Sand Palette
   ============================================ */

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Nunito', sans-serif;
    color: #3D2B1F;
    background: #FFFCF8;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ---- SCROLL REVEAL (progressive enhancement) ---- */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---- BUTTONS ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: #B85C38;
    color: #FFFCF8;
    box-shadow: 0 4px 15px rgba(184, 92, 56, 0.35);
}

.btn-primary:hover {
    background: #94452B;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(184, 92, 56, 0.45);
}

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

.btn-outline:hover {
    background: #B85C38;
    color: #FFFCF8;
    transform: translateY(-2px);
}

.btn-light {
    background: #FFFCF8;
    color: #B85C38;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn-light:hover {
    background: #FFF5F0;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.btn-ghost {
    background: transparent;
    color: #FFFCF8;
    border: 2px solid rgba(255, 252, 248, 0.5);
}

.btn-ghost:hover {
    background: rgba(255, 252, 248, 0.1);
    border-color: #FFFCF8;
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
    padding: 16px 28px;
    font-size: 1rem;
}

/* ---- NAV ---- */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 252, 248, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(184, 92, 56, 0.1);
    transition: box-shadow 0.3s ease;
}

.site-nav.scrolled {
    box-shadow: 0 2px 20px rgba(61, 43, 31, 0.08);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #B85C38;
    font-family: 'Crimson Text', serif;
}

.nav-logo-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.nav-logo-text {
    font-size: 1.05rem;
    line-height: 1.2;
    font-weight: 600;
}

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

.nav-link {
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #3D2B1F;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: rgba(184, 92, 56, 0.1);
    color: #B85C38;
}

.nav-cta {
    background: #B85C38;
    color: #FFFCF8 !important;
    margin-left: 8px;
}

.nav-cta:hover {
    background: #94452B;
    color: #FFFCF8 !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.nav-toggle-bar {
    width: 24px;
    height: 2.5px;
    background: #3D2B1F;
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

/* ---- HERO ---- */
.hero {
    background: linear-gradient(135deg, #FFF5F0 0%, #FDE8DC 50%, #FAE9CC 100%);
    padding: 120px 24px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(184, 92, 56, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 80px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(223, 158, 60, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    padding: 40px 0 60px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(184, 92, 56, 0.12);
    color: #B85C38;
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-badge svg {
    width: 14px;
    height: 14px;
}

.hero-headline {
    font-family: 'Crimson Text', serif;
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 600;
    line-height: 1.2;
    color: #2A1D14;
    margin-bottom: 20px;
}

.hero-headline em {
    color: #B85C38;
    font-style: italic;
}

.hero-sub {
    font-size: 1.1rem;
    color: #5C2C1F;
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero-stat-num {
    font-family: 'Crimson Text', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #B85C38;
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.8rem;
    color: #733524;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(184, 92, 56, 0.3);
}

.hero-image-wrap {
    position: relative;
    height: 600px;
}

.hero-img-main {
    border-radius: 200px 200px 30px 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(61, 43, 31, 0.2);
    height: 100%;
}

.hero-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-img-float {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(61, 43, 31, 0.18);
}

.hero-img-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-img-1 {
    bottom: 60px;
    left: -40px;
    width: 200px;
    height: 150px;
    animation: float1 6s ease-in-out infinite;
}

.hero-img-2 {
    top: 40px;
    right: -30px;
    width: 190px;
    height: 140px;
    animation: float2 7s ease-in-out infinite;
}

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

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

.hero-deco-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    border: 2px dashed rgba(184, 92, 56, 0.15);
    border-radius: 50%;
    pointer-events: none;
    animation: spin-slow 30s linear infinite;
}

@keyframes spin-slow {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    color: #FFFCF8;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 60px;
}

/* ---- SECTIONS ---- */
.section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 24px;
}

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

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #B85C38;
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Crimson Text', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 600;
    color: #2A1D14;
    line-height: 1.25;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.05rem;
    color: #5C2C1F;
    line-height: 1.8;
}

/* ---- SERVICES ---- */
.services {
    background: #FFFCF8;
}

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

.service-card {
    background: #FFFCF8;
    border: 1.5px solid rgba(184, 92, 56, 0.12);
    border-radius: 24px;
    padding: 36px 28px;
    transition: all 0.4s ease;
}

.service-card:hover {
    border-color: #B85C38;
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(184, 92, 56, 0.12);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #FFF5F0, #FDE8DC);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #B85C38;
}

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

.service-title {
    font-family: 'Crimson Text', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #2A1D14;
    margin-bottom: 10px;
}

.service-desc {
    font-size: 0.95rem;
    color: #5C2C1F;
    line-height: 1.7;
}

/* ---- ABOUT ---- */
.about {
    background: linear-gradient(180deg, #FFFCF8 0%, #FFF5F0 100%);
}

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

.about-image-side {
    position: relative;
}

.about-img-main {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(61, 43, 31, 0.15);
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #B85C38;
    color: #FFFCF8;
    padding: 20px 24px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(184, 92, 56, 0.35);
}

.about-exp-num {
    display: block;
    font-family: 'Crimson Text', serif;
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1;
}

.about-exp-label {
    font-size: 0.8rem;
    font-weight: 600;
    opacity: 0.9;
    line-height: 1.3;
}

.about-content-side {
    padding: 20px 0;
}

.about-text {
    font-size: 1.02rem;
    color: #5C2C1F;
    line-height: 1.85;
    margin-bottom: 16px;
}

.about-text em {
    color: #B85C38;
    font-style: italic;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}

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

.value-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: linear-gradient(135deg, #FFF5F0, #FDE8DC);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #B85C38;
}

.value-icon svg {
    width: 22px;
    height: 22px;
}

.value-item strong {
    display: block;
    font-size: 1rem;
    color: #2A1D14;
    margin-bottom: 2px;
}

.value-item span {
    font-size: 0.9rem;
    color: #733524;
    line-height: 1.6;
}

/* ---- GALLERY ---- */
.gallery {
    background: #FFFCF8;
}

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

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: auto;
}

.gallery-item:nth-child(1) { aspect-ratio: 4/5; }
.gallery-item:nth-child(2) { aspect-ratio: 5/4; }
.gallery-item:nth-child(3) { aspect-ratio: 1; }
.gallery-item:nth-child(4) { aspect-ratio: 4/3; }
.gallery-item:nth-child(5) { aspect-ratio: 5/6; }
.gallery-item:nth-child(6) { aspect-ratio: 5/4; }

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(42, 29, 20, 0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: #FFFCF8;
    font-weight: 700;
    font-size: 0.95rem;
}

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

/* ---- TESTIMONIALS ---- */
.testimonials {
    background: linear-gradient(135deg, #2A1D14 0%, #3D2B1F 100%);
    color: #FFFCF8;
}

.testimonials .section-tag {
    color: #F5A882;
}

.testimonials .section-title {
    color: #FFFCF8;
}

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

.testimonial-card {
    background: rgba(255, 252, 248, 0.07);
    border: 1px solid rgba(255, 252, 248, 0.1);
    border-radius: 24px;
    padding: 36px 28px;
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    background: rgba(255, 252, 248, 0.1);
    transform: translateY(-4px);
}

.testimonial-quote-mark {
    font-family: 'Crimson Text', serif;
    font-size: 4rem;
    line-height: 1;
    color: #B85C38;
    margin-bottom: 8px;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 252, 248, 0.85);
    margin-bottom: 24px;
}

.testimonial-text em {
    color: #F5A882;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #B85C38, #D45A2E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    color: #FFFCF8;
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    color: #FFFCF8;
    font-size: 0.95rem;
}

.testimonial-author span {
    font-size: 0.82rem;
    color: rgba(255, 252, 248, 0.6);
}

/* ---- CTA BANNER ---- */
.cta-banner {
    background: linear-gradient(135deg, #B85C38 0%, #D45A2E 50%, #E8734A 100%);
    padding: 80px 24px;
}

.cta-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta-content {
    flex: 1;
}

.cta-title {
    font-family: 'Crimson Text', serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 600;
    color: #FFFCF8;
    line-height: 1.3;
    margin-bottom: 12px;
}

.cta-text {
    font-size: 1.05rem;
    color: rgba(255, 252, 248, 0.85);
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

/* ---- CONTACT ---- */
.contact {
    background: linear-gradient(180deg, #FFFCF8 0%, #FFF5F0 100%);
}

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

.contact-info-side {
    padding: 20px 0;
}

.contact-intro {
    font-size: 1.02rem;
    color: #5C2C1F;
    line-height: 1.8;
    margin-bottom: 32px;
}

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

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

.contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, #FFF5F0, #FDE8DC);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #B85C38;
}

.contact-icon svg {
    width: 22px;
    height: 22px;
}

.contact-detail strong {
    display: block;
    font-size: 0.95rem;
    color: #2A1D14;
    margin-bottom: 4px;
}

.contact-detail span,
.contact-detail a {
    font-size: 0.95rem;
    color: #5C2C1F;
    line-height: 1.6;
}

.contact-detail a:hover {
    color: #B85C38;
}

/* ---- FORM ---- */
.contact-form-side {
    background: #FFFCF8;
    border: 1.5px solid rgba(184, 92, 56, 0.15);
    border-radius: 28px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(61, 43, 31, 0.06);
}

.form-title {
    font-family: 'Crimson Text', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2A1D14;
    margin-bottom: 28px;
}

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

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

.form-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: #3D2B1F;
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid rgba(184, 92, 56, 0.2);
    border-radius: 14px;
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    color: #3D2B1F;
    background: #FFFCF8;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9E601E;
    opacity: 0.5;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #B85C38;
    box-shadow: 0 0 0 3px rgba(184, 92, 56, 0.1);
}

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

.form-success {
    display: none;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    padding: 16px 20px;
    background: rgba(184, 92, 56, 0.08);
    border: 1px solid rgba(184, 92, 56, 0.2);
    border-radius: 14px;
    color: #5C2C1F;
    font-size: 0.95rem;
}

.form-success.show {
    display: flex;
}

.form-success svg {
    width: 24px;
    height: 24px;
    color: #B85C38;
    flex-shrink: 0;
}

/* ---- FOOTER ---- */
.footer {
    background: #2A1D14;
    color: rgba(255, 252, 248, 0.7);
    padding: 60px 24px 0;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 252, 248, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #F5A882;
    font-family: 'Crimson Text', serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 14px;
}

.footer-logo-icon {
    width: 28px;
    height: 28px;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer-links strong,
.footer-contact strong {
    display: block;
    color: #FFFCF8;
    font-size: 0.95rem;
    margin-bottom: 14px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-contact a {
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #F5A882;
}

.footer-contact span {
    font-size: 0.9rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.85rem;
    color: rgba(255, 252, 248, 0.45);
    flex-wrap: wrap;
    gap: 12px;
}

/* ---- MOBILE NAV ---- */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(255, 252, 248, 0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 24px;
        gap: 8px;
        border-bottom: 1px solid rgba(184, 92, 56, 0.1);
        transform: translateY(-120%);
        transition: transform 0.4s ease;
        box-shadow: 0 10px 30px rgba(61, 43, 31, 0.1);
    }

    .nav-links.open {
        transform: translateY(0);
    }

    .nav-link {
        width: 100%;
        text-align: center;
        padding: 12px 16px;
    }

    .nav-cta {
        margin-left: 0 !important;
    }
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-image-wrap {
        height: 450px;
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-content {
        text-align: center;
        padding: 20px 0 40px;
    }

    .hero-sub {
        margin: 0 auto 32px;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

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

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

    .about-image-side {
        max-width: 450px;
        margin: 0 auto;
    }

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

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

    .cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 100px 20px 0;
    }

    .hero-image-wrap {
        height: 350px;
    }

    .hero-img-float {
        display: none;
    }

    .hero-deco-circle {
        width: 300px;
        height: 300px;
    }

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

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

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

    .contact-form-side {
        padding: 28px 20px;
    }

    .section-inner {
        padding: 70px 20px;
    }

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