/* TIM PRO DETAILING & PDR — dark & gold */
:root {
    --bg: #0a0a0c;
    --bg-alt: #101014;
    --card: #14141a;
    --line: #26262e;
    --gold: #d4af37;
    --gold-light: #f2d778;
    --gold-dark: #8c6d1f;
    --text: #ffffff;
    --muted: #d9d9d9;
    --green: #25d366;
    --radius: 16px;
    --font-head: 'Marcellus', serif;
    --font-body: 'Manrope', sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
}
body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    opacity: .035;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)'/%3E%3C/svg%3E");
}
img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; }
::selection { background: var(--gold); color: #0a0a0c; }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

.container { width: min(1200px, 92%); margin: 0 auto; position: relative; z-index: 2; }

/* ---------- Header ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10, 10, 12, .92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(212, 175, 55, .18);
    transition: border-color .3s, background-color .3s;
}
.site-header.scrolled { border-bottom-color: rgba(212, 175, 55, .35); background: rgba(8, 8, 10, .97); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; gap: 20px; }
.brand-logo { height: 66px; width: auto; border-radius: 10px; filter: drop-shadow(0 2px 12px rgba(212, 175, 55, .25)); transition: transform .3s; }
.brand:hover .brand-logo { transform: scale(1.04); }
.main-nav { display: flex; align-items: center; gap: 28px; }
.nav-link {
    color: var(--text);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: .4px;
    position: relative;
    padding: 6px 0;
    transition: color .25s;
}
.nav-link::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 0; height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transition: width .3s;
}
.nav-link:hover, .nav-link.active { color: var(--gold-light); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-cta { margin-left: 8px; }
.nav-mobile-extra { display: none; }
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 8px;
    z-index: 110;
}
.menu-toggle span { width: 26px; height: 2px; background: var(--gold); border-radius: 2px; transition: transform .3s, opacity .3s; }
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 32px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: .5px;
    cursor: pointer;
    border: 0;
    transition: transform .25s, box-shadow .25s, background-color .25s, color .25s;
    text-align: center;
}
.btn-gold {
    background: linear-gradient(135deg, var(--gold-light), var(--gold) 55%, var(--gold-dark));
    color: #141005;
    box-shadow: 0 8px 24px rgba(212, 175, 55, .28);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(212, 175, 55, .4); color: #000; }
.btn-outline { background: transparent; border: 1px solid rgba(212, 175, 55, .55); color: var(--text); }
.btn-outline:hover { background: rgba(212, 175, 55, .12); border-color: var(--gold); transform: translateY(-3px); }
.btn-green { background: var(--green); color: #04150a; box-shadow: 0 8px 24px rgba(37, 211, 102, .3); }
.btn-green:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(37, 211, 102, .42); }
.btn-sm { padding: 10px 22px; font-size: 14px; }

/* ---------- Sections ---------- */
.section { padding: 96px 0; position: relative; }
.section-alt { background: var(--bg-alt); }
.kicker {
    display: inline-block;
    color: var(--gold);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.kicker::before { content: ''; display: inline-block; width: 34px; height: 1px; background: var(--gold); vertical-align: middle; margin-right: 12px; }
.section-title {
    font-family: var(--font-head);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text);
}
.section-title em { font-style: normal; color: transparent; background: linear-gradient(120deg, var(--gold-light), var(--gold)); -webkit-background-clip: text; background-clip: text; }
.lead { color: var(--muted); font-size: 17px; max-width: 720px; }
.section-head { margin-bottom: 56px; }
.text-center { text-align: center; }
.text-center .lead { margin: 0 auto; }
.text-center .kicker::after { content: ''; display: inline-block; width: 34px; height: 1px; background: var(--gold); vertical-align: middle; margin-left: 12px; }

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 86vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    isolation: isolate;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(10, 10, 12, .62) 0%, rgba(10, 10, 12, .55) 45%, var(--bg) 100%);
}
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: radial-gradient(ellipse at 20% 40%, rgba(212, 175, 55, .14), transparent 55%);
}
.hero-content { padding: 64px 0 96px; max-width: 780px; }
.hero h1 {
    font-family: var(--font-head);
    font-size: clamp(36px, 6vw, 66px);
    line-height: 1.12;
    font-weight: 400;
    margin: 18px 0 22px;
    color: var(--text);
}
.hero h1 em { font-style: normal; color: transparent; background: linear-gradient(120deg, var(--gold-light), var(--gold) 60%, var(--gold-dark)); -webkit-background-clip: text; background-clip: text; }
.hero p { color: #efefef; font-size: clamp(15px, 1.6vw, 18px); max-width: 620px; margin-bottom: 36px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(212, 175, 55, .4);
    background: rgba(212, 175, 55, .08);
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold-light);
}
.hero-badge svg { flex: 0 0 auto; }
.hero-scroll {
    position: absolute;
    bottom: 28px; left: 50%;
    transform: translateX(-50%);
    width: 26px; height: 42px;
    border: 2px solid rgba(212, 175, 55, .5);
    border-radius: 14px;
}
.hero-scroll::after {
    content: '';
    position: absolute;
    top: 7px; left: 50%;
    width: 4px; height: 8px;
    margin-left: -2px;
    border-radius: 2px;
    background: var(--gold);
    animation: scrollDot 1.8s infinite;
}
@keyframes scrollDot { 0% { opacity: 1; transform: translateY(0); } 70% { opacity: 0; transform: translateY(14px); } 100% { opacity: 0; } }

/* ---------- Trust strip ---------- */
.trust-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-alt); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; padding: 44px 0; }
.trust-item { display: flex; align-items: center; gap: 18px; }
.trust-icon {
    flex: 0 0 54px;
    width: 54px; height: 54px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(212, 175, 55, .1);
    border: 1px solid rgba(212, 175, 55, .3);
    color: var(--gold);
}
.trust-item h3 { font-size: 16px; font-weight: 800; letter-spacing: .3px; }
.trust-item p { color: var(--muted); font-size: 14px; }

/* ---------- Cards / grids ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 32px;
    transition: transform .3s, border-color .3s, box-shadow .3s;
    position: relative;
    overflow: hidden;
}
.card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity .3s;
}
.card:hover { transform: translateY(-6px); border-color: rgba(212, 175, 55, .45); box-shadow: 0 20px 44px rgba(0, 0, 0, .5); }
.card:hover::before { opacity: 1; }
.card h3 { font-family: var(--font-head); font-weight: 400; font-size: 22px; margin-bottom: 6px; color: var(--text); }
.card .card-sub { color: var(--gold); font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px; }
.card ul { list-style: none; margin: 14px 0 20px; }
.card ul li { padding: 7px 0 7px 28px; position: relative; color: var(--muted); font-size: 15px; border-bottom: 1px dashed rgba(255, 255, 255, .07); }
.card ul li:last-child { border-bottom: 0; }
.card ul li::before {
    content: '';
    position: absolute;
    left: 2px; top: 13px;
    width: 12px; height: 7px;
    border-left: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
    transform: rotate(-45deg);
}
.card .card-note { font-size: 13px; color: var(--gold-light); margin-bottom: 18px; opacity: .9; }

/* ---------- Split (image + text) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split .split-img { position: relative; }
.split .split-img::after {
    content: '';
    position: absolute;
    inset: 18px -18px -18px 18px;
    border: 1px solid rgba(212, 175, 55, .4);
    border-radius: var(--radius);
    z-index: -1;
}
.split .split-img img { border-radius: var(--radius); box-shadow: 0 24px 60px rgba(0, 0, 0, .55); }
.split.reverse .split-img::after { inset: 18px 18px -18px -18px; }
.check-list { list-style: none; margin: 26px 0 34px; }
.check-list li { display: flex; gap: 14px; align-items: flex-start; padding: 10px 0; color: #efefef; font-size: 16px; }
.check-list li svg { flex: 0 0 22px; margin-top: 4px; color: var(--gold); }

/* ---------- Accreditation band ---------- */
.accred-band { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(212, 175, 55, .3); }
.accred-band .accred-grid { display: grid; grid-template-columns: 1fr 1.1fr; }
.accred-band img { width: 100%; height: 100%; object-fit: cover; min-height: 340px; }
.accred-body { padding: 48px; background: linear-gradient(135deg, #14140a, var(--card) 60%); }
.accred-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: #141005;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: 50px;
    margin-bottom: 18px;
}

/* ---------- Gallery ---------- */
.gallery-grid { columns: 3; column-gap: 18px; }
.gallery-grid.cols-4 { columns: 4; }
.gallery-item {
    break-inside: avoid;
    margin-bottom: 18px;
    border-radius: 12px;
    overflow: hidden;
    cursor: zoom-in;
    position: relative;
    border: 1px solid var(--line);
    transition: transform .35s, border-color .35s, box-shadow .35s;
    background: var(--card);
}
.gallery-item img { width: 100%; transition: transform .5s; }
.gallery-item:hover { border-color: rgba(212, 175, 55, .5); box-shadow: 0 16px 40px rgba(0, 0, 0, .5); }
.gallery-item:hover img { transform: scale(1.05); }

/* ---------- Lightbox ---------- */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(5, 5, 7, .94);
    display: none;
    align-items: center;
    justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img { max-width: 88vw; max-height: 86vh; border-radius: 8px; box-shadow: 0 30px 80px rgba(0, 0, 0, .7); }
.lightbox button {
    position: absolute;
    background: rgba(212, 175, 55, .12);
    border: 1px solid rgba(212, 175, 55, .4);
    color: var(--gold-light);
    width: 52px; height: 52px;
    border-radius: 50%;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    transition: background-color .25s, transform .25s;
    display: grid;
    place-items: center;
}
.lightbox button:hover { background: rgba(212, 175, 55, .3); transform: scale(1.08); }
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 20px; top: 50%; transform: translateY(-50%); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border: 1px solid var(--line); border-radius: 12px; margin-bottom: 14px; background: var(--card); overflow: hidden; transition: border-color .3s; }
.faq-item.open { border-color: rgba(212, 175, 55, .5); }
.faq-q {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding: 22px 26px;
    background: none;
    border: 0;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
}
.faq-q .faq-icon { flex: 0 0 30px; width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--gold); color: var(--gold); display: grid; place-items: center; font-size: 18px; transition: transform .3s, background-color .3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); background: rgba(212, 175, 55, .15); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a-inner { padding: 0 26px 24px; color: var(--muted); font-size: 15px; }

/* ---------- Reviews ---------- */
.review-card .stars { color: var(--gold); letter-spacing: 3px; font-size: 17px; margin-bottom: 14px; }
.review-card p { color: #efefef; font-size: 15px; font-style: italic; margin-bottom: 18px; }
.review-card .reviewer { color: var(--gold-light); font-weight: 700; font-size: 14px; }
.review-card .reviewer span { display: block; color: var(--muted); font-weight: 500; font-size: 12px; }

/* ---------- Contact ---------- */
.contact-card { display: flex; gap: 20px; align-items: flex-start; }
.contact-card .trust-icon { flex: 0 0 48px; width: 48px; height: 48px; }
.contact-card h3 { font-size: 18px; margin-bottom: 4px; }
.contact-card p, .contact-card a.contact-val { color: var(--muted); font-size: 15px; }
.contact-card a.contact-val { display: block; transition: color .25s; }
.contact-card a.contact-val:hover { color: var(--gold-light); }
.map-wrap { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); margin-top: 56px; }
.map-wrap iframe { width: 100%; height: 420px; border: 0; display: block; filter: grayscale(.4) contrast(1.05); }

/* ---------- CTA band ---------- */
.cta-band {
    background: linear-gradient(120deg, #151204, #1c1707 50%, #14140a);
    border: 1px solid rgba(212, 175, 55, .35);
    border-radius: var(--radius);
    padding: 64px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 0%, rgba(212, 175, 55, .16), transparent 60%); }
.cta-band h2 { font-family: var(--font-head); font-weight: 400; font-size: clamp(26px, 3.6vw, 40px); margin-bottom: 16px; position: relative; }
.cta-band p { color: var(--muted); max-width: 560px; margin: 0 auto 32px; position: relative; }
.cta-band .hero-actions { justify-content: center; position: relative; }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
    padding: 110px 0 80px;
    background: radial-gradient(ellipse at 30% 0%, rgba(212, 175, 55, .12), transparent 55%), var(--bg-alt);
    border-bottom: 1px solid var(--line);
}
.page-hero h1 { font-family: var(--font-head); font-weight: 400; font-size: clamp(34px, 5vw, 56px); margin: 14px 0 16px; }
.page-hero .lead { font-size: 17px; }
.breadcrumb { font-size: 13px; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; }
.breadcrumb a { color: var(--gold); }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); background: #08080a; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: 48px; padding: 72px 0 48px; }
.footer-logo { width: 110px; border-radius: 10px; margin-bottom: 18px; }
.footer-tag { color: var(--muted); font-size: 14px; max-width: 300px; }
.footer-title { font-family: var(--font-head); font-weight: 400; color: var(--gold); font-size: 18px; letter-spacing: 1px; margin-bottom: 20px; }
.footer-link { display: block; color: #efefef; font-size: 15px; padding: 6px 0; transition: color .25s, padding-left .25s; }
a.footer-link:hover { color: var(--gold-light); padding-left: 6px; }
.footer-hours { color: var(--muted); font-size: 14px; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.social-link {
    width: 42px; height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, .4);
    color: var(--gold);
    transition: background-color .25s, transform .25s, color .25s;
}
.social-link:hover { background: var(--gold); color: #141005; transform: translateY(-3px); }
.footer-bottom { border-top: 1px solid var(--line); padding: 22px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap; color: var(--muted); font-size: 13px; }
.footer-admin { color: var(--muted); font-size: 13px; }
.footer-admin:hover { color: var(--gold); }

/* ---------- WhatsApp float ---------- */
.wa-float {
    position: fixed;
    right: 22px; bottom: 22px;
    z-index: 150;
    width: 58px; height: 58px;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    display: grid;
    place-items: center;
    box-shadow: 0 10px 30px rgba(37, 211, 102, .45);
    animation: waPulse 2.4s infinite;
    transition: transform .25s;
}
.wa-float:hover { transform: scale(1.1); }
@keyframes waPulse {
    0% { box-shadow: 0 10px 30px rgba(37, 211, 102, .45), 0 0 0 0 rgba(37, 211, 102, .5); }
    70% { box-shadow: 0 10px 30px rgba(37, 211, 102, .45), 0 0 0 18px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 10px 30px rgba(37, 211, 102, .45), 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }

/* ---------- Admin ---------- */
.admin-body { background: var(--bg); min-height: 100vh; }
.admin-wrap { width: min(1080px, 94%); margin: 0 auto; padding: 34px 0 80px; }
.admin-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    margin-bottom: 30px;
}
.admin-topbar .brand-logo { height: 52px; width: auto; border-radius: 8px; }
.admin-nav { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 34px; }
.admin-nav a {
    padding: 9px 18px;
    border-radius: 50px;
    border: 1px solid var(--line);
    color: var(--text);
    font-size: 14px;
    font-weight: 600;
    transition: border-color .25s, background-color .25s, color .25s;
}
.admin-nav a:hover { border-color: var(--gold); color: var(--gold-light); }
.admin-nav a.active { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: #141005; border-color: transparent; }
.admin-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; margin-bottom: 26px; }
.admin-card h2 { font-family: var(--font-head); font-weight: 400; font-size: 24px; margin-bottom: 6px; }
.admin-card .hint { color: var(--muted); font-size: 13px; margin-bottom: 20px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; color: var(--gold-light); margin-bottom: 8px; }
.field input[type="text"], .field input[type="password"], .field input[type="email"], .field input[type="number"], .field input[type="url"], .field textarea, .field select {
    width: 100%;
    background: #0e0e12;
    border: 1px solid var(--line);
    border-radius: 10px;
    color: var(--text);
    padding: 13px 16px;
    font-family: var(--font-body);
    font-size: 15px;
    transition: border-color .25s, box-shadow .25s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212, 175, 55, .15); }
.field textarea { min-height: 130px; resize: vertical; }
.alert { border-radius: 10px; padding: 14px 18px; margin-bottom: 22px; font-size: 14px; font-weight: 600; }
.alert-ok { background: rgba(37, 211, 102, .12); border: 1px solid rgba(37, 211, 102, .45); color: #7ce8a5; }
.alert-err { background: rgba(255, 80, 80, .1); border: 1px solid rgba(255, 80, 80, .45); color: #ff9d9d; }
.login-wrap { min-height: 100vh; display: grid; place-items: center; padding: 24px; }
.login-card { width: min(420px, 100%); background: var(--card); border: 1px solid var(--line); border-radius: 20px; padding: 44px 38px; text-align: center; }
.login-card .brand-logo { width: 130px; border-radius: 12px; margin: 0 auto 22px; }
.login-card h1 { font-family: var(--font-head); font-weight: 400; font-size: 26px; margin-bottom: 26px; }
.login-card form { text-align: left; }
.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 10px; }
.stat-box { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; text-align: center; }
.stat-box .stat-num { font-family: var(--font-head); font-size: 40px; color: var(--gold); }
.stat-box .stat-label { color: var(--muted); font-size: 13px; letter-spacing: 1px; text-transform: uppercase; }
.gallery-admin-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-admin-item { background: #0e0e12; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.gallery-admin-item img { width: 100%; height: 180px; object-fit: cover; }
.gallery-admin-item .ga-body { padding: 14px; }
.gallery-admin-item .ga-body .field { margin-bottom: 10px; }
.gallery-admin-item .ga-body input { padding: 9px 12px; font-size: 13px; }
.btn-danger { background: rgba(255, 80, 80, .12); border: 1px solid rgba(255, 80, 80, .5); color: #ff9d9d; padding: 9px 18px; border-radius: 50px; font-size: 13px; font-weight: 700; cursor: pointer; transition: background-color .25s; }
.btn-danger:hover { background: rgba(255, 80, 80, .25); }
.svc-block { border: 1px solid var(--line); border-radius: 12px; padding: 20px; margin-bottom: 18px; background: #0e0e12; }
.svc-block h3 { font-size: 16px; color: var(--gold-light); margin-bottom: 14px; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.tox-tinymce { border-radius: 10px !important; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid, .gallery-grid.cols-4 { columns: 2; }
    .trust-grid { grid-template-columns: 1fr; gap: 20px; }
    .stat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .section { padding: 64px 0; }
    .brand-logo { width: 100px; height: auto; }
    .menu-toggle { display: flex; position: relative; z-index: 320; }
    .brand { position: relative; z-index: 320; }
    .main-nav {
        position: fixed;
        inset: 0;
        width: 100%;
        height: 100dvh;
        background: #0a0a0c;
        background-image: radial-gradient(ellipse at 50% 0%, rgba(212, 175, 55, .1), transparent 60%);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        padding: 96px 28px 44px;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity .3s ease, visibility .3s ease;
        border-left: 0;
        z-index: 300;
        overflow-y: auto;
    }
    .main-nav.open { opacity: 1; visibility: visible; pointer-events: auto; }
    .nav-link {
        font-family: var(--font-head);
        font-weight: 400;
        font-size: 28px;
        letter-spacing: .6px;
        padding: 10px 0;
        opacity: 0;
        transform: translateY(18px);
        transition: opacity .35s ease, transform .35s ease, color .25s;
    }
    .main-nav.open .nav-link { opacity: 1; transform: translateY(0); }
    .main-nav.open .nav-link:nth-child(1) { transition-delay: .05s; }
    .main-nav.open .nav-link:nth-child(2) { transition-delay: .11s; }
    .main-nav.open .nav-link:nth-child(3) { transition-delay: .17s; }
    .main-nav.open .nav-link:nth-child(4) { transition-delay: .23s; }
    .main-nav.open .nav-link:nth-child(5) { transition-delay: .29s; }
    .main-nav.open .nav-link:nth-child(6) { transition-delay: .35s; }
    .nav-link::after { left: 50%; transform: translateX(-50%); width: 0; }
    .nav-link:hover::after, .nav-link.active::after { width: 42px; }
    .nav-cta {
        margin: 22px 0 0;
        opacity: 0;
        transform: translateY(18px);
        transition: opacity .35s ease .42s, transform .35s ease .42s, box-shadow .25s;
    }
    .main-nav.open .nav-cta { opacity: 1; transform: translateY(0); }
    .nav-mobile-extra {
        display: flex;
        gap: 14px;
        margin-top: 30px;
        opacity: 0;
        transform: translateY(18px);
        transition: opacity .35s ease .5s, transform .35s ease .5s;
    }
    .main-nav.open .nav-mobile-extra { opacity: 1; transform: translateY(0); }
    .nav-mobile-extra a {
        width: 52px; height: 52px;
        border-radius: 50%;
        display: grid;
        place-items: center;
        border: 1px solid rgba(212, 175, 55, .4);
        color: var(--gold);
    }
    .nav-mobile-extra a.wa { border-color: rgba(37, 211, 102, .5); color: var(--green); }
    .split, .accred-band .accred-grid, .grid-2 { grid-template-columns: 1fr; }
    .split { gap: 44px; }
    .split .split-img::after { display: none; }
    .accred-body { padding: 32px 24px; }
    .grid-3 { grid-template-columns: 1fr; }
    .gallery-grid, .gallery-grid.cols-4 { columns: 2; column-gap: 12px; }
    .gallery-item { margin-bottom: 12px; }
    .cta-band { padding: 44px 24px; }
    .hero { min-height: 82vh; }
    .hero-content { padding: 48px 0 84px; }
    .footer-grid { grid-template-columns: 1fr; gap: 34px; padding: 52px 0 36px; }
    .two-col { grid-template-columns: 1fr; }
    .gallery-admin-grid { grid-template-columns: 1fr; }
    .stat-grid { grid-template-columns: 1fr; }
    .map-wrap iframe { height: 320px; }
    .footer-bottom-inner { justify-content: center; text-align: center; }
}
@media (max-width: 420px) {
    .gallery-grid, .gallery-grid.cols-4 { columns: 1; }
}
