@import url("https://api.fontshare.com/v2/css?f[]=cabinet-grotesk@800,700,500&f[]=outfit@400,500,600,700&display=swap");

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
:root {
    --sabe-blue: #2f509e; --sabe-blue-dark: #25408a; --sabe-ink: #0a0e1a;
    --sabe-paper: #f5f3ee; --sabe-line: #e8e6df; --max: 1400px;
}
body { background: #fff; color: var(--sabe-ink); font-family: "Outfit", system-ui, sans-serif;
    -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; line-height: 1.5; }
::selection { background: var(--sabe-blue); color: #fff; }
h1, h2, h3, h4 { font-family: "Cabinet Grotesk", "Outfit", system-ui, sans-serif; letter-spacing: -0.02em; margin: 0; }
p { margin: 0; } a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; user-select: none; }
ul { list-style: none; padding: 0; margin: 0; }
button { font: inherit; cursor: pointer; border: 0; background: none; }
input, textarea, select { font: inherit; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px) { .container { padding: 0 40px; } }

.accent { color: var(--sabe-blue); } .light { color: #fff !important; }
.muted { color: rgba(10, 14, 26, 0.7); } .muted-light { color: rgba(255, 255, 255, 0.7); }
.big { font-size: 1.05rem; } .tiny { font-size: 0.75rem; color: rgba(255, 255, 255, 0.6); margin: 0; }
.dim { color: rgba(255, 255, 255, 0.5); }
.kicker { font-size: 11px; text-transform: uppercase; letter-spacing: 0.24em; color: rgba(10, 14, 26, 0.55); }
.kicker.light { color: rgba(255, 255, 255, 0.65); } .kicker.dim { color: rgba(255, 255, 255, 0.5); }

/* === BUTTONS === */
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 16px 24px;
    font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.22em;
    color: #fff; position: relative; overflow: hidden; isolation: isolate;
    transition: color .25s ease, background-color .25s ease; }
.btn::after { content: ""; position: absolute; inset: 0; background: #fff;
    transform: translateY(101%); transition: transform .4s cubic-bezier(.2,.7,.2,1); z-index: -1; }
.btn:hover { color: var(--sabe-blue); } .btn:hover::after { transform: translateY(0); }
.btn-blue { background: var(--sabe-blue); }
.btn-ink { background: var(--sabe-ink); box-shadow: 0 12px 28px rgba(0,0,0,0.25); }
.btn-white { background: #fff; color: var(--sabe-blue); }
.btn-white:hover { color: var(--sabe-ink); } .btn-white::after { background: var(--sabe-ink); }
.btn-white:hover::after { transform: translateY(0); }

a.under, .primary-nav a, .footer-list a, .contact-links a { position: relative; display: inline-block; }
a.under::after, .primary-nav a::after, .footer-list a::after, .contact-links a::after {
    content: ""; position: absolute; left: 0; bottom: -3px; width: 100%; height: 1px;
    background: currentColor; transform: scaleX(0); transform-origin: right;
    transition: transform .45s cubic-bezier(.2,.7,.2,1); }
a.under:hover::after, .primary-nav a:hover::after, .footer-list a:hover::after, .contact-links a:hover::after {
    transform: scaleX(1); transform-origin: left; }

/* === HEADER === */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 50;
    transition: background-color .3s, border-color .3s, backdrop-filter .3s, padding .3s;
    border-bottom: 1px solid transparent; }
.site-header.scrolled { background: rgba(255,255,255,0.85); backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px); border-bottom-color: var(--sabe-line); }
.site-header.with-admin { padding-top: 48px; }
.header-row { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; gap: 16px; }
@media (min-width: 768px) { .header-row { padding: 20px 40px; } }
.brand img { height: 80px; width: auto; }
.primary-nav { display: none; gap: 36px; }
.primary-nav a { font-size: 13px; text-transform: uppercase; letter-spacing: 0.16em; color: rgba(10, 14, 26, 0.8); }
.primary-nav a:hover { color: var(--sabe-ink); }
.header-cta { display: none; padding: 12px 20px; font-size: 12px; letter-spacing: 0.18em; }
@media (min-width: 900px) { .primary-nav { display: flex; } .header-cta { display: inline-flex; } }
.menu-toggle { display: flex; flex-direction: column; gap: 6px; padding: 8px; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--sabe-ink); transition: transform .3s, opacity .3s; }
.menu-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
@media (min-width: 900px) { .menu-toggle { display: none; } }
.mobile-nav { display: none; flex-direction: column; gap: 18px; padding: 24px; border-top: 1px solid var(--sabe-line); background: #fff; }
.mobile-nav a { font-size: 15px; text-transform: uppercase; letter-spacing: 0.16em; }
.mobile-nav.open { display: flex; }

/* === HERO === */
.hero { position: relative; background: #fff; padding: 128px 0 80px; overflow: hidden; }
@media (min-width: 768px) { .hero { padding: 160px 0 128px; } }
.eyebrow { display: flex; align-items: center; gap: 12px; font-size: 11px; text-transform: uppercase; letter-spacing: 0.24em; color: rgba(10,14,26,0.6); }
.eyebrow .rule { display: inline-block; width: 40px; height: 1px; background: rgba(10,14,26,0.4); }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: end; margin-top: 40px; }
@media (min-width: 768px) { .hero-grid { grid-template-columns: 9fr 3fr; } }
.hero-title { font-size: 44px; font-weight: 800; line-height: 0.95; letter-spacing: -0.02em; }
.hero-title span { display: block; }
@media (min-width: 640px) { .hero-title { font-size: 60px; } }
@media (min-width: 768px) { .hero-title { font-size: 112px; } }
.hero-side p { font-size: 16px; line-height: 1.65; color: rgba(10,14,26,0.75); }
@media (min-width: 768px) { .hero-side p { font-size: 18px; } }
.hero-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 96px; font-size: 11px; text-transform: uppercase; letter-spacing: 0.2em; color: rgba(10,14,26,0.55); }
@media (min-width: 768px) { .hero-meta { margin-top: 112px; } }
.marquee { margin-top: 80px; border-top: 1px solid var(--sabe-line); border-bottom: 1px solid var(--sabe-line); padding: 24px 0; overflow: hidden; }
.marquee-track { display: flex; align-items: center; gap: 48px; width: max-content; white-space: nowrap;
    font-family: "Cabinet Grotesk", sans-serif; font-size: 30px; font-weight: 700; text-transform: uppercase;
    color: rgba(10,14,26,0.85); animation: sabe-marquee 38s linear infinite; }
@media (min-width: 768px) { .marquee-track { font-size: 48px; } }
.marquee-track .dot { color: var(--sabe-blue); }
@keyframes sabe-marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.rise { opacity: 0; transform: translateY(20px); animation: sabe-rise .9s cubic-bezier(.2,.7,.2,1) forwards; }
@keyframes sabe-rise { to { opacity: 1; transform: translateY(0); } }

section { position: relative; }
.section-head { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: end; }
@media (min-width: 768px) { .section-head { grid-template-columns: 1fr 1fr; } }
.section-head h2 { font-size: 36px; font-weight: 800; line-height: 1.02; margin-top: 24px; }
@media (min-width: 768px) { .section-head h2 { font-size: 60px; } }
.section-head h2.huge { font-size: 40px; line-height: 0.98; }
@media (min-width: 768px) { .section-head h2.huge { font-size: 80px; } }

.about { background: var(--sabe-paper); padding: 96px 0; }
@media (min-width: 768px) { .about { padding: 144px 0; } }
.about-copy p { font-size: 18px; line-height: 1.6; }
@media (min-width: 768px) { .about-copy p { font-size: 20px; } }
.about-copy p + p { margin-top: 24px; }
.about-grid { display: grid; grid-template-columns: 1fr; gap: 40px; margin-top: 80px; }
@media (min-width: 768px) { .about-grid { grid-template-columns: 7fr 5fr; } }
.about-img { height: 360px; width: 100%; object-fit: cover; }
@media (min-width: 768px) { .about-img { height: 520px; } }
.stats { display: grid; gap: 32px; }
.stat { border-top: 1px solid rgba(10,14,26,0.15); padding-top: 24px; }
.stat-num { display: block; font-family: "Cabinet Grotesk", sans-serif; font-size: 48px; font-weight: 800; letter-spacing: -0.02em; }
@media (min-width: 768px) { .stat-num { font-size: 60px; } }
.stat-label { display: block; margin-top: 8px; font-size: 14px; text-transform: uppercase; letter-spacing: 0.16em; color: rgba(10,14,26,0.6); }

.services { background: #fff; padding: 96px 0; }
@media (min-width: 768px) { .services { padding: 144px 0; } }
.services-grid { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--sabe-line); margin-top: 64px; }
@media (min-width: 768px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: 1fr 1fr 1fr; } }
.service-card { background: #fff; padding: 32px; transition: background-color .3s, color .3s; cursor: default; }
@media (min-width: 768px) { .service-card { padding: 40px; } }
.service-card:hover { background: var(--sabe-ink); color: #fff; }
.service-card .num { font-family: "Cabinet Grotesk", sans-serif; font-size: 120px; font-weight: 800; line-height: 1; color: rgba(10,14,26,0.10); transition: color .3s; }
.service-card:hover .num { color: rgba(255,255,255,0.15); }
@media (min-width: 768px) { .service-card .num { font-size: 160px; } }
.service-card h3 { font-size: 24px; font-weight: 700; margin-top: 24px; }
@media (min-width: 768px) { .service-card h3 { font-size: 30px; } }
.service-card p { font-size: 16px; margin-top: 16px; opacity: 0.8; }
@media (min-width: 768px) { .service-card p { font-size: 18px; } }
.service-card .more { display: inline-flex; gap: 8px; margin-top: 32px; font-size: 11px; text-transform: uppercase; letter-spacing: 0.2em; color: var(--sabe-blue); }
.service-card:hover .more { color: #fff; }

.portfolio { background: var(--sabe-ink); color: #fff; padding: 96px 0; }
@media (min-width: 768px) { .portfolio { padding: 144px 0; } }
.bento { display: grid; grid-template-columns: 1fr; gap: 24px; margin-top: 64px; }
@media (min-width: 768px) { .bento { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 1fr; } }
.case { position: relative; overflow: hidden; background: #161a26; aspect-ratio: 4/3; }
@media (min-width: 768px) {
    .case:nth-child(6n+1) { grid-column: span 3; grid-row: span 2; aspect-ratio: auto; }
    .case:nth-child(6n+2), .case:nth-child(6n+3) { grid-column: span 3; }
    .case:nth-child(6n+4), .case:nth-child(6n+5), .case:nth-child(6n) { grid-column: span 2; }
}
.case img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.case:hover img { transform: scale(1.05); }
.case::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,14,26,0.85), rgba(10,14,26,0.1) 50%, transparent); }
.case-body { position: absolute; inset: 0; padding: 24px; display: flex; flex-direction: column; justify-content: flex-end; z-index: 1; }
@media (min-width: 768px) { .case-body { padding: 32px; } }
.case-body .cat { font-size: 10px; text-transform: uppercase; letter-spacing: 0.22em; color: rgba(255,255,255,0.65); }
.case-body h3 { font-size: 24px; font-weight: 700; margin-top: 8px; }
@media (min-width: 768px) { .case-body h3 { font-size: 28px; } }
.case-body p { font-size: 14px; margin-top: 8px; color: rgba(255,255,255,0.8); }

.testimonials { background: #fff; padding: 96px 0; }
@media (min-width: 768px) { .testimonials { padding: 144px 0; } }
.testimonials-grid { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--sabe-line); margin-top: 64px; }
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: 1fr 1fr 1fr; } }
.t-card { background: #fff; padding: 32px; }
@media (min-width: 768px) { .t-card { padding: 40px; } }
.t-card .t-num { font-family: "Cabinet Grotesk", sans-serif; font-size: 72px; font-weight: 800; line-height: 1; color: rgba(47,80,158,0.25); }
.t-card blockquote { font-family: "Cabinet Grotesk", sans-serif; font-size: 20px; line-height: 1.3; margin: 24px 0 0; }
@media (min-width: 768px) { .t-card blockquote { font-size: 24px; } }
.t-card figcaption { border-top: 1px solid var(--sabe-line); padding-top: 20px; margin-top: 32px; font-size: 14px; }
.t-card figcaption .author { font-weight: 600; }
.t-card figcaption .role { color: rgba(10,14,26,0.55); margin-top: 4px; }

.contact { background: var(--sabe-blue); color: #fff; padding: 96px 0; }
@media (min-width: 768px) { .contact { padding: 144px 0; } }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 48px; }
@media (min-width: 768px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact h2 { margin-top: 24px; }
.contact-grid > div p.muted-light { margin-top: 32px; max-width: 480px; line-height: 1.6; font-size: 18px; }
.contact-links { display: flex; flex-direction: column; gap: 16px; margin-top: 48px; }
.contact-links a { font-size: 16px; }
.contact-form { background: rgba(255,255,255,0.04); padding: 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 24px 24px; align-self: start; }
@media (min-width: 768px) { .contact-form { padding: 40px; } }
.contact-form label { display: flex; flex-direction: column; gap: 12px; }
.contact-form label.full { grid-column: 1 / -1; }
.contact-form span { font-size: 10px; text-transform: uppercase; letter-spacing: 0.22em; color: rgba(255,255,255,0.65); }
.contact-form input, .contact-form textarea { background: transparent; border: 0; border-bottom: 1px solid rgba(255,255,255,0.4);
    padding-bottom: 8px; color: #fff; font-size: 16px; outline: none; resize: none; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(255,255,255,0.45); }
.contact-form input:focus, .contact-form textarea:focus { border-bottom-color: #fff; }
.form-footer { display: flex; flex-direction: column; gap: 16px; align-items: stretch; }
@media (min-width: 600px) { .form-footer { flex-direction: row; align-items: center; justify-content: space-between; } }
.form-status { grid-column: 1 / -1; margin: 0; font-size: 14px; color: #fff; min-height: 1.2em; }

.floating-cta { position: fixed; bottom: 24px; right: 24px; z-index: 40;
    display: flex; flex-direction: column; align-items: flex-end; gap: 8px;
    pointer-events: none; transition: transform .5s cubic-bezier(.2,.7,.2,1), opacity .5s;
    transform: translateY(0); opacity: 1; }
.floating-cta.hidden { transform: translateY(32px); opacity: 0; }
.floating-cta img { height: 96px; width: auto; filter: drop-shadow(0 8px 18px rgba(47,80,158,0.25)); }
.floating-cta .btn { pointer-events: auto; }
@media (min-width: 768px) { .floating-cta { bottom: 32px; right: 32px; } .floating-cta img { height: 112px; } }

.site-footer { position: relative; overflow: hidden; background: var(--sabe-ink); color: #fff; padding: 80px 0 32px; }
@media (min-width: 768px) { .site-footer { padding: 112px 0 32px; } }
.footer-bird { position: absolute; right: -64px; bottom: -80px; height: 460px; width: auto; opacity: 0.06; pointer-events: none; filter: brightness(0) invert(1); }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 56px; position: relative; z-index: 1; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 5fr 3fr 4fr; } }
.footer-logo { height: 96px; width: auto; filter: brightness(0) invert(1); }
@media (min-width: 768px) { .footer-logo { height: 112px; } }
.footer-grid p { margin-top: 32px; max-width: 440px; color: rgba(255,255,255,0.7); }
.footer-list { margin-top: 20px; display: flex; flex-direction: column; gap: 12px; }
.footer-list a { font-size: 16px; }
.big-link { display: block; font-family: "Cabinet Grotesk", sans-serif; font-size: 24px; font-weight: 700; margin-top: 20px; }
.footer-grid .addr { margin-top: 24px; font-size: 14px; color: rgba(255,255,255,0.6); }
.footer-bottom { margin-top: 80px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.15);
    display: flex; flex-direction: column; gap: 12px; justify-content: space-between;
    font-size: 12px; text-transform: uppercase; letter-spacing: 0.2em; color: rgba(255,255,255,0.55); }
@media (min-width: 768px) { .footer-bottom { flex-direction: row; align-items: center; } }

/* ====================================================
   ADMIN STYLES
==================================================== */
.admin-modal { position: fixed; inset: 0; z-index: 100;
    background: rgba(10, 14, 26, 0.7); backdrop-filter: blur(8px);
    display: flex; align-items: center; justify-content: center; padding: 24px; }
.admin-modal[hidden] { display: none; }
.admin-modal-card { background: #fff; padding: 40px; width: 100%; max-width: 440px; }
.admin-modal-card .kicker { color: rgba(10, 14, 26, 0.55); }
.admin-modal-card h3 { font-size: 32px; margin-top: 8px; font-weight: 800; }
.admin-modal-card form { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }
.admin-modal-card label { display: flex; flex-direction: column; gap: 8px; }
.admin-modal-card label span { font-size: 10px; text-transform: uppercase; letter-spacing: 0.22em; color: rgba(10, 14, 26, 0.6); }
.admin-modal-card input { border: 0; border-bottom: 1px solid rgba(10, 14, 26, 0.3); padding: 4px 0 6px; font-size: 16px; outline: none; background: transparent; }
.admin-modal-card input:focus { border-bottom-color: var(--sabe-blue); }
.login-error { font-size: 13px; color: #d4181a; min-height: 1em; margin: 0; }
.admin-modal-actions { display: flex; justify-content: flex-end; gap: 12px; margin-top: 8px; }

.admin-btn { display: inline-flex; align-items: center; gap: 6px;
    padding: 10px 18px; font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.22em;
    border: 1px solid transparent; cursor: pointer; transition: all .2s; }
.admin-btn.primary { background: var(--sabe-blue); color: #fff; }
.admin-btn.primary:hover { background: var(--sabe-ink); }
.admin-btn.ghost { background: #fff; color: var(--sabe-ink); border-color: rgba(10, 14, 26, 0.15); }
.admin-btn.ghost:hover { background: var(--sabe-ink); color: #fff; border-color: var(--sabe-ink); }
.admin-btn.ghost-light { background: transparent; color: rgba(255, 255, 255, 0.85); border-color: rgba(255, 255, 255, 0.25); }
.admin-btn.ghost-light:hover { background: #fff; color: var(--sabe-ink); }
.admin-btn.danger { background: #fff; color: #d4181a; border-color: rgba(212, 24, 26, 0.3); }
.admin-btn.danger:hover { background: #d4181a; color: #fff; }
.admin-btn:disabled { opacity: 0.5; cursor: not-allowed; }

.admin-toolbar { position: fixed; top: 0; left: 0; right: 0; z-index: 80; background: var(--sabe-ink); color: #fff; }
.admin-toolbar[hidden] { display: none; }
.admin-toolbar-inner { max-width: var(--max); margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; gap: 16px; height: 48px; flex-wrap: wrap; }
@media (min-width: 768px) { .admin-toolbar-inner { padding: 0 40px; flex-wrap: nowrap; } }
.admin-brand { font-family: "Cabinet Grotesk", sans-serif; font-weight: 800;
    font-size: 11px; letter-spacing: 0.22em; color: var(--sabe-blue); }
.admin-tabs { display: flex; gap: 4px; flex: 1; overflow-x: auto; }
.admin-tabs button { color: rgba(255, 255, 255, 0.65); padding: 6px 10px; font-size: 11px;
    text-transform: uppercase; letter-spacing: 0.16em; white-space: nowrap;
    border-radius: 4px; transition: all .2s; }
.admin-tabs button:hover { background: rgba(255, 255, 255, 0.08); color: #fff; }
.admin-tabs button.active { background: var(--sabe-blue); color: #fff; }
.admin-toolbar-actions { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.admin-user { font-size: 11px; color: rgba(255, 255, 255, 0.55); text-transform: lowercase; }
@media (max-width: 600px) { .admin-user { display: none; } }

.admin-panel { position: fixed; top: 0; right: 0; bottom: 0; width: 100%;
    max-width: 560px; background: #fff; z-index: 90; box-shadow: -24px 0 80px rgba(0,0,0,0.25);
    display: flex; flex-direction: column; transform: translateX(0); transition: transform .35s cubic-bezier(.2,.7,.2,1); }
.admin-panel[hidden] { display: none; }
.admin-panel.closing { transform: translateX(100%); }
.admin-panel-header { display: flex; align-items: center; justify-content: space-between;
    padding: 24px; border-bottom: 1px solid var(--sabe-line); }
.admin-panel-header h3 { font-size: 24px; font-weight: 800; }
.admin-panel-close { font-size: 28px; line-height: 1; color: rgba(10, 14, 26, 0.55); width: 32px; height: 32px; }
.admin-panel-body { padding: 24px; overflow-y: auto; flex: 1; }
.admin-panel-body h4 { font-size: 18px; font-weight: 700; margin: 24px 0 12px; }
.admin-panel-body h4:first-child { margin-top: 0; }

.admin-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.admin-field label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.22em; color: rgba(10,14,26,0.6); }
.admin-field input, .admin-field textarea { width: 100%; border: 1px solid var(--sabe-line);
    background: #fff; padding: 10px 12px; font-size: 14px; outline: none; resize: vertical; }
.admin-field input:focus, .admin-field textarea:focus { border-color: var(--sabe-blue); }
.admin-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.admin-row.compact { grid-template-columns: 80px 1fr 80px; }
@media (max-width: 600px) { .admin-row, .admin-row.compact { grid-template-columns: 1fr; } }

.admin-actions { display: flex; gap: 8px; justify-content: flex-end; padding-top: 16px;
    border-top: 1px solid var(--sabe-line); margin-top: 24px; }

.admin-list-item { padding: 16px; border: 1px solid var(--sabe-line); margin-bottom: 12px; background: var(--sabe-paper); }
.admin-list-item-head { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.admin-list-item-title { font-weight: 600; font-size: 14px; }
.admin-list-item-meta { font-size: 11px; color: rgba(10, 14, 26, 0.5); text-transform: uppercase; letter-spacing: 0.16em; margin-top: 4px; }
.admin-list-item-desc { font-size: 13px; color: rgba(10, 14, 26, 0.65); margin-top: 8px; }
.admin-list-actions { display: flex; gap: 6px; flex-shrink: 0; }

.admin-empty { padding: 40px; text-align: center; color: rgba(10, 14, 26, 0.5); font-size: 14px; background: var(--sabe-paper); }

.admin-contact-card { padding: 16px; border: 1px solid var(--sabe-line); margin-bottom: 12px;
    background: #fff; cursor: pointer; transition: border-color .2s; }
.admin-contact-card:hover { border-color: var(--sabe-blue); }
.admin-contact-card.unread { border-left: 3px solid var(--sabe-blue); }
.admin-contact-card .meta { display: flex; justify-content: space-between; font-size: 12px; color: rgba(10, 14, 26, 0.55); }
.admin-contact-card .name { font-weight: 600; font-size: 15px; margin-top: 4px; }
.admin-contact-card .preview { font-size: 13px; margin-top: 6px; color: rgba(10, 14, 26, 0.7);
    overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }

.admin-toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 200;
    background: var(--sabe-ink); color: #fff; padding: 12px 24px; font-size: 13px;
    font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
    box-shadow: 0 12px 32px rgba(0,0,0,0.25); }
.admin-toast.error { background: #d4181a; }
.admin-toast[hidden] { display: none; }
