/* ── RESET & BASE ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Inter', -apple-system, sans-serif;
    font-weight: 300;
    color: #2d3748;
    background: #fff;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── TYPOGRAPHY ── */
:root {
    --teal: #1a7a7a;
    --teal-light: #2a9d9d;
    --teal-dark: #145e5e;
    --slate: #4a5568;
    --slate-light: #718096;
    --slate-dark: #2d3748;
    --cream: #f7fafc;
    --warm: #f0f4f4;
    --line: #e2e8f0;
    --line-light: #edf2f7;
}

/* ── UTILITIES ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-eyebrow {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 12px;
}
.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.15;
    color: var(--slate-dark);
    margin-bottom: 24px;
}

/* ── BUTTONS ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all 0.3s ease;
}
.btn-primary {
    background: var(--teal);
    color: #fff;
    border: 1.5px solid var(--teal);
}
.btn-primary:hover { background: var(--teal-dark); border-color: var(--teal-dark); }
.btn-outline {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.6);
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.1); }
.btn-teal {
    background: var(--teal);
    color: #fff;
    border: 1.5px solid var(--teal);
}
.btn-teal:hover { background: var(--teal-dark); border-color: var(--teal-dark); }
.btn-full { width: 100%; }

/* ── NAV ── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 24px;
    transition: all 0.4s ease;
}
.nav.scrolled {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 var(--line);
}
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 1.1rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #fff;
    transition: color 0.3s;
}
.nav.scrolled .nav-logo { color: var(--slate-dark); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    transition: color 0.3s;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: #fff; }
.nav.scrolled .nav-links a { color: var(--slate); }
.nav.scrolled .nav-links a:hover { color: var(--teal); }
.nav-cta {
    border: 1px solid rgba(255,255,255,0.5) !important;
    padding: 10px 22px !important;
    border-radius: 2px !important;
    transition: all 0.3s !important;
}
.nav-cta:hover { background: #fff !important; color: var(--teal) !important; }
.nav.scrolled .nav-cta { border-color: var(--teal) !important; color: var(--teal) !important; }
.nav.scrolled .nav-cta:hover { background: var(--teal) !important; color: #fff !important; }

/* Mobile toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}
.nav-toggle span {
    width: 22px;
    height: 1.5px;
    background: #fff;
    transition: all 0.3s;
}
.nav.scrolled .nav-toggle span { background: var(--slate-dark); }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }

/* ── HERO ── */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(20,30,40,0.55) 0%,
        rgba(20,30,40,0.45) 50%,
        rgba(20,30,40,0.7) 100%
    );
}
.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    padding: 0 24px;
}
.hero-eyebrow {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 20px;
}
.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    line-height: 1.05;
    color: #fff;
    margin-bottom: 24px;
}
.hero-title em {
    font-style: italic;
    color: var(--teal-light);
}
.hero-sub {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255,255,255,0.8);
    max-width: 480px;
    margin: 0 auto 40px;
    line-height: 1.8;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.5);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}
.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.4; transform: scaleY(0.7); }
}

/* ── SERVICES ── */
.services {
    padding: 120px 0;
    background: #fff;
}
.services .section-header { text-align: center; margin-bottom: 64px; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: 4px;
    overflow: hidden;
}
.service-card {
    background: #fff;
    padding: 48px 36px;
    transition: all 0.4s ease;
    position: relative;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--teal);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { background: var(--cream); }
.service-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--teal);
}
.service-icon svg { stroke: var(--teal); }
.service-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 1.35rem;
    color: var(--slate-dark);
    margin-bottom: 12px;
}
.service-card p {
    font-size: 0.88rem;
    color: var(--slate-light);
    line-height: 1.7;
}

/* ── ABOUT ── */
.about {
    padding: 120px 0;
    background: var(--cream);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}
.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.about-image:hover img { transform: scale(1.03); }
.about-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    border: 1px solid var(--teal);
    border-radius: 4px;
    z-index: -1;
    opacity: 0.3;
}
.about-content .section-title { margin-bottom: 28px; }
.about-content p {
    font-size: 0.95rem;
    color: var(--slate);
    margin-bottom: 20px;
    line-height: 1.8;
}
.about-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    margin: 36px 0;
    padding: 28px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.stat-number {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    font-weight: 400;
    color: var(--teal);
    line-height: 1;
    margin-bottom: 6px;
}
.stat-label {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--slate-light);
}
.stat-divider {
    width: 1px;
    height: 48px;
    background: var(--line);
}

/* ── GALLERY ── */
.gallery {
    padding: 120px 0;
    background: #fff;
}
.gallery .section-header { text-align: center; margin-bottom: 64px; }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.gallery-item {
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: auto;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}
.gallery-item:hover img { transform: scale(1.05); }

/* ── VISIT ── */
.visit {
    padding: 120px 0;
    background: var(--warm);
}
.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}
.visit-info .section-title { margin-bottom: 36px; }
.contact-block { margin-bottom: 36px; }
.contact-row {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
}
.contact-row svg {
    color: var(--teal);
    flex-shrink: 0;
    margin-top: 4px;
}
.contact-row strong {
    display: block;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--slate-dark);
    margin-bottom: 4px;
}
.contact-row p {
    font-size: 0.9rem;
    color: var(--slate);
    line-height: 1.6;
}
.contact-row a {
    color: var(--teal);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}
.contact-row a:hover { border-color: var(--teal); }
.hours-block strong {
    display: block;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--slate-dark);
    margin-bottom: 8px;
}
.hours-block p {
    font-size: 0.88rem;
    color: var(--slate);
    line-height: 1.8;
}

/* Form */
.visit-form-wrap {
    background: #fff;
    padding: 48px;
    border-radius: 4px;
    border: 1px solid var(--line);
}
.visit-form-wrap h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 1.6rem;
    color: var(--slate-dark);
    margin-bottom: 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--slate);
    margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--slate-dark);
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 2px;
    outline: none;
    transition: border-color 0.3s, background 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--teal);
    background: #fff;
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
    display: none;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 2px;
    margin-top: 16px;
}
.form-success svg { color: var(--teal); flex-shrink: 0; }
.form-success p { font-size: 0.88rem; color: var(--slate); }
.form-success.show { display: flex; }

/* ── FOOTER ── */
.footer {
    background: var(--slate-dark);
    color: rgba(255,255,255,0.6);
    padding: 72px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #fff;
    display: block;
    margin-bottom: 4px;
}
.footer-brand p {
    font-size: 0.8rem;
    color: var(--teal-light);
    letter-spacing: 0.1em;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    transition: color 0.3s;
}
.footer-links a:hover { color: var(--teal-light); }
.footer-contact { display: flex; flex-direction: column; gap: 8px; }
.footer-contact a {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    transition: color 0.3s;
}
.footer-contact a:hover { color: var(--teal-light); }
.footer-bottom {
    padding: 24px 0;
    text-align: center;
}
.footer-bottom p {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.3);
}

/* ── ANIMATIONS ── */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

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

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        padding: 40px;
        transition: right 0.4s ease;
        box-shadow: -8px 0 32px rgba(0,0,0,0.1);
    }
    .nav-links.open { right: 0; }
    .nav-links a { color: var(--slate) !important; font-size: 0.85rem; }
    .nav-cta {
        border-color: var(--teal) !important;
        color: var(--teal) !important;
    }
    .nav-links.open a:hover { color: var(--teal) !important; }
    .nav-links.open a::after { display: none; }

    .hero-title { font-size: clamp(2.2rem, 10vw, 3.5rem); }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-scroll { display: none; }

    .services { padding: 80px 0; }
    .services-grid { grid-template-columns: 1fr; }
    .service-card { padding: 36px 28px; }

    .about { padding: 80px 0; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-image img { height: 360px; }
    .about-accent { display: none; }
    .about-stats { flex-direction: column; gap: 20px; align-items: flex-start; }
    .stat-divider { width: 48px; height: 1px; }

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

    .visit { padding: 80px 0; }
    .visit-grid { grid-template-columns: 1fr; gap: 48px; }
    .visit-form-wrap { padding: 32px 24px; }
    .form-row { grid-template-columns: 1fr; }

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

@media (max-width: 480px) {
    .container { padding: 0 20px; }
    .gallery-grid { grid-template-columns: 1fr; }
}
</style>
