/* ============================================================
   Poor Boys Construction — Classic & Elegant Design System
   Palette: Plum (#6B3A5D) + Amber (#C8943E)
   Fonts: Cormorant Garamond (serif) + Lato (sans-serif)
============================================================ */

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

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

body {
    font-family: 'Lato', sans-serif;
    color: #2D2D2D;
    background-color: #FDF9F5;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 600;
    line-height: 1.2;
    color: #3A1A30;
}

/* ---------- UTILITIES ---------- */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: 'Lato', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 2px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn--amber {
    background: #C8943E;
    color: #fff;
    border-color: #C8943E;
}

.btn--amber:hover,
.btn--amber:focus {
    background: #B8842E;
    border-color: #B8842E;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200, 148, 62, 0.35);
}

.btn--plum {
    background: #6B3A5D;
    color: #fff;
    border-color: #6B3A5D;
}

.btn--plum:hover,
.btn--plum:focus {
    background: #5A2E4D;
    border-color: #5A2E4D;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(107, 58, 93, 0.35);
}

.btn--outline {
    background: transparent;
    color: #6B3A5D;
    border-color: #6B3A5D;
}

.btn--outline:hover,
.btn--outline:focus {
    background: #6B3A5D;
    color: #fff;
    transform: translateY(-2px);
}

.btn--outline-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.6);
}

.btn--outline-light:hover,
.btn--outline-light:focus {
    background: #fff;
    color: #6B3A5D;
    border-color: #fff;
    transform: translateY(-2px);
}

.btn--lg {
    padding: 18px 40px;
    font-size: 0.9rem;
}

.btn--full {
    width: 100%;
}

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

/* ---------- HEADER ---------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 249, 245, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(107, 58, 93, 0.1);
    transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 4px 30px rgba(107, 58, 93, 0.1);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    max-width: 1280px;
    margin: 0 auto;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #3A1A30;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

.logo-icon {
    color: #6B3A5D;
    flex-shrink: 0;
}

.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

.logo-text em {
    font-style: italic;
    font-weight: 400;
    color: #C8943E;
}

/* Navigation */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: #3A1A30;
    position: relative;
    transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: #3A1A30;
    transition: all 0.3s ease;
}

.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

.nav-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

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

.nav-menu li a {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #3A1A30;
    position: relative;
    transition: color 0.3s ease;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: #C8943E;
    transition: width 0.3s ease;
}

.nav-menu li a:hover::after,
.nav-menu li a:focus::after {
    width: 100%;
}

.nav-menu li a:hover {
    color: #6B3A5D;
}

/* Mobile nav */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: #FDF9F5;
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 40px 40px;
        gap: 24px;
        transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.open {
        right: 0;
    }
    
    .nav-menu li a {
        font-size: 1rem;
    }
    
    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.4);
        z-index: 999;
    }
    
    .nav-overlay.active {
        display: block;
    }
}

/* ---------- HERO ---------- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 24px 80px;
    background: #FDF9F5;
    position: relative;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 70% 20%, rgba(107, 58, 93, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 80%, rgba(200, 148, 62, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
}

.hero-content {
    padding-right: 20px;
}

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #C8943E;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-eyebrow::before {
    content: '';
    width: 40px;
    height: 1.5px;
    background: #C8943E;
}

.hero-headline {
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 600;
    line-height: 1.15;
    color: #3A1A30;
    margin-bottom: 24px;
}

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

.hero-subhead {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #5A5A5A;
    margin-bottom: 36px;
    max-width: 520px;
}

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

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

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

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: #6B3A5D;
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #888;
}

.stat-divider {
    width: 1px;
    height: 48px;
    background: rgba(107, 58, 93, 0.2);
}

/* Hero images */
.hero-image-col {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
}

.hero-image-main {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(58, 26, 48, 0.15);
}

.hero-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 3/4;
    transition: transform 0.6s ease;
}

.hero-image-main:hover img {
    transform: scale(1.03);
}

.hero-image-accent {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(58, 26, 48, 0.12);
    margin-top: -40px;
    margin-left: -30px;
    z-index: 2;
}

.hero-image-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
}

.accent-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(107, 58, 93, 0.9);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 10px 16px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .hero-content {
        padding-right: 0;
        text-align: center;
    }
    
    .hero-eyebrow {
        justify-content: center;
    }
    
    .hero-subhead {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-image-accent {
        margin-left: 0;
        margin-top: -30px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 16px 60px;
    }
    
    .hero-image-accent {
        margin-left: -16px;
        margin-right: -16px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn--lg {
        width: 100%;
    }
}

/* ---------- SECTION COMMON ---------- */
.section-eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #C8943E;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: #3A1A30;
    margin-bottom: 16px;
}

.section-title em {
    font-style: italic;
    font-weight: 400;
    color: #6B3A5D;
}

.section-desc {
    font-size: 1.05rem;
    color: #666;
    max-width: 600px;
    line-height: 1.8;
}

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

.section-header.center {
    text-align: center;
}

.section-header.center .section-desc {
    margin-left: auto;
    margin-right: auto;
}

/* ---------- SERVICES ---------- */
.services {
    padding: 100px 0;
    background: #fff;
}

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

.service-card {
    padding: 40px 32px;
    border: 1px solid rgba(107, 58, 93, 0.1);
    border-radius: 8px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #6B3A5D, #C8943E);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.service-card:hover {
    border-color: rgba(107, 58, 93, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(107, 58, 93, 0.1);
}

.service-icon {
    color: #6B3A5D;
    margin-bottom: 24px;
}

.service-title {
    font-size: 1.35rem;
    margin-bottom: 12px;
    color: #3A1A30;
}

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

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .services {
        padding: 72px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 28px 24px;
    }
}

/* ---------- ABOUT ---------- */
.about {
    padding: 100px 0;
    background: #FDF9F5;
}

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

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

.about-image-wrapper {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(58, 26, 48, 0.12);
}

.about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 8/10;
    transition: transform 0.6s ease;
}

.about-image-wrapper:hover img {
    transform: scale(1.03);
}

.about-image-secondary {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(58, 26, 48, 0.1);
    margin-top: -40px;
    margin-left: 40px;
    z-index: 2;
    position: relative;
}

.about-image-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16/10;
}

.about-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #6B3A5D, #C8943E);
    margin: 24px 0;
    border-radius: 2px;
}

.about-body {
    font-size: 1.02rem;
    color: #555;
    line-height: 1.85;
    margin-bottom: 20px;
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 36px 0;
}

.value-item {
    padding: 20px;
    background: #fff;
    border-radius: 6px;
    border: 1px solid rgba(107, 58, 93, 0.08);
}

.value-label {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #3A1A30;
    margin-bottom: 4px;
}

.value-desc {
    font-size: 0.82rem;
    color: #888;
    letter-spacing: 0.02em;
}

.about-content > .btn {
    margin-top: 8px;
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .about-image-col {
        order: -1;
    }
    
    .about-image-secondary {
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .about {
        padding: 72px 0;
    }
    
    .about-values {
        grid-template-columns: 1fr;
    }
}

/* ---------- WORK / GALLERY ---------- */
.work {
    padding: 100px 0;
    background: #fff;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
}

.work-item {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

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

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

.work-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(58, 26, 48, 0.85) 0%, rgba(58, 26, 48, 0) 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.work-category {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
}

.work-location {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-top: 4px;
}

.work-item--large {
    grid-column: 1 / 8;
    grid-row: 1 / 2;
}

.work-item--large img {
    aspect-ratio: 7/5;
}

.work-item:nth-child(2) {
    grid-column: 8 / 13;
    grid-row: 1 / 2;
}

.work-item:nth-child(2) img {
    aspect-ratio: 4/5;
}

.work-item:nth-child(3) {
    grid-column: 8 / 13;
    grid-row: 2 / 3;
}

.work-item:nth-child(3) img {
    aspect-ratio: 4/5;
}

.work-item--wide {
    grid-column: 1 / 13;
    grid-row: 3 / 4;
}

.work-item--wide img {
    aspect-ratio: 9/4;
}

@media (max-width: 768px) {
    .work {
        padding: 72px 0;
    }
    
    .work-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .work-item--large,
    .work-item:nth-child(2),
    .work-item:nth-child(3),
    .work-item--wide {
        grid-column: auto;
        grid-row: auto;
    }
    
    .work-item--large img,
    .work-item:nth-child(2) img,
    .work-item:nth-child(3) img,
    .work-item--wide img {
        aspect-ratio: 16/9;
    }
    
    .work-overlay {
        opacity: 1;
    }
}

/* ---------- TESTIMONIALS ---------- */
.testimonials {
    padding: 100px 0;
    background: #FDF9F5;
}

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

.testimonial-card {
    background: #fff;
    padding: 40px 32px;
    border-radius: 8px;
    border: 1px solid rgba(107, 58, 93, 0.08);
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(107, 58, 93, 0.1);
}

.testimonial-quote {
    color: #C8943E;
    margin-bottom: 20px;
    opacity: 0.6;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-footer {
    border-top: 1px solid rgba(107, 58, 93, 0.1);
    padding-top: 20px;
}

.testimonial-author {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #3A1A30;
    font-style: normal;
}

@media (max-width: 900px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .testimonials {
        padding: 72px 0;
    }
    
    .testimonial-card {
        padding: 28px 24px;
    }
}

/* ---------- CTA BANNER ---------- */
.cta-banner {
    padding: 80px 0;
    background: #6B3A5D;
    position: relative;
    overflow: hidden;
}

.cta-pattern {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(200, 148, 62, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-heading {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: #fff;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 36px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

.cta-banner .btn--outline-light:hover {
    background: #fff;
    color: #6B3A5D;
}

@media (max-width: 480px) {
    .cta-banner {
        padding: 60px 0;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-banner .btn--lg {
        width: 100%;
    }
}

/* ---------- CONTACT ---------- */
.contact {
    padding: 100px 0;
    background: #fff;
}

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

.contact-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #6B3A5D, #C8943E);
    margin: 24px 0;
    border-radius: 2px;
}

.contact-desc {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 36px;
}

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

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

.contact-icon {
    color: #6B3A5D;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 4px;
}

.contact-item a {
    color: #3A1A30;
    transition: color 0.3s ease;
}

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

.contact-item span {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-map {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 24px rgba(107, 58, 93, 0.1);
}

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 2/1;
}

.map-link {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: #6B3A5D;
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: background 0.3s ease;
}

.map-link:hover {
    background: #5A2E4D;
}

/* Form */
.contact-form-col {
    background: #FDF9F5;
    padding: 48px 40px;
    border-radius: 8px;
    border: 1px solid rgba(107, 58, 93, 0.08);
}

.form-title {
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.form-desc {
    font-size: 0.95rem;
    color: #888;
    margin-bottom: 32px;
}

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

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

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #3A1A30;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    color: #2D2D2D;
    background: #fff;
    border: 1.5px solid rgba(107, 58, 93, 0.2);
    border-radius: 4px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #6B3A5D;
    box-shadow: 0 0 0 3px rgba(107, 58, 93, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #bbb;
}

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

.form-note {
    font-size: 0.8rem;
    color: #aaa;
    margin-top: 16px;
    text-align: center;
}

.form-success {
    text-align: center;
    padding: 40px 20px;
}

.form-success svg {
    color: #6B3A5D;
    margin-bottom: 16px;
}

.form-success h4 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: #3A1A30;
}

.form-success p {
    color: #666;
    margin-bottom: 24px;
}

.form-success .btn--sm {
    margin: 0 auto;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .contact-form-col {
        padding: 32px 24px;
    }
}

@media (max-width: 480px) {
    .contact {
        padding: 72px 0;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ---------- FOOTER ---------- */
.site-footer {
    background: #2A1522;
    color: rgba(255, 255, 255, 0.7);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-brand .logo {
    color: #fff;
    margin-bottom: 16px;
}

.footer-brand .logo-icon {
    color: #C8943E;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
}

.footer-links h4,
.footer-contact h4 {
    font-family: 'Lato', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #C8943E;
    margin-bottom: 20px;
}

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

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}

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

.footer-contact p {
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 48px 0 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ---------- ANIMATIONS ---------- */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }
