/* ============================================================================
   O'Swiss — Contact Page Premium
   ============================================================================ */

/* Override base contact-page top padding (hero handles it) */
.contact-page { padding-top: 0; }

/* ── HERO ────────────────────────────────────────────────────────────────── */
.ch-hero {
    min-height: 88vh;
    display: flex;
    align-items: center;
    padding-top: calc(var(--nav-height) + var(--sp-10));
    padding-bottom: var(--sp-16);
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

/* Texte au-dessus de la photo */
.ch-hero .container {
    position: relative;
    z-index: 2;
}

/* Left column */
.ch-hero__left {
    display: flex;
    flex-direction: column;
    max-width: 560px;
}

.ch-hero__eyebrow {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    margin-bottom: var(--sp-5);
}

.ch-hero__eyebrow svg { color: var(--accent-orange); opacity: 0.8; }

.ch-hero__eyebrow-line {
    width: 40px;
    height: 1px;
    background: var(--accent-orange);
    opacity: 0.5;
}

.ch-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(3.2rem, 8vw, 6.5rem);
    line-height: 0.95;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: var(--sp-6);
}

.ch-hero__title .accent {
    color: #FF8A00;
    display: block;
}

.ch-hero__subtitle {
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--sp-2);
}

.ch-hero__desc {
    font-size: var(--text-base);
    color: #D1D1D1;
    line-height: 1.7;
    max-width: 400px;
    margin-bottom: var(--sp-10);
}

.ch-hero__features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-5);
}

.ch-hero__feature {
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
}

.ch-hero__feature-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: rgba(255,138,0,0.1);
    border: 1px solid rgba(255,138,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF8A00;
    transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.ch-hero__feature:hover .ch-hero__feature-icon {
    background: rgba(255,138,0,0.18);
    border-color: rgba(255,138,0,0.45);
    transform: translateY(-2px);
}

.ch-hero__feature-title {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    letter-spacing: 0.05em;
    color: #FF8A00;
}

.ch-hero__feature-desc {
    font-size: var(--text-sm);
    color: #D1D1D1;
    line-height: 1.55;
}

/* Right column — photo pleine hauteur collée au bord droit */
.ch-hero__right {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 60%;
    z-index: 1;
}

.ch-hero__img-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.ch-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.7) contrast(1.05) saturate(0.6) sepia(0.45) hue-rotate(-15deg);
}

.ch-hero__img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        var(--bg-primary) 0%,
        rgba(10,10,10,0.75) 25%,
        rgba(10,10,10,0.2) 55%,
        transparent 100%
    );
}

.ch-hero__img-badge {
    position: absolute;
    bottom: var(--sp-6);
    left: var(--sp-6);
    background: rgba(5,5,5,0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255,138,0,0.35);
    border-radius: var(--radius-lg);
    padding: var(--sp-3) var(--sp-6);
}

.ch-hero__img-badge-name {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    color: #FF8A00;
    line-height: 1;
    letter-spacing: 0.05em;
}

.ch-hero__img-badge-sub {
    font-size: var(--text-xs);
    color: #D1D1D1;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 2px;
}

/* ── NOUS TROUVER ────────────────────────────────────────────────────────── */
.ct-find {
    background: #0B0B0B;
    padding: var(--sp-20) 0;
}

.ct-find__header {
    text-align: center;
    margin-bottom: var(--sp-14);
}

.ct-find__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    letter-spacing: 0.1em;
    color: var(--text-primary);
    margin-bottom: var(--sp-4);
}

.ct-find__divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FF8A00, transparent);
    margin: 0 auto;
}

.ct-find__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-5);
}

/* Info Card */
.ct-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,138,0,0.25);
    border-radius: var(--radius-xl);
    padding: var(--sp-8);
    display: flex;
    flex-direction: column;
    gap: var(--sp-5);
    position: relative;
    overflow: hidden;
    transition:
        transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.4s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}

.ct-card::before {
    content: '';
    position: absolute;
    top: 0; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,138,0,0.6), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.ct-card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 24px 60px rgba(0,0,0,0.45),
        0 0 35px rgba(255,138,0,0.12);
    border-color: rgba(255,138,0,0.5);
    background: rgba(255,138,0,0.03);
}

.ct-card:hover::before { opacity: 1; }

.ct-card__header {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
}

.ct-card__icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: rgba(255,138,0,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF8A00;
    flex-shrink: 0;
}

.ct-card__title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    letter-spacing: 0.08em;
    color: #FF8A00;
}

.ct-card__body { flex: 1; }

.ct-card__main {
    display: block;
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.5;
    margin-bottom: var(--sp-2);
}

.ct-card__sub {
    font-size: var(--text-sm);
    color: #D1D1D1;
    line-height: 1.65;
}

/* Card button */
.ct-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--sp-3);
    padding: var(--sp-3) var(--sp-5);
    border: 1px solid rgba(255,138,0,0.55);
    border-radius: var(--radius-md);
    background: transparent;
    color: #FF8A00;
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.ct-card__btn:hover {
    background: rgba(255,138,0,0.1);
    border-color: #FF8A00;
    box-shadow: 0 0 22px rgba(255,138,0,0.22);
    transform: translateY(-1px);
}

.ct-card__btn:focus-visible {
    outline: 2px solid #FF8A00;
    outline-offset: 3px;
}

/* ── MAP ─────────────────────────────────────────────────────────────────── */
.ct-map {
    background: var(--bg-primary);
    border-top: 1px solid rgba(255,138,0,0.12);
    border-bottom: 1px solid rgba(255,138,0,0.12);
    margin-bottom: 4rem;
}

.ct-map__container {
    position: relative;
    width: 100%;
    aspect-ratio: 16/6;
    overflow: hidden;
    background: #080808;
}

.ct-map__container iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: none;
    filter: invert(88%) hue-rotate(180deg) brightness(0.82) contrast(1.15) saturate(0.85);
}

.ct-map__fallback {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--sp-4);
    text-align: center;
    padding: var(--sp-8);
    background: #080808;
}

.ct-map__fallback-icon { color: #FF8A00; opacity: 0.65; }

.ct-map__fallback-name {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    color: var(--text-primary);
}

.ct-map__fallback-addr {
    font-size: var(--text-sm);
    color: #D1D1D1;
}

/* ── HORAIRES DÉTAILLÉS ──────────────────────────────────────────────────── */
.ct-hours {
    background: #0B0B0B;
    padding: var(--sp-16) 0;
}

.ct-hours__wrap {
    max-width: 560px;
    margin: 0 auto;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,138,0,0.2);
    border-radius: var(--radius-xl);
    padding: var(--sp-8);
}

.ct-today-badge {
    display: inline-block;
    font-size: 0.7rem;
    background: #FF8A00;
    color: #fff;
    padding: 1px 8px;
    border-radius: var(--radius-full);
    margin-left: var(--sp-2);
    font-weight: 700;
    vertical-align: middle;
    letter-spacing: 0.04em;
}

/* ── BOTTOM PREMIUM CTA ──────────────────────────────────────────────────── */
.ct-bottom {
    background: var(--bg-primary);
    padding: var(--sp-16) 0;
    position: relative;
    overflow: hidden;
}

.ct-bottom .container {
    position: relative;
    z-index: 2;
}

.ct-bottom::before {
    content: '';
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(255,138,0,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.ct-bottom__inner {
    display: flex;
    align-items: center;
    min-height: 420px;
    position: relative;
    z-index: 2;
    max-width: 45%;
}

/* Left: text block */
.ct-bottom__left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: var(--sp-10);
}

.ct-bottom__script {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-style: italic;
    font-size: var(--text-2xl);
    color: #FF8A00;
    line-height: 1.2;
    margin-bottom: var(--sp-1);
}

.ct-bottom__brand {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 6vw, 5rem);
    color: var(--text-primary);
    line-height: 0.9;
    letter-spacing: 0.02em;
    margin-bottom: var(--sp-5);
}

.ct-bottom__divider {
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, #FF8A00, transparent);
    margin-bottom: var(--sp-6);
}

.ct-bottom__text {
    font-size: var(--text-base);
    color: #D1D1D1;
    line-height: 1.85;
    margin-bottom: var(--sp-8);
}

.ct-bottom__cta {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-3);
    padding: var(--sp-4) var(--sp-7);
    background: rgba(255,138,0,0.12);
    border: 1.5px solid #FF8A00;
    border-radius: var(--radius-md);
    color: #FF8A00;
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    transition:
        background 0.25s ease,
        box-shadow 0.3s ease,
        transform 0.25s ease;
    align-self: flex-start;
}

.ct-bottom__cta:hover {
    background: rgba(255,138,0,0.2);
    box-shadow: 0 0 32px rgba(255,138,0,0.28);
    transform: translateY(-2px);
}

.ct-bottom__cta:focus-visible {
    outline: 2px solid #FF8A00;
    outline-offset: 3px;
}

/* Center: burger — collé contre la photo intérieure */
.ct-bottom__center {
    position: absolute;
    right: calc(42% - 40px);
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.ct-bottom__burger {
    width: 420px;
    max-width: 40vw;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 1;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 20%, black 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 20%, black 100%);
}

/* Right: restaurant interior — absolue, pleine hauteur, bord à bord */
.ct-bottom__right {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 68%;
    overflow: hidden;
    z-index: 1;
}

.ct-bottom__interior {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    filter: brightness(0.6) contrast(1.1) saturate(0.6) sepia(0.45) hue-rotate(-15deg);
}

.ct-bottom__right-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        var(--bg-primary) 0%,
        rgba(10,10,10,0.5) 12%,
        transparent 40%
    );
}

/* ── ANIMATIONS ──────────────────────────────────────────────────────────── */
@keyframes ch-fade-up {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

.ch-hero__eyebrow  { animation: ch-fade-up 0.7s cubic-bezier(0.22,1,0.36,1) 0.1s  both; }
.ch-hero__title    { animation: ch-fade-up 0.8s cubic-bezier(0.22,1,0.36,1) 0.25s both; }
.ch-hero__subtitle { animation: ch-fade-up 0.7s cubic-bezier(0.22,1,0.36,1) 0.35s both; }
.ch-hero__desc     { animation: ch-fade-up 0.7s cubic-bezier(0.22,1,0.36,1) 0.45s both; }
.ch-hero__features { animation: ch-fade-up 0.7s cubic-bezier(0.22,1,0.36,1) 0.55s both; }

/* Scroll-driven reveal */
.ch-anim {
    opacity: 0;
    transform: translateY(22px);
    transition:
        opacity  0.7s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.ch-anim.ch-in { opacity: 1; transform: translateY(0); }

.ch-d1 { transition-delay: 0.08s; }
.ch-d2 { transition-delay: 0.18s; }
.ch-d3 { transition-delay: 0.28s; }
.ch-d4 { transition-delay: 0.38s; }

/* ── RESPONSIVE ──────────────────────────────────────────────────────────── */

/* ≤1024px */
@media (max-width: 1024px) {
    .ch-hero__right { width: 55%; }
    .ch-hero__title { font-size: clamp(2.8rem, 6vw, 4.5rem); }
    .ct-find__grid  { gap: var(--sp-4); }

    .ct-bottom__inner { gap: var(--sp-4); }
    .ct-bottom__right { width: 45%; }
    .ct-bottom__left  { padding-right: 0; }
    .ct-map__container { aspect-ratio: 16/8; }
}

/* ≤768px */
@media (max-width: 768px) {
    .ch-hero {
        min-height: auto;
        padding-top: calc(var(--nav-height) + var(--sp-6));
        padding-bottom: var(--sp-12);
    }
    .ch-hero__right {
        position: relative;
        width: 100%;
        height: 300px;
        order: -1;
        display: block;
    }
    .ch-hero__img-overlay {
        background: linear-gradient(
            to bottom,
            transparent 50%,
            var(--bg-primary) 100%
        );
    }
    .ch-hero__desc  { max-width: 100%; }
    .ch-hero__features { grid-template-columns: repeat(3, 1fr); gap: var(--sp-4); }
    .ch-hero__feature-title { font-size: var(--text-base); }

    .ct-find  { padding: var(--sp-14) 0; }
    .ct-find__grid { grid-template-columns: 1fr; gap: var(--sp-4); }
    .ct-card  { padding: var(--sp-6); }
    .ct-card__btn { width: 100%; }
    .ct-map__container { aspect-ratio: 4/3; }

    .ct-bottom { padding: var(--sp-14) 0; }
    .ct-bottom__inner { grid-template-columns: 1fr; gap: var(--sp-6); min-height: 320px; }
    .ct-bottom__right { position: relative; width: 100%; height: 240px; }
    .ct-bottom__right-overlay { background: linear-gradient(to bottom, var(--bg-primary) 0%, transparent 30%, var(--bg-primary) 100%); }
    .ct-bottom__center { max-height: 200px; }
    .ct-bottom__left   { padding-right: 0; }
    .ct-bottom__cta    { align-self: stretch; justify-content: center; }
}

/* ≤480px */
@media (max-width: 480px) {
    .ch-hero__title { font-size: clamp(2.4rem, 11vw, 3.4rem); }
    .ch-hero__features { grid-template-columns: 1fr; gap: var(--sp-4); }
    .ch-hero__feature { flex-direction: row; align-items: flex-start; gap: var(--sp-3); }
    .ch-hero__right { height: 240px; }
    .ct-find__title { font-size: clamp(1.8rem, 8vw, 2.5rem); }
    .ct-map__container { aspect-ratio: 1/1; min-height: 280px; }
    .ct-bottom__inner { gap: var(--sp-6); }
    .ct-hours__wrap { padding: var(--sp-5); }
}

/* ≤375px */
@media (max-width: 375px) {
    .ch-hero__title { font-size: 2.4rem; }
    .ct-find__grid  { gap: var(--sp-3); }
    .ct-card { padding: var(--sp-5); }
    .ct-bottom__script { font-size: var(--text-xl); }
    .ct-bottom__brand  { font-size: 2.8rem; }
}
