/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --teal-900: #0d3b3e;
    --teal-800: #145a5e;
    --teal-700: #1a7a7e;
    --teal-600: #219a9e;
    --teal-500: #2bb5b9;
    --teal-400: #5ccfc3;
    --teal-100: #d4f0ee;
    --teal-50:  #eaf8f7;
    --slate-950: #0a0f14;
    --slate-900: #0f1a21;
    --slate-800: #1a2733;
    --slate-700: #253544;
    --slate-600: #3a4f63;
    --slate-500: #526d85;
    --slate-400: #7a95a9;
    --slate-300: #a8becb;
    --slate-200: #cdd9e2;
    --slate-100: #e8eef3;
    --slate-50:  #f4f7fa;
    --white: #ffffff;
    --cream: #fafbfc;

    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

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

    --shadow-sm: 0 1px 3px rgba(10,15,20,0.08), 0 1px 2px rgba(10,15,20,0.06);
    --shadow-md: 0 4px 16px rgba(10,15,20,0.1), 0 2px 4px rgba(10,15,20,0.06);
    --shadow-lg: 0 12px 40px rgba(10,15,20,0.12), 0 4px 12px rgba(10,15,20,0.08);
    --shadow-xl: 0 24px 60px rgba(10,15,20,0.15), 0 8px 20px rgba(10,15,20,0.1);

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

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

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--slate-800);
    background: var(--white);
    overflow-x: hidden;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

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

.header.scrolled {
    box-shadow: var(--shadow-sm);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--teal-900);
    letter-spacing: -0.02em;
}

.logo-mark {
    font-size: 0.9rem;
    color: var(--teal-600);
    line-height: 1;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    list-style: none;
}

.nav-menu a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--slate-600);
    transition: color var(--transition);
    letter-spacing: 0.01em;
}

.nav-menu a:hover {
    color: var(--teal-700);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
}

.hamburger {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--slate-700);
    border-radius: 2px;
    transition: var(--transition);
    transform-origin: center;
}

.hamburger::before,
.hamburger::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: var(--slate-700);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger::before { transform: translateY(-5px); }
.hamburger::after  { transform: translateY(5px); }

.nav-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
    transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
    transform: rotate(-45deg);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.6rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn--primary {
    background: var(--teal-700);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(26,122,126,0.3);
}

.btn--primary:hover {
    background: var(--teal-800);
    box-shadow: 0 6px 24px rgba(26,122,126,0.4);
    transform: translateY(-1px);
}

.btn--sm {
    padding: 0.55rem 1.2rem;
    font-size: 0.8rem;
}

.btn--ghost {
    background: transparent;
    color: var(--slate-700);
    border: 1.5px solid var(--slate-200);
}

.btn--ghost:hover {
    border-color: var(--teal-500);
    color: var(--teal-700);
    background: var(--teal-50);
}

.btn--light {
    background: var(--white);
    color: var(--teal-900);
    box-shadow: var(--shadow-md);
}

.btn--light:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

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

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

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-top: 72px;
    background: var(--cream);
    overflow: hidden;
}

.hero-inner {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-3xl) var(--space-xl);
}

.hero-content {
    max-width: 520px;
}

.hero-eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--teal-600);
    margin-bottom: var(--space-lg);
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.08;
    color: var(--slate-950);
    letter-spacing: -0.03em;
    margin-bottom: var(--space-xl);
}

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

.hero-desc {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--slate-500);
    margin-bottom: var(--space-2xl);
    max-width: 440px;
}

.hero-actions {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin-bottom: var(--space-2xl);
}

.hero-trust {
    display: flex;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--slate-500);
}

.trust-item svg {
    color: var(--teal-500);
    flex-shrink: 0;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.hero-img-wrapper {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 680/860;
    max-height: 82vh;
}

.hero-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-badge {
    position: absolute;
    bottom: var(--space-2xl);
    left: -2rem;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 1rem 1.4rem;
    box-shadow: var(--shadow-lg);
}

.badge-label {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--slate-800);
    font-style: italic;
}

.hero-divider {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.divider-line {
    display: block;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--slate-200), transparent);
}

/* ===== SECTION COMMON ===== */
.section-header {
    max-width: 680px;
}

.section-header--center {
    text-align: center;
    margin: 0 auto var(--space-3xl);
}

.section-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--teal-600);
    margin-bottom: var(--space-sm);
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.12;
    color: var(--slate-950);
    letter-spacing: -0.025em;
    margin-bottom: var(--space-lg);
}

.section-title em {
    font-style: italic;
    color: var(--teal-700);
}

.section-desc {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--slate-500);
    max-width: 560px;
}

/* ===== SERVICES ===== */
.services {
    padding: var(--space-4xl) 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-3xl);
}

.service-card {
    background: var(--slate-50);
    border: 1px solid var(--slate-100);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    transition: all var(--transition);
}

.service-card:hover {
    background: var(--white);
    border-color: var(--teal-200);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: var(--teal-50);
    color: var(--teal-700);
    margin-bottom: var(--space-lg);
    transition: all var(--transition);
}

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

.service-title {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--slate-900);
    letter-spacing: -0.01em;
    margin-bottom: 0.5rem;
}

.service-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--slate-500);
}

/* ===== ABOUT ===== */
.about {
    padding: var(--space-4xl) 0;
    background: var(--slate-950);
    color: var(--white);
    overflow: hidden;
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

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

.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 560/700;
}

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

.about-img-accent {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--slate-900);
    aspect-ratio: 400/300;
    max-width: 280px;
}

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

.about-stat {
    position: absolute;
    top: -1.5rem;
    right: 2rem;
    background: var(--teal-700);
    border-radius: var(--radius-md);
    padding: 1.2rem 1.6rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.01em;
}

.stat-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
}

.about-content {
    color: var(--white);
}

.about-content .section-eyebrow {
    color: var(--teal-400);
}

.about-content .section-title {
    color: var(--white);
}

.about-content .section-title em {
    color: var(--teal-400);
}

.about-body {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--slate-400);
    margin-bottom: var(--space-lg);
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin: var(--space-2xl) 0 var(--space-2xl);
}

.value-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.value-mark {
    color: var(--teal-400);
    font-size: 0.7rem;
    flex-shrink: 0;
}

.value-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--slate-200);
}

.about-content .btn--primary {
    background: var(--teal-500);
}

.about-content .btn--primary:hover {
    background: var(--teal-400);
}

/* ===== GALLERY ===== */
.gallery {
    padding: var(--space-4xl) 0;
    background: var(--cream);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: var(--space-md);
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.gallery-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.gallery-item--tall {
    grid-column: span 5;
    aspect-ratio: 480/640;
}

.gallery-item--wide {
    grid-column: span 7;
    aspect-ratio: 960/300;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

/* ===== CTA BANNER ===== */
.cta-banner {
    padding: var(--space-4xl) 0;
    background: linear-gradient(135deg, var(--teal-900) 0%, var(--teal-700) 100%);
    color: var(--white);
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-2xl);
    flex-wrap: wrap;
}

.cta-text {
    flex: 1;
    min-width: 280px;
}

.cta-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--teal-300);
    margin-bottom: var(--space-sm);
}

.cta-headline {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.12;
    color: var(--white);
    letter-spacing: -0.025em;
}

.cta-headline em {
    font-style: italic;
    color: var(--teal-200);
}

.cta-actions {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

/* ===== VISIT ===== */
.visit {
    padding: var(--space-4xl) 0;
    background: var(--white);
}

.visit-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: start;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    margin: var(--space-2xl) 0 var(--space-2xl);
}

.contact-item {
    display: flex;
    gap: var(--space-lg);
    align-items: flex-start;
}

.contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: var(--teal-50);
    color: var(--teal-700);
    flex-shrink: 0;
}

.contact-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--slate-400);
    margin-bottom: 0.2rem;
}

.contact-value {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--slate-700);
}

.contact-value a {
    color: var(--teal-700);
    transition: color var(--transition);
}

.contact-value a:hover {
    color: var(--teal-500);
}

.visit-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3;
    min-height: 360px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--slate-950);
    color: var(--slate-400);
    padding: var(--space-2xl) 0;
}

.footer-inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.footer-brand .logo-mark {
    color: var(--teal-500);
}

.footer-copy {
    font-size: 0.85rem;
    color: var(--slate-500);
}

.footer-copy a {
    color: var(--teal-400);
    transition: color var(--transition);
}

.footer-copy a:hover {
    color: var(--teal-300);
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ===== MOBILE NAV OVERLAY ===== */
.nav-menu.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: var(--space-3xl) var(--space-xl);
    gap: var(--space-lg);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
}

.nav-menu.mobile-open a {
    font-size: 1.2rem;
    color: var(--slate-700);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        order: 1;
    }

    .hero-desc {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

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

    .hero-trust {
        justify-content: center;
    }

    .hero-image {
        order: 0;
        justify-content: center;
    }

    .hero-img-wrapper {
        max-height: 50vh;
        aspect-ratio: auto;
        width: 100%;
        max-width: 480px;
    }

    .hero-badge {
        left: 50%;
        transform: translateX(-50%);
        bottom: -1.5rem;
    }

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

    .about-layout {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }

    .about-image-group {
        max-width: 500px;
        margin: 0 auto;
    }

    .gallery-item--tall,
    .gallery-item--wide {
        grid-column: span 6;
    }

    .visit-layout {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
}

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

    .nav-menu {
        display: none;
    }

    .hero {
        min-height: auto;
        padding-top: 72px;
        padding-bottom: var(--space-2xl);
    }

    .hero-inner {
        padding: var(--space-xl);
    }

    .hero-headline {
        font-size: clamp(2.2rem, 10vw, 3rem);
    }

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

    .about-values {
        grid-template-columns: 1fr;
    }

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

    .gallery-item--tall,
    .gallery-item--wide {
        grid-column: span 1;
        aspect-ratio: 480/360;
    }

    .cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .cta-actions {
        justify-content: center;
    }

    .about-img-accent {
        right: -0.5rem;
        bottom: -1rem;
        max-width: 200px;
    }

    .about-stat {
        right: 1rem;
    }
}

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

    .header-inner {
        padding: 0 var(--space-md);
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        justify-content: center;
    }
}
