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

:root {
    --midnight: #0a1628;
    --midnight-light: #132240;
    --midnight-mid: #1a3058;
    --mint: #a8d8c8;
    --mint-light: #c5e8dc;
    --mint-pale: #e8f5f0;
    --white: #ffffff;
    --off-white: #f8faf9;
    --gray-100: #f1f5f3;
    --gray-200: #e2e8e5;
    --gray-300: #c5cec8;
    --gray-400: #8a9a90;
    --gray-500: #5c6b60;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Inter', -apple-system, 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;
    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;
    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: 100;
    padding: 1.25rem 0;
    transition: all 0.5s var(--ease-out);
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.75rem 0;
    box-shadow: 0 1px 0 var(--gray-200);
}

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

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

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

.nav.scrolled .nav-logo-text {
    color: var(--midnight);
}

.nav:not(.scrolled) .nav-logo-text {
    color: var(--white);
}

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

.nav-links a {
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--midnight);
    opacity: 0.7;
    transition: opacity 0.3s ease;
    position: relative;
}

.nav:not(.scrolled) .nav-links a {
    color: var(--white);
}

.nav-links a:hover {
    opacity: 1;
}

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

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

.nav-cta {
    border: 1px solid currentColor;
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    opacity: 0.8;
    transition: opacity 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.nav-cta:hover {
    opacity: 1;
    background: currentColor;
}

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

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

.nav-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--midnight);
    transition: all 0.3s var(--ease-out);
    transform-origin: center;
}

.nav.scrolled .nav-toggle span {
    background: var(--midnight);
}

.nav:not(.scrolled) .nav-toggle span {
    background: var(--white);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    transform: rotate(-45deg) translate(4px, -5px);
}

/* ─── HERO ─── */
.hero {
    min-height: 100vh;
    background: var(--midnight);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 40%, var(--midnight-mid) 0%, var(--midnight) 70%);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8rem 2rem 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

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

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--mint);
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s var(--ease-out) 0.2s forwards;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(3.5rem, 8vw, 6.5rem);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--white);
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s var(--ease-out) 0.35s forwards;
}

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

.hero-desc {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--gray-300);
    max-width: 420px;
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s var(--ease-out) 0.5s forwards;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s var(--ease-out) 0.65s forwards;
}

.hero-right {
    position: relative;
    height: 680px;
    opacity: 0;
    animation: fadeIn 1s var(--ease-out) 0.5s forwards;
}

.hero-image-main {
    width: 100%;
    height: 600px;
    overflow: hidden;
    border-radius: 4px;
}

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

.hero-image-float {
    position: absolute;
    bottom: 0;
    left: -3rem;
    width: 260px;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

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

.hero-badge {
    position: absolute;
    top: -1rem;
    right: -1rem;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    background: var(--mint);
    color: var(--midnight);
    padding: 0.75rem 1rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* ─── DIVIDER ─── */
.divider {
    padding: 0 2rem;
}

.divider-line {
    max-width: 1200px;
    margin: 0 auto;
    height: 1px;
    background: var(--gray-200);
}

/* ─── BUTTONS ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 1rem 2rem;
    border-radius: 100px;
    transition: all 0.3s var(--ease-out);
}

.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.2);
}

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

.btn-light:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-2px);
}

.btn-text {
    padding: 1rem 0;
    background: none;
    color: var(--midnight);
    font-size: 0.875rem;
    letter-spacing: 0.02em;
    text-transform: none;
    font-weight: 400;
}

.btn-text:hover {
    color: var(--mint);
}

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

/* ─── SECTION EYEBROW & TITLE ─── */
.section-eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    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.25rem);
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--midnight);
}

/* ─── FEATURES ─── */
.features {
    padding: 8rem 0;
    background: var(--white);
}

.features-header {
    margin-bottom: 5rem;
}

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

.feature-card {
    padding: 2rem;
    border: 1px solid var(--gray-200);
    border-radius: 4px;
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--mint);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out);
}

.feature-card:hover {
    border-color: transparent;
    box-shadow: 0 16px 48px rgba(10, 22, 40, 0.08);
    transform: translateY(-4px);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-number {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--mint);
    line-height: 1;
    margin-bottom: 1.25rem;
}

.feature-card h3 {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.feature-card p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--gray-500);
}

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

.about-layout {
    display: grid;
    grid-template-columns: 560px 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image-col img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    border-radius: 4px;
}

.about-text-col .section-title {
    margin-bottom: 2rem;
}

.about-text-col p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-500);
    margin-bottom: 1.25rem;
}

.about-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--gray-200);
}

.stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.25rem;
    font-weight: 400;
    color: var(--midnight);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.8125rem;
    color: var(--gray-400);
    letter-spacing: 0.02em;
}

.stat-divider {
    width: 1px;
    height: 48px;
    background: var(--gray-200);
}

/* ─── CTA SECTION ─── */
.cta-section {
    padding: 8rem 0;
    background: var(--midnight);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--midnight-mid) 0%, transparent 70%);
    opacity: 0.5;
}

.cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}

.cta-section .section-eyebrow {
    margin-bottom: 1.25rem;
}

.cta-title {
    font-family: var(--font-serif);
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.cta-desc {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--gray-300);
    margin-bottom: 3rem;
}

.cta-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cta-info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--gray-300);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.cta-info-item svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--mint);
}

/* ─── HOURS ─── */
.hours {
    padding: 8rem 0;
    background: var(--white);
}

.hours-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.hours-right {
    padding-top: 1rem;
}

.hours-table {
    border-top: 1px solid var(--gray-200);
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.hours-row:hover {
    padding-left: 0.75rem;
}

.hours-day {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--midnight);
}

.hours-time {
    font-size: 0.9375rem;
    color: var(--gray-500);
}

.hours-row.today {
    background: var(--mint-pale);
    margin: 0 -1rem;
    padding: 1rem;
    border-radius: 4px;
}

.hours-row.today .hours-day {
    color: var(--midnight);
}

.hours-row.today .hours-time {
    color: var(--midnight);
    font-weight: 500;
}

/* ─── CONTACT ─── */
.contact {
    padding: 8rem 0;
    background: var(--off-white);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.contact-text .section-title {
    margin-bottom: 1.5rem;
}

.contact-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-500);
    margin-bottom: 2.5rem;
}

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

.contact-detail {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--midnight);
    transition: color 0.3s ease;
}

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

.contact-detail svg {
    color: var(--mint);
    flex-shrink: 0;
}

.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 4px;
    border: 1px solid var(--gray-200);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 0;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 300;
    color: var(--midnight);
    border: none;
    border-bottom: 1px solid var(--gray-200);
    background: transparent;
    outline: none;
    transition: border-color 0.3s ease;
}

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

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

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

.form-success {
    display: none;
    margin-top: 1rem;
    padding: 1rem;
    background: var(--mint-pale);
    color: var(--midnight);
    font-size: 0.9375rem;
    border-radius: 4px;
    text-align: center;
}

.form-success.visible {
    display: block;
    animation: fadeUp 0.5s var(--ease-out);
}

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

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

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

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

.footer-brand p {
    font-size: 0.875rem;
    color: var(--gray-400);
}

.footer-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.footer-links a {
    font-size: 0.8125rem;
    color: var(--gray-400);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

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

.footer-copy {
    text-align: right;
}

.footer-copy p {
    font-size: 0.8125rem;
    color: var(--gray-400);
    line-height: 1.6;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s var(--ease-out);
}

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

/* ─── MOBILE NAV OVERLAY ─── */
.nav-mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--midnight);
    z-index: 99;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.nav-mobile-overlay.active {
    display: flex;
}

.nav-mobile-overlay a {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 300;
    color: var(--white);
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

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

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding-top: 7rem;
    }

    .hero-right {
        height: 480px;
        order: -1;
    }

    .hero-image-main {
        height: 400px;
    }

    .hero-image-float {
        left: -1rem;
        width: 200px;
    }

    .hero-left {
        padding-right: 0;
        text-align: center;
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

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

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

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

    .about-image-col img {
        height: 500px;
    }

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

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

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

    .nav-toggle {
        display: flex;
    }

    .hero {
        min-height: auto;
    }

    .hero-container {
        padding-top: 6rem;
        padding-bottom: 3rem;
    }

    .hero-right {
        height: 380px;
    }

    .hero-image-main {
        height: 320px;
    }

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

    .hero-badge {
        right: 0;
    }

    .features {
        padding: 5rem 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .features-header {
        margin-bottom: 3rem;
    }

    .about {
        padding: 5rem 0;
    }

    .cta-section {
        padding: 5rem 0;
    }

    .cta-info {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .hours {
        padding: 5rem 0;
    }

    .contact {
        padding: 5rem 0;
    }

    .contact-form {
        padding: 1.5rem;
    }

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

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-copy {
        text-align: center;
    }

    .about-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .stat-divider {
        display: none;
    }
}

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

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

    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }

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

    .btn-text {
        justify-content: center;
    }
}
