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

:root {
    --cream: #FAF6EE;
    --cream-dark: #F0E9D8;
    --brown: #3E2415;
    --brown-light: #5C3A24;
    --brown-medium: #7A5540;
    --warm: #C4956A;
    --warm-light: #E8D5BF;
    --accent: #B8860B;
    --accent-hover: #9A7209;
    --white: #FFFFFF;
    --shadow-sm: 0 1px 3px rgba(62, 36, 21, 0.08);
    --shadow-md: 0 4px 12px rgba(62, 36, 21, 0.1);
    --shadow-lg: 0 8px 30px rgba(62, 36, 21, 0.12);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--brown);
    background: var(--cream);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

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

a {
    color: var(--brown-light);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--accent);
}

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
    text-decoration: none;
    gap: 8px;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--brown);
    color: var(--cream);
    border-color: var(--brown);
}

.btn-primary:hover {
    background: var(--brown-light);
    border-color: var(--brown-light);
    color: var(--cream);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--brown);
    border-color: var(--brown);
}

.btn-outline:hover {
    background: var(--brown);
    color: var(--cream);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--white);
    color: var(--brown);
    border-color: var(--white);
}

.btn-white:hover {
    background: var(--cream);
    border-color: var(--cream);
    color: var(--brown);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-white-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

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

/* === Navigation === */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 246, 238, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(62, 36, 21, 0.08);
    transition: box-shadow var(--transition);
}

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

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--brown);
}

.nav-logo img {
    border-radius: 50%;
    width: 42px;
    height: 42px;
    object-fit: cover;
}

.nav-logo:hover {
    color: var(--brown);
}

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

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--brown-medium);
    position: relative;
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brown);
    transition: width var(--transition);
}

.nav-links a:not(.btn):hover {
    color: var(--brown);
}

.nav-links a:not(.btn):hover::after {
    width: 100%;
}

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

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--brown);
    border-radius: 2px;
    transition: all var(--transition);
}

/* === Hero === */
.hero {
    padding: 120px 0 60px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 60px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.15;
    color: var(--brown);
    margin-bottom: 8px;
}

.hero h1 strong {
    font-weight: 800;
}

.hero-tagline {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--warm);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--brown-medium);
    margin-bottom: 32px;
    max-width: 520px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.hero-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--brown-medium);
    font-size: 0.95rem;
}

.stars {
    display: flex;
    gap: 2px;
}

.stars svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
}

.stars .star-half {
    opacity: 0.5;
}

.hero-logo img {
    width: 100%;
    max-width: 380px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    margin: 0 auto;
}

/* === Section === */
.section {
    padding: 80px 0;
}

.section-alt {
    background: var(--cream-dark);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 12px;
    color: var(--brown);
}

.section-subtitle {
    text-align: center;
    color: var(--brown-medium);
    font-size: 1.05rem;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-title + .about-grid,
.section-title + .offer-grid,
.section-title + .hours-wrapper,
.section-title + .contact-grid {
    margin-top: 48px;
}

/* === About === */
.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.about-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}

.about-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.about-icon {
    width: 56px;
    height: 56px;
    background: var(--cream-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.about-icon svg {
    width: 28px;
    height: 28px;
    color: var(--brown);
}

.about-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--brown);
}

.about-card p {
    color: var(--brown-medium);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* === Offer === */
.offer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.offer-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}

.offer-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.offer-badge {
    display: inline-block;
    background: var(--brown);
    color: var(--cream);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.offer-badge-alt {
    background: var(--accent);
}

.offer-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.offer-price {
    margin-bottom: 16px;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.price-amount {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--brown);
}

.price-label {
    font-size: 0.95rem;
    color: var(--brown-medium);
}

.offer-desc {
    color: var(--brown-medium);
    margin-bottom: 20px;
    line-height: 1.6;
}

.offer-features {
    list-style: none;
    margin-bottom: 28px;
}

.offer-features li {
    padding: 6px 0;
    padding-left: 28px;
    position: relative;
    color: var(--brown-medium);
    font-size: 0.95rem;
}

.offer-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 18px;
    height: 18px;
    background: var(--cream-dark);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%233E2415' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20,6 9,17 4,12'/%3E%3C/svg%3E");
    background-size: 12px;
    background-position: center;
    background-repeat: no-repeat;
}

/* === Mission === */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.mission-item {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}

.mission-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.mission-icon {
    width: 48px;
    height: 48px;
    background: var(--cream-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.mission-icon svg {
    width: 22px;
    height: 22px;
    color: var(--brown);
}

.mission-item h3 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--brown);
}

.mission-item p {
    font-size: 0.85rem;
    color: var(--brown-medium);
    line-height: 1.5;
}

/* === Hours === */
.hours-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

.hours-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 48px;
    box-shadow: var(--shadow-md);
    min-width: 420px;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
}

.hours-table td {
    padding: 12px 0;
    border-bottom: 1px solid var(--cream-dark);
    font-size: 1.05rem;
}

.hours-table tr:last-child td {
    border-bottom: none;
}

.hours-table td:first-child {
    font-weight: 500;
    color: var(--brown);
    padding-right: 48px;
}

.hours-table td:last-child {
    text-align: right;
    color: var(--brown-medium);
    font-weight: 600;
    font-variant-numeric: tabular-nums;
}

.hours-note {
    margin-top: 20px;
    text-align: center;
    color: var(--warm);
    font-weight: 500;
    font-size: 0.95rem;
}

/* === Contact === */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    margin-top: 48px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--cream-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon svg {
    width: 22px;
    height: 22px;
    color: var(--brown);
}

.contact-item h3 {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--brown-medium);
    margin-bottom: 4px;
}

.contact-item p,
.contact-item a {
    font-size: 1.05rem;
    color: var(--brown);
    font-weight: 500;
}

.contact-item a:hover {
    color: var(--accent);
}

.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    min-height: 400px;
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 400px;
}

/* === CTA === */
.cta {
    background: var(--brown);
    color: var(--cream);
    padding: 64px 0;
}

.cta-inner {
    text-align: center;
}

.cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 12px;
    color: var(--cream);
}

.cta p {
    font-size: 1.1rem;
    opacity: 0.85;
    margin-bottom: 32px;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* === Footer === */
.footer {
    background: var(--brown);
    color: var(--cream);
    padding: 40px 0 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-brand img {
    border-radius: 50%;
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.footer-brand strong {
    display: block;
    font-size: 1.1rem;
}

.footer-brand span {
    font-size: 0.85rem;
    opacity: 0.7;
}

.footer-links {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: var(--cream);
    opacity: 0.7;
    font-size: 0.9rem;
    font-weight: 500;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--cream);
}

.footer-social a {
    color: var(--cream);
    opacity: 0.7;
    transition: opacity var(--transition);
}

.footer-social a:hover {
    opacity: 1;
    color: var(--cream);
}

.footer-social svg {
    width: 28px;
    height: 28px;
}

.footer-copy {
    font-size: 0.8rem;
    opacity: 0.5;
    text-align: center;
}

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

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

/* === Responsive === */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 2.8rem;
    }

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

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

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

    .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(250, 246, 238, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        box-shadow: var(--shadow-md);
    }

    .nav-links.open {
        display: flex;
    }

    .hero {
        padding: 100px 0 40px;
        min-height: auto;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-text {
        order: 2;
    }

    .hero-logo {
        order: 1;
    }

    .hero-logo img {
        max-width: 240px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-tagline {
        font-size: 1.2rem;
    }

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

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

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

    .about-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .mission-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .section {
        padding: 56px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .hours-card {
        min-width: auto;
        padding: 28px 24px;
        width: 100%;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .cta h2 {
        font-size: 1.6rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .price-amount {
        font-size: 2rem;
    }

    .hours-table td {
        font-size: 0.95rem;
    }

    .hours-table td:first-child {
        padding-right: 16px;
    }
}
