/* ===== 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;
    font-weight: 400;
    line-height: 1.7;
    color: #2C3E35;
    background-color: #FAF8F5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; font-weight: 600; line-height: 1.2; color: #1B4332; }
.skip-link { position: absolute; top: -100%; left: 50%; transform: translateX(-50%); background: #1B4332; color: #FAF8F5; padding: .75rem 1.5rem; z-index: 9999; border-radius: 0 0 8px 8px; font-size: .875rem; }
.skip-link:focus { top: 0; }

/* ===== CUSTOM PROPERTIES ===== */
:root {
    --green-dark: #1B4332;
    --green-mid: #2D6A4F;
    --green-light: #40916C;
    --gold: #C9A84C;
    --gold-light: #D4B86A;
    --cream: #FAF8F5;
    --cream-dark: #F0EDE8;
    --warm-gray: #6B7B72;
    --text: #2C3E35;
    --text-light: #5A6E62;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 8px rgba(27, 67, 50, 0.06);
    --shadow-md: 0 8px 30px rgba(27, 67, 50, 0.1);
    --shadow-lg: 0 20px 60px rgba(27, 67, 50, 0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }

/* ===== HEADER ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 248, 245, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(27, 67, 50, 0.08);
    transition: var(--transition);
}
.site-header.scrolled {
    background: rgba(250, 248, 245, 0.97);
    box-shadow: var(--shadow-sm);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}
.logo { display: flex; align-items: center; gap: .75rem; }
.logo-mark { flex-shrink: 0; }
.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1B4332;
    line-height: 1.2;
    letter-spacing: 0.01em;
}
.logo-accent { color: #C9A84C; font-style: italic; }
.logo--footer .logo-text { color: #FAF8F5; font-size: 1rem; }
.logo--footer .logo-accent { color: #C9A84C; }
.logo-text--light { color: #FAF8F5 !important; }

/* NAV */
.nav-menu { display: flex; align-items: center; gap: .25rem; }
.nav-link {
    font-family: 'Lato', sans-serif;
    font-size: .875rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #2C3E35;
    padding: .5rem 1rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
}
.nav-link:hover { color: #1B4332; background: rgba(27, 67, 50, 0.06); }
.nav-link--cta {
    background: #1B4332;
    color: #FAF8F5 !important;
    margin-left: .5rem;
}
.nav-link--cta:hover { background: #2D6A4F; transform: translateY(-1px); }
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.nav-toggle:hover { background: rgba(27, 67, 50, 0.06); }
.hamburger,
.hamburger::before,
.hamburger::after {
    display: block;
    width: 20px;
    height: 2px;
    background: #1B4332;
    border-radius: 2px;
    transition: var(--transition);
}
.hamburger::before, .hamburger::after { content: ''; position: absolute; }
.hamburger::before { top: 6px; }
.hamburger::after { bottom: 6px; }
.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger { transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger::before { top: 0; transform: rotate(90deg); }
.nav-toggle[aria-expanded="true"] .hamburger::after { bottom: 0; transform: rotate(0deg); }

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #FAF8F5 0%, #F0EDE8 100%);
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 140%;
    background: radial-gradient(ellipse, rgba(27, 67, 50, 0.04) 0%, transparent 70%);
    pointer-events: none;
}
.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.hero-eyebrow {
    font-family: 'Lato', sans-serif;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #C9A84C;
    margin-bottom: 1.5rem;
}
.hero-headline {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    line-height: 1.1;
    color: #1B4332;
    margin-bottom: 1.5rem;
}
.hero-headline .accent-italic {
    font-style: italic;
    color: #C9A84C;
    font-weight: 500;
}
.hero-sub {
    font-size: 1.125rem;
    color: #5A6E62;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 520px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-badges { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.badge {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .8rem;
    font-weight: 500;
    color: #2C3E35;
    letter-spacing: 0.04em;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: 'Lato', sans-serif;
    font-size: .875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 1rem 2rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    white-space: nowrap;
}
.btn--primary {
    background: #1B4332;
    color: #FAF8F5;
    border: 2px solid #1B4332;
}
.btn--primary:hover {
    background: #2D6A4F;
    border-color: #2D6A4F;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.btn--ghost {
    background: transparent;
    color: #1B4332;
    border: 2px solid rgba(27, 67, 50, 0.3);
}
.btn--ghost:hover {
    border-color: #1B4332;
    background: rgba(27, 67, 50, 0.04);
}
.btn--outline {
    background: transparent;
    color: #FAF8F5;
    border: 2px solid rgba(250, 248, 245, 0.5);
}
.btn--outline:hover {
    background: rgba(250, 248, 245, 0.1);
    border-color: #FAF8F5;
}
.btn--large { padding: 1.15rem 2.5rem; font-size: .9rem; }
.btn--full { width: 100%; justify-content: center; }

/* HERO IMAGE */
.hero-image-wrap {
    position: relative;
    height: 600px;
}
.hero-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hero-image--main {
    position: absolute;
    top: 0;
    right: 0;
    width: 75%;
    height: 85%;
}
.hero-image--accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 55%;
    height: 40%;
    border: 6px solid #FAF8F5;
}
.hero-accent-line {
    position: absolute;
    top: 10%;
    left: -20px;
    width: 60px;
    height: 120px;
    border-left: 3px solid #C9A84C;
    border-top: 3px solid #C9A84C;
    border-radius: var(--radius-sm) 0 0 0;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    color: #6B7B72;
    font-size: .75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: float 2s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* ===== SECTIONS ===== */
.section { padding: 7rem 0; }
.section-header { max-width: 680px; margin-bottom: 4rem; }
.section-header--centered { text-align: center; margin-left: auto; margin-right: auto; }
.section-eyebrow {
    font-family: 'Lato', sans-serif;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #C9A84C;
    margin-bottom: 1rem;
}
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}
.section-desc {
    font-size: 1.1rem;
    color: #5A6E62;
    line-height: 1.8;
}

/* ===== SERVICES ===== */
.services { background: #FAF8F5; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.service-card {
    background: #FFFFFF;
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    border: 1px solid rgba(27, 67, 50, 0.06);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1B4332, #C9A84C);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon { margin-bottom: 1.5rem; }
.service-title {
    font-size: 1.35rem;
    margin-bottom: .75rem;
}
.service-desc {
    font-size: .95rem;
    color: #5A6E62;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}
.service-link {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #1B4332;
    transition: var(--transition);
}
.service-link:hover { color: #C9A84C; gap: .75rem; }
.service-link svg { transition: var(--transition); }

/* ===== ABOUT ===== */
.about { background: #F0EDE8; }
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.about-image-col { position: relative; }
.about-image-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-image-main img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-image-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 6px solid #F0EDE8;
}
.about-image-secondary img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-experience {
    position: absolute;
    top: -30px;
    left: -30px;
    background: #1B4332;
    color: #FAF8F5;
    padding: 1.5rem 2rem;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: var(--shadow-md);
}
.about-experience .exp-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    color: #C9A84C;
}
.about-experience .exp-label {
    font-size: .8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: .25rem;
}
.about-text {
    font-size: 1.05rem;
    color: #5A6E62;
    line-height: 1.85;
    margin-bottom: 1.5rem;
}
.about-values { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2.5rem; }
.value-item { display: flex; gap: 1.25rem; align-items: flex-start; }
.value-item h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    margin-bottom: .25rem;
}
.value-item p {
    font-size: .9rem;
    color: #5A6E62;
    line-height: 1.65;
}

/* ===== PROCESS ===== */
.process { background: #FAF8F5; }
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}
.process-step {
    text-align: center;
    padding: 2rem 1.5rem;
    position: relative;
}
.step-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: rgba(27, 67, 50, 0.08);
    line-height: 1;
    margin-bottom: 1rem;
}
.step-title {
    font-size: 1.3rem;
    margin-bottom: .75rem;
}
.step-desc {
    font-size: .925rem;
    color: #5A6E62;
    line-height: 1.75;
}
.step-connector {
    display: none;
}

/* ===== TESTIMONIALS ===== */
.testimonials { background: #1B4332; color: #FAF8F5; }
.testimonials .section-eyebrow { color: #C9A84C; }
.testimonials .section-title { color: #FAF8F5; }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.testimonial-card {
    background: rgba(250, 248, 245, 0.06);
    border: 1px solid rgba(250, 248, 245, 0.1);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    position: relative;
    transition: var(--transition);
}
.testimonial-card:hover {
    background: rgba(250, 248, 245, 0.1);
    transform: translateY(-4px);
}
.testimonial-quote-mark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    line-height: 1;
    color: #C9A84C;
    opacity: 0.4;
    position: absolute;
    top: .5rem;
    left: 1.5rem;
}
.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(250, 248, 245, 0.85);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.author-avatar { flex-shrink: 0; }
.author-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #FAF8F5;
}
.author-detail {
    font-size: .8rem;
    color: rgba(250, 248, 245, 0.5);
    letter-spacing: 0.04em;
}

/* ===== CTA BANNER ===== */
.cta-banner {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}
.cta-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(27, 67, 50, 0.92) 0%, rgba(45, 106, 79, 0.88) 100%);
}
.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}
.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #FAF8F5;
    margin-bottom: 1.25rem;
}
.cta-text {
    font-size: 1.1rem;
    color: rgba(250, 248, 245, 0.8);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== CONTACT ===== */
.contact { background: #F0EDE8; }
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}
.contact-desc {
    font-size: 1.05rem;
    color: #5A6E62;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}
.contact-details { display: flex; flex-direction: column; gap: 2rem; }
.contact-item { display: flex; gap: 1.25rem; align-items: flex-start; }
.contact-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(27, 67, 50, 0.06);
    border-radius: var(--radius-sm);
}
.contact-item h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    margin-bottom: .25rem;
}
.contact-link {
    font-size: .95rem;
    color: #2C3E35;
    transition: var(--transition);
}
.contact-link:hover { color: #C9A84C; }

/* FORM */
.contact-form-wrap {
    background: #FFFFFF;
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-md);
}
.form-title {
    font-size: 1.75rem;
    margin-bottom: .5rem;
}
.form-subtitle {
    font-size: .925rem;
    color: #6B7B72;
    margin-bottom: 2rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
    display: block;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #2C3E35;
    margin-bottom: .5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: .875rem 1rem;
    font-family: 'Lato', sans-serif;
    font-size: .95rem;
    color: #2C3E35;
    background: #FAF8F5;
    border: 1.5px solid rgba(27, 67, 50, 0.12);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #1B4332;
    background: #FFFFFF;
    box-shadow: 0 0 0 3px rgba(27, 67, 50, 0.08);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #9BA8A0; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M3 5l3 3 3-3' stroke='%231B4332' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.form-privacy {
    font-size: .8rem;
    color: #9BA8A0;
    text-align: center;
    margin-top: 1rem;
}
.form-success {
    text-align: center;
    padding: 2rem;
}
.form-success h4 {
    font-size: 1.75rem;
    margin: 1rem 0 .5rem;
}
.form-success p { color: #5A6E62; margin-bottom: 1.5rem; }

/* ===== FOOTER ===== */
.site-footer {
    background: #143326;
    color: rgba(250, 248, 245, 0.7);
    padding: 5rem 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(250, 248, 245, 0.08);
}
.footer-brand p { margin-top: 1rem; font-size: .9rem; line-height: 1.7; max-width: 280px; }
.footer-nav h4, .footer-services h4, .footer-contact h4 {
    font-family: 'Lato', sans-serif;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #C9A84C;
    margin-bottom: 1.25rem;
}
.footer-nav ul, .footer-services ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-nav a, .footer-services a {
    font-size: .9rem;
    color: rgba(250, 248, 245, 0.6);
    transition: var(--transition);
}
.footer-nav a:hover, .footer-services a:hover { color: #FAF8F5; }
.footer-contact address { font-style: normal; display: flex; flex-direction: column; gap: .4rem; }
.footer-link {
    font-size: .9rem;
    color: rgba(250, 248, 245, 0.6);
    transition: var(--transition);
}
.footer-link:hover { color: #C9A84C; }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    font-size: .8rem;
    color: rgba(250, 248, 245, 0.4);
    flex-wrap: wrap;
    gap: 1rem;
}

/* ===== ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== MOBILE NAV OVERLAY ===== */
.nav-menu.open {
    display: flex;
    position: fixed;
    inset: 0;
    background: rgba(250, 248, 245, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: .5rem;
    z-index: 999;
}
.nav-menu.open .nav-link {
    font-size: 1.25rem;
    padding: 1rem 2rem;
}
.nav-menu.open .nav-link--cta { margin-left: 0; margin-top: 1rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-container { grid-template-columns: 1fr; gap: 3rem; }
    .hero-image-wrap { height: 450px; order: -1; }
    .hero-content { text-align: center; max-width: 600px; margin: 0 auto; }
    .hero-sub { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-badges { justify-content: center; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .about-container { grid-template-columns: 1fr; gap: 4rem; }
    .about-image-col { max-width: 500px; }
    .process-steps { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-container { grid-template-columns: 1fr; gap: 3rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .container { padding: 0 1.25rem; }
    .section { padding: 5rem 0; }
    .nav-toggle { display: flex; }
    .nav-menu { display: none; }
    .hero { padding: 7rem 0 3rem; min-height: auto; }
    .hero-image-wrap { height: 350px; }
    .hero-image--main { width: 85%; height: 90%; }
    .hero-image--accent { width: 60%; height: 45%; }
    .hero-scroll { display: none; }
    .services-grid { grid-template-columns: 1fr; }
    .about-image-secondary { right: -10px; bottom: -20px; }
    .about-experience { left: -10px; top: -15px; padding: 1rem 1.5rem; }
    .about-experience .exp-number { font-size: 2.25rem; }
    .process-steps { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .cta-actions { flex-direction: column; align-items: center; }
    .contact-form-wrap { padding: 2rem 1.5rem; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .hero-image-wrap { height: 280px; }
    .hero-badges { flex-direction: column; align-items: center; }
    .btn { padding: .875rem 1.5rem; font-size: .8rem; }
}
