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

:root {
    --teal-900: #0c2d27;
    --teal-800: #14534d;
    --teal-700: #1a6e63;
    --teal-600: #1f8a7c;
    --teal-500: #26a896;
    --teal-400: #5eead4;
    --teal-100: #ccfbf1;
    --teal-50:  #f0fdfa;
    --slate-950: #05090e;
    --slate-900: #0b1119;
    --slate-800: #151f2e;
    --slate-700: #1e2d42;
    --slate-600: #2d4159;
    --slate-500: #475f7b;
    --slate-400: #7b95af;
    --slate-300: #a8bdd4;
    --slate-200: #d0dfeb;
    --slate-100: #eaf2f8;
    --slate-50:  #f6f9fc;
    --white: #ffffff;
    --font-serif: 'Lora', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: 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, svg { display: block; max-width: 100%; }

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

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

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

/* ─── Typography ─── */
.section-label {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--teal-600);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--slate-900);
    margin-bottom: 32px;
}

.accent {
    color: var(--teal-700);
}

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 500;
    padding: 14px 28px;
    border-radius: 6px;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all 0.25s var(--ease-smooth);
    white-space: nowrap;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--accent {
    background: var(--teal-700);
    color: var(--white);
    border-color: var(--teal-700);
}
.btn--accent:hover {
    background: var(--teal-800);
    border-color: var(--teal-800);
}

.btn--light {
    background: var(--white);
    color: var(--teal-800);
    border-color: var(--white);
}
.btn--light:hover {
    background: var(--slate-100);
}

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

.btn--outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}
.btn--outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
}

.btn--sm {
    padding: 10px 20px;
    font-size: 0.875rem;
}

.btn--full {
    width: 100%;
}

/* ─── Header ─── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(11, 17, 25, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: background 0.3s ease;
}

.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: 700;
    color: var(--white);
    letter-spacing: -0.01em;
}

.logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--teal-700);
    color: var(--white);
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 8px;
    flex-shrink: 0;
}

.site-nav ul {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.site-nav a {
    color: var(--slate-300);
    font-size: 0.875rem;
    font-weight: 400;
    padding: 8px 14px;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
}

.site-nav a:hover {
    color: var(--white);
    background: rgba(255,255,255,0.07);
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    position: relative;
    align-items: center;
    justify-content: center;
}

.hamburger {
    display: block;
    width: 22px;
    height: 14px;
    position: relative;
}

.hamburger::before,
.hamburger::after,
.hamburger span {
    content: '';
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--white);
    border-radius: 2px;
    position: absolute;
    left: 0;
    transition: all 0.3s var(--ease-out);
}

.hamburger::before { top: 0; }
.hamburger span { top: 50%; transform: translateY(-50%); }
.hamburger::after { bottom: 0; }

.nav-toggle[aria-expanded="true"] .hamburger::before {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .hamburger span {
    opacity: 0;
}
.nav-toggle[aria-expanded="true"] .hamburger::after {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* ─── Hero ─── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--slate-900);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(5, 9, 14, 0.55) 0%,
        rgba(11, 17, 25, 0.75) 50%,
        rgba(11, 17, 25, 0.92) 100%
    );
}

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

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

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.75rem, 7vw, 5rem);
    font-weight: 700;
    line-height: 1.08;
    color: var(--white);
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

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

.hero-sub {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: var(--slate-300);
    line-height: 1.65;
    max-width: 560px;
    margin: 0 auto 40px;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--slate-400);
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.6;
    animation: scrollBounce 2s ease-in-out infinite;
}

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

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

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

.service-card {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 12px;
    padding: 40px 32px;
    transition: all 0.3s var(--ease-smooth);
}

.service-card:hover {
    border-color: var(--teal-400);
    box-shadow: 0 8px 40px rgba(20, 83, 77, 0.1);
    transform: translateY(-4px);
}

.card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--teal-50);
    border: 1px solid var(--teal-100);
    border-radius: 12px;
    margin-bottom: 24px;
    color: var(--teal-700);
}

.card-icon svg {
    width: 28px;
    height: 28px;
}

.card-title {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 12px;
    line-height: 1.3;
}

.card-body {
    font-size: 0.9375rem;
    color: var(--slate-600);
    line-height: 1.7;
    margin-bottom: 20px;
}

.card-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.card-list li {
    font-size: 0.875rem;
    color: var(--slate-700);
    padding-left: 20px;
    position: relative;
}

.card-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--teal-500);
    border-radius: 50%;
}

/* ─── About ─── */
.about {
    padding: 100px 0;
    background: var(--white);
}

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

.about-image {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 7/8.6;
}

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

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

.about-content p {
    font-size: 1rem;
    color: var(--slate-600);
    line-height: 1.75;
    margin-bottom: 16px;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--slate-200);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--teal-700);
}

.stat-label {
    font-size: 0.8125rem;
    color: var(--slate-500);
}

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

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
    margin-top: 48px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

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

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

.gallery-item--large {
    grid-column: 1 / 6;
    grid-row: 1 / 3;
    aspect-ratio: 4/5;
}

.gallery-item--wide {
    grid-column: 6 / 13;
    aspect-ratio: 12/5;
}

.gallery-item:not(.gallery-item--large):not(.gallery-item--wide) {
    aspect-ratio: 3/2;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 20px 16px;
    background: linear-gradient(to top, rgba(5,9,14,0.7), transparent);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
}

/* ─── CTA Band ─── */
.cta-band {
    background: var(--teal-800);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-band::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(94,234,212,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cta-inner {
    position: relative;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-headline {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 16px;
}

.cta-body {
    font-size: 1.0625rem;
    color: var(--teal-100);
    line-height: 1.65;
    margin-bottom: 32px;
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ─── Visit ─── */
.visit {
    padding: 100px 0;
    background: var(--white);
}

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

.address-block {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.address-icon {
    width: 24px;
    height: 24px;
    color: var(--teal-600);
    flex-shrink: 0;
    margin-top: 2px;
}

.address-block strong {
    display: block;
    font-size: 0.9375rem;
    color: var(--slate-900);
    margin-bottom: 4px;
}

.address-block p {
    font-size: 0.9375rem;
    color: var(--slate-600);
    line-height: 1.6;
    font-style: normal;
}

.address-block a {
    color: var(--teal-700);
    transition: color 0.2s;
}

.address-block a:hover {
    color: var(--teal-500);
    text-decoration: underline;
}

.hours h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 16px;
}

.hour-row {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 10px 0;
    border-bottom: 1px solid var(--slate-100);
    font-size: 0.9375rem;
}

.hour-row dt {
    color: var(--slate-700);
    font-weight: 500;
}

.hour-row dd {
    color: var(--slate-500);
}

.hours-note {
    font-size: 0.8125rem;
    color: var(--slate-400);
    margin-top: 12px;
    font-style: italic;
}

.map-frame {
    width: 100%;
    height: 100%;
    min-height: 450px;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

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

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

.contact-intro {
    font-size: 1rem;
    color: var(--slate-600);
    line-height: 1.75;
    margin-top: 16px;
    margin-bottom: 0;
}

.contact-form-wrap {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 16px;
    padding: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--slate-700);
    letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    color: var(--slate-900);
    background: var(--slate-50);
    border: 1.5px solid var(--slate-200);
    border-radius: 8px;
    padding: 12px 14px;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--teal-500);
    box-shadow: 0 0 0 3px rgba(38, 168, 150, 0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--slate-400);
}

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

.form-note {
    font-size: 0.8125rem;
    color: var(--slate-400);
    text-align: center;
}

.form-success {
    text-align: center;
    padding: 40px 20px;
}

.form-success svg {
    width: 48px;
    height: 48px;
    color: var(--teal-500);
    margin: 0 auto 16px;
}

.form-success h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 8px;
}

.form-success p {
    font-size: 0.9375rem;
    color: var(--slate-600);
}

/* ─── Footer ─── */
.site-footer {
    background: var(--slate-900);
    padding: 48px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-brand .logo-mark {
    width: 32px;
    height: 32px;
    font-size: 1rem;
    border-radius: 6px;
}

.footer-name {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
}

.footer-address {
    font-size: 0.875rem;
    color: var(--slate-400);
    line-height: 1.7;
    font-style: normal;
}

.footer-address a {
    color: var(--teal-400);
    transition: color 0.2s;
}

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

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

/* ─── Scroll Reveal (progressive enhancement) ─── */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
    }
    .reveal.revealed {
        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; }
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .service-card:last-child {
        grid-column: 1 / -1;
    }
    .about-grid,
    .visit-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-image {
        aspect-ratio: 16/9;
        max-height: 400px;
    }
    .gallery-item--large {
        grid-column: 1 / 7;
        grid-row: auto;
    }
    .gallery-item--wide {
        grid-column: 7 / 13;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    .site-nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(11, 17, 25, 0.97);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        padding: 16px 24px 24px;
        border-bottom: 1px solid rgba(255,255,255,0.06);
        transform: translateY(-110%);
        opacity: 0;
        transition: transform 0.35s var(--ease-out), opacity 0.35s var(--ease-out);
        pointer-events: none;
    }
    .site-nav.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    .site-nav ul {
        flex-direction: column;
        gap: 4px;
        width: 100%;
    }
    .site-nav a {
        display: block;
        padding: 12px 16px;
        font-size: 1rem;
    }
    .site-nav .btn--sm {
        margin-top: 8px;
        text-align: center;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .service-card:last-child {
        grid-column: auto;
    }
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    .gallery-item--large,
    .gallery-item--wide {
        grid-column: auto;
        aspect-ratio: 4/3;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .about-stats {
        gap: 24px;
    }
    .hero-headline {
        font-size: clamp(2.25rem, 10vw, 3.5rem);
    }
    .contact-form-wrap {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    .hero-content {
        padding: 100px 16px 80px;
    }
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .about-stats {
        flex-direction: column;
        gap: 16px;
    }
    .cta-actions {
        flex-direction: column;
        width: 100%;
    }
    .cta-actions .btn {
        width: 100%;
        justify-content: center;
    }
}
