/* ============================================================
   Le Restaurant — La Cueille
   ============================================================ */

.lc-resto {
    background: var(--lc-cream, #F5F0E8);
    font-family: var(--font-body, 'Inter', sans-serif);
    color: var(--lc-dark, #1A1A18);
}

/* ── Header ───────────────────────────────────────────────── */
.lc-resto__header {
    background: var(--lc-dark, #1A1A18);
    padding: clamp(48px, 7vw, 100px) 24px clamp(40px, 6vw, 80px);
    text-align: center;
}

.lc-resto__header-inner {
    max-width: var(--lc-max, 1200px);
    margin: 0 auto;
}

.lc-resto__tag {
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: rgba(255,255,255,.7);
    margin: 0 0 12px;
}

.lc-resto__title {
    font-family: var(--font-heading, 'Cormorant Garamond', serif);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 400;
    color: #fff;
    margin: 0 0 12px;
}

.lc-resto__subtitle {
    font-size: .95rem;
    color: rgba(255,255,255,.55);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ── Body ─────────────────────────────────────────────────── */
.lc-resto__body {
    max-width: var(--lc-max, 1200px);
    margin: 0 auto;
    padding: clamp(32px, 5vw, 56px) 24px 56px;
}

/* ── Section ──────────────────────────────────────────────── */
.lc-resto__section {
    padding: clamp(2rem, 4vw, 3.5rem) 0;
}

.lc-resto__section + .lc-resto__section {
    border-top: 1px solid var(--lc-cream-dark, #EDE7D9);
}

/* ── Labels & titres ──────────────────────────────────────── */
.lc-resto__label {
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--lc-gold, #A8854A);
    margin: 0 0 .4rem;
}

.lc-resto__h2 {
    font-family: var(--font-heading, 'Cormorant Garamond', serif);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 400;
    color: var(--lc-dark, #1A1A18);
    line-height: 1.15;
    margin: 0 0 1.5rem;
}

.lc-resto__text {
    font-size: .95rem;
    line-height: 1.75;
    color: var(--lc-stone, #7A6A57);
    margin: 0 0 1rem;
}

.lc-resto__link {
    display: inline-block;
    margin-top: .5rem;
    font-size: .85rem;
    font-weight: 600;
    color: var(--lc-terracotta, #B85C35);
    text-decoration: none;
}

.lc-resto__link:hover { text-decoration: underline; }

/* ── Grids ────────────────────────────────────────────────── */
.lc-resto__grid2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: start;
}

.lc-resto__grid3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

/* ── Image ────────────────────────────────────────────────── */
.lc-resto__img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 8px;
}

/* ── Galerie ──────────────────────────────────────────────── */
.lc-resto__gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.lc-resto__gallery-item {
    overflow: hidden;
    border-radius: 6px;
    aspect-ratio: 1;
}

.lc-resto__gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s;
}

.lc-resto__gallery-item:hover img { transform: scale(1.06); }

/* ── Menu card ────────────────────────────────────────────── */
.lc-resto__menucard {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,.04);
}

.lc-resto__menucard--dark {
    background: #1A1A18 !important;
    color: rgba(255,255,255,.8) !important;
}

.lc-resto__menucard--dark .lc-resto__menucard-body h3 {
    color: #A8854A !important;
}

.lc-resto__menucard--dark .lc-resto__menucard-content,
.lc-resto__menucard--dark .lc-resto__menucard-content li,
.lc-resto__menucard--dark .lc-resto__menucard-content p {
    color: rgba(255,255,255,.7) !important;
}

.lc-resto__menucard-body > a[data-fancybox] {
    float: left;
    width: 40%;
    margin: 0 1.25rem 0.5rem 0;
}

.lc-resto__menucard-photo {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    display: block;
    border-radius: 6px;
    cursor: zoom-in;
}

.lc-resto__menucard-body {
    padding: 1.25rem;
    overflow: hidden; /* clearfix for float */
}

.lc-resto__menucard-body > h3 {
    font-family: var(--font-heading, 'Cormorant Garamond', serif);
    font-size: 1.4rem;
    font-weight: 400;
    color: #1A1A18 !important;
    margin: 0 0 1rem;
    padding-bottom: .6rem;
    border-bottom: 2px solid var(--lc-terracotta, #B85C35);
    display: inline-block;
}

.lc-resto__menucard-content {
    font-size: .85rem;
    line-height: 1.5;
}

.lc-resto__menucard-content h3 {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--lc-gold, #A8854A);
    margin: 1rem 0 .15rem;
}

.lc-resto__menucard-content ul { list-style: none; padding: 0; margin: 0; }
.lc-resto__menucard-content li { padding: .1rem 0; font-style: italic; font-size: .85rem; }

/* Premier h3 du contenu = titre principal (menu du jour) */
.lc-resto__menucard-content--titled h3:first-child {
    font-family: var(--font-heading, 'Cormorant Garamond', serif);
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    color: var(--lc-dark, #1A1A18) !important;
    margin: 0 0 .8rem;
    padding-bottom: .5rem;
    border-bottom: 1px solid var(--lc-cream-dark, #EDE7D9);
}

.lc-resto__note {
    text-align: center;
    font-size: .82rem;
    color: var(--lc-stone, #7A6A57);
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--lc-cream-dark, #EDE7D9);
}

/* ── Card ─────────────────────────────────────────────────── */
.lc-resto__card {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 12px rgba(0,0,0,.04);
}

.lc-resto__card h3 {
    font-family: var(--font-heading, 'Cormorant Garamond', serif);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--lc-dark, #1A1A18);
    margin: 0 0 .5rem;
}

.lc-resto__card p {
    font-size: .88rem;
    color: var(--lc-stone, #7A6A57);
    line-height: 1.6;
    margin: 0;
}

.lc-resto__card-content { font-size: .85rem; color: var(--lc-stone, #7A6A57); }
.lc-resto__card-content h3 { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--lc-gold, #A8854A); margin: .8rem 0 .2rem; }
.lc-resto__card-content ul { list-style: none; padding: 0; margin: 0; }
.lc-resto__card-content li { padding: .15rem 0; font-style: italic; display: flex; align-items: baseline; justify-content: space-between; gap: .5rem; }
.lc-resto__card-content .lc-prix { float: none; font-size: .95rem; font-weight: 700; padding: 2px 10px; flex-shrink: 0; }

/* Premier h3 du contenu d'ardoise = titre de la carte */
.lc-resto__card--board .lc-resto__card-content h3:first-child {
    font-family: var(--font-heading, 'Cormorant Garamond', serif);
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    color: var(--lc-dark, #1A1A18);
    margin: 0 0 .8rem;
    padding-bottom: .5rem;
    border-bottom: 1px solid var(--lc-cream-dark, #EDE7D9);
}

/* ── Table horaires ───────────────────────────────────────── */
.lc-resto__section h3 {
    font-family: var(--font-heading, 'Cormorant Garamond', serif);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--lc-dark, #1A1A18);    
}

.lc-resto__table {
    width: 100%;
    border-collapse: collapse;
    font-size: .88rem;
}

.lc-resto__table th {
    text-align: left;
    padding: .75rem 0;
    font-weight: 600;
    color: var(--lc-dark, #1A1A18);
    width: 45%;
    border-bottom: 1px solid var(--lc-cream-dark, #EDE7D9);
}

.lc-resto__table td {
    padding: .75rem 0;
    color: var(--lc-stone, #7A6A57);
    border-bottom: 1px solid var(--lc-cream-dark, #EDE7D9);
}

.lc-resto__table tr:last-child th,
.lc-resto__table tr:last-child td { border-bottom: none; }

/* ── En ce moment ─────────────────────────────────────────── */
.lc-resto__now {
    margin-top: 1rem;
    padding: 12px 16px;
    border-left: 3px solid #c0392b;
    background: rgba(192, 57, 43, .06);
    border-radius: 0 8px 8px 0;
    font-size: .85rem;
    color: var(--lc-dark, #1A1A18);
    line-height: 1.5;
}

.lc-resto__now strong { color: #c0392b; font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; }

/* ── Tarifs ────────────────────────────────────────────────── */
.lc-resto__tarif {
    border: 1px solid var(--lc-cream-dark, #EDE7D9);
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
    margin-bottom: .75rem;
}

.lc-resto__tarif strong {
    display: block;
    font-family: var(--font-heading, 'Cormorant Garamond', serif);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--lc-dark, #1A1A18);
    margin-bottom: .3rem;
}

.lc-resto__prix {
    display: block;
    font-family: var(--font-heading, 'Cormorant Garamond', serif);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--lc-terracotta, #B85C35);
    margin-bottom: .25rem;
}

.lc-resto__tarif small {
    font-size: .82rem;
    color: var(--lc-stone, #7A6A57);
    line-height: 1.5;
}

/* ── Avis ─────────────────────────────────────────────────── */
.lc-resto__avis {
    margin: 0;
    padding: 1.25rem;
    background: #fff;
    border-radius: 12px;
    border-left: 3px solid var(--lc-gold, #A8854A);
    box-shadow: 0 2px 8px rgba(0,0,0,.03);
}

.lc-resto__avis p {
    font-family: var(--font-heading, 'Cormorant Garamond', serif);
    font-size: .95rem;
    font-style: italic;
    line-height: 1.6;
    color: #1A1A18 !important;
    margin: 0 0 .6rem;
}

.lc-resto__avis cite {
    font-style: normal;
    font-size: .75rem;
    font-weight: 600;
    color: #1A1A18 !important;
}

/* ── CTA ──────────────────────────────────────────────────── */
.lc-resto__cta {
    text-align: center;
    padding: 3rem 0 1rem;
    border-top: 1px solid var(--lc-cream-dark, #EDE7D9);
}

.lc-resto__faq-link {
    margin-top: 1.2rem;
    font-size: .82rem;
    color: var(--lc-stone, #8A8070);
}
.lc-resto__faq-link a {
    color: var(--lc-terracotta, #B85C35);
    text-decoration: none;
    transition: color .2s;
}
.lc-resto__faq-link a:hover {
    color: var(--lc-dark, #1A1A18);
    text-decoration: underline;
}

.lc-resto__btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: .85rem;
    font-weight: 500;
    letter-spacing: .06em;
    text-decoration: none;
    border-radius: 4px;
    margin: 0 .5rem;
    transition: all .3s;
    background: var(--lc-terracotta, #B85C35);
    color: #fff;
    border: 1.5px solid var(--lc-terracotta, #B85C35);
}

.lc-resto__btn:hover { opacity: .85; }

.lc-resto__btn--outline {
    background: transparent;
    color: var(--lc-terracotta, #B85C35);
}

.lc-resto__btn--outline:hover {
    background: var(--lc-terracotta, #B85C35);
    color: #fff;
}

/* ── Photo de coupure ──────────────────────────────────────── */
.lc-resto__break {
    margin: 1rem 0;
    border-radius: 10px;
    overflow: hidden;
}

.lc-resto__break img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: transform .4s;
}

.lc-resto__break a:hover img {
    transform: scale(1.04);
}

.lc-resto__break--duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    border-radius: 0;
}

.lc-resto__break--duo a {
    border-radius: 10px;
    overflow: hidden;
}

@media (max-width: 560px) {
    .lc-resto__break--duo { grid-template-columns: 1fr; }
    .lc-resto__break img { height: 200px; }
}

/* ── Prix mis en évidence ──────────────────────────────────── */
.lc-prix {
    display: inline-block;
    font-family: var(--font-body, 'Inter', sans-serif);
    font-style: normal;
    font-weight: 700;
    font-size: .82em;
    color: var(--lc-terracotta, #B85C35);
    background: rgba(184, 92, 53, .08);
    padding: 1px 8px;
    border-radius: 4px;
    margin-left: 4px;
    white-space: nowrap;
}

.lc-resto__menucard--dark .lc-prix {
    color: var(--lc-gold, #A8854A);
    background: rgba(168, 133, 74, .15);
}

/* ── Tableau tarifs gîtes ──────────────────────────────────── */
.lc-gites__tarifs-wrap {
    max-width: 700px;
    margin: 0 auto;
    overflow-x: auto;
}

.lc-gites__tarifs {
    width: 100%;
    border-collapse: collapse;
    font-size: .9rem;
}

.lc-gites__tarifs th {
    text-align: left;
    padding: 12px 16px;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--lc-stone, #7A6A57);
    border-bottom: 2px solid var(--lc-cream-dark, #EDE7D9);
    background: var(--lc-cream, #F5F0E8);
}

.lc-gites__tarifs td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--lc-cream-dark, #EDE7D9);
    color: var(--lc-dark, #1A1A18);
    vertical-align: middle;
}

.lc-gites__tarifs td strong {
    display: block;
    font-size: .92rem;
}

.lc-gites__tarifs td small {
    color: var(--lc-stone, #7A6A57);
    font-size: .78rem;
}

.lc-gites__tarifs tbody tr:hover {
    background: rgba(168, 133, 74, .04);
}

/* ── PDF flipbook (Le Bar) ─────────────────────────────────── */
.lc-bar__pdf {
    max-width: 700px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 32px rgba(0,0,0,.12);
    background: #fff;
    text-align: center;
}

.lc-bar__pdf canvas {
    width: 100%;
    height: auto;
    display: block;
    cursor: grab;
}

.lc-bar__pdf-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 12px;
    background: var(--lc-dark, #1A1A18);
    border-radius: 0 0 12px 12px;
}

.lc-bar__pdf-btn {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,.12);
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background .2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lc-bar__pdf-btn:hover {
    background: rgba(255,255,255,.25);
}

#lc-pdf-page {
    font-size: .8rem;
    font-weight: 600;
    color: rgba(255,255,255,.7);
    letter-spacing: .05em;
}

/* ── Liste événements (La Cueillette) ─────────────────────── */
.lc-cueillette__events {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lc-cueillette__event {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 18px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,.04);
    text-decoration: none;
    color: inherit;
    transition: transform .2s, box-shadow .2s;
}

.lc-cueillette__event:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 16px rgba(0,0,0,.08);
}

.lc-cueillette__event-date {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 10px;
    background: var(--lc-terracotta, #B85C35);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.lc-cueillette__event-day {
    font-size: 1.3rem;
    font-weight: 700;
    font-family: var(--font-heading, 'Cormorant Garamond', serif);
}

.lc-cueillette__event-month {
    font-size: .55rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    opacity: .8;
}

.lc-cueillette__event-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.lc-cueillette__event-type {
    font-size: .6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--lc-terracotta, #B85C35);
}

.lc-cueillette__event-title {
    font-family: var(--font-heading, 'Cormorant Garamond', serif);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--lc-dark, #1A1A18);
}

.lc-cueillette__event-meta {
    font-size: .78rem;
    color: var(--lc-stone, #7A6A57);
}

/* ── Agenda ───────────────────────────────────────────────── */
.lc-agenda__filters {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
    justify-content: center;
}

.lc-agenda__filter {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    border: 1.5px solid var(--lc-cream-dark, #EDE7D9);
    border-radius: 100px;
    background: #fff;
    font-size: .72rem;
    font-weight: 600;
    color: var(--lc-stone, #7A6A57);
    cursor: pointer;
    font-family: inherit;
    transition: all .2s;
}

.lc-agenda__filter--active {
    background: var(--lc-dark, #1A1A18);
    border-color: var(--lc-dark, #1A1A18);
    color: #fff;
}

.lc-agenda__filter-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

/* FullCalendar overrides */
.lc-agenda__cal {
    margin-bottom: 2rem;
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    border: 1px solid var(--lc-cream-dark, #EDE7D9);
}

.lc-agenda__cal .fc-toolbar-title {
    font-family: var(--font-heading, 'Cormorant Garamond', serif) !important;
    font-size: 1.4rem !important;
    font-weight: 400 !important;
    text-transform: capitalize;
}

.lc-agenda__cal .fc-button {
    font-size: .75rem !important;
    padding: 4px 10px !important;
    border-radius: 6px !important;
}

.lc-agenda__cal .fc-button-primary {
    background: var(--lc-dark, #1A1A18) !important;
    border-color: var(--lc-dark, #1A1A18) !important;
}

.lc-agenda__cal .fc-button-primary:not(.fc-button-active):not(:hover) {
    background: #fff !important;
    color: var(--lc-dark, #1A1A18) !important;
    border-color: var(--lc-cream-dark, #EDE7D9) !important;
}

.lc-agenda__cal .fc-daygrid-day-number {
    font-size: .82rem;
    font-weight: 600;
}

.lc-agenda__cal .fc-day-today {
    background: rgba(184, 92, 53, .06) !important;
}

/* Popup détail */
.lc-agenda__detail {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(0,0,0,.5);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lc-agenda__detail-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #888;
    cursor: pointer;
    z-index: 1;
}

.lc-agenda__popup {
    background: #fff;
    border-radius: 14px;
    padding: 24px;
    max-width: 420px;
    width: 100%;
    box-shadow: 0 8px 40px rgba(0,0,0,.2);
    position: relative;
}

.lc-agenda__popup-img {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 12px;
}

.lc-agenda__popup-type {
    font-size: .65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.lc-agenda__popup-title {
    font-family: var(--font-heading, 'Cormorant Garamond', serif);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--lc-dark, #1A1A18);
    margin: 4px 0 8px;
}

.lc-agenda__popup-date {
    font-size: .85rem;
    font-weight: 600;
    color: var(--lc-dark, #1A1A18);
    margin: 0 0 8px;
    text-transform: capitalize;
}

.lc-agenda__popup-meta {
    font-size: .82rem;
    color: var(--lc-stone, #7A6A57);
    margin: 2px 0;
}

/* Liste événements */
.lc-agenda__list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 12px;
}

.lc-agenda__event {
    display: flex;
    gap: 12px;
    padding: 12px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid var(--lc-cream-dark, #EDE7D9);
    text-decoration: none;
    color: inherit;
    transition: transform .2s, box-shadow .2s;
}

.lc-agenda__event:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,.08);
}

.lc-agenda__event-img {
    width: 80px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.lc-agenda__event-img--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: .65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.lc-agenda__event-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.lc-agenda__event-type {
    font-size: .6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.lc-agenda__event-title {
    font-family: var(--font-heading, 'Cormorant Garamond', serif);
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--lc-dark, #1A1A18);
}

.lc-agenda__event-meta {
    font-size: .75rem;
    color: var(--lc-stone, #7A6A57);
}

.lc-agenda__event-artiste {
    font-size: .72rem;
    font-style: italic;
    color: var(--lc-stone, #7A6A57);
}

@media (max-width: 600px) {
    .lc-agenda__list { grid-template-columns: 1fr; }
    .lc-agenda__cal { padding: 8px; }
}

/* ── FAQ hero ─────────────────────────────────────────────── */
.lc-faq__hero {
    width: 100%;
    max-height: 340px;
    overflow: hidden;
    line-height: 0;
}
.lc-faq__hero img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    object-position: center 40%;
    display: block;
}
@media (max-width: 768px) {
    .lc-faq__hero, .lc-faq__hero img { max-height: 200px; height: 200px; }
}

/* ── FAQ ──────────────────────────────────────────────────── */
.lc-faq__search {
    max-width: 500px;
    margin: 0 auto 20px;
}

.lc-faq__search input {
    width: 100%;
    padding: 12px 18px;
    border: 2px solid var(--lc-cream-dark, #EDE7D9);
    border-radius: 10px;
    font-size: .9rem;
    font-family: inherit;
    background: #fff;
    transition: border-color .2s;
}

.lc-faq__search input:focus {
    outline: none;
    border-color: var(--lc-terracotta, #B85C35);
}

.lc-faq__cats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    margin-bottom: 24px;
}

.lc-faq__cat {
    padding: 6px 14px;
    border: 1.5px solid var(--lc-cream-dark, #EDE7D9);
    border-radius: 8px;
    background: #fff;
    font-size: .75rem;
    font-weight: 600;
    color: var(--lc-stone, #7A6A57);
    cursor: pointer;
    font-family: inherit;
    transition: all .2s;
}

.lc-faq__cat:hover { border-color: var(--lc-stone, #7A6A57); }

.lc-faq__cat--active {
    background: var(--lc-dark, #1A1A18);
    border-color: var(--lc-dark, #1A1A18);
    color: #fff;
}

.lc-faq__list {
    max-width: 750px;
    margin: 0 auto;
}

.lc-faq__item {
    margin-bottom: 6px;
    border: 1px solid var(--lc-cream-dark, #EDE7D9);
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}

.lc-faq__item summary {
    padding: 14px 18px;
    font-weight: 600;
    font-size: .92rem;
    color: var(--lc-dark, #1A1A18);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background .15s;
}

.lc-faq__item summary::-webkit-details-marker { display: none; }

.lc-faq__item summary::after {
    content: '+';
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--lc-stone, #7A6A57);
    flex-shrink: 0;
    margin-left: 12px;
    transition: transform .2s;
}

.lc-faq__item[open] summary::after {
    content: '−';
    color: var(--lc-terracotta, #B85C35);
}

.lc-faq__item summary:hover { background: #fafaf8; }

.lc-faq__item[open] {
    border-color: var(--lc-terracotta, #B85C35);
}

.lc-faq__answer {
    padding: 0 18px 16px;
    font-size: .88rem;
    line-height: 1.7;
    color: var(--lc-stone, #7A6A57);
}

.lc-faq__answer p { margin: 0 0 .75rem; }
.lc-faq__answer ul { margin: 0 0 .75rem; padding-left: 1.2rem; }
.lc-faq__answer li { margin-bottom: .3rem; }

.lc-faq__answer a {
    color: var(--lc-terracotta, #B85C35);
    text-decoration: none;
    font-weight: 600;
}

.lc-faq__answer a:hover { text-decoration: underline; }

.lc-faq__cta {
    display: inline-block;
    margin-top: .5rem;
    padding: 6px 16px;
    background: var(--lc-terracotta, #B85C35);
    color: #fff !important;
    text-decoration: none !important;
    border-radius: 6px;
    font-size: .78rem;
    font-weight: 600;
    transition: opacity .2s;
}

.lc-faq__cta:hover { opacity: .85; }

.lc-faq__table {
    width: 100%;
    border-collapse: collapse;
    font-size: .85rem;
    margin-bottom: .75rem;
}

.lc-faq__table th {
    text-align: left;
    padding: 6px 0;
    font-weight: 600;
    color: var(--lc-dark, #1A1A18);
    border-bottom: 1px solid #eee;
}

.lc-faq__table td {
    padding: 6px 0;
    color: var(--lc-stone, #7A6A57);
    border-bottom: 1px solid #eee;
}

.lc-faq__now {
    padding: 8px 12px;
    border-left: 3px solid #c0392b;
    background: rgba(192,57,43,.06);
    border-radius: 0 6px 6px 0;
    font-size: .82rem;
    margin-top: .5rem;
}

.lc-faq__map {
    height: 200px;
    border-radius: 10px;
    margin-top: 12px;
    overflow: hidden;
}

@media (max-width: 480px) {
    .lc-faq__cats { gap: 4px; }
    .lc-faq__cat { padding: 10px 14px; font-size: .75rem; }
    .lc-faq__item summary { padding: 14px 16px; font-size: .88rem; }
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
    .lc-resto__grid3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
    .lc-resto__grid2 { grid-template-columns: 1fr; }
    .lc-resto__gallery { grid-template-columns: repeat(2, 1fr); }
    .lc-resto__menucard-body > a[data-fancybox] {
        float: none;
        width: 100%;
        margin: 0 0 1rem 0;
    }
    .lc-resto__menucard-photo {
        max-height: 250px;
        border-radius: 6px;
    }
}

@media (max-width: 560px) {
    .lc-resto__grid3 { grid-template-columns: 1fr; }
    .lc-resto__header { padding: 36px 16px 32px; }
    .lc-resto__title { font-size: 1.8rem; }
    .lc-resto__body { padding: 24px 14px 40px; }
    .lc-resto__btn { display: block; margin: .5rem auto; max-width: 280px; }
}

/* ── Équipe — citations ────────────────────────────────── */

.lc-equipe__quote {
    margin: 1.5rem 0 0 !important;
    padding: 1.2rem 1.4rem !important;
    background: var(--lc-cream, #F5F0E8) !important;
    border: none !important;
    border-left: 3px solid var(--lc-gold, #C9A96E) !important;
    border-radius: 0 8px 8px 0 !important;
    font-family: var(--font-heading, 'Cormorant Garamond', serif) !important;
    font-size: 1.02rem !important;
    font-style: italic !important;
    line-height: 1.6 !important;
    color: var(--lc-dark, #1A1A18) !important;
}

.lc-equipe__quote cite {
    display: block;
    margin-top: 0.6rem;
    font-family: var(--lc-font-sans, 'Inter', sans-serif);
    font-size: 0.72rem;
    font-style: normal;
    font-weight: 600;
    color: var(--lc-gold, #C9A96E);
    letter-spacing: 0.05em;
}

.lc-equipe__quote--large {
    border-left: none !important;
    background: none !important;
    padding: 2rem 1rem !important;
    font-size: 1.25rem !important;
    text-align: center;
    border-top: 1px solid var(--lc-cream-dark, #EDE7D9) !important;
    border-bottom: 1px solid var(--lc-cream-dark, #EDE7D9) !important;
    border-radius: 0 !important;
}

.lc-equipe__quote--large cite {
    font-size: 0.82rem;
}

/* ── Features grid (4 col) ─────────────────────────────── */

.lc-resto__features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.lc-resto__feature {
    text-align: center;
    padding: 1rem;
}

.lc-resto__feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin: 0 auto 1rem;
    background: rgba(201,169,110,0.08);
    border-radius: 50%;
    color: var(--lc-gold, #C9A96E);
}

.lc-resto__feature h3 {
    font-family: var(--font-heading, 'Cormorant Garamond', serif);
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--lc-dark, #1A1A18);
    margin: 0 0 0.4rem;
}

.lc-resto__feature p {
    font-size: 0.82rem;
    line-height: 1.6;
    color: var(--lc-stone, #7A6A57);
    margin: 0;
}

@media (max-width: 900px) {
    .lc-resto__features { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .lc-resto__features { grid-template-columns: 1fr; gap: 1rem; }
}

/* ── Gallery 4 col ─────────────────────────────────────── */

.lc-resto__gallery4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    border-radius: 10px;
    overflow: hidden;
}

.lc-resto__gallery4 img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}

.lc-resto__gallery4 img:hover {
    transform: scale(1.04);
}

@media (max-width: 760px) {
    .lc-resto__gallery4 { grid-template-columns: repeat(2, 1fr); }
}

/* ── Formulaire hero (photo + form côte à côte) ────────── */

.lc-formresa-hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.lc-formresa-hero__visual {
    position: relative;
    overflow: hidden;
}

.lc-formresa-hero__visual img {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block;
}

.lc-formresa-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,26,24,0.85) 0%, rgba(26,26,24,0.2) 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    z-index: 1;
}

.lc-formresa-hero__tagline {
    font-family: var(--font-heading, 'Cormorant Garamond', serif);
    font-size: 1.4rem;
    font-weight: 400;
    font-style: italic;
    color: #fff;
    margin: 0 0 0.8rem;
}

.lc-formresa-hero__info {
    font-family: var(--lc-font-sans, 'Inter', sans-serif);
    font-size: 0.82rem;
    color: rgba(255,255,255,0.7);
    margin: 0 0 0.3rem;
    line-height: 1.5;
}

.lc-formresa-hero__form {
    background: var(--lc-white, #fff);
    display: flex;
    flex-direction: column;
}

.lc-formresa-hero__form-header {
    padding: 2rem 2.5rem 0;
}

.lc-formresa-hero__form-header h2 {
    font-family: var(--font-heading, 'Cormorant Garamond', serif);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--lc-dark, #1A1A18);
    margin: 0 0 0.4rem;
}

.lc-formresa-hero__form-header p {
    font-size: 0.82rem;
    color: var(--lc-stone, #7A6A57);
    line-height: 1.5;
    margin: 0;
}

.lc-formresa-hero__form .lc-formresa__form {
    flex: 1;
    background: none;
    border-radius: 0;
    box-shadow: none;
}

@media (max-width: 900px) {
    .lc-formresa-hero__grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .lc-formresa-hero__visual {
        min-height: 280px;
    }
}

@media (max-width: 600px) {
    .lc-formresa-hero__form-header {
        padding: 1.5rem 1.25rem 0;
    }
}

/* ── Formulaire intégré (.lc-formresa) ─────────────────── */

.lc-formresa__inner {
    max-width: 560px;
    margin: 0 auto;
}

.lc-formresa__header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.lc-formresa__form {
    background: var(--lc-white, #fff);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.lc-formresa__form .lcr-form-wrap {
    padding: 2rem 2.5rem 2.5rem !important;
    background: var(--lc-white, #fff) !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    max-width: none !important;
    margin: 0 !important;
}

.lc-formresa__form .lcr-field {
    margin-bottom: 1.25rem;
}

.lc-formresa__form .lcr-field label {
    font-family: var(--lc-font-sans, 'Inter', sans-serif);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--lc-stone, #7A6A57);
    margin-bottom: 0.45rem;
    display: block;
}

.lc-formresa__form .lcr-field label span[aria-hidden] {
    color: var(--lc-terra, #B85C35);
}

.lc-formresa__form .lcr-field input[type=text],
.lc-formresa__form .lcr-field input[type=tel],
.lc-formresa__form .lcr-field input[type=email],
.lc-formresa__form .lcr-field input[type=date],
.lc-formresa__form .lcr-field select,
.lc-formresa__form .lcr-field textarea {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: var(--lc-font-sans, 'Inter', sans-serif);
    font-size: 0.93rem;
    color: var(--lc-dark, #1A1A18);
    background: var(--lc-cream, #F5F0E8);
    border: 1.5px solid transparent;
    border-radius: 6px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
    -webkit-appearance: none;
}

.lc-formresa__form .lcr-field input:focus,
.lc-formresa__form .lcr-field select:focus,
.lc-formresa__form .lcr-field textarea:focus {
    border-color: var(--lc-green, #3A5A40);
    box-shadow: 0 0 0 3px rgba(58,90,64,0.08);
    background: #fff;
}

/* Service toggle */
.lc-formresa__form .lcr-service-toggle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    margin-top: 0.2rem;
}

.lc-formresa__form .lcr-service-option { cursor: pointer; }
.lc-formresa__form .lcr-service-option input[type=radio] { display: none; }

.lc-formresa__form .lcr-service-option span {
    display: block;
    text-align: center;
    padding: 0.7rem;
    font-family: var(--lc-font-sans, 'Inter', sans-serif);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--lc-stone, #7A6A57);
    background: var(--lc-cream, #F5F0E8);
    border: 1.5px solid transparent;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.lc-formresa__form .lcr-service-option:hover span {
    border-color: var(--lc-green, #3A5A40);
    color: var(--lc-dark, #1A1A18);
}

.lc-formresa__form .lcr-service-option input[type=radio]:checked + span {
    background: var(--lc-green, #3A5A40);
    border-color: var(--lc-green, #3A5A40);
    color: #fff;
    font-weight: 600;
}

/* Couverts */
.lc-formresa__form .lcr-covers-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: 0.2rem;
}

.lc-formresa__form .lcr-covers-option span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    font-family: var(--lc-font-sans, 'Inter', sans-serif);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--lc-stone, #7A6A57);
    background: var(--lc-cream, #F5F0E8);
    border: 1.5px solid transparent;
    border-radius: 6px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.lc-formresa__form .lcr-covers-option:hover span {
    border-color: var(--lc-green, #3A5A40);
    color: var(--lc-dark, #1A1A18);
}

.lc-formresa__form .lcr-covers-option input[type=radio]:checked + span {
    background: var(--lc-green, #3A5A40);
    border-color: var(--lc-green, #3A5A40);
    color: #fff;
    font-weight: 700;
}

.lc-formresa__form .lcr-covers-option--other span {
    font-size: 1.2rem;
    font-weight: 300;
}

.lc-formresa__form .lcr-covers-free {
    width: 76px;
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
    border: 1.5px solid var(--lc-green, #3A5A40);
    border-radius: 6px;
    background: #fff;
    color: var(--lc-dark, #1A1A18);
    outline: none;
}

/* Submit */
.lc-formresa__form .lcr-btn--primary {
    display: block;
    width: 100%;
    padding: 0.95rem;
    margin-top: 1.5rem;
    font-family: var(--lc-font-sans, 'Inter', sans-serif);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
    background: var(--lc-green, #3A5A40);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.25s ease;
}

.lc-formresa__form .lcr-btn--primary:hover {
    background: var(--lc-dark, #1A1A18);
}

/* Notices */
.lc-formresa__form .lcr-notice {
    border-radius: 6px;
    padding: 0.85rem 1rem;
    font-size: 0.86rem;
    margin-bottom: 1.25rem;
}

.lc-formresa__form .lcr-notice--success {
    background: rgba(58,90,64,0.08);
    color: var(--lc-green, #3A5A40);
    border-left: 3px solid var(--lc-green, #3A5A40);
}

.lc-formresa__form .lcr-notice--error {
    background: rgba(184,92,56,0.08);
    color: var(--lc-terra, #B85C35);
    border-left: 3px solid var(--lc-terra, #B85C35);
}

@media (max-width: 600px) {
    .lc-formresa__form .lcr-form-wrap { padding: 1.5rem 1.25rem 2rem; }
}
