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

:root {
    --emerald-900: #064e3b;
    --emerald-800: #065f46;
    --emerald-700: #047857;
    --emerald-600: #059669;
    --cream: #faf8f5;
    --cream-dark: #f3efe9;
    --cream-mid: #ede8e0;
    --text-dark: #1a1a1a;
    --text-mid: #4a4a4a;
    --text-light: #7a7a7a;
    --white: #ffffff;
    --font-sans: 'Instrument Sans', system-ui, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--cream);
    overflow-x: hidden;
}

.grain-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 128px 128px;
}

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

/* ─── Header ─── */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 248, 245, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(6, 78, 59, 0.07);
    transition: box-shadow 0.4s var(--ease-out);
}

.header.scrolled {
    box-shadow: 0 1px 20px rgba(6, 78, 59, 0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 32px;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 500;
    color: var(--emerald-900);
    letter-spacing: -0.01em;
}

.nav {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.nav-link {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-mid);
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 100px;
    transition: color 0.25s, background 0.25s;
}

.nav-link:hover {
    color: var(--emerald-800);
    background: rgba(6, 78, 59, 0.06);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    white-space: nowrap;
}

.btn--sm {
    padding: 9px 18px;
    font-size: 12px;
}

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

.btn--primary:hover {
    background: var(--emerald-700);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(6, 78, 59, 0.25);
}

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

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

.btn--ghost {
    background: transparent;
    color: var(--text-mid);
    border: 1px solid rgba(26, 26, 26, 0.15);
}

.btn--ghost:hover {
    border-color: var(--emerald-800);
    color: var(--emerald-800);
}

.btn--white {
    background: var(--white);
    color: var(--emerald-900);
}

.btn--white:hover {
    background: var(--cream);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.btn--ghost-light {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn--ghost-light:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.btn--full {
    width: 100%;
    justify-content: center;
    padding: 14px 28px;
}

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

.menu-toggle span {
    display: block;
    width: 20px;
    height: 1.5px;
    background: var(--text-dark);
    transition: all 0.3s var(--ease-out);
    transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

/* ─── Hero ─── */
.hero {
    padding-top: 120px;
    padding-bottom: 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--emerald-700);
    margin-bottom: 28px;
}

.eyebrow-line {
    width: 32px;
    height: 1px;
    background: var(--emerald-600);
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(36px, 4.5vw, 58px);
    font-weight: 400;
    line-height: 1.15;
    color: var(--text-dark);
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.hero-headline em {
    font-style: italic;
    color: var(--emerald-700);
}

.hero-desc {
    font-size: 17px;
    line-height: 1.75;
    color: var(--text-mid);
    max-width: 460px;
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    min-height: 480px;
}

.hero-card--main {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(6, 78, 59, 0.12);
}

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

.stat-card {
    position: absolute;
    background: var(--white);
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07), 0 1px 3px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(6, 78, 59, 0.06);
}

.stat-card--1 {
    bottom: 40px;
    left: -30px;
}

.stat-card--2 {
    top: 30px;
    right: -20px;
}

.stat-card--3 {
    bottom: -10px;
    right: 30px;
}

.stat-label {
    display: block;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 4px;
}

.stat-value {
    font-size: 14px;
    font-weight: 500;
    color: var(--emerald-800);
    letter-spacing: -0.01em;
}

/* ─── Divider ─── */
.divider-line {
    padding: 0;
}

.divider-line .container {
    padding: 0 24px;
}

.divider-line div {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(6, 78, 59, 0.15), transparent);
}

/* ─── Section shared ─── */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px;
}

.section-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--emerald-700);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 400;
    line-height: 1.2;
    color: var(--text-dark);
    letter-spacing: -0.02em;
    margin-bottom: 18px;
}

.section-desc {
    font-size: 16px;
    color: var(--text-mid);
    line-height: 1.75;
}

/* ─── Services ─── */
.services {
    padding: 100px 0;
}

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

.service-card {
    background: var(--white);
    border-radius: 14px;
    padding: 36px 30px;
    border: 1px solid rgba(6, 78, 59, 0.06);
    transition: all 0.35s var(--ease-out);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(6, 78, 59, 0.08);
    border-color: rgba(6, 78, 59, 0.12);
}

.service-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(6, 78, 59, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald-700);
    margin-bottom: 22px;
    transition: background 0.3s;
}

.service-card:hover .service-icon {
    background: var(--emerald-800);
    color: var(--white);
}

.service-title {
    font-family: var(--font-serif);
    font-size: 19px;
    font-weight: 500;
    color: var(--text-dark);
    letter-spacing: -0.01em;
    margin-bottom: 10px;
}

.service-desc {
    font-size: 14px;
    line-height: 1.75;
    color: var(--text-mid);
}

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

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

.about-images {
    position: relative;
    min-height: 520px;
}

.about-img-main {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(6, 78, 59, 0.1);
}

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

.about-img-accent {
    position: absolute;
    bottom: -30px;
    right: -20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
    border: 4px solid var(--cream-dark);
}

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

.about-accent-box {
    position: absolute;
    top: -20px;
    right: 40px;
    background: var(--emerald-800);
    border-radius: 12px;
    padding: 18px 22px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    box-shadow: 0 8px 24px rgba(6, 78, 59, 0.25);
}

.accent-label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

.accent-value {
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
}

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

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

.about-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-mid);
    margin-bottom: 16px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
    margin-top: 32px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-dark);
}

/* ─── Gallery ─── */
.gallery {
    padding: 100px 0;
}

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

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

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

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

/* ─── CTA ─── */
.cta-section {
    padding: 80px 0;
}

.cta-card {
    background: var(--emerald-900);
    border-radius: 20px;
    padding: 72px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(255,255,255,0.04) 0%, transparent 70%);
    pointer-events: none;
}

.cta-eyebrow {
    color: rgba(255, 255, 255, 0.5);
}

.cta-title {
    font-family: var(--font-serif);
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 400;
    line-height: 1.2;
    color: var(--white);
    letter-spacing: -0.02em;
    margin-bottom: 18px;
}

.cta-desc {
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.65);
    max-width: 500px;
    margin: 0 auto 36px;
}

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

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

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

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

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

.contact-desc {
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-mid);
    margin-bottom: 36px;
}

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

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

.contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(6, 78, 59, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.contact-value {
    display: block;
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.5;
}

.contact-value a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.2s;
}

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

.map-wrap {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.contact-form-wrap {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid rgba(6, 78, 59, 0.06);
}

.form-title {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 500;
    color: var(--text-dark);
    letter-spacing: -0.01em;
    margin-bottom: 8px;
}

.form-desc {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 28px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 16px;
}

.form-group label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-light);
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 400;
    color: var(--text-dark);
    background: var(--cream);
    border: 1px solid rgba(6, 78, 59, 0.1);
    border-radius: 8px;
    padding: 12px 14px;
    outline: none;
    transition: border-color 0.25s, box-shadow 0.25s;
    -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--emerald-600);
    box-shadow: 0 0 0 3px rgba(6, 78, 59, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

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

.form-group select {
    cursor: pointer;
}

.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 48px 24px;
    gap: 12px;
}

.form-success svg {
    opacity: 0.6;
}

.form-success h4 {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 500;
    color: var(--emerald-800);
}

.form-success p {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.6;
}

/* ─── Footer ─── */
.footer {
    background: var(--emerald-900);
    padding: 56px 0 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 48px;
    align-items: start;
    padding-bottom: 48px;
}

.footer-brand .logo-text {
    color: var(--white);
}

.footer-tagline {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
    margin-top: 12px;
    max-width: 260px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.2s;
}

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

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-phone,
.footer-email {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-phone:hover,
.footer-email:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
}

/* ─── Reveal ─── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
    .hero-grid {
        gap: 40px;
    }

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

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

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

    .nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(250, 248, 245, 0.97);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        flex-direction: column;
        padding: 24px;
        gap: 4px;
        border-bottom: 1px solid rgba(6, 78, 59, 0.07);
        transform: translateY(-110%);
        opacity: 0;
        transition: transform 0.4s var(--ease-out), opacity 0.4s var(--ease-out);
        pointer-events: none;
    }

    .nav.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-link {
        width: 100%;
        padding: 12px 16px;
    }

    .header .btn--outline {
        display: none;
    }

    .hero {
        padding-top: 100px;
        padding-bottom: 60px;
        min-height: auto;
    }

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

    .hero-visual {
        min-height: 320px;
        order: -1;
    }

    .stat-card--1 {
        left: 10px;
        bottom: 20px;
    }

    .stat-card--2 {
        right: 10px;
        top: 10px;
    }

    .stat-card--3 {
        right: 10px;
        bottom: 0;
    }

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

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

    .about-images {
        min-height: 360px;
    }

    .about-content .section-title,
    .about-content .section-eyebrow {
        text-align: center;
    }

    .about-text {
        text-align: center;
    }

    .about-features {
        justify-content: center;
    }

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

    .cta-card {
        padding: 48px 28px;
    }

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

    .contact-info .section-title,
    .contact-info .section-eyebrow {
        text-align: center;
    }

    .contact-desc {
        text-align: center;
    }

    .contact-details {
        align-items: center;
    }

    .contact-detail {
        width: 100%;
    }

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

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

    .footer-tagline {
        margin: 12px auto 0;
    }
}

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

    .hero-headline {
        font-size: 30px;
    }

    .hero-actions {
        flex-direction: column;
    }

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

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

    .contact-form-wrap {
        padding: 28px 22px;
    }
}
