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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #2c3e35;
    background-color: #faf8f4;
    overflow-x: hidden;
}

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

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

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

ul {
    list-style: none;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 600;
    line-height: 1.2;
    color: #1a3a2a;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: #1a5c3a;
    color: #faf8f4;
    padding: 0.75rem 1.5rem;
    z-index: 1000;
    border-radius: 0 0 4px 4px;
    font-size: 0.875rem;
}

.skip-link:focus {
    top: 0;
}

/* ===== LAYOUT ===== */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(250, 248, 244, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(26, 92, 58, 0.08);
    transition: box-shadow 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 2px 24px rgba(26, 58, 42, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #1a5c3a;
    transition: opacity 0.2s;
}

.logo:hover {
    opacity: 0.8;
}

.logo--light {
    color: #faf8f4;
}

.logo-mark {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.logo-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: inherit;
}

.logo-tagline {
    font-family: 'Lato', sans-serif;
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.7;
}

/* Nav */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-link {
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #2c3e35;
    padding: 0.5rem 0.875rem;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s;
}

.nav-link:hover {
    background: rgba(26, 92, 58, 0.06);
    color: #1a5c3a;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #faf8f4;
    background: #1a5c3a;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    margin-left: 0.75rem;
    transition: background 0.2s, transform 0.15s;
}

.nav-cta:hover {
    background: #144a2e;
    transform: translateY(-1px);
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    z-index: 110;
}

.nav-toggle-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: #1a3a2a;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ===== HERO ===== */
.hero {
    padding-top: 76px;
    min-height: 100vh;
    min-height: 100dvh;
    background: #faf8f4;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 3rem 0;
}

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #1a5c3a;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hero-eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: #1a5c3a;
}

.hero-title {
    font-size: clamp(2.25rem, 4.5vw, 3.75rem);
    font-weight: 600;
    line-height: 1.15;
    color: #1a3a2a;
    margin-bottom: 1.5rem;
}

.hero-title em {
    font-style: italic;
    color: #1a5c3a;
}

.hero-subtitle {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #4a5e54;
    margin-bottom: 2.25rem;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #4a5e54;
}

.trust-item svg {
    color: #1a5c3a;
    flex-shrink: 0;
}

/* Hero image */
.hero-image {
    position: relative;
}

.hero-image-frame {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 32px 64px rgba(26, 58, 42, 0.12);
}

.hero-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-image-accent {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 100%;
    height: 100%;
    border: 2px solid #1a5c3a;
    border-radius: 6px;
    z-index: -1;
    opacity: 0.2;
}

.hero-badge {
    position: absolute;
    bottom: -1rem;
    left: -1rem;
    background: #1a5c3a;
    color: #faf8f4;
    padding: 1rem 1.5rem;
    border-radius: 4px;
    box-shadow: 0 8px 24px rgba(26, 92, 58, 0.25);
}

.badge-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.7;
    margin-bottom: 0.25rem;
}

.badge-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.0625rem;
    font-weight: 600;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Lato', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.875rem 1.75rem;
    border-radius: 4px;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.btn-primary {
    background: #1a5c3a;
    color: #faf8f4;
    border: 2px solid #1a5c3a;
}

.btn-primary:hover {
    background: #144a2e;
    border-color: #144a2e;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 92, 58, 0.2);
}

.btn-secondary {
    background: transparent;
    color: #1a5c3a;
    border: 2px solid #1a5c3a;
}

.btn-secondary:hover {
    background: rgba(26, 92, 58, 0.06);
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background: #1a5c3a;
    color: #faf8f4;
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: #faf8f4;
    border: 2px solid rgba(250, 248, 244, 0.5);
}

.btn-outline-white:hover {
    background: #faf8f4;
    color: #1a5c3a;
    border-color: #faf8f4;
    transform: translateY(-2px);
}

.btn-white {
    background: #faf8f4;
    color: #1a5c3a;
    border: 2px solid #faf8f4;
}

.btn-white:hover {
    background: #f0ebe0;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 0.875rem;
}

/* ===== SECTION COMMON ===== */
.section-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #1a5c3a;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.0625rem;
    color: #4a5e54;
    max-width: 560px;
    line-height: 1.8;
}

.section-header {
    margin-bottom: 3.5rem;
}

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

.section-header--centered .section-subtitle {
    margin: 0 auto;
}

/* ===== SERVICES ===== */
.services {
    padding: 7rem 0;
    background: #faf8f4;
}

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

.service-card {
    background: #ffffff;
    border: 1px solid rgba(26, 92, 58, 0.08);
    border-radius: 6px;
    padding: 2.25rem;
    transition: all 0.3s ease;
    position: relative;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #1a5c3a;
    transform: scaleX(0);
    transition: transform 0.3s ease;
    border-radius: 0 0 6px 6px;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(26, 58, 42, 0.08);
    border-color: transparent;
}

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

.service-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 92, 58, 0.06);
    border-radius: 8px;
    margin-bottom: 1.5rem;
    color: #1a5c3a;
    transition: background 0.3s;
}

.service-card:hover .service-icon {
    background: #1a5c3a;
    color: #faf8f4;
}

.service-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1a3a2a;
}

.service-desc {
    font-size: 0.9375rem;
    line-height: 1.75;
    color: #4a5e54;
}

/* ===== ABOUT ===== */
.about {
    padding: 7rem 0;
    background: #f3efe6;
    overflow: hidden;
}

.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.about-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 24px 48px rgba(26, 58, 42, 0.1);
}

.about-image-pattern {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(circle, #1a5c3a 1px, transparent 1px);
    background-size: 12px 12px;
    opacity: 0.15;
    z-index: -1;
}

.about-content .section-title {
    margin-bottom: 1.5rem;
}

.about-text {
    font-size: 1rem;
    line-height: 1.85;
    color: #4a5e54;
    margin-bottom: 1.25rem;
}

.about-stats {
    display: flex;
    gap: 1.5rem;
    margin: 2.5rem 0;
    padding: 2rem 0;
    border-top: 1px solid rgba(26, 92, 58, 0.1);
    border-bottom: 1px solid rgba(26, 92, 58, 0.1);
}

.stat {
    flex: 1;
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a5c3a;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6b7f74;
    margin-top: 0.25rem;
}

.stat-divider {
    width: 1px;
    background: rgba(26, 92, 58, 0.15);
    align-self: stretch;
}

/* ===== WHY US ===== */
.why-us {
    padding: 7rem 0;
    background: #1a3a2a;
    color: #faf8f4;
}

.why-us .section-eyebrow {
    color: rgba(250, 248, 244, 0.6);
}

.why-us .section-title {
    color: #faf8f4;
    margin-bottom: 3.5rem;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.why-item {
    padding: 2rem;
    border: 1px solid rgba(250, 248, 244, 0.08);
    border-radius: 6px;
    transition: border-color 0.3s, background 0.3s;
}

.why-item:hover {
    border-color: rgba(250, 248, 244, 0.2);
    background: rgba(250, 248, 244, 0.03);
}

.why-number {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(250, 248, 244, 0.1);
    line-height: 1;
    margin-bottom: 0.75rem;
}

.why-title {
    font-size: 1.375rem;
    color: #faf8f4;
    margin-bottom: 0.75rem;
}

.why-desc {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: rgba(250, 248, 244, 0.65);
}

/* ===== GALLERY ===== */
.gallery {
    padding: 7rem 0;
    background: #faf8f4;
}

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

.gallery-item {
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 5/4;
}

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

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

/* ===== CTA BANNER ===== */
.cta-banner {
    padding: 5rem 0;
    background: #1a5c3a;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(250, 248, 244, 0.04) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(0, 0, 0, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.cta-content {
    flex: 1;
    min-width: 280px;
}

.cta-title {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    color: #faf8f4;
    margin-bottom: 0.75rem;
}

.cta-text {
    font-size: 1.0625rem;
    color: rgba(250, 248, 244, 0.7);
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* ===== CONTACT ===== */
.contact {
    padding: 7rem 0;
    background: #f3efe6;
}

.contact-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-intro {
    font-size: 1rem;
    color: #4a5e54;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-detail {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 92, 58, 0.06);
    border-radius: 8px;
    color: #1a5c3a;
    flex-shrink: 0;
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.contact-label {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #6b7f74;
}

.contact-value {
    font-size: 1rem;
    color: #1a3a2a;
    font-weight: 500;
}

.contact-hours-note {
    font-size: 0.8125rem;
    color: #6b7f74;
    font-weight: 400;
}

.contact-map {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(26, 58, 42, 0.08);
}

/* Contact form */
.contact-form-wrap {
    background: #ffffff;
    border-radius: 8px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(26, 58, 42, 0.06);
    border: 1px solid rgba(26, 92, 58, 0.06);
}

.form-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.form-subtitle {
    font-size: 0.9375rem;
    color: #6b7f74;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1.25rem;
}

.form-group label {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #2c3e35;
}

.required {
    color: #c0392b;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: 'Lato', sans-serif;
    font-size: 0.9375rem;
    color: #2c3e35;
    background: #faf8f4;
    border: 1.5px solid rgba(26, 92, 58, 0.12);
    border-radius: 4px;
    padding: 0.75rem 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #1a5c3a;
    box-shadow: 0 0 0 3px rgba(26, 92, 58, 0.08);
}

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

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

.form-note {
    font-size: 0.8125rem;
    color: #6b7f74;
    margin-top: 0.75rem;
    text-align: center;
}

/* Success state */
.form-success {
    text-align: center;
    padding: 2rem 1rem;
}

.success-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 92, 58, 0.08);
    border-radius: 50%;
    color: #1a5c3a;
}

.success-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #1a3a2a;
}

.success-text {
    font-size: 0.9375rem;
    color: #4a5e54;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* ===== FOOTER ===== */
.footer {
    background: #112419;
    color: rgba(250, 248, 244, 0.6);
    padding: 4rem 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(250, 248, 244, 0.06);
}

.footer-brand {
    max-width: 300px;
}

.footer-tagline {
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-top: 1rem;
    color: rgba(250, 248, 244, 0.5);
}

.footer-heading {
    font-family: 'Lato', sans-serif;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(250, 248, 244, 0.4);
    margin-bottom: 1.25rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links a {
    font-size: 0.9375rem;
    color: rgba(250, 248, 244, 0.6);
    transition: color 0.2s;
}

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

.footer-contact address {
    font-style: normal;
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.footer-contact a {
    color: rgba(250, 248, 244, 0.8);
    transition: color 0.2s;
}

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

.footer-hours {
    font-size: 0.8125rem;
    color: rgba(250, 248, 244, 0.4);
    margin-top: 0.75rem;
    line-height: 1.6;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1.5rem 0;
}

.copyright {
    font-size: 0.8125rem;
    color: rgba(250, 248, 244, 0.35);
}

.footer-location {
    font-size: 0.8125rem;
    color: rgba(250, 248, 244, 0.35);
}

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

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-split {
        gap: 2rem;
    }

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

    .about-split {
        gap: 2.5rem;
    }

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

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

    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
    }
}

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

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        height: 100dvh;
        background: #faf8f4;
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 2rem 2rem;
        gap: 0.25rem;
        box-shadow: -8px 0 32px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 100;
    }

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

    .nav-link {
        width: 100%;
        padding: 0.75rem 0;
        font-size: 0.9375rem;
    }

    .nav-cta {
        margin-left: 0;
        margin-top: 1rem;
        justify-content: center;
        width: 100%;
    }

    .mobile-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.4);
        z-index: 99;
    }

    .mobile-overlay.active {
        display: block;
    }

    .hero-split {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .hero-subtitle {
        margin: 0 auto 2rem;
    }

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

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

    .hero-image {
        max-width: 480px;
        margin: 0 auto;
    }

    .hero-badge {
        left: 50%;
        transform: translateX(-50%);
    }

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

    .about-split {
        grid-template-columns: 1fr;
    }

    .about-image-wrap {
        max-width: 480px;
        margin: 0 auto;
    }

    .about-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .stat-divider {
        width: 100%;
        height: 1px;
    }

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

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

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

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

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

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

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

@media (max-width: 480px) {
    .container {
        padding: 0 1.125rem;
    }

    .hero-title {
        font-size: 1.875rem;
    }

    .hero-badge {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 1rem;
        display: inline-block;
    }

    .contact-form-wrap {
        padding: 1.5rem;
    }
}
