:root {
    --bg: #f7f2e8;
    --surface: rgba(255, 252, 246, 0.88);
    --surface-strong: #fffbf4;
    --surface-dark: #101010;
    --ink: #151515;
    --muted: #6a655e;
    --line: rgba(21, 21, 21, 0.1);
    --gold: #d0b06a;
    --gold-strong: #9f7c35;
    --navy: #17324c;
    --navy-strong: #0f2438;
    --black: #0d0f12;
    --black-soft: #15191f;
    --silver: #b7bec8;
    --white: #fffdfa;
    --success: #146c43;
    --danger: #a63a32;
    --shadow: 0 30px 80px rgba(18, 18, 18, 0.14);
    --radius-xl: 34px;
    --radius-lg: 24px;
    --radius-md: 18px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    font-family: "Plus Jakarta Sans", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(208, 176, 106, 0.26), transparent 24%),
        radial-gradient(circle at 85% 8%, rgba(23, 50, 76, 0.08), transparent 20%),
        linear-gradient(180deg, #fffdf8 0%, #f8f3ea 40%, #f1e8da 100%);
}

a {
    color: inherit;
    text-decoration: none;
}

svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.container {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
}

.page-shell {
    min-height: 100vh;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(18px);
    background: rgba(255, 252, 246, 0.72);
    border-bottom: 1px solid rgba(21, 21, 21, 0.06);
}

.premium-header::after {
    content: "";
    display: block;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(203, 164, 92, 0.5), transparent);
}

.nav-row,
.hero-actions,
.stat-strip,
.trust-grid,
.split-hero,
.inner-hero-grid,
.dark-band-grid,
.footer-grid,
.nav-row,
.hero-premium-grid,
.contact-items,
.admin-columns,
.section-head,
.admin-topbar {
    display: flex;
    gap: 20px;
}

.nav-row,
.admin-topbar {
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.brand-mark {
    width: 68px;
    height: 68px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    background: linear-gradient(145deg, var(--navy-strong), #1d3550 58%, var(--gold));
    color: var(--white);
    font-weight: 800;
    letter-spacing: 0.1em;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 20px 30px rgba(18, 18, 18, 0.2);
    font-family: "Manrope", sans-serif;
}

.brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-mark-logo {
    background: transparent;
    box-shadow: none;
    border-radius: 0;
}

.brand strong,
.hero h1,
.inner-hero h1,
.section-head h2,
.section-copy h2,
.service-card h3,
.project-card h3,
.testimonial-card strong,
.icon-card h3,
.editorial-card h3,
.timeline strong,
.manifesto-card p,
.admin-sidebar h1,
.admin-main h2,
.admin-section h3,
.admin-auth-card h1 {
    font-family: "Manrope", sans-serif;
}

.brand small,
.footer-copy,
.site-nav a {
    color: var(--muted);
}

.site-nav {
    display: flex;
    gap: 18px;
    align-items: center;
}

.site-menu-wrap {
    display: flex;
    align-items: center;
    gap: 24px;
}

.mobile-menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(21, 21, 21, 0.08);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.72);
    padding: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    position: relative;
    z-index: 90;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 18px;
    height: 2px;
    background: var(--black);
    border-radius: 999px;
}

.site-nav a {
    position: relative;
    padding: 8px 0;
    font-weight: 600;
    font-size: 0.95rem;
    white-space: nowrap;
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
    transform: scaleX(1);
}

.nav-cta,
.button,
.inline-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.nav-cta,
.button {
    border-radius: 999px;
    padding: 14px 22px;
    border: 1px solid transparent;
    font-weight: 700;
}

.button.primary,
.nav-cta {
    background: linear-gradient(135deg, var(--navy-strong), var(--navy) 62%, var(--gold));
    color: var(--white);
    box-shadow: 0 18px 40px rgba(15, 15, 16, 0.2);
}

.button.secondary {
    background: rgba(255, 255, 255, 0.6);
    border-color: rgba(21, 21, 21, 0.08);
}

.button.ghost {
    border-color: rgba(166, 58, 50, 0.18);
    background: rgba(166, 58, 50, 0.08);
    color: var(--danger);
}

.button.full {
    width: 100%;
}

.button:hover,
.nav-cta:hover,
.inline-link:hover {
    transform: translateY(-2px);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(208, 176, 106, 0.16);
    color: var(--gold-strong);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.8rem;
    font-weight: 700;
}

.hero-premium,
.inner-hero {
    position: relative;
    overflow: hidden;
}

.hero-premium {
    padding: 110px 0 70px;
}

.inner-hero {
    padding: 88px 0 50px;
}

.hero-premium-grid,
.inner-hero-grid,
.split-hero,
.dark-band-grid {
    align-items: center;
}

.hero-premium-grid > *,
.inner-hero-grid > *,
.split-hero > *,
.dark-band-grid > * {
    flex: 1;
    min-width: 0;
}

.hero h1,
.inner-hero h1 {
    margin: 20px 0 18px;
    font-size: clamp(2.8rem, 5vw, 5rem);
    line-height: 1.02;
    letter-spacing: -0.05em;
    max-width: 13ch;
}

.inner-hero h1 {
    font-size: clamp(2.6rem, 5vw, 4.4rem);
    max-width: 12ch;
}

.hero-copy > p,
.section-copy p,
.service-card p,
.project-card p,
.testimonial-card p,
.icon-card p,
.footer-copy,
.contact-stack,
.contact-form-card,
.mini-dashboard p,
.timeline p,
.manifesto-card p {
    color: var(--muted);
    line-height: 1.8;
}

.hero-copy > p {
    max-width: 60ch;
    font-size: 1.08rem;
}

.stat-strip {
    flex-wrap: wrap;
    margin-top: 26px;
}

.stat-strip article {
    min-width: 170px;
    padding: 18px 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(21, 21, 21, 0.08);
    box-shadow: var(--shadow);
}

.stat-strip strong {
    display: block;
    font-size: 1.7rem;
}

.showcase-shell {
    position: relative;
    min-height: 560px;
}

.showcase-orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(6px);
}

.orb-a {
    width: 240px;
    height: 240px;
    top: 30px;
    right: 40px;
    background: radial-gradient(circle, rgba(208, 176, 106, 0.38), transparent 68%);
    animation: floatSoft 7s ease-in-out infinite;
}

.orb-b {
    width: 280px;
    height: 280px;
    bottom: 10px;
    left: 10px;
    background: radial-gradient(circle, rgba(23, 50, 76, 0.18), transparent 68%);
    animation: floatSoft 8s ease-in-out infinite reverse;
}

.showcase-panel {
    position: absolute;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.panel-main {
    inset: 40px 40px 60px 60px;
    padding: 28px;
    background: linear-gradient(160deg, rgba(255, 253, 248, 0.95), rgba(247, 242, 233, 0.96));
    border: 1px solid rgba(208, 176, 106, 0.2);
    animation: riseIn 0.9s ease both;
}

.panel-float {
    right: 0;
    bottom: 0;
    width: 250px;
    padding: 18px;
    background: linear-gradient(180deg, rgba(15, 36, 56, 0.98), rgba(18, 25, 33, 0.98));
    color: var(--white);
    animation: riseIn 1.1s ease both;
}

.panel-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(15, 15, 16, 0.08);
    color: var(--gold-strong);
    font-weight: 700;
}

.panel-badge svg,
.mini-stat svg,
.icon-wrap svg,
.contact-chip svg,
.premium-points svg,
.inline-link svg {
    width: 18px;
    height: 18px;
}

.panel-screen {
    margin-top: 18px;
    border-radius: 26px;
    padding: 22px;
    background: linear-gradient(180deg, var(--navy-strong), #1b2530);
    color: var(--white);
}

.screen-top {
    display: flex;
    gap: 8px;
}

.screen-top span {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.26);
}

.screen-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 18px;
    margin-top: 24px;
}

.screen-copy strong,
.screen-metric strong {
    display: block;
    font-size: 1.5rem;
}

.screen-copy p,
.screen-metric span {
    color: rgba(255, 255, 255, 0.72);
}

.screen-bars {
    display: grid;
    gap: 10px;
    margin-top: 24px;
}

.screen-bars span {
    height: 12px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), rgba(203, 164, 92, 0.54));
}

.screen-bars .wide {
    width: 100%;
}

.screen-bars span:not(.wide) {
    width: 74%;
}

.mini-stat {
    display: flex;
    gap: 12px;
    padding: 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
}

.mini-stat + .mini-stat {
    margin-top: 12px;
}

.mini-stat small {
    display: block;
    color: rgba(255, 255, 255, 0.68);
    margin-top: 4px;
}

.section {
    padding: 92px 0;
}

.trust-section {
    padding-top: 30px;
}

.trust-grid,
.service-grid,
.project-mosaic,
.testimonial-grid,
.roadmap-grid,
.faq-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.icon-card,
.service-card,
.project-card,
.testimonial-card,
.editorial-card,
.contact-form-card,
.mini-dashboard,
.manifesto-card,
.timeline article,
.float-card {
    border-radius: var(--radius-lg);
    border: 1px solid rgba(21, 21, 21, 0.08);
    background: var(--surface);
    box-shadow: var(--shadow);
}

.icon-card,
.service-card,
.testimonial-card,
.contact-form-card,
.mini-dashboard,
.manifesto-card {
    padding: 26px;
}

.icon-wrap {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--navy-strong), rgba(208, 176, 106, 0.92));
    color: var(--white);
    margin-bottom: 18px;
}

.editorial-section {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 250, 240, 0.72));
}

.editorial-stack {
    display: grid;
    gap: 16px;
}

.editorial-card strong {
    display: inline-flex;
    margin-bottom: 14px;
    color: var(--gold);
}

.editorial-card {
    padding: 24px;
}

.editorial-card.dark {
    background: linear-gradient(180deg, #111, #1e1a17);
    color: var(--white);
}

.editorial-card.dark p {
    color: rgba(255, 255, 255, 0.76);
}

.editorial-card.gold {
    background: linear-gradient(180deg, #f3e1be, #f9f1df);
}

.editorial-card.light {
    background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(250,245,236,0.94));
}

.section-head {
    align-items: end;
    justify-content: space-between;
    margin-bottom: 28px;
}

.section-head h2,
.section-copy h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.2rem);
    letter-spacing: -0.04em;
    line-height: 1.02;
    max-width: 15ch;
}

.service-card.large,
.service-card {
    position: relative;
    overflow: hidden;
}

.service-card::before,
.project-card::before,
.testimonial-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(203, 164, 92, 0.08), transparent 46%);
    pointer-events: none;
}

.service-top,
.portfolio-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.inline-link {
    margin-top: 14px;
    color: var(--gold-strong);
    font-weight: 700;
}

.inline-link svg {
    width: 16px;
    height: 16px;
}

.detail-list,
.premium-points {
    margin: 18px 0 0;
    padding-left: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.detail-list li,
.premium-points li {
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.7;
}

.dark-band {
    background: linear-gradient(180deg, #111111, #171412 74%, #1e1a17);
    color: var(--white);
}

.dark-band p,
.dark-band li,
.dark-band .eyebrow {
    color: rgba(255, 255, 255, 0.8);
}

.dark-highlight {
    padding: 30px;
    border-radius: var(--radius-xl);
    background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(203,164,92,0.08));
    border: 1px solid rgba(203, 164, 92, 0.18);
}

.gold-line {
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin-bottom: 18px;
}

.premium-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.project-card {
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.project-art {
    height: 210px;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 20%, rgba(255,255,255,0.55), transparent 20%),
        linear-gradient(135deg, rgba(15,36,56,0.96), rgba(28,35,42,0.92) 56%, rgba(208,176,106,0.82));
}

.project-art img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-art-1 {
    background:
        radial-gradient(circle at 70% 30%, rgba(255,255,255,0.42), transparent 18%),
        linear-gradient(135deg, rgba(208,176,106,0.88), rgba(19,41,61,0.96));
}

.project-art-2 {
    background:
        radial-gradient(circle at 60% 60%, rgba(255,255,255,0.36), transparent 16%),
        linear-gradient(135deg, rgba(15,36,56,0.96), rgba(208,176,106,0.58), rgba(183,190,200,0.66));
}

.project-body {
    padding: 24px;
}

.premium-testimonials {
    background: linear-gradient(180deg, rgba(255,255,255,0.1), rgba(255,249,238,0.74));
    position: relative;
    z-index: 1;
}

.testimonial-card span {
    color: var(--muted);
}

.mini-dashboard-top {
    display: flex;
    gap: 10px;
    margin-bottom: 18px;
}

.mini-dashboard-top span,
.tag-row span,
.contact-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(203, 164, 92, 0.14);
    color: var(--gold-strong);
    font-weight: 700;
}

.mini-dashboard-grid {
    display: grid;
    gap: 16px;
}

.floating-panels {
    display: grid;
    gap: 14px;
}

.float-card {
    padding: 22px;
}

.float-card strong {
    display: block;
    margin-bottom: 6px;
}

.float-card.dark {
    background: linear-gradient(180deg, #111, #1f1b18);
    color: var(--white);
}

.float-card.gold {
    background: linear-gradient(180deg, #cba45c, #eed8ae);
}

.float-card.light {
    background: rgba(255,255,255,0.82);
}

.manifesto-card {
    background: linear-gradient(180deg, rgba(17,17,17,0.98), rgba(39,33,26,0.98));
    color: var(--white);
    min-height: 260px;
    display: grid;
    place-items: center;
}

.manifesto-card p {
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    line-height: 1.6;
    max-width: 18ch;
}

.timeline {
    display: grid;
    gap: 16px;
}

.timeline article {
    padding: 22px 24px;
    background: rgba(255,255,255,0.05);
    border-color: rgba(203, 164, 92, 0.12);
}

.timeline strong {
    color: var(--gold);
    font-size: 1.4rem;
}

.contact-stack {
    display: grid;
    gap: 10px;
    margin-top: 24px;
}

.contact-visual {
    position: relative;
    min-height: 320px;
    border-radius: var(--radius-xl);
    background: linear-gradient(145deg, var(--navy-strong), #20384f 58%, var(--gold));
    overflow: hidden;
    box-shadow: var(--shadow);
}

.contact-glow {
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 999px;
    top: 20px;
    right: 20px;
    background: radial-gradient(circle, rgba(255,255,255,0.34), transparent 64%);
}

.contact-chip {
    position: absolute;
    left: 24px;
    background: rgba(255,255,255,0.12);
    color: var(--white);
}

.contact-chip:nth-child(2) {
    top: 38px;
}

.contact-chip:nth-child(3) {
    top: 102px;
}

.contact-chip:nth-child(4) {
    top: 166px;
}

.contact-form-card {
    width: 100%;
}

.light-list li {
    color: var(--ink);
}

form {
    display: grid;
    gap: 14px;
}

label {
    display: grid;
    gap: 8px;
    font-weight: 600;
}

input,
textarea {
    width: 100%;
    border-radius: 16px;
    border: 1px solid rgba(21, 21, 21, 0.1);
    background: rgba(255,255,255,0.84);
    padding: 14px 16px;
    color: var(--ink);
    font: inherit;
}

input[type="file"] {
    padding: 12px;
    background: rgba(255,255,255,0.92);
}

.admin-file-note {
    font-size: 0.88rem;
    color: var(--gold-strong);
}

textarea {
    resize: vertical;
}

.alert {
    border-radius: 16px;
    padding: 14px 16px;
    margin-bottom: 18px;
}

.alert.success {
    background: rgba(20, 108, 67, 0.1);
    color: var(--success);
}

.alert.danger {
    background: rgba(166, 58, 50, 0.1);
    color: var(--danger);
}

.site-footer {
    padding: 30px 0 40px;
    border-top: 1px solid rgba(21,21,21,0.08);
    background: rgba(255, 252, 246, 0.72);
}

.footer-grid {
    align-items: start;
}

.footer-grid > * {
    flex: 1;
}

.footer-links,
.footer-contact {
    display: grid;
    gap: 12px;
}

.footer-brand {
    margin-bottom: 16px;
}

.reveal {
    opacity: 0;
    transform: translateY(26px);
    animation: riseIn 0.8s ease forwards;
}

.delay-2 {
    animation-delay: 0.14s;
}

@keyframes riseIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatSoft {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-14px);
    }
}

.admin-body,
.admin-auth-body {
    background:
        radial-gradient(circle at top left, rgba(203, 164, 92, 0.24), transparent 22%),
        linear-gradient(180deg, #f2eadf, #f8f3ec);
}

.admin-layout {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
}

.admin-sidebar {
    padding: 28px;
    background: #141518;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 28px;
}

.admin-sidebar nav {
    display: grid;
    gap: 12px;
}

.admin-sidebar nav a {
    color: rgba(255,255,255,0.78);
}

.admin-main {
    padding: 32px;
    display: grid;
    gap: 24px;
}

.admin-section,
.admin-list article,
.admin-auth-card,
.message-table {
    background: rgba(255, 253, 248, 0.88);
    border: 1px solid rgba(21, 21, 21, 0.08);
    box-shadow: var(--shadow);
    border-radius: var(--radius-lg);
}

.admin-section,
.admin-list article,
.admin-auth-card {
    padding: 26px;
}

.admin-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.full-span {
    grid-column: 1 / -1;
}

.admin-columns {
    align-items: flex-start;
}

.admin-columns > * {
    flex: 1;
}

.stack-form,
.admin-list {
    display: grid;
    gap: 16px;
}

.admin-list article {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;
}

.message-table {
    overflow: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    text-align: left;
    padding: 14px;
    border-bottom: 1px solid var(--line);
    vertical-align: top;
}

.admin-auth-wrapper {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px;
}

.admin-auth-card {
    width: min(460px, 100%);
}

.admin-layout-premium {
    grid-template-columns: 320px minmax(0, 1fr);
}

.admin-sidebar-premium {
    background: linear-gradient(180deg, #121214, #1c1815 66%, #2b241c);
    border-right: 1px solid rgba(255,255,255,0.05);
}

.admin-brand-block p {
    color: rgba(255,255,255,0.72);
}

.admin-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 16px;
    color: rgba(255,255,255,0.8);
    transition: background 0.2s ease, transform 0.2s ease;
}

.admin-nav a svg,
.admin-nav-group summary svg,
.icon-button svg,
.button svg {
    width: 18px;
    height: 18px;
}

.admin-nav a:hover,
.admin-nav a.is-active {
    background: rgba(255,255,255,0.08);
    color: var(--white);
    transform: translateX(2px);
}

.admin-nav-group {
    border-radius: 16px;
    background: rgba(255,255,255,0.03);
}

.admin-nav-group summary {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    cursor: pointer;
    color: rgba(255,255,255,0.86);
}

.admin-nav-group summary::-webkit-details-marker {
    display: none;
}

.admin-nav-group summary svg:last-child {
    margin-left: auto;
}

.admin-subnav {
    display: grid;
    gap: 8px;
    padding: 0 10px 10px;
}

.admin-subnav a {
    padding-left: 40px;
}

.admin-sidebar-actions {
    display: grid;
    gap: 12px;
}

.admin-page-copy {
    color: var(--muted);
    margin: 8px 0 0;
    line-height: 1.7;
}

.admin-topbar-premium {
    padding: 6px 0 10px;
}

.admin-tab-strip {
    display: flex;
    gap: 12px;
    overflow: auto;
    padding-bottom: 6px;
}

.admin-tab-strip a {
    white-space: nowrap;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.75);
    border: 1px solid rgba(21,21,21,0.08);
    color: var(--muted);
}

.admin-tab-strip a.is-active {
    background: rgba(203, 164, 92, 0.18);
    color: var(--gold-strong);
    border-color: rgba(203, 164, 92, 0.24);
}

.admin-user-pill {
    padding: 12px 16px;
    border-radius: 999px;
    background: rgba(203, 164, 92, 0.16);
    color: var(--gold-strong);
    font-weight: 700;
}

.admin-summary-grid,
.admin-quick-grid,
.admin-overview-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.admin-summary-card,
.admin-quick-card,
.admin-overview-grid article {
    padding: 22px;
    border-radius: 20px;
    border: 1px solid rgba(21,21,21,0.08);
    background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(251,246,236,0.92));
    box-shadow: var(--shadow);
}

.admin-summary-card span,
.admin-overview-grid span {
    display: block;
    color: var(--muted);
    margin-bottom: 8px;
}

.admin-summary-card strong,
.admin-overview-grid strong {
    display: block;
    font-family: "Manrope", sans-serif;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.admin-summary-card a,
.admin-quick-card strong {
    color: var(--gold-strong);
    font-weight: 700;
}

.admin-quick-card p {
    margin: 10px 0 0;
    color: var(--muted);
    line-height: 1.7;
}

.admin-list-forms article {
    display: grid;
    gap: 14px;
}

.admin-delete-form {
    display: flex;
    justify-content: flex-start;
}

.admin-account-form {
    max-width: 560px;
}

.admin-auth-wrapper-premium {
    grid-template-columns: minmax(0, 1.15fr) minmax(360px, 460px);
    align-items: stretch;
    gap: 30px;
}

.admin-auth-showcase,
.premium-login-card {
    border-radius: 30px;
    box-shadow: var(--shadow);
}

.admin-auth-showcase {
    padding: 46px;
    background: linear-gradient(160deg, #121214, #231d17 62%, #cba45c);
    color: var(--white);
    display: grid;
    align-content: center;
    gap: 18px;
}

.admin-auth-showcase h1,
.premium-login-card h2 {
    margin: 0;
    font-family: "Manrope", sans-serif;
    letter-spacing: -0.04em;
}

.admin-auth-showcase h1 {
    font-size: clamp(2.2rem, 4vw, 4rem);
    line-height: 1;
    max-width: 11ch;
}

.admin-auth-showcase p,
.admin-auth-points span {
    color: rgba(255,255,255,0.78);
    line-height: 1.8;
}

.admin-auth-points {
    display: grid;
    gap: 14px;
    margin-top: 8px;
}

.admin-auth-points article {
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255,255,255,0.08);
}

.admin-auth-points strong {
    display: block;
    margin-bottom: 4px;
}

.premium-login-card {
    padding: 34px;
    background: rgba(255, 252, 246, 0.95);
    border: 1px solid rgba(21,21,21,0.08);
    display: grid;
    align-content: center;
}

.premium-login-card p {
    color: var(--muted);
}

@media (max-width: 1220px) {
    .site-nav {
        gap: 14px;
    }

    .site-nav a {
        font-size: 0.9rem;
    }

    .site-menu-wrap {
        gap: 16px;
    }

    .brand strong {
        font-size: 0.98rem;
    }
}

.admin-accordion-list {
    display: grid;
    gap: 16px;
}

.admin-accordion-card {
    border: 1px solid rgba(21,21,21,0.08);
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(251,246,236,0.92));
    box-shadow: var(--shadow);
    overflow: hidden;
}

.admin-accordion-card summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px;
    cursor: pointer;
}

.admin-accordion-card summary::-webkit-details-marker {
    display: none;
}

.admin-card-preview {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
}

.admin-card-preview > div:last-child {
    min-width: 0;
}

.admin-card-preview strong {
    display: block;
    font-family: "Manrope", sans-serif;
    margin-bottom: 6px;
}

.admin-card-preview p {
    margin: 0;
    color: var(--muted);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.admin-thumb {
    width: 84px;
    height: 84px;
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(145deg, #111, #2c241c 58%, #cba45c);
    display: grid;
    place-items: center;
    color: var(--white);
    flex-shrink: 0;
}

.admin-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.admin-summary-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.icon-form {
    display: inline-flex;
}

.icon-button {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(21,21,21,0.08);
    border-radius: 14px;
    background: rgba(255,255,255,0.8);
    display: inline-grid;
    place-items: center;
    color: var(--ink);
}

.icon-button.danger {
    color: var(--danger);
    background: rgba(166, 58, 50, 0.08);
    border-color: rgba(166, 58, 50, 0.16);
}

.admin-edit-panel {
    padding: 0 18px 18px;
    border-top: 1px solid rgba(21,21,21,0.06);
}

@media (max-width: 980px) {
    .nav-row,
    .hero-premium-grid,
    .inner-hero-grid,
    .split-hero,
    .dark-band-grid,
    .footer-grid,
    .section-head,
    .admin-columns,
    .admin-topbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .trust-grid,
    .service-grid,
    .project-mosaic,
    .testimonial-grid,
    .premium-grid,
    .admin-summary-grid,
    .admin-quick-grid,
    .admin-overview-grid,
    .admin-form-grid,
    .admin-layout {
        grid-template-columns: 1fr;
    }

    .site-nav {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .showcase-shell {
        min-height: auto;
        display: grid;
        gap: 14px;
        width: 100%;
    }

    .showcase-orb {
        display: none;
    }

    .showcase-panel {
        position: relative;
        inset: auto;
    }

    .panel-main {
        padding: 22px;
    }

    .panel-float {
        width: auto;
        right: auto;
        bottom: auto;
    }

    .mobile-menu-toggle {
        display: inline-flex;
    }

    .site-menu-wrap {
        position: absolute;
        top: calc(100% + 10px);
        left: 20px;
        right: 20px;
        display: none;
        padding: 18px;
        border-radius: 22px;
        background: rgba(255, 252, 246, 0.98);
        border: 1px solid rgba(21, 21, 21, 0.08);
        box-shadow: var(--shadow);
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
        z-index: 85;
    }

    .site-menu-wrap.is-open {
        display: flex;
    }

    .site-menu-wrap .nav-cta {
        width: 100%;
    }

    .nav-row {
        position: relative;
    }

    .admin-auth-wrapper-premium {
        grid-template-columns: 1fr;
    }

    .admin-accordion-card summary,
    .admin-card-preview {
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 24px, 1200px);
    }

    .brand {
        gap: 10px;
    }

    .brand-mark {
        width: 56px;
        height: 56px;
    }

    .hero-premium {
        padding-top: 70px;
    }

    .hero h1,
    .inner-hero h1 {
        font-size: clamp(2.3rem, 10vw, 3.4rem);
    }

    .stat-strip article {
        width: 100%;
    }

    .contact-chip {
        position: static;
        margin: 16px;
    }

    .section {
        padding: 72px 0;
    }

    .panel-main {
        padding: 18px;
    }

    .panel-screen {
        padding: 16px;
    }

    .screen-grid {
        grid-template-columns: 1fr;
    }

    .inner-hero,
    .hero-premium {
        padding-bottom: 40px;
    }

    .project-art {
        height: 170px;
    }

    .footer-grid {
        gap: 28px;
    }

    .admin-main,
    .admin-sidebar {
        padding: 20px;
    }

    .admin-accordion-card summary {
        flex-direction: column;
        align-items: flex-start;
    }

    .admin-summary-actions {
        width: 100%;
        justify-content: flex-start;
    }
}
