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

:root {
    --terracotta: #C2704E;
    --terracotta-deep: #A85A3A;
    --sand: #F5EDE3;
    --sand-light: #FAF6F1;
    --sand-dark: #E8DDD0;
    --charcoal: #2A2420;
    --charcoal-light: #4A403A;
    --cream: #FDF9F5;
    --white: #FFFFFF;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', -apple-system, sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    font-weight: 300;
    color: var(--charcoal);
    background: var(--cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: var(--charcoal);
    color: var(--white);
    padding: 0.5rem 1rem;
    z-index: 1000;
    text-decoration: none;
    border-radius: 0 0 4px 4px;
    font-size: 0.875rem;
}
.skip-link:focus {
    top: 0;
}

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

/* Typography */
h1, h2, h3 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.2;
}

/* Eyebrow */
.section-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 1rem;
}

/* Section Title */
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--charcoal);
    margin-bottom: 1.5rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 2px;
}

.btn-primary {
    background: var(--terracotta);
    color: var(--white);
}
.btn-primary:hover {
    background: var(--terracotta-deep);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--charcoal);
    border: 1px solid var(--charcoal);
}
.btn-outline:hover {
    background: var(--charcoal);
    color: var(--white);
}

.btn-ghost {
    background: rgba(255,255,255,0.12);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.4);
    backdrop-filter: blur(4px);
}
.btn-ghost:hover {
    background: rgba(255,255,255,0.22);
}

.btn-sm {
    padding: 0.625rem 1.5rem;
    font-size: 0.8125rem;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.25rem 0;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(253, 249, 245, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--sand-dark);
    padding: 0.875rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    text-decoration: none;
    color: var(--white);
    transition: var(--transition);
}

.header.scrolled .logo {
    color: var(--charcoal);
}

.logo-mark {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 600;
    width: 36px;
    height: 36px;
    border: 1px solid currentColor;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    letter-spacing: 0.02em;
}

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

.nav a {
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    color: rgba(255,255,255,0.85);
    transition: var(--transition);
    position: relative;
}

.header.scrolled .nav a {
    color: var(--charcoal-light);
}

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

.nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--terracotta);
    transition: var(--transition);
}

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

/* Nav Toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger {
    display: block;
    width: 22px;
    height: 1px;
    background: var(--white);
    position: relative;
    transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 1px;
    background: var(--white);
    left: 0;
    transition: var(--transition);
}

.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

.header.scrolled .hamburger { background: var(--charcoal); }
.header.scrolled .hamburger::before,
.header.scrolled .hamburger::after { background: var(--charcoal); }

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

/* Hero */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(42, 36, 32, 0.45) 0%,
        rgba(42, 36, 32, 0.3) 50%,
        rgba(42, 36, 32, 0.6) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    padding-top: 4rem;
}

.hero-eyebrow {
    color: rgba(255,255,255,0.75);
    margin-bottom: 1.5rem;
}

.hero-headline {
    font-size: clamp(2.5rem, 5.5vw, 4.25rem);
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-sub {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2.5rem;
    max-width: 480px;
    line-height: 1.8;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.6);
    animation: float 2s ease-in-out infinite;
    text-decoration: none;
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* Features / Menu */
.features {
    padding: 8rem 0;
}

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

.feature-card {
    text-decoration: none;
    color: inherit;
}

.feature-img {
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    aspect-ratio: 3/2;
}

.feature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .feature-img img {
    transform: scale(1.05);
}

.feature-card h3 {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
    color: var(--charcoal);
}

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

.menu-note {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--sand-dark);
    font-size: 0.875rem;
    color: var(--charcoal-light);
}

.menu-note svg {
    flex-shrink: 0;
    color: var(--terracotta);
}

/* About */
.about {
    padding: 8rem 0;
    background: var(--sand-light);
}

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

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 7/9;
}

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

.about-img-small {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(42, 36, 32, 0.15);
    aspect-ratio: 5/3.5;
    border: 4px solid var(--sand-light);
}

.about-img-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.about-content p {
    font-size: 0.9375rem;
    color: var(--charcoal-light);
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--sand-dark);
}

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

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

/* Location */
.location {
    padding: 8rem 0;
}

.location-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 40px rgba(42, 36, 32, 0.06);
}

.location-info {
    padding: 4rem;
}

.location-info .section-title {
    margin-bottom: 2.5rem;
}

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

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

.location-item svg {
    flex-shrink: 0;
    color: var(--terracotta);
    margin-top: 0.125rem;
}

.location-item strong {
    display: block;
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--charcoal);
    margin-bottom: 0.25rem;
}

.location-item p,
.location-item a {
    font-size: 0.9375rem;
    color: var(--charcoal-light);
    text-decoration: none;
    line-height: 1.6;
}

.location-item a:hover {
    color: var(--terracotta);
}

.location-map {
    background: var(--sand);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder {
    text-align: center;
    padding: 3rem;
}

.map-placeholder svg {
    color: var(--terracotta);
    margin-bottom: 1.5rem;
    opacity: 0.7;
}

.map-placeholder p {
    font-size: 0.9375rem;
    color: var(--charcoal-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* CTA */
.cta {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
}

.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta .hero-overlay {
    background: linear-gradient(
        to right,
        rgba(42, 36, 32, 0.75) 0%,
        rgba(42, 36, 32, 0.55) 100%
    );
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 560px;
}

.cta-content .section-eyebrow {
    color: rgba(255,255,255,0.7);
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 1.25rem;
}

.cta-content p {
    font-size: 1.0625rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

/* Contact */
.contact {
    padding: 8rem 0;
    background: var(--sand-light);
}

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

.contact-info .section-title {
    margin-bottom: 1.25rem;
}

.contact-info > p {
    font-size: 0.9375rem;
    color: var(--charcoal-light);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

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

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--charcoal);
    text-decoration: none;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--terracotta);
}

.contact-link svg {
    color: var(--terracotta);
}

/* Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--charcoal-light);
}

.form-group input,
.form-group textarea {
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 300;
    color: var(--charcoal);
    background: var(--white);
    border: 1px solid var(--sand-dark);
    border-radius: 2px;
    padding: 0.875rem 1rem;
    transition: var(--transition);
    outline: none;
    resize: vertical;
}

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

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

.form-success {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--terracotta);
    padding: 1rem;
    background: rgba(194, 112, 78, 0.06);
    border-radius: 2px;
}

/* Footer */
.footer {
    background: var(--charcoal);
    color: rgba(255,255,255,0.6);
    padding: 4rem 0 2rem;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

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

.footer-brand .logo-mark {
    width: 44px;
    height: 44px;
    font-size: 1.25rem;
}

.footer-brand .logo-text {
    font-size: 1.25rem;
    color: var(--white);
}

.footer-brand p {
    font-size: 0.875rem;
    max-width: 280px;
    line-height: 1.7;
}

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

.footer-links a {
    font-size: 0.8125rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.8125rem;
}

.footer-bottom a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: var(--transition);
}

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

/* Responsive */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .features-grid .feature-card:last-child {
        grid-column: span 2;
    }
}

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

    .nav-toggle {
        display: block;
        z-index: 101;
    }

    .nav {
        position: fixed;
        inset: 0;
        background: rgba(253, 249, 245, 0.98);
        backdrop-filter: blur(12px);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }

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

    .nav ul {
        flex-direction: column;
        gap: 2rem;
    }

    .nav a {
        font-size: 1.125rem;
        color: var(--charcoal) !important;
    }

    .hero-headline {
        font-size: clamp(2rem, 8vw, 3rem);
    }

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

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

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

    .features-grid .feature-card:last-child {
        grid-column: span 1;
    }

    .about-grid,
    .location-card,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-images {
        order: -1;
    }

    .about-img-small {
        right: 0;
        bottom: -1.5rem;
    }

    .location-info {
        padding: 2.5rem;
    }

    .location-map {
        min-height: 280px;
    }

    .cta-content {
        max-width: 100%;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

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

@media (max-width: 480px) {
    .features,
    .about,
    .location,
    .cta,
    .contact {
        padding: 5rem 0;
    }

    .about-img-small {
        position: relative;
        bottom: 0;
        right: 0;
        margin-top: 1rem;
        border: none;
        box-shadow: none;
    }

    .about-images {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .about-img-main {
        aspect-ratio: 4/3;
    }

    .about-stats {
        gap: 2rem;
        flex-wrap: wrap;
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
