/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'DM Sans', system-ui, sans-serif;
    color: #1a1a2e;
    background: #faf9f7;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Color Tokens ── */
:root {
    --charcoal: #1a1a2e;
    --charcoal-light: #2d2d44;
    --coral: #e07a5f;
    --coral-dark: #c4624a;
    --coral-light: #f2a08b;
    --cream: #faf9f7;
    --warm-gray: #f0ede8;
    --text: #1a1a2e;
    --text-muted: #6b6b80;
    --white: #ffffff;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 24px rgba(26, 26, 46, 0.08);
    --shadow-lg: 0 12px 48px rgba(26, 26, 46, 0.12);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Typography ── */
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; line-height: 1.2; }

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}
.btn--primary {
    background: var(--coral);
    color: var(--white);
    border-color: var(--coral);
}
.btn--primary:hover {
    background: var(--coral-dark);
    border-color: var(--coral-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(224, 122, 95, 0.35);
}
.btn--ghost {
    background: transparent;
    color: var(--charcoal);
    border-color: var(--charcoal);
}
.btn--ghost:hover {
    background: var(--charcoal);
    color: var(--white);
    transform: translateY(-2px);
}
.btn--small {
    padding: 10px 24px;
    font-size: 0.875rem;
}
.btn--full { width: 100%; justify-content: center; }

/* ── Section Eyebrow ── */
.section-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 12px;
}
.section-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    color: var(--charcoal);
    margin-bottom: 16px;
}
.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 560px;
}
.section-header { text-align: center; margin-bottom: 64px; }
.section-header .section-subtitle { margin: 0 auto; }

/* ── NAV ── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 249, 247, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(26, 26, 46, 0.06);
    transition: var(--transition);
}
.nav.scrolled { box-shadow: var(--shadow); }
.nav__inner {
    display: flex;
    align-items: center;
    height: 72px;
}
.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--charcoal);
}
.nav__logo-icon {
    width: 32px;
    height: 32px;
    color: var(--coral);
}
.nav__links {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-left: auto;
}
.nav__links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: var(--transition);
    position: relative;
}
.nav__links a:hover { color: var(--charcoal); }
.nav__links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--coral);
    transition: var(--transition);
}
.nav__links a:hover::after { width: 100%; }
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: auto;
}
.nav__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    transition: var(--transition);
}
.nav__toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -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: 64px;
    align-items: center;
}
.hero__eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 16px;
}
.hero__headline {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--charcoal);
    line-height: 1.1;
    margin-bottom: 24px;
}
.hero__body {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 480px;
}
.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}
.hero__trust {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}
.hero__trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--charcoal);
}
.hero__image { position: relative; }
.hero__image-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}
.hero__image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero__image-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: var(--coral);
    border-radius: 50%;
    opacity: 0.15;
    z-index: 1;
}
.hero__image-accent::after {
    content: '';
    position: absolute;
    top: 40px;
    left: 40px;
    width: 80px;
    height: 80px;
    background: var(--coral);
    border-radius: 50%;
    opacity: 0.1;
}

/* ── ABOUT ── */
.about {
    padding: 120px 0;
    background: var(--white);
}
.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about__image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about__image img { width: 100%; height: 100%; object-fit: cover; }
.about__text {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}
.about__stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(26, 26, 46, 0.08);
}
.about__stat { display: flex; flex-direction: column; gap: 4px; }
.about__stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--coral);
}
.about__stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ── MENU ── */
.menu {
    padding: 120px 0;
    background: var(--cream);
}
.menu__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}
.menu-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.menu-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.menu-card__img {
    overflow: hidden;
    height: 220px;
}
.menu-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.menu-card:hover .menu-card__img img { transform: scale(1.05); }
.menu-card__body { padding: 28px; }
.menu-card__title {
    font-size: 1.35rem;
    margin-bottom: 10px;
    color: var(--charcoal);
}
.menu-card__desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ── GALLERY ── */
.gallery {
    padding: 120px 0;
    background: var(--white);
}
.gallery__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 260px);
    gap: 20px;
}
.gallery__item {
    border-radius: var(--radius);
    overflow: hidden;
}
.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery__item:hover img { transform: scale(1.05); }
.gallery__item--large { grid-column: span 5; grid-row: span 2; }
.gallery__item:nth-child(2) { grid-column: span 4; }
.gallery__item:nth-child(3) { grid-column: span 3; }
.gallery__item:nth-child(4) { grid-column: span 4; }
.gallery__item:nth-child(5) { grid-column: span 3; }

/* ── VISIT ── */
.visit {
    padding: 120px 0;
    background: var(--charcoal);
    color: var(--white);
}
.visit__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: stretch;
}
.visit .section-eyebrow { color: var(--coral-light); }
.visit .section-title { color: var(--white); }
.visit__details { display: flex; flex-direction: column; gap: 32px; margin-top: 48px; }
.visit__detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.visit__detail svg { color: var(--coral); flex-shrink: 0; margin-top: 2px; }
.visit__detail strong {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--coral-light);
    margin-bottom: 4px;
}
.visit__detail p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    line-height: 1.6;
}
.visit__detail a {
    color: rgba(255, 255, 255, 0.75);
    transition: var(--transition);
}
.visit__detail a:hover { color: var(--coral-light); }
.visit__map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 420px;
    box-shadow: var(--shadow-lg);
}

/* ── CONTACT ── */
.contact {
    padding: 120px 0;
    background: var(--cream);
}
.contact__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.contact__text {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-top: 16px;
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form__group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form__group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--charcoal);
    letter-spacing: 0.04em;
}
.form__group input,
.form__group textarea {
    padding: 14px 18px;
    border: 2px solid rgba(26, 26, 46, 0.1);
    border-radius: var(--radius);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--charcoal);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}
.form__group input:focus,
.form__group textarea:focus {
    border-color: var(--coral);
    box-shadow: 0 0 0 4px rgba(224, 122, 95, 0.1);
}
.form__group input::placeholder,
.form__group textarea::placeholder { color: var(--text-muted); opacity: 0.5; }
.form__success {
    display: none;
    margin-top: 16px;
    padding: 14px 18px;
    background: rgba(224, 122, 95, 0.1);
    border: 1px solid rgba(224, 122, 95, 0.3);
    border-radius: var(--radius);
    color: var(--coral-dark);
    font-size: 0.9rem;
    font-weight: 500;
}
.form__success.show { display: block; }

/* ── FOOTER ── */
.footer {
    background: var(--charcoal);
    color: var(--white);
    padding: 80px 0 0;
}
.footer__inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 64px;
    padding-bottom: 64px;
}
.footer__logo { color: var(--white); margin-bottom: 16px; }
.footer__brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 300px;
}
.footer__links strong,
.footer__contact strong {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--coral-light);
    margin-bottom: 20px;
}
.footer__links ul,
.footer__contact ul { display: flex; flex-direction: column; gap: 12px; }
.footer__links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    transition: var(--transition);
}
.footer__links a:hover { color: var(--white); }
.footer__contact ul { gap: 14px; }
.footer__contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}
.footer__contact a:hover { color: var(--coral-light); }
.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
}
.footer__bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.footer__bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

/* ── Mobile Menu Overlay ── */
.nav__links.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(250, 249, 247, 0.98);
    backdrop-filter: blur(16px);
    justify-content: center;
    align-items: center;
    gap: 32px;
    z-index: 999;
}
.nav__links.mobile-open a { font-size: 1.25rem; }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .hero__grid,
    .about__grid,
    .visit__grid,
    .contact__inner { gap: 48px; }
    .footer__inner { grid-template-columns: 1fr 1fr; gap: 48px; }
}

@media (max-width: 768px) {
    .nav__links { display: none; }
    .nav__toggle { display: flex; }
    .hero { min-height: auto; padding: 120px 0 80px; }
    .hero__grid { grid-template-columns: 1fr; gap: 40px; }
    .hero__image { order: -1; }
    .hero__image-wrapper { max-height: 360px; }
    .hero__actions { flex-direction: column; }
    .hero__actions .btn { justify-content: center; }
    .about__grid { grid-template-columns: 1fr; gap: 40px; }
    .about__image { max-height: 360px; }
    .about__image img { }
    .menu__grid { grid-template-columns: 1fr; }
    .gallery__grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    .gallery__item--large { grid-column: span 2; grid-row: span 1; }
    .gallery__item:nth-child(2),
    .gallery__item:nth-child(3),
    .gallery__item:nth-child(4),
    .gallery__item:nth-child(5) { grid-column: span 1; }
    .gallery__item { height: 220px; }
    .visit__grid { grid-template-columns: 1fr; gap: 48px; }
    .visit__map { min-height: 300px; }
    .contact__inner { grid-template-columns: 1fr; gap: 48px; }
    .form__row { grid-template-columns: 1fr; }
    .footer__inner { grid-template-columns: 1fr; gap: 40px; }
    .footer__bottom-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .container { padding: 0 20px; }
    .hero__trust { flex-direction: column; gap: 16px; }
    .about__stats { flex-direction: column; gap: 24px; }
    .gallery__grid { grid-template-columns: 1fr; }
    .gallery__item--large { grid-column: span 1; }
}

/* ── Animations ── */
.fade-up {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}
