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

:root {
    --emerald-900: #064e3b;
    --emerald-800: #065f46;
    --emerald-700: #047857;
    --emerald-600: #059669;
    --emerald-500: #10b981;
    --cream-50: #faf9f6;
    --cream-100: #f5f0e8;
    --cream-200: #ede6d8;
    --cream-300: #e0d5c0;
    --gold-400: #c9a84c;
    --gold-500: #b8943f;
    --text-dark: #1a1f1c;
    --text-mid: #3d4f45;
    --text-light: #6b7f73;
    --white: #ffffff;
    --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-sans: 'Lato', 'Helvetica Neue', Arial, sans-serif;
    --transition: 0.3s ease;
}

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.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--emerald-800);
    color: var(--white);
    padding: 8px 16px;
    z-index: 1000;
    border-radius: 4px;
    font-size: 0.875rem;
}
.skip-link:focus {
    top: 16px;
}

/* ── Header ── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(250, 249, 246, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
    border-bottom-color: var(--cream-200);
    box-shadow: 0 1px 20px rgba(6, 78, 59, 0.06);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--emerald-800);
    letter-spacing: 0.01em;
}
.logo:hover { color: var(--emerald-700); }

.logo-mark {
    font-size: 1.1rem;
    color: var(--gold-400);
    line-height: 1;
}

.main-nav ul {
    display: flex;
    gap: 36px;
}
.main-nav a {
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-mid);
    position: relative;
    transition: color var(--transition);
}
.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--emerald-600);
    transition: width var(--transition);
}
.main-nav a:hover { color: var(--emerald-700); }
.main-nav a:hover::after { width: 100%; }

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 36px;
    height: 36px;
    position: relative;
    padding: 0;
}
.hamburger {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 20px;
    height: 14px;
}
.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 1.5px;
    background: var(--emerald-800);
    transition: transform var(--transition), top var(--transition);
}
.hamburger::before { top: 0; }
.hamburger::after { bottom: 0; }
.nav-toggle[aria-expanded="true"] .hamburger::before {
    transform: rotate(45deg);
    top: 6px;
}
.nav-toggle[aria-expanded="true"] .hamburger::after {
    transform: rotate(-45deg);
    bottom: 6px;
}

/* ── Hero ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(
        145deg,
        #042f24 0%,
        #064e3b 20%,
        #07694d 40%,
        #0a8a5f 60%,
        #0d9e6e 80%,
        #12b07d 100%
    );
}
.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.hero-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse 80% 60% at 50% 50%,
        rgba(10, 138, 95, 0.4) 0%,
        transparent 70%
    );
}
.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 40px,
            rgba(255,255,255,0.5) 40px,
            rgba(255,255,255,0.5) 41px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 40px,
            rgba(255,255,255,0.5) 40px,
            rgba(255,255,255,0.5) 41px
        );
}

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

.hero-divider {
    width: 48px;
    height: 1.5px;
    background: var(--gold-400);
    margin: 0 auto 32px;
}

.hero-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-400);
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}
.hero-title em {
    font-style: italic;
    color: var(--cream-200);
}

.hero-subtitle {
    font-family: var(--font-sans);
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    max-width: 560px;
    margin: 0 auto 40px;
}

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

.hero-details {
    display: flex;
    justify-content: center;
}

.detail-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.03em;
}
.detail-item .icon {
    width: 14px;
    height: 14px;
    opacity: 0.7;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 14px 32px;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}
.btn-primary {
    background: var(--gold-400);
    color: var(--emerald-900);
}
.btn-primary:hover {
    background: var(--gold-500);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(201, 168, 76, 0.3);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.35);
}
.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}
.btn-full {
    width: 100%;
}

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

.section-header {
    margin-bottom: 64px;
}
.section-header.centered {
    text-align: center;
}

.section-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--emerald-600);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.section-subtitle {
    font-family: var(--font-sans);
    font-size: 1.0625rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-light);
    max-width: 560px;
}
.section-header.centered .section-subtitle {
    margin: 0 auto;
}

/* ── Intro / About ── */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.intro-image-wrapper {
    position: relative;
}
.intro-image-wrapper::before {
    content: '';
    position: absolute;
    top: -16px;
    left: -16px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--cream-300);
    z-index: -1;
}
.intro-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
}
.intro-text .section-title {
    margin-bottom: 24px;
}
.intro-text p {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--text-mid);
    margin-bottom: 16px;
}
.intro-text p:last-of-type {
    margin-bottom: 32px;
}

.intro-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 24px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--cream-200);
}
.value-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-dark);
}
.value-item .icon {
    width: 18px;
    height: 18px;
    color: var(--emerald-600);
    flex-shrink: 0;
}

/* ── Services ── */
.services {
    background: var(--cream-100);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    background: var(--white);
    border: 1px solid var(--cream-200);
    border-radius: 2px;
    padding: 40px 32px;
    transition: all var(--transition);
}
.service-card:hover {
    border-color: var(--emerald-200, #a7f3d0);
    box-shadow: 0 8px 32px rgba(6, 78, 59, 0.08);
    transform: translateY(-2px);
}
.service-icon {
    width: 48px;
    height: 48px;
    color: var(--emerald-700);
    margin-bottom: 24px;
}
.service-icon svg {
    width: 100%;
    height: 100%;
}
.service-name {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}
.service-card p {
    font-size: 0.9375rem;
    line-height: 1.75;
    color: var(--text-light);
}

/* ── Gallery ── */
.gallery-section {
    background: var(--cream-50);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.gallery-item {
    overflow: hidden;
    border-radius: 2px;
    aspect-ratio: auto;
}
.gallery-item:nth-child(1),
.gallery-item:nth-child(3),
.gallery-item:nth-child(5) {
    aspect-ratio: 4/5;
}
.gallery-item:nth-child(2),
.gallery-item:nth-child(4),
.gallery-item:nth-child(6) {
    aspect-ratio: 1;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.gallery-item:hover img {
    transform: scale(1.04);
}

/* ── CTA Band ── */
.cta-band {
    background: linear-gradient(135deg, var(--emerald-900) 0%, var(--emerald-700) 100%);
    padding: 56px 0;
    text-align: center;
}
.cta-band-text {
    font-family: var(--font-serif);
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    font-weight: 400;
    font-style: italic;
    color: var(--cream-100);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ── Contact ── */
.contact {
    background: var(--cream-50);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.contact-info .section-title {
    margin-bottom: 16px;
}
.contact-intro {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 36px;
}
.contact-details {
    margin-bottom: 32px;
}
.contact-details li {
    display: grid;
    grid-template-columns: max-content 1fr;
    gap: 8px 20px;
    padding: 16px 0;
    border-bottom: 1px solid var(--cream-200);
}
.detail-label {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--emerald-700);
    padding-top: 3px;
}
.detail-value {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
}
.detail-link {
    font-size: 1rem;
    color: var(--text-dark);
    transition: color var(--transition);
    border-bottom: 1px solid transparent;
}
.detail-link:hover {
    color: var(--emerald-700);
    border-bottom-color: var(--emerald-700);
}
.map-wrapper {
    border-radius: 2px;
    overflow: hidden;
    border: 1px solid var(--cream-200);
}

/* ── Contact Form ── */
.contact-form-wrapper {
    background: var(--white);
    border: 1px solid var(--cream-200);
    border-radius: 2px;
    padding: 40px;
}
.form-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 28px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-mid);
    margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    color: var(--text-dark);
    background: var(--cream-50);
    border: 1px solid var(--cream-300);
    border-radius: 2px;
    padding: 12px 14px;
    transition: border-color var(--transition), box-shadow var(--transition);
    -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--emerald-600);
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}
.form-note {
    font-size: 0.8125rem;
    color: var(--text-light);
    margin-top: 12px;
    text-align: center;
}

.form-success {
    text-align: center;
    padding: 32px 16px;
}
.success-icon {
    width: 48px;
    height: 48px;
    color: var(--emerald-600);
    margin: 0 auto 16px;
}
.form-success h4 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}
.form-success p {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ── Footer ── */
.site-footer {
    background: var(--emerald-900);
    color: var(--cream-200);
    padding: 64px 0 0;
}
.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-brand .logo-mark {
    font-size: 1.25rem;
    color: var(--gold-400);
}
.footer-brand .logo-text {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--cream-100);
}
.footer-tagline {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(237, 230, 216, 0.6);
    max-width: 280px;
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-links a {
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    color: rgba(237, 230, 216, 0.7);
    transition: color var(--transition);
}
.footer-links a:hover { color: var(--cream-100); }
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer-contact p {
    font-size: 0.9375rem;
    color: rgba(237, 230, 216, 0.6);
    line-height: 1.6;
}
.footer-contact a {
    color: rgba(237, 230, 216, 0.6);
    transition: color var(--transition);
}
.footer-contact a:hover { color: var(--cream-100); }

.footer-bottom {
    padding: 24px 0;
    text-align: center;
}
.footer-bottom p {
    font-size: 0.8125rem;
    color: rgba(237, 230, 216, 0.35);
    letter-spacing: 0.03em;
}

/* ── Scroll to top ── */
.scroll-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 44px;
    height: 44px;
    background: var(--emerald-800);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all var(--transition);
    z-index: 50;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}
.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.scroll-top:hover {
    background: var(--emerald-700);
}
.scroll-top svg {
    width: 18px;
    height: 18px;
}

/* ── Icon utility ── */
.icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .intro-grid {
        gap: 40px;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-grid {
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    .main-nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(250, 249, 246, 0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-bottom: 1px solid var(--cream-200);
        padding: 24px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.35s ease;
    }
    .main-nav.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }
    .main-nav li {
        border-bottom: 1px solid var(--cream-200);
    }
    .main-nav li:last-child {
        border-bottom: none;
    }
    .main-nav a {
        display: block;
        padding: 16px 0;
        font-size: 0.9375rem;
    }
    .main-nav a::after { display: none; }

    .hero-content {
        padding: 100px 24px 64px;
    }

    .section {
        padding: 72px 0;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .intro-image-wrapper {
        max-width: 400px;
        margin: 0 auto;
    }
    .intro-image-wrapper::before {
        top: -10px;
        left: -10px;
    }
    .intro-values {
        grid-template-columns: 1fr;
    }

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

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .gallery-item:nth-child(1),
    .gallery-item:nth-child(3),
    .gallery-item:nth-child(5),
    .gallery-item:nth-child(2),
    .gallery-item:nth-child(4),
    .gallery-item:nth-child(6) {
        aspect-ratio: 1;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-form-wrapper {
        padding: 28px;
    }

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

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    .btn {
        width: 100%;
        justify-content: center;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

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