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

:root {
    --color-midnight: #0A2540;
    --color-mint: #5EBDAB;
    --color-mint-light: #E8F5F1;
    --color-cream: #FAFAF8;
    --color-white: #FFFFFF;
    --color-text: #1A1A1A;
    --color-text-muted: #6B6B6B;
    --color-line: #E8E8E4;
    --color-line-light: #F2F2EE;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    font-weight: 300;
    color: var(--color-text);
    background: var(--color-cream);
    line-height: 1.7;
    font-size: 15px;
    overflow-x: hidden;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    padding: 0.75rem 1.25rem;
    background: var(--color-midnight);
    color: var(--color-white);
    text-decoration: none;
    border-radius: 0 0 4px 4px;
    z-index: 100;
    font-size: 14px;
}

.skip-link:focus {
    top: 0;
}

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

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

/* ── Navigation ── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(250, 250, 248, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-line);
    transition: box-shadow 0.4s var(--ease-out);
}

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

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

.nav-logo {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    letter-spacing: 0.02em;
}

.nav-logo-text {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--color-midnight);
}

.nav-logo-text--accent {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 400;
    font-style: italic;
    color: var(--color-mint);
}

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

.nav-link {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-link:hover {
    color: var(--color-midnight);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link--cta {
    padding: 0.55rem 1.4rem;
    border: 1px solid var(--color-midnight);
    color: var(--color-midnight);
    transition: background 0.3s ease, color 0.3s ease;
}

.nav-link--cta::after {
    display: none;
}

.nav-link--cta:hover {
    background: var(--color-midnight);
    color: var(--color-white);
}

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

.nav-toggle-line {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--color-midnight);
    transition: transform 0.3s var(--ease-out), opacity 0.3s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* ── Hero ── */
.hero {
    min-height: 100vh;
    padding-top: 72px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--color-cream);
}

.hero-inner {
    flex: 1;
    max-width: 1440px;
    margin: 0 auto;
    padding: 4rem 2rem 0;
    width: 100%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: calc(100vh - 72px);
}

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

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

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--color-midnight);
    margin-bottom: 1.75rem;
    letter-spacing: -0.01em;
}

.hero-desc {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text-muted);
    max-width: 480px;
    margin-bottom: 2.5rem;
}

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

.hero-image-col {
    position: relative;
    height: 100%;
    min-height: 500px;
}

.hero-image {
    overflow: hidden;
    border-radius: 2px;
}

.hero-image--main {
    width: 100%;
    height: 100%;
    min-height: 520px;
}

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

.hero-image--float {
    position: absolute;
    bottom: -2rem;
    left: -3rem;
    width: 55%;
    box-shadow: 0 20px 60px rgba(10, 37, 64, 0.12);
    border: 4px solid var(--color-cream);
}

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

.hero-line {
    height: 1px;
    background: var(--color-line);
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

/* ── Buttons ── */
.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.1em;
    text-transform: uppercase;
    padding: 0.9rem 2rem;
    border-radius: 0;
    transition: all 0.35s var(--ease-out);
    cursor: pointer;
    border: 1px solid transparent;
    text-decoration: none;
}

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

.btn--primary:hover {
    background: transparent;
    color: var(--color-midnight);
}

.btn--ghost {
    background: transparent;
    color: var(--color-midnight);
    border-color: var(--color-midnight);
}

.btn--ghost:hover {
    background: var(--color-midnight);
    color: var(--color-white);
}

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

/* ── Section shared ── */
.section-label {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-mint);
    margin-bottom: 1.25rem;
}

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

.section-title--light {
    color: var(--color-white);
}

/* ── Intro ── */
.intro {
    padding: 8rem 2rem;
    background: var(--color-cream);
}

.intro-inner {
    max-width: 1280px;
    margin: 0 auto;
}

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

.intro-text p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--color-text-muted);
    margin-bottom: 1.25rem;
}

.intro-text p:first-child {
    color: var(--color-text);
    font-size: 1.1rem;
}

.intro-image {
    border-radius: 2px;
    overflow: hidden;
}

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
}

/* ── Services ── */
.services {
    padding: 8rem 2rem;
    background: var(--color-midnight);
}

.services-inner {
    max-width: 1280px;
    margin: 0 auto;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    overflow: hidden;
    transition: background 0.4s ease, transform 0.4s var(--ease-out);
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-4px);
}

.service-card-number {
    font-family: var(--font-serif);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--color-mint);
    padding: 2rem 2rem 0;
    letter-spacing: 0.05em;
}

.service-card-title {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--color-white);
    padding: 0.75rem 2rem 0;
    letter-spacing: -0.01em;
}

.service-card-desc {
    font-size: 0.95rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.6);
    padding: 1rem 2rem 1.5rem;
}

.service-card-img {
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

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

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

/* ── Divider ── */
.divider-section {
    padding: 7rem 2rem;
    background: var(--color-mint-light);
    text-align: center;
}

.divider-inner {
    max-width: 720px;
    margin: 0 auto;
}

.divider-quote {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.5;
    color: var(--color-midnight);
    margin-bottom: 1.5rem;
}

.divider-attr {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-mint);
}

/* ── Gallery ── */
.gallery {
    padding: 8rem 2rem;
    background: var(--color-cream);
}

.gallery-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 220px);
    gap: 1rem;
}

.gallery-item {
    overflow: hidden;
    border-radius: 2px;
}

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

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

.gallery-item--tall {
    grid-column: 1 / 5;
    grid-row: 1 / 3;
}

.gallery-item--tall img {
    height: 100%;
}

.gallery-item:nth-child(2) {
    grid-column: 5 / 9;
    grid-row: 1 / 2;
}

.gallery-item:nth-child(3) {
    grid-column: 9 / 13;
    grid-row: 1 / 2;
}

.gallery-item:nth-child(4) {
    grid-column: 5 / 9;
    grid-row: 2 / 3;
}

.gallery-item--wide {
    grid-column: 1 / 13;
    grid-row: 3 / 4;
}

/* ── Visit ── */
.visit {
    padding: 8rem 2rem;
    background: var(--color-white);
}

.visit-inner {
    max-width: 1280px;
    margin: 0 auto;
}

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

.visit-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.visit-block h3 {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-mint);
    margin-bottom: 0.75rem;
}

.visit-block p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text);
}

.visit-day {
    display: block;
    font-weight: 400;
    color: var(--color-text);
}

.visit-hours {
    display: block;
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.visit-block a {
    color: var(--color-midnight);
    border-bottom: 1px solid var(--color-mint);
    transition: color 0.3s ease;
}

.visit-block a:hover {
    color: var(--color-mint);
}

.visit-map {
    border-radius: 2px;
    overflow: hidden;
    border: 1px solid var(--color-line);
}

.visit-map iframe {
    width: 100%;
    height: 450px;
    display: block;
}

/* ── Contact ── */
.contact {
    padding: 8rem 2rem;
    background: var(--color-midnight);
}

.contact-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-left {
    padding-top: 0.5rem;
}

.contact-desc {
    font-size: 1.05rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2.5rem;
    max-width: 440px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-detail {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.contact-detail:hover {
    color: var(--color-mint);
}

.contact-detail svg {
    flex-shrink: 0;
}

/* ── Form ── */
.contact-right {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    padding: 2.5rem;
}

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

.form-label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.6rem;
}

.form-input {
    width: 100%;
    padding: 0.85rem 0;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--color-white);
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    outline: none;
    transition: border-color 0.3s ease;
    border-radius: 0;
    -webkit-appearance: none;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

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

.form-select {
    cursor: pointer;
}

.form-select option {
    background: var(--color-midnight);
    color: var(--color-white);
}

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

.form-success {
    text-align: center;
    padding: 3rem 1rem;
}

.form-success svg {
    margin: 0 auto 1.25rem;
}

.form-success h3 {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--color-white);
    margin-bottom: 0.75rem;
}

.form-success p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

/* ── Footer ── */
.footer {
    padding: 4rem 2rem 2rem;
    background: var(--color-midnight);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--color-white);
}

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

.footer-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
    max-width: 280px;
}

.footer-nav {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-nav a {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--color-mint);
}

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

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}

/* ── Scroll animations ── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

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

    .hero-image--float {
        left: -1rem;
        bottom: -1rem;
    }

    .services-grid {
        gap: 1.5rem;
    }

    .gallery-grid {
        grid-template-rows: repeat(2, 180px);
    }

    .gallery-item--tall {
        grid-column: 1 / 7;
        grid-row: 1 / 2;
    }

    .gallery-item:nth-child(2) {
        grid-column: 7 / 13;
        grid-row: 1 / 2;
    }

    .gallery-item:nth-child(3) {
        grid-column: 1 / 5;
        grid-row: 2 / 3;
    }

    .gallery-item:nth-child(4) {
        grid-column: 5 / 9;
        grid-row: 2 / 3;
    }

    .gallery-item--wide {
        grid-column: 9 / 13;
        grid-row: 2 / 3;
    }
}

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

    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(250, 250, 248, 0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s var(--ease-out), visibility 0.4s var(--ease-out);
    }

    .nav-menu.open {
        opacity: 1;
        visibility: visible;
    }

    .nav-link {
        font-size: 1rem;
        letter-spacing: 0.12em;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-bottom: 4rem;
    }

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

    .hero-image-col {
        min-height: 400px;
        order: 1;
    }

    .hero-image--float {
        display: none;
    }

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

    .intro {
        padding: 5rem 1.5rem;
    }

    .services {
        padding: 5rem 1.5rem;
    }

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

    .gallery {
        padding: 5rem 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 200px);
    }

    .gallery-item--tall {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
    }

    .gallery-item:nth-child(2) {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
    }

    .gallery-item:nth-child(3) {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
    }

    .gallery-item:nth-child(4) {
        grid-column: 1 / 3;
        grid-row: 3 / 4;
    }

    .gallery-item--wide {
        grid-column: 1 / 3;
        grid-row: 4 / 5;
    }

    .visit {
        padding: 5rem 1.5rem;
    }

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

    .contact {
        padding: 5rem 1.5rem;
    }

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

    .contact-right {
        padding: 1.75rem;
    }

    .footer-top {
        flex-direction: column;
    }

    .footer-nav {
        gap: 1.25rem;
    }

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

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

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

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

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

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

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 200px);
    }

    .gallery-item--tall,
    .gallery-item:nth-child(2),
    .gallery-item:nth-child(3),
    .gallery-item:nth-child(4),
    .gallery-item--wide {
        grid-column: 1 / -1;
        grid-row: auto;
    }
}
