/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    line-height: 1.75;
    color: #2D2D2A;
    background: #F5FAF7;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; }

/* ===== UTILITIES ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-tag {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #2B7A3D;
    display: block;
    margin-bottom: 16px;
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 48px;
    color: #2D2D2A;
    line-height: 1.15;
    margin-bottom: 20px;
}
.section-title--light { color: #FFFFFF; }
.section-subtitle {
    font-size: 18px;
    color: #6B7A6E;
    max-width: 560px;
    margin: 0 auto;
}
.section-subtitle--light { color: rgba(255,255,255,0.6); }
.section-header { text-align: center; margin-bottom: 48px; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 16px 36px;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}
.btn--primary {
    background: #2B7A3D;
    color: #FFFFFF;
    border-color: #2B7A3D;
}
.btn--primary:hover { background: #1D5C2B; border-color: #1D5C2B; }
.btn--secondary {
    background: transparent;
    border: 2px solid #2B7A3D;
    color: #2B7A3D;
}
.btn--secondary:hover { background: #2B7A3D; color: #FFFFFF; }
.btn--ghost {
    background: rgba(255,255,255,0.08);
    border: 2px solid rgba(255,255,255,0.7);
    color: #FFFFFF;
}
.btn--ghost:hover { background: #FFFFFF; color: #1A1A18; border-color: #FFFFFF; }
.btn--full { width: 100%; text-align: center; font-size: 16px; padding: 18px 36px; }
.btn--shimmer { position: relative; overflow: hidden; }
.btn--shimmer::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 2.5s infinite;
}
@keyframes shimmer { 100% { left: 100%; } }

/* ===== NAVBAR ===== */
.navbar {
    height: 80px;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #FFFFFF;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
}
.navbar--transparent {
    background: rgba(26,26,24,0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: none;
}
.navbar__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.navbar__logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.navbar__logo-img {
    height: 56px;
    width: auto;
}
.navbar__logo-text {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 22px;
    color: #2B7A3D;
    transition: color 0.3s;
}
.navbar--transparent .navbar__logo-text {
    color: #FFFFFF;
}
.navbar__menu {
    display: flex;
    gap: 36px;
}
.navbar__link {
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #2D2D2A;
    position: relative;
    padding: 4px 0;
    transition: color 0.3s;
}
.navbar__link::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0; height: 2px;
    background: #2B7A3D;
    transition: width 0.3s ease;
}
.navbar__link:hover { color: #2B7A3D; }
.navbar__link:hover::after { width: 100%; }
.navbar--transparent .navbar__link { color: #FFFFFF; }
.navbar--transparent .navbar__link:hover { color: #5EBD72; }
.navbar__cta { animation: pulse-cta 3s infinite; }
@keyframes pulse-cta {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}
.navbar__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
    z-index: 1100;
}
.navbar__hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #2D2D2A;
    transition: all 0.3s;
}
.navbar--transparent .navbar__hamburger span { background: #FFFFFF; }
.navbar__hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__hamburger.active span:nth-child(2) { opacity: 0; }
.navbar__hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: #1A1A18;
    z-index: 1050;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.mobile-menu.active { display: flex; }
.mobile-menu__link {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #FFFFFF;
    display: block;
    margin: 16px 0;
    transition: color 0.3s;
}
.mobile-menu__link:hover { color: #5EBD72; }

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    background: url('https://lh3.googleusercontent.com/p/AF1QipMFR4ihwxvxpwjtLqIX36iSy-H2_6grAluHrigs=w1920-h1080-n-k-no-nu') center/cover no-repeat;
}
.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(26,26,24,0.92) 0%, rgba(26,26,24,0.8) 45%, rgba(26,26,24,0.35) 70%, rgba(30,60,30,0.2) 100%),
        linear-gradient(180deg, rgba(26,26,24,0.4) 0%, transparent 30%, transparent 70%, rgba(26,26,24,0.5) 100%);
}
.hero__content {
    position: relative;
    z-index: 1;
    padding-left: 10%;
    max-width: 700px;
}
.hero__tag {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #5EBD72;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}
.hero__tag-line {
    display: inline-block;
    width: 40px;
    height: 2px;
    background: #5EBD72;
}
.hero__title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-style: italic;
    font-size: 80px;
    color: #FFFFFF;
    line-height: 1.1;
    margin-bottom: 24px;
}
.hero__subtitle {
    font-size: 19px;
    color: rgba(255,255,255,0.85);
    max-width: 540px;
    line-height: 1.7;
    margin-bottom: 36px;
}
.hero__buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce-scroll 2s ease-in-out infinite, fade-pulse 2s ease-in-out infinite;
    z-index: 1;
}
@keyframes bounce-scroll {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(12px); }
}
@keyframes fade-pulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.9; }
}

/* ===== TRUST BAR ===== */
.trust-bar { background: #2B7A3D; }
.trust-bar__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    min-height: 100px;
}
.trust-bar__item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 20px;
    border-right: 1px solid rgba(255,255,255,0.3);
}
.trust-bar__item:last-child { border-right: none; }
.trust-bar__item strong {
    display: block;
    font-weight: 600;
    font-size: 15px;
    color: #FFFFFF;
    text-transform: uppercase;
}
.trust-bar__item span {
    display: block;
    font-size: 13px;
    color: rgba(255,255,255,0.8);
}

/* ===== ABOUT ===== */
.about { padding: 120px 0; background: #F5FAF7; }
.about__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about__image-frame {
    position: relative;
    display: inline-block;
}
.about__image-frame img {
    border-radius: 12px;
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}
.about__image-frame::after {
    content: '';
    position: absolute;
    bottom: -24px; right: -24px;
    width: 100%; height: 100%;
    border: 3px solid #2B7A3D;
    border-radius: 12px;
}
.about__text p {
    color: #6B7A6E;
    line-height: 1.8;
    margin-bottom: 16px;
}
.about__stats {
    display: flex;
    gap: 40px;
    margin: 32px 0;
    padding-top: 24px;
    border-top: 1px solid #D6E8DA;
}
.about__stat { text-align: center; }
.about__stat-number {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 48px;
    color: #2B7A3D;
    display: inline;
}
.about__stat-plus {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 48px;
    color: #2B7A3D;
}
.about__stat-label {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    color: #6B7A6E;
    margin-top: 4px;
}
.about__link {
    font-weight: 600;
    font-size: 15px;
    color: #2B7A3D;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.about__link span { transition: transform 0.3s; }
.about__link:hover span { transform: translateX(6px); }
.about__text-mobile { display: none; }

/* ===== SERVICES ===== */
.services { background: #1A1A18; padding: 120px 0; }
.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    min-height: 360px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    transition: all 0.4s ease;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.service-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26,26,24,0.1) 0%, rgba(26,26,24,0.85) 100%);
    transition: background 0.4s ease;
}
.service-card:hover .service-card__overlay {
    background: linear-gradient(180deg, rgba(26,26,24,0.3) 0%, rgba(26,26,24,0.92) 100%);
}
.service-card__content {
    position: relative;
    z-index: 1;
    padding: 32px;
}
.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 24px;
    color: #FFFFFF;
    margin-bottom: 10px;
}
.service-card p {
    font-size: 15px;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin-bottom: 16px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s ease;
}
.service-card:hover p {
    max-height: 200px;
    opacity: 1;
}
.service-card__link {
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #5EBD72;
    transition: color 0.3s;
}
.service-card__link:hover { color: #FFFFFF; }

/* ===== BEFORE/AFTER ===== */
.before-after { background: #E8F0EA; padding: 120px 0; }
.ba-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.ba-slider__container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: ew-resize;
    user-select: none;
}
.ba-slider__before, .ba-slider__after {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    -webkit-user-drag: none;
    user-select: none;
    pointer-events: none;
}
.ba-slider__after { clip-path: inset(0 0 0 50%); }
.ba-slider__handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateX(-50%);
    z-index: 5;
    pointer-events: none;
}
.ba-slider__handle-line {
    flex: 1;
    width: 2px;
    background: #FFFFFF;
}
.ba-slider__handle-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    pointer-events: auto;
}
.ba-slider__handle-circle svg { fill: #1A1A18; }
.ba-slider__label {
    position: absolute;
    bottom: 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    color: #FFFFFF;
    background: rgba(0,0,0,0.5);
    padding: 6px 12px;
    border-radius: 4px;
    z-index: 4;
}
.ba-slider__label--before { left: 12px; }
.ba-slider__label--after { right: 12px; }
.ba-slider__caption {
    text-align: center;
    font-size: 14px;
    color: #6B7A6E;
    margin-top: 16px;
}

/* ===== PROCESS ===== */
.process { background: #F5FAF7; padding: 64px 0 80px; }
.process__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.process__card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 40px;
    display: flex;
    gap: 28px;
    align-items: flex-start;
    border: 1px solid rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}
.process__card:hover {
    border-color: rgba(43,122,61,0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.process__number {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 700;
    color: #2B7A3D;
    line-height: 1;
    flex-shrink: 0;
}
.process__card-body { flex: 1; }
.process__card-body h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 22px;
    color: #1A1A18;
    margin-bottom: 10px;
}
.process__card-body p {
    font-size: 15px;
    color: rgba(26,26,24,0.6);
    line-height: 1.7;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background: #1A1A18;
    padding: 0;
    position: relative;
}
.testimonials::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        90deg,
        rgba(43,122,61,0.03) 0px,
        transparent 2px,
        transparent 20px
    );
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}
.testimonials__scroll {
    height: 300vh;
    position: relative;
}
.testimonials__sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    overflow: hidden;
    z-index: 1;
}
.testimonials__stack {
    position: relative;
    width: 480px;
    max-width: 90vw;
    height: 340px;
    perspective: 1200px;
}
.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: #252521;
    border-radius: 16px;
    padding: 36px;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
                opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform, opacity;
}
.testimonial-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #FFFFFF;
    flex-shrink: 0;
}
.testimonial-card__author-info { flex: 1; }
.testimonial-card__author-info strong {
    display: block;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #FFFFFF;
}
.testimonial-card__author-info span {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
}
.testimonial-card__stars {
    color: #2B7A3D;
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 14px;
}
.testimonial-card blockquote {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    font-style: normal;
    margin-bottom: 20px;
}
.testimonial-card__footer {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}
.testimonials__google-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 32px;
    padding: 12px 28px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    cursor: pointer;
}
.testimonials__google-btn:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.25);
    transform: translateY(-2px);
}
.testimonials__google-btn span {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}
.testimonials__google-btn:hover span {
    color: rgba(255,255,255,0.9);
}

/* ===== GALLERY ===== */
.gallery { background: #F5FAF7; padding: 64px 0 80px; overflow: hidden; }
.gallery__rows {
    display: flex;
    flex-direction: column;
    gap: 16px;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
}
.gallery__row { overflow: hidden; }
.gallery__row-inner {
    display: flex;
    gap: 16px;
    width: max-content;
}
.gallery__row--left .gallery__row-inner {
    animation: gallery-scroll-left 120s linear infinite;
}
.gallery__row--right .gallery__row-inner {
    animation: gallery-scroll-right 130s linear infinite;
}
@keyframes gallery-scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes gallery-scroll-right {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}
.gallery__row-inner img {
    height: 240px;
    width: auto;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
}

/* ===== CTA SECTION ===== */
.cta-section {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('background-section.png') center/cover no-repeat fixed;
}
.cta-section__overlay {
    position: absolute;
    inset: 0;
    background: rgba(26,26,24,0.82);
}
.cta-section__content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    padding: 0 24px;
}
.cta-section__title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-style: italic;
    font-size: 56px;
    color: #FFFFFF;
    line-height: 1.15;
    margin-bottom: 20px;
}
.cta-section__text {
    font-size: 18px;
    color: rgba(255,255,255,0.75);
    margin-bottom: 36px;
}
.cta-section__buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== CONTACT ===== */
.contact { background: #F5FAF7; padding: 64px 0; }
.contact__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 55fr 45fr;
    gap: 48px;
}
.contact__intro {
    font-size: 16px;
    color: #6B7A6E;
    margin-bottom: 32px;
}
.contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}
.contact-form__field { margin-bottom: 12px; }
.contact-form__field label {
    display: block;
    font-weight: 600;
    font-size: 13px;
    color: #2D2D2A;
    margin-bottom: 6px;
}
.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid #C4D9C8;
    border-radius: 8px;
    background: #FFFFFF;
    color: #2D2D2A;
    transition: all 0.25s ease;
    outline: none;
}
.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
    border-color: #2B7A3D;
    box-shadow: 0 0 0 3px rgba(43,122,61,0.15);
}
.contact-form__field textarea { resize: vertical; }
.contact-form__success {
    text-align: center;
    padding: 60px 20px;
}
.contact-form__success h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: #2D2D2A;
    margin: 24px 0 8px;
}
.contact-form__success a { color: #2B7A3D; font-weight: 600; }
.contact-form__check .check-circle {
    stroke-dasharray: 190;
    stroke-dashoffset: 190;
    animation: draw-circle 0.6s ease forwards;
}
.contact-form__check .check-mark {
    stroke-dasharray: 40;
    stroke-dashoffset: 40;
    animation: draw-check 0.4s ease 0.5s forwards;
}
@keyframes draw-circle { to { stroke-dashoffset: 0; } }
@keyframes draw-check { to { stroke-dashoffset: 0; } }

/* Contact Info */
.contact-info {
    background: #1A1A18;
    border-radius: 16px;
    padding: 32px;
}
.contact-info__block { margin-bottom: 20px; }
.contact-info__label {
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #5EBD72;
    display: block;
    margin-bottom: 8px;
}
.contact-info__block p {
    font-size: 16px;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
}
.contact-info__block a {
    color: rgba(255,255,255,0.85);
    transition: color 0.3s;
}
.contact-info__block a:hover { color: #5EBD72; }

/* ===== FOOTER ===== */
.footer { background: #141412; padding: 80px 0 40px; }
.footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
}
.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}
.footer__logo-img {
    height: 64px;
    width: auto;
}
.footer__logo-text {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 20px;
    color: #5EBD72;
}
.footer__tagline {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
}
.footer__col h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #FFFFFF;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__col li { margin-bottom: 8px; }
.footer__col a {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    transition: color 0.2s;
}
.footer__col a:hover { color: #5EBD72; }
.footer__col li { font-size: 14px; color: rgba(255,255,255,0.5); }
.footer__bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 24px 24px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
}
.footer__bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.35);
}

/* ===== ANIMATIONS ===== */
.anim-fade-left, .anim-slide-up, .anim-fade,
.anim-up, .anim-slide-left, .anim-slide-right,
.anim-scale, .anim-scale-in {
    opacity: 0;
    transition: all 0.7s ease-out;
}
.anim-fade-left { transform: translateX(-30px); }
.anim-slide-up, .anim-up { transform: translateY(30px); }
.anim-slide-left { transform: translateX(-40px); }
.anim-slide-right { transform: translateX(40px); }
.anim-scale, .anim-scale-in { transform: scale(0.9); }

.anim-fade-left.visible,
.anim-slide-up.visible,
.anim-fade.visible,
.anim-up.visible,
.anim-slide-left.visible,
.anim-slide-right.visible,
.anim-scale.visible,
.anim-scale-in.visible {
    opacity: 1;
    transform: none;
}

/* ===== RESPONSIVE — TABLET ===== */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero__title { font-size: 60px; }
    .hero__content { padding-left: 48px; }
    .services__grid { grid-template-columns: repeat(2, 1fr); }
    .service-card { min-height: 300px; }
    .ba-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery__row-inner img { height: 200px; }
    .testimonials__stack { width: 440px; }
    .cta-section__title { font-size: 44px; }
    .contact__inner { grid-template-columns: 1fr; }
    .footer__inner { grid-template-columns: 1fr 1fr 1fr; }
}

/* ===== RESPONSIVE — MOBILE ===== */
@media (max-width: 768px) {
    .navbar__menu, .navbar__cta { display: none; }
    .navbar__hamburger { display: flex; }
    .navbar__inner { padding: 0 16px; }

    .hero { min-height: 85vh; min-height: 600px; background-position: right center; }
    .hero__content { padding-left: 20px; padding-right: 20px; max-width: 100%; }
    .hero__title { font-size: 44px; }
    .hero__subtitle { font-size: 16px; }
    .hero__buttons { flex-direction: column; gap: 12px; }
    .hero__buttons .btn { text-align: center; width: 100%; }
    .hero__tag { font-size: 11px; letter-spacing: 2px; flex-wrap: wrap; justify-content: center; text-align: center; }
    .hero__tag-line { display: none; }
    .hero__tag-sep { display: none; }
    .hero__tag-loc { width: 100%; }
    .hero__tag-svc { width: 100%; }
    .hero__scroll-indicator { bottom: 24px; }

    .trust-bar__inner { flex-direction: column; }
    .trust-bar__item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.3); padding: 14px 20px; gap: 10px; }
    .trust-bar__item:last-child { border-bottom: none; }
    .trust-bar__item strong { font-size: 13px; }
    .trust-bar__item span { font-size: 12px; }

    .section-title { font-size: 32px; }
    .section-subtitle { font-size: 16px; }
    .section-header { margin-bottom: 36px; }

    .about { padding: 64px 0; }
    .about__inner { grid-template-columns: 1fr; gap: 40px; }
    .about__image-frame { display: none; }
    .about__link { display: none; }
    .about__text-full { display: none; }
    .about__text-mobile { display: block; }
    .about__image-frame::after { bottom: -16px; right: -16px; }
    .about__stats { gap: 24px; }
    .about__stat-number, .about__stat-plus { font-size: 36px; }

    .services { padding: 64px 0; }
    .services__grid { grid-template-columns: 1fr; }
    .service-card { min-height: 280px; }
    .service-card p { max-height: 0; opacity: 0; }
    .service-card.tapped p { max-height: 200px; opacity: 1; }
    .service-card__content { padding: 24px; }

    .before-after { padding: 64px 0; }
    .ba-grid { grid-template-columns: 1fr; }

    .process { padding: 48px 0 64px; }
    .process__grid { grid-template-columns: 1fr; }
    .process__card { padding: 24px; gap: 16px; }
    .process__number { font-size: 40px; }
    .process__card-body h3 { font-size: 20px; }

    .testimonials__scroll { height: 250vh; }
    .testimonials__sticky { gap: 28px; }
    .testimonials__stack { width: 100%; max-width: 95vw; height: 320px; }
    .testimonial-card { padding: 24px; }
    .testimonial-card blockquote { font-size: 14px; line-height: 1.6; }
    .testimonials__google-btn { padding: 10px 20px; }
    .testimonials__google-btn span { font-size: 13px; }

    .gallery { padding: 48px 0 64px; }
    .gallery__row-inner img { height: 160px; border-radius: 8px; }

    .cta-section { height: auto; padding: 64px 0; background-attachment: scroll; }
    .cta-section__title { font-size: 32px; }
    .cta-section__text { font-size: 16px; }
    .cta-section__buttons { flex-direction: column; gap: 12px; }
    .cta-section__buttons .btn { width: 100%; text-align: center; }

    .contact { padding: 48px 0; }
    .contact__inner { grid-template-columns: 1fr; gap: 32px; }
    .contact-form__row { grid-template-columns: 1fr; }
    .contact-info { padding: 24px; }

    .footer { padding: 48px 0 32px; }
    .footer__inner { grid-template-columns: 1fr; gap: 28px; }
    .footer__col--services, .footer__col--company { display: none; }
    .footer__col h4 { font-size: 13px; margin-bottom: 16px; }
}

/* ===== RESPONSIVE — SMALL MOBILE ===== */
@media (max-width: 480px) {
    .hero__title { font-size: 36px; }
    .hero__subtitle { font-size: 15px; }
    .section-title { font-size: 26px; }
    .section-subtitle { font-size: 15px; }
    .trust-bar__item { padding: 12px 16px; }
    .about__stat-number, .about__stat-plus { font-size: 30px; }
    .about__stats { flex-direction: column; gap: 16px; }
    .about__image-frame::after { display: none; }
    .service-card { min-height: 240px; }
    .service-card h3 { font-size: 20px; }
    .process__card { padding: 20px; gap: 14px; }
    .process__number { font-size: 32px; }
    .process__card-body h3 { font-size: 18px; }
    .process__card-body p { font-size: 14px; }
    .testimonials__stack { height: 300px; }
    .testimonial-card { padding: 20px; }
    .testimonial-card__stars { font-size: 14px; }
    .testimonial-card blockquote { font-size: 13px; }
    .testimonial-card__avatar { width: 36px; height: 36px; font-size: 15px; }
    .testimonial-card__author-info strong { font-size: 13px; }
    .gallery__row-inner img { height: 130px; }
    .cta-section__title { font-size: 28px; }
    .cta-section__text { font-size: 15px; margin-bottom: 24px; }
    .footer__inner { grid-template-columns: 1fr; gap: 28px; }
    .footer__bottom p { font-size: 12px; }
    .btn { padding: 14px 28px; font-size: 13px; }
}
