@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500&family=Inter:wght@400;500;600;700;800&family=Poppins:wght@100;200;300&display=swap");

:root {
    color-scheme: dark;
    --black: #050505;
    --ink: #101010;
    --panel: #151515;
    --line: #303030;
    --muted: #a9a9a9;
    --soft: #e8e8e8;
    --white: #ffffff;
    --radius: 8px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--black);
    color: var(--white);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
}

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

img {
    display: block;
    max-width: 100%;
}

button,
input,
textarea {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: grid;
    place-items: center;
    gap: 14px;
    padding: 18px 20px 16px;
    background: rgba(0, 0, 0, 0.88);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(16px);
}

.home-mark {
    display: grid;
    width: 100px;
    height: 100px;
    place-items: center;
    background: #000;
    border: 0;
    color: var(--white);
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 0;
}

.home-mark img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.brand-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.brand-strip a {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    color: var(--white);
    border: 0;
    background: transparent;
    font-size: 10px;
    font-weight: 700;
    overflow: hidden;
}

.brand-strip img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.mobile-quick-nav {
    display: none;
}

.intro {
    display: grid;
    min-height: 48vh;
    align-items: end;
    padding: 84px 20px 56px;
    border-bottom: 1px solid var(--line);
}

.intro > div,
.section-shell,
.site-footer {
    width: min(980px, 100%);
    margin-inline: auto;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

h1,
h2,
h3,
p,
figure {
    margin-top: 0;
}

h1 {
    margin-bottom: 16px;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(48px, 10vw, 112px);
    line-height: 0.9;
    letter-spacing: 0;
    font-weight: 500;
}

.intro p:last-child {
    max-width: 620px;
    margin-bottom: 0;
    color: var(--soft);
    font-size: 18px;
}

.brand-section {
    border-bottom: 1px solid var(--line);
    background:
        linear-gradient(90deg, color-mix(in srgb, var(--accent) 12%, transparent), transparent 38%),
        var(--black);
}

.section-shell {
    padding: 74px 20px;
}

.brand-kicker {
    width: max-content;
    margin-bottom: 14px;
    padding-bottom: 6px;
    color: var(--accent);
    border-bottom: 2px solid var(--accent);
    font-size: 13px;
    font-weight: 800;
}

h2 {
    margin-bottom: 26px;
    color: var(--white);
    font-family: "Poppins", Inter, sans-serif;
    font-size: clamp(24px, 4vw, 42px);
    line-height: 1.08;
    letter-spacing: 0;
    font-weight: 100;
    text-transform: lowercase;
}

.slider {
    position: relative;
    overflow: hidden;
    width: min(760px, 100%);
    margin-bottom: 26px;
    border: 1px solid color-mix(in srgb, var(--accent) 45%, #303030);
    background: #0d0d0d;
}

.slider.is-landscape {
    aspect-ratio: 3 / 2;
}

.slider.is-portrait {
    width: min(520px, 100%);
    aspect-ratio: 4 / 5;
}

.slides,
.slide {
    position: absolute;
    inset: 0;
}

.slide {
    margin: 0;
    opacity: 0;
    transition: opacity 420ms ease;
}

.slide.is-active {
    opacity: 1;
}

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

.placeholder-slide {
    display: grid;
    place-items: center;
    align-content: center;
    gap: 6px;
    padding: 28px;
    color: var(--white);
    text-align: center;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent),
        #111;
}

.placeholder-slide span {
    font-size: clamp(24px, 6vw, 54px);
    font-weight: 800;
    line-height: 1;
}

.placeholder-slide small {
    color: var(--muted);
    font-size: 12px;
    text-transform: uppercase;
}

.slider-controls {
    position: absolute;
    right: 14px;
    bottom: 14px;
    left: 14px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
}

.slider-controls button {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.62);
    color: var(--white);
    cursor: pointer;
    pointer-events: auto;
}

.dots {
    display: flex;
    gap: 7px;
}

.dots span {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.38);
}

.dots span.is-active {
    background: var(--accent);
}

.summary {
    width: min(650px, 100%);
    margin-bottom: 22px;
    color: var(--soft);
    font-size: 17px;
}

.portfolio-teaser {
    margin: 34px 0 24px;
    padding: 18px;
    border: 1px solid color-mix(in srgb, var(--accent) 28%, #2b2b2b);
    background:
        linear-gradient(180deg, color-mix(in srgb, var(--accent) 8%, transparent), transparent 55%),
        #0f0f0f;
}

.portfolio-teaser-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
}

.portfolio-teaser-head h3,
.portfolio-card-body h4,
.portfolio-card-body h3 {
    margin: 0;
}

.portfolio-teaser-head h3 {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 500;
}

.portfolio-link {
    display: inline-flex;
    min-height: 36px;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border: 1px solid color-mix(in srgb, var(--accent) 55%, #494949);
    background: color-mix(in srgb, var(--accent) 10%, #121212);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
}

.portfolio-link:hover {
    background: color-mix(in srgb, var(--accent) 18%, #151515);
}

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

.portfolio-grid.is-full {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 18px;
}

.portfolio-card {
    display: grid;
    position: relative;
    overflow: hidden;
    border: 1px solid color-mix(in srgb, var(--accent) 35%, #2e2e2e);
    background: #101010;
    transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.portfolio-card:hover {
    transform: translateY(-3px);
    border-color: color-mix(in srgb, var(--accent) 50%, #575757);
    background: #131313;
}

.portfolio-card-media {
    aspect-ratio: 4 / 5;
    background: #0b0b0b;
    overflow: hidden;
}

.portfolio-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms ease;
}

.portfolio-card:hover .portfolio-card-media img {
    transform: scale(1.03);
}

.portfolio-placeholder {
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
    color: var(--muted);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent),
        #121212;
    text-align: center;
    padding: 18px;
}

.portfolio-card-body {
    display: grid;
    gap: 8px;
    align-content: start;
    padding: 16px;
}

.portfolio-card-body p {
    margin: 0;
    color: var(--soft);
    font-size: 14px;
}

.portfolio-card-body h3,
.portfolio-card-body h4 {
    font-family: "Poppins", Inter, sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.2;
}

.portfolio-card-hit {
    position: absolute;
    inset: 0;
    z-index: 2;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.portfolio-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.portfolio-count {
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.portfolio-meta {
    display: inline-flex;
    width: max-content;
    min-height: 26px;
    align-items: center;
    padding: 4px 8px;
    border: 1px solid color-mix(in srgb, var(--accent) 35%, #404040);
    background: color-mix(in srgb, var(--accent) 10%, #151515);
    color: var(--muted) !important;
    font-size: 10px !important;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.portfolio-page .portfolio-hero {
    padding: 82px 20px 44px;
    border-bottom: 1px solid var(--line);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent),
        #090909;
}

.portfolio-page .portfolio-hero .summary {
    max-width: 720px;
}

.portfolio-page .brand-section {
    min-height: 56vh;
}

.portfolio-modal[hidden] {
    display: none;
}

.portfolio-modal {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: grid;
    place-items: center;
    padding: 20px;
}

.portfolio-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(6px);
}

.portfolio-modal-dialog {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 18px;
    width: min(1040px, 100%);
    max-height: calc(100vh - 40px);
    overflow: auto;
    padding: 20px;
    border: 1px solid var(--line);
    background: #0f0f0f;
}

.portfolio-modal-dialog-portrait {
    width: min(620px, 100%);
}

.portfolio-modal-dialog-landscape {
    width: min(1120px, 100%);
}

.portfolio-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    cursor: pointer;
    font-size: 24px;
    line-height: 1;
}

.portfolio-modal-copy {
    display: grid;
    gap: 10px;
    padding-right: 48px;
}

.portfolio-modal-copy h2 {
    margin: 0;
    font-size: clamp(22px, 4vw, 38px);
}

.portfolio-modal-copy p {
    margin: 0;
    color: var(--soft);
}

.portfolio-modal-gallery {
    width: 100%;
    margin-bottom: 0;
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.cta {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid color-mix(in srgb, var(--accent) 65%, #555);
    background: color-mix(in srgb, var(--accent) 12%, #111);
    color: var(--white);
    font-size: 14px;
    font-weight: 800;
    transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.cta:hover {
    background: var(--accent);
    color: #000;
    transform: translateY(-1px);
}

.cta-chat-admin {
    border-color: #70ff00;
    background: #70ff00;
    color: #071100;
    box-shadow: 0 10px 24px rgba(112, 255, 0, 0.2);
}

.cta-chat-admin:hover {
    border-color: #8fff33;
    background: #8fff33;
    color: #071100;
}

.site-footer {
    padding: 32px 20px;
    color: var(--muted);
}

.site-footer p {
    margin: 0;
}

body.landing-page,
.portfolio-page-body {
    background: #050505;
    color: #fff;
    font-family: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.landing-page {
    color-scheme: dark;
}

.landing-page main,
.portfolio-page {
    width: 100%;
}

.landing-page .hero-block {
    position: relative;
    min-height: min(78svh, 820px);
    background: #000;
}

.landing-page .hero-media,
.landing-page .hero-fallback,
.landing-page .hero-overlay {
    position: absolute;
    inset: 0;
}

.landing-page .hero-media img,
.landing-page .hero-fallback {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.landing-page .hero-fallback {
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 28%),
        linear-gradient(180deg, #1a1a1a, #050505);
}

.landing-page .hero-overlay {
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.34) 42%, rgba(0, 0, 0, 0.88) 100%);
}

.landing-page .hero-shell {
    position: relative;
    z-index: 1;
    display: grid;
    min-height: min(78svh, 820px);
    align-content: space-between;
    gap: 32px;
    width: min(1240px, 100%);
    margin: 0 auto;
    padding: 18px 18px 28px;
}

.landing-page .hero-topbar {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.landing-page .hero-mark {
    display: inline-flex;
    width: 80px;
    height: 80px;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: transparent;
}

.landing-page .hero-mark img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.landing-page .hero-mark span {
    font-size: 30px;
    font-weight: 700;
}

.landing-page .hero-brand-rail {
    display: none;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: none;
}

.landing-page .hero-brand-rail::-webkit-scrollbar,
.landing-page .mobile-quick-nav::-webkit-scrollbar {
    display: none;
}

.landing-page .hero-brand-rail a {
    display: inline-flex;
    min-width: 46px;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(8px);
}

.landing-page .hero-brand-rail img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.landing-page .hero-brand-rail span {
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0;
}

.landing-page .hero-copy {
    display: grid;
    gap: 14px;
    width: min(760px, 100%);
}

.landing-page .hero-kicker {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.landing-page h1 {
    margin: 0;
    font-family: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: clamp(44px, 13vw, 110px);
    line-height: 0.94;
    font-weight: 700;
    letter-spacing: 0;
}

.landing-page .hero-copy p:last-child {
    margin: 0;
    max-width: 50ch;
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(15px, 2vw, 20px);
    line-height: 1.55;
}

.landing-page .mobile-quick-nav {
    position: sticky;
    bottom: 0;
    z-index: 18;
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(8, 8, 8, 0.94);
    backdrop-filter: blur(14px);
}

.landing-page .mobile-quick-nav a {
    display: inline-flex;
    min-width: 48px;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.landing-page .mobile-quick-nav a.is-active {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.12);
}

.landing-page .mobile-quick-nav img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.landing-page .mobile-quick-nav span {
    color: #fff;
    font-size: 11px;
    font-weight: 700;
}

.landing-page .brand-band {
    padding: 24px 0;
}

.landing-page .brand-band__inner {
    display: grid;
    gap: 24px;
    width: min(1240px, 100%);
    margin: 0 auto;
    padding: 0 18px;
}

.landing-page .brand-band__media,
.landing-page .brand-band__placeholder {
    width: 100%;
    aspect-ratio: 4 / 5;
}

.landing-page .brand-band__media {
    margin: 0;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.12);
}

.landing-page .brand-band__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.landing-page .brand-band__placeholder {
    display: grid;
    place-items: center;
    padding: 24px;
    background: rgba(255, 255, 255, 0.08);
}

.landing-page .brand-band__placeholder span {
    font-size: 22px;
    font-weight: 700;
    text-align: center;
}

.landing-page .brand-band__copy {
    display: grid;
    align-content: center;
    gap: 16px;
    padding: 8px 0;
}

.landing-page .brand-band__eyebrow {
    margin: 0;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    opacity: 0.72;
}

.landing-page .brand-band__copy h2 {
    margin: 0;
    font-family: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: clamp(28px, 6vw, 58px);
    line-height: 1.02;
    font-weight: 700;
    text-transform: none;
    overflow-wrap: anywhere;
}

.landing-page .brand-band__logo {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 48px;
    margin-top: 2px;
}

.landing-page .brand-band__logo img {
    width: auto;
    max-width: min(176px, 58vw);
    height: 42px;
    object-fit: contain;
    object-position: left center;
}

.landing-page .brand-band__copy p:last-of-type {
    margin: 0;
    max-width: 40ch;
    font-size: clamp(15px, 2vw, 18px);
    line-height: 1.6;
}

.landing-page .brand-band__cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 4px;
}

.landing-page .button-pill,
.portfolio-page .cta,
.portfolio-page .portfolio-link {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.landing-page .button-pill:hover,
.portfolio-page .cta:hover,
.portfolio-page .portfolio-link:hover {
    transform: translateY(-1px);
}

.landing-page .button-whatsapp {
    background: #32d54d;
    color: #000;
}

.landing-page .button-ghost-light {
    border-color: rgba(255, 255, 255, 0.82);
    background: transparent;
    color: #fff;
}

.landing-page .button-solid-dark {
    background: #000;
    color: #fff;
}

.landing-page .copy-light {
    color: #fff;
}

.landing-page .copy-dark {
    color: #090909;
}

.landing-page .copy-dark .brand-band__eyebrow,
.landing-page .copy-dark h2,
.landing-page .copy-dark p {
    color: #090909;
}

.landing-page .theme-thephotoworks {
    background: #000;
}

.landing-page .theme-bliss {
    background: #272727;
}

.landing-page .theme-photohomestudio {
    background: #700000;
}

.landing-page .theme-jengkar-media {
    background: #f3ca3e;
}

.landing-page .theme-jengkar-visual {
    background: #3698b5;
}

.landing-page .theme-waju {
    background: #000;
}

.landing-page .site-footer {
    padding: 28px 0 calc(28px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #050505;
}

.landing-page .site-footer__inner {
    width: min(1240px, 100%);
    margin: 0 auto;
    padding: 0 18px;
}

.landing-page .site-footer p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}

.portfolio-page-body .site-header--compact {
    position: sticky;
    top: 0;
    display: flex;
    justify-content: center;
    padding: 14px 18px;
}

.portfolio-page-body .site-header--compact .home-mark {
    width: 72px;
    height: 72px;
    background: rgba(0, 0, 0, 0.58);
}

.portfolio-page-body .site-header--compact .home-mark img {
    width: 72px;
    height: 72px;
}

.portfolio-page-body .portfolio-hero {
    padding-top: 52px;
}

.portfolio-page-body .portfolio-hero h1 {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: clamp(40px, 9vw, 86px);
    line-height: 0.95;
    font-weight: 700;
}

.portfolio-page-body .portfolio-card-body h3,
.portfolio-page-body .portfolio-modal-copy h2 {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    text-transform: none;
}

.portfolio-page-body .portfolio-link,
.portfolio-page-body .cta {
    border-radius: 999px;
}

.portfolio-page-body .cta {
    background: #111;
    color: #fff;
}

.portfolio-page-body .cta:hover {
    background: #1d1d1d;
}

.admin-body {
    background: #0a0a0a;
}

.admin-shell {
    width: min(1120px, 100%);
    margin-inline: auto;
    padding: 28px 18px 64px;
}

.login-panel,
.admin-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--panel);
}

.login-panel {
    width: min(440px, 100%);
    margin: 10vh auto;
    padding: 28px;
}

.admin-topbar {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 24px;
}

.admin-topbar h1,
.login-panel h1 {
    margin: 0;
    font-size: clamp(32px, 7vw, 62px);
}

.admin-actions,
.media-row,
.upload-form {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.admin-stack-top {
    margin-top: 18px;
}

.admin-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 30px;
}

.admin-toggle input {
    width: 18px;
    height: 18px;
}

.admin-toggle span {
    color: var(--soft);
}

.media-preview.is-featured {
    width: min(260px, 100%);
    aspect-ratio: 4 / 5;
    overflow: hidden;
}

.media-preview.is-featured img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.media-preview.is-featured span {
    font-size: 18px;
    font-weight: 700;
}

.admin-card {
    margin-bottom: 18px;
    padding: 22px;
}

.admin-card h2,
.brand-editor h3 {
    margin-bottom: 14px;
}

.brand-panel-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.brand-panel-head h2 {
    margin-bottom: 8px;
}

.brand-badge {
    display: inline-flex;
    min-height: 32px;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.brand-panel-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(240px, 0.9fr);
    gap: 18px;
}

.brand-panel-main,
.brand-panel-side {
    display: grid;
    gap: 16px;
}

.brand-panel-side {
    align-content: start;
}

.portfolio-admin-block {
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
}

.portfolio-admin-list {
    display: grid;
    gap: 16px;
    margin-bottom: 18px;
}

.portfolio-admin-item {
    display: grid;
    grid-template-columns: 200px minmax(0, 1fr);
    gap: 16px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent),
        #111;
}

.portfolio-admin-item.is-new {
    grid-template-columns: 1fr;
}

.portfolio-admin-preview {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border: 1px solid var(--line);
    background: #050505;
}

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

.portfolio-admin-delete {
    margin-top: 12px;
}

.portfolio-admin-item .admin-form {
    align-content: start;
}

.portfolio-gallery-admin {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 12px;
    margin-top: 14px;
}

.portfolio-gallery-admin article {
    display: grid;
    gap: 8px;
}

.portfolio-gallery-admin img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border: 1px solid var(--line);
    background: #050505;
}

.portfolio-gallery-admin.is-landscape {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}

.portfolio-gallery-admin.is-landscape img {
    aspect-ratio: 16 / 9;
}

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

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

.admin-form label,
.upload-form {
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.admin-form input,
.admin-form textarea,
.upload-form input[type="file"] {
    width: 100%;
    margin-top: 6px;
    border: 1px solid #3b3b3b;
    border-radius: 6px;
    background: #080808;
    color: var(--white);
    padding: 11px 12px;
}

.brand-editor {
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.upload-card {
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #111;
}

.admin-button,
.admin-link {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--white);
    border-radius: 6px;
    background: var(--white);
    color: #000;
    padding: 9px 14px;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
}

.admin-button.is-ghost,
.admin-link {
    background: transparent;
    color: var(--white);
}

.admin-button.is-danger {
    border-color: #b60505;
    background: #b60505;
    color: #fff;
}

.alert {
    border-radius: 6px;
    padding: 10px 12px;
    font-weight: 700;
}

.alert-success {
    border: 1px solid #7bc67b;
    background: rgba(123, 198, 123, 0.14);
}

.alert-error {
    border: 1px solid #d15a5a;
    background: rgba(209, 90, 90, 0.14);
}

.admin-note {
    color: var(--muted);
    font-size: 13px;
}

.stats-head,
.stats-panel-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.stats-head {
    margin-bottom: 18px;
}

.stats-head h2,
.stats-panel-head h3 {
    margin-bottom: 8px;
}

.stats-controls {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 10px;
}

.stats-range-switch {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.stats-range-chip {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #111;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.stats-range-chip.is-active {
    border-color: var(--white);
    background: var(--white);
    color: #000;
}

.stats-filter {
    min-width: 220px;
}

.stats-filter label {
    display: grid;
    gap: 6px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.stats-filter select {
    width: 100%;
    border: 1px solid #3b3b3b;
    border-radius: 6px;
    background: #080808;
    color: var(--white);
    padding: 11px 12px;
}

.stats-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 18px;
}

.stats-card,
.stats-panel {
    border: 1px solid var(--line);
    border-radius: 10px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent),
        #101010;
}

.stats-card {
    padding: 16px;
}

.stats-card-label,
.stats-card-note {
    margin: 0;
}

.stats-card-label {
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.stats-card-value {
    display: block;
    margin: 10px 0 8px;
    font-size: clamp(28px, 5vw, 42px);
    line-height: 1;
}

.stats-growth {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    padding: 6px 10px;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.stats-growth strong,
.stats-growth span {
    line-height: 1.1;
}

.stats-growth span {
    color: var(--muted);
    font-weight: 700;
}

.stats-growth.is-up {
    border-color: rgba(112, 255, 0, 0.4);
    background: rgba(112, 255, 0, 0.08);
    color: #70ff00;
}

.stats-growth.is-down {
    border-color: rgba(182, 5, 5, 0.45);
    background: rgba(182, 5, 5, 0.1);
    color: #ff8d8d;
}

.stats-growth.is-flat {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.04);
    color: var(--white);
}

.stats-card-note {
    color: var(--soft);
    font-size: 13px;
}

.stats-split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 18px;
}

.stats-panel {
    padding: 16px;
}

.mini-chart {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(28px, 1fr));
    gap: 10px;
    align-items: end;
    min-height: 220px;
}

.mini-chart-day {
    display: grid;
    gap: 10px;
    align-items: end;
}

.mini-chart-bars {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4px;
    align-items: end;
    min-height: 190px;
    padding: 8px 6px 0;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #0d0d0d;
}

.mini-bar {
    display: block;
    width: 100%;
    min-height: 8px;
    border-radius: 999px 999px 4px 4px;
}

.mini-bar.is-home {
    background: #ffffff;
}

.mini-bar.is-portfolio {
    background: #fcca28;
}

.mini-bar.is-cta {
    background: #70ff00;
}

.mini-chart-label {
    margin: 0;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    text-align: center;
}

.mini-chart-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 14px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.mini-chart-legend span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.mini-legend-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 999px;
}

.mini-legend-dot.is-home {
    background: #ffffff;
}

.mini-legend-dot.is-portfolio {
    background: #fcca28;
}

.mini-legend-dot.is-cta {
    background: #70ff00;
}

.rank-chart {
    display: grid;
    gap: 12px;
}

.rank-row {
    display: grid;
    grid-template-columns: minmax(0, 220px) minmax(0, 1fr) 44px;
    gap: 12px;
    align-items: center;
}

.rank-copy {
    display: grid;
    gap: 4px;
}

.rank-copy strong,
.rank-copy span,
.rank-value {
    line-height: 1.2;
}

.rank-copy strong {
    font-size: 13px;
    text-transform: capitalize;
}

.rank-copy span {
    color: var(--muted);
    font-size: 12px;
}

.rank-bar-track {
    overflow: hidden;
    height: 12px;
    border-radius: 999px;
    background: #111;
    border: 1px solid var(--line);
}

.rank-bar-fill {
    display: block;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, #fcca28 0%, #70ff00 100%);
}

.rank-value {
    text-align: right;
    font-size: 13px;
}

.stats-table-wrap {
    overflow-x: auto;
}

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

.stats-table th,
.stats-table td {
    padding: 12px 10px;
    border-top: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
    font-size: 13px;
}

.stats-table thead th {
    border-top: 0;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.stats-table tbody tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

.media-preview {
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid var(--line);
    background: #050505;
}

.media-preview.is-logo {
    width: 80px;
    height: 80px;
    font-weight: 900;
}

.brand-panel-side .media-preview.is-logo {
    width: 120px;
    height: 120px;
}

.media-preview img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.gallery-admin {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
    margin: 16px 0;
}

.gallery-admin article {
    display: grid;
    gap: 8px;
}

.gallery-admin img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border: 1px solid var(--line);
    background: #050505;
}

@media (max-width: 720px) {
    body {
        padding-bottom: 78px;
    }

    .site-header {
        position: static;
    }

    .intro {
        min-height: 38vh;
        padding-top: 48px;
    }

    .mobile-quick-nav {
        position: fixed;
        right: 12px;
        bottom: 12px;
        left: 12px;
        z-index: 30;
        display: grid;
        grid-template-columns: repeat(6, minmax(0, 1fr));
        gap: 8px;
        padding: 10px;
        border: 1px solid rgba(255, 255, 255, 0.12);
        background: rgba(10, 10, 10, 0.92);
        backdrop-filter: blur(12px);
    }

    .mobile-quick-nav a {
        display: inline-flex;
        min-height: 40px;
        align-items: center;
        justify-content: center;
        border: 1px solid #2c2c2c;
        color: var(--muted);
        font-size: 10px;
        font-weight: 800;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        background: #111;
    }

    .mobile-quick-nav img {
        width: 22px;
        height: 22px;
        object-fit: contain;
        opacity: 0.82;
    }

    .mobile-quick-nav a.is-active {
        border-color: var(--white);
        color: var(--white);
        background: #1b1b1b;
    }

    .mobile-quick-nav a.is-active img {
        opacity: 1;
    }

    .section-shell {
        padding-block: 54px;
    }

    .admin-topbar {
        align-items: flex-start;
        flex-direction: column;
    }

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

    .stats-head,
    .stats-panel-head {
        flex-direction: column;
    }

    .stats-controls {
        width: 100%;
        align-items: stretch;
        justify-content: stretch;
    }

    .stats-range-switch {
        gap: 8px;
    }

    .stats-card-grid,
    .stats-split {
        grid-template-columns: 1fr;
    }

    .mini-chart {
        grid-template-columns: repeat(auto-fit, minmax(22px, 1fr));
        gap: 8px;
        min-height: 180px;
    }

    .mini-chart-bars {
        min-height: 150px;
    }

    .rank-row {
        grid-template-columns: 1fr;
    }

    .rank-value {
        text-align: left;
    }

    .brand-panel-head {
        flex-direction: column;
    }

    .brand-panel-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-teaser-head {
        align-items: flex-start;
        flex-direction: column;
    }

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

    .portfolio-admin-item {
        grid-template-columns: 1fr;
    }

    .portfolio-card-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .portfolio-modal {
        padding: 12px;
    }

    .portfolio-modal-dialog {
        max-height: calc(100vh - 24px);
        padding: 16px;
    }

    .portfolio-modal-copy {
        padding-right: 36px;
    }
}

@media (min-width: 760px) {
    .landing-page .hero-shell {
        padding: 24px 28px 40px;
    }

    .landing-page .hero-topbar {
        align-items: flex-start;
    }

    .landing-page .brand-band {
        padding: 36px 0;
    }

    .landing-page .brand-band__inner {
        grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
        align-items: center;
        gap: 40px;
        padding: 0 28px;
    }

    .landing-page .brand-band__logo img {
        height: 48px;
        max-width: 196px;
    }

    .landing-page .brand-band.media-left .brand-band__media {
        order: 1;
    }

    .landing-page .brand-band.media-left .brand-band__copy {
        order: 2;
    }

    .landing-page .brand-band.media-right .brand-band__media {
        order: 2;
    }

    .landing-page .brand-band.media-right .brand-band__copy {
        order: 1;
    }
}

@media (min-width: 980px) {
    .landing-page .hero-block,
    .landing-page .hero-shell {
        min-height: min(84svh, 900px);
    }

    .landing-page .hero-topbar {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
    }

    .landing-page .hero-brand-rail {
        display: flex;
        justify-content: flex-end;
        flex-wrap: wrap;
        overflow: visible;
        max-width: 620px;
    }

    .landing-page .mobile-quick-nav {
        display: none;
    }

    .landing-page .brand-band {
        padding: 44px 0;
    }

    .landing-page .brand-band__inner {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 64px;
    }

    .landing-page .brand-band--thephotoworks .brand-band__copy h2,
    .landing-page .brand-band--photohomestudio .brand-band__copy h2 {
        font-size: clamp(28px, 3.2vw, 42px);
        line-height: 1;
        white-space: nowrap;
    }

    .landing-page .brand-band--bliss-by-puy .brand-band__copy h2,
    .landing-page .brand-band--jengkar-media .brand-band__copy h2,
    .landing-page .brand-band--jengkar-visual .brand-band__copy h2,
    .landing-page .brand-band--waju-attire .brand-band__copy h2 {
        font-size: clamp(34px, 3.9vw, 50px);
        line-height: 1;
        overflow-wrap: normal;
    }

    .landing-page .brand-band__logo img {
        height: 54px;
        max-width: 220px;
    }
}
