/* ─── 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', system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: #2A2A2A;
    background: #FAFAF8;
    overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
h1, h2, h3 { font-family: 'Lora', Georgia, serif; font-weight: 700; line-height: 1.15; }
.skip-link {
    position: absolute; left: -999px; top: -999px;
    padding: 0.75rem 1.25rem; background: #C0593A; color: #fff;
    border-radius: 0 0 8px 0; z-index: 200; font-weight: 600;
}
.skip-link:focus { left: 0; top: 0; }

/* ─── Container ─── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ─── Typography ─── */
.section-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #C0593A;
    margin-bottom: 0.75rem;
}
.section-title {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    color: #1A1A1A;
    margin-bottom: 1rem;
}
.section-desc {
    font-size: 1.1rem;
    color: #555;
    max-width: 560px;
    margin: 0 auto;
}
.section-header { margin-bottom: 3.5rem; }
.section-header--centered { text-align: center; }

/* ─── Buttons ─── */
.btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.8rem 1.75rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.25s ease;
}
.btn--primary {
    background: #C0593A;
    color: #fff;
    box-shadow: 0 4px 16px rgba(192, 89, 58, 0.3);
}
.btn--primary:hover {
    background: #A8472E;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(192, 89, 58, 0.4);
}
.btn--ghost {
    background: transparent;
    color: #1A1A1A;
    border: 1.5px solid #1A1A1A;
}
.btn--ghost:hover { background: #1A1A1A; color: #fff; }
.btn--nav {
    background: #C0593A; color: #fff;
    padding: 0.6rem 1.25rem; border-radius: 6px;
    font-size: 0.85rem; white-space: nowrap;
}
.btn--nav:hover { background: #A8472E; }
.btn--full { width: 100%; justify-content: center; }

/* ─── Header ─── */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(250, 250, 248, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(26, 26, 26, 0.07);
    transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.08); }
.header-inner {
    display: flex; align-items: center;
    padding-top: 1rem; padding-bottom: 1rem;
    gap: 1rem;
}
.logo {
    display: inline-flex; align-items: center; gap: 0.6rem;
    font-family: 'Lora', serif; font-weight: 700; font-size: 1.15rem;
    color: #1A1A1A;
}
.logo--light { color: #fff; }
.logo-icon { flex-shrink: 0; }
.main-nav {
    margin-left: auto;
    display: flex; align-items: center; gap: 2rem;
}
.main-nav ul { display: flex; gap: 1.75rem; }
.main-nav a {
    font-size: 0.9rem; font-weight: 500; color: #444;
    position: relative; transition: color 0.2s;
}
.main-nav a::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 2px; background: #C0593A;
    transition: width 0.25s ease;
}
.main-nav a:hover { color: #1A1A1A; }
.main-nav a:hover::after { width: 100%; }

/* Nav toggle */
.nav-toggle {
    display: none; margin-left: auto;
    width: 40px; height: 40px; position: relative;
}
.hamburger, .hamburger::before, .hamburger::after {
    display: block; width: 22px; height: 2px;
    background: #1A1A1A; border-radius: 2px;
    transition: all 0.3s ease;
}
.hamburger { position: relative; margin: 0 auto; }
.hamburger::before, .hamburger::after {
    content: ''; position: absolute; left: 0;
}
.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }
.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 768px) {
    .nav-toggle { display: block; }
    .main-nav {
        position: fixed; top: 0; right: 0; bottom: 0;
        width: 280px; max-width: 85vw;
        background: #1A1A1A; flex-direction: column;
        justify-content: center; align-items: center;
        gap: 1.5rem;
        transform: translateX(100%);
        transition: transform 0.35s ease;
        z-index: 99;
    }
    .main-nav.open { transform: translateX(0); }
    .main-nav a { color: #fff; font-size: 1.1rem; }
    .main-nav a:hover { color: #C0593A; }
    .main-nav a::after { display: none; }
    .btn--nav { margin-top: 0.5rem; }
    .nav-overlay {
        position: fixed; inset: 0; background: rgba(0,0,0,0.5);
        z-index: 98; opacity: 0; pointer-events: none;
        transition: opacity 0.3s ease;
    }
    .nav-overlay.active { opacity: 1; pointer-events: all; }
}

/* ─── Hero ─── */
.hero {
    min-height: 100vh;
    display: flex; align-items: center;
    padding-top: 5rem; padding-bottom: 2rem;
    position: relative;
    background: #FAFAF8;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.hero-eyebrow {
    font-size: 0.75rem; font-weight: 600;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: #C0593A; margin-bottom: 1rem;
}
.hero-headline {
    font-size: clamp(2.5rem, 5.5vw, 4.25rem);
    line-height: 1.05;
    color: #1A1A1A;
    margin-bottom: 1.5rem;
}
.hero-headline em {
    font-style: italic;
    color: #C0593A;
}
.hero-desc {
    font-size: 1.1rem;
    color: #555;
    max-width: 480px;
    margin-bottom: 2rem;
    line-height: 1.7;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-meta { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.meta-item {
    display: inline-flex; align-items: center; gap: 0.4rem;
    font-size: 0.85rem; color: #666;
}
.hero-image { position: relative; }
.hero-img-wrapper {
    border-radius: 16px; overflow: hidden;
    box-shadow: 0 24px 64px rgba(0,0,0,0.15);
}
.hero-img-wrapper img {
    width: 100%; height: 100%; object-fit: cover;
    display: block;
}
.hero-accent {
    position: absolute; bottom: -24px; left: -24px;
    color: #C0593A; opacity: 0.5;
}
.hero-wave {
    position: absolute; bottom: 0; left: 0; right: 0;
    line-height: 0;
}
.hero-wave svg { width: 100%; height: 80px; }

@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
    .hero-image { order: -1; max-width: 500px; margin: 0 auto; }
    .hero { padding-top: 6rem; }
}
@media (max-width: 480px) {
    .hero-img-wrapper { max-height: 360px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
}

/* ─── Pillars ─── */
.pillars {
    padding: 6rem 0;
    background: #1A1A1A;
    color: #fff;
}
.pillars .section-title { color: #fff; }
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.pillar-card {
    padding: 2.5rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    transition: transform 0.3s ease, background 0.3s ease;
}
.pillar-card:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,0.07);
}
.pillar-number {
    font-family: 'Lora', serif;
    font-size: 3rem; font-weight: 700;
    color: #C0593A; opacity: 0.5;
    line-height: 1; margin-bottom: 1rem;
}
.pillar-title {
    font-size: 1.35rem; margin-bottom: 0.75rem; color: #fff;
}
.pillar-text { color: #aaa; font-size: 0.95rem; line-height: 1.7; }

@media (max-width: 768px) {
    .pillars-grid { grid-template-columns: 1fr; }
    .pillars { padding: 4rem 0; }
}

/* ─── Menu ─── */
.menu {
    padding: 6rem 0;
    background: #FAFAF8;
}
.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}
.menu-column-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #C0593A;
    display: inline-block;
}
.menu-list { display: flex; flex-direction: column; gap: 0.5rem; }
.menu-item {
    display: flex; justify-content: space-between; align-items: baseline;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(26,26,26,0.08);
}
.menu-item-name { font-weight: 600; color: #1A1A1A; font-size: 1rem; }
.menu-item-note { font-size: 0.85rem; color: #888; font-style: italic; }
.menu-disclaimer {
    text-align: center;
    font-size: 0.85rem; color: #999;
    font-style: italic;
}

@media (max-width: 640px) {
    .menu-grid { grid-template-columns: 1fr; gap: 2rem; }
    .menu { padding: 4rem 0; }
}

/* ─── Spotlight ─── */
.spotlight {
    padding: 6rem 0;
    background: #1A1A1A;
    color: #fff;
}
.spotlight-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.spotlight-image { border-radius: 16px; overflow: hidden; }
.spotlight-image img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 16px; }
.spotlight-copy .section-eyebrow { margin-bottom: 0.75rem; }
.spotlight-copy .section-title { margin-bottom: 1.25rem; }
.spotlight-text { color: #bbb; font-size: 1rem; line-height: 1.75; margin-bottom: 1rem; }
.spotlight-copy .btn { margin-top: 1.5rem; }

@media (max-width: 900px) {
    .spotlight-grid { grid-template-columns: 1fr; gap: 2rem; }
    .spotlight-image { max-width: 500px; }
    .spotlight { padding: 4rem 0; }
}

/* ─── Visit ─── */
.visit {
    padding: 6rem 0;
    background: #FAFAF8;
}
.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}
.visit-info { display: flex; flex-direction: column; gap: 1.25rem; }
.visit-card {
    display: flex; align-items: flex-start; gap: 1rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 12px;
    border: 1px solid rgba(26,26,26,0.06);
    transition: box-shadow 0.3s ease;
}
.visit-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); }
.visit-card-icon {
    flex-shrink: 0; width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(192, 89, 58, 0.1);
    border-radius: 10px; color: #C0593A;
}
.visit-card-title {
    font-family: 'Lora', serif;
    font-size: 1.05rem; margin-bottom: 0.25rem; color: #1A1A1A;
}
.visit-card-text { font-size: 0.95rem; color: #555; line-height: 1.6; }
.visit-card-text a { color: #C0593A; font-weight: 500; }
.visit-card-text a:hover { text-decoration: underline; }
address { font-style: normal; }
.visit-map {
    min-height: 400px; border-radius: 12px; overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .visit-grid { grid-template-columns: 1fr; }
    .visit { padding: 4rem 0; }
}

/* ─── CTA ─── */
.cta {
    padding: 6rem 0;
    background: #C0593A;
}
.cta-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.cta-copy .section-title { color: #fff; margin-bottom: 1rem; }
.cta-copy .section-eyebrow { color: rgba(255,255,255,0.7); }
.cta-text { color: rgba(255,255,255,0.85); font-size: 1.05rem; line-height: 1.7; }
.cta-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
    font-size: 0.8rem; font-weight: 600;
    letter-spacing: 0.06em; text-transform: uppercase;
    color: rgba(255,255,255,0.8);
}
.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem 1rem;
    border: 1.5px solid rgba(255,255,255,0.25);
    border-radius: 8px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.2s, background 0.2s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.45); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #fff;
    background: rgba(255,255,255,0.15);
}
.form-group select { cursor: pointer; }
.form-group select option { color: #1A1A1A; background: #fff; }
.form-success {
    text-align: center; color: #fff;
    font-weight: 600; padding: 1rem;
    background: rgba(255,255,255,0.15);
    border-radius: 8px;
}

@media (max-width: 768px) {
    .cta-card { grid-template-columns: 1fr; gap: 2rem; }
    .form-row { grid-template-columns: 1fr; }
    .cta { padding: 4rem 0; }
}

/* ─── Footer ─── */
.site-footer {
    background: #111;
    color: #aaa;
    padding: 4rem 0 2rem;
}
.footer-top {
    display: flex; justify-content: space-between; align-items: flex-start;
    gap: 2rem; margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-tagline { font-size: 0.9rem; color: #888; margin-top: 0.75rem; max-width: 280px; }
.footer-nav ul { display: flex; gap: 1.5rem; }
.footer-nav a { font-size: 0.9rem; color: #aaa; transition: color 0.2s; }
.footer-nav a:hover { color: #C0593A; }
.footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 0.5rem;
    font-size: 0.85rem; color: #666;
}
.footer-bottom a { color: #C0593A; }
.footer-bottom a:hover { text-decoration: underline; }

@media (max-width: 640px) {
    .footer-top { flex-direction: column; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

/* ─── Scroll to top ─── */
.scroll-top {
    position: fixed; bottom: 2rem; right: 2rem;
    z-index: 50; opacity: 0; pointer-events: none;
    transition: opacity 0.3s ease;
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top button {
    width: 44px; height: 44px;
    background: #1A1A1A; color: #fff;
    border-radius: 50%; display: flex;
    align-items: center; justify-content: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    transition: background 0.2s, transform 0.2s;
}
.scroll-top button:hover { background: #C0593A; transform: scale(1.1); }

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