/* ============================================================
   Fabrice Cafe Towcester — Complete Site Styles
   ============================================================ */

:root {
    --fabrice-cream: #f2ebd9;
    --fabrice-gold: #b99a5a;
    --fabrice-olive: #3d4a38;
    --fabrice-olive-dark: #2a3328;
    --fabrice-text: #444444;
    --fabrice-white: #ffffff;
}

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

html {
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--fabrice-text);
    background: var(--fabrice-white);
    overflow-x: hidden;
    max-width: 100%;
    margin: 0;
}

.fabrice-site {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
}

main {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

section {
    max-width: 100%;
}

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

a { text-decoration: none; transition: color 0.2s, background 0.2s; }

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

/* ── Buttons ─────────────────────────────────────────────── */

.fabrice-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--fabrice-gold);
    color: #ffffff;
    border: 2px solid var(--fabrice-gold);
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.fabrice-btn:hover {
    background: #c9ab6a;
    border-color: #c9ab6a;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(185, 154, 90, 0.35);
}

.fabrice-btn--sm {
    padding: 10px 22px;
    font-size: 13px;
}

.fabrice-btn--outline {
    background: transparent;
    color: var(--fabrice-cream);
    border-color: var(--fabrice-gold);
}

.fabrice-btn--outline:hover {
    background: var(--fabrice-gold);
    color: #ffffff;
}

.fabrice-btn--dark {
    background: var(--fabrice-olive);
    border-color: var(--fabrice-olive);
    color: var(--fabrice-cream);
}

/* ── Header ──────────────────────────────────────────────── */

.fabrice-header {
    background: var(--fabrice-olive-dark);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
    z-index: 1050;
    padding: 0;
    width: 100%;
    max-width: 100%;
}

.fabrice-header__container {
    position: relative;
    width: 100%;
    max-width: 100%;
}

.fabrice-header .navbar {
    padding: 10px 0;
    width: 100%;
}

.fabrice-header .navbar-brand {
    flex-shrink: 1;
    min-width: 0;
    margin-right: 0;
    padding: 0;
    z-index: 2;
}

.fabrice-header .navbar-brand img {
    height: 72px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.fabrice-navbar-toggler {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(242, 235, 217, 0.45) !important;
    border-radius: 8px;
    background: rgba(242, 235, 217, 0.08);
    color: var(--fabrice-cream);
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
}

@media (max-width: 991px) {
    .fabrice-header__container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .fabrice-navbar-toggler {
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
    }

    .fabrice-header .navbar-brand {
        max-width: calc(100% - 72px);
    }
}

@media (min-width: 992px) {
    .fabrice-navbar-toggler {
        display: none !important;
    }
}

.fabrice-navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(185, 154, 90, 0.35);
    outline: none;
}

.fabrice-navbar-toggler i {
    color: var(--fabrice-cream);
    line-height: 1;
}

.fabrice-header .nav-link {
    color: var(--fabrice-cream) !important;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 16px !important;
    letter-spacing: 0.2px;
    opacity: 0.85;
    transition: opacity 0.2s, color 0.2s;
}

.fabrice-header .nav-link:hover,
.fabrice-header .nav-link.active {
    color: var(--fabrice-gold) !important;
    opacity: 1;
}

.fabrice-header .nav-link--soon {
    opacity: 0.55;
    cursor: default;
    pointer-events: none;
}

.fabrice-header .nav-link--soon small {
    font-size: 10px;
    background: rgba(185, 154, 90, 0.25);
    color: var(--fabrice-gold);
    padding: 1px 6px;
    border-radius: 10px;
    margin-left: 4px;
    vertical-align: middle;
}

.fabrice-header__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.fabrice-header__social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.fabrice-header__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(185, 154, 90, 0.15);
    color: var(--fabrice-cream);
    font-size: 15px;
    transition: background 0.2s, color 0.2s;
}

.fabrice-header__social a:hover {
    background: var(--fabrice-gold);
    color: var(--fabrice-olive-dark);
}

.fabrice-header .navbar-toggler {
    border-color: rgba(242, 235, 217, 0.3);
    padding: 6px 10px;
}

@media (max-width: 991px) {
    .fabrice-header .navbar-brand img {
        height: 52px;
        max-width: 150px;
    }

    .fabrice-header .navbar-collapse {
        flex-basis: 100%;
        width: 100%;
        background: var(--fabrice-olive-dark);
        padding: 16px 0 20px;
        margin-top: 10px;
        border-top: 1px solid rgba(185, 154, 90, 0.2);
    }

    .fabrice-header .navbar-nav {
        width: 100%;
    }

    .fabrice-header__actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        padding: 12px 0 0;
        gap: 12px;
    }

    .fabrice-header__actions .fabrice-btn {
        width: 100%;
        text-align: center;
    }

    .fabrice-header__social {
        justify-content: center;
    }
}

/* ── Section titles ──────────────────────────────────────── */

.fabrice-section-title {
    text-align: center;
    margin-bottom: 48px;
}

.fabrice-section-title h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--fabrice-olive-dark);
    margin-bottom: 12px;
}

.fabrice-section-title p {
    color: #777;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ── Hero ────────────────────────────────────────────────── */

.fabrice-hero {
    min-height: 92vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--fabrice-olive-dark) url('/images/dark.jpg') center/cover no-repeat;
    padding: 130px 0 80px;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.fabrice-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(42, 51, 40, 0.93) 0%, rgba(61, 74, 56, 0.82) 100%);
}

.fabrice-hero .container { position: relative; z-index: 2; }

.fabrice-hero__label {
    color: var(--fabrice-gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 14px;
}

.fabrice-hero h1 {
    color: var(--fabrice-cream);
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
}

.fabrice-hero h1 span { color: var(--fabrice-gold); }

.fabrice-hero p {
    color: rgba(242, 235, 217, 0.88);
    font-size: 16px;
    line-height: 1.75;
    max-width: 520px;
    margin-bottom: 32px;
}

.fabrice-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.fabrice-hero__img {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.fabrice-hero__img img {
    width: 100%;
    height: 460px;
    object-fit: cover;
}

@media (max-width: 991px) {
    .fabrice-hero { text-align: center; padding-top: 110px; }
    .fabrice-hero p { margin-left: auto; margin-right: auto; }
    .fabrice-hero__actions { justify-content: center; }
    .fabrice-hero__img { margin-top: 36px; }
    .fabrice-hero__img img { height: 320px; }
}

/* ── Info bar ────────────────────────────────────────────── */

.fabrice-info-bar {
    background: var(--fabrice-olive);
    padding: 0;
    margin-top: -1px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.fabrice-info-bar__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.fabrice-info-bar__item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 28px 32px;
    border-right: 1px solid rgba(185, 154, 90, 0.25);
}

.fabrice-info-bar__item:last-child { border-right: none; }

.fabrice-info-bar__icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(185, 154, 90, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--fabrice-gold);
    font-size: 20px;
}

.fabrice-info-bar__text h6 {
    color: var(--fabrice-cream);
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 4px;
}

.fabrice-info-bar__text p {
    color: rgba(242, 235, 217, 0.65);
    font-size: 13px;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fabrice-info-bar__text a { color: inherit; }
.fabrice-info-bar__text a:hover h6 { color: var(--fabrice-gold); }

@media (max-width: 767px) {
    .fabrice-info-bar__grid { grid-template-columns: 1fr; }
    .fabrice-info-bar__item { border-right: none; border-bottom: 1px solid rgba(185, 154, 90, 0.2); }
}

/* ── About block ─────────────────────────────────────────── */

.fabrice-about {
    padding: 90px 0;
    background: var(--fabrice-white);
}

.fabrice-about__img {
    border-radius: 14px;
    overflow: hidden;
}

.fabrice-about__img img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.fabrice-about__content .label {
    color: var(--fabrice-gold);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.fabrice-about__content h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--fabrice-olive-dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.fabrice-about__content h2 span { color: var(--fabrice-gold); }

.fabrice-about__content p {
    color: #555;
    line-height: 1.75;
    margin-bottom: 16px;
    font-size: 15px;
}

/* ── Features / What We Serve ──────────────────────────────── */

.fabrice-features {
    padding: 90px 0;
    background: var(--fabrice-cream);
}

.fabrice-feature-card {
    background: var(--fabrice-white);
    padding: 36px 28px;
    border-radius: 12px;
    height: 100%;
    text-align: center;
    box-shadow: 0 4px 24px rgba(61, 74, 56, 0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border: 1px solid rgba(185, 154, 90, 0.12);
}

.fabrice-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 36px rgba(61, 74, 56, 0.12);
}

.fabrice-feature-card__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(185, 154, 90, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--fabrice-gold);
    font-size: 26px;
}

.fabrice-feature-card h4 {
    color: var(--fabrice-olive-dark);
    font-size: 18px;
    margin-bottom: 10px;
}

.fabrice-feature-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.65;
    margin: 0;
}

/* ── Gallery preview ───────────────────────────────────────── */

.fabrice-gallery-section {
    padding: 90px 0;
    background: var(--fabrice-white);
}

.fabrice-gallery-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.fabrice-gallery-preview__item {
    border-radius: 12px;
    overflow: hidden;
    height: 240px;
    position: relative;
}

.fabrice-gallery-preview__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.fabrice-gallery-preview__item:hover img { transform: scale(1.04); }

.fabrice-gallery-preview__item a {
    display: block;
    width: 100%;
    height: 100%;
}

/* Full gallery page grid */
.fabrice-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
    padding: 20px 0 60px;
}

.fabrice-gallery-grid__item {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.fabrice-gallery-grid__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.fabrice-gallery-grid__item:hover img { transform: scale(1.05); }

.fabrice-gallery-grid__item a { display: block; width: 100%; height: 100%; }

@media (max-width: 767px) {
    .fabrice-gallery-preview { grid-template-columns: repeat(2, 1fr); }
    .fabrice-gallery-preview__item { height: 180px; }
}

/* ── CTA / Book section ───────────────────────────────────── */

.fabrice-cta {
    padding: 90px 0;
    background: var(--fabrice-olive-dark);
    position: relative;
    text-align: center;
    overflow: hidden;
    width: 100%;
}

.fabrice-cta__overlay,
.fabrice-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.fabrice-cta::before {
    background: url('/images/dark.jpg') center/cover no-repeat;
    opacity: 0.22;
}

.fabrice-cta__overlay {
    background: linear-gradient(135deg, rgba(42, 51, 40, 0.94) 0%, rgba(61, 74, 56, 0.88) 100%);
    z-index: 1;
}

.fabrice-cta .container {
    position: relative;
    z-index: 2;
}

.fabrice-cta__card {
    max-width: 720px;
    margin: 0 auto;
    padding: 48px 40px;
    border: 1px solid rgba(185, 154, 90, 0.35);
    border-radius: 20px;
    background: rgba(42, 51, 40, 0.55);
    backdrop-filter: blur(6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.fabrice-cta__label {
    display: inline-block;
    color: var(--fabrice-gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.fabrice-cta h2 {
    color: var(--fabrice-cream);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 16px;
    line-height: 1.2;
}

.fabrice-cta p {
    color: rgba(242, 235, 217, 0.88);
    max-width: 520px;
    margin: 0 auto 28px;
    font-size: 16px;
    line-height: 1.7;
}

.fabrice-cta__details {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 24px;
    margin-bottom: 32px;
    padding: 20px 0;
    border-top: 1px solid rgba(185, 154, 90, 0.2);
    border-bottom: 1px solid rgba(185, 154, 90, 0.2);
}

.fabrice-cta__detail {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(242, 235, 217, 0.85);
    font-size: 14px;
}

.fabrice-cta__detail i {
    color: var(--fabrice-gold);
    font-size: 15px;
    width: 18px;
    text-align: center;
}

.fabrice-cta__detail a {
    color: rgba(242, 235, 217, 0.85);
}

.fabrice-cta__detail a:hover {
    color: var(--fabrice-gold);
}

.fabrice-cta__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.fabrice-cta--booking {
    padding: 80px 0;
}

/* ── Page hero with breadcrumb ─────────────────────────────── */

.fabrice-page-hero {
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: flex-end;
    padding: 130px 0 60px;
    overflow: hidden;
}

.fabrice-page-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.fabrice-page-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(42, 51, 40, 0.72) 0%, rgba(42, 51, 40, 0.92) 100%);
}

.fabrice-page-hero__content {
    position: relative;
    z-index: 2;
}

.fabrice-breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    font-size: 14px;
}

.fabrice-breadcrumb li {
    display: flex;
    align-items: center;
    color: rgba(242, 235, 217, 0.7);
}

.fabrice-breadcrumb li:not(:last-child)::after {
    content: '/';
    margin-left: 8px;
    color: rgba(185, 154, 90, 0.6);
}

.fabrice-breadcrumb a {
    color: rgba(242, 235, 217, 0.85);
}

.fabrice-breadcrumb a:hover { color: var(--fabrice-gold); }

.fabrice-breadcrumb li:last-child span,
.fabrice-breadcrumb li:last-child {
    color: var(--fabrice-gold);
    font-weight: 500;
}

.fabrice-page-hero h1 {
    color: var(--fabrice-cream);
    font-size: clamp(2rem, 5vw, 3rem);
    margin: 0;
    font-weight: 700;
}

.fabrice-page-hero__subtitle {
    color: rgba(242, 235, 217, 0.8);
    margin: 12px 0 0;
    font-size: 16px;
    max-width: 600px;
}

/* ── Footer ───────────────────────────────────────────────── */

.fabrice-footer {
    background: var(--fabrice-olive-dark);
    padding: 70px 0 0;
    color: rgba(242, 235, 217, 0.8);
}

.fabrice-footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(185, 154, 90, 0.2);
}

.fabrice-footer__col h3 {
    color: var(--fabrice-cream);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--fabrice-gold);
    display: inline-block;
}

.fabrice-footer__logo img {
    height: 80px;
    width: auto;
    margin-bottom: 16px;
}

.fabrice-footer__col--brand p {
    font-size: 14px;
    line-height: 1.65;
    color: rgba(242, 235, 217, 0.7);
    margin-bottom: 20px;
}

.fabrice-footer__social {
    display: flex;
    gap: 10px;
}

.fabrice-footer__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(185, 154, 90, 0.15);
    color: var(--fabrice-cream);
    font-size: 16px;
    transition: background 0.2s, color 0.2s;
}

.fabrice-footer__social a:hover {
    background: var(--fabrice-gold);
    color: var(--fabrice-olive-dark);
}

.fabrice-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fabrice-footer__links li { margin-bottom: 10px; }

.fabrice-footer__links a {
    color: rgba(242, 235, 217, 0.75);
    font-size: 14px;
    transition: color 0.2s;
}

.fabrice-footer__links a:hover { color: var(--fabrice-gold); }

.fabrice-footer__hours {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fabrice-footer__hours li {
    display: flex;
    justify-content: space-between;
    padding: 7px 0;
    border-bottom: 1px solid rgba(242, 235, 217, 0.08);
    font-size: 13px;
    gap: 12px;
}

.fabrice-footer__hours li span:first-child {
    color: var(--fabrice-cream);
    font-weight: 500;
    white-space: nowrap;
}

.fabrice-footer__hours li span:last-child {
    color: rgba(242, 235, 217, 0.65);
    text-align: right;
}

.fabrice-footer__contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fabrice-footer__contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
}

.fabrice-footer__contact li i {
    color: var(--fabrice-gold);
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
    width: 18px;
    text-align: center;
}

.fabrice-footer__contact a {
    color: rgba(242, 235, 217, 0.75);
    line-height: 1.5;
}

.fabrice-footer__contact a:hover { color: var(--fabrice-gold); }

.fabrice-footer__bottom {
    padding: 24px 0;
    text-align: center;
}

.fabrice-footer__bottom p {
    font-size: 13px;
    color: rgba(242, 235, 217, 0.5);
    margin: 0;
}

.fabrice-footer__bottom a {
    color: var(--fabrice-gold);
}

.fabrice-footer__bottom a:hover { color: var(--fabrice-cream); }

@media (max-width: 991px) {
    .fabrice-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 576px) {
    .fabrice-footer__grid { grid-template-columns: 1fr; }
}

/* ── Booking page ─────────────────────────────────────────── */

.fabrice-booking {
    padding: 60px 0 90px;
    background: var(--fabrice-cream);
}

#booking-widget {
    min-height: 580px;
    border-radius: 14px;
    overflow: hidden;
    background: var(--fabrice-white);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
}

.fabrice-booking__sidebar {
    background: var(--fabrice-white);
    border-radius: 14px;
    padding: 36px 28px;
    height: 100%;
    border: 1px solid rgba(185, 154, 90, 0.15);
}

.fabrice-booking__sidebar h4 {
    color: var(--fabrice-olive-dark);
    margin-bottom: 16px;
    font-size: 18px;
}

.fabrice-booking__sidebar p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.fabrice-booking__hours li {
    display: flex;
    justify-content: space-between;
    padding: 9px 0;
    border-bottom: 1px solid rgba(185, 154, 90, 0.15);
    font-size: 13px;
    list-style: none;
}

.fabrice-booking__hours li span:first-child { font-weight: 600; color: var(--fabrice-olive-dark); }
.fabrice-booking__hours li span:last-child { color: #666; }

/* ── Contact page ─────────────────────────────────────────── */

.fabrice-contact-map {
    width: 100%;
    height: 420px;
    border: none;
    display: block;
}

.fabrice-contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: -60px auto 60px;
    position: relative;
    z-index: 2;
    max-width: 960px;
}

.fabrice-contact-card {
    background: var(--fabrice-white);
    border-radius: 14px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(185, 154, 90, 0.12);
}

.fabrice-contact-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(185, 154, 90, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--fabrice-gold);
    font-size: 22px;
}

.fabrice-contact-card h5 {
    color: var(--fabrice-olive-dark);
    font-size: 16px;
    margin-bottom: 8px;
}

.fabrice-contact-card a,
.fabrice-contact-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.fabrice-contact-card a:hover { color: var(--fabrice-gold); }

@media (max-width: 767px) {
    .fabrice-contact-cards { grid-template-columns: 1fr; margin-top: 24px; }
}

/* ── About page extras ─────────────────────────────────────── */

.fabrice-about-page {
    padding: 80px 0;
}

.fabrice-about-page__intro {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 60px;
}

.fabrice-about-page__intro h2 {
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    color: var(--fabrice-olive-dark);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.5;
}

.fabrice-about-page__intro p {
    color: #555;
    line-height: 1.75;
    font-size: 15px;
}

.fabrice-divider {
    width: 60px;
    height: 3px;
    background: var(--fabrice-gold);
    margin: 20px auto;
}

/* ── Scroll to top ─────────────────────────────────────────── */

.fabrice-scroll-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--fabrice-gold);
    color: var(--fabrice-olive-dark);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s, transform 0.2s;
    z-index: 999;
}

.fabrice-scroll-top.is-visible {
    opacity: 1;
    visibility: visible;
}

.fabrice-scroll-top:hover {
    background: #c9ab6a;
    transform: translateY(-2px);
}

/* ── Cookie consent ────────────────────────────────────────── */

.cookie-consent {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 99999;
    padding: 20px;
    transform: translateY(110%);
    transition: transform 0.3s ease;
}

.cookie-consent--visible { transform: translateY(0); }

.cookie-consent__inner {
    max-width: 1100px;
    margin: 0 auto;
    background: var(--fabrice-olive-dark);
    border: 1px solid rgba(185, 154, 90, 0.3);
    border-radius: 12px;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.25);
}

.cookie-consent__text h4 { color: var(--fabrice-cream); font-size: 16px; margin-bottom: 6px; }
.cookie-consent__text p { color: rgba(242, 235, 217, 0.75); font-size: 13px; margin: 0; max-width: 680px; line-height: 1.5; }
.cookie-consent__actions { display: flex; gap: 12px; flex-shrink: 0; }

.cookie-btn {
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    font-family: 'Poppins', sans-serif;
    transition: all 0.2s ease;
}

.cookie-btn--primary { background: var(--fabrice-gold); color: var(--fabrice-olive-dark); }
.cookie-btn--primary:hover { background: #c9ab6a; }
.cookie-btn--outline { background: transparent; color: var(--fabrice-cream); border: 1px solid rgba(242, 235, 217, 0.4); }
.cookie-btn--outline:hover { border-color: var(--fabrice-gold); color: var(--fabrice-gold); }

@media (max-width: 576px) {
    .cookie-consent__inner { flex-direction: column; text-align: center; }
    .cookie-consent__actions { width: 100%; justify-content: center; }
}

/* ── Forms ─────────────────────────────────────────────────── */

.fabrice-form-section {
    padding: 80px 0;
    background: var(--fabrice-cream);
}

.fabrice-form {
    background: var(--fabrice-white);
    border-radius: 14px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(61, 74, 56, 0.08);
    border: 1px solid rgba(185, 154, 90, 0.12);
}

.fabrice-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.fabrice-form__group {
    margin-bottom: 20px;
}

.fabrice-form__label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--fabrice-olive-dark);
    margin-bottom: 8px;
}

.fabrice-form__input,
.fabrice-form__textarea,
.fabrice-form__select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(185, 154, 90, 0.3);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: var(--fabrice-olive-dark);
    background: var(--fabrice-white);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.fabrice-form__input:focus,
.fabrice-form__textarea:focus,
.fabrice-form__select:focus {
    outline: none;
    border-color: var(--fabrice-gold);
    box-shadow: 0 0 0 3px rgba(185, 154, 90, 0.15);
}

.fabrice-form__textarea {
    min-height: 140px;
    resize: vertical;
}

.fabrice-form__error {
    display: block;
    color: #c0392b;
    font-size: 13px;
    margin-top: 6px;
}

.fabrice-form__file {
    padding: 10px 0;
    font-size: 14px;
}

/* ── Alerts ────────────────────────────────────────────────── */

.fabrice-alert {
    position: fixed;
    top: 90px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    max-width: 90%;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    animation: fabriceSlideDown 0.3s ease;
}

@keyframes fabriceSlideDown {
    from { opacity: 0; transform: translateX(-50%) translateY(-12px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.fabrice-alert--success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.fabrice-alert--error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.fabrice-alert__close {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    opacity: 0.6;
    padding: 0 0 0 8px;
    line-height: 1;
}

.fabrice-alert__close:hover { opacity: 1; }

/* ── Mobile responsive ─────────────────────────────────────── */

@media (max-width: 991px) {
    .fabrice-section-title { margin-bottom: 36px; }
    .fabrice-section-title p { font-size: 15px; padding: 0 10px; }
    .fabrice-about { padding: 60px 0; }
    .fabrice-about__img img { height: 300px; }
    .fabrice-features { padding: 60px 0; }
    .fabrice-gallery-section { padding: 60px 0; }
    .fabrice-cta { padding: 60px 0; }
    .fabrice-cta__card { padding: 32px 22px; border-radius: 16px; }
    .fabrice-cta__details { flex-direction: column; align-items: center; gap: 10px; }
    .fabrice-cta__actions { flex-direction: column; align-items: center; }
    .fabrice-cta__actions .fabrice-btn { width: 100%; max-width: 280px; }
    .fabrice-form { padding: 28px 20px; }
    .fabrice-form__row { grid-template-columns: 1fr; }
    .fabrice-page-hero { min-height: 260px; padding: 110px 0 40px; }
    .fabrice-booking { padding: 40px 0 60px; }
    .fabrice-contact-cards { margin-top: 24px; }

    .container,
    .container-fluid {
        padding-left: 16px;
        padding-right: 16px;
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .fabrice-header .navbar-brand img { height: 48px; max-width: 130px; }
    .fabrice-header .nav-link { font-size: 14px; padding: 10px 12px !important; }
    .fabrice-hero {
        text-align: center;
        padding: 100px 0 50px;
        min-height: auto;
    }
    .fabrice-hero h1 { font-size: 1.85rem; }
    .fabrice-hero p { font-size: 15px; max-width: 100%; margin-left: auto; margin-right: auto; }
    .fabrice-hero__actions { justify-content: center; }
    .fabrice-hero__img { margin-top: 28px; }
    .fabrice-hero__img img { height: 240px; }
    .fabrice-info-bar__item { padding: 18px 14px; }
    .fabrice-info-bar__icon { width: 40px; height: 40px; font-size: 16px; }
    .fabrice-info-bar__text h6 { font-size: 13px; word-break: break-word; }
    .fabrice-btn { padding: 12px 24px; font-size: 14px; }
    .fabrice-footer { padding: 50px 0 0; }
    .fabrice-footer__grid { gap: 32px; }
    .fabrice-gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .fabrice-gallery-grid__item { aspect-ratio: 1/1; }
    .fabrice-scroll-top { bottom: 16px; right: 16px; width: 40px; height: 40px; }
    .fabrice-alert { top: 76px; font-size: 13px; padding: 12px 16px; max-width: calc(100% - 32px); }

    .row {
        --bs-gutter-x: 1rem;
    }
}

@media (max-width: 480px) {
    .fabrice-gallery-preview { grid-template-columns: 1fr 1fr; }
    .fabrice-gallery-preview__item { height: 160px; }
    .fabrice-hero__actions { flex-direction: column; width: 100%; }
    .fabrice-hero__actions .fabrice-btn { width: 100%; }
    .fabrice-contact-cards { grid-template-columns: 1fr; }
    .fabrice-navbar-toggler { width: 40px; height: 40px; font-size: 18px; }
}

/* ── Utility ───────────────────────────────────────────────── */

.text-gold { color: var(--fabrice-gold); }
.text-center { text-align: center; }
.mt-4 { margin-top: 1.5rem; }
.mb-4 { margin-bottom: 1.5rem; }
.pb-5 { padding-bottom: 3rem; }

/* ── Custom cursor (desktop only) ──────────────────────────── */

@media (min-width: 992px) {
    body.has-fabrice-cursor,
    body.has-fabrice-cursor .fabrice-site,
    body.has-fabrice-cursor .fabrice-site a,
    body.has-fabrice-cursor .fabrice-site button,
    body.has-fabrice-cursor .fabrice-site input,
    body.has-fabrice-cursor .fabrice-site textarea,
    body.has-fabrice-cursor .fabrice-site select,
    body.has-fabrice-cursor .fabrice-site label {
        cursor: none;
    }

    .fabrice-cursor .circle {
        height: 24px;
        width: 24px;
        border-radius: 24px;
        position: fixed;
        top: 0;
        left: 0;
        pointer-events: none;
        z-index: 99999999;
        will-change: transform, left, top;
    }
}

@media (max-width: 991px) {
    .fabrice-cursor {
        display: none;
    }
}
