/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --teal-50: #f0fdfa;
    --teal-100: #ccfbf1;
    --teal-200: #99f6e4;
    --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;
    --slate-950: #020617;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', system-ui, sans-serif;
    --radius: 12px;
    --radius-sm: 8px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-sans);
    color: var(--slate-800);
    background: var(--slate-50);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ─── Typography ─── */
h1, h2, h3 { font-family: var(--font-serif); font-weight: 700; line-height: 1.1; }
em { font-style: italic; }

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.938rem;
    letter-spacing: 0.01em;
    transition: var(--transition);
    white-space: nowrap;
}
.btn--teal {
    background: var(--teal-600);
    color: #fff;
    border: 2px solid var(--teal-600);
}
.btn--teal:hover { background: var(--teal-700); border-color: var(--teal-700); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(13,148,136,0.3); }
.btn--ghost {
    background: transparent;
    color: var(--slate-700);
    border: 2px solid var(--slate-300);
}
.btn--ghost:hover { border-color: var(--teal-600); color: var(--teal-700); transform: translateY(-2px); }
.btn--white {
    background: #fff;
    color: var(--teal-800);
    border: 2px solid #fff;
}
.btn--white:hover { background: var(--teal-50); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.btn--outline-white {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.6);
}
.btn--outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.1); transform: translateY(-2px); }
.btn--lg { padding: 18px 36px; font-size: 1rem; }
.btn--nav { background: var(--teal-600); color: #fff; border: 2px solid var(--teal-600); padding: 10px 22px; font-size: 0.875rem; }
.btn--nav:hover { background: var(--teal-700); border-color: var(--teal-700); }

/* ─── Section Eyebrow ─── */
.section-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.813rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--teal-600);
    margin-bottom: 12px;
}
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--slate-900);
    margin-bottom: 24px;
}
.section-title em { color: var(--teal-600); }

/* ─── Header ─── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(248,250,252,0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--slate-200);
    transition: var(--transition);
}
.site-header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-mark {
    width: 40px;
    height: 40px;
    background: var(--teal-600);
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
}
.logo-text {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--slate-900);
}
.main-nav { display: flex; align-items: center; gap: 32px; }
.main-nav a:not(.btn) {
    font-size: 0.938rem;
    font-weight: 500;
    color: var(--slate-600);
    transition: var(--transition);
    position: relative;
}
.main-nav a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--teal-600);
    transition: var(--transition);
}
.main-nav a:not(.btn):hover { color: var(--teal-700); }
.main-nav a:not(.btn):hover::after { width: 100%; }

.menu-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);
}
.menu-toggle[aria-expanded="true"] .hamburger:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle[aria-expanded="true"] .hamburger:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] .hamburger:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 32px 24px;
    background: var(--slate-50);
    border-top: 1px solid var(--slate-200);
}
.mobile-menu a { font-size: 1.125rem; font-weight: 500; color: var(--slate-700); }
.mobile-menu .btn { width: 100%; justify-content: center; }

/* ─── Hero ─── */
.hero {
    padding-top: 72px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--slate-50);
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(13,148,136,0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-content { padding-right: 20px; }
.hero-eyebrow {
    font-size: 0.813rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--teal-600);
    margin-bottom: 20px;
}
.hero-headline {
    font-size: clamp(2.75rem, 5.5vw, 4.5rem);
    color: var(--slate-900);
    line-height: 1.05;
    margin-bottom: 28px;
}
.hero-headline .line { display: block; }
.hero-headline em { color: var(--teal-600); font-style: italic; }
.hero-body {
    font-size: 1.125rem;
    color: var(--slate-600);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 480px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}
.stat-number { display: block; font-family: var(--font-serif); font-size: 1.75rem; font-weight: 700; color: var(--slate-900); }
.stat-label { display: block; font-size: 0.813rem; color: var(--slate-500); margin-top: 2px; }
.stat-divider { width: 1px; height: 40px; background: var(--slate-200); flex-shrink: 0; }

.hero-visual { position: relative; }
.hero-img-main {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0,0,0,0.12);
}
.hero-img-main img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-accent {
    position: absolute;
    bottom: -40px;
    left: -60px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0,0,0,0.15);
    border: 4px solid var(--slate-50);
}
.hero-img-accent img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
    position: absolute;
    top: 24px;
    right: -20px;
    background: #fff;
    padding: 12px 18px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.813rem;
    font-weight: 600;
    color: var(--slate-800);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.hero-badge svg { color: #f59e0b; }

/* ─── Services ─── */
.services {
    padding: 120px 0;
    background: #fff;
}
.services .section-header { margin-bottom: 64px; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    padding: 40px 32px;
    border-radius: var(--radius);
    border: 1px solid var(--slate-200);
    background: var(--slate-50);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.service-card:hover {
    border-color: var(--teal-200);
    background: #fff;
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(13,148,136,0.1);
}
.service-icon {
    width: 56px;
    height: 56px;
    background: var(--teal-100);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-700);
    margin-bottom: 24px;
    transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--teal-600); color: #fff; }
.service-name {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    color: var(--slate-900);
    margin-bottom: 12px;
}
.service-card p {
    font-size: 0.938rem;
    color: var(--slate-600);
    line-height: 1.7;
    flex: 1;
    margin-bottom: 24px;
}
.service-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--teal-600);
    transition: var(--transition);
}
.service-link:hover { color: var(--teal-800); letter-spacing: 0.03em; }

/* ─── About ─── */
.about {
    padding: 120px 0;
    background: var(--slate-50);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-images { position: relative; }
.about-img-large {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0,0,0,0.1);
}
.about-img-large img { width: 100%; height: 100%; object-fit: cover; }
.about-img-small {
    position: absolute;
    bottom: -40px;
    right: -40px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0,0,0,0.12);
    border: 4px solid var(--slate-50);
}
.about-img-small img { width: 100%; height: 100%; object-fit: cover; }
.about-content .section-title { margin-bottom: 24px; }
.about-text {
    font-size: 1.063rem;
    color: var(--slate-600);
    line-height: 1.8;
    margin-bottom: 20px;
}
.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 36px 0;
}
.value-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.938rem;
    font-weight: 500;
    color: var(--slate-700);
}
.value-item svg { color: var(--teal-600); flex-shrink: 0; }
.about-content .btn { margin-top: 8px; }

/* ─── Gallery ─── */
.gallery {
    padding: 120px 0 80px;
    background: #fff;
}
.gallery .section-header { margin-bottom: 64px; }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.gallery-item {
    border-radius: var(--radius-sm);
    overflow: hidden;
    position: relative;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,23,42,0.3) 0%, transparent 50%);
    opacity: 0;
    transition: var(--transition);
}
.gallery-item:hover::after { opacity: 1; }

/* ─── CTA Banner ─── */
.cta-banner {
    padding: 120px 0;
    background: var(--slate-900);
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(13,148,136,0.2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(13,148,136,0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.cta-inner {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
}
.cta-eyebrow {
    font-size: 0.813rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--teal-400);
    margin-bottom: 16px;
}
.cta-title {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    color: #fff;
    margin-bottom: 20px;
}
.cta-title em { color: var(--teal-400); }
.cta-body {
    font-size: 1.125rem;
    color: var(--slate-400);
    margin-bottom: 40px;
    line-height: 1.7;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─── Visit ─── */
.visit {
    padding: 120px 0;
    background: var(--slate-50);
}
.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.visit-info .section-title { margin-bottom: 40px; }
.contact-items { display: flex; flex-direction: column; gap: 32px; }
.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--teal-100);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-700);
    flex-shrink: 0;
}
.contact-label {
    display: block;
    font-size: 0.813rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--slate-500);
    margin-bottom: 4px;
}
.contact-value {
    display: block;
    font-size: 1rem;
    color: var(--slate-800);
    line-height: 1.6;
}
.contact-value a { color: var(--teal-600); transition: var(--transition); }
.contact-value a:hover { color: var(--teal-800); }
.visit-map {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0,0,0,0.08);
    min-height: 420px;
}

/* ─── Footer ─── */
.site-footer {
    background: var(--slate-900);
    color: var(--slate-400);
    padding: 64px 0 0;
}
.footer-inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}
.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-brand .logo-mark { width: 48px; height: 48px; font-size: 1.5rem; }
.footer-brand .logo-text { font-size: 1.5rem; color: #fff; }
.footer-tagline { font-size: 0.938rem; color: var(--slate-500); }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 0.938rem; color: var(--slate-400); transition: var(--transition); }
.footer-links a:hover { color: var(--teal-400); }
.footer-contact { display: flex; flex-direction: column; gap: 8px; font-size: 0.938rem; }
.footer-contact a { color: var(--teal-400); transition: var(--transition); }
.footer-contact a:hover { color: var(--teal-200); }
.footer-bottom {
    border-top: 1px solid var(--slate-800);
    padding: 24px 0;
    font-size: 0.813rem;
    color: var(--slate-600);
}

/* ─── Mobile Menu Active State ─── */
body.nav-open { overflow: hidden; }
.mobile-menu.open { display: flex; }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
    .hero-grid { gap: 40px; }
    .hero-headline { font-size: clamp(2.25rem, 5vw, 3.5rem); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { gap: 60px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .main-nav { display: none; }
    .menu-toggle { display: flex; }
    
    .hero { padding-top: 72px; min-height: auto; padding-bottom: 80px; }
    .hero-grid { grid-template-columns: 1fr; gap: 48px; }
    .hero-content { padding-right: 0; order: 1; }
    .hero-visual { order: 2; }
    .hero-img-accent { left: -20px; bottom: -20px; }
    .hero-badge { right: 0; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { justify-content: center; }
    .hero-stats { gap: 16px; }
    
    .services { padding: 80px 0; }
    .services-grid { grid-template-columns: 1fr; }
    
    .about { padding: 80px 0; }
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-img-small { right: -20px; bottom: -20px; }
    .about-values { grid-template-columns: 1fr; }
    
    .gallery { padding: 80px 0 60px; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    
    .cta-banner { padding: 80px 0; }
    .cta-actions { flex-direction: column; align-items: center; }
    
    .visit { padding: 80px 0; }
    .visit-grid { grid-template-columns: 1fr; gap: 40px; }
    .visit-map { min-height: 300px; }
    
    .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-headline { font-size: 2.25rem; }
    .hero-img-accent { display: none; }
    .about-img-small { display: none; }
    .gallery-grid { grid-template-columns: 1fr; }
}
