/* =========================================================
   Dubai Escort Palace — stil global
   Fundal #152028 · accent #f63d68 · header & footer luminoase
   ========================================================= */

:root {
    --bg:            #152028;
    --bg-soft:       #111a21;
    --surface:       #1c2a34;
    --surface-2:     #223440;
    --input-bg:      #101920;
    --border:        #2d414f;
    --border-strong: #3f5666;
    --text:          #f4f7f9;
    --text-gray:     #dfe7ec;
    --text-dim:      rgba(233, 240, 245, .74);
    --text-mute:     #9fb2c0;
    --primary:       #f63d68;
    --primary-dark:  #d32552;
    --primary-soft:  rgba(246, 61, 104, .14);
    --gold:          #e8c07d;
    --green:         #34d399;
    --tg:            #229ED9;

    /* zone luminoase (header / footer — logo negru) */
    --light:         #fcfcfd;
    --light-2:       #f0f2f5;
    --light-text:    #16222b;
    --light-mute:    #6d7d89;
    --light-border:  #e2e6ea;

    --radius:        16px;
    --radius-lg:     24px;
    --shadow:        0 18px 45px rgba(0, 0, 0, .35);
    --max:           1400px;
    --pad:           16px;
    --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
@media (min-width: 768px)  { :root { --pad: 40px; } }
@media (min-width: 1200px) { :root { --pad: 60px; } }

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    font-size: 15px;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
body > footer { margin-top: auto; }

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
svg { flex: none; }
h1, h2, h3, p, td, th, dd, dt { overflow-wrap: anywhere; }

/* Aceeasi latime pentru header, continut si footer */
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }

.muted  { color: var(--text-dim); }
.center { text-align: center; }
.hidden { display: none !important; }

/* ---------- Butoane ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 22px; border-radius: 200px; border: 1px solid transparent;
    font-weight: 600; font-size: 14px; cursor: pointer; transition: .2s ease; white-space: nowrap;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); }
.btn-tg      { background: var(--tg); color: #fff; }
.btn-tg:hover { background: #1b87ba; }
.btn-wa      { background: #25D366; color: #06301a; }
.btn-ghost   { background: transparent; border-color: var(--border-strong); color: var(--text-gray); }
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); }
.btn-block   { width: 100%; }
.btn-sm      { padding: 9px 18px; font-size: 13px; }

.btn-header {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--primary); color: #fff; font-weight: 600; font-size: 14px;
    padding: 11px 22px; border-radius: 200px; transition: .2s ease; white-space: nowrap;
}
.btn-header:hover { background: var(--primary-dark); color: #fff; }

/* =========================================================
   HEADER — pilula alba, aliniata cu continutul
   ========================================================= */
.site-header { position: relative; z-index: 50; padding-top: 14px; }
@media (min-width: 768px) { .site-header { padding-top: 22px; } }

.header-pill {
    display: flex; align-items: center; gap: 10px;
    background: var(--light); border-radius: 200px; padding: 9px 10px 9px 16px;
}
@media (min-width: 768px) { .header-pill { padding: 12px 14px 12px 24px; gap: 16px; } }

.header-pill .logo { display: inline-flex; align-items: center; flex-shrink: 0; }
.header-pill .logo img { height: 26px; width: auto; object-fit: contain; }
@media (min-width: 768px) { .header-pill .logo img { height: 34px; } }

.main-nav { display: flex; align-items: center; gap: 6px; margin-left: auto; }
.nav-link {
    white-space: nowrap; font-size: 14px; font-weight: 500; color: var(--light-mute);
    padding: 9px 18px; border-radius: 200px; transition: .2s ease;
}
@media (min-width: 1024px) { .nav-link { font-size: 15.5px; padding: 10px 24px; } }
.nav-link:hover { color: var(--primary); }
.nav-link.active { background: var(--primary); color: #fff; }

.header-cta { display: flex; align-items: center; gap: 8px; flex-shrink: 0; margin-left: auto; }
.main-nav ~ .header-cta { margin-left: 0; }

.burger {
    display: none; height: 38px; width: 38px; border: 0; cursor: pointer;
    align-items: center; justify-content: center; border-radius: 50%;
    background: rgba(0, 0, 0, .06); color: var(--light-text);
}

.mobile-nav {
    display: none; flex-direction: column; margin-top: 8px;
    background: var(--light); border-radius: 22px; padding: 8px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { padding: 12px 16px; border-radius: 14px; font-size: 15px; font-weight: 500; color: var(--light-text); }
.mobile-nav a:hover { background: var(--light-2); color: var(--primary); }
.mobile-nav a.tg {
    background: var(--primary); color: #fff; margin-top: 4px;
    display: flex; align-items: center; justify-content: center; gap: 8px;
}

@media (max-width: 860px) {
    .main-nav { display: none; }
    .burger { display: inline-flex; }
    .main-nav ~ .header-cta { margin-left: auto; }
}
@media (max-width: 430px) {
    .btn-header .label { display: none; }
    .btn-header { padding: 10px 13px; }
}

/* =========================================================
   HERO scurt
   ========================================================= */
.hero-short { padding: 38px 0 20px; text-align: center; }
.hero-short h1 { font-size: clamp(27px, 5vw, 48px); line-height: 1.12; font-weight: 700; letter-spacing: -1px; }
.hero-short h1 .line2 { color: var(--primary); font-size: inherit; font-weight: inherit; }
.hero-short p { margin: 14px auto 0; font-size: clamp(14px, 1.6vw, 17px); color: var(--text-dim); max-width: 640px; }
@media (max-width: 620px) { .hero-short { padding: 24px 0 12px; } }

/* =========================================================
   LISTARE (filtre + grid)
   ========================================================= */
.listing { padding: 10px 0 44px; }

.filter-bar {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 14px; margin-bottom: 20px;
}
.filter-row { display: grid; grid-template-columns: 2fr 1fr 1fr auto; gap: 10px; }
.filter-row > * { min-width: 0; }
.filter-input {
    display: flex; align-items: center; gap: 10px; background: var(--input-bg);
    border: 1px solid var(--border); border-radius: 200px; padding: 0 18px; color: var(--text-mute);
}
.filter-input:focus-within { border-color: var(--primary); }
.filter-input input { flex: 1; background: none; border: 0; outline: none; padding: 13px 0; font-size: 14px; color: var(--text); min-width: 0; }
.filter-input input::placeholder { color: var(--text-mute); }
.filter-row select {
    background: var(--input-bg); border: 1px solid var(--border); border-radius: 200px;
    padding: 13px 44px 13px 18px; cursor: pointer; font-size: 14px; outline: none; width: 100%; appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%239fb2c0' stroke-width='2'%3E%3Cpath d='M3 5l4 4 4-4'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 18px center;
}
.filter-row select:focus { border-color: var(--primary); }

/* =========================================================
   CARD MODEL
   ========================================================= */
.grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.grid > * { min-width: 0; }
@media (max-width: 1280px) { .grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 900px)  { .grid { grid-template-columns: repeat(2, 1fr); gap: 10px; } }
@media (max-width: 620px)  { .grid { grid-template-columns: 1fr; gap: 12px; } }

.card {
    display: flex; flex-direction: column; height: 100%;
    border-radius: 24px; border: 1px solid var(--border); background: var(--surface);
    padding: 8px; transition: border-color .2s ease, transform .2s ease;
}
@media (min-width: 768px) { .card { padding: 12px; } }
.card:hover { border-color: var(--primary); transform: translateY(-2px); }

.card-media {
    position: relative; width: 100%; aspect-ratio: 1 / 1;
    border-radius: 14px; overflow: hidden; background: var(--surface-2);
}
@media (min-width: 768px) { .card-media { aspect-ratio: 4 / 5; border-radius: 16px; } }
.card-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top center; }

.card-vip {
    position: absolute; top: 10px; left: 10px; z-index: 2;
    background: var(--primary); color: #fff; font-size: 10px; font-weight: 700;
    letter-spacing: .06em; text-transform: uppercase; padding: 4px 10px; border-radius: 200px;
}

.card-body { display: flex; flex: 1; flex-direction: column; justify-content: space-between; gap: 6px; padding-top: 8px; }
@media (min-width: 768px) { .card-body { gap: 10px; padding-top: 12px; } }

.card-name { font-size: 14.5px; font-weight: 500; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
@media (min-width: 768px) { .card-name { font-size: 18px; } }
.card-loc { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--text-dim); }
.card-loc svg { color: var(--primary); }
@media (min-width: 768px) { .card-loc { font-size: 13.5px; } }

.card-pill {
    display: flex; align-items: baseline; flex-wrap: wrap; gap: 3px 8px;
    background: var(--input-bg); border-radius: 200px; padding: 7px 12px;
}
.card-pill b { font-size: 13px; font-weight: 700; color: var(--primary); white-space: nowrap; }
.card-pill span { font-size: 11.5px; color: var(--text-dim); white-space: nowrap; }
@media (min-width: 768px) { .card-pill b { font-size: 14px; } .card-pill span { font-size: 12.5px; } }

/* ---------- Sectiuni ---------- */
.section { padding: 44px 0; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 22px; }
.section-head h1, .section-head h2 { font-size: clamp(21px, 3vw, 30px); font-weight: 600; letter-spacing: -.5px; }
.section-head p  { color: var(--text-dim); font-size: 14px; margin-top: 6px; }

.breadcrumb { font-size: 13px; color: var(--text-mute); padding: 20px 0 0; display: flex; gap: 8px; flex-wrap: wrap; }
.breadcrumb a:hover { color: var(--primary); }

/* =========================================================
   PAGINA MODEL
   ========================================================= */
.profile {
    display: grid; grid-template-columns: 1.1fr .9fr; gap: 22px 30px;
    align-items: stretch; padding-top: 12px;
}
.p-gallery { grid-column: 1; grid-row: 1; display: flex; flex-direction: column; }
.p-info    { grid-column: 2; grid-row: 1; }
.p-video   { grid-column: 1; grid-row: 2; }
.p-rates   { grid-column: 2; grid-row: 2; }
.p-about   { grid-column: 1 / -1; grid-row: 3; }

/* fara video: descrierea urca in locul lui, langa Rates */
.profile.no-video .p-about { grid-column: 1; grid-row: 2; }
.profile.no-video .p-about > .panel { height: 100%; }

/* poza se intinde pana la finalul coloanei cu Characteristics */
.p-gallery .gallery-main { flex: 1; aspect-ratio: auto; min-height: 460px; }

/* video de aceeasi inaltime cu tabelul Rates */
.p-video { display: flex; }
.p-video > .panel { flex: 1; display: flex; flex-direction: column; }
.p-video .video-wrap { flex: 1; aspect-ratio: auto; min-height: 240px; }
.video-wrap video, .video-wrap iframe { position: absolute; inset: 0; }

.gallery-main {
    position: relative; border-radius: var(--radius-lg); overflow: hidden;
    background: var(--surface-2); border: 1px solid var(--border); aspect-ratio: 4 / 5;
}
.gallery-main img {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; object-position: top center; cursor: zoom-in;
}
.gallery-nav {
    position: absolute; top: 50%; transform: translateY(-50%); width: 40px; height: 40px;
    border-radius: 50%; background: rgba(15, 25, 32, .6); border: 1px solid rgba(255, 255, 255, .18);
    display: grid; place-items: center; cursor: pointer; backdrop-filter: blur(6px); color: #fff;
}
.gallery-nav:hover { background: var(--primary); }
.gallery-nav.prev { left: 12px; } .gallery-nav.next { right: 12px; }
.gallery-count {
    position: absolute; bottom: 12px; right: 12px; font-size: 12px; padding: 5px 12px;
    border-radius: 200px; background: rgba(15, 25, 32, .65); backdrop-filter: blur(6px);
}
.thumbs { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; margin-top: 10px; }
.thumbs img {
    aspect-ratio: 1; object-fit: cover; border-radius: 10px; cursor: pointer;
    border: 2px solid transparent; opacity: .65; transition: .2s; width: 100%;
}
.thumbs img:hover, .thumbs img.active { opacity: 1; border-color: var(--primary); }

.profile-head { display: flex; align-items: center; gap: 8px 14px; flex-wrap: wrap; }
.profile-head h1 { font-size: clamp(24px, 3.4vw, 34px); font-weight: 700; letter-spacing: -.8px; }
.profile-loc { display: inline-flex; align-items: center; gap: 6px; color: var(--text-dim); font-size: 14.5px; }
.profile-loc svg { color: var(--primary); }
.profile-head .badge { margin-left: auto; }
.rating-inline { display: flex; align-items: center; gap: 8px; margin-top: 10px; font-size: 13.5px; color: var(--text-dim); flex-wrap: wrap; }

.badge {
    display: inline-flex; align-items: center; gap: 5px; font-size: 10.5px; font-weight: 700;
    letter-spacing: .04em; text-transform: uppercase; padding: 5px 10px; border-radius: 200px;
    background: var(--primary); color: #fff;
}

.panel {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 20px; margin-top: 18px;
}
@media (min-width: 768px) { .panel { padding: 24px; } }
.panel h2, .panel h3 { font-size: 17px; font-weight: 600; margin-bottom: 14px; }
.panel p { color: var(--text-dim); font-size: 14.5px; }

.specs {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--border);
    border: 1px solid var(--border); border-radius: 14px; overflow: hidden;
}
.spec { background: var(--surface); padding: 12px 15px; }
.spec:last-child:nth-child(odd) { grid-column: 1 / -1; }
.spec dt { font-size: 11px; text-transform: uppercase; letter-spacing: .09em; color: var(--text-mute); }
.spec dd { font-size: 14.5px; font-weight: 500; margin-top: 3px; }

.price-table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.price-table th, .price-table td { padding: 12px 10px; text-align: left; border-bottom: 1px solid var(--border); }
.price-table thead th { font-size: 11px; text-transform: uppercase; letter-spacing: .09em; color: var(--text-mute); font-weight: 600; }
.price-table tbody tr:last-child td { border-bottom: 0; }
.price-table tbody tr:hover { background: var(--surface-2); }
.price-table td.dur { font-weight: 600; white-space: nowrap; }
.price-table td.val { color: var(--primary); font-weight: 700; white-space: nowrap; }
.price-table td.val .usd { display: block; color: var(--text-mute); font-weight: 500; font-size: 12px; }

.video-wrap {
    position: relative; border-radius: var(--radius); overflow: hidden;
    background: #0d151b; aspect-ratio: 16 / 9; border: 1px solid var(--border);
}
.video-wrap video, .video-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }
.video-empty { display: grid; place-items: center; height: 100%; color: var(--text-mute); font-size: 14px; gap: 10px; text-align: center; padding: 20px; }

.contact-box {
    background: var(--surface); border: 1px solid var(--primary);
    border-radius: var(--radius-lg); padding: 20px; margin-top: 18px;
}
.contact-box h3 { font-size: 17px; font-weight: 600; margin-bottom: 14px; }
.contact-box .btn { width: 100%; margin-bottom: 10px; padding: 14px; }
.contact-meta {
    display: flex; flex-direction: column; gap: 9px; margin-top: 14px; padding-top: 14px;
    border-top: 1px solid var(--border); font-size: 13px; color: var(--text-dim);
}
.contact-meta div { display: flex; justify-content: space-between; gap: 10px; }
.contact-meta b { color: var(--text); font-weight: 600; text-align: right; }

.tags { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
    font-size: 12.5px; padding: 7px 13px; border-radius: 200px;
    background: var(--input-bg); border: 1px solid var(--border); color: var(--text-dim);
}

/* ---------- Recenzii ---------- */
.review-summary { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; margin-bottom: 20px; }
.review-score { text-align: center; padding-right: 22px; border-right: 1px solid var(--border); }
.review-score strong { font-size: 38px; font-weight: 700; line-height: 1; display: block; }
.review-score small { font-size: 12.5px; color: var(--text-mute); }
.star { color: var(--border-strong); font-size: 15px; letter-spacing: 1px; }
.star.on { color: var(--gold); }

.review-list { display: flex; flex-direction: column; gap: 14px; }
.review { background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px 18px; }
.review-top { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.avatar {
    width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
    background: #ffffff; color: #16222b; font-weight: 700; font-size: 15px; flex: none;
}
.review-top .who { flex: 1; min-width: 0; }
.review-top .who strong { font-size: 14.5px; display: block; }
.review-top .who span { font-size: 12px; color: var(--text-mute); }
.review p { font-size: 14px; color: var(--text-dim); }
.review .for { font-size: 12px; color: var(--text-mute); margin-top: 8px; }
.review .for a { color: var(--primary); }

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr; } }

/* ---------- Formulare ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.field label { font-size: 12.5px; color: var(--text-dim); font-weight: 500; }
.field input, .field select, .field textarea {
    background: var(--input-bg); border: 1px solid var(--border); border-radius: 12px;
    padding: 11px 14px; font-size: 14px; outline: none; width: 100%; resize: vertical;
}
.field select {
    appearance: none; -webkit-appearance: none; padding-right: 40px; cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%239fb2c0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 5l4 4 4-4'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 16px center;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--primary); }
.field.full { grid-column: 1 / -1; }

.rating-input { display: flex; flex-direction: row-reverse; justify-content: flex-end; gap: 4px; }
.rating-input input { display: none; }
.rating-input label { font-size: 26px; color: var(--border-strong); cursor: pointer; line-height: 1; transition: .15s; }
.rating-input input:checked ~ label, .rating-input label:hover, .rating-input label:hover ~ label { color: var(--gold); }

.alert { padding: 13px 16px; border-radius: 12px; font-size: 14px; margin-bottom: 16px; border: 1px solid; }
.alert-success { background: rgba(52, 211, 153, .12); border-color: rgba(52, 211, 153, .4);  color: #8ef0c6; }
.alert-error   { background: rgba(246, 61, 104, .12); border-color: rgba(246, 61, 104, .4);  color: #ffb3c6; }
.alert-info    { background: rgba(124, 198, 255, .1); border-color: rgba(124, 198, 255, .35); color: #a9daff; }

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: 0; }
.faq-q {
    width: 100%; background: none; border: 0; text-align: left; cursor: pointer;
    padding: 18px 0; font-size: 15.5px; font-weight: 500; display: flex;
    justify-content: space-between; align-items: center; gap: 16px; color: var(--text);
}
.faq-q::after { content: "+"; font-size: 22px; color: var(--primary); transition: transform .25s; flex: none; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { padding-bottom: 18px; font-size: 14.5px; color: var(--text-dim); }
.faq-item.open .faq-a { max-height: 600px; }

/* ---------- CTA ---------- */
.cta-band {
    background: var(--light); border: 1px solid var(--light-border); color: var(--light-text);
    border-radius: var(--radius-lg); padding: 36px 24px; text-align: center;
}
.cta-band h2 { font-size: clamp(21px, 3vw, 30px); font-weight: 700; letter-spacing: -.6px; color: var(--light-text); }
.cta-band p { color: #4a5a66; max-width: 620px; margin: 12px auto 22px; font-size: 15px; }
.cta-band .btn-ghost { border-color: rgba(22, 34, 43, .22); color: var(--light-text); }
.cta-band .btn-ghost:hover { border-color: var(--primary); color: var(--primary); }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---------- Paginare ---------- */
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 32px; flex-wrap: wrap; }
.pagination a, .pagination span {
    min-width: 40px; height: 40px; display: grid; place-items: center; padding: 0 12px;
    border-radius: 12px; background: var(--surface); border: 1px solid var(--border); font-size: 14px;
}
.pagination a:hover { border-color: var(--primary); color: var(--primary); }
.pagination .current { background: var(--primary); border-color: var(--primary); color: #fff; font-weight: 600; }

.empty { text-align: center; padding: 60px 20px; color: var(--text-mute); }
.empty h3 { font-size: 19px; color: var(--text); margin-bottom: 8px; }

/* ---------- Lightbox ---------- */
.lightbox {
    position: fixed; inset: 0; background: rgba(10, 18, 24, .96); z-index: 1000;
    display: none; align-items: center; justify-content: center; padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 86vh; object-fit: contain; border-radius: 10px; }
.lightbox .close { position: absolute; top: 18px; right: 20px; font-size: 34px; cursor: pointer; color: #fff; line-height: 1; }
.lightbox .lb-nav { position: absolute; top: 50%; transform: translateY(-50%); font-size: 38px; cursor: pointer; padding: 10px 16px; color: #fff; user-select: none; }
.lightbox .lb-nav.prev { left: 4px; } .lightbox .lb-nav.next { right: 4px; }

/* =========================================================
   FOOTER — luminos
   ========================================================= */
.site-footer { background: var(--light); color: var(--light-text); margin-top: 40px; border-radius: 28px 28px 0 0; }
.footer-inner { max-width: var(--max); margin: 0 auto; padding: 40px var(--pad) 22px; }

.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 32px; }
.footer-grid h4 { font-size: 12px; text-transform: uppercase; letter-spacing: .11em; color: var(--light-mute); margin-bottom: 14px; font-weight: 700; }
.footer-grid ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-grid a { font-size: 14px; color: #4a5a66; }
.footer-grid a:hover { color: var(--primary); }
.footer-grid .btn-header, .footer-grid .btn-header:hover { color: #fff; }
.footer-about .logo img { height: 38px; width: auto; object-fit: contain; }
.footer-about p { font-size: 13.5px; color: #4a5a66; margin: 16px 0; max-width: 420px; }

.age-note { font-size: 12px; color: var(--light-mute); margin-top: 28px; line-height: 1.7; }
.footer-bottom {
    margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--light-border);
    display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
    font-size: 12.5px; color: var(--light-mute);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1100px) {
    /* pe mobil: galerie -> contact/caracteristici -> preturi -> video -> descriere */
    .profile { grid-template-columns: 1fr; gap: 18px; }
    .p-gallery, .p-info, .p-rates, .p-video, .p-about { grid-column: auto; grid-row: auto; }
    .p-gallery .gallery-main { flex: none; aspect-ratio: 4 / 5; min-height: 0; }
    .p-video .video-wrap { flex: none; aspect-ratio: 16 / 9; min-height: 0; }
    .profile-head .badge { margin-left: 0; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-about { grid-column: 1 / -1; }
}
@media (max-width: 860px) {
    .filter-row { grid-template-columns: 1fr 1fr; }
    .filter-row .filter-input { grid-column: 1 / -1; }
    .filter-row .btn { grid-column: 1 / -1; }
    .form-grid { grid-template-columns: 1fr; }
    .section { padding: 32px 0; }
}
@media (max-width: 620px) {
    body { font-size: 14.5px; }
    .card-media { aspect-ratio: 4 / 5; border-radius: 16px; }
    .card-name { font-size: 17px; }
    .card-loc { font-size: 13px; }
    .filter-row { grid-template-columns: 1fr; }
    .filter-bar { padding: 10px; border-radius: 20px; }
    .specs { grid-template-columns: 1fr; }
    .thumbs { grid-template-columns: repeat(4, 1fr); gap: 6px; }
    .gallery-main { aspect-ratio: 3 / 4; }
    .panel { padding: 16px; border-radius: 18px; }
    .price-table { font-size: 13.5px; }
    .price-table th, .price-table td { padding: 10px 6px; }
    .listing { padding: 6px 0 30px; }
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .review-score { border-right: 0; border-bottom: 1px solid var(--border); padding: 0 0 14px; width: 100%; }
    .cta-band { padding: 26px 16px; }
    .cta-actions .btn { width: 100%; }
    .review { padding: 14px; }
    .breadcrumb { padding-top: 14px; }
}

