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

:root {
    --midnight: #0A1628;
    --midnight-light: #132240;
    --midnight-mid: #1a2d4a;
    --mint: #7DD3C0;
    --mint-light: #a8e6d8;
    --mint-pale: #e8f5f1;
    --white: #ffffff;
    --off-white: #f8fafb;
    --cream: #f4f7f8;
    --gray-100: #eef2f5;
    --gray-200: #dce3e8;
    --gray-300: #b0bec5;
    --gray-400: #78909c;
    --gray-500: #546e7a;
    --gray-600: #37474f;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

body {
    font-family: var(--font-sans);
    font-weight: 300;
    color: var(--midnight);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

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

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

/* ========== NAV ========== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-100);
    transition: box-shadow 0.3s ease;
}

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

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.nav-logo-mark {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 400;
    font-style: italic;
    color: var(--midnight);
    line-height: 1;
}

.nav-logo-text {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: 0.01em;
    color: var(--midnight);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray-500);
    transition: color 0.25s ease;
    position: relative;
}

.nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--mint);
    transition: width 0.3s ease;
}

.nav-links a:not(.nav-cta):hover {
    color: var(--midnight);
}

.nav-links a:not(.nav-cta):hover::after {
    width: 100%;
}

.nav-cta {
    font-size: 0.78rem !important;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white) !important;
    background: var(--midnight);
    padding: 0.6rem 1.4rem;
    transition: background 0.25s ease, transform 0.2s ease !important;
}

.nav-cta::after {
    display: none !important;
}

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

.nav-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.nav-menu-btn span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--midnight);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-menu-btn.active span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.nav-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.nav-menu-btn.active span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* ========== MOBILE MENU ========== */
.mobile-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 999;
    padding: 3rem 2rem;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 400px;
}

.mobile-menu-link {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 400;
    color: var(--midnight);
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--gray-100);
    transition: color 0.2s ease;
}

.mobile-menu-link:hover {
    color: var(--mint);
}

.mobile-menu-divider {
    height: 1px;
    background: var(--gray-200);
    margin: 1.5rem 0;
}

.mobile-menu-cta {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--midnight);
    padding: 0.9rem 1.8rem;
    margin-top: 1rem;
    align-self: flex-start;
    transition: background 0.25s ease;
}

.mobile-menu-cta:hover {
    background: var(--midnight-light);
}

.mobile-menu-email {
    font-size: 0.85rem;
    color: var(--gray-400);
    margin-top: 0.5rem;
    transition: color 0.2s ease;
}

.mobile-menu-email:hover {
    color: var(--midnight);
}

.mobile-menu-address {
    font-size: 0.85rem;
    color: var(--gray-300);
    margin-top: 1.5rem;
    line-height: 1.8;
}

/* ========== HERO ========== */
.hero {
    min-height: 100vh;
    background: var(--white);
    padding-top: 72px;
    display: flex;
    align-items: center;
}

.hero-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    padding-right: 1rem;
}

.hero-tag {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--mint);
    margin-bottom: 2rem;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 300;
    line-height: 1.05;
    color: var(--midnight);
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.hero-title em {
    font-style: italic;
    color: var(--mint);
}

.hero-desc {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--gray-500);
    max-width: 420px;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.9rem 1.8rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--midnight);
    color: var(--white);
    border: 1px solid var(--midnight);
}

.btn-primary:hover {
    background: var(--midnight-light);
    border-color: var(--midnight-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(10, 22, 40, 0.15);
}

.btn-outline {
    background: transparent;
    color: var(--midnight);
    border: 1px solid var(--gray-200);
}

.btn-outline:hover {
    border-color: var(--midnight);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--white);
    color: var(--midnight);
    border: 1px solid var(--white);
}

.btn-white:hover {
    background: var(--mint-pale);
    border-color: var(--mint-pale);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

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

.btn-ghost:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

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

.hero-details {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-100);
}

.hero-detail {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.hero-detail-label {
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray-300);
}

.hero-detail-value {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--midnight);
}

.hero-detail-link {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--midnight);
    border-bottom: 1px solid var(--gray-200);
    transition: border-color 0.2s ease, color 0.2s ease;
}

.hero-detail-link:hover {
    border-color: var(--mint);
    color: var(--mint);
}

.hero-visual {
    position: relative;
}

.hero-image-frame {
    overflow: hidden;
    position: relative;
}

.hero-image-frame img {
    width: 100%;
    height: 680px;
    object-fit: cover;
    display: block;
}

.hero-accent {
    position: absolute;
    bottom: -2rem;
    left: -2rem;
    width: 120px;
    height: 120px;
    border: 1px solid var(--mint);
    z-index: -1;
}

/* ========== INTRO ========== */
.intro {
    padding: 8rem 0;
    background: var(--white);
}

.intro .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-eyebrow {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--mint);
    margin-bottom: 1.5rem;
}

.intro-title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 300;
    line-height: 1.25;
    color: var(--midnight);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.intro-body {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.85;
    color: var(--gray-500);
}

.intro-image img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
}

/* ========== SERVICES ========== */
.services {
    padding: 8rem 0;
    background: var(--off-white);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-eyebrow {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--mint);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 300;
    color: var(--midnight);
    letter-spacing: -0.02em;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--gray-100);
    border-left: 1px solid var(--gray-100);
}

.service-card {
    padding: 2.5rem 2rem;
    border-right: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
    transition: background 0.3s ease;
}

.service-card:hover {
    background: var(--white);
}

.service-number {
    font-family: var(--font-serif);
    font-size: 0.9rem;
    font-weight: 400;
    font-style: italic;
    color: var(--mint);
    display: block;
    margin-bottom: 1rem;
}

.service-name {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--midnight);
    margin-bottom: 0.8rem;
    letter-spacing: -0.01em;
}

.service-desc {
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.75;
    color: var(--gray-400);
}

.services-note {
    text-align: center;
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--gray-300);
    margin-top: 3rem;
    font-style: italic;
}

/* ========== ABOUT ========== */
.about {
    padding: 8rem 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

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

.about-image-main img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.about-image-small {
    position: absolute;
    bottom: -3rem;
    right: -2rem;
    overflow: hidden;
    border: 4px solid var(--white);
    box-shadow: 0 8px 32px rgba(10, 22, 40, 0.1);
}

.about-image-small img {
    width: 280px;
    height: 200px;
    object-fit: cover;
    display: block;
}

.about-eyebrow {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--mint);
    margin-bottom: 1.5rem;
}

.about-title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--midnight);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.about-body {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.85;
    color: var(--gray-500);
    margin-bottom: 2.5rem;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--gray-100);
}

.about-value {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-100);
}

.about-value-line {
    display: block;
    width: 32px;
    height: 1px;
    background: var(--mint);
    flex-shrink: 0;
}

.about-value span {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--midnight);
}

/* ========== GALLERY ========== */
.gallery {
    padding: 8rem 0;
    background: var(--off-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.gallery-item {
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ========== CTA ========== */
.cta-section {
    padding: 8rem 0;
    background: var(--midnight);
    text-align: center;
}

.cta-eyebrow {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--mint);
    margin-bottom: 1.5rem;
}

.cta-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 300;
    color: var(--white);
    margin-bottom: 1.2rem;
    letter-spacing: -0.02em;
}

.cta-body {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--gray-300);
    max-width: 480px;
    margin: 0 auto 2.5rem;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========== VISIT ========== */
.visit {
    padding: 8rem 0;
    background: var(--white);
}

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

.visit-eyebrow {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--mint);
    margin-bottom: 1.5rem;
}

.visit-title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--midnight);
    margin-bottom: 2.5rem;
    letter-spacing: -0.01em;
}

.visit-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--gray-100);
}

.visit-detail {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.visit-detail-label {
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray-300);
}

.visit-detail-value {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--midnight);
    line-height: 1.7;
}

.visit-detail-link {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--midnight);
    border-bottom: 1px solid var(--gray-200);
    padding-bottom: 2px;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.visit-detail-link:hover {
    border-color: var(--mint);
    color: var(--mint);
}

.visit-form-wrap {
    max-width: 100%;
}

.visit-form-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--midnight);
    margin-bottom: 1.5rem;
}

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

.form-group {
    margin-bottom: 1rem;
}

.form-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    padding: 0.8rem 0;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--midnight);
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--gray-200);
    outline: none;
    transition: border-color 0.25s ease;
    -webkit-appearance: none;
    border-radius: 0;
}

.form-input::placeholder {
    color: var(--gray-300);
}

.form-input:focus {
    border-bottom-color: var(--mint);
}

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

.form-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 24 24' fill='none' stroke='%2378909c' stroke-width='1.5'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
    padding-right: 2rem;
}

.form-success {
    display: none;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem;
    background: var(--mint-pale);
    color: var(--midnight);
    font-size: 0.9rem;
    font-weight: 400;
    margin-top: 1rem;
}

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

.visit-map {
    height: 100%;
    min-height: 400px;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background: var(--gray-100);
    overflow: hidden;
}

.map-placeholder iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    display: block;
}

/* ========== FOOTER ========== */
.footer {
    padding: 4rem 0 2rem;
    background: var(--midnight);
}

.footer-top {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.footer-logo-mark {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 400;
    font-style: italic;
    color: var(--mint);
}

.footer-logo-text {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 0.02em;
}

.footer-tagline {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--gray-400);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copy {
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--gray-400);
}

.footer-address {
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--gray-500);
}

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

.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; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero-grid {
        gap: 2rem;
    }

    .hero-image-frame img {
        height: 520px;
    }

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

    .about-image-small {
        right: -1rem;
        bottom: -2rem;
    }

    .about-image-small img {
        width: 220px;
        height: 160px;
    }
}

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

    .nav-menu-btn {
        display: flex;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        padding: 3rem 2rem;
        gap: 3rem;
    }

    .hero-content {
        padding-right: 0;
        order: 2;
    }

    .hero-visual {
        order: 1;
    }

    .hero-image-frame img {
        height: 420px;
    }

    .hero-accent {
        display: none;
    }

    .hero-actions {
        flex-direction: column;
    }

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

    .intro .container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .intro-image {
        order: -1;
    }

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

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image-main img {
        height: 360px;
    }

    .about-image-small {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 1rem;
        border: none;
        box-shadow: none;
    }

    .about-image-small img {
        width: 100%;
        height: 200px;
    }

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

    .visit-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .visit-map {
        min-height: 300px;
    }

    .map-placeholder {
        min-height: 300px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.25rem;
    }

    .nav-inner {
        padding: 0 1.25rem;
    }

    .hero-title {
        font-size: 2.8rem;
    }

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

    .gallery-item img {
        height: 260px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
