:root {
  --font-vietnam: "Be Vietnam Pro", Arial, sans-serif;
  --font-manrope: "Manrope", Arial, sans-serif;
  --ink: #080a17;
  --paper: #f2f0ea;
  --muted: #777983;
  --line: rgba(8, 10, 23, 0.14);
  --acid: #b7f34a;
  --violet: #28a66d;
}

.admin-login-page { min-height: 100vh; display: grid; place-items: center; padding: 24px; background: #080a17; }
.login-card { width: min(520px, 100%); padding: clamp(28px, 5vw, 56px); border: 1px solid rgba(255,255,255,.14); background: #101c17; color: white; }
.login-card h1 { margin: 28px 0 10px; font: 500 clamp(34px, 6vw, 54px)/1 var(--font-manrope); letter-spacing: -.045em; }
.login-card > p { margin: 0 0 28px; color: rgba(255,255,255,.6); font-size: 13px; line-height: 1.7; }
.login-form { display: grid; gap: 18px; }
.login-form label, .upload-form label { display: grid; gap: 8px; color: rgba(255,255,255,.75); font-size: 11px; }
.login-form input, .upload-form input, .upload-form select { width: 100%; min-height: 48px; padding: 12px 14px; border: 1px solid rgba(255,255,255,.2); border-radius: 0; outline: none; background: rgba(255,255,255,.06); color: white; }
.login-form input:focus, .upload-form input:focus, .upload-form select:focus { border-color: var(--acid); }
.login-form button, .upload-form button, .delete-form button, .admin-action { display: inline-flex; justify-content: center; align-items: center; min-height: 48px; padding: 12px 18px; border: 0; background: var(--acid); color: var(--ink); cursor: pointer; font-weight: 700; }
.form-alert { margin-bottom: 18px; padding: 12px 14px; border-left: 3px solid #ff765f; background: rgba(255,118,95,.12); color: #ffd9d2; font-size: 12px; line-height: 1.6; }
.form-alert.success { border-color: var(--acid); background: rgba(183,243,74,.12); color: #e8ffc1; }
.link-button { display: inline-block; margin-top: 22px; border-bottom: 1px solid currentColor; color: rgba(255,255,255,.64); font-size: 11px; }
.admin-page { min-height: 100vh; padding: clamp(24px, 5vw, 72px); background: #080a17; color: white; }
.admin-topbar { display: flex; justify-content: space-between; align-items: center; gap: 24px; padding-bottom: 30px; border-bottom: 1px solid rgba(255,255,255,.15); }
.admin-topbar h1 { margin: 20px 0 6px; font: 500 clamp(36px, 5vw, 64px)/1 var(--font-manrope); }
.admin-topbar p { margin: 0; color: rgba(255,255,255,.55); font-size: 12px; }
.admin-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.admin-action.secondary { border: 1px solid rgba(255,255,255,.28); background: transparent; color: white; }
.admin-layout { display: grid; grid-template-columns: minmax(280px, .7fr) 1.3fr; gap: 32px; padding-top: 34px; }
.admin-panel { padding: 28px; border: 1px solid rgba(255,255,255,.14); background: #101c17; }
.admin-panel h2 { margin: 0 0 24px; font: 500 26px var(--font-manrope); }
.upload-form { display: grid; gap: 17px; }
.upload-form option { color: #080a17; }
.admin-gallery { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.admin-image { overflow: hidden; border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.04); }
.admin-image img { display: block; width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.admin-image-copy { padding: 16px; }
.admin-image-copy small { color: var(--acid); text-transform: uppercase; letter-spacing: .12em; }
.admin-image-copy h3 { margin: 8px 0 14px; font: 500 17px var(--font-manrope); }
.delete-form button { min-height: 38px; padding: 8px 12px; background: transparent; border: 1px solid rgba(255,118,95,.65); color: #ffc1b8; font-size: 10px; }
.admin-empty { padding: 38px; border: 1px dashed rgba(255,255,255,.2); color: rgba(255,255,255,.55); text-align: center; line-height: 1.8; }

@media (max-width: 820px) {
  .admin-layout { grid-template-columns: 1fr; }
  .admin-topbar { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 520px) {
  .admin-gallery { grid-template-columns: 1fr; }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--font-vietnam), Arial, sans-serif; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
::selection { background: var(--acid); color: var(--ink); }

.site-header {
  height: 88px; padding: 0 clamp(24px, 4vw, 72px); display: flex; align-items: center; justify-content: space-between;
  position: absolute; z-index: 20; top: 0; left: 0; right: 0; color: white; border-bottom: 1px solid rgba(255,255,255,.15);
}
.brand { display: inline-flex; align-items: center; gap: 12px; font: 800 21px/1 var(--font-manrope); letter-spacing: .08em; }
.brand-mark { display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid currentColor; border-radius: 50%; font-size: 16px; }
.brand > span:nth-child(2) b { font-weight: 400; }
.bamboo-mark { position: relative; display: flex; align-items: flex-end; justify-content: center; gap: 2px; padding-bottom: 8px; }
.bamboo-mark i { display: block; width: 3px; height: 17px; border-radius: 2px; background: currentColor; box-shadow: 0 -6px 0 -1px currentColor; transform-origin: bottom; }
.bamboo-mark i:first-child { height: 11px; transform: rotate(-12deg); }
.bamboo-mark i:last-child { height: 14px; transform: rotate(12deg); }
.bamboo-mark::before, .bamboo-mark::after { content: ""; position: absolute; width: 9px; height: 4px; border-radius: 100% 0; background: var(--acid); top: 9px; }
.bamboo-mark::before { left: 7px; transform: rotate(25deg); }
.bamboo-mark::after { right: 6px; transform: rotate(150deg); }
.brand-dot { color: var(--acid); }
.main-nav { display: flex; align-items: center; gap: clamp(22px, 2.5vw, 46px); font-size: 13px; }
.main-nav > a:not(.nav-cta) { opacity: .78; transition: opacity .2s; }
.main-nav > a:not(.nav-cta):hover { opacity: 1; }
.nav-cta { display: inline-flex; gap: 28px; align-items: center; background: var(--acid); color: var(--ink); padding: 14px 18px; font-weight: 600; }
.menu-button { display: none; border: 0; background: transparent; padding: 10px; }

.hero { min-height: 100svh; position: relative; overflow: hidden; color: white; background: #080a17; display: flex; align-items: flex-end; padding: 150px clamp(24px, 4vw, 72px) 70px; }
.hero-aurora { position: absolute; width: 1000px; height: 1000px; left: 44%; top: -42%; border-radius: 50%; filter: blur(18px); background: radial-gradient(circle at 50% 54%, rgba(232,255,178,.96) 0 3%, rgba(102,214,125,.78) 12%, rgba(28,135,100,.68) 27%, rgba(16,92,83,.4) 42%, transparent 63%); opacity: .95; animation: breathe 8s ease-in-out infinite alternate; }
.hero-aurora::after { content: ""; position: absolute; inset: 18%; border-radius: 50%; background: var(--ink); filter: blur(10px); }
.hero-grid { position: absolute; inset: 0; opacity: .22; background-image: linear-gradient(rgba(255,255,255,.1) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.1) 1px, transparent 1px); background-size: 90px 90px; mask-image: linear-gradient(to bottom, transparent, black 20%, transparent 90%); }
.hero-copy { position: relative; z-index: 2; width: min(1050px, 74vw); }
.eyebrow { display: flex; align-items: center; gap: 12px; text-transform: uppercase; letter-spacing: .15em; font-size: 11px; font-weight: 600; }
.eyebrow > span { width: 34px; height: 1px; background: currentColor; }
.hero h1 { font: 500 clamp(64px, 8.2vw, 148px)/.9 var(--font-manrope); letter-spacing: -.07em; margin: 30px 0 36px; }
.hero h1 em, .contact h2 em { font-weight: 300; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.7); }
.hero-bottom { display: flex; align-items: flex-end; gap: 50px; }
.hero-bottom > p { width: min(470px, 70%); margin: 0; font-size: 15px; line-height: 1.8; color: rgba(255,255,255,.68); }
.round-link { width: 58px; height: 58px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; transition: .25s; }
.round-link:hover { background: white; color: var(--ink); transform: translateY(4px); }
.orbit { position: absolute; z-index: 1; right: -7vw; bottom: -11vw; width: min(48vw, 700px); aspect-ratio: 1; display: grid; place-items: center; }
.orbit-ring { position: absolute; border: 1px solid rgba(255,255,255,.26); border-radius: 50%; }
.ring-one { inset: 2%; animation: spin 30s linear infinite; }
.ring-one::before, .ring-one::after, .ring-two::after { content: ""; position: absolute; width: 9px; height: 9px; background: var(--acid); border-radius: 50%; box-shadow: 0 0 18px var(--acid); }
.ring-one::before { top: 10%; left: 20%; }.ring-one::after { right: 3%; top: 43%; background: #fb83d8; }
.ring-two { inset: 18%; border-style: dashed; opacity: .55; animation: spin 22s linear infinite reverse; }
.ring-two::after { bottom: 8%; left: 17%; background: #72d9ff; }
.orbit-core { width: 42%; aspect-ratio: 1; border-radius: 50%; border: 1px solid rgba(255,255,255,.4); display: flex; flex-direction: column; align-items: center; justify-content: center; backdrop-filter: blur(8px); }
.orbit-core span { font-size: 9px; letter-spacing: .2em; opacity: .65; }.orbit-core b { font: 300 58px var(--font-manrope); }
.bamboo-emblem { height: 62px; display: flex; align-items: flex-end; gap: 5px; padding: 8px 0; }
.bamboo-emblem i { display: block; width: 7px; height: 44px; border-radius: 4px; background: var(--acid); box-shadow: inset 0 -12px 0 rgba(8,10,23,.25), inset 0 -14px 0 var(--acid); }
.bamboo-emblem i:first-child { height: 32px; transform: rotate(-8deg); }
.bamboo-emblem i:last-child { height: 37px; transform: rotate(8deg); }
.floating-note { position: absolute; padding: 12px 15px; border-left: 1px solid rgba(255,255,255,.4); backdrop-filter: blur(12px); }
.floating-note small { display: block; font-size: 8px; letter-spacing: .12em; opacity: .55; }.floating-note strong { font: 500 28px var(--font-manrope); }
.note-one { left: 2%; top: 22%; }.note-two { right: 8%; bottom: 38%; }
.hero-index { position: absolute; right: clamp(24px, 4vw, 72px); top: 49%; display: flex; flex-direction: column; align-items: center; gap: 12px; font-size: 9px; opacity: .6; }
.hero-index i { height: 62px; width: 1px; background: rgba(255,255,255,.5); }

.section-shell { padding: 120px clamp(24px, 6.5vw, 120px); }
.section-kicker { padding-bottom: 22px; border-bottom: 1px solid var(--line); font: 600 10px var(--font-manrope); letter-spacing: .18em; }
.about-heading { display: grid; grid-template-columns: 1fr 2fr; padding: 70px 0 85px; align-items: start; }
.about-heading > p { max-width: 270px; color: var(--muted); font-size: 13px; line-height: 1.7; }
.about-heading h2, .section-intro h2 { margin: 0; font: 500 clamp(48px, 6.1vw, 100px)/.98 var(--font-manrope); letter-spacing: -.055em; }
.about-heading h2 span, .section-intro h2 span { color: var(--violet); font-weight: 300; }
.about-grid { display: grid; grid-template-columns: 1fr 2fr; gap: clamp(50px, 9vw, 150px); align-items: end; }
.manifesto-card { aspect-ratio: 1; max-width: 430px; padding: 38px; background: var(--ink); color: white; display: flex; flex-direction: column; justify-content: space-between; position: relative; overflow: hidden; }
.manifesto-card::before { content: ""; position: absolute; inset: -20%; background: radial-gradient(circle at 75% 25%, rgba(121,92,255,.8), transparent 35%); }
.manifesto-symbol { position: relative; font-size: 48px; color: var(--acid); }.manifesto-card p { position: relative; font: 400 clamp(20px, 2vw, 29px)/1.45 var(--font-manrope); margin: 0; }
.bamboo-large { height: 115px; display: flex; align-items: flex-end; gap: 7px; }
.bamboo-large i { width: 10px; height: 88px; border-radius: 6px; background: var(--acid); box-shadow: inset 0 -23px 0 #0a0c1b, inset 0 -26px 0 var(--acid), inset 0 -52px 0 #0a0c1b, inset 0 -55px 0 var(--acid); }
.bamboo-large i:nth-child(1) { height: 55px; transform: rotate(-12deg); }
.bamboo-large i:nth-child(2) { height: 78px; }
.bamboo-large i:nth-child(3) { height: 105px; }
.bamboo-large i:nth-child(4) { height: 68px; transform: rotate(10deg); }
.about-content { padding-bottom: 10px; max-width: 720px; }
.about-content p { color: var(--muted); font-size: 15px; line-height: 1.9; max-width: 590px; }
.about-content .lead { color: var(--ink); font-size: clamp(20px, 2vw, 28px); line-height: 1.55; }
.text-link { display: inline-flex; align-items: center; gap: 40px; border-bottom: 1px solid currentColor; padding: 15px 0 10px; margin-top: 16px; font-size: 12px; font-weight: 600; }
.text-link span { font-size: 17px; }
.stats-row { margin-top: 100px; padding-top: 35px; border-top: 1px solid var(--line); display: grid; grid-template-columns: repeat(4, 1fr); }
.stats-row div { padding: 0 25px; border-left: 1px solid var(--line); }.stats-row div:first-child { padding-left: 0; border-left: 0; }
.stats-row strong { display: block; font: 400 clamp(38px, 4.2vw, 68px) var(--font-manrope); letter-spacing: -.06em; }.stats-row span { color: var(--muted); font-size: 11px; }

.services { color: white; background: #0a0c1b; position: relative; overflow: hidden; }
.light { border-color: rgba(255,255,255,.17); color: rgba(255,255,255,.7); }
.section-intro { display: flex; justify-content: space-between; align-items: end; padding: 65px 0 80px; }
.section-intro > p { width: min(380px, 35%); margin: 0; color: var(--muted); line-height: 1.8; font-size: 13px; }
.light-intro h2 span { color: var(--acid); }.light-intro > p { color: rgba(255,255,255,.5); }
.service-layout { display: grid; grid-template-columns: .9fr 1.35fr; min-height: 510px; border: 1px solid rgba(255,255,255,.14); }
.service-tabs { display: flex; flex-direction: column; border-right: 1px solid rgba(255,255,255,.14); }
.service-tabs button { flex: 1; display: grid; grid-template-columns: 50px 1fr auto; align-items: center; gap: 10px; text-align: left; color: rgba(255,255,255,.55); background: transparent; border: 0; border-bottom: 1px solid rgba(255,255,255,.14); padding: 20px 28px; cursor: pointer; transition: .25s; }
.service-tabs button:last-child { border-bottom: 0; }.service-tabs button span { font-size: 9px; }.service-tabs button i { font-style: normal; opacity: 0; }
.service-tabs button.active { background: var(--acid); color: var(--ink); }.service-tabs button.active i { opacity: 1; }
.service-panel { position: relative; overflow: hidden; padding: clamp(38px, 5vw, 80px); display: flex; flex-direction: column; justify-content: flex-end; }
.service-glow { position: absolute; width: 500px; height: 500px; top: -55%; right: -12%; border-radius: 50%; background: radial-gradient(circle, rgba(40,166,109,.95), rgba(183,243,74,.22) 35%, transparent 66%); filter: blur(5px); }
.service-number { position: absolute; top: 34px; left: 40px; font: 400 12px var(--font-manrope); color: var(--acid); }
.service-panel h3 { position: relative; margin: 0 0 22px; max-width: 640px; font: 500 clamp(30px, 4vw, 58px)/1.08 var(--font-manrope); letter-spacing: -.045em; }
.service-panel > p { position: relative; color: rgba(255,255,255,.6); max-width: 600px; line-height: 1.8; font-size: 13px; }
.tag-list { position: relative; display: flex; gap: 8px; flex-wrap: wrap; margin-top: 18px; }.tag-list span { border: 1px solid rgba(255,255,255,.25); border-radius: 30px; padding: 8px 13px; font-size: 9px; text-transform: uppercase; letter-spacing: .07em; }

.projects .section-intro { align-items: end; }.projects .section-intro .text-link { margin: 0; }
.project-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 24px; }.project-card:nth-child(3) { grid-column: 2; }
.project-card { position: relative; }.project-art { height: clamp(310px, 38vw, 600px); display: grid; place-items: center; position: relative; overflow: hidden; }
.project-violet .project-art { background: linear-gradient(145deg, #10281d, #21895c 60%, #b6e76a); }.project-orange .project-art { background: linear-gradient(145deg, #d76536, #efb75b 60%, #496a37); }.project-blue .project-art { background: linear-gradient(145deg, #102c3b, #2a8f7b 62%, #a9dfb4); }
.art-word { font: 800 clamp(130px, 20vw, 320px)/1 var(--font-manrope); color: rgba(255,255,255,.92); text-shadow: 16px 20px 0 rgba(0,0,0,.12); }
.art-orbit { position: absolute; width: 70%; aspect-ratio: 1; border: 1px solid rgba(255,255,255,.7); border-radius: 50%; transform: rotate(-25deg) scaleY(.3); box-shadow: 0 0 30px rgba(255,255,255,.2); }
.project-meta { padding: 18px 2px 34px; border-bottom: 1px solid var(--line); }.project-meta small { font-size: 8px; letter-spacing: .13em; color: var(--muted); }.project-meta h3 { margin: 12px 0 5px; font: 500 24px var(--font-manrope); }.project-meta p { margin: 0; color: var(--muted); font-size: 11px; }

.gallery { background: #101c17; color: white; }
.gallery .section-kicker { border-color: rgba(255,255,255,.16); color: rgba(255,255,255,.62); }
.gallery .section-intro h2 span { color: var(--acid); }
.gallery .section-intro p { color: rgba(255,255,255,.56); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gallery-grid figure { min-height: 330px; margin: 0; position: relative; overflow: hidden; background: #1a2b23; }
.gallery-grid .gallery-featured { grid-column: span 2; min-height: 560px; }
.gallery-grid img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.gallery-grid figure:hover img { transform: scale(1.035); }
.gallery-grid figure::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(3,8,6,.9)); }
.gallery-grid figcaption { position: absolute; z-index: 1; left: 24px; right: 24px; bottom: 22px; }
.gallery-grid figcaption span { display: block; margin-bottom: 8px; color: var(--acid); font-size: 8px; letter-spacing: .14em; text-transform: uppercase; }
.gallery-grid figcaption strong { font: 500 20px var(--font-manrope); }
.gallery-placeholder { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 14px; }
.gallery-placeholder div { min-height: 420px; padding: 28px; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; position: relative; background: linear-gradient(145deg, #1b372a, #28734f); }
.gallery-placeholder div:nth-child(2) { background: linear-gradient(145deg, #142c25, #548c52); }
.gallery-placeholder div:nth-child(3) { background: linear-gradient(145deg, #233326, #748e45); }
.gallery-placeholder div::before { content: ""; position: absolute; width: 280px; height: 520px; right: -120px; bottom: -190px; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; transform: rotate(-26deg); }
.gallery-placeholder span { font-size: 9px; letter-spacing: .14em; color: var(--acid); }
.gallery-placeholder strong { position: relative; max-width: 230px; font: 500 clamp(24px, 2.5vw, 38px)/1.15 var(--font-manrope); }
.gallery-admin-link { display: inline-flex; gap: 35px; padding: 14px 0 8px; margin-top: 35px; border-bottom: 1px solid rgba(255,255,255,.45); font-size: 11px; color: rgba(255,255,255,.72); }

.insights { text-align: center; background: #e8e5df; }.insights .section-kicker { text-align: left; }.quote-mark { color: var(--violet); font: 300 90px/1 Georgia, serif; margin: 70px 0 10px; }.insights blockquote { max-width: 1000px; margin: 0 auto; font: 400 clamp(28px, 4.1vw, 62px)/1.3 var(--font-manrope); letter-spacing: -.04em; }
.quote-author { margin: 42px auto 80px; display: inline-flex; align-items: center; gap: 14px; text-align: left; }.avatar { width: 44px; height: 44px; display: grid; place-items: center; color: white; background: var(--violet); border-radius: 50%; font-size: 10px; }.quote-author strong, .quote-author span { display: block; }.quote-author strong { font-size: 11px; }.quote-author span { color: var(--muted); font-size: 9px; margin-top: 5px; }
.client-strip { border-top: 1px solid var(--line); padding-top: 45px; display: flex; justify-content: space-between; align-items: center; gap: 30px; flex-wrap: wrap; color: #77777c; }.client-strip span { font: 600 clamp(17px, 2vw, 28px) var(--font-manrope); }

.contact { min-height: 720px; padding: 120px 24px; background: #080a17; color: white; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; position: relative; overflow: hidden; }
.contact-glow { position: absolute; width: 850px; height: 850px; top: -65%; left: calc(50% - 425px); border-radius: 50%; background: radial-gradient(circle, rgba(40,166,109,.9), rgba(183,243,74,.26) 35%, transparent 65%); }
.contact > *:not(.contact-glow) { position: relative; }.contact h2 { font: 500 clamp(58px, 8.5vw, 130px)/.92 var(--font-manrope); letter-spacing: -.065em; margin: 38px 0 52px; }
.contact-button { display: flex; align-items: center; gap: 65px; background: var(--acid); color: var(--ink); padding: 18px 22px; font-size: 12px; font-weight: 600; transition: .25s; }.contact-button:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(182,255,95,.2); }

.footer { padding: 75px clamp(24px, 6.5vw, 120px) 35px; background: #080a17; color: white; border-top: 1px solid rgba(255,255,255,.15); display: grid; grid-template-columns: 1.6fr 1fr 1.3fr 1fr; gap: 50px; }
.footer > div > span { display: block; font-size: 8px; letter-spacing: .16em; color: rgba(255,255,255,.42); margin-bottom: 22px; }.footer > div a, .footer > div p { display: block; margin: 0 0 10px; font-size: 11px; line-height: 1.7; color: rgba(255,255,255,.76); }.footer-bottom { grid-column: 1/-1; margin-top: 50px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.15); display: flex; justify-content: space-between; color: rgba(255,255,255,.4); }.footer-bottom span, .footer-bottom a { font-size: 8px; letter-spacing: .12em; }
.footer-legal-links { display: flex !important; gap: 22px; flex-wrap: wrap; margin: 0 !important; }.footer-legal-links a { margin: 0 !important; }

.legal-page { min-height: 100svh; background: var(--paper); color: var(--ink); }
.legal-header { position: static; color: var(--ink); border-color: var(--line); }
.legal-header .menu-button { display: none; }
.legal-back { font-size: 11px; font-weight: 600; letter-spacing: .08em; }
.legal-main { width: min(920px, calc(100% - 44px)); margin: 0 auto; padding: clamp(72px, 10vw, 130px) 0; }
.legal-kicker { color: #198557; font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.legal-main h1 { margin: 22px 0 28px; font: 500 clamp(46px, 7vw, 86px)/.98 var(--font-manrope); letter-spacing: -.055em; }
.legal-intro { max-width: 720px; color: var(--muted); font-size: 15px; line-height: 1.8; }
.legal-section { margin-top: 54px; padding-top: 32px; border-top: 1px solid var(--line); }
.legal-section h2 { margin: 0 0 16px; font: 600 23px/1.3 var(--font-manrope); }
.legal-section p, .legal-section li { color: #4e5058; font-size: 14px; line-height: 1.9; }
.legal-section ul { padding-left: 20px; }
.legal-business { margin-top: 64px; padding: 28px; background: #101c17; color: white; }
.legal-business strong { display: block; margin-bottom: 12px; color: var(--acid); }
.legal-business p { margin: 5px 0; color: rgba(255,255,255,.72); font-size: 12px; line-height: 1.7; }

.admin-shell { min-height: 100svh; padding: clamp(28px, 5vw, 80px); background: #f2f0ea; color: var(--ink); }
.admin-header { display: flex; justify-content: space-between; gap: 50px; padding-bottom: 38px; border-bottom: 1px solid var(--line); }
.admin-kicker { color: #198557; font: 700 9px var(--font-manrope); letter-spacing: .16em; }
.admin-header h1, .admin-denied h1 { margin: 16px 0 12px; font: 500 clamp(40px, 5vw, 72px)/1 var(--font-manrope); letter-spacing: -.05em; }
.admin-header p { color: var(--muted); margin: 0; }
.admin-account { display: flex; flex-direction: column; align-items: flex-end; gap: 9px; font-size: 11px; }
.admin-account span { color: var(--muted); }.admin-account a { border-bottom: 1px solid var(--line); }
.admin-layout { display: grid; grid-template-columns: minmax(280px, 380px) 1fr; gap: clamp(30px, 5vw, 80px); padding-top: 50px; align-items: start; }
.upload-card { position: sticky; top: 30px; padding: 28px; background: #0d1713; color: white; display: flex; flex-direction: column; gap: 18px; }
.upload-card h2, .admin-library h2 { margin: 0; font: 500 24px var(--font-manrope); }
.upload-card label { display: flex; flex-direction: column; gap: 8px; font-size: 10px; color: rgba(255,255,255,.65); }
.upload-card input, .upload-card select { width: 100%; border: 1px solid rgba(255,255,255,.18); border-radius: 0; background: rgba(255,255,255,.07); color: white; padding: 13px; font: 12px var(--font-vietnam); }
.upload-card select option { color: var(--ink); }
.file-drop { min-height: 140px; padding: 22px; border: 1px dashed rgba(183,243,74,.55) !important; justify-content: center; align-items: center; text-align: center; cursor: pointer; }
.file-drop span { color: white; font-size: 12px; }.file-drop small { color: rgba(255,255,255,.4); }.file-drop input { padding: 8px; font-size: 10px; }
.upload-card > button { border: 0; background: var(--acid); color: var(--ink); padding: 15px 20px; font-weight: 700; cursor: pointer; }.upload-card > button:disabled { opacity: .55; cursor: wait; }
.admin-message { margin: 0; color: var(--acid); font-size: 11px; }
.admin-library-title { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }.admin-library-title span { color: var(--muted); font-size: 11px; }
.admin-image-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.admin-image-grid article { background: white; border: 1px solid var(--line); }.admin-image-grid img { display: block; width: 100%; height: 240px; object-fit: cover; }.admin-image-grid article > div { padding: 18px; }.admin-image-grid span { color: #198557; font-size: 8px; letter-spacing: .12em; text-transform: uppercase; }.admin-image-grid h3 { margin: 8px 0 18px; font: 500 16px var(--font-manrope); }.admin-image-grid button { padding: 0; border: 0; border-bottom: 1px solid #c44; background: none; color: #a22; font-size: 10px; cursor: pointer; }
.empty-library { min-height: 330px; display: grid; place-content: center; text-align: center; border: 1px dashed var(--line); }.empty-library p { color: var(--muted); font-size: 12px; }
.admin-denied { display: grid; align-content: center; max-width: 800px; }.admin-denied > p:not(.admin-kicker) { color: var(--muted); }.admin-denied a { width: fit-content; margin-top: 15px; border-bottom: 1px solid currentColor; }

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes breathe { to { transform: scale(1.08) translateY(3%); opacity: .76; } }

@media (max-width: 900px) {
  .site-header { height: 76px; }.menu-button { display: flex; flex-direction: column; gap: 6px; z-index: 3; }.menu-button span { width: 25px; height: 1px; background: white; }
  .main-nav { position: fixed; inset: 0; padding: 120px 30px 40px; background: #080a17; flex-direction: column; align-items: flex-start; transform: translateY(-105%); transition: transform .35s; font-size: 22px; }.main-nav.is-open { transform: translateY(0); }.nav-cta { margin-top: auto; font-size: 14px; }
  .hero { min-height: 850px; padding-bottom: 55px; align-items: flex-end; }.hero-copy { width: 100%; }.hero h1 { font-size: clamp(62px, 14.7vw, 110px); }.hero-bottom { align-items: center; }.orbit { width: 620px; right: -300px; bottom: 100px; opacity: .65; }.floating-note, .hero-index { display: none; }.hero-aurora { left: 15%; top: -34%; width: 800px; height: 800px; }
  .about-heading, .about-grid { grid-template-columns: 1fr; }.about-heading { gap: 30px; padding: 55px 0 65px; }.about-heading > p { max-width: 100%; }.about-grid { gap: 48px; }.manifesto-card { max-width: 100%; aspect-ratio: 1.3; }.stats-row { grid-template-columns: 1fr 1fr; gap: 30px 0; }.stats-row div:nth-child(3) { border-left: 0; padding-left: 0; }
  .section-intro { align-items: start; flex-direction: column; gap: 30px; }.section-intro > p { width: 100%; }.service-layout { grid-template-columns: 1fr; }.service-tabs { border-right: 0; flex-direction: row; overflow-x: auto; }.service-tabs button { min-width: 160px; display: flex; gap: 12px; border-right: 1px solid rgba(255,255,255,.14); }.service-panel { min-height: 450px; }
  .project-grid { grid-template-columns: 1fr; }.project-card:nth-child(3) { grid-column: auto; }.project-art { height: 500px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }.gallery-grid .gallery-featured { grid-column: span 2; }.gallery-placeholder { grid-template-columns: 1fr 1fr; }.gallery-placeholder div:first-child { grid-column: span 2; }
  .admin-layout { grid-template-columns: 1fr; }.upload-card { position: static; }.admin-header { flex-direction: column; }.admin-account { align-items: flex-start; }
  .footer { grid-template-columns: 1fr 1fr; }.footer-brand, .footer-bottom { grid-column: 1/-1; }
}

@media (max-width: 560px) {
  .section-shell { padding: 85px 22px; }.hero { min-height: 760px; padding: 120px 22px 38px; }.hero h1 { margin-top: 24px; font-size: 17.5vw; }.hero-bottom > p { width: calc(100% - 68px); font-size: 12px; }.round-link { width: 50px; height: 50px; flex: 0 0 auto; }.orbit { width: 440px; right: -255px; bottom: 150px; }.hero-aurora { width: 620px; height: 620px; left: -5%; top: -20%; }
  .about-heading h2, .section-intro h2 { font-size: 12.5vw; }.manifesto-card { aspect-ratio: 1; padding: 28px; }.stats-row { margin-top: 70px; }.stats-row div { padding: 0 15px; }.stats-row strong { font-size: 40px; }
  .service-tabs button { min-width: 138px; padding: 17px; }.service-panel { padding: 34px 24px; min-height: 430px; }.service-panel h3 { font-size: 34px; }.service-number { left: 24px; }
  .project-art { height: 360px; }.gallery-grid { grid-template-columns: 1fr; }.gallery-grid .gallery-featured { grid-column: auto; min-height: 400px; }.gallery-grid figure { min-height: 360px; }.gallery-placeholder { grid-template-columns: 1fr; }.gallery-placeholder div:first-child { grid-column: auto; }.gallery-placeholder div { min-height: 280px; }.insights blockquote { font-size: 28px; }.client-strip { justify-content: center; }.contact { min-height: 620px; }.contact h2 { font-size: 17vw; }.footer { grid-template-columns: 1fr; gap: 36px; }.footer-brand, .footer-bottom { grid-column: auto; }.footer-bottom { align-items: flex-start; flex-direction: column; gap: 12px; }.admin-image-grid { grid-template-columns: 1fr; }.admin-shell { padding: 24px 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
