/**
 * ═══════════════════════════════════════════════════════════════════════════════
 * COHEN HOUSE FOOTER ARMAGEDDON v4.1 — STYLES
 * ═══════════════════════════════════════════════════════════════════════════════
 * 
 * ✅ All selectors scoped under .ch-footer-module
 * ✅ No global :root overrides
 * ✅ Lightweight glow effects (radial gradient, no heavy blur)
 * ✅ BEM methodology
 * ✅ WCAG 2.1 AA compliant
 *
 * @version 4.1.0
 */
/* ═══════════════════════════════════════════════════════════════════════════════
   MODULE SCOPE + VARIABLES
═══════════════════════════════════════════════════════════════════════════════ */
.ch-footer-module {
    /* Brand Colors */
    --chf-gold: #C9A227;
    --chf-gold-light: #E8D5A3;
    --chf-gold-dark: #9A7B1E;
    --chf-gold-alpha: rgba(201, 162, 39, 0.15);
    /* Navy */
    --chf-navy: #0A1628;
    --chf-navy-light: #132238;
    --chf-navy-dark: #060D17;
    --chf-divine-blue: #1a3a5c;
    --chf-celestial: #2d5a87;
    /* Neutral */
    --chf-white: #FFFFFF;
    --chf-text: rgba(255, 255, 255, 0.9);
    --chf-text-muted: rgba(255, 255, 255, 0.6);
    --chf-text-dim: rgba(255, 255, 255, 0.4);
    /* Platform */
    --chf-booking: #003580;
    --chf-tripadvisor: #00AF87;
    --chf-google: #4285F4;
    --chf-whatsapp: #25D366;
    /* Typography */
    --chf-font-display: 'Cinzel', 'Playfair Display', Georgia, serif;
    --chf-font-body: 'Cormorant Garamond', Georgia, serif;
    /* Spacing */
    --chf-space-xs: 0.25rem;
    --chf-space-sm: 0.5rem;
    --chf-space-md: 1rem;
    --chf-space-lg: 2rem;
    --chf-space-xl: 4rem;
    /* Animation */
    --chf-ease: cubic-bezier(0.4, 0, 0.2, 1);
    --chf-duration: 0.3s;
    /* Reset for module */
    box-sizing: border-box;
    font-family: var(--chf-font-body);
    line-height: 1.6;
}
.ch-footer-module *,
.ch-footer-module *::before,
.ch-footer-module *::after {
/* Global SVG reset */
.ch-footer-module svg {
    width: 24px;
    height: 24px;
    max-width: 100%;
    flex-shrink: 0;
}
    box-sizing: inherit;
}
/* Screen reader only */
.ch-footer-module .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;
}
/* ═══════════════════════════════════════════════════════════════════════════════
   REVIEWS SECTION
═══════════════════════════════════════════════════════════════════════════════ */
.ch-footer-module .chf-reviews {
    position: relative;
    background: linear-gradient(180deg, var(--chf-navy) 0%, var(--chf-divine-blue) 50%, var(--chf-navy) 100%);
    padding: var(--chf-space-xl) 5%;
    overflow: hidden;
}
.ch-footer-module .chf-reviews__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
/* Lightweight glows (radial gradient, no blur filter) */
.ch-footer-module .chf-reviews__glow {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
}
.ch-footer-module .chf-reviews__glow--1 {
    width: 60%;
    height: 60%;
    top: -20%;
    left: -10%;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.15) 0%, transparent 60%);
}
.ch-footer-module .chf-reviews__glow--2 {
    width: 50%;
    height: 50%;
    bottom: -20%;
    right: -5%;
    background: radial-gradient(circle, var(--chf-celestial) 0%, transparent 60%);
    opacity: 0.2;
}
.ch-footer-module .chf-reviews__container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
}
/* Header */
.ch-footer-module .chf-reviews__header {
    text-align: center;
    margin-bottom: var(--chf-space-xl);
}
.ch-footer-module .chf-reviews__eyebrow {
    display: block;
    font-family: var(--chf-font-display);
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--chf-gold);
    margin-bottom: var(--chf-space-sm);
}
.ch-footer-module .chf-reviews__title {
    font-family: var(--chf-font-display);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 400;
    color: var(--chf-white);
    margin: 0;
    line-height: 1.2;
}
.ch-footer-module .chf-reviews__title em {
    font-style: italic;
    background: linear-gradient(135deg, var(--chf-gold), var(--chf-gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
/* ═══════════════════════════════════════════════════════════════════════════════
   CAROUSEL (Dynamic width, no-jump)
═══════════════════════════════════════════════════════════════════════════════ */
.ch-footer-module .chf-carousel {
    position: relative;
    width: 100%;
}
.ch-footer-module .chf-carousel__control {
    position: absolute;
    top: -3rem;
    right: 0;
    z-index: 10;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    color: var(--chf-gold);
    font-family: var(--chf-font-display);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition:opacity var(--chf-duration) var(--chf-ease),transform var(--chf-duration) var(--chf-ease);
}
.ch-footer-module .chf-carousel__control:hover {
    background: rgba(201, 162, 39, 0.1);
    border-color: var(--chf-gold);
}
.ch-footer-module .chf-carousel__control:focus-visible {
    outline: 2px solid var(--chf-gold);
    outline-offset: 2px;
}
.ch-footer-module .chf-carousel__control-icon--play {
    display: none;
}
.ch-footer-module .chf-carousel__control[data-playing="false"] .chf-carousel__control-icon--pause {
    display: none;
}
.ch-footer-module .chf-carousel__control[data-playing="false"] .chf-carousel__control-icon--play {
    display: inline;
}
.ch-footer-module .chf-carousel__viewport {
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
}
.ch-footer-module .chf-carousel__track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    /* Animation controlled by JS via CSS variable */
    animation: chf-scroll var(--chf-scroll-duration, 60s) linear infinite;
}
.ch-footer-module .chf-carousel.is-paused .chf-carousel__track {
    animation-play-state: paused;
}
@keyframes chf-scroll {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(calc(-1 * var(--chf-scroll-distance, 50%)), 0, 0); }
}
/* ═══════════════════════════════════════════════════════════════════════════════
   REVIEW CARDS
═══════════════════════════════════════════════════════════════════════════════ */
.ch-footer-module .chf-card {
    flex-shrink: 0;
    width: 360px;
    padding: 1.75rem;
    background: linear-gradient(145deg, rgba(26, 58, 92, 0.8), rgba(45, 90, 135, 0.4));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    transition: transform var(--chf-duration) var(--chf-ease), border-color var(--chf-duration) var(--chf-ease);
}
.ch-footer-module .chf-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 215, 0, 0.2);
}
/* Platform badge */
.ch-footer-module .chf-card__platform {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.65rem;
    border-radius: 10px;
    font-size: 0.72rem;
    font-weight: 600;
    width: fit-content;
    margin-bottom: 0.75rem;
}
.ch-footer-module .chf-card--booking .chf-card__platform {
    background: rgba(0, 53, 128, 0.15);
    color: #5B9BD5;
}
.ch-footer-module .chf-card--tripadvisor .chf-card__platform {
    background: rgba(0, 175, 135, 0.15);
    color: var(--chf-tripadvisor);
}
.ch-footer-module .chf-card--google .chf-card__platform {
    background: rgba(66, 133, 244, 0.15);
    color: var(--chf-google);
}
.ch-footer-module .chf-card__platform .ch-icon {
    width: 1em;
    height: 1em;
}
.ch-footer-module .chf-card__verified {
    margin-left: 0.25rem;
    font-size: 0.65rem;
}
/* Rating */
.ch-footer-module .chf-card__rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}
.ch-footer-module .chf-card__stars {
    color: #FFD700;
    font-size: 1rem;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}
.ch-footer-module .chf-card__score {
    font-family: var(--chf-font-display);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--chf-white);
    padding: 0.15rem 0.4rem;
    background: var(--chf-gold-alpha);
    border-radius: 4px;
}
/* Quote */
.ch-footer-module .chf-card__quote {
    flex: 1;
    margin: 0 0 var(--chf-space-md);
}
.ch-footer-module .chf-card__quote p {
    font-family: var(--chf-font-body);
    font-size: 1.05rem;
    font-style: italic;
    line-height: 1.8;
    color: var(--chf-text);
    margin: 0;
}
/* Author */
.ch-footer-module .chf-card__author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: var(--chf-space-sm);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.ch-footer-module .chf-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--chf-gold), var(--chf-gold-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--chf-font-display);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--chf-navy);
    flex-shrink: 0;
}
.ch-footer-module .chf-card__avatar--tripadvisor {
    background: linear-gradient(135deg, var(--chf-tripadvisor), #00D4A0);
}
.ch-footer-module .chf-card__avatar--google {
    background: linear-gradient(135deg, var(--chf-google), #5B9BF8);
}
.ch-footer-module .chf-card__avatar--booking {
    background: linear-gradient(135deg, var(--chf-booking), #0055A0);
    color: var(--chf-white);
}
.ch-footer-module .chf-card__author-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.ch-footer-module .chf-card__name {
    font-family: var(--chf-font-display);
    font-style: normal;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--chf-white);
    letter-spacing: 0.05em;
}
.ch-footer-module .chf-card__location {
    font-size: 0.8rem;
    color: var(--chf-text-muted);
}
/* Link */
.ch-footer-module .chf-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: var(--chf-space-sm);
    font-family: var(--chf-font-display);
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--chf-gold);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity var(--chf-duration) var(--chf-ease);
}
.ch-footer-module .chf-card__link:hover,
.ch-footer-module .chf-card__link:focus {
    opacity: 1;
}
.ch-footer-module .chf-card__link:focus-visible {
    outline: 2px solid var(--chf-gold);
    outline-offset: 2px;
}
/* Reviews CTA */
.ch-footer-module .chf-reviews__cta {
    display: flex;
    justify-content: center;
    gap: var(--chf-space-md);
    flex-wrap: wrap;
    margin-top: var(--chf-space-xl);
}
/* ═══════════════════════════════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════════════════════════════ */
.ch-footer-module .chf-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-family: var(--chf-font-display);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 30px;
    border: 1px solid;
    cursor: pointer;
    transition:opacity var(--chf-duration) var(--chf-ease),transform var(--chf-duration) var(--chf-ease);
}
.ch-footer-module .chf-btn:focus-visible {
    outline: 3px solid var(--chf-gold);
    outline-offset: 2px;
}
.ch-footer-module .chf-btn--booking {
    color: #5B9BD5;
    border-color: rgba(0, 53, 128, 0.3);
    background: transparent;
}
.ch-footer-module .chf-btn--booking:hover {
    background: var(--chf-booking);
    color: var(--chf-white);
    border-color: var(--chf-booking);
}
.ch-footer-module .chf-btn--tripadvisor {
    color: var(--chf-tripadvisor);
    border-color: rgba(0, 175, 135, 0.3);
    background: transparent;
}
.ch-footer-module .chf-btn--tripadvisor:hover {
    background: var(--chf-tripadvisor);
    color: var(--chf-white);
    border-color: var(--chf-tripadvisor);
}
.ch-footer-module .chf-btn--primary {
    background: var(--chf-gold);
    color: var(--chf-navy);
    border-color: var(--chf-gold);
    font-weight: 600;
    padding: 1rem 2rem;
    box-shadow: 0 4px 20px rgba(201, 162, 39, 0.3);
}
.ch-footer-module .chf-btn--primary:hover {
    background: var(--chf-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 162, 39, 0.4);
}
.ch-footer-module .chf-btn--primary svg {
    width: 16px;
    height: 16px;
    transition: transform var(--chf-duration) var(--chf-ease);
}
.ch-footer-module .chf-btn--primary:hover svg {
    transform: translateX(3px);
}
/* ═══════════════════════════════════════════════════════════════════════════════
   MAIN FOOTER
═══════════════════════════════════════════════════════════════════════════════ */
.ch-footer-module .chf-footer {
    position: relative;
    background: var(--chf-navy);
    padding: var(--chf-space-xl) 5% var(--chf-space-lg);
    overflow: hidden;
}
.ch-footer-module .chf-footer__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.ch-footer-module .chf-footer__glow {
    position: absolute;
    border-radius: 50%;
}
.ch-footer-module .chf-footer__glow--1 {
    width: 500px;
    height: 500px;
    top: -200px;
    left: 0;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.08) 0%, transparent 60%);
}
.ch-footer-module .chf-footer__glow--2 {
    width: 400px;
    height: 400px;
    bottom: -150px;
    right: 5%;
    background: radial-gradient(circle, rgba(45, 90, 135, 0.1) 0%, transparent 60%);
}
/* Particles (lightweight) */
.ch-footer-module .chf-footer__particles {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(1px 1px at 10% 20%, rgba(255, 215, 0, 0.3) 1px, transparent 0),
        radial-gradient(1px 1px at 30% 60%, rgba(255, 215, 0, 0.2) 1px, transparent 0),
        radial-gradient(1px 1px at 50% 10%, rgba(255, 215, 0, 0.25) 1px, transparent 0),
        radial-gradient(1px 1px at 70% 80%, rgba(255, 215, 0, 0.2) 1px, transparent 0),
        radial-gradient(1px 1px at 90% 40%, rgba(255, 215, 0, 0.3) 1px, transparent 0);
    background-size: 200px 200px;
    animation: chf-particles 30s linear infinite;
}
@keyframes chf-particles {
    0% { transform: translateY(0); }
    100% { transform: translateY(-200px); }
}
.ch-footer-module .chf-footer__container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}
/* Grid */
.ch-footer-module .chf-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--chf-space-xl);
    margin-bottom: var(--chf-space-xl);
}
/* Brand */
.ch-footer-module .chf-footer__brand {
    max-width: 360px;
}
.ch-footer-module .chf-footer__logo {
    display: block;
    text-decoration: none;
    margin-bottom: var(--chf-space-lg);
}
.ch-footer-module .chf-footer__logo:focus-visible {
    outline: 3px solid var(--chf-gold);
    outline-offset: 4px;
}
.ch-footer-module .chf-footer__logo-text {
    display: block;
    font-family: var(--chf-font-display);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    background: linear-gradient(135deg, var(--chf-gold), var(--chf-gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.ch-footer-module .chf-footer__logo-sub {
    display: block;
    font-family: var(--chf-font-display);
    font-size: 0.55rem;
    letter-spacing: 0.5em;
    color: var(--chf-text-dim);
    margin-top: 4px;
}
.ch-footer-module .chf-footer__desc {
    font-size: 1rem;
    color: var(--chf-text-muted);
    line-height: 1.8;
    margin: 0 0 var(--chf-space-md);
}
/* Trust Signals */
.ch-footer-module .chf-footer__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: var(--chf-space-md);
}
.ch-footer-module .chf-trust {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.75rem;
    background: rgba(201, 162, 39, 0.08);
    border: 1px solid rgba(201, 162, 39, 0.15);
    border-radius: 20px;
    text-decoration: none;
    transition:opacity var(--chf-duration) var(--chf-ease),transform var(--chf-duration) var(--chf-ease);
}
.ch-footer-module .chf-trust:hover {
    background: rgba(201, 162, 39, 0.15);
    border-color: rgba(201, 162, 39, 0.3);
}
.ch-footer-module .chf-trust:focus-visible {
    outline: 2px solid var(--chf-gold);
    outline-offset: 2px;
}
.ch-footer-module .chf-trust__icon {
    display: flex;
    align-items: center;
}
.ch-footer-module .chf-trust__icon svg {
    width: 14px;
    height: 14px;
    fill: var(--chf-gold);
}
.ch-footer-module .chf-trust__text {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--chf-text);
}
/* Social */
.ch-footer-module .chf-footer__social {
    display: flex;
    gap: 0.6rem;
}
.ch-footer-module .chf-social {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition:opacity var(--chf-duration) var(--chf-ease),transform var(--chf-duration) var(--chf-ease);
}
.ch-footer-module .chf-social svg,
.ch-footer-module .chf-social svg path {
    width: 18px;
    height: 18px;
    fill: var(--chf-gold);
    transition: fill var(--chf-duration) var(--chf-ease);
}
.ch-footer-module .chf-social:hover {
    background: rgba(201, 162, 39, 0.15);
    border-color: var(--chf-gold);
    transform: translateY(-3px);
}
.ch-footer-module .chf-social:focus-visible {
    outline: 3px solid var(--chf-gold);
    outline-offset: 2px;
}
.ch-footer-module .chf-social--whatsapp:hover {
    background: rgba(37, 211, 102, 0.15);
    border-color: var(--chf-whatsapp);
}
.ch-footer-module .chf-social--whatsapp:hover svg {
    fill: var(--chf-whatsapp);
}
/* Columns */
.ch-footer-module .chf-footer__col {
    min-width: 0;
}
.ch-footer-module .chf-footer__heading {
    font-family: var(--chf-font-display);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--chf-gold);
    margin: 0 0 var(--chf-space-lg);
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(201, 162, 39, 0.2);
}
/* Links */
.ch-footer-module .chf-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.ch-footer-module .chf-footer__links li {
    margin-bottom: 0.75rem;
}
.ch-footer-module .chf-footer__links a {
    color: var(--chf-text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition:opacity var(--chf-duration) var(--chf-ease),transform var(--chf-duration) var(--chf-ease);
    display: inline-block;
}
.ch-footer-module .chf-footer__links a:hover {
    color: var(--chf-gold);
    transform: translateX(5px);
}
.ch-footer-module .chf-footer__links a:focus-visible {
    outline: 2px solid var(--chf-gold);
    outline-offset: 2px;
}
.ch-footer-module .chf-footer__link--highlight {
    color: var(--chf-gold) !important;
    font-weight: 500;
}
/* Contact */
.ch-footer-module .chf-contact {
    font-style: normal;
}
.ch-footer-module .chf-contact__item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    text-decoration: none;
    color: var(--chf-text-muted);
    transition: color var(--chf-duration) var(--chf-ease);
}
.ch-footer-module .chf-contact__item:hover {
    color: var(--chf-white);
}
.ch-footer-module .chf-contact__item:focus-visible {
    outline: 2px solid var(--chf-gold);
    outline-offset: 2px;
}
.ch-footer-module .chf-contact__icon {
    font-size: 1.2rem;
    line-height: 1;
    flex-shrink: 0;
}
.ch-footer-module .chf-contact__icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}
.ch-footer-module .chf-contact__text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    font-size: 0.9rem;
}
.ch-footer-module .chf-contact__cta {
    font-family: var(--chf-font-display);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: var(--chf-gold);
    margin-top: 0.3rem;
}
.ch-footer-module .chf-contact__item--whatsapp:hover {
    color: var(--chf-whatsapp);
}
/* Magic Reveal */
.ch-footer-module .chf-contact__reveal {
    cursor: default;
}
.ch-footer-module .chf-contact__hidden {
    position: relative;
}
.ch-footer-module .chf-reveal-btn {
    background: rgba(201, 162, 39, 0.08);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    color: var(--chf-gold);
    font-family: var(--chf-font-display);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition:opacity var(--chf-duration) var(--chf-ease),transform var(--chf-duration) var(--chf-ease);
}
.ch-footer-module .chf-reveal-btn:hover {
    background: rgba(201, 162, 39, 0.15);
    border-color: var(--chf-gold);
}
.ch-footer-module .chf-reveal-btn:focus-visible {
    outline: 2px solid var(--chf-gold);
    outline-offset: 2px;
}
.ch-footer-module .chf-contact__revealed {
    display: none;
    color: var(--chf-white);
    text-decoration: none;
    font-size: 1rem;
}
.ch-footer-module .chf-contact__revealed:hover {
    color: var(--chf-gold);
}
.ch-footer-module .chf-contact__reveal.is-revealed .chf-reveal-btn {
    display: none;
}
.ch-footer-module .chf-contact__reveal.is-revealed .chf-contact__revealed {
    display: block;
    animation: chf-fadeIn 0.4s var(--chf-ease);
}
@keyframes chf-fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}
/* CTA */
.ch-footer-module .chf-footer__cta {
    text-align: center;
    margin-bottom: var(--chf-space-xl);
}
.ch-footer-module .chf-footer__cta-label {
    font-family: var(--chf-font-body);
    font-size: 1rem;
    color: var(--chf-text-muted);
    margin: 0 0 var(--chf-space-md);
}
/* Bottom */
.ch-footer-module .chf-footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--chf-space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.ch-footer-module .chf-footer__copyright {
    font-size: 0.8rem;
    color: var(--chf-text-dim);
    margin: 0;
}
.ch-footer-module .chf-footer__legal {
    display: flex;
    gap: var(--chf-space-lg);
}
.ch-footer-module .chf-footer__legal a {
    font-size: 0.8rem;
    color: var(--chf-text-dim);
    text-decoration: none;
    transition: color var(--chf-duration) var(--chf-ease);
}
.ch-footer-module .chf-footer__legal a:hover {
    color: var(--chf-gold);
}
.ch-footer-module .chf-footer__legal a:focus-visible {
    outline: 2px solid var(--chf-gold);
    outline-offset: 2px;
}
/* ═══════════════════════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .ch-footer-module .chf-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--chf-space-lg);
    }
    .ch-footer-module .chf-footer__brand {
        grid-column: span 2;
        max-width: 100%;
        text-align: center;
        margin-bottom: var(--chf-space-md);
    }
    .ch-footer-module .chf-footer__trust,
    .ch-footer-module .chf-footer__social {
        justify-content: center;
    }
    .ch-footer-module .chf-card {
        width: 320px;
    }
}
@media (max-width: 768px) {
    .ch-footer-module .chf-reviews,
    .ch-footer-module .chf-footer {
        padding-left: 4%;
        padding-right: 4%;
    }
    .ch-footer-module .chf-footer__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .ch-footer-module .chf-footer__brand {
        grid-column: span 1;
    }
    .ch-footer-module .chf-footer__heading {
        display: inline-block;
    }
    .ch-footer-module .chf-contact {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .ch-footer-module .chf-contact__item {
        justify-content: center;
    }
    .ch-footer-module .chf-footer__bottom {
        flex-direction: column;
        gap: var(--chf-space-md);
        text-align: center;
    }
    .ch-footer-module .chf-footer__legal {
        order: -1;
    }
    .ch-footer-module .chf-card {
        width: 280px;
        padding: 1.25rem;
    }
    .ch-footer-module .chf-carousel__control {
        top: auto;
        bottom: -2.5rem;
        right: 50%;
        transform: translateX(50%);
    }
    .ch-footer-module .chf-reviews__cta {
        margin-top: calc(var(--chf-space-xl) + 1rem);
    }
}
/* ═══════════════════════════════════════════════════════════════════════════════
   REDUCED MOTION
═══════════════════════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
    .ch-footer-module .chf-carousel__track {
        animation: none;
    }
    .ch-footer-module .chf-footer__particles {
        animation: none;
    }
    .ch-footer-module .chf-card:hover,
    .ch-footer-module .chf-social:hover,
    .ch-footer-module .chf-btn--primary:hover {
        transform: none;
    }
    .ch-footer-module .chf-carousel__control {
        display: none;
    }
}
/* ═══════════════════════════════════════════════════════════════════════════════
   PRINT
═══════════════════════════════════════════════════════════════════════════════ */
@media print {
    .ch-footer-module .chf-reviews,
    .ch-footer-module .chf-footer {
        background: white !important;
        color: black !important;
    }
    .ch-footer-module .chf-reviews__bg,
    .ch-footer-module .chf-footer__bg,
    .ch-footer-module .chf-carousel,
    .ch-footer-module .chf-footer__social,
    .ch-footer-module .chf-footer__cta {
        display: none !important;
    }
}
/* EMERGENCY SVG FIX */
.ch-footer-module svg,
.ch-footer-module .chf-card__platform svg,
.ch-footer-module .chf-reviews svg {
    width: 24px !important;
    height: 24px !important;
    max-width: 24px !important;
    max-height: 24px !important;
}
.ch-footer-module .chf-card__platform-icon {
    width: 24px !important;
    height: 24px !important;
    display: inline-flex !important;
    overflow: hidden !important;
}
/* Force gold color on social icons */
.ch-footer-module .chf-social svg,
.ch-footer-module .chf-social svg path,
.ch-footer-module .chf-footer__social svg,
.ch-footer-module .chf-footer__social svg path {
    fill: #C9A227 !important;
}
/* Force gold color via currentColor */
.ch-footer-module .chf-social {
}
/* Proudly made in Sicily styling */
.ch-footer-module .chf-footer__made {
    display: block;
    margin-top: 0.75rem;
    font-family: var(--chf-font-body);
    font-size: 0.85rem;
    font-style: italic;
    color: var(--chf-gold-light);
    letter-spacing: 0.05em;
}
.ch-footer-module .chf-footer__made a {
    color: var(--chf-gold);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}
.ch-footer-module .chf-footer__made a:hover {
    border-bottom-color: var(--chf-gold);
}
/* ═══ PERFORMANCE: CONTAIN PAINT (CLS <0.03) ═══ */
.ch-footer-module .chf-reviews,
.ch-footer-module .chf-footer {
    contain: layout paint;
}
/* ═══ FOCUS STATES FOR KEYBOARD NAV ═══ */
.ch-footer-module .chf-review:focus {
    outline: 3px solid var(--chf-gold);
    outline-offset: 4px;
}
.ch-footer-module .chf-review:focus:not(:focus-visible) {
    outline: none;
}
.ch-footer-module .chf-review:focus-visible {
    outline: 3px solid var(--chf-gold);
    outline-offset: 4px;
}
/* ═══ HIGH CONTRAST MODE ═══ */
@media (prefers-contrast: high) {
    .ch-footer-module .chf-review {
        border: 2px solid currentColor;
    }
    .ch-footer-module .chf-footer__link {
        text-decoration: underline;
    }
}
/* ═══ REDUCED MOTION ═══ */
@media (prefers-reduced-motion: reduce) {
    .ch-footer-module .chf-reviews__track {
        animation: none !important;
    }
    .ch-footer-module .chf-review {
        transition: none !important;
    }
}
