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

:root {
    --teal-900: #0a3d40;
    --teal-800: #0d5256;
    --teal-700: #0d7377;
    --teal-600: #118a8e;
    --teal-500: #14a3a8;
    --teal-100: #d1e8e9;
    --teal-50: #eaf5f6;
    --slate-950: #0c1522;
    --slate-900: #152238;
    --slate-800: #1e3a52;
    --slate-700: #2c4a63;
    --slate-600: #3d5a73;
    --slate-500: #527089;
    --slate-400: #7a95a8;
    --slate-300: #a8bcc9;
    --slate-200: #d0dce5;
    --slate-100: #eaf1f5;
    --slate-50: #f4f8fa;
    --cream: #f9f7f4;
    --cream-dark: #f0ece6;
    --gold: #c9a96e;
    --gold-light: #d4b87a;
    
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    
    --shadow-sm: 0 1px 3px rgba(12, 21, 34, 0.08);
    --shadow-md: 0 4px 16px rgba(12, 21, 34, 0.1);
    --shadow-lg: 0 8px 32px rgba(12, 21, 34, 0.12);
    --shadow-xl: 0 16px 48px rgba(12, 21, 34, 0.15);
    
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;
}

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

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.65;
    color: var(--slate-800);
    background-color: var(--cream);
}

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

a {
    color: var(--teal-700);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--teal-600);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

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

.section-heading {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 500;
    line-height: 1.2;
    color: var(--slate-950);
    margin-bottom: var(--space-lg);
}

.section-heading em {
    font-style: italic;
    color: var(--teal-700);
}

.section-lead {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--slate-600);
    max-width: 600px;
}

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    padding: 0.8rem 1.75rem;
    border-radius: var(--radius-sm);
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
}

.btn-primary {
    background: var(--teal-700);
    color: #fff;
    border-color: var(--teal-700);
}

.btn-primary:hover {
    background: var(--teal-800);
    border-color: var(--teal-800);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-ghost {
    background: transparent;
    color: var(--slate-700);
    border-color: var(--slate-300);
}

.btn-ghost:hover {
    border-color: var(--teal-700);
    color: var(--teal-700);
    transform: translateY(-1px);
}

.btn-small {
    padding: 0.55rem 1.25rem;
    font-size: 0.8rem;
}

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

/* ─── Header ─── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(249, 247, 244, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--slate-200);
    transition: all var(--transition-base);
}

.site-header.scrolled {
    box-shadow: var(--shadow-sm);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--slate-950);
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

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

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    list-style: none;
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--slate-600);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--teal-700);
    transition: width var(--transition-base);
}

.nav-links a:hover {
    color: var(--teal-700);
}

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

.nav-cta {
    padding: 0.5rem 1.25rem !important;
    border: 1.5px solid var(--teal-700) !important;
    border-radius: var(--radius-sm) !important;
    color: var(--teal-700) !important;
    transition: all var(--transition-base) !important;
}

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

.nav-cta:hover {
    background: var(--teal-700) !important;
    color: #fff !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--slate-700);
    transition: all var(--transition-base);
    transform-origin: center;
}

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

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

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

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

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    padding-top: var(--space-3xl);
    padding-bottom: var(--space-3xl);
}

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--teal-700);
    margin-bottom: var(--space-lg);
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 500;
    line-height: 1.15;
    color: var(--slate-950);
    margin-bottom: var(--space-xl);
    max-width: 540px;
}

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

.hero-sub {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--slate-600);
    margin-bottom: var(--space-2xl);
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-3xl);
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xl);
}

.hero-meta-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.8rem;
    color: var(--slate-500);
    letter-spacing: 0.02em;
}

.hero-meta-item svg {
    color: var(--teal-700);
    flex-shrink: 0;
}

.hero-image {
    position: relative;
}

.hero-image-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

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

.hero-accent {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 64px;
    height: 64px;
    background: var(--teal-700);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: var(--shadow-lg);
}

/* ─── About ─── */
.about {
    padding: var(--space-4xl) 0;
    background: var(--cream-dark);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

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

.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.about-img-secondary {
    position: absolute;
    bottom: -32px;
    right: -24px;
    width: 55%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--cream-dark);
}

.about-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-content {
    padding: var(--space-xl) 0;
}

.about-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--slate-600);
    margin-bottom: var(--space-md);
}

.about-signature {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-top: var(--space-xl);
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--teal-700);
}

.about-signature svg {
    color: var(--teal-700);
    opacity: 0.6;
}

/* ─── Menu ─── */
.menu {
    padding: var(--space-4xl) 0;
    background: var(--cream);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

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

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-2xl);
}

.menu-tab {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.6rem 1.5rem;
    border: 1.5px solid var(--slate-300);
    border-radius: var(--radius-xl);
    background: transparent;
    color: var(--slate-600);
    cursor: pointer;
    transition: all var(--transition-base);
    letter-spacing: 0.02em;
}

.menu-tab:hover {
    border-color: var(--teal-700);
    color: var(--teal-700);
}

.menu-tab.active {
    background: var(--teal-700);
    border-color: var(--teal-700);
    color: #fff;
}

.menu-panel {
    display: block;
    animation: fadeIn 0.3s ease;
}

.menu-panel.hidden {
    display: none;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
}

.menu-category h3 {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--slate-950);
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--slate-200);
}

.menu-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.menu-list li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: var(--space-md);
}

.menu-item-name {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--slate-800);
}

.menu-item-desc {
    font-size: 0.85rem;
    color: var(--slate-500);
    line-height: 1.5;
    text-align: right;
}

/* ─── Atmosphere ─── */
.atmosphere {
    padding: var(--space-4xl) 0;
    background: var(--slate-950);
}

.atmosphere .section-eyebrow {
    color: var(--gold);
}

.atmosphere .section-heading {
    color: #fff;
}

.atmosphere .section-heading em {
    color: var(--teal-500);
}

.atmosphere .section-lead {
    color: var(--slate-400);
}

.atmosphere .section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: var(--space-md);
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-slow);
}

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

.gallery-item--large {
    grid-row: 1 / 3;
}

.gallery-item--large img {
    height: 100%;
    min-height: 480px;
}

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

.gallery-item--wide img {
    height: 100%;
    min-height: 240px;
}

/* ─── Visit ─── */
.visit {
    padding: var(--space-4xl) 0;
    background: var(--cream);
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.visit-details {
    font-style: normal;
    margin: var(--space-2xl) 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.visit-detail {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.visit-detail svg {
    color: var(--teal-700);
    flex-shrink: 0;
    margin-top: 2px;
}

.visit-detail span,
.visit-detail a {
    font-size: 0.95rem;
    color: var(--slate-600);
    line-height: 1.7;
}

.visit-detail a:hover {
    color: var(--teal-700);
}

.visit-actions {
    display: flex;
    gap: var(--space-md);
}

.map-placeholder {
    background: var(--slate-100);
    border-radius: var(--radius-lg);
    padding: var(--space-3xl);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
    color: var(--slate-500);
    border: 1px solid var(--slate-200);
}

.map-placeholder svg {
    color: var(--teal-700);
    opacity: 0.5;
}

.map-placeholder p {
    font-size: 0.9rem;
    line-height: 1.6;
}

.map-placeholder .btn {
    margin-top: var(--space-sm);
}

/* ─── Contact ─── */
.contact {
    padding: var(--space-4xl) 0;
    background: var(--cream-dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-3xl);
}

.contact-form {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--slate-200);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--slate-600);
    margin-bottom: var(--space-sm);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.7rem 0.9rem;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--slate-800);
    background: var(--slate-50);
    border: 1.5px solid var(--slate-200);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--teal-700);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(13, 115, 119, 0.1);
}

.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.8rem;
    color: var(--slate-400);
    margin-top: var(--space-sm);
    text-align: center;
}

.form-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-md);
    padding: var(--space-3xl);
    animation: fadeIn 0.4s ease;
}

.form-success svg {
    color: var(--teal-700);
}

.form-success h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--slate-950);
}

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

.hidden {
    display: none !important;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    padding-top: var(--space-xl);
}

.info-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    border: 1px solid var(--slate-200);
    transition: all var(--transition-base);
}

.info-card:hover {
    border-color: var(--teal-700);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.info-card svg {
    color: var(--teal-700);
    margin-bottom: var(--space-md);
}

.info-card h3 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--slate-950);
    margin-bottom: var(--space-sm);
}

.info-card p,
.info-card a {
    font-size: 0.9rem;
    color: var(--slate-600);
    line-height: 1.7;
}

.info-card a:hover {
    color: var(--teal-700);
}

/* ─── Footer ─── */
.site-footer {
    background: var(--slate-950);
    color: var(--slate-400);
}

.footer-inner {
    padding: var(--space-3xl) 0 var(--space-2xl);
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: var(--space-3xl);
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-top: var(--space-md);
    max-width: 280px;
}

.footer-brand .logo {
    color: #fff;
}

.footer-brand .logo:hover {
    color: var(--teal-500);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2xl);
}

.footer-col h4 {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--slate-300);
    margin-bottom: var(--space-lg);
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-col a {
    font-size: 0.875rem;
    color: var(--slate-400);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-col a:hover {
    color: var(--teal-500);
}

.footer-col address {
    font-style: normal;
    font-size: 0.875rem;
    line-height: 1.8;
}

.footer-bottom {
    border-top: 1px solid var(--slate-800);
    padding: var(--space-xl) 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-md);
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--slate-500);
}

.footer-bottom a {
    color: var(--slate-500);
    font-size: 0.8rem;
}

.footer-bottom a:hover {
    color: var(--teal-500);
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
    .hero-grid {
        gap: var(--space-2xl);
    }
    
    .hero-headline {
        font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    }
    
    .about-grid {
        gap: var(--space-2xl);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--space-lg);
    }
    
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(249, 247, 244, 0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        flex-direction: column;
        padding: var(--space-xl);
        gap: var(--space-lg);
        border-bottom: 1px solid var(--slate-200);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all var(--transition-base);
    }
    
    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
        padding-top: var(--space-2xl);
        padding-bottom: var(--space-2xl);
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-image-wrapper {
        border-radius: var(--radius-md);
    }
    
    .hero-accent {
        display: none;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-meta {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-img-secondary {
        position: relative;
        bottom: auto;
        right: auto;
        width: 100%;
        margin-top: var(--space-md);
        border: none;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .gallery {
        grid-template-columns: 1fr;
    }
    
    .gallery-item--large {
        grid-row: auto;
    }
    
    .gallery-item--large img,
    .gallery-item--wide img {
        min-height: 240px;
    }
    
    .gallery-item--wide {
        grid-column: auto;
    }
    
    .visit-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-inner {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: var(--space-sm);
    }
}

@media (max-width: 480px) {
    :root {
        --space-3xl: 2.5rem;
        --space-4xl: 3.5rem;
    }
    
    .hero-headline {
        font-size: 1.75rem;
    }
    
    .menu-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .menu-tab {
        width: 100%;
        text-align: center;
    }
}
