/* ===== CSS Variables & Reset ===== */
:root {
    --color-primary: #869D7A;
    --color-primary-light: #9db392;
    --color-primary-dark: #5f7255;
    --color-accent: #c9a87c;
    --color-accent-light: #dfc5a0;
    --color-bg: #faf8f4;
    --color-bg-alt: #f3efe8;
    --color-white: #fffdf9;
    --color-text: #3d3630;
    --color-text-light: #6b5f54;
    --color-text-muted: #9a8e82;
    --color-border: #e5ddd3;
    --color-star: #d4a55a;

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;

    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);

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

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

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

ul { list-style: none; }

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

/* ===== Scroll Animations ===== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }
.animate-on-scroll:nth-child(5) { transition-delay: 0.4s; }
.animate-on-scroll:nth-child(6) { transition-delay: 0.5s; }

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: all var(--transition);
}

.header--scrolled {
    background: rgba(255,255,255,0.95);
    box-shadow: var(--shadow-sm);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}

.nav__logo-icon {
    font-size: 28px;
}

.nav__logo-text {
    display: flex;
    flex-direction: column;
}

.nav__logo-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14px;
    color: var(--color-primary-dark);
    line-height: 1.2;
}

.nav__logo-owner {
    font-size: 11px;
    color: var(--color-text-muted);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav__link {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-light);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    position: relative;
}

.nav__link:hover {
    color: var(--color-primary);
    background: rgba(134, 157, 122, 0.06);
}

.nav__link--cta {
    background: var(--color-primary);
    color: var(--color-white) !important;
    padding: 10px 20px;
    border-radius: var(--radius-xl);
    font-weight: 600;
}

.nav__link--cta:hover {
    background: var(--color-primary-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(134, 157, 122, 0.3);
}

/* Mobile Nav Toggle */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: all var(--transition);
}

.nav__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.nav__toggle.active span:nth-child(2) {
    opacity: 0;
}
.nav__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== Hero ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3a4f38 0%, #5a7255 40%, #769468 100%);
    overflow: hidden;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(201,168,124,0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(134,157,122,0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(58,79,56,0.25) 0%, transparent 50%);
}

.hero__particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero__particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    animation: float-particle linear infinite;
}

@keyframes float-particle {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}

.hero__content {
    position: relative;
    text-align: center;
    color: var(--color-white);
    padding: 120px 24px 80px;
    max-width: 800px;
}

.hero__subtitle {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.8);
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero__title span {
    color: var(--color-accent);
    display: block;
    font-size: 0.7em;
    margin-top: 8px;
}

.hero__description {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255,255,255,0.85);
    max-width: 600px;
    margin: 0 auto 40px;
}

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

/* Hero Scroll Indicator */
.hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
}

.hero__scroll-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.6);
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color var(--transition);
}

.hero__scroll-link:hover { color: rgba(255,255,255,0.9); }

.hero__scroll-icon {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 12px;
    position: relative;
}

.hero__scroll-icon::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: rgba(255,255,255,0.6);
    border-radius: 2px;
    animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(12px); opacity: 0.3; }
}

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

.btn--primary {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

.btn--primary:hover {
    background: var(--color-primary-light);
    border-color: var(--color-primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(134, 157, 122, 0.35);
}

.btn--outline {
    background: transparent;
    color: var(--color-white);
    border-color: rgba(255,255,255,0.4);
}

.btn--outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.7);
    transform: translateY(-2px);
}

.btn--light {
    border-color: rgba(255,255,255,0.5);
}

.btn--large {
    padding: 18px 40px;
    font-size: 16px;
}

.btn--full {
    width: 100%;
    margin-top: 16px;
}

/* ===== Section ===== */
.section {
    padding: 100px 0;
}

.section--alt {
    background: var(--color-bg-alt);
}

.section__header {
    text-align: center;
    margin-bottom: 64px;
}

.section__tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-primary);
    background: rgba(134, 157, 122, 0.08);
    padding: 6px 18px;
    border-radius: var(--radius-xl);
    margin-bottom: 16px;
}

.section__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 16px;
}

.section__description {
    font-size: 17px;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== About ===== */
.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about__image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about__image-wrapper img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.about__image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: var(--color-accent);
    opacity: 0.15;
    border-radius: var(--radius-lg);
    z-index: -1;
}

.about__content h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--color-primary-dark);
}

.about__content p {
    color: var(--color-text-light);
    margin-bottom: 16px;
    font-size: 15px;
}

.about__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--color-border);
}

.about__stat {
    text-align: center;
}

.about__stat-number {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-primary);
    display: inline;
}

.about__stat span:last-of-type:not(.about__stat-number) {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-primary);
}

.about__stat-label {
    display: block;
    font-size: 13px;
    color: var(--color-text-muted);
    margin-top: 4px;
    font-weight: 500;
}

/* ===== Offer ===== */
.offer__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.offer__card {
    background: var(--color-white);
    padding: 40px 32px;
    border-radius: var(--radius-md);
    text-align: center;
    transition: all var(--transition);
    border: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
}

.offer__card[data-gallery-filter] {
    cursor: pointer;
}

.offer__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    transform: scaleX(0);
    transition: transform var(--transition);
}

.offer__card:hover::before {
    transform: scaleX(1);
}

.offer__card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.offer__card-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(134, 157, 122, 0.08);
    border-radius: 50%;
    color: var(--color-primary);
    transition: all var(--transition);
}

.offer__card:hover .offer__card-icon {
    background: var(--color-primary);
    color: var(--color-white);
    transform: scale(1.1);
}

.offer__card-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--color-text);
}

.offer__card-text {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ===== Gallery ===== */
.gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.gallery__photo-count {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(4px);
    color: rgba(255,255,255,0.9);
    font-size: 12px;
    font-weight: 500;
    padding: 3px 10px;
    border-radius: var(--radius-xl);
    margin-top: 4px;
}

.gallery__item {
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery__item.hidden {
    display: none;
}

.gallery__item.fade-in {
    animation: galleryFadeIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes galleryFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.gallery__item-inner {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.gallery__item-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery__item:hover .gallery__item-inner img {
    transform: scale(1.1);
}

.gallery__item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(58, 79, 56, 0.9) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity var(--transition);
}

.gallery__item:hover .gallery__item-overlay {
    opacity: 1;
}

.gallery__item-overlay h4 {
    color: var(--color-white);
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.gallery__item-overlay p {
    color: rgba(255,255,255,0.7);
    font-size: 13px;
}

/* ===== Reviews ===== */
.reviews__carousel-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 48px;
}

.reviews__carousel {
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.reviews__track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.reviews__card {
    min-width: 100%;
    padding: 48px 40px;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.reviews__stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 20px;
}

.reviews__stars span {
    color: var(--color-star);
    font-size: 22px;
}

.reviews__text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--color-text);
    font-style: italic;
    margin-bottom: 24px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.reviews__author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.reviews__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-primary);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.reviews__author strong {
    display: block;
    font-size: 15px;
    color: var(--color-text);
}

.reviews__author span {
    font-size: 13px;
    color: var(--color-text-muted);
}

.reviews__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--color-border);
    background: var(--color-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    color: var(--color-text);
    z-index: 2;
}

.reviews__arrow:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}

.reviews__arrow--prev { left: 0; }
.reviews__arrow--next { right: 0; }

.reviews__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.reviews__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-border);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
}

.reviews__dot.active {
    background: var(--color-primary);
    transform: scale(1.2);
}

.reviews__google {
    text-align: center;
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.reviews__google p {
    color: var(--color-text-muted);
    font-size: 14px;
}

.reviews__google-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--color-primary);
    padding: 8px 20px;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-xl);
    transition: all var(--transition);
}

.reviews__google-link:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-sm);
}

/* ===== CTA ===== */
.cta {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #3a4f38, #5a7255);
    overflow: hidden;
}

.cta__overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(201,168,124,0.08) 0%, transparent 60%);
}

.cta__content {
    position: relative;
    text-align: center;
    color: var(--color-white);
}

.cta__content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 16px;
}

.cta__content p {
    font-size: 17px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* ===== Contact ===== */
.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: start;
}

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

.contact__card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: var(--color-bg-alt);
    border-radius: var(--radius-md);
    transition: all var(--transition);
}

.contact__card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-sm);
}

.contact__card-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: var(--radius-sm);
}

.contact__card h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 4px;
}

.contact__card p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.6;
}

.contact__card a {
    color: var(--color-primary);
    font-weight: 600;
}

.contact__card a:hover {
    color: var(--color-primary-light);
}

.contact__map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 400px;
    box-shadow: var(--shadow-md);
}

.contact__map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

/* ===== Footer ===== */
.footer {
    background: var(--color-primary-dark);
    color: rgba(255,255,255,0.8);
    padding: 64px 0 32px;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer__logo .nav__logo-name {
    color: var(--color-white);
}

.footer__logo .nav__logo-owner {
    color: rgba(255,255,255,0.5);
}

.footer__about p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
}

.footer__links h4,
.footer__contact h4 {
    color: var(--color-white);
    font-size: 15px;
    margin-bottom: 16px;
}

.footer__links a {
    display: block;
    font-size: 14px;
    padding: 4px 0;
    color: rgba(255,255,255,0.6);
    transition: all var(--transition);
}

.footer__links a:hover {
    color: var(--color-white);
    transform: translateX(4px);
}

.footer__contact p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 8px;
}

.footer__contact a {
    color: var(--color-accent);
}

.footer__contact a:hover {
    color: var(--color-accent-light);
}

.footer__bottom {
    padding-top: 24px;
    text-align: center;
}

.footer__bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}

/* ===== Lightbox ===== */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0,0,0,0.92);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox__close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.3);
    background: transparent;
    color: white;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.lightbox__close:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
}

.lightbox__img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox.active .lightbox__img {
    transform: scale(1);
}

.lightbox__caption {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    font-family: var(--font-display);
    font-size: 1.2rem;
}

.lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.3);
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(4px);
    color: white;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    z-index: 10;
}

.lightbox__nav:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.6);
}

.lightbox__nav--prev { left: 24px; }
.lightbox__nav--next { right: 24px; }

.lightbox__counter {
    position: absolute;
    top: 28px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    font-family: var(--font-body);
}

/* ===== Mobile Responsive ===== */
@media (max-width: 1024px) {
    .offer__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery__grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .about__grid {
        gap: 40px;
    }
    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .footer__about {
        grid-column: 1 / -1;
    }
}

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

    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--color-white);
        flex-direction: column;
        align-items: stretch;
        padding: 100px 32px 40px;
        gap: 4px;
        transition: right var(--transition-slow);
        box-shadow: var(--shadow-xl);
    }

    .nav__menu.open {
        right: 0;
    }

    .nav__link {
        padding: 14px 16px;
        font-size: 16px;
        border-radius: var(--radius-sm);
    }

    .nav__link--cta {
        text-align: center;
        margin-top: 16px;
    }

    .hero__content {
        padding: 100px 16px 60px;
    }

    .section {
        padding: 72px 0;
    }

    .about__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about__stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .about__stat-number {
        font-size: 1.8rem;
    }

    .about__stat span:last-of-type:not(.about__stat-number) {
        font-size: 1.8rem;
    }

    .offer__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .offer__card {
        padding: 28px 24px;
    }

    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .reviews__carousel-wrapper {
        padding: 0 16px;
    }

    .reviews__card {
        padding: 32px 24px;
    }

    .reviews__arrow {
        width: 36px;
        height: 36px;
    }

    .reviews__arrow--prev { left: -4px; }
    .reviews__arrow--next { right: -4px; }

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

    .contact__map {
        min-height: 300px;
    }

    .contact__map iframe {
        min-height: 300px;
    }

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

    .footer__logo {
        justify-content: center;
    }

    .cta {
        padding: 72px 0;
    }

    .btn--large {
        padding: 16px 32px;
        font-size: 15px;
    }

    .hero__scroll { display: none; }
}

@media (max-width: 480px) {
    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .lightbox__nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    .lightbox__nav--prev { left: 12px; }
    .lightbox__nav--next { right: 12px; }

    .hero__buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero__buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    .cta__buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta__buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .about__stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .reviews__text {
        font-size: 15px;
    }
}

/* ===== Mobile menu overlay ===== */
.nav__overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}

.nav__overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* ===== Placeholder images ===== */
.gallery__item-inner img,
.about__image-wrapper img {
    background: linear-gradient(135deg, #e5ddd3 0%, #c9bda8 50%, #b5a78e 100%);
    min-height: 200px;
}
