/* ============================================
   Cabinets Reface or New — Custom Styles
   ============================================ */

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

:root {
    --emerald-900: #064e3b;
    --emerald-800: #065f46;
    --emerald-700: #047857;
    --emerald-600: #059669;
    --emerald-500: #106843;
    --emerald-400: #34d399;
    --emerald-300: #6ee7b7;
    --emerald-200: #a7f3d0;
    --emerald-100: #d1fae5;
    --emerald-50:  #ecfdf5;

    --cream-50:  #fefdf8;
    --cream-100: #fefce8;
    --cream-200: #fef9c3;
    --cream-300: #fef08a;

    --stone-50:  #fafaf9;
    --stone-100: #f5f5f4;
    --stone-200: #e7e5e4;
    --stone-300: #d6d3d1;
    --stone-400: #a8a29e;
    --stone-500: #78716c;
    --stone-600: #57534e;
    --stone-700: #44403c;
    --stone-800: #292524;
    --stone-900: #1c1917;

    --font-display: 'DM Serif Display', Georgia, serif;
    --font-body:    'Nunito', 'Segoe UI', system-ui, sans-serif;

    --shadow-sm:  0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md:  0 4px 12px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.04);
    --shadow-lg:  0 12px 32px rgba(0,0,0,0.10), 0 4px 12px rgba(0,0,0,0.05);
    --shadow-xl:  0 20px 48px rgba(0,0,0,0.12), 0 8px 16px rgba(0,0,0,0.06);

    --radius-sm:  8px;
    --radius-md:  12px;
    --radius-lg:  20px;
    --radius-xl:  28px;
    --radius-full: 9999px;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--stone-800);
    background-color: var(--cream-50);
    -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; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    line-height: 1.2;
    color: var(--stone-900);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn--primary {
    background: var(--emerald-600);
    color: #fff;
    border-color: var(--emerald-600);
    box-shadow: 0 4px 14px rgba(5, 150, 105, 0.35);
}
.btn--primary:hover {
    background: var(--emerald-700);
    border-color: var(--emerald-700);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.45);
}

.btn--secondary {
    background: transparent;
    color: var(--emerald-700);
    border-color: var(--emerald-300);
}
.btn--secondary:hover {
    background: var(--emerald-50);
    border-color: var(--emerald-500);
    transform: translateY(-2px);
}

.btn--light {
    background: #fff;
    color: var(--emerald-700);
    border-color: #fff;
    box-shadow: var(--shadow-md);
}
.btn--light:hover {
    background: var(--cream-100);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn--outline-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.6);
}
.btn--outline-light:hover {
    background: rgba(255,255,255,0.15);
    border-color: #fff;
    transform: translateY(-2px);
}

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

/* ---------- Card ---------- */
.card {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--stone-200);
    transition: var(--transition);
}
.card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

/* ---------- Section ---------- */
.section {
    padding: 96px 0;
}

.section__header {
    max-width: 680px;
    margin-bottom: 56px;
}
.section__header--centered {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section__label {
    display: inline-block;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--emerald-600);
    background: var(--emerald-50);
    border: 1px solid var(--emerald-200);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.section__title {
    font-size: clamp(28px, 4vw, 44px);
    margin-bottom: 16px;
    color: var(--stone-900);
}

.section__desc {
    font-size: 17px;
    color: var(--stone-600);
    line-height: 1.8;
}

/* ---------- Navigation ---------- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(254, 253, 248, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--stone-200);
    transition: var(--transition);
}
.nav.scrolled {
    box-shadow: var(--shadow-md);
}

.nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    height: 72px;
    gap: 32px;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--emerald-800);
    font-weight: 700;
}
.nav__logo:hover { color: var(--emerald-600); }

.nav__logo-text { display: none; }

.nav__links {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}
.nav__links a {
    font-size: 14px;
    font-weight: 600;
    color: var(--stone-700);
    padding: 8px 14px;
    border-radius: var(--radius-full);
    transition: var(--transition);
}
.nav__links a:hover {
    color: var(--emerald-700);
    background: var(--emerald-50);
}

.nav__cta {
    background: var(--emerald-600) !important;
    color: #fff !important;
    padding: 10px 22px !important;
    margin-left: 8px;
}
.nav__cta:hover {
    background: var(--emerald-700) !important;
    transform: translateY(-1px);
}

/* Mobile toggle */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}
.nav__toggle-bar {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--stone-700);
    border-radius: 2px;
    transition: var(--transition);
}
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.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: rotate(-45deg) translate(5px, -5px);
}

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

/* ---------- Hero ---------- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 64px;
    background: linear-gradient(135deg, var(--cream-50) 0%, var(--emerald-50) 50%, var(--cream-100) 100%);
    position: relative;
    overflow: hidden;
}

.hero__bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(16, 104, 67, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(110, 231, 183, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 60% 60%, rgba(5, 150, 105, 0.04) 0%, transparent 40%);
    pointer-events: none;
}

.hero__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--emerald-700);
    background: var(--emerald-100);
    border: 1px solid var(--emerald-200);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    margin-bottom: 24px;
}
.hero__badge svg { flex-shrink: 0; }

.hero__headline {
    font-size: clamp(36px, 5vw, 62px);
    line-height: 1.08;
    color: var(--emerald-900);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}
.hero__headline em {
    font-style: italic;
    color: var(--emerald-600);
}

.hero__subheadline {
    font-size: 18px;
    line-height: 1.8;
    color: var(--stone-600);
    margin-bottom: 36px;
    max-width: 520px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 40px;
}

.hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.hero__trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--stone-700);
}
.hero__trust-item svg {
    color: var(--emerald-500);
    flex-shrink: 0;
}

.hero__image {
    position: relative;
}
.hero__image img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    width: 100%;
    object-fit: cover;
}
.hero__image-badge {
    position: absolute;
    bottom: -16px;
    left: -16px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--emerald-700);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    padding: 14px 22px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* ---------- Services ---------- */
.services {
    background: #fff;
}

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

.service-card {
    padding: 36px;
    display: flex;
    flex-direction: column;
}

.service-card__icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-card__title {
    font-size: 22px;
    margin-bottom: 12px;
}

.service-card__desc {
    color: var(--stone-600);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-card__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.service-card__list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--stone-700);
    font-weight: 500;
}
.service-card__list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--emerald-400);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ---------- Why Us ---------- */
.why-us {
    background: var(--cream-50);
}

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

.why-us__image-group {
    position: relative;
}
.why-us__image-main img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    width: 100%;
    object-fit: cover;
}
.why-us__image-secondary {
    position: absolute;
    bottom: -32px;
    right: -24px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid #fff;
}
.why-us__image-secondary img {
    width: 100%;
    object-fit: cover;
}

.why-us__stat {
    position: absolute;
    top: -20px;
    right: 24px;
    background: var(--emerald-600);
    color: #fff;
    padding: 16px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}
.why-us__stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 32px;
    line-height: 1;
}
.why-us__stat-label {
    font-size: 12px;
    font-weight: 600;
    opacity: 0.9;
}

.why-us__content .section__label { margin-bottom: 16px; }
.why-us__content .section__title { margin-bottom: 16px; }
.why-us__desc {
    color: var(--stone-600);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 32px;
}

.why-us__features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-feature {
    display: flex;
    gap: 16px;
}
.why-feature__check {
    width: 28px;
    height: 28px;
    border-radius: var(--radius-full);
    background: var(--emerald-100);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}
.why-feature strong {
    display: block;
    font-size: 16px;
    color: var(--stone-800);
    margin-bottom: 2px;
}
.why-feature__sub {
    font-size: 14px;
    color: var(--stone-500);
    line-height: 1.6;
}

/* ---------- Process ---------- */
.process {
    background: #fff;
}

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

.step {
    text-align: center;
    padding: 32px 20px;
    background: var(--cream-50);
    border-radius: var(--radius-lg);
    border: 1px solid var(--stone-200);
    transition: var(--transition);
}
.step:hover {
    border-color: var(--emerald-200);
    box-shadow: var(--shadow-md);
}

.step__number-wrap {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--emerald-500), var(--emerald-600));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}
.step__number {
    font-family: var(--font-display);
    font-size: 22px;
    color: #fff;
}

.step__title {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--stone-800);
}

.step__desc {
    font-size: 14px;
    color: var(--stone-600);
    line-height: 1.7;
}

.step__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 40px;
}

/* ---------- Gallery ---------- */
.gallery {
    background: var(--cream-50);
}

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

.gallery__item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery__item:hover img {
    transform: scale(1.05);
}
.gallery__item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6, 78, 59, 0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}
.gallery__item:hover .gallery__item-overlay {
    opacity: 1;
}
.gallery__item-overlay span {
    color: #fff;
    font-weight: 700;
    font-size: 15px;
}

.gallery__item--large {
    grid-column: span 7;
    grid-row: span 2;
    min-height: 420px;
}
.gallery__item:not(.gallery__item--large) {
    min-height: 200px;
}
.gallery__item--wide {
    grid-column: span 12;
    min-height: 240px;
}

/* ---------- Testimonials ---------- */
.testimonials {
    background: var(--emerald-800);
    position: relative;
    overflow: hidden;
}
.testimonials::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(110, 231, 183, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(52, 211, 153, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials .section__label {
    background: rgba(110, 231, 183, 0.15);
    border-color: rgba(110, 231, 183, 0.3);
    color: var(--emerald-300);
}

.testimonials .section__title {
    color: #fff;
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    padding: 32px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-lg);
}
.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.testimonial-card__stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testimonial-card__text {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 24px;
    flex-grow: 1;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-card__author-avatar {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: var(--emerald-500);
    color: #fff;
    font-weight: 800;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.testimonial-card__author strong {
    display: block;
    color: #fff;
    font-size: 15px;
}
.testimonial-card__author span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

/* ---------- CTA Banner ---------- */
.cta-banner {
    background: linear-gradient(135deg, var(--emerald-700) 0%, var(--emerald-500) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(0,0,0,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-banner__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.cta-banner__title {
    font-size: clamp(24px, 3.5vw, 38px);
    color: #fff;
    margin-bottom: 12px;
}

.cta-banner__desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 480px;
    line-height: 1.7;
}

.cta-banner__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* ---------- Contact ---------- */
.contact {
    background: #fff;
}

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

.contact__desc {
    color: var(--stone-600);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 32px;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.contact-detail {
    display: flex;
    gap: 16px;
}
.contact-detail__icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--emerald-50);
    border: 1px solid var(--emerald-200);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-detail strong {
    display: block;
    font-size: 15px;
    color: var(--stone-800);
    margin-bottom: 4px;
}
.contact-detail p {
    font-size: 14px;
    color: var(--stone-600);
    line-height: 1.6;
}
.contact-detail a {
    color: var(--emerald-600);
    transition: var(--transition);
}
.contact-detail a:hover {
    color: var(--emerald-800);
    text-decoration: underline;
}

.contact__hours {
    background: var(--cream-50);
    border: 1px solid var(--stone-200);
    border-radius: var(--radius-md);
    padding: 20px 24px;
}
.contact__hours strong {
    display: block;
    font-size: 15px;
    color: var(--stone-800);
    margin-bottom: 8px;
}
.contact__hours p {
    font-size: 14px;
    color: var(--stone-600);
    line-height: 1.7;
}

/* Form */
.contact__form-card {
    padding: 40px;
}
.contact__form-title {
    font-size: 24px;
    margin-bottom: 24px;
    color: var(--stone-900);
}

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

.form-group {
    margin-bottom: 16px;
}
.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--stone-700);
    margin-bottom: 6px;
    letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--stone-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--stone-800);
    background: var(--cream-50);
    transition: var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--emerald-400);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.2);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--stone-400);
}
.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.contact__form-success {
    text-align: center;
    padding: 40px 20px;
}
.form-success__icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 16px;
    border-radius: var(--radius-full);
    background: var(--emerald-50);
    border: 2px solid var(--emerald-200);
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact__form-success h4 {
    font-size: 22px;
    color: var(--emerald-800);
    margin-bottom: 8px;
}
.contact__form-success p {
    font-size: 15px;
    color: var(--stone-600);
    line-height: 1.7;
}

/* ---------- Map ---------- */
.map-section {
    border-top: 1px solid var(--stone-200);
}
.map-section__inner iframe {
    filter: saturate(0.8) contrast(1.05);
}

/* ---------- Footer ---------- */
.footer {
    background: var(--stone-900);
    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__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}
.footer__logo-text {
    font-family: var(--font-display);
    font-size: 18px;
    color: #fff;
    font-weight: 700;
}

.footer__tagline {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.55);
    max-width: 280px;
}

.footer__links h4,
.footer__contact h4 {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.footer__links ul,
.footer__contact ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer__links a,
.footer__contact a,
.footer__contact li {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    transition: var(--transition);
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.footer__links a:hover,
.footer__contact a:hover {
    color: var(--emerald-300);
}
.footer__contact li svg {
    flex-shrink: 0;
    margin-top: 3px;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.footer__bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

/* ---------- Scroll Reveal ---------- */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .hero__inner {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    .hero__subheadline { margin-left: auto; margin-right: auto; }
    .hero__actions { justify-content: center; }
    .hero__trust { justify-content: center; }
    .hero__image { max-width: 560px; margin: 0 auto; }

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

    .why-us__layout {
        grid-template-columns: 1fr;
        gap: 56px;
    }
    .why-us__image-group { max-width: 480px; }

    .process__steps {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .step__arrow { display: none; }

    .gallery__grid {
        grid-template-columns: 1fr 1fr;
    }
    .gallery__item--large {
        grid-column: span 2;
        grid-row: span 1;
        min-height: 300px;
    }
    .gallery__item--wide {
        grid-column: span 2;
    }

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

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

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

@media (max-width: 768px) {
    .section { padding: 72px 0; }

    /* Mobile nav */
    .nav__toggle { display: flex; }
    .nav__links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--cream-50);
        flex-direction: column;
        align-items: stretch;
        padding: 88px 24px 32px;
        gap: 4px;
        box-shadow: var(--shadow-xl);
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        overflow-y: auto;
    }
    .nav__links.open { right: 0; }
    .nav__links a {
        padding: 14px 16px;
        border-radius: var(--radius-sm);
        font-size: 16px;
    }
    .nav__cta {
        margin-left: 0 !important;
        margin-top: 12px;
        text-align: center;
        justify-content: center;
    }
    .nav__overlay.open { display: block; }

    .hero { padding: 88px 0 48px; min-height: auto; }
    .hero__headline { font-size: clamp(30px, 8vw, 44px); }
    .hero__image-badge { bottom: -12px; left: -8px; padding: 10px 16px; font-size: 13px; }

    .services__grid { gap: 16px; }
    .service-card { padding: 28px; }

    .why-us__image-secondary { right: -8px; bottom: -20px; }
    .why-us__stat { top: -12px; right: 12px; padding: 12px 18px; }

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

    .gallery__grid { grid-template-columns: 1fr; }
    .gallery__item--large { grid-column: span 1; min-height: 240px; }
    .gallery__item--wide { grid-column: span 1; min-height: 200px; }
    .gallery__item:not(.gallery__item--large) { min-height: 180px; }

    .cta-banner { padding: 56px 0; }
    .cta-banner__inner { flex-direction: column; text-align: center; }
    .cta-banner__actions { justify-content: center; }

    .form-row { grid-template-columns: 1fr; }
    .contact__form-card { padding: 28px; }

    .footer__grid { grid-template-columns: 1fr; gap: 32px; }
    .footer__bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero__actions { flex-direction: column; }
    .hero__actions .btn { width: 100%; justify-content: center; }
    .hero__trust { flex-direction: column; align-items: center; gap: 12px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
    .reveal {
        opacity: 1;
        transform: none;
    }
}
