:root {
    --emerald-950: #022c22;
    --emerald-900: #064e3b;
    --emerald-800: #065f46;
    --emerald-700: #047857;
    --emerald-600: #059669;
    --emerald-500: #10b981;
    --cream-50: #faf9f6;
    --cream-100: #f5f0e8;
    --cream-200: #ede5d5;
    --cream-300: #e0d5c0;
    --gold-400: #d4a853;
    --gold-500: #c49a3e;
    --gold-600: #b08830;
    --text-dark: #1a1a1a;
    --text-medium: #3d3d3d;
    --text-light: #6b6b6b;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Lato', system-ui, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    background-color: var(--cream-50);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

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

/* ─── NAVBAR ─── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 249, 246, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
    border-bottom-color: var(--cream-200);
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
    color: var(--emerald-900);
}

.logo-icon {
    font-size: 14px;
    color: var(--gold-500);
    line-height: 1;
    margin-bottom: 2px;
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-link {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-medium);
    transition: color 0.25s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold-500);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--emerald-800);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--cream-50);
    background: var(--emerald-800);
    padding: 10px 22px;
    border-radius: 2px;
    transition: background 0.25s ease, transform 0.2s ease;
}

.nav-cta:hover {
    background: var(--emerald-700);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--emerald-900);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ─── HERO ─── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: url('https://images.pexels.com/photos/7195810/pexels-photo-7195810.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1080') center center / cover no-repeat;
    background-color: var(--emerald-950);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(2, 44, 34, 0.88) 0%,
        rgba(6, 78, 59, 0.82) 50%,
        rgba(4, 50, 40, 0.90) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 120px 24px 80px;
}

.hero-tagline {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold-400);
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--cream-50);
    margin-bottom: 24px;
}

.hero-title .accent {
    font-style: italic;
    color: var(--gold-400);
    font-weight: 300;
}

.hero-subtitle {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(250, 249, 246, 0.8);
    max-width: 560px;
    margin: 0 auto 40px;
}

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

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(250, 249, 246, 0.5);
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* ─── BUTTONS ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 16px 32px;
    border-radius: 2px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: var(--gold-500);
    color: var(--emerald-950);
}

.btn-primary:hover {
    background: var(--gold-400);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 168, 83, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--cream-50);
    border: 1px solid rgba(250, 249, 246, 0.4);
}

.btn-secondary:hover {
    border-color: var(--cream-50);
    background: rgba(250, 249, 246, 0.1);
}

.btn-large {
    padding: 20px 40px;
    font-size: 14px;
}

.btn-outline {
    background: transparent;
    color: var(--emerald-800);
    border: 1px solid var(--emerald-800);
}

.btn-outline:hover {
    background: var(--emerald-800);
    color: var(--cream-50);
}

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

/* ─── SECTION COMMON ─── */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-500);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--emerald-900);
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-400), var(--gold-500));
    margin: 0 auto 20px;
}

.section-subtitle {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--text-light);
    max-width: 500px;
    margin: 0 auto;
}

/* ─── SERVICES ─── */
.services {
    padding: 100px 0;
    background: var(--cream-50);
}

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

.service-card {
    background: var(--cream-100);
    padding: 40px 32px;
    border-radius: 4px;
    border: 1px solid var(--cream-200);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(6, 78, 59, 0.1);
    border-color: var(--emerald-200);
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--emerald-800);
    border-radius: 50%;
    margin-bottom: 24px;
    color: var(--gold-400);
}

.service-card h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--emerald-900);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-medium);
}

/* ─── ABOUT ─── */
.about {
    padding: 100px 0;
    background: var(--cream-100);
}

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

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

.about-image {
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

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

.about-accent {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--gold-400);
    border-radius: 4px;
    z-index: 0;
}

.about-content .section-tag {
    text-align: left;
}

.about-content .section-title {
    text-align: left;
}

.about-content .section-divider {
    margin: 0 0 24px 0;
}

.about-content p {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 16px;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--cream-200);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 600;
    color: var(--emerald-800);
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-light);
}

/* ─── GALLERY ─── */
.gallery {
    padding: 100px 0;
    background: var(--cream-50);
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
}

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

.gallery-item.tall {
    grid-row: span 2;
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(2, 44, 34, 0.8) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--cream-50);
    font-style: italic;
}

/* ─── TESTIMONIALS ─── */
.testimonials {
    padding: 100px 0;
    background: var(--emerald-900);
}

.testimonials .section-tag {
    color: var(--gold-400);
}

.testimonials .section-title {
    color: var(--cream-50);
}

.testimonials .section-divider {
    margin-bottom: 48px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-card {
    background: rgba(250, 249, 246, 0.06);
    border: 1px solid rgba(250, 249, 246, 0.1);
    border-radius: 4px;
    padding: 40px 32px;
    position: relative;
}

.testimonial-quote {
    font-family: var(--font-serif);
    font-size: 4rem;
    line-height: 1;
    color: var(--gold-400);
    position: absolute;
    top: 16px;
    left: 24px;
}

.testimonial-card p {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(250, 249, 246, 0.85);
    margin-bottom: 24px;
    padding-top: 24px;
}

.testimonial-card footer {
    border-top: 1px solid rgba(250, 249, 246, 0.1);
    padding-top: 20px;
}

.testimonial-name {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-style: italic;
    color: var(--gold-400);
}

/* ─── CTA BANNER ─── */
.cta-banner {
    position: relative;
    padding: 100px 0;
    background: url('https://images.pexels.com/photos/8834029/pexels-photo-8834029.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=600') center center / cover no-repeat;
    background-color: var(--emerald-900);
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(2, 44, 34, 0.92) 0%, rgba(6, 78, 59, 0.88) 100%);
}

.cta-banner .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-tagline {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-400);
    margin-bottom: 16px;
}

.cta-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 400;
    color: var(--cream-50);
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(250, 249, 246, 0.75);
    margin-bottom: 40px;
}

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

/* ─── CONTACT ─── */
.contact {
    padding: 100px 0;
    background: var(--cream-100);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}

.contact-info .section-tag {
    text-align: left;
}

.contact-info .section-title {
    text-align: left;
}

.contact-info .section-divider {
    margin: 0 0 24px 0;
}

.contact-intro {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--emerald-800);
    border-radius: 50%;
    color: var(--gold-400);
    flex-shrink: 0;
}

.contact-item .contact-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 4px;
}

.contact-item span,
.contact-item a {
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-dark);
}

.contact-item a:hover {
    color: var(--emerald-700);
}

/* ─── FORM ─── */
.contact-form-wrapper {
    background: var(--cream-50);
    padding: 40px;
    border-radius: 4px;
    border: 1px solid var(--cream-200);
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text-dark);
    background: var(--cream-100);
    border: 1px solid var(--cream-200);
    border-radius: 2px;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.form-input:focus {
    border-color: var(--emerald-600);
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

.form-input::placeholder {
    color: var(--cream-300);
}

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

.form-success {
    display: none;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--emerald-800);
    color: var(--cream-50);
    border-radius: 2px;
    font-size: 0.95rem;
    font-weight: 300;
    margin-top: 16px;
}

.form-success.show {
    display: flex;
}

/* ─── FOOTER ─── */
.footer {
    background: var(--emerald-950);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(250, 249, 246, 0.08);
}

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

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 16px;
    color: var(--cream-50);
}

.footer-logo .logo-icon {
    color: var(--gold-400);
    font-size: 14px;
    line-height: 1;
    margin-bottom: 2px;
}

.footer-logo .logo-text {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
}

.footer-brand p {
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(250, 249, 246, 0.55);
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-400);
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(250, 249, 246, 0.6);
    transition: color 0.25s ease;
}

.footer-links a:hover {
    color: var(--cream-50);
}

.footer-contact p {
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(250, 249, 246, 0.55);
    line-height: 1.7;
    margin-bottom: 4px;
}

.footer-contact a {
    color: rgba(250, 249, 246, 0.55);
    transition: color 0.25s ease;
}

.footer-contact a:hover {
    color: var(--gold-400);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.8rem;
    font-weight: 300;
    color: rgba(250, 249, 246, 0.35);
}

/* ─── MOBILE ─── */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonials-grid .testimonial-card:last-child {
        grid-column: span 2;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--cream-50);
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.4s ease;
        border-bottom: 1px solid transparent;
    }
    .nav-menu.open {
        max-height: 400px;
        padding: 24px 0;
        border-bottom-color: var(--cream-200);
    }
    .nav-menu li {
        width: 100%;
        text-align: center;
    }
    .nav-link {
        display: block;
        padding: 14px 24px;
        font-size: 15px;
    }
    .nav-link::after {
        display: none;
    }
    .nav-cta {
        margin-top: 8px;
    }
    .nav-toggle.active .hamburger:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .nav-toggle.active .hamburger:nth-child(2) {
        opacity: 0;
    }
    .nav-toggle.active .hamburger:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero {
        min-height: 100svh;
    }
    .hero-content {
        padding: 100px 24px 60px;
    }
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    .hero-actions .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

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

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-content .section-tag,
    .about-content .section-title {
        text-align: center;
    }
    .about-content .section-divider {
        margin: 0 auto 24px;
    }
    .about-content p {
        text-align: center;
    }
    .about-stats {
        justify-content: center;
    }

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

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .testimonials-grid .testimonial-card:last-child {
        grid-column: span 1;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    .cta-actions .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .contact-info .section-tag,
    .contact-info .section-title {
        text-align: center;
    }
    .contact-info .section-divider {
        margin: 0 auto 24px;
    }
    .contact-intro {
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-brand {
        max-width: 100%;
    }
    .footer-logo {
        align-items: center;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .contact-form-wrapper {
        padding: 24px;
    }
    .about-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
}
