/* ================================================================
   VILLAGE Iraty-Biarritz — Style principal
   Réplique fidèle inspirée du site original (WP/Elementor/OceanWP)
   ================================================================ */

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

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.65;
    color: var(--c-text);
    background: var(--c-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img,
picture,
video,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

input, button, textarea, select { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.005em;
    color: var(--c-text);
}

button { background: none; border: none; cursor: pointer; }
button:focus-visible, a:focus-visible {
    outline: 2px solid var(--c-red);
    outline-offset: 3px;
}

/* ─── Tokens ────────────────────────────────────────────────── */
:root {
    --c-red: #b21927;
    --c-red-dark: #8e1320;
    --c-red-light: #d04a55;
    --c-grey-1: #f7f7f5;
    --c-grey-2: #ececea;
    --c-grey-3: #c8c8c5;
    --c-grey-4: #7a7a78;
    --c-text: #1f1f1f;
    --c-text-soft: #4a4a4a;
    --c-text-muted: #6f6f6c;
    --c-bg: #ffffff;
    --c-border: #e6e6e3;

    --font-heading: "Be Vietnam Pro", system-ui, -apple-system, sans-serif;
    --font-body: "Roboto", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
    --font-display: "Be Vietnam Pro", system-ui, sans-serif;

    --container: 1400px;
    --container-narrow: 1100px;

    --r: 4px;
    --r-md: 8px;
    --r-lg: 14px;

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow: 0 6px 18px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 32px rgba(0,0,0,0.14);

    --t: 0.25s ease;
}

/* ─── Layout helpers ────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

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

.section { padding: 5rem 0; }

@media (min-width: 768px) {
    .section { padding: 6rem 0; }
}

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--c-text);
}

.section-title--red { color: var(--c-red); }

@media (min-width: 768px) {
    .section-title { font-size: 2.25rem; }
}

/* ─── Buttons ───────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.875rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-radius: var(--r);
    border: 2px solid transparent;
    cursor: pointer;
    white-space: nowrap;
    line-height: 1.2;
    transition: all var(--t);
}

.btn--primary {
    background: var(--c-red);
    color: #fff;
    border-color: var(--c-red);
}

.btn--primary:hover {
    background: var(--c-red-dark);
    border-color: var(--c-red-dark);
}

.btn--outline {
    background: #fff;
    color: var(--c-text);
    border-color: var(--c-text);
}

.btn--outline:hover {
    background: var(--c-text);
    color: #fff;
}

.btn--outline-white {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.btn--outline-white:hover {
    background: #fff;
    color: var(--c-red);
}

.btn--white {
    background: #fff;
    color: var(--c-red);
    border-color: #fff;
}

.btn--white:hover {
    background: var(--c-red-dark);
    color: #fff;
    border-color: var(--c-red-dark);
}

.btn--ghost-red {
    background: transparent;
    color: var(--c-red);
    border-color: var(--c-red);
}

.btn--ghost-red:hover {
    background: var(--c-red);
    color: #fff;
}

.btn--lg { padding: 1.125rem 2.5rem; font-size: 0.875rem; }

/* ─── Header ────────────────────────────────────────────────── */
.header {
    background: #fff;
    border-bottom: 1px solid var(--c-border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.header__logo {
    flex-shrink: 0;
    display: block;
}

.header__logo img {
    height: 3rem;
    width: auto;
}

@media (min-width: 1024px) {
    .header__logo img { height: 3.25rem; }
}

.nav { display: none; }

@media (min-width: 1100px) {
    .nav {
        display: flex;
        flex: 1;
        align-items: center;
        justify-content: center;
    }
}

.nav__list {
    display: flex;
    gap: 2.5rem;
}

.nav__link {
    position: relative;
    padding: 0.5rem 0;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--c-text);
    white-space: nowrap;
    transition: color var(--t);
}

.nav__link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--c-red);
    transform: scaleX(0);
    transition: transform var(--t);
    transform-origin: center;
}

.nav__link:hover { color: var(--c-red); }
.nav__link:hover::after,
.nav__link.is-active::after { transform: scaleX(1); }

.header__cta {
    display: none;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

@media (min-width: 1100px) {
    .header__cta { display: flex; }
}

.header__cta .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.75rem;
}

/* Burger mobile */
.burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 32px;
    height: 32px;
    justify-content: center;
    align-items: center;
}

@media (min-width: 1100px) { .burger { display: none; } }

.burger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--c-text);
    transition: transform var(--t), opacity var(--t);
    transform-origin: center;
}

.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
    display: none;
    position: fixed;
    top: 5rem;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid var(--c-border);
    box-shadow: var(--shadow-lg);
    padding: 1.5rem;
    z-index: 99;
    max-height: calc(100vh - 5rem);
    overflow-y: auto;
}

.mobile-nav.is-open { display: block; }

@media (min-width: 1100px) {
    .mobile-nav, .mobile-nav.is-open { display: none; }
}

.mobile-nav__list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--c-border);
}

.mobile-nav__link {
    display: block;
    padding: 0.75rem 0;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mobile-nav__cta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* ─── Hero accueil (split rouge / image — PLEINE LARGEUR) ───── */
.home-hero {
    background: var(--c-red);
}

.home-hero__inner {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

@media (min-width: 900px) {
    .home-hero__inner { grid-template-columns: 1fr 1fr; }
}

.home-hero__text {
    background: var(--c-red);
    color: #fff;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 768px) {
    .home-hero__text { padding: 4rem 3.5rem; }
}

@media (min-width: 1200px) {
    .home-hero__text {
        padding: 5rem 6rem 5rem max(4rem, calc((100vw - 1400px) / 2 + 4rem));
    }
}

.home-hero__eyebrow {
    font-family: var(--font-body);
    font-size: 1.0625rem;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 0.625rem;
}

.home-hero__title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.75rem;
    color: #fff;
}

@media (min-width: 768px) {
    .home-hero__title { font-size: 2.5rem; }
}

@media (min-width: 1200px) {
    .home-hero__title { font-size: 2.875rem; }
}

.home-hero__lead {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 30rem;
}

.home-hero__lead p + p { margin-top: 0.75rem; }

.home-hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.home-hero__image {
    overflow: hidden;
}

.home-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 18rem;
}

/* ─── Hero pages secondaires (titre rouge full-width) ───────── */
.page-hero {
    background: var(--c-red);
    color: #fff;
    text-align: center;
    padding: 3rem 1.5rem;
    position: relative;
    min-height: 9rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .page-hero {
        padding: 4rem 1.5rem;
        min-height: 12rem;
    }
}

.page-hero--with-bg {
    background-color: var(--c-grey-3);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.page-hero--with-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(0,0,0,0.35) 0%,
        rgba(0,0,0,0.5) 50%,
        rgba(178, 25, 39, 0.4) 100%);
    z-index: 1;
}

.page-hero--with-bg > * {
    position: relative;
    z-index: 2;
}

.page-hero__title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
    letter-spacing: -0.01em;
}

@media (min-width: 768px) {
    .page-hero__title { font-size: 3rem; }
}

/* ─── Activités section (tabs + carrousel cards) ────────────── */
.activities {
    padding: 4.5rem 0;
}

@media (min-width: 768px) {
    .activities { padding: 5.5rem 0; }
}

.tabs {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 0 0 0.5rem;
    margin: 0 auto 2.5rem;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    max-width: var(--container);
}

.tabs::-webkit-scrollbar { display: none; }

@media (min-width: 1100px) {
    .tabs { justify-content: center; }
}

.tab {
    flex-shrink: 0;
    padding: 0.5rem 0;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--c-text-soft);
    border-bottom: 2px solid transparent;
    cursor: pointer;
    white-space: nowrap;
    transition: all var(--t);
}

.tab:hover { color: var(--c-text); }

.tab.is-active {
    color: var(--c-red);
    border-bottom-color: var(--c-red);
    font-weight: 600;
}

.cards-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
    gap: 1.25rem;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.card {
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--r-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform var(--t), box-shadow var(--t);
}

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

.card__media {
    aspect-ratio: 4 / 3;
    background: var(--c-grey-1);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card__media--logo img {
    object-fit: contain;
    padding: 1.5rem;
}

.card__body {
    padding: 1rem 1.25rem 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.card__title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--c-red);
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.card__meta {
    font-size: 0.8125rem;
    color: var(--c-text-soft);
    line-height: 1.5;
    flex: 1;
}

.card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: 0.5rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--c-border);
}

.card__call {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    border: 1px solid var(--c-border);
    border-radius: var(--r);
    font-size: 0.8125rem;
    color: var(--c-text-soft);
    transition: all var(--t);
}

.card__call:hover {
    background: var(--c-text);
    color: #fff;
    border-color: var(--c-text);
}

.status {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.status--open { color: #1d8a3a; }
.status--closed { color: var(--c-red); }

.activities__cta {
    text-align: center;
    margin-top: 2.5rem;
}

/* ─── Section "Une histoire de vibrations" (split rouge — PLEINE LARGEUR) ── */
.split-red {
    background: var(--c-red);
}

.split-red__inner {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
}

@media (min-width: 900px) {
    .split-red__inner { grid-template-columns: 1fr 1fr; }
}

.split-red__text {
    background: var(--c-red);
    color: #fff;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 768px) {
    .split-red__text { padding: 4rem 3.5rem; }
}

@media (min-width: 1200px) {
    .split-red__text {
        padding: 5rem 6rem 5rem max(4rem, calc((100vw - 1400px) / 2 + 4rem));
    }
}

.split-red__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #fff;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .split-red__title { font-size: 1.75rem; }
}

.split-red__body {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 1.75rem;
    max-width: 30rem;
}

.split-red__body p + p { margin-top: 0.75rem; }

.split-red__image img {
    width: 100%;
    height: 100%;
    min-height: 18rem;
    object-fit: cover;
}

/* ─── Section piliers (3 colonnes avec icônes) ──────────────── */
.pillars {
    background: var(--c-grey-1);
    padding: 5rem 0;
}

@media (min-width: 768px) {
    .pillars { padding: 6rem 0; }
}

.pillars__grid {
    max-width: var(--container-narrow);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .pillars__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

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

.pillar__icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.5rem;
    color: var(--c-text);
    object-fit: contain;
    display: block;
}

.pillar__title {
    font-family: var(--font-heading);
    font-size: 0.9375rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--c-text);
    margin-bottom: 1rem;
}

.pillar__text {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--c-text-soft);
}

/* ─── News (Dernières actualités) ───────────────────────────── */
.news {
    padding: 5rem 0;
}

@media (min-width: 768px) {
    .news { padding: 6rem 0; }
}

.news__grid {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.75rem;
}

@media (min-width: 768px) {
    .news__grid { grid-template-columns: repeat(3, 1fr); }
}

.news-card {
    background: #fff;
    border-radius: var(--r-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    transition: transform var(--t), box-shadow var(--t);
}

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

.news-card__media {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.news-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-card__body {
    padding: 1.25rem 1.5rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-card__source {
    font-family: var(--font-body);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--c-text-muted);
    margin-bottom: 0.5rem;
}

.news-card__title {
    font-family: var(--font-heading);
    font-size: 1.0625rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--c-text);
    margin-bottom: 1.25rem;
    flex: 1;
}

.news-card__more {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--c-red);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    align-self: flex-start;
    transition: gap var(--t);
}

.news-card__more:hover { gap: 0.875rem; }

/* ─── Footer ────────────────────────────────────────────────── */
.footer {
    background: var(--c-red);
    color: #fff;
    padding: 3rem 0 1.5rem;
}

.footer__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .footer__inner {
        grid-template-columns: 1fr auto;
        align-items: start;
    }
}

.footer__brand {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

@media (min-width: 768px) {
    .footer__brand { font-size: 1.75rem; }
}

.footer__nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 3rem;
    font-family: var(--font-body);
    font-size: 0.9375rem;
}

.footer__nav a { transition: opacity var(--t); }
.footer__nav a:hover { opacity: 0.8; }

.footer__bottom {
    max-width: var(--container);
    margin: 2.5rem auto 0;
    padding: 1.5rem 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-family: var(--font-body);
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.75rem;
}

.footer__bottom a { opacity: 0.85; transition: opacity var(--t); }
.footer__bottom a:hover { opacity: 1; }

/* ─── Split section (image / texte rouge) — réutilisable ────── */
.split-section {
    background: var(--c-bg);
}

.split-section__inner {
    display: grid;
    grid-template-columns: 1fr;
}

@media (min-width: 900px) {
    .split-section__inner { grid-template-columns: 1fr 1fr; }
    .split-section--right-text .split-section__image { order: 1; }
    .split-section--right-text .split-section__content { order: 2; }
}

.split-section__image {
    overflow: hidden;
}

.split-section__image img {
    width: 100%;
    height: 100%;
    min-height: 22rem;
    object-fit: cover;
}

.split-section__content {
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 768px) {
    .split-section__content { padding: 4rem 3rem; }
}

@media (min-width: 1200px) {
    .split-section__content {
        padding: 5rem 6rem 5rem 4rem;
    }
}

.split-section__content--red {
    background: var(--c-red);
    color: #fff;
}

.split-section__content--red .split-section__title {
    color: #fff;
}

.split-section__content--dark {
    background: #7a7a7a;
    color: #fff;
}

.split-section__content--dark .split-section__title {
    color: #fff;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.4em;
}

.split-section__title {
    font-family: var(--font-heading);
    font-size: 1.625rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 1.5rem;
    color: var(--c-text);
}

@media (min-width: 768px) {
    .split-section__title { font-size: 2rem; }
}

.split-section__text {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 1.75rem;
    max-width: 32rem;
}

.split-section__text p + p { margin-top: 0.75rem; }

/* Stats (1200+ acteurs / 5000+ visiteurs) */
.stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-bottom: 1.75rem;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid var(--c-grey-2);
    border-radius: 14px;
    padding: 1.25rem 2rem;
    min-width: 9rem;
}

.stat__value {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--c-red);
    display: inline-flex;
    align-items: baseline;
}

@media (min-width: 768px) {
    .stat__value { font-size: 3rem; }
}

.stat__plus {
    font-size: 0.65em;
    margin-left: 0.15em;
    font-weight: 700;
}

.stat__label {
    font-family: var(--font-body);
    font-size: 0.875rem;
    text-transform: lowercase;
    margin-top: 0.5rem;
    color: var(--c-text-muted);
}

.split-section__content--red .stat {
    border: none;
    padding: 0;
    align-items: flex-start;
    min-width: 0;
}

.split-section__content--red .stat__value,
.split-section__content--red .stat__label {
    color: #fff;
    opacity: 0.95;
}

/* ─── Duo (texte + image, 50/50) ────────────────────────────── */
.duo {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
    max-width: var(--container);
    margin: 0 auto;
}

@media (min-width: 768px) {
    .duo { grid-template-columns: 1.1fr 1fr; gap: 4rem; }
}

.duo__text {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--c-text-soft);
}

.duo__text p + p { margin-top: 1rem; }

.duo__image img {
    width: 100%;
    border-radius: var(--r-md);
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

/* ─── Section alt (background gris) ─────────────────────────── */
.section--alt { background: var(--c-grey-1); }

/* ─── Comment venir ─────────────────────────────────────────── */
.how-to-come {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--c-text-soft);
    text-align: center;
    max-width: 50rem;
    margin: 0 auto 2.5rem;
}

.how-to-come p + p { margin-top: 1rem; }

.map-placeholder {
    max-width: 60rem;
    margin: 0 auto;
    border-radius: var(--r-md);
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* ─── Checked-list (puces V rouge) ──────────────────────────── */
.checked-list {
    list-style: none;
    padding: 0;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.checked-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.875rem;
}

.checked-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.4em;
    width: 0.875rem;
    height: 0.875rem;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
}

/* ─── Locaux disponibles (cards) ────────────────────────────── */
.locaux-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: var(--container);
    margin: 0 auto;
}

@media (min-width: 600px) {
    .locaux-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1100px) {
    .locaux-grid { grid-template-columns: repeat(4, 1fr); gap: 1.75rem; }
}

.local-card {
    display: flex;
    flex-direction: column;
    transition: transform var(--t);
}

.local-card:hover { transform: translateY(-3px); }

.local-card__media {
    aspect-ratio: 4 / 3;
    border-radius: var(--r-md);
    overflow: hidden;
    margin-bottom: 1rem;
    display: block;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--t);
}

.local-card:hover .local-card__media { box-shadow: var(--shadow); }

.local-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.local-card:hover .local-card__media img { transform: scale(1.04); }

.local-card__body {
    text-align: center;
    padding: 0 0.5rem;
}

.local-card__title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.35;
    color: var(--c-text);
    margin-bottom: 0.5rem;
    min-height: 2.7em;
}

.local-card__price {
    font-family: var(--font-heading);
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--c-text);
}

.local-card__price span {
    font-weight: 400;
    color: var(--c-text-muted);
    font-size: 0.875rem;
}

/* ─── Valeurs / Engagements (split rouge/gris avec rond rouge) ─ */
.values-engagements {
    background: var(--c-grey-1);
    padding: 0;
    position: relative;
}

.values-engagements__inner {
    display: grid;
    grid-template-columns: 1fr;
    max-width: var(--container);
    margin: 0 auto;
    position: relative;
}

@media (min-width: 900px) {
    .values-engagements__inner {
        grid-template-columns: 1fr auto 1fr;
    }
}

.values-engagements__col {
    padding: 3rem 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .values-engagements__col { padding: 4rem 3rem; }
}

.values-engagements__col--red {
    background: var(--c-red);
    color: #fff;
}

.values-engagements__col--red .values-engagements__title {
    color: #fff;
}

.values-engagements__col--grey {
    background: var(--c-grey-1);
}

.values-engagements__col p {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
    max-width: 28rem;
    margin-left: auto;
    margin-right: auto;
}

.values-engagements__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.4em;
}

.values-engagements__title--red { color: var(--c-red); }

.values-engagements__divider {
    display: none;
    position: relative;
    width: 100px;
}

@media (min-width: 900px) {
    .values-engagements__divider { display: block; }
}

.values-engagements__divider span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 7rem;
    height: 7rem;
    background: var(--c-red);
    border-radius: 50%;
    z-index: 2;
}

/* ─── Prose (zone de texte rich) ────────────────────────────── */
.prose {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.75;
    color: var(--c-text-soft);
    max-width: 50rem;
    margin: 0 auto;
}

.prose p { margin-bottom: 1.25rem; }

.prose h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--c-red);
    margin: 2.5rem 0 1rem;
}

.prose h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--c-text);
    margin: 2rem 0 1rem;
}

.prose ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.25rem;
}

.prose li { margin-bottom: 0.5rem; }

.prose a {
    color: var(--c-red);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.prose strong { font-weight: 600; color: var(--c-text); }

/* ─── Pricing (FASTLINK) ────────────────────────────────────── */
.pricing {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 60rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .pricing { grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
}

.price-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--r-md);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: transform var(--t), box-shadow var(--t);
}

.price-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.price-card--featured {
    background: var(--c-red);
    color: #fff;
    border-color: var(--c-red);
    transform: scale(1.04);
}

@media (max-width: 767px) {
    .price-card--featured { transform: none; }
}

.price-card__badge {
    position: absolute;
    top: -0.875rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--c-text);
    color: #fff;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.375rem 0.875rem;
    border-radius: 999px;
}

.price-card__title {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: inherit;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.price-card--featured .price-card__title { color: #fff; }

.price-card__price {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.price-card__amount {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.price-card__period {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--c-text-muted);
}

.price-card--featured .price-card__period { color: rgba(255, 255, 255, 0.85); }

/* ─── Feature list (Régie VIB VoIP) ─────────────────────────── */
.feature-list {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 42rem;
    margin: 0 auto;
}

.feature-list li {
    position: relative;
    padding: 0.75rem 0 0.75rem 2rem;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--c-text-soft);
    border-bottom: 1px solid var(--c-border);
}

.feature-list li:last-child { border-bottom: none; }

.feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1em;
    width: 1rem;
    height: 1rem;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b21927' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
}

/* ─── Documents (liste de fiches PDF) ────────────────────────── */
.docs-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    max-width: 40rem;
    margin: 0 auto;
}

@media (min-width: 600px) {
    .docs-list { grid-template-columns: repeat(2, 1fr); }
}

.doc-link {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.875rem 1.25rem;
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--r-md);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--c-text);
    text-align: left;
    transition: all var(--t);
}

.doc-link:hover {
    background: var(--c-red);
    border-color: var(--c-red);
    color: #fff;
}

.doc-link svg {
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
    color: var(--c-red);
    transition: color var(--t);
}

.doc-link:hover svg { color: #fff; }

/* ─── Fiches pratiques (Services) ───────────────────────────── */
.fiches-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: var(--container);
    margin: 0 auto;
}

@media (min-width: 600px) {
    .fiches-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1000px) {
    .fiches-grid { grid-template-columns: repeat(4, 1fr); gap: 2rem; }
}

.fiche-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.fiche-card__title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--c-text);
}

.fiche-card__preview {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: var(--r-md);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--t), box-shadow var(--t);
}

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

.fiche-card__thumb {
    width: 100%;
    height: 100%;
    background: var(--c-red);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1rem;
    text-align: center;
    position: relative;
}

.fiche-card__thumb::before {
    content: "VIB";
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 800;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.fiche-card__thumb span {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 0.75rem;
    letter-spacing: 0.02em;
}

.fiche-card__thumb small {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 500;
    opacity: 0.95;
    line-height: 1.3;
    max-width: 90%;
}

/* Variantes couleur par fiche */
.fiche-card__thumb--commerce { background: linear-gradient(135deg, #b21927 0%, #8e1320 100%); }
.fiche-card__thumb--espaces { background: linear-gradient(135deg, #1f1f1f 0%, #4a4a4a 100%); }
.fiche-card__thumb--access { background: linear-gradient(135deg, #b21927 0%, #d04a55 100%); }
.fiche-card__thumb--regie { background: linear-gradient(135deg, #8e1320 0%, #b21927 50%, #d04a55 100%); }
.fiche-card__thumb--plus { background: linear-gradient(135deg, #1e3a8a 0%, #b21927 100%); }
.fiche-card__thumb--fastlink { background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #b21927 100%); }
.fiche-card__thumb--plan { background: linear-gradient(135deg, #c8c8c5 0%, #7a7a78 100%); }
.fiche-card__thumb--catalog { background: linear-gradient(135deg, #4a4a4a 0%, #b21927 100%); }

/* ─── Search bar (Activités) ────────────────────────────────── */
.search-bar {
    display: flex;
    max-width: 40rem;
    margin: 0 auto 2.5rem;
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--r);
    overflow: hidden;
    transition: border-color var(--t), box-shadow var(--t);
}

.search-bar:focus-within {
    border-color: var(--c-red);
    box-shadow: 0 0 0 3px rgba(178, 25, 39, 0.1);
}

.search-bar input {
    flex: 1;
    padding: 0.875rem 1.25rem;
    border: none;
    outline: none;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    background: transparent;
}

.search-bar button {
    padding: 0.875rem 1.75rem;
    background: var(--c-red);
    color: #fff;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.875rem;
    transition: background var(--t);
    white-space: nowrap;
}

.search-bar button:hover { background: var(--c-red-dark); }

.search-empty {
    text-align: center;
    color: var(--c-text-muted);
    font-style: italic;
    padding: 3rem 1rem;
    background: var(--c-grey-1);
    border-radius: var(--r-md);
    margin: 1.5rem auto;
    max-width: 50rem;
}

/* ─── Cards grid (Activités) ────────────────────────────────── */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr));
    gap: 1.25rem;
    max-width: var(--container);
    margin: 0 auto;
}

.card__media--logo .card__ph-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.125rem;
    line-height: 1.1;
    letter-spacing: 0.04em;
    text-align: center;
    padding: 1.5rem;
    text-transform: uppercase;
}

/* ─── Contact ───────────────────────────────────────────────── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 60rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .contact-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

.contact-info__title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-info__lead {
    font-size: 0.9375rem;
    color: var(--c-text-soft);
    margin-bottom: 2rem;
}

.contact-info__block {
    margin-bottom: 1.5rem;
}

.contact-info__label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--c-text-muted);
    margin-bottom: 0.375rem;
}

.contact-info__block p {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.5;
    color: var(--c-text);
}

.contact-info__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--c-red);
    font-weight: 500;
    transition: opacity var(--t);
}

.contact-info__link:hover { opacity: 0.7; }

/* SR-only (label visible aux lecteurs d'écran uniquement) */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ─── Article (page individuelle) ───────────────────────────── */
.article-hero {
    background: var(--c-red);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.article-hero__inner {
    max-width: var(--container-narrow);
    margin: 0 auto;
    padding: 4rem 1.5rem 3rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.article-hero__date {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1rem;
}

.article-hero__title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
    max-width: 50rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .article-hero__title { font-size: 2.75rem; }
}

.article-hero__cover {
    width: 100%;
    height: 24rem;
    overflow: hidden;
    background: var(--c-grey-1);
}

.article-hero__cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 768px) {
    .article-hero__cover { height: 28rem; }
}

.article-body {
    font-size: 1.0625rem;
    line-height: 1.8;
}

.article-body h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--c-red);
    margin: 2.5rem 0 1rem;
}

.article-body h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin: 2rem 0 0.875rem;
}

.article-body p {
    margin-bottom: 1.25rem;
    color: var(--c-text);
}

.article-body ul, .article-body ol {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.article-body ol { list-style: decimal; }

.article-body li { margin-bottom: 0.5rem; }

.article-body a {
    color: var(--c-red);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.article-body strong { font-weight: 700; }

/* ─── Page détail entreprise ────────────────────────────────── */
.entity-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: var(--container);
    margin: 0 auto;
}

@media (min-width: 900px) {
    .entity-grid { grid-template-columns: 22rem 1fr; gap: 4rem; }
}

.entity-info {
    background: var(--c-grey-1);
    padding: 2rem;
    border-radius: var(--r-md);
    align-self: start;
}

.entity-info__category {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--c-red);
    margin-bottom: 0.5rem;
}

.entity-info__name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--c-text);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.entity-info__address {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--c-text-soft);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.entity-info__block {
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--c-border);
}

.entity-info__block:last-child {
    border-bottom: none;
}

.entity-info__block--cta {
    padding-bottom: 0;
    border-bottom: none;
}

.entity-info__block p {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--c-text);
    line-height: 1.5;
}

.entity-info__block a:not(.btn) { color: var(--c-red); }

/* ─── Horaires : un jour par ligne ───────────────── */
#entity-hours { display: flex; flex-direction: column; gap: 0.25rem; }

.hours-row {
    display: flex;
    gap: 0.5rem;
    align-items: baseline;
    font-size: 0.9375rem;
    line-height: 1.5;
}

.hours-row strong {
    flex: 0 0 5rem;
    text-transform: capitalize;
    color: var(--c-text);
    font-weight: 600;
}

.hours-row > span { color: var(--c-text-soft); }

/* ─── Logo encart ───────────────────── */
.entity-info__logo {
    width: 100%;
    aspect-ratio: 1 / 1;
    max-width: 14rem;
    margin: 0 auto 1.5rem auto;
    padding: 1.5rem;
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.entity-info__logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* ─── Réseaux sociaux ─────────────── */
.entity-info__social {
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--c-border);
}

.entity-social__list {
    list-style: none;
    margin: 0.75rem 0 0 0;
    padding: 0;
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.entity-social__list li { margin: 0; }

.entity-social__list a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--c-grey-1);
    color: var(--c-red);
    transition: background 0.2s, color 0.2s;
}

.entity-social__list a:hover {
    background: var(--c-red);
    color: #fff;
}

.entity-detail__main-photo {
    aspect-ratio: 16 / 10;
    border-radius: var(--r-md);
    overflow: hidden;
    margin-bottom: 1.5rem;
    background: var(--c-grey-1);
}

.entity-detail__main-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.entity-detail__placeholder {
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, var(--c-red) 0%, var(--c-red-dark) 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    padding: 2rem;
    border-radius: var(--r-md);
}

.entity-detail__description {
    margin-bottom: 2rem;
}

.entity-detail__photos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

@media (min-width: 600px) {
    .entity-detail__photos { grid-template-columns: repeat(3, 1fr); }
}

.entity-detail__thumb {
    aspect-ratio: 4 / 3;
    border-radius: var(--r);
    overflow: hidden;
    background: var(--c-grey-1);
}

.entity-detail__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.entity-detail__thumb:hover img { transform: scale(1.05); }

/* ─── Page détail local ─────────────────────────────────────── */
.local-detail {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: var(--container);
    margin: 0 auto;
}

@media (min-width: 900px) {
    .local-detail { grid-template-columns: 1fr 1.2fr; gap: 4rem; }
}

.local-detail__title {
    font-family: var(--font-heading);
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--c-text);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.local-detail__address {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--c-text-soft);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.local-detail__price-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    background: var(--c-grey-1);
    border-radius: var(--r-md);
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.5rem;
}

.local-detail__price-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--c-text-muted);
    margin-bottom: 0.375rem;
}

.local-detail__price,
.local-detail__surface {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--c-text);
}

.local-detail__features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1.5rem 0;
}

.local-detail__chip {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--c-text);
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: 999px;
    padding: 0.375rem 0.875rem;
}

.local-detail__charges {
    background: var(--c-grey-1);
    padding: 1rem 1.25rem;
    border-radius: var(--r);
    margin: 1.5rem 0;
}

.local-detail__charges p:last-child {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--c-text);
}

.local-detail__main-photo {
    aspect-ratio: 4 / 3;
    border-radius: var(--r-md);
    overflow: hidden;
    margin-bottom: 1rem;
    background: var(--c-grey-1);
}

.local-detail__main-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.local-detail__placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--c-red) 0%, var(--c-red-dark) 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.75rem;
}

.local-detail__placeholder svg { width: 4rem; height: 4rem; opacity: 0.85; }

.local-detail__placeholder p {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.local-detail__placeholder small {
    font-family: var(--font-body);
    font-size: 0.875rem;
    opacity: 0.85;
}

.local-detail__thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}

.local-detail__thumb {
    aspect-ratio: 1 / 1;
    border-radius: var(--r);
    overflow: hidden;
    border: 2px solid transparent;
    background: var(--c-grey-1);
    cursor: pointer;
    padding: 0;
    transition: border-color var(--t);
}

.local-detail__thumb.is-active { border-color: var(--c-red); }

.local-detail__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ─── Forms ─────────────────────────────────────────────────── */
.form { display: flex; flex-direction: column; gap: 1.25rem; }

.form__field { position: relative; }

.form__field input,
.form__field textarea {
    width: 100%;
    padding: 0.875rem 0;
    border: none;
    border-bottom: 1px solid var(--c-border);
    background: transparent;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color var(--t);
    outline: none;
}

.form__field textarea { resize: vertical; min-height: 6rem; }

.form__field input:focus,
.form__field textarea:focus { border-bottom-color: var(--c-red); }

.form__field input::placeholder,
.form__field textarea::placeholder {
    color: var(--c-text-muted);
    opacity: 0.7;
}

.form__submit {
    width: 100%;
    padding: 1.125rem 2rem;
    background: var(--c-red);
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    border-radius: var(--r);
    transition: background var(--t);
}

.form__submit:hover { background: var(--c-red-dark); }

.form__feedback {
    padding: 1rem 1.25rem;
    border-radius: var(--r);
    font-size: 0.9375rem;
    display: none;
}

.form__feedback.is-success {
    display: block;
    background: #e7f5ec;
    color: #1d8a3a;
    border: 1px solid #c5e8cf;
}

.form__feedback.is-error {
    display: block;
    background: #fce7ea;
    color: var(--c-red);
    border: 1px solid #f4c2c7;
}

/* ─── Utilities ─────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-red { color: var(--c-red); }
.divider {
    width: 4rem;
    height: 2px;
    background: var(--c-red);
    margin: 0 auto 2rem;
    border: none;
}

.eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--c-red);
    margin-bottom: 1rem;
}

.lead {
    font-family: var(--font-body);
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--c-text-soft);
    max-width: 50rem;
    margin: 0 auto 3rem;
    text-align: center;
}

/* Skip link (accessibility) */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--c-red);
    color: #fff;
    padding: 0.5rem 1rem;
    z-index: 1000;
    transition: top var(--t);
}

.skip-link:focus { top: 0; }
