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

:root {
    --teal-50: #f0fdfa;
    --teal-100: #ccfbf1;
    --teal-200: #99f6e4;
    --teal-300: #5eead4;
    --teal-400: #2dd4bf;
    --teal-500: #14b8a6;
    --teal-600: #0d9488;
    --teal-700: #0f766e;
    --teal-800: #115e59;
    --teal-900: #134e4a;
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    --font-sans: 'Outfit', system-ui, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

body {
    font-family: var(--font-sans);
    font-weight: 300;
    color: var(--slate-800);
    background: #fefefe;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

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

/* ─── NAV ─── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(254, 254, 254, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--slate-200);
    transition: box-shadow 0.3s var(--ease-out);
}

.nav.scrolled {
    box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
    color: var(--slate-800);
}

.nav-logo-icon {
    color: var(--teal-600);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--slate-500);
    transition: color 0.2s;
    letter-spacing: 0.01em;
}

.nav-links a:hover {
    color: var(--teal-600);
}

.nav-cta {
    background: var(--teal-600) !important;
    color: #fff !important;
    padding: 8px 20px;
    border-radius: 100px;
    font-weight: 400;
    font-size: 0.82rem;
    transition: background 0.2s, transform 0.2s var(--ease-spring) !important;
}

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

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

.nav-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--slate-700);
    transition: transform 0.3s var(--ease-out), opacity 0.2s;
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* ─── HERO ─── */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 24px 60px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, #fefefe 0%, var(--teal-50) 50%, var(--slate-50) 100%);
}

.hero-bg-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--teal-200), transparent);
    opacity: 0.4;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-eyebrow {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--teal-600);
    margin-bottom: 20px;
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--slate-900);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

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

.hero-sub {
    font-size: 1.05rem;
    color: var(--slate-500);
    line-height: 1.7;
    max-width: 440px;
    margin-bottom: 36px;
    font-weight: 300;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 100px;
    font-family: var(--font-sans);
    font-size: 0.88rem;
    font-weight: 400;
    border: none;
    cursor: pointer;
    transition: all 0.25s var(--ease-out);
    letter-spacing: 0.01em;
}

.btn-primary {
    background: var(--teal-600);
    color: #fff;
}

.btn-primary:hover {
    background: var(--teal-700);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(13, 148, 136, 0.25);
}

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

.btn-ghost:hover {
    border-color: var(--teal-400);
    color: var(--teal-700);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--teal-600);
    border: 1px solid var(--teal-300);
    padding: 11px 24px;
    font-size: 0.85rem;
}

.btn-outline:hover {
    background: var(--teal-50);
    transform: translateY(-1px);
}

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

/* Hero visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0,0,0,0.1), 0 4px 16px rgba(0,0,0,0.06);
    aspect-ratio: 520/640;
    width: 100%;
    max-width: 440px;
}

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

.stat-card {
    position: absolute;
    background: #fff;
    border-radius: 14px;
    padding: 16px 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
    border: 1px solid var(--slate-100);
    display: flex;
    flex-direction: column;
    gap: 4px;
    animation: float 4s ease-in-out infinite;
}

.stat-card--1 {
    bottom: 60px;
    left: -30px;
    animation-delay: 0s;
}

.stat-card--2 {
    top: 40px;
    right: -20px;
    animation-delay: 1.3s;
}

.stat-card--3 {
    bottom: 140px;
    right: -40px;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    animation-delay: 2.6s;
}

.stat-number {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--slate-900);
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--slate-400);
    font-weight: 400;
}

.stat-card--3 svg {
    color: var(--teal-600);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--slate-400);
}

.hero-scroll svg {
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(4px); }
}

/* ─── SECTION SHARED ─── */
.section-header {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 64px;
}

.section-eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--teal-600);
    margin-bottom: 14px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 400;
    color: var(--slate-900);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.section-sub {
    font-size: 1rem;
    color: var(--slate-500);
    line-height: 1.7;
    font-weight: 300;
}

/* ─── SERVICES ─── */
.services {
    padding: 100px 0;
    background: #fefefe;
}

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

.service-card {
    background: var(--slate-50);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--slate-100);
    transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0,0,0,0.08);
}

.service-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--teal-50);
    border: 1px solid var(--teal-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-600);
    margin: 28px 28px 0;
}

.service-card h3 {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--slate-800);
    margin: 20px 28px 10px;
    letter-spacing: -0.01em;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--slate-500);
    line-height: 1.65;
    padding: 0 28px;
    font-weight: 300;
}

.service-img {
    margin: 20px 28px 28px;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 400/260;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease-out);
}

.service-card:hover .service-img img {
    transform: scale(1.04);
}

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

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

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

.about-image-wrap img {
    border-radius: 20px;
    width: 100%;
    aspect-ratio: 560/480;
    object-fit: cover;
}

.about-accent-line {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border-right: 2px solid var(--teal-300);
    border-bottom: 2px solid var(--teal-300);
    border-radius: 0 0 20px 0;
}

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

.about-content .section-title {
    text-align: left;
    margin-bottom: 24px;
}

.about-text {
    font-size: 0.95rem;
    color: var(--slate-600);
    line-height: 1.75;
    margin-bottom: 16px;
    font-weight: 300;
}

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

.value-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--slate-700);
    font-weight: 400;
}

.value-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--teal-400);
    flex-shrink: 0;
}

/* ─── VISIT ─── */
.visit {
    padding: 100px 0;
    background: #fefefe;
}

.visit-card {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    background: var(--slate-900);
    border-radius: 24px;
    overflow: hidden;
}

.visit-content {
    padding: 56px 48px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.visit-content .section-title {
    color: #fff;
    text-align: left;
}

.visit-text {
    font-size: 0.95rem;
    color: var(--slate-400);
    line-height: 1.7;
    font-weight: 300;
}

.visit-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 8px;
}

.visit-detail {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.visit-detail svg {
    color: var(--teal-400);
    flex-shrink: 0;
    margin-top: 2px;
}

.visit-detail strong {
    display: block;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--slate-300);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.visit-detail span,
.visit-detail a {
    font-size: 0.9rem;
    color: var(--slate-400);
    line-height: 1.6;
    font-weight: 300;
}

.visit-detail a:hover {
    color: var(--teal-400);
}

.visit-map {
    background: var(--slate-800);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px;
    border-left: 1px solid var(--slate-700);
}

.map-placeholder {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.map-placeholder svg {
    color: var(--teal-500);
}

.map-placeholder p {
    font-size: 0.88rem;
    color: var(--slate-400);
    line-height: 1.6;
    font-weight: 300;
}

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

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

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

.contact-info .section-title {
    text-align: left;
    margin-bottom: 16px;
}

.contact-text {
    font-size: 0.95rem;
    color: var(--slate-500);
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 32px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--slate-600);
    transition: color 0.2s;
}

.contact-method:hover {
    color: var(--teal-600);
}

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

/* Form */
.contact-form-wrap {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
    border: 1px solid var(--slate-100);
}

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

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

.form-group label {
    display: block;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--slate-500);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--slate-200);
    border-radius: 10px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--slate-800);
    background: var(--slate-50);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--teal-400);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
    background: #fff;
}

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

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M3 5l3 3 3-3' stroke='%2394a3b8' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.form-success {
    display: none;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: var(--teal-50);
    border: 1px solid var(--teal-200);
    border-radius: 10px;
    font-size: 0.88rem;
    color: var(--teal-800);
    margin-top: 12px;
}

.form-success svg {
    color: var(--teal-600);
    flex-shrink: 0;
}

/* ─── FOOTER ─── */
.footer {
    background: var(--slate-900);
    padding: 64px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--slate-800);
}

.footer-brand p {
    font-size: 0.88rem;
    color: var(--slate-500);
    line-height: 1.65;
    margin-top: 14px;
    font-weight: 300;
    max-width: 280px;
}

.footer-brand .nav-logo {
    color: #fff;
}

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

.footer-links a {
    font-size: 0.88rem;
    color: var(--slate-500);
    transition: color 0.2s;
}

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

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

.footer-contact a {
    font-size: 0.88rem;
    color: var(--slate-500);
    transition: color 0.2s;
}

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

.footer-contact span {
    font-size: 0.88rem;
    color: var(--slate-500);
    line-height: 1.6;
    font-weight: 300;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.78rem;
    color: var(--slate-600);
}

/* ─── SCROLL ANIMATIONS ─── */
.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-inner {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    .hero-sub {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-visual {
        order: -1;
        max-width: 360px;
        margin: 0 auto;
    }
    .hero-image-card {
        max-width: 320px;
        aspect-ratio: 3/4;
    }
    .stat-card--1 { left: -10px; bottom: 40px; }
    .stat-card--2 { right: -10px; }
    .stat-card--3 { right: -20px; }
    
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-content .section-title,
    .about-content .section-eyebrow {
        text-align: center;
    }
    .about-text { text-align: center; }
    
    .visit-card {
        grid-template-columns: 1fr;
    }
    .visit-map {
        border-left: none;
        border-top: 1px solid var(--slate-700);
        padding: 40px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contact-info .section-title,
    .contact-info .section-eyebrow {
        text-align: center;
    }
    .contact-text { text-align: center; }
    .contact-methods { align-items: center; }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        background: rgba(254, 254, 254, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 32px 24px;
        gap: 20px;
        border-bottom: 1px solid var(--slate-200);
        transform: translateY(-120%);
        opacity: 0;
        transition: transform 0.4s var(--ease-out), opacity 0.3s;
        pointer-events: none;
    }
    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        padding: 90px 24px 80px;
        min-height: auto;
    }
    .hero-visual {
        max-width: 280px;
    }
    .hero-image-card {
        max-width: 260px;
    }
    .stat-card { padding: 12px 14px; }
    .stat-number { font-size: 1.1rem; }
    .hero-scroll { display: none; }
    
    .services, .about, .visit, .contact {
        padding: 72px 0;
    }
    
    .service-icon { margin: 24px 24px 0; }
    .service-card h3 { margin: 16px 24px 8px; }
    .service-card p { padding: 0 24px; }
    .service-img { margin: 16px 24px 24px; }
    
    .about-values {
        grid-template-columns: 1fr;
    }
    
    .visit-content {
        padding: 40px 28px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    .contact-form-wrap {
        padding: 28px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 2rem;
    }
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    .stat-card--1 { left: 0; }
    .stat-card--2 { right: 0; }
    .stat-card--3 { right: 0; }
}
