:root {
  --cream: #f7f2e9;
  --paper: #fffdf9;
  --white: #fff;
  --ink: #24231f;
  --muted: #6e6b63;
  --line: rgba(36, 35, 31, .16);
  --orange: #ef642f;
  --orange-bright: #ff7a36;
  --blue: #3979f6;
  --yellow: #ffd02e;
  --green: #183e35;
  --deep: #1c211e;
  --radius: 30px;
  --shadow: 0 20px 70px rgba(60, 28, 12, .13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Manrope, "PingFang SC", "Noto Sans CJK SC", sans-serif;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
::selection { background: var(--yellow); color: var(--ink); }

.noise {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: .035;
  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='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  top: 16px;
  left: 2vw;
  right: 2vw;
  z-index: 100;
  min-height: 68px;
  padding: 8px 12px 8px 24px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  border: 1px solid rgba(255,255,255,.68);
  border-radius: 34px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 12px 44px rgba(62, 30, 14, .1);
  backdrop-filter: blur(18px);
}
.brand {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -.06em;
  white-space: nowrap;
}
.brand span { color: var(--orange); }
.desktop-nav { display: flex; justify-content: center; gap: clamp(8px, 1.15vw, 20px); }
.desktop-nav a {
  position: relative;
  padding: 10px 0;
  color: #4c4943;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .02em;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 5px;
  height: 2px;
  background: var(--orange);
  transition: right .25s ease;
}
.desktop-nav a:hover::after, .desktop-nav a.active::after { right: 0; }
.desktop-nav a.active { color: var(--ink); }
.header-tools { display: flex; align-items: center; gap: 8px; }
.language-toggle, .menu-toggle {
  height: 44px;
  border: 0;
  border-radius: 22px;
  background: #f2eee8;
  cursor: pointer;
}
.language-toggle { min-width: 56px; padding: 0 16px; font-size: 12px; font-weight: 800; }
.header-cta {
  height: 44px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-radius: 22px;
  color: #fff;
  background: var(--ink);
  font-size: 12px;
  font-weight: 700;
}
.menu-toggle { width: 44px; display: none; padding: 13px 11px; }
.menu-toggle i { display: block; height: 2px; margin: 5px 0; background: var(--ink); transition: .25s; }
.menu-toggle[aria-expanded="true"] i:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] i:last-child { transform: translateY(-3.5px) rotate(-45deg); }
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  padding: 120px 7vw 40px;
  background: rgba(247,242,233,.97);
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  backdrop-filter: blur(20px);
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu nav { display: grid; }
.mobile-menu a { padding: 12px 0; border-bottom: 1px solid var(--line); font-size: clamp(25px, 6vw, 46px); font-weight: 700; letter-spacing: -.05em; }

.page-view { display: none; }
.page-view.active { display: block; animation: pageIn .45s ease both; }
@keyframes pageIn { from { opacity: 0; } to { opacity: 1; } }

.home-hero, .page-hero { position: relative; overflow: hidden; isolation: isolate; }
.home-hero {
  min-height: max(790px, 100svh);
  padding: 160px 7vw 96px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 66% 28%, rgba(255,214,113,.55), transparent 20%),
    linear-gradient(125deg, #f8a36d 0%, #f3773f 48%, #eb5b2d 100%);
}
.home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(248,163,109,.12) 35%, rgba(222,71,24,.05) 62%, rgba(128,37,10,.16));
}
.hero-content { width: min(760px, 62vw); position: relative; z-index: 3; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 28px; font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow > span { width: 24px; height: 2px; background: currentColor; }
.eyebrow.light { color: #fff; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { letter-spacing: -.065em; }
h1 { margin-bottom: 30px; font-size: clamp(64px, 7.2vw, 122px); line-height: .88; font-weight: 800; }
h2 { font-size: clamp(46px, 5.5vw, 88px); line-height: .95; font-weight: 750; }
h3 { font-weight: 750; }
h1 em, h2 em { color: #fff6e9; font-style: normal; font-weight: 500; }
.hero-content > p, .page-hero-copy > p { max-width: 650px; margin-bottom: 34px; font-size: clamp(16px, 1.35vw, 21px); line-height: 1.6; }
.button-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.button {
  min-height: 54px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  border-radius: 28px;
  font-size: 13px;
  font-weight: 750;
  transition: transform .25s, background .25s;
}
.button:hover { transform: translateY(-3px); }
.button.dark { color: #fff; background: var(--ink); }
.button.text { padding-left: 8px; background: transparent; }
.button.light-button { color: var(--ink); background: #fff; }
.hero-index { position: absolute; right: 4vw; bottom: 46px; z-index: 4; display: flex; align-items: center; gap: 22px; color: rgba(45,28,18,.78); font-family: "DM Mono", monospace; font-size: 10px; letter-spacing: .08em; }
.hero-glow { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-glow i {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  box-shadow: inset -28px -34px 60px rgba(170,46,8,.17), inset 16px 18px 35px rgba(255,255,255,.32), 0 0 80px rgba(255,203,117,.45);
}
.hero-glow i:nth-child(1) { width: 34vw; height: 34vw; right: 3vw; top: 13%; background: radial-gradient(circle at 34% 28%, #ffd39e 0%, #ff975e 36%, #ea5d2b 74%); animation: float 8s ease-in-out infinite; }
.hero-glow i:nth-child(2) { width: 11vw; height: 11vw; right: 30vw; bottom: 10%; background: radial-gradient(circle at 30% 25%, #ffe0a7, #f87a37 65%); opacity: .75; animation: float 7s 1s ease-in-out infinite reverse; }
.hero-glow i:nth-child(3) { width: 5vw; height: 5vw; right: 9vw; bottom: 8%; background: var(--yellow); opacity: .78; animation: float 6s 2s ease-in-out infinite; }
@keyframes float { 50% { transform: translateY(-16px) translateX(6px); } }

.section { padding: 110px 7vw; }
.section-label { margin-bottom: 62px; display: flex; align-items: center; gap: 18px; font-family: "DM Mono", monospace; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.section-label > span { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid currentColor; border-radius: 50%; }
.section-label.light { color: rgba(255,255,255,.72); }
.split-heading { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr); gap: 8vw; align-items: start; }
.split-heading h2, .section-heading h2 { margin-bottom: 0; }
.split-heading h2 em, .section-heading h2 em { color: var(--orange); }
.split-heading p, .story p { color: var(--muted); font-size: 17px; line-height: 1.75; }
.split-heading .lead, .story .lead { color: var(--ink); font-size: 24px; line-height: 1.45; }

.philosophy { background: var(--paper); }
.capabilities { background: var(--cream); }
.capability-grid { margin-top: 64px; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.capability-card { min-height: 380px; padding: 30px; position: relative; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background .3s, transform .3s; }
.capability-card:hover { z-index: 2; background: #fff; transform: translateY(-8px); box-shadow: var(--shadow); }
.capability-card > span { font-family: "DM Mono", monospace; font-size: 11px; }
.capability-card h3 { margin: 78px 0 18px; font-size: clamp(26px, 2.1vw, 36px); line-height: 1.05; }
.capability-card p { max-width: 230px; color: var(--muted); font-size: 14px; line-height: 1.6; }
.capability-card > b { position: absolute; right: 26px; bottom: 24px; font-size: 24px; }
.mini-icon { position: absolute; right: 28px; top: 28px; width: 42px; height: 42px; }
.mini-icon.pulse { border: 9px solid var(--orange); border-radius: 50%; box-shadow: 0 0 0 6px rgba(239,100,47,.18); }
.mini-icon.grid { background: repeating-linear-gradient(90deg,var(--blue) 0 7px,transparent 7px 12px), repeating-linear-gradient(0deg,var(--blue) 0 7px,transparent 7px 12px); }
.mini-icon.arc { border: 9px solid var(--yellow); border-right-color: transparent; border-radius: 50%; transform: rotate(-25deg); }
.mini-icon.cross::before, .mini-icon.cross::after { content:""; position:absolute; left:18px; top:0; width:8px; height:42px; border-radius:5px; background:var(--green); }
.mini-icon.cross::after { transform: rotate(90deg); }

.why-section { padding: 110px 7vw; color: #fff; background: var(--deep); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.2); }
.why-grid > div { min-height: 290px; padding: 28px 28px 20px 0; border-right: 1px solid rgba(255,255,255,.16); }
.why-grid > div:not(:first-child) { padding-left: 28px; }
.why-grid span { font-family: "DM Mono", monospace; color: #ff9a68; font-size: 11px; }
.why-grid h3 { margin: 62px 0 20px; font-size: 27px; line-height: 1.05; }
.why-grid p { color: rgba(255,255,255,.62); font-size: 13px; line-height: 1.7; }

.cases-section { background: var(--paper); }
.case-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.case-card { min-height: 340px; padding: 26px; display: flex; flex-direction: column; border-radius: 20px; background: #f0e8dd; overflow: hidden; }
.case-card:nth-child(2) { background: #ffd25b; }
.case-card:nth-child(3) { background: #f59972; }
.case-card:nth-child(4) { background: #b7d3ff; }
.case-card span, .case-card small { font-family: "DM Mono", monospace; font-size: 10px; letter-spacing: .08em; }
.case-card h3 { margin: auto 0 28px; font-size: clamp(25px, 2.2vw, 36px); line-height: 1.12; }

.diagnosis-banner { padding: 100px 7vw; display: grid; grid-template-columns: 1.1fr .9fr; gap: 8vw; color: #fff; background: var(--orange); }
.diagnosis-banner h2 { margin: 18px 0 0; }
.diagnosis-banner h2 em { color: var(--yellow); }
.diagnosis-banner > div:last-child { align-self: end; }
.diagnosis-banner p { margin-bottom: 34px; font-size: 18px; line-height: 1.7; }

.page-hero {
  min-height: 730px;
  padding: 165px 7vw 90px;
  display: flex;
  align-items: center;
  background: linear-gradient(130deg,#f8a575,#f16c38);
}
.page-hero.cool { background: linear-gradient(130deg,#b6d5ff,#5f96f7); }
.page-hero.warm { background: linear-gradient(130deg,#ffd86b,#f19b37); }
.page-hero.deep { color: #fff; background: linear-gradient(130deg,#153d35,#214f43); }
.page-hero.violet { background: linear-gradient(130deg,#d4c8ff,#997fe8); }
.page-hero.about-hero { background: linear-gradient(130deg,#f7ded0,#e79775); }
.page-hero-copy { width: min(900px, 72vw); position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(58px, 6.5vw, 106px); }
.page-hero h1 em { color: rgba(255,255,255,.88); }
.page-orb { position: absolute; right: 4vw; top: 16%; width: 30vw; height: 30vw; border-radius: 50%; background: radial-gradient(circle at 30% 25%,rgba(255,255,255,.85),rgba(255,179,128,.28) 35%,rgba(235,84,32,.42) 70%); box-shadow: inset -30px -30px 55px rgba(120,44,12,.14),0 0 70px rgba(255,255,255,.3); opacity: .74; }
.cool .page-orb { background: radial-gradient(circle at 30% 25%,#fff,#85b5ff 40%,#3568d7 76%); }
.warm .page-orb { background: radial-gradient(circle at 30% 25%,#fff6b1,#ffc126 44%,#e46c23 80%); }
.deep .page-orb { background: radial-gradient(circle at 30% 25%,#8ee0c8,#25705e 45%,#102b25 80%); }
.violet .page-orb { background: radial-gradient(circle at 30% 25%,#fff,#beaeff 42%,#7255c5 80%); }

.problem-section, .solution-stack, .process-section, .platform-ops, .delivery-section, .combo-section, .values, .industries { background: var(--paper); }
.number-list { margin: 0; padding: 0; list-style: none; }
.number-list li { padding: 20px 0; display: grid; grid-template-columns: 44px 1fr; gap: 16px; border-bottom: 1px solid var(--line); }
.number-list span { font-family: "DM Mono", monospace; font-size: 10px; color: var(--orange); }
.number-list b { font-size: 17px; }
.stack-grid {
  display: flex;
  align-items: stretch;
  gap: 14px;
  padding: 12px 4px 18px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.stack-grid::-webkit-scrollbar { display: none; }
.stack-grid > div {
  min-width: 0;
  min-height: 390px;
  padding: 34px;
  flex: .82 1 0;
  border: 1px solid var(--line);
  border-radius: 22px;
  cursor: pointer;
  scroll-snap-align: center;
  transition: flex .42s cubic-bezier(.22,.7,.25,1), transform .42s cubic-bezier(.22,.7,.25,1), color .28s ease, border-color .28s ease, box-shadow .42s ease;
}
.stack-grid > div:focus-visible { outline: 3px solid rgba(239,100,47,.35); outline-offset: 4px; }
.stack-grid > div:focus-visible { flex: 1.12 1 0; color: #fff; border-color: transparent; transform: scale(1.008); box-shadow: 0 20px 46px rgba(180,62,19,.17); }
.stack-grid h3 { font-size: 28px; }
.stack-grid p { color: var(--muted); line-height: 1.7; }
.stack-grid .accent-panel { color: var(--ink); background: transparent; border-color: var(--line); }
.accent-panel p { color: var(--muted); }
.stack-grid > div:focus-visible p { color: rgba(255,255,255,.92); }
.stack-grid > div:focus-visible .flow span { border-color: rgba(255,255,255,.55); }
.big-quote { font-size: clamp(25px,2.2vw,37px); line-height: 1.18 !important; letter-spacing: -.04em; }
.accent-panel ul { margin-top: 40px; padding: 0; list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; font-size: 12px; }
.flow { margin-top: 45px; display: flex; flex-wrap: wrap; gap: 9px; align-items: center; font-family: "DM Mono",monospace; font-size: 10px; }
.flow span { padding: 8px 10px; border: 1px solid var(--line); border-radius: 15px; }
.process-row { display: grid; grid-template-columns: repeat(4,1fr); }
.process-row > div { min-height: 190px; padding: 24px; display: flex; flex-direction: column; justify-content: space-between; border: 1px solid var(--line); border-right: 0; }
.process-row > div:last-child { border-right: 1px solid var(--line); }
.process-row span { font-family: "DM Mono",monospace; color: var(--orange); font-size: 11px; }
.process-row b { font-size: 24px; }

.page-cases { background: var(--cream); }
.two-case-grid, .three-case-grid { display: grid; gap: 14px; }
.two-case-grid { grid-template-columns: 1fr 1fr; }
.three-case-grid { grid-template-columns: repeat(3,1fr); }
.two-case-grid article, .three-case-grid article { min-height: 330px; padding: 30px; display: flex; flex-direction: column; justify-content: space-between; border-radius: 20px; background: #e8ded0; }
.two-case-grid article:nth-child(even), .three-case-grid article:nth-child(2) { background: #c6daf8; }
.three-case-grid article:nth-child(3) { background: #ffd261; }
.two-case-grid span, .three-case-grid span { font-family: "DM Mono",monospace; font-size: 10px; }
.two-case-grid h3, .three-case-grid h3 { max-width: 500px; margin: auto 0 0; font-size: clamp(26px,2.5vw,42px); line-height: 1.12; }
.end-cta { margin-top: 32px; }

.metric-cloud { display: flex; flex-wrap: wrap; gap: 12px; }
.metric-cloud span { padding: 15px 20px; border: 1px solid var(--line); border-radius: 28px; background: rgba(255,255,255,.5); font-size: 16px; }
.ops-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.ops-grid > div { min-height: 240px; padding: 28px; border-radius: 18px; background: #edf3fc; }
.ops-grid b { font-size: 22px; }
.ops-grid p { margin-top: 60px; color: var(--muted); line-height: 1.6; }
.founder-proof { padding: 100px 7vw; display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; color: #fff; background: #356ed7; }
.founder-proof > div > span, .not-ppt > span, .working-style > div > span { font-family:"DM Mono",monospace; font-size:11px; letter-spacing:.1em; }
.founder-proof h2 { margin: 22px 0 0; }
.founder-proof h2 em { color: #bdd7ff; }
.proof-list { display: grid; grid-template-columns:1fr 1fr; align-self:end; }
.proof-list span { padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.3); }

.type-grid { display:grid; grid-template-columns:repeat(3,1fr); border-top:1px solid var(--line); border-left:1px solid var(--line); }
.type-grid > div { min-height:145px; padding:26px; display:flex; align-items:flex-end; border-right:1px solid var(--line); border-bottom:1px solid var(--line); font-size:26px; font-weight:750; letter-spacing:-.04em; }
.delivery-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:10px; }
.delivery-grid span { padding:25px; border-radius:50px; text-align:center; background:#ffd65d; font-size:18px; font-weight:750; }
.not-ppt { padding:110px 7vw; color:#fff; background:var(--orange); }
.not-ppt h2 { margin:22px 0 28px; }
.not-ppt h2 em { color:var(--yellow); }
.not-ppt p { max-width:620px; font-size:18px; line-height:1.7; }
.not-ppt.light-block { color:var(--ink); background:#dfd5fa; }
.not-ppt.light-block h2 em { color:#7651c4; }

.framework { padding:100px 7vw; color:#fff; background:var(--deep); }
.framework-row { margin-top:56px; display:grid; grid-template-columns:repeat(5,1fr); }
.framework-row > i { display:none; }
.framework-row > div { min-height:220px; padding:24px; display:flex; flex-direction:column; justify-content:space-between; border:1px solid rgba(255,255,255,.2); border-right:0; }
.framework-row > div:last-child { border-right:1px solid rgba(255,255,255,.2); }
.framework-row span { color:#ff9a68; font-family:"DM Mono",monospace; font-size:11px; }
.framework-row b { font-size:24px; }

/* Editorial image layers — the colour wash keeps every card readable in both languages. */
.case-card,
.stack-grid > div,
.process-row > div,
.two-case-grid article,
.three-case-grid article,
.type-grid > div,
.framework-row > div {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.case-card::before,
.stack-grid > div::before,
.process-row > div::before,
.two-case-grid article::before,
.three-case-grid article::before,
.type-grid > div::before,
.framework-row > div::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--card-image);
  background-position: var(--card-position, center);
  background-size: cover;
  filter: saturate(.82) contrast(.92);
  transform: scale(1.02);
  transition: transform .65s cubic-bezier(.2,.8,.2,1), filter .45s ease;
}
.case-card::after,
.stack-grid > div::after,
.process-row > div::after,
.two-case-grid article::after,
.three-case-grid article::after,
.type-grid > div::after,
.framework-row > div::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--card-overlay, rgba(255,251,245,.8));
  backdrop-filter: blur(1.5px);
}
.case-card:hover::before,
.stack-grid > div:hover::before,
.process-row > div:hover::before,
.two-case-grid article:hover::before,
.three-case-grid article:hover::before,
.type-grid > div:hover::before,
.framework-row > div:hover::before {
  transform: scale(1.075);
  filter: saturate(.96) contrast(.96);
}

/* Home — selected work */
#page-home .case-card:nth-child(1) { --card-image: url("./assets/backgrounds/home-restaurant.png"); --card-position: center; --card-overlay: linear-gradient(180deg,rgba(248,242,233,.54),rgba(248,242,233,.82)); }
#page-home .case-card:nth-child(2) { --card-image: url("./assets/backgrounds/home-consumer.png"); --card-position: center; --card-overlay: linear-gradient(180deg,rgba(255,210,91,.5),rgba(255,210,91,.84)); }
#page-home .case-card:nth-child(3) { --card-image: url("./assets/backgrounds/home-lifestyle.png"); --card-position: center 43%; --card-overlay: linear-gradient(180deg,rgba(245,153,114,.46),rgba(245,153,114,.82)); }
#page-home .case-card:nth-child(4) { --card-image: url("./assets/backgrounds/home-ai.png"); --card-position: center 34%; --card-overlay: linear-gradient(180deg,rgba(183,211,255,.5),rgba(183,211,255,.84)); }

/* Digital marketing — content system, process and cases */
#page-digital .stack-grid > div:nth-child(1) { --card-image: url("./assets/backgrounds/digital-strategy-1.png"); --card-position: center; --card-overlay: rgba(255,252,247,.58); }
#page-digital .stack-grid > div:nth-child(2) { --card-image: url("./assets/backgrounds/digital-strategy-2.png"); --card-position: center; --card-overlay: rgba(255,252,247,.64); }
#page-digital .stack-grid > div:nth-child(3) { --card-image: url("./assets/backgrounds/digital-strategy-3.png"); --card-position: center; --card-overlay: rgba(255,252,247,.62); }
#page-digital .stack-grid > div:nth-child(3)::before {
  inset: 5%;
  background-size: 128% auto;
  background-repeat: no-repeat;
  clip-path: circle(42% at 50% 50%);
}
#page-digital .stack-grid > div:focus-visible { --card-overlay: linear-gradient(135deg,rgba(219,66,18,.9),rgba(244,96,39,.8)); }

@media (hover: hover) and (pointer: fine) {
  .stack-grid > div:hover { flex: 1.12 1 0; color: #fff; border-color: transparent; transform: scale(1.008); box-shadow: 0 20px 46px rgba(180,62,19,.17); }
  .stack-grid > div:hover p { color: rgba(255,255,255,.92); }
  .stack-grid > div:hover .flow span { border-color: rgba(255,255,255,.55); }
  #page-digital .stack-grid > div:hover { --card-overlay: linear-gradient(135deg,rgba(219,66,18,.9),rgba(244,96,39,.8)); }
}
#page-digital .process-row > div:nth-child(1) { --card-image: url("./assets/backgrounds/creator-studio.jpg"); --card-position: 12% center; }
#page-digital .process-row > div:nth-child(2) { --card-image: url("./assets/backgrounds/ai-market.jpg"); --card-position: 18% center; }
#page-digital .process-row > div:nth-child(3) { --card-image: url("./assets/backgrounds/event-activation.jpg"); --card-position: 67% center; }
#page-digital .process-row > div:nth-child(4) { --card-image: url("./assets/backgrounds/optimisation-growth.jpg"); --card-position: center 42%; }
#page-digital .process-row > div { --card-overlay: linear-gradient(180deg,rgba(255,253,249,.73),rgba(255,253,249,.9)); }
#page-digital .two-case-grid article:nth-child(1) { --card-image: url("./assets/backgrounds/restaurant-growth.jpg"); --card-overlay: rgba(239,230,218,.82); }
#page-digital .two-case-grid article:nth-child(2) { --card-image: url("./assets/backgrounds/creator-studio.jpg"); --card-overlay: rgba(198,218,248,.78); }

/* Platform growth */
#page-platform .two-case-grid article:nth-child(1) { --card-image: url("./assets/backgrounds/restaurant-growth.jpg"); --card-overlay: rgba(239,230,218,.82); }
#page-platform .two-case-grid article:nth-child(2) { --card-image: url("./assets/backgrounds/ai-market.jpg"); --card-overlay: rgba(198,218,248,.78); }

/* Events — formats and selected activations */
#page-events .type-grid > div { --card-overlay: linear-gradient(180deg,rgba(255,253,248,.7),rgba(255,253,248,.9)); }
#page-events .type-grid > div:nth-child(1),
#page-events .type-grid > div:nth-child(2),
#page-events .type-grid > div:nth-child(6) { --card-image: url("./assets/backgrounds/event-activation.jpg"); }
#page-events .type-grid > div:nth-child(3) { --card-image: url("./assets/backgrounds/restaurant-growth.jpg"); }
#page-events .type-grid > div:nth-child(4) { --card-image: url("./assets/backgrounds/lifestyle-community.jpg"); }
#page-events .type-grid > div:nth-child(5) { --card-image: url("./assets/backgrounds/creator-studio.jpg"); }
#page-events .type-grid > div:nth-child(2), #page-events .type-grid > div:nth-child(5) { --card-position: right center; }
#page-events .three-case-grid article:nth-child(1) { --card-image: url("./assets/backgrounds/ai-market.jpg"); --card-overlay: rgba(234,225,213,.82); }
#page-events .three-case-grid article:nth-child(2) { --card-image: url("./assets/backgrounds/event-activation.jpg"); --card-overlay: rgba(198,218,248,.78); }
#page-events .three-case-grid article:nth-child(3) { --card-image: url("./assets/backgrounds/restaurant-growth.jpg"); --card-overlay: rgba(255,210,97,.8); }

/* Go-to-market framework */
#page-gtm .framework-row > div { --card-image: url("./assets/backgrounds/ai-market.jpg"); --card-overlay: linear-gradient(180deg,rgba(17,28,25,.72),rgba(17,28,25,.91)); }
#page-gtm .framework-row > div:nth-of-type(1) { --card-position: 5% center; }
#page-gtm .framework-row > div:nth-of-type(2) { --card-position: 25% center; }
#page-gtm .framework-row > div:nth-of-type(3) { --card-position: 48% center; }
#page-gtm .framework-row > div:nth-of-type(4) { --card-position: 72% center; }
#page-gtm .framework-row > div:nth-of-type(5) { --card-position: 95% center; }

/* Business solutions — each scenario gets its own visual cue */
#page-solutions .type-grid > div { --card-overlay: linear-gradient(180deg,rgba(255,252,247,.72),rgba(255,252,247,.9)); }
#page-solutions .type-grid > div:nth-child(1) { --card-image: url("./assets/backgrounds/creator-studio.jpg"); }
#page-solutions .type-grid > div:nth-child(2) { --card-image: url("./assets/backgrounds/restaurant-growth.jpg"); }
#page-solutions .type-grid > div:nth-child(3) { --card-image: url("./assets/backgrounds/ai-market.jpg"); }
#page-solutions .type-grid > div:nth-child(4) { --card-image: url("./assets/backgrounds/event-activation.jpg"); }

.combo-grid { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.combo-grid article { min-height:430px; padding:34px; display:flex; flex-direction:column; border-radius:22px; background:#eee5da; }
.combo-grid article:last-child { background:#c9dcfb; }
.combo-grid article > span { font-family:"DM Mono",monospace; font-size:10px; }
.combo-grid h3 { margin:52px 0 24px; font-size:clamp(30px,3vw,48px); line-height:1.08; }
.combo-grid p { margin:auto 0 0; color:var(--muted); line-height:1.6; }
.formula { display:flex; align-items:center; flex-wrap:wrap; gap:9px; font-size:12px; }
.formula b { padding:8px 12px; border:1px solid var(--line); border-radius:18px; }

.value-grid { display:grid; grid-template-columns:repeat(4,1fr); border-top:1px solid var(--line); }
.value-grid > div { min-height:210px; padding:25px; border-right:1px solid var(--line); }
.value-grid span { font-family:"DM Mono",monospace; font-size:10px; color:var(--orange); }
.value-grid h3 { margin-top:95px; font-size:24px; }
.industry-row { display:flex; flex-wrap:wrap; gap:12px; }
.industry-row span { padding:18px 25px; border:1px solid var(--line); border-radius:32px; font-size:20px; }
.working-style { padding:100px 7vw; display:flex; justify-content:space-between; align-items:flex-end; gap:40px; color:#fff; background:var(--deep); }
.working-style h2 { margin:22px 0 0; }

.contact-page { min-height:100vh; padding:160px 7vw 80px; display:grid; grid-template-columns:.8fr 1.2fr; gap:8vw; color:#fff; background:linear-gradient(140deg,#ec642e,#c8441e); }
.contact-intro h1 { font-size:clamp(58px,6.4vw,103px); }
.contact-intro h1 em { color:var(--yellow); }
.contact-intro > p { max-width:590px; font-size:17px; line-height:1.7; }
.direct-contact { margin-top:55px; display:grid; gap:12px; font-size:13px; }
.direct-contact a { font-size:20px; font-weight:750; }
.contact-form { display:grid; grid-template-columns:1fr 1fr; gap:22px 18px; }
.contact-form label { display:grid; gap:10px; }
.contact-form label.full { grid-column:1/-1; }
.contact-form label > span { font-family:"DM Mono",monospace; font-size:10px; letter-spacing:.08em; }
.contact-form input, .contact-form select, .contact-form textarea { width:100%; border:0; border-bottom:1px solid rgba(255,255,255,.5); border-radius:0; padding:12px 0; outline:0; color:#fff; background:transparent; font-size:16px; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color:rgba(255,255,255,.58); }
.contact-form select option { color:var(--ink); }
.contact-form textarea { min-height:110px; resize:vertical; }
.submit-button { grid-column:1/-1; min-height:60px; margin-top:10px; padding:0 24px; display:flex; align-items:center; justify-content:space-between; border:0; border-radius:30px; background:#fff; cursor:pointer; font-weight:750; }
.form-status { grid-column:1/-1; min-height:22px; margin:0; font-size:13px; }
.partner-strip { grid-column:1/-1; margin-top:20px; padding-top:28px; display:grid; grid-template-columns:1.4fr repeat(3,1fr); gap:20px; border-top:1px solid rgba(255,255,255,.35); font-size:12px; }

footer { padding:38px 4vw; display:grid; grid-template-columns:1fr 1fr 1fr; align-items:center; gap:20px; color:#fff; background:#161a18; font-size:11px; }
footer p { margin:0; text-align:center; }
footer > div { display:flex; justify-content:flex-end; gap:24px; }

.reveal { opacity:0; transform:translateY(22px); transition:opacity .7s ease,transform .7s ease; }
.reveal.visible { opacity:1; transform:none; }

@media (max-width: 1120px) {
  .desktop-nav { gap:12px; }
  .desktop-nav a { font-size:10px; }
  .header-cta span { display:none; }
  .header-cta { width:44px; padding:0; justify-content:center; }
  .capability-grid, .case-grid, .why-grid, .ops-grid, .value-grid { grid-template-columns:repeat(2,1fr); }
}

@media (max-width: 900px) {
  .site-header { left:14px; right:14px; padding-left:20px; }
  .desktop-nav, .header-cta { display:none; }
  .menu-toggle { display:block; }
  .site-header { grid-template-columns:1fr auto; }
  .hero-content, .page-hero-copy { width:100%; }
  .home-hero { padding:145px 6vw 100px; align-items:flex-end; }
  .home-hero::after { background:linear-gradient(0deg,rgba(239,100,47,.75) 0%,rgba(239,100,47,.1) 65%); }
  .hero-glow i:nth-child(1) { width:66vw; height:66vw; right:-5vw; top:13%; opacity:.86; }
  .hero-glow i:nth-child(2) { width:19vw; height:19vw; right:51vw; top:32%; }
  .hero-index { display:none; }
  .section, .why-section, .diagnosis-banner, .founder-proof, .not-ppt, .framework, .working-style { padding:85px 6vw; }
  .split-heading, .diagnosis-banner, .founder-proof, .contact-page { grid-template-columns:1fr; gap:52px; }
  .capability-grid, .case-grid { grid-template-columns:1fr 1fr; }
  .page-hero { min-height:700px; padding:160px 6vw 80px; align-items:flex-end; }
  .page-orb { width:55vw; height:55vw; right:-5vw; top:15%; }
  .type-grid, .delivery-grid, .three-case-grid { grid-template-columns:1fr 1fr; }
  .framework-row { grid-template-columns:1fr; }
  .framework-row > div { min-height:110px; border-right:1px solid rgba(255,255,255,.2); border-bottom:0; }
  .framework-row > div:last-child { border-bottom:1px solid rgba(255,255,255,.2); }
  .contact-page { padding:145px 6vw 70px; }
  .partner-strip { grid-template-columns:1fr 1fr; }
  .stack-grid { margin-right:-6vw; padding-right:6vw; scroll-padding-inline:6vw; }
  .stack-grid > div { flex:0 0 72vw; min-height:420px; }
}

@media (max-width: 640px) {
  .brand { font-size:15px; }
  .language-toggle { min-width:48px; padding:0 12px; }
  h1 { font-size:clamp(47px,14vw,69px); }
  h2 { font-size:clamp(39px,11vw,58px); }
  .home-hero { min-height:760px; }
  .home-hero h1 { max-width:94vw; }
  .hero-content > p, .page-hero-copy > p { font-size:15px; line-height:1.55; }
  .button { width:100%; }
  .button.text { width:auto; }
  .section-label { margin-bottom:42px; }
  .split-heading { gap:38px; }
  .split-heading .lead { font-size:21px; }
  .capability-grid, .case-grid, .why-grid, .process-row, .two-case-grid, .three-case-grid, .ops-grid, .type-grid, .delivery-grid, .combo-grid, .value-grid { grid-template-columns:1fr; }
  .capability-card { min-height:300px; }
  .capability-card h3 { margin-top:60px; }
  .why-grid > div, .why-grid > div:not(:first-child) { min-height:230px; padding:25px 0; border-right:0; border-bottom:1px solid rgba(255,255,255,.16); }
  .why-grid h3 { margin-top:45px; }
  .case-card { min-height:300px; }
  .diagnosis-banner { gap:34px; }
  .page-hero { min-height:650px; }
  .page-hero h1 { font-size:clamp(46px,13vw,67px); }
  .page-orb { width:72vw; height:72vw; top:13%; right:-15vw; opacity:.58; }
  .stack-grid > div, .stack-grid > div:last-child { min-height:380px; padding:28px; }
  .process-row > div { min-height:125px; border-right:1px solid var(--line); border-bottom:0; }
  .process-row > div:last-child { border-bottom:1px solid var(--line); }
  .two-case-grid article, .three-case-grid article { min-height:270px; }
  .proof-list { grid-template-columns:1fr; }
  .type-grid > div { min-height:110px; }
  .combo-grid article { min-height:390px; }
  .value-grid > div { min-height:150px; border-bottom:1px solid var(--line); }
  .value-grid h3 { margin-top:55px; }
  .working-style { align-items:flex-start; flex-direction:column; }
  .contact-form { grid-template-columns:1fr; }
  .contact-form label.full, .submit-button, .form-status { grid-column:auto; }
  .partner-strip { grid-template-columns:1fr; }
  footer { grid-template-columns:1fr; text-align:left; }
  footer p { text-align:left; }
  footer > div { justify-content:flex-start; flex-wrap:wrap; }
}

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