/* ==========================================================================
   Naggarte — design tokens (pulled from the original Woodmart theme config)
   ========================================================================== */
:root {
    --font-body: "Lato", Arial, Helvetica, sans-serif;
    --font-heading: "Playfair Display", Georgia, serif;

    --color-primary: rgb(75, 45, 20);      /* dark coffee brown */
    --color-accent: #fbbc34;               /* warm gold */
    --color-accent-alt: rgb(95, 110, 30);  /* olive green */
    --color-text: rgb(53, 53, 53);
    --color-heading: #242424;
    --color-dark-bg: #111111;
    --color-dark-bg-alt: #0a0a0a;
    --color-muted-bg: #f7f5f2;
    --color-border: #e7e2da;

    --container-width: 1222px;
    --radius: 0px;
    --gap: 1.5rem;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    color: var(--color-text);
    background: #fff;
    line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--color-heading);
    margin: 0 0 0.6em;
    line-height: 1.25;
}
h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; }

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section { padding: 5rem 0; scroll-margin-top: 76px; }
.section--dark { background: var(--color-dark-bg); color: #f2f2f2; }
.section--dark p { color: #cfcfcf; }
.section--muted { background: var(--color-muted-bg); }

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--color-accent-alt);
    margin-bottom: 0.5em;
    display: block;
}
.eyebrow--light { color: var(--color-accent); }
.section-head { max-width: 720px; margin: 0 auto 3rem; text-align: center; }
.section-head__title--light { color: #fff; }
.section-note { text-align: center; font-style: italic; margin-top: 2rem; font-family: var(--font-heading); font-size: 1.2rem; }

/* Buttons ---------------------------------------------------------------- */
.btn {
    display: inline-block;
    padding: 0.85rem 1.6rem;
    border-radius: var(--radius);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    border: 2px solid transparent;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    cursor: pointer;
}
.btn--accent { background: var(--color-accent); color: #241a08; }
.btn--accent:hover { background: #e6a92a; }
.btn--ghost { background: #f7f7f7; color: #333; }
.btn--ghost:hover { background: #ececec; }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.7); }
.btn--outline-light:hover { background: rgba(255,255,255,0.15); }
.btn--block { display: block; text-align: center; margin-bottom: 0.75rem; }

/* Header / nav ------------------------------------------------------------ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 500;
    background: rgba(255,255,255,0.97);
    border-bottom: 1px solid var(--color-border);
}
.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 0.75rem 1.5rem;
}
.site-logo img { height: 44px; width: auto; }
.site-nav ul { list-style: none; display: flex; gap: 1.75rem; margin: 0; padding: 0; }
.site-nav a {
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--color-heading);
}
.site-nav a:hover { color: var(--color-accent-alt); }
.site-header__actions { display: flex; gap: 0.75rem; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; width: 32px; height: 24px; flex-direction: column; justify-content: space-between; padding: 0; }
.nav-toggle span { display: block; height: 2px; background: var(--color-heading); }

/* Hero --------------------------------------------------------------------*/
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; overflow: hidden; color: #fff; }
.hero__media { position: absolute; inset: 0; overflow: hidden; background: #000; }
.hero__poster, .hero__video-wrap { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__video-wrap iframe {
    position: absolute;
    top: 50%; left: 50%;
    width: 100vw; height: 56.25vw; /* 16:9 */
    min-height: 100vh; min-width: 177.78vh;
    transform: translate(-50%, -50%);
    pointer-events: none;
}
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,12,6,0.55), rgba(20,12,6,0.75)); }
.hero__content { position: relative; z-index: 2; text-align: center; max-width: 900px; margin: 0 auto; }
.hero__title { color: #fff; }
.hero__subtitle { font-size: 1.1rem; color: #f0e9dc; margin-bottom: 2rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.85rem; justify-content: center; }

/* About ---------------------------------------------------------------- */
.about { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }

.about__collage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: start;
}
.about__collage-img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: 0 16px 32px rgba(36, 20, 8, 0.18);
}
.about__collage-img--a { margin-top: 3rem; }

.about__content { text-align: center; }
.about__eyebrow {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.15rem;
    color: var(--color-accent-alt);
    margin-bottom: 0.3em;
}
.about__content h2 { line-height: 1.2; }
.about__content h2 strong { font-weight: 700; }
.about__content p:not(.about__eyebrow) {
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    color: var(--color-text);
}

/* Card grids ------------------------------------------------------------ */
.card-grid { display: grid; gap: var(--gap); }
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.card-grid--4 { grid-template-columns: repeat(4, 1fr); }

.food-card { background: #1b1b1b; overflow: hidden; }
.food-card img { aspect-ratio: 4 / 5; object-fit: cover; }
.food-card__body { padding: 1.25rem; }
.food-card__body h3 { color: #fff; margin-bottom: 0.4em; }
.food-card__body p { color: #cfcfcf; margin: 0; font-size: 0.9rem; }

.banner-feature { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center; margin-top: 2rem; }
.banner-feature p { font-size: 1.1rem; color: #f0e9dc; }

.visitor-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gap);
}
.visitor-card {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: var(--radius);
    isolation: isolate;
    box-shadow: 0 6px 18px rgba(36, 20, 8, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.visitor-card:hover,
.visitor-card:focus-within {
    transform: translateY(-6px);
    box-shadow: 0 16px 30px rgba(36, 20, 8, 0.22);
}
.visitor-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.visitor-card:hover img,
.visitor-card:focus-within img {
    transform: scale(1.08);
}
.visitor-card__scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20, 12, 6, 0) 15%, rgba(20, 12, 6, 0.6) 55%, rgba(20, 12, 6, 0.92) 100%);
    z-index: 1;
}
.visitor-card__num {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    width: 2.4rem;
    height: 2.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-accent);
    color: #241a08;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}
.visitor-card__body {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    z-index: 2;
    padding: 1.5rem;
}
.visitor-card__body h3 {
    color: #fff;
    margin-bottom: 0.4em;
    position: relative;
    padding-bottom: 0.6em;
}
.visitor-card__body h3::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    height: 2px;
    width: 2.2rem;
    background: var(--color-accent);
    transition: width 0.3s ease;
}
.visitor-card:hover .visitor-card__body h3::after,
.visitor-card:focus-within .visitor-card__body h3::after {
    width: 3.6rem;
}
.visitor-card__body p {
    font-size: 0.88rem;
    color: #f0e9dc;
    margin: 0;
}

/* Mosaic (services + workshops, full-bleed) ------------------------------ */
.mosaic { padding: 0; }
.mosaic__grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr 1.3fr 2.4fr;
    height: 85vh;
    min-height: 560px;
    max-height: 820px;
}
.mosaic__col { display: flex; flex-direction: column; }
.mosaic__col .mosaic__cell { flex: 1 1 0; min-height: 0; }

.mosaic__cell { position: relative; overflow: hidden; }
.mosaic__cell--photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.mosaic__scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 6, 2, 0) 40%, rgba(10, 6, 2, 0.85) 100%);
    z-index: 1;
}
.mosaic__text {
    position: absolute;
    left: 0; right: 0;
    z-index: 2;
    padding: 1.75rem;
}
.mosaic__text--bottom { bottom: 0; }
.mosaic__text .mosaic__eyebrow {
    color: #e5ded0;
    font-size: 0.85rem;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 400;
    font-family: var(--font-body);
    margin-bottom: 0.3em;
}
.mosaic__text h3 { color: #fff; font-size: 1.7rem; margin-bottom: 0.3em; }
.mosaic__text p { color: #e5ded0; font-size: 0.9rem; max-width: 420px; margin: 0; }

.mosaic__cell--dark {
    background: var(--color-dark-bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.75rem;
    color: #fff;
}
.mosaic__cell--dark .mosaic__eyebrow {
    color: #cfcfcf;
    font-size: 0.8rem;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 400;
    font-family: var(--font-body);
    margin-bottom: 0.4em;
}
.mosaic__cell--dark h3 { color: #fff; font-size: 1.5rem; text-transform: uppercase; margin-bottom: 0.5em; }
.mosaic__cell--dark p { color: #cfcfcf; font-size: 0.88rem; max-width: 260px; margin: 0; }

/* Gallery / lightbox ------------------------------------------------------*/
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.6rem; width: 100%; }
.gallery-grid__item { display: block; overflow: hidden; position: relative; aspect-ratio: 4/3; }
.gallery-grid__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.gallery-grid__item:hover img { transform: scale(1.06); }

.lightbox {
    position: fixed; inset: 0; z-index: 1000;
    background: rgba(0,0,0,0.92);
    display: flex; align-items: center; justify-content: center;
}
.lightbox[hidden] { display: none; }
.lightbox__image { max-width: 90vw; max-height: 85vh; }
.lightbox__close, .lightbox__prev, .lightbox__next {
    position: absolute; background: none; border: none; color: #fff;
    font-size: 2rem; cursor: pointer; padding: 0.5rem 1rem;
}
.lightbox__close { top: 1rem; right: 1.5rem; }
.lightbox__prev { left: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 1rem; top: 50%; transform: translateY(-50%); }

/* Reviews / testimonials ---------------------------------------------------*/
.testimonial-card {
    background: #fff;
    border: 1px solid var(--color-border);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
}
.testimonial-card__stars { color: var(--color-accent); letter-spacing: 0.15em; font-size: 0.95rem; margin-bottom: 0.75rem; }
.testimonial-card__text { font-size: 0.92rem; flex-grow: 1; margin-bottom: 1rem; }
.testimonial-card__name { font-size: 0.85rem; font-weight: 700; color: var(--color-accent-alt); margin: 0; }

/* Book with us (full-bleed photo + live map) ------------------------------ */
.book { display: grid; grid-template-columns: 1fr 1fr; min-height: 600px; }
.book__photo { position: relative; overflow: hidden; }
.book__photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.book__scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 6, 2, 0.35), rgba(10, 6, 2, 0.72));
    z-index: 1;
}
.book__content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 2rem;
    color: #fff;
}
.book__icon { color: var(--color-accent); margin-bottom: 1rem; }
.book__eyebrow { font-family: var(--font-heading); font-style: italic; font-size: 1.1rem; color: #f0e9dc; margin-bottom: 0.3em; }
.book__content h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2.1rem); max-width: 480px; margin-bottom: 1.5rem; }
.book__checklist { list-style: none; margin: 0; padding: 0; text-align: left; }
.book__checklist li { display: flex; align-items: flex-start; gap: 0.6rem; margin-bottom: 0.7rem; font-size: 0.95rem; }
.book__check { flex-shrink: 0; margin-top: 0.3em; color: var(--color-accent); }

.book__map { position: relative; }
.book__map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Contact -----------------------------------------------------------------*/
.contact { text-align: center; }
.contact__address { font-size: 1.05rem; }
.contact__buttons { max-width: 360px; margin: 1.5rem auto; }
.contact__socials { display: flex; justify-content: center; gap: 1rem; text-transform: uppercase; font-size: 0.8rem; font-weight: 700; }

/* Footer --------------------------------------------------------------- */
.site-footer { background: var(--color-dark-bg-alt); color: #cfcfcf; padding: 3rem 0; text-align: center; }
.site-footer__brand { font-family: var(--font-heading); color: #fff; font-size: 1.3rem; }
.site-footer__socials { display: flex; justify-content: center; gap: 1rem; margin-bottom: 1rem; text-transform: uppercase; font-size: 0.8rem; font-weight: 700; }
.site-footer__copy { font-size: 0.85rem; margin: 0; }

/* Floating actions -------------------------------------------------------- */
.floating-actions { position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 400; display: flex; flex-direction: column; gap: 0.75rem; }
.floating-actions__btn {
    width: 54px; height: 54px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}
.floating-actions__btn--whatsapp { background: #25d366; color: #fff; }
.floating-actions__btn--call { background: var(--color-primary); color: #fff; }
