:root {
  --ink: #17201c;
  --ink-soft: #58605b;
  --paper: #f4f5f1;
  --paper-deep: #e7eae2;
  --lime: #d8f452;
  --orange: #f36d2d;
  --line: rgba(23, 32, 28, 0.12);
  --curve: cubic-bezier(0.32, 0.72, 0, 1);
  color: var(--ink);
  font-family: Manrope, "Noto Sans SC", "Microsoft YaHei", sans-serif;
  font-synthesis: none;
  scroll-behavior: smooth;
}

* { box-sizing: border-box; }

body { min-width: 320px; margin: 0; background: var(--paper); color: var(--ink); overflow-x: hidden; }

body:has(dialog[open]) { overflow: hidden; }

button, a { font: inherit; }

button { cursor: pointer; }

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

.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

.skip-link { position: fixed; top: -5rem; left: 1rem; z-index: 30; padding: 0.8rem 1rem; background: var(--ink); color: white; border-radius: 999px; transition: top 300ms var(--curve); }
.skip-link:focus { top: 1rem; }

.site-grain { position: fixed; inset: 0; z-index: 20; pointer-events: none; opacity: 0.045; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E"); }

.container { width: min(100% - 4rem, 1240px); margin-inline: auto; }
.section { position: relative; padding: 8.5rem 0; }

.site-header { position: fixed; top: 1.3rem; left: 50%; z-index: 15; display: flex; align-items: center; justify-content: space-between; width: min(100% - 2.4rem, 1040px); min-height: 4.15rem; padding: 0.42rem 0.52rem 0.42rem 1.2rem; border: 1px solid rgba(23, 32, 28, 0.08); border-radius: 999px; background: rgba(244, 245, 241, 0.82); box-shadow: 0 12px 36px rgba(41, 54, 47, 0.07), inset 0 1px 1px rgba(255, 255, 255, 0.75); backdrop-filter: blur(18px); transform: translateX(-50%); }

.brand { display: inline-flex; gap: 0.7rem; align-items: center; font-size: 0.74rem; font-weight: 760; letter-spacing: 0.08em; text-transform: uppercase; }
.brand__mark { display: inline-flex; gap: 2px; align-items: end; height: 1.25rem; }
.brand__mark i { display: block; width: 3px; background: var(--ink); border-radius: 2px; }
.brand__mark i:nth-child(1) { height: 55%; }.brand__mark i:nth-child(2) { height: 100%; }.brand__mark i:nth-child(3) { height: 72%; }

.desktop-nav { display: flex; gap: 0.3rem; align-items: center; }
.desktop-nav a { padding: 0.62rem 0.88rem; color: var(--ink-soft); border-radius: 999px; font-size: 0.72rem; font-weight: 720; transition: color 500ms var(--curve), background 500ms var(--curve), transform 500ms var(--curve); }
.desktop-nav a:hover, .desktop-nav a:focus-visible { color: var(--ink); background: rgba(23, 32, 28, 0.07); transform: translateY(-1px); outline: none; }

.menu-toggle { display: none; position: relative; width: 3rem; height: 3rem; border: 0; border-radius: 50%; background: var(--ink); }
.menu-toggle i { position: absolute; left: 50%; display: block; width: 1rem; height: 1px; background: white; transform: translateX(-50%); transition: transform 600ms var(--curve); }
.menu-toggle i:first-of-type { top: 1.16rem; }.menu-toggle i:last-of-type { bottom: 1.16rem; }
.menu-toggle[aria-expanded="true"] i:first-of-type { top: 1.48rem; transform: translateX(-50%) rotate(45deg); }.menu-toggle[aria-expanded="true"] i:last-of-type { bottom: 1.48rem; transform: translateX(-50%) rotate(-45deg); }

.mobile-menu { position: fixed; inset: 0; z-index: 14; display: grid; align-content: end; padding: 0 2rem 3rem; color: var(--paper); background: rgba(23, 32, 28, 0.97); opacity: 0; pointer-events: none; transform: translateY(-1.5rem); transition: opacity 550ms var(--curve), transform 550ms var(--curve); }
.mobile-menu.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
.mobile-menu nav { display: grid; margin-bottom: 3.4rem; }
.mobile-menu nav a { display: flex; justify-content: space-between; padding: 0.85rem 0; border-bottom: 1px solid rgba(255, 255, 255, 0.14); font-size: clamp(2.2rem, 11vw, 4rem); font-weight: 700; letter-spacing: -0.07em; transform: translateY(2rem); opacity: 0; transition: transform 600ms var(--curve), opacity 600ms var(--curve); }
.mobile-menu.is-open nav a { opacity: 1; transform: translateY(0); }.mobile-menu.is-open nav a:nth-child(2) { transition-delay: 70ms; }.mobile-menu.is-open nav a:nth-child(3) { transition-delay: 140ms; }
.mobile-menu nav span { align-self: center; color: var(--lime); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em; }
.mobile-menu > p { margin: 0; color: rgba(244, 245, 241, 0.6); font-size: 0.78rem; line-height: 1.7; }

.hero { display: flex; flex-direction: column; min-height: 100dvh; padding-top: 11.5rem; padding-bottom: 2.3rem; overflow: clip; }
.hero__layout { display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(400px, 0.76fr); gap: 3rem; flex: 1; align-items: center; }
.eyebrow { display: flex; gap: 0.55rem; align-items: center; margin: 0; color: var(--ink-soft); font-size: 0.62rem; font-weight: 760; letter-spacing: 0.15em; }
.eyebrow > span { display: block; width: 1.35rem; height: 1px; background: currentColor; }
.eyebrow--light { color: rgba(244, 245, 241, 0.7); }

.hero h1, .section-heading h2, .about h2, .contact h2, .contact-dialog h2 { margin: 1.45rem 0 0; font-size: clamp(4rem, 7.1vw, 7.35rem); font-weight: 720; letter-spacing: -0.045em; line-height: 1.07; }
em { color: var(--orange); font-family: Georgia, "Noto Serif SC", serif; font-weight: 400; letter-spacing: -0.045em; }
.hero__summary { max-width: 32rem; margin: 2rem 0 0; color: var(--ink-soft); font-size: 1rem; line-height: 1.85; }
.hero__actions { display: flex; gap: 1.4rem; align-items: center; margin-top: 2.5rem; }
.button { display: inline-flex; gap: 1rem; align-items: center; min-height: 3.75rem; padding: 0.36rem 0.42rem 0.36rem 1.3rem; border: 0; border-radius: 999px; font-size: 0.76rem; font-weight: 760; transition: transform 650ms var(--curve), background 650ms var(--curve), color 650ms var(--curve); }
.button:hover { transform: translateY(-3px); }.button:active { transform: scale(0.98); }
.button b { display: grid; flex: 0 0 2.9rem; width: 2.9rem; height: 2.9rem; place-items: center; border-radius: 50%; font-size: 1.1rem; font-weight: 400; transition: transform 650ms var(--curve), background 650ms var(--curve); }.button:hover b { transform: translate(2px, -2px) scale(1.04); }
.button--dark { color: white; background: var(--ink); }.button--dark b { background: var(--lime); color: var(--ink); }
.button--light { color: var(--ink); background: var(--paper); }.button--light b { background: var(--lime); }.button--light:hover { background: white; }
.text-link { padding: 0.75rem 0; font-size: 0.76rem; font-weight: 760; }.text-link span { display: inline-block; margin-left: 0.3rem; transition: transform 600ms var(--curve); }.text-link:hover span { transform: translateY(4px); }

.hero__art { position: relative; max-width: 31rem; margin-left: auto; }
.art-shell { padding: 0.55rem; background: rgba(23, 32, 28, 0.09); border: 1px solid rgba(23, 32, 28, 0.12); border-radius: 2.7rem; box-shadow: 0 24px 80px rgba(47, 62, 53, 0.12), inset 0 1px 1px rgba(255, 255, 255, 0.75); transform: rotate(3deg); }
.art-core { position: relative; aspect-ratio: 1.02; overflow: hidden; padding: 2rem; background: #d6e2ba; border-radius: 2.18rem; box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.65); }
.art-core__grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(23, 32, 28, 0.11) 1px, transparent 1px), linear-gradient(90deg, rgba(23, 32, 28, 0.11) 1px, transparent 1px); background-size: 2.55rem 2.55rem; mask-image: linear-gradient(145deg, rgba(0,0,0,0.75), transparent 73%); }
.art-core__label { position: relative; z-index: 1; font-size: 0.66rem; font-weight: 800; letter-spacing: 0.12em; line-height: 1.25; }
.art-core__number { position: absolute; right: 1.55rem; bottom: -2rem; color: var(--ink); font-size: clamp(10rem, 24vw, 15rem); font-weight: 760; line-height: 1; letter-spacing: -0.13em; }
.art-core__disc { position: absolute; border-radius: 50%; }.art-core__disc--large { top: 24%; right: 12%; width: 41%; aspect-ratio: 1; background: var(--orange); box-shadow: inset 10px 10px 30px rgba(255,255,255,0.18); }.art-core__disc--small { bottom: 25%; left: 8%; width: 12%; aspect-ratio: 1; background: var(--lime); }
.art-core__line { position: absolute; top: 53%; left: 0; width: 100%; height: 1px; background: var(--ink); transform: rotate(-31deg); transform-origin: left; }
.art-core p { position: absolute; bottom: 1.5rem; left: 2rem; margin: 0; color: rgba(23,32,28,0.75); font-size: 0.65rem; font-weight: 700; line-height: 1.55; }
.art-note { position: absolute; display: flex; gap: 0.55rem; align-items: center; color: var(--ink-soft); font-size: 0.56rem; font-weight: 760; letter-spacing: 0.12em; }.art-note i { display: block; width: 1.2rem; height: 1px; background: currentColor; }.art-note--left { bottom: 6%; left: -4rem; transform: rotate(-90deg); }.art-note--right { top: 14%; right: -2rem; transform: rotate(90deg); }
.hero__orbit { position: absolute; border: 1px solid rgba(23,32,28,0.08); border-radius: 50%; pointer-events: none; }.hero__orbit--one { top: 12%; right: -21rem; width: 42rem; height: 42rem; }.hero__orbit--two { top: 27%; right: 7%; width: 8rem; height: 8rem; border-color: rgba(243,109,45,0.35); }
.hero__footer { display: grid; grid-template-columns: auto 1fr auto; gap: 1.5rem; align-items: center; margin-top: 2.2rem; color: var(--ink-soft); font-size: 0.57rem; font-weight: 760; letter-spacing: 0.12em; }.hero__footer-line { height: 1px; background: var(--line); }.hero__footer p { margin: 0; }

.works { background: var(--paper-deep); }
.section-heading { display: grid; grid-template-columns: 1fr minmax(16rem, 0.4fr); gap: 3rem; align-items: end; margin-bottom: 4rem; }.section-heading h2 { font-size: clamp(3.5rem, 5.5vw, 5.8rem); }.section-heading > p { max-width: 25rem; margin: 0 0 0.3rem; color: var(--ink-soft); font-size: 0.9rem; line-height: 1.8; }
.work-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1.1rem; }.work-card { grid-column: span 5; min-width: 0; }.work-card:nth-child(1) { grid-column: span 7; }.work-card:nth-child(4) { grid-column: span 7; }.work-card__shell { height: 100%; padding: 0.5rem; border: 1px solid rgba(23,32,28,0.1); border-radius: 2rem; background: rgba(23,32,28,0.06); transition: transform 800ms var(--curve), box-shadow 800ms var(--curve); }.work-card:hover .work-card__shell { box-shadow: 0 26px 52px rgba(47,62,53,0.15); transform: translateY(-0.55rem) rotate(-0.5deg); }.work-card__inner { display: flex; flex-direction: column; height: 100%; overflow: hidden; border-radius: 1.55rem; background: var(--paper); }.work-card__visual { position: relative; min-height: 21rem; overflow: hidden; }.work-card:nth-child(1) .work-card__visual, .work-card:nth-child(4) .work-card__visual { min-height: 27rem; }.work-card__body { display: flex; gap: 1rem; align-items: end; justify-content: space-between; padding: 1.45rem 1.4rem 1.25rem; }.work-card__index { color: var(--ink-soft); font-size: 0.58rem; font-weight: 780; letter-spacing: 0.14em; }.work-card h3 { margin: 0.35rem 0 0; font-size: 1.4rem; letter-spacing: -0.055em; }.work-card p { margin: 0.35rem 0 0; color: var(--ink-soft); font-size: 0.72rem; }.project-open { display: grid; flex: 0 0 2.75rem; width: 2.75rem; height: 2.75rem; place-items: center; border: 0; border-radius: 50%; background: rgba(23, 32, 28, 0.07); color: var(--ink); font-size: 1.05rem; transition: background 600ms var(--curve), transform 600ms var(--curve); }.project-open:hover { background: var(--lime); transform: rotate(45deg); }

.work-visual { position: absolute; inset: 0; overflow: hidden; }.work-visual--farm { background: #28443b; }.work-visual--farm::before { position: absolute; inset: 9% 8%; content: ""; border-radius: 1.2rem; background: #f4f5e9; box-shadow: 0 15px 35px rgba(0,0,0,0.2); }.work-visual--farm::after { position: absolute; top: 18%; left: 15%; width: 44%; height: 12%; content: "本周经营看板"; padding: 0.75rem; border-radius: 0.7rem; background: #d8f452; color: var(--ink); font-size: 0.75rem; font-weight: 760; box-shadow: 0 9rem 0 -3.8rem #dce4d7, 13rem 9rem 0 -3.8rem #f36d2d; }.visual-farm-orbit { position: absolute; right: -3.5rem; bottom: -3.5rem; width: 16rem; height: 16rem; border: 1px solid rgba(216,244,82,0.6); border-radius: 50%; }.work-visual--app { background: #28443b; }.work-visual--app::before { position: absolute; top: 7%; left: 21%; width: 35%; aspect-ratio: 0.49; content: ""; border: 0.42rem solid #1a2420; border-radius: 1.65rem; background: #f5f6ef; box-shadow: 7.3rem 2.9rem 0 -0.05rem #d8f452, 7.3rem 2.9rem 0 0.38rem #1a2420, 0 1.2rem 3rem rgba(0,0,0,0.26); transform: rotate(-9deg); }.work-visual--app::after { position: absolute; top: 19%; left: 29%; width: 18%; height: 11%; content: "今日待办"; padding: 0.65rem 0.45rem; border-radius: 0.55rem; background: #d8f452; color: var(--ink); font-size: 0.58rem; font-weight: 800; line-height: 1.2; transform: rotate(-9deg); }.visual-app-label { position: absolute; right: 7%; bottom: 9%; color: rgba(244,245,241,0.74); font-size: 0.59rem; font-weight: 760; letter-spacing: 0.12em; transform: rotate(-90deg); transform-origin: right bottom; }.visual-app-orbit { position: absolute; left: -7rem; bottom: -9rem; width: 19rem; height: 19rem; border: 1px solid rgba(216,244,82,0.45); border-radius: 50%; }.work-visual--ledger { background: #efb7a0; }.work-visual--ledger::before { position: absolute; top: 12%; right: 13%; width: 62%; height: 78%; content: ""; border-radius: 1.3rem; background: #1f2f27; box-shadow: -2.8rem 2rem 0 -1.5rem #f5eee7; }.work-visual--ledger::after { position: absolute; top: 27%; right: 23%; width: 41%; height: 14%; content: "¥ 3,280"; padding: 0.85rem; border-radius: 0.7rem; background: var(--lime); color: var(--ink); font-size: 1.25rem; font-weight: 780; }.visual-ledger-lines { position: absolute; top: 52%; right: 23%; width: 32%; height: 1px; background: rgba(255,255,255,0.55); box-shadow: 0 1.2rem 0 rgba(255,255,255,0.55), 0 2.4rem 0 rgba(255,255,255,0.55); }.work-visual--atlas { background: #d5dded; }.work-visual--atlas::before { position: absolute; top: -20%; left: 25%; width: 80%; aspect-ratio: 1; content: ""; border: 2rem solid #ee6b2e; border-radius: 50%; }.work-visual--atlas::after { position: absolute; right: 16%; bottom: 15%; width: 52%; height: 42%; content: "城市漫游\A 把附近的灵感放进口袋"; padding: 1.1rem; white-space: pre-line; border-radius: 1.1rem; background: #f7f3eb; color: var(--ink); font-size: 0.73rem; font-weight: 740; line-height: 1.55; transform: rotate(-8deg); }.work-visual--motion { background: #20211d; }.work-visual--motion::before { position: absolute; top: 14%; left: 15%; width: 70%; aspect-ratio: 1; content: ""; border-radius: 48% 52% 62% 38% / 41% 38% 62% 59%; background: var(--lime); transform: rotate(22deg); }.work-visual--motion::after { position: absolute; right: 11%; bottom: 12%; width: 28%; aspect-ratio: 1; content: ""; border-radius: 50%; background: var(--orange); box-shadow: -9.8rem -4rem 0 -2.8rem #f4f5f1; }.visual-motion-label { position: absolute; top: 13%; left: 14%; z-index: 1; color: var(--ink); font-size: 0.65rem; font-weight: 800; letter-spacing: 0.13em; }

.work-card:nth-child(5), .work-card:nth-child(8) { grid-column: span 7; }.work-card:nth-child(5) .work-card__visual, .work-card:nth-child(8) .work-card__visual { min-height: 27rem; }
.work-visual--crmeb { background: #f1c6a8; }.work-visual--crmeb::before { position: absolute; top: 13%; left: 11%; width: 78%; height: 66%; content: ""; border-radius: 1.35rem; background: #f8f4e9; box-shadow: 0 1rem 0 -0.65rem #1e2f29, 0 2.9rem 0 -1.8rem #e46632, 9.6rem 2.9rem 0 -1.8rem #d8f452; transform: rotate(-4deg); }.work-visual--crmeb::after { position: absolute; top: 24%; left: 19%; width: 35%; height: 0.55rem; content: ""; border-radius: 999px; background: #1e2f29; box-shadow: 0 1.3rem 0 -0.1rem rgba(30,47,41,0.24), 0 2.6rem 0 -0.1rem rgba(30,47,41,0.24); }.visual-crmeb-label, .visual-rental-label, .visual-mini-label, .visual-supplier-label, .visual-memorial-label, .visual-agent-label, .visual-stock-label { position: absolute; z-index: 1; color: var(--ink); font-size: 0.58rem; font-weight: 800; letter-spacing: 0.13em; }.visual-crmeb-label { right: 10%; bottom: 11%; transform: rotate(-90deg); transform-origin: right bottom; }
.work-visual--rental { background: #d6e6ff; }.work-visual--rental::before { position: absolute; top: 15%; left: 11%; width: 49%; aspect-ratio: 1; content: ""; border-radius: 48% 52% 42% 58% / 54% 39% 61% 46%; background: #f46f35; box-shadow: 9.4rem 6.2rem 0 -3.3rem #24312c, 2.1rem 9.3rem 0 -2.6rem #d8f452; transform: rotate(-17deg); }.work-visual--rental::after { position: absolute; top: 20%; right: 14%; width: 32%; height: 54%; content: ""; border: 0.42rem solid #24312c; border-radius: 1.25rem; background: #f8f7f0; box-shadow: inset 0 3.2rem 0 -2.35rem #d8f452; transform: rotate(12deg); }.visual-rental-label { left: 12%; bottom: 12%; color: #24312c; }
.work-visual--miniprogram { background: #242722; }.work-visual--miniprogram::before { position: absolute; top: 9%; left: 24%; width: 39%; aspect-ratio: 0.5; content: ""; border: 0.45rem solid #121712; border-radius: 1.55rem; background: #f2f1e9; box-shadow: 5.7rem 3.4rem 0 -0.05rem #e65c2b, 5.7rem 3.4rem 0 0.4rem #121712; transform: rotate(-8deg); }.work-visual--miniprogram::after { position: absolute; top: 26%; left: 31%; width: 24%; height: 17%; content: ""; border-radius: 0.7rem; background: #d8f452; box-shadow: 0 5.4rem 0 -0.1rem #e3e7df, 1.4rem 7.1rem 0 -0.65rem #f46f35; transform: rotate(-8deg); }.visual-mini-label { right: 10%; bottom: 11%; color: rgba(244,245,241,0.7); transform: rotate(-90deg); transform-origin: right bottom; }
.work-visual--supplier { background: #ede3d1; }.work-visual--supplier::before { position: absolute; top: 14%; left: 9%; width: 27%; aspect-ratio: 1; content: ""; border-radius: 1rem; background: #f46f35; box-shadow: 7.8rem 0 #254137, 15.6rem 0 #d8f452, 3.9rem 7.8rem #254137, 11.7rem 7.8rem #f8f6ef; transform: rotate(-6deg); }.work-visual--supplier::after { position: absolute; top: 23%; left: 12%; width: 72%; height: 1px; content: ""; background: rgba(23,32,28,0.48); box-shadow: 0 7.8rem 0 rgba(23,32,28,0.48); transform: rotate(-6deg); }.visual-supplier-label { left: 11%; bottom: 10%; }
.work-visual--memorial { background: #c9d1bf; }.work-visual--memorial::before { position: absolute; right: 14%; bottom: -13%; width: 48%; height: 98%; content: ""; border-radius: 8rem 8rem 0 0; background: #31443a; box-shadow: -8.4rem 1.2rem 0 -1.2rem #ecede6, -16.8rem -1.8rem 0 -2.3rem #f2bca4; }.work-visual--memorial::after { position: absolute; top: 18%; right: 23%; width: 26%; height: 40%; content: "01"; display: grid; place-items: center; border: 1px solid rgba(244,245,241,0.32); border-radius: 1rem; color: #f4f5f1; font-family: Georgia, "Noto Serif SC", serif; font-size: 3.8rem; }.visual-memorial-label { left: 11%; bottom: 11%; color: #31443a; }
.work-visual--agent { background: #111512; }.work-visual--agent::before { position: absolute; top: 12%; left: 13%; width: 66%; aspect-ratio: 1; content: ""; border: 1px solid rgba(216,244,82,0.66); border-radius: 50%; box-shadow: 0 0 0 2.7rem rgba(216,244,82,0.07), 0 0 0 5.5rem rgba(216,244,82,0.04); }.work-visual--agent::after { position: absolute; top: 39%; left: 39%; width: 24%; aspect-ratio: 1; content: ""; border-radius: 50%; background: #d8f452; box-shadow: -5.1rem -3rem 0 -1rem #f46f35, 5.2rem 3.5rem 0 -1rem #ecefe6; }.visual-agent-label { right: 11%; bottom: 11%; color: rgba(244,245,241,0.72); transform: rotate(-90deg); transform-origin: right bottom; }
.work-visual--stock { background: #e6e2d8; }.work-visual--stock::before { position: absolute; right: 9%; bottom: 16%; width: 72%; height: 43%; content: ""; background: linear-gradient(133deg, transparent 0 13%, #27443a 13.4% 18%, transparent 18.4% 28%, #f46f35 28.4% 32%, transparent 32.4% 42%, #27443a 42.4% 48%, transparent 48.4% 58%, #f46f35 58.4% 63%, transparent 63.4% 74%, #27443a 74.4% 80%, transparent 80.4%); transform: skewY(-17deg); }.work-visual--stock::after { position: absolute; top: 13%; left: 12%; width: 39%; height: 22%; content: "RESEARCH"; display: grid; place-items: center; border-radius: 0.9rem; background: #27443a; color: #d8f452; font-size: 0.67rem; font-weight: 800; letter-spacing: 0.15em; }.visual-stock-label { right: 11%; bottom: 10%; color: #27443a; }

.statement { padding-top: 0; background: var(--paper-deep); }.statement__panel { padding: 4.5rem 5%; border-radius: 2.5rem; background: var(--ink); color: var(--paper); }.statement__panel .eyebrow { color: rgba(244,245,241,0.52); }.statement__quote { max-width: 58rem; margin: 3rem 0 5rem; font-size: clamp(2.4rem, 4.1vw, 4.45rem); font-weight: 680; letter-spacing: -0.04em; line-height: 1.2; }.statement__quote em { color: var(--lime); }.statement__meta { display: flex; justify-content: space-between; color: rgba(244,245,241,0.5); font-size: 0.56rem; font-weight: 780; letter-spacing: 0.13em; }

.about__layout { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 8%; }.about h2 { font-size: clamp(3.2rem, 5.1vw, 5.35rem); }.about__content { padding-top: 3.3rem; }.about__body { max-width: 37rem; }.about__body p { margin: 0; color: var(--ink-soft); font-size: 1.12rem; line-height: 1.9; }.about__body p + p { margin-top: 1.1rem; }.capability-list { margin-top: 4.2rem; border-top: 1px solid var(--line); }.capability-list article { display: grid; grid-template-columns: 2.8rem 1fr minmax(13rem, 0.9fr); gap: 1rem; align-items: center; padding: 1.45rem 0; border-bottom: 1px solid var(--line); }.capability-list span { color: var(--orange); font-size: 0.64rem; font-weight: 780; letter-spacing: 0.08em; }.capability-list h3 { margin: 0; font-size: 1rem; letter-spacing: -0.035em; }.capability-list p { margin: 0; color: var(--ink-soft); font-size: 0.72rem; line-height: 1.55; }

.contact { overflow: hidden; padding-top: 0; }.contact__card { position: relative; overflow: hidden; padding: 5.6rem 7%; border-radius: 2.7rem; background: #173b30; color: var(--paper); }.contact__halo { position: absolute; right: -5rem; bottom: -11rem; width: 34rem; height: 34rem; border: 1px solid rgba(216,244,82,0.38); border-radius: 50%; box-shadow: 0 0 0 4rem rgba(216,244,82,0.06), 0 0 0 8rem rgba(216,244,82,0.04); }.contact h2 { position: relative; z-index: 1; max-width: 46rem; font-size: clamp(3.35rem, 6vw, 6.35rem); }.contact h2 em { color: var(--lime); }.contact__card > p:not(.eyebrow) { position: relative; z-index: 1; max-width: 29rem; margin: 2rem 0 0; color: rgba(244,245,241,0.67); font-size: 0.97rem; line-height: 1.8; }.contact__actions { position: relative; z-index: 1; display: flex; gap: 1.1rem; align-items: center; margin-top: 2.5rem; }.contact__availability { display: flex; gap: 0.45rem; align-items: center; color: rgba(244,245,241,0.7); font-size: 0.64rem; font-weight: 700; }.contact__availability i { width: 0.45rem; height: 0.45rem; border-radius: 50%; background: var(--lime); }.contact__footer { position: relative; z-index: 1; display: flex; justify-content: space-between; padding-top: 4rem; margin-top: 4.2rem; border-top: 1px solid rgba(255,255,255,0.14); color: rgba(244,245,241,0.52); font-size: 0.63rem; font-weight: 650; }

.contact__details { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.7rem; max-width: 41rem; margin-top: 1.8rem; }.contact__channel { position: relative; display: grid; gap: 0.35rem; min-height: 5.5rem; padding: 1rem 3rem 1rem 1.15rem; border: 1px solid rgba(244,245,241,0.18); border-radius: 1.2rem; background: rgba(244,245,241,0.06); color: var(--paper); transition: transform 650ms var(--curve), background 650ms var(--curve); }.contact__channel:hover { background: rgba(244,245,241,0.13); transform: translateY(-3px); }.contact__channel span { color: rgba(244,245,241,0.58); font-size: 0.58rem; font-weight: 760; letter-spacing: 0.08em; }.contact__channel strong { font-size: 0.91rem; letter-spacing: -0.025em; }.contact__channel b { position: absolute; right: 1rem; bottom: 1rem; display: grid; width: 1.7rem; height: 1.7rem; place-items: center; border-radius: 50%; background: var(--lime); color: var(--ink); font-size: 0.75rem; transition: transform 650ms var(--curve); }.contact__channel:hover b { transform: translate(2px, -2px); }

.site-footer { padding: 1.5rem 0 2.4rem; }.site-footer .container { display: flex; justify-content: space-between; align-items: center; color: var(--ink-soft); font-size: 0.62rem; }.site-footer .brand { color: var(--ink); }.site-footer p { margin: 0; }

.project-dialog, .contact-dialog { width: min(100% - 2rem, 960px); max-width: 960px; padding: 0.5rem; overflow: visible; border: 0; border-radius: 2rem; background: rgba(23,32,28,0.12); box-shadow: 0 30px 90px rgba(15,25,20,0.3); }.project-dialog::backdrop, .contact-dialog::backdrop { background: rgba(23,32,28,0.7); backdrop-filter: blur(5px); }.project-dialog__shell { display: grid; grid-template-columns: 0.95fr 1.05fr; min-height: 33rem; overflow: hidden; border-radius: 1.56rem; background: var(--paper); }.project-dialog__visual { position: relative; min-height: 18rem; overflow: hidden; }.project-dialog__content { display: flex; flex-direction: column; align-items: flex-start; padding: 3.6rem clamp(1.8rem, 5vw, 4.2rem); }.project-dialog h2 { margin: 1rem 0 0; font-size: clamp(2.3rem, 4.4vw, 4.5rem); letter-spacing: -0.04em; line-height: 1.1; }.project-dialog__subtitle { margin: 1rem 0 0; color: var(--orange); font-size: 0.88rem; font-weight: 700; }.project-dialog__description { margin: 1.5rem 0 0; color: var(--ink-soft); font-size: 0.85rem; line-height: 1.8; }.project-dialog dl { display: grid; grid-template-columns: auto 1fr; gap: 0.5rem 1rem; width: 100%; margin: 1.7rem 0 1.9rem; font-size: 0.68rem; }.project-dialog dt { color: var(--ink-soft); }.project-dialog dd { margin: 0; font-weight: 720; }.dialog-close { position: absolute; top: -0.75rem; right: -0.75rem; z-index: 1; display: grid; width: 2.8rem; height: 2.8rem; place-items: center; border: 1px solid rgba(255,255,255,0.35); border-radius: 50%; background: var(--lime); color: var(--ink); font-size: 1.7rem; font-weight: 300; line-height: 1; transition: transform 500ms var(--curve); }.dialog-close:hover { transform: rotate(90deg); }.is-disabled { pointer-events: none; opacity: 0.5; }
.contact-dialog { width: min(100% - 2rem, 630px); }.contact-dialog__content { padding: clamp(2.2rem, 7vw, 5rem); border-radius: 1.56rem; background: var(--paper); }.contact-dialog h2 { font-size: clamp(2.8rem, 7vw, 5.1rem); }.contact-dialog__content > p:not(.eyebrow) { max-width: 27rem; margin: 1.8rem 0 2rem; color: var(--ink-soft); font-size: 0.88rem; line-height: 1.75; }.copy-email { padding: 0; margin-top: 1rem; border: 0; border-bottom: 1px solid var(--ink); background: transparent; color: var(--ink-soft); font-size: 0.7rem; font-weight: 700; }

.reveal { opacity: 0; transform: translateY(2.4rem); transition: opacity 850ms var(--curve), transform 850ms var(--curve); }.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 860px) { .section { padding: 6rem 0; }.hero { min-height: auto; padding-top: 9.5rem; }.hero__layout { grid-template-columns: 1fr; }.hero__copy { max-width: 43rem; }.hero__art { width: min(100%, 31rem); margin: 1rem auto 0; }.hero__footer { margin-top: 4rem; }.section-heading, .about__layout { grid-template-columns: 1fr; }.section-heading { gap: 1.5rem; }.about__content { padding-top: 0; }.work-card, .work-card:nth-child(1), .work-card:nth-child(4) { grid-column: span 6; }.work-card:nth-child(1), .work-card:nth-child(4) { grid-column: span 6; }.work-card:nth-child(1) .work-card__visual, .work-card:nth-child(4) .work-card__visual { min-height: 21rem; }.project-dialog__shell { grid-template-columns: 1fr; }.project-dialog__visual { min-height: 17rem; }.project-dialog__content { padding: 2.4rem; }.contact__card { padding: 4.5rem 7%; } }

@media (max-width: 640px) { .container { width: min(100% - 2rem, 1240px); }.site-header { top: 0.7rem; width: calc(100% - 1.2rem); min-height: 3.75rem; padding-left: 0.95rem; }.desktop-nav { display: none; }.menu-toggle { display: block; }.hero { padding-top: 8.3rem; }.hero h1, .section-heading h2, .about h2, .contact h2 { font-size: clamp(3.35rem, 15vw, 4.75rem); }.hero__summary { margin-top: 1.5rem; font-size: 0.91rem; }.hero__actions { flex-direction: column; align-items: flex-start; margin-top: 2rem; }.hero__actions .button { width: 100%; justify-content: space-between; }.art-shell { border-radius: 2rem; transform: none; }.art-core { padding: 1.45rem; border-radius: 1.5rem; }.art-core p { bottom: 1.2rem; left: 1.45rem; }.art-note { display: none; }.hero__orbit--one { top: 50%; right: -16rem; width: 28rem; height: 28rem; }.hero__orbit--two { top: 60%; right: -2rem; }.hero__footer { grid-template-columns: auto 1fr; gap: 0.8rem; margin-top: 2.8rem; }.hero__footer p { display: none; }.section-heading { margin-bottom: 2.5rem; }.section-heading > p { font-size: 0.84rem; }.work-grid { grid-template-columns: 1fr; }.work-card, .work-card:nth-child(1), .work-card:nth-child(4) { grid-column: auto; }.work-card__visual, .work-card:nth-child(1) .work-card__visual, .work-card:nth-child(4) .work-card__visual { min-height: 19rem; }.work-card__body { padding: 1.15rem; }.statement__panel { padding: 3rem 1.5rem; border-radius: 1.8rem; }.statement__quote { margin: 2.2rem 0 3.5rem; font-size: 2.15rem; }.capability-list article { grid-template-columns: 2.4rem 1fr; gap: 0.45rem; }.capability-list p { grid-column: 2; }.contact__card { padding: 3.4rem 1.5rem; border-radius: 1.8rem; }.contact__actions { align-items: flex-start; flex-direction: column; }.contact__footer { margin-top: 3rem; padding-top: 2.4rem; }.site-footer .container { display: grid; gap: 1rem; }.site-footer p { order: 3; }.project-dialog, .contact-dialog { width: calc(100% - 1.2rem); }.project-dialog { padding: 0.35rem; border-radius: 1.6rem; }.project-dialog__shell { border-radius: 1.25rem; }.project-dialog__content { padding: 2rem 1.4rem; }.dialog-close { top: -0.55rem; right: -0.2rem; }.project-dialog__description { font-size: 0.78rem; }.project-dialog dl { margin: 1.3rem 0; }.project-dialog .button { width: 100%; justify-content: space-between; }.contact-dialog__content { padding: 3.2rem 1.5rem; } }

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

@media (max-width: 640px) { .contact__details { grid-template-columns: 1fr; } }

@media (max-width: 860px) { .work-card:nth-child(5), .work-card:nth-child(8) { grid-column: span 6; }.work-card:nth-child(5) .work-card__visual, .work-card:nth-child(8) .work-card__visual { min-height: 21rem; } }

@media (max-width: 640px) { .work-card:nth-child(5), .work-card:nth-child(8) { grid-column: auto; }.work-card:nth-child(5) .work-card__visual, .work-card:nth-child(8) .work-card__visual { min-height: 19rem; } }

.work-card:nth-child(9) { grid-column: span 7; }.work-card:nth-child(9) .work-card__visual { min-height: 27rem; }.work-visual--gallery { background: #d8d4e4; }.work-visual--gallery::before { position: absolute; top: 12%; left: 10%; width: 22%; height: 56%; content: ""; border: 0.55rem solid #f8f6ef; border-radius: 1rem; background: linear-gradient(145deg, #f36d2d 0 29%, #d8f452 29% 56%, #27443a 56%); box-shadow: 8rem 2.2rem 0 -0.55rem #f8f6ef, 8rem 2.2rem 0 0 #f8f6ef, 16rem -0.8rem 0 -0.55rem #f8f6ef, 16rem -0.8rem 0 0 #f8f6ef; transform: rotate(-5deg); }.work-visual--gallery::after { position: absolute; right: 10%; bottom: 14%; width: 28%; height: 21%; content: "VOTE"; display: grid; place-items: center; border-radius: 50%; background: #27443a; color: #d8f452; font-family: Georgia, "Noto Serif SC", serif; font-size: 1.8rem; letter-spacing: 0.06em; box-shadow: -12.4rem 4.6rem 0 -3.7rem #f36d2d; }.visual-gallery-label { position: absolute; left: 11%; bottom: 11%; color: #27443a; font-size: 0.58rem; font-weight: 800; letter-spacing: 0.13em; }

@media (max-width: 860px) { .work-card:nth-child(9) { grid-column: span 6; }.work-card:nth-child(9) .work-card__visual { min-height: 21rem; } }

@media (max-width: 640px) { .work-card:nth-child(9) { grid-column: auto; }.work-card:nth-child(9) .work-card__visual { min-height: 19rem; } }
