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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.7;
    color: #0F2B4C;
    background: #FAFCFB;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
    list-style: none;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: #0F2B4C;
    color: #FAFCFB;
    padding: 0.5rem 1rem;
    z-index: 100;
    border-radius: 0 0 4px 4px;
    font-size: 0.875rem;
}

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

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

/* ── Typography ──────────────────────────────────── */
.section-eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #7ED0A8;
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 400;
    line-height: 1.15;
    color: #0F2B4C;
    margin-bottom: 1.5rem;
}

.section-desc {
    font-size: 1.0625rem;
    color: #3D5A74;
    max-width: 520px;
    line-height: 1.75;
}

/* ── Buttons ─────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.875rem 2rem;
    border: 1px solid transparent;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-primary {
    background: #0F2B4C;
    color: #FAFCFB;
    border-color: #0F2B4C;
}

.btn-primary:hover {
    background: #1A3D5C;
    border-color: #1A3D5C;
    transform: translateY(-1px);
}

.btn-ghost {
    background: transparent;
    color: #0F2B4C;
    border-color: #0F2B4C;
}

.btn-ghost:hover {
    background: #0F2B4C;
    color: #FAFCFB;
}

.btn-full {
    width: 100%;
}

/* ── Header ──────────────────────────────────────── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(250, 252, 251, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(15, 43, 76, 0.08);
    transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 1px 20px rgba(15, 43, 76, 0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 1.125rem;
    color: #0F2B4C;
    letter-spacing: -0.01em;
}

.logo-mark {
    color: #7ED0A8;
}

.primary-nav ul {
    display: flex;
    gap: 2.5rem;
}

.primary-nav a {
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #3D5A74;
    position: relative;
    padding-bottom: 2px;
    transition: color 0.2s ease;
}

.primary-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #7ED0A8;
    transition: width 0.3s ease;
}

.primary-nav a:hover {
    color: #0F2B4C;
}

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

/* ── Mobile Nav Toggle ───────────────────────────── */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger {
    display: block;
    width: 22px;
    height: 1.5px;
    background: #0F2B4C;
    transition: all 0.3s ease;
    transform-origin: center;
}

.nav-toggle[aria-expanded="true"] .hamburger:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}

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

.nav-toggle[aria-expanded="true"] .hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

/* ── Hero ────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #0F2B4C;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 60% at 50% 40%, rgba(126, 208, 168, 0.25) 0%, transparent 70%),
        radial-gradient(ellipse 60% 50% at 20% 80%, rgba(126, 208, 168, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 80% 20%, rgba(61, 90, 116, 0.3) 0%, transparent 60%),
        linear-gradient(180deg, #0A1F38 0%, #0F2B4C 40%, #132E4F 100%);
    z-index: 1;
}

.hero-inner {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    max-width: 800px;
}

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(126, 208, 168, 0.8);
    margin-bottom: 1.75rem;
}

.hero-headline {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 400;
    line-height: 1.1;
    color: #FAFCFB;
    margin-bottom: 1.5rem;
}

.hero-headline em {
    color: #7ED0A8;
    font-style: italic;
}

.hero-desc {
    font-size: 1.125rem;
    color: rgba(250, 252, 251, 0.65);
    max-width: 480px;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

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

.hero-actions .btn-ghost {
    border-color: rgba(250, 252, 251, 0.35);
    color: #FAFCFB;
}

.hero-actions .btn-ghost:hover {
    background: #FAFCFB;
    color: #0F2B4C;
    border-color: #FAFCFB;
}

.hero-image {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.hero-image img {
    width: 100%;
    height: 40vh;
    object-fit: cover;
    display: block;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(10, 31, 56, 0.3) 0%, transparent 30%, transparent 70%, rgba(250, 252, 251, 1) 100%);
    pointer-events: none;
}

/* ── About ───────────────────────────────────────── */
.about {
    padding: 8rem 0;
}

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

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 2px;
}

.about-content p {
    font-size: 1.0625rem;
    color: #3D5A74;
    line-height: 1.85;
    margin-bottom: 1.25rem;
}

.about-content p:last-child {
    margin-bottom: 0;
}

/* ── Menu ────────────────────────────────────────── */
.menu {
    padding: 6rem 0 8rem;
    border-top: 1px solid rgba(15, 43, 76, 0.08);
}

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

.section-header .section-desc {
    margin: 0 auto;
}

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

.menu-category {
    padding: 2rem;
    border: 1px solid rgba(15, 43, 76, 0.08);
    border-radius: 2px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.menu-category:hover {
    border-color: rgba(126, 208, 168, 0.4);
    box-shadow: 0 4px 24px rgba(15, 43, 76, 0.04);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(15, 43, 76, 0.06);
}

.category-icon {
    color: #7ED0A8;
    flex-shrink: 0;
}

.category-title {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: #0F2B4C;
}

.menu-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.menu-list li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
}

.item-name {
    font-size: 0.9375rem;
    font-weight: 400;
    color: #0F2B4C;
}

.item-desc {
    font-size: 0.8125rem;
    color: #7A9BB5;
    white-space: nowrap;
}

.menu-note {
    text-align: center;
    font-size: 0.8125rem;
    color: #7A9BB5;
    margin-top: 3rem;
    font-style: italic;
}

/* ── Visit ───────────────────────────────────────── */
.visit {
    padding: 8rem 0;
    border-top: 1px solid rgba(15, 43, 76, 0.08);
}

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

.visit-content .section-title {
    margin-bottom: 2.5rem;
}

.visit-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.detail-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.detail-icon {
    color: #7ED0A8;
    flex-shrink: 0;
    margin-top: 3px;
}

.detail-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #7ED0A8;
    margin-bottom: 0.375rem;
}

.detail-item p {
    font-size: 1rem;
    color: #3D5A74;
    line-height: 1.7;
}

.detail-item a {
    color: #3D5A74;
    border-bottom: 1px solid rgba(15, 43, 76, 0.15);
    transition: color 0.2s ease, border-color 0.2s ease;
}

.detail-item a:hover {
    color: #0F2B4C;
    border-color: #0F2B4C;
}

.map-placeholder {
    border-radius: 2px;
    overflow: hidden;
    height: 100%;
    min-height: 450px;
    border: 1px solid rgba(15, 43, 76, 0.08);
}

.map-placeholder iframe {
    width: 100%;
    height: 100%;
    min-height: 450px;
}

/* ── Contact ─────────────────────────────────────── */
.contact {
    padding: 6rem 0 8rem;
    border-top: 1px solid rgba(15, 43, 76, 0.08);
}

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

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

.contact-text p {
    font-size: 1.0625rem;
    color: #3D5A74;
    line-height: 1.75;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #3D5A74;
}

.form-group input,
.form-group textarea {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 300;
    color: #0F2B4C;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(15, 43, 76, 0.15);
    padding: 0.625rem 0;
    outline: none;
    transition: border-color 0.2s ease;
    border-radius: 0;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #A8C0D0;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #7ED0A8;
}

.form-success {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    color: #2D7A52;
    margin-top: 0.5rem;
}

.form-success svg {
    flex-shrink: 0;
}

/* ── Footer ──────────────────────────────────────── */
.site-footer {
    background: #0F2B4C;
    color: rgba(250, 252, 251, 0.6);
    padding: 4rem 0 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    align-items: start;
    padding-bottom: 3rem;
}

.footer-brand .logo {
    color: #FAFCFB;
    margin-bottom: 1rem;
}

.footer-tagline {
    font-size: 0.9375rem;
    color: rgba(250, 252, 251, 0.45);
    font-style: italic;
    font-family: 'Instrument Serif', Georgia, serif;
}

.footer-links nav ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}

.footer-links a {
    font-size: 0.8125rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(250, 252, 251, 0.5);
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #7ED0A8;
}

.footer-contact {
    text-align: right;
    font-size: 0.9375rem;
    line-height: 1.8;
}

.footer-contact a {
    color: rgba(250, 252, 251, 0.5);
    border-bottom: 1px solid rgba(250, 252, 251, 0.15);
    transition: color 0.2s ease, border-color 0.2s ease;
}

.footer-contact a:hover {
    color: #7ED0A8;
    border-color: #7ED0A8;
}

.footer-bottom {
    border-top: 1px solid rgba(250, 252, 251, 0.08);
    padding: 1.5rem 2rem;
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: rgba(250, 252, 251, 0.3);
    text-align: center;
}

/* ── Scroll Animations ───────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 1024px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .primary-nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(250, 252, 251, 0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        padding: 3rem 2rem;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .primary-nav.open {
        transform: translateX(0);
    }
    
    .primary-nav ul {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .primary-nav a {
        font-size: 1rem;
    }
    
    .hero-inner {
        padding: 7rem 1.5rem 3rem;
    }
    
    .hero-image img {
        height: 30vh;
    }
    
    .about-grid,
    .visit-grid,
    .contact-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .about-image img {
        height: 350px;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-links nav ul {
        flex-direction: row;
        gap: 1.5rem;
    }
    
    .footer-contact {
        text-align: center;
    }
    
    .about,
    .visit,
    .contact {
        padding: 5rem 0;
    }
    
    .menu {
        padding: 4rem 0 5rem;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .map-placeholder,
    .map-placeholder iframe {
        min-height: 300px;
    }
}
