/* Leaf & Light Studio rebrand - August 2026 */
:root {
  --bg: #fbf2e6;
  --panel: #fffaf2;
  --panel-2: #f3e2cc;
  --line: rgba(62, 46, 32, .16);
  --text: #3e2e20;
  --muted: #6e6257;
  --white: #fffaf2;
  --gold: #f2a20a;
  --soil: #3e2e20;
  --forest: #2e4b2e;
  --moss: #a8b89a;
  --clay: #dcc2a1;
  --shadow: 0 24px 64px rgba(62, 46, 32, .12);
  --radius: 28px;
}

@font-face {
  font-family: "DejaVu Sans";
  src: local("DejaVu Sans");
  font-display: swap;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 92px; }

body.leaf-light-brand {
  margin: 0;
  overflow-x: clip;
  background: var(--bg);
  color: var(--soil);
  font-family: "DejaVu Sans", Arial, sans-serif;
  line-height: 1.65;
}

body.leaf-light-brand::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 8% 18%, rgba(242, 162, 10, .12) 0 110px, transparent 112px),
    radial-gradient(circle at 93% 42%, rgba(168, 184, 154, .18) 0 150px, transparent 152px),
    radial-gradient(circle at 15% 84%, rgba(220, 194, 161, .22) 0 180px, transparent 182px);
}

a { color: inherit; }
img { max-width: 100%; }
.container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: 78px;
  background: rgba(46, 75, 46, .96);
  border-bottom: 1px solid rgba(251, 242, 230, .15);
  box-shadow: 0 12px 32px rgba(38, 52, 34, .16);
  backdrop-filter: blur(18px);
}

.header .nav { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 26px; }
.brand-logo-link { display: block; padding: 10px 0; }
.brand-logo-link img { width: 206px; height: 58px; object-fit: contain; object-position: left center; }
.brand-name { display: none; }
.nav-actions { display: flex; align-items: center; gap: 16px; }
.menu { display: flex; align-items: center; gap: 5px; }
.menu a {
  color: #fbf2e6;
  padding: 10px 12px;
  border-radius: 999px;
  font-size: .81rem;
  font-weight: 700;
  letter-spacing: .02em;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}
.menu a:hover, .menu a.active { color: var(--soil); background: var(--clay); transform: translateY(-1px); }
.menu a::after { background: var(--gold) !important; }
.menu a.cta { background: var(--gold); color: var(--soil); box-shadow: 0 7px 0 rgba(62, 46, 32, .25); }
.menu a.cta:hover { transform: translateY(2px); box-shadow: 0 4px 0 rgba(62, 46, 32, .25); }
.language-switcher { position: relative; }
.language-toggle {
  min-width: 62px;
  min-height: 42px;
  border: 1px solid rgba(251, 242, 230, .3);
  border-radius: 999px;
  background: rgba(251, 242, 230, .1);
  color: #fbf2e6;
  font: inherit;
  font-weight: 700;
}
.language-menu { top: calc(100% + 12px); right: 0; background: var(--panel); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); overflow: hidden; }
.language-menu button { color: var(--soil); background: transparent; font-family: inherit; }
.language-menu button:hover { background: rgba(168,184,154,.24); }

.hero {
  position: relative;
  min-height: min(790px, calc(100svh - 78px));
  display: grid;
  align-items: center;
  padding: 86px 0 64px;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(251,242,230,.98) 0%, rgba(251,242,230,.92) 48%, rgba(251,242,230,.12) 78%),
    url("../images/brand/web-hero.png") center / cover no-repeat;
}
.hero::before { display: none !important; }
.hero::after {
  content: "";
  position: absolute;
  left: -7vw;
  bottom: -135px;
  width: 330px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(242,162,10,.18);
  z-index: -1;
}
.hero-bg { display: none !important; }
.hero-content { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr); gap: 42px; align-items: center; }
.hero-copy { max-width: 680px; }
.eyebrow {
  color: var(--forest);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.hero h1 {
  max-width: 700px;
  margin: 15px 0 22px;
  color: var(--soil);
  font-size: clamp(3rem, 6.4vw, 6.6rem);
  line-height: .94;
  letter-spacing: -.06em;
  text-wrap: balance;
  text-transform: none;
}
.hero-copy > p { max-width: 630px; margin: 0 0 25px; color: #5d5146; font-size: clamp(1rem, 1.4vw, 1.18rem); }
.hero-pills { display: flex; flex-wrap: wrap; gap: 9px; margin: 0 0 28px; }
.hero-pills span, .tag {
  border: 1px solid rgba(46,75,46,.22);
  border-radius: 999px;
  background: rgba(255,250,242,.84);
  color: var(--forest);
  padding: 7px 12px;
  font-size: .75rem;
  font-weight: 800;
}
.hero-buttons { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-buttons .btn { color: var(--soil) !important; }
.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 21px;
  border: 2px solid var(--soil);
  border-radius: 999px;
  background: var(--gold);
  color: var(--soil);
  font-family: inherit;
  font-weight: 800;
  box-shadow: 0 7px 0 var(--soil);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { background: #ffb31f; transform: translateY(3px); box-shadow: 0 4px 0 var(--soil); }
.hero-buttons .btn + .btn { background: var(--panel); }

.hero-side { position: relative; min-height: 540px; display: flex; align-items: flex-end; justify-content: center; }
.hero-brand-art { display: none; }
.hero-side .side-card, .hero-cover-control { display: none !important; }
@keyframes leaf-float { 0%,100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-12px) rotate(1deg); } }

.section { position: relative; padding: 104px 0; border: 0; background: transparent; }
.section:nth-of-type(odd) { background: rgba(243,226,204,.42); }
.section-head { display: grid; grid-template-columns: 190px 1fr; gap: 38px; margin-bottom: 42px; align-items: start; }
.section-head h2, .partnership-hero h2, .contact-intro h2 {
  margin: 0;
  color: var(--soil);
  font-size: clamp(2.35rem, 5vw, 4.8rem);
  line-height: .98;
  letter-spacing: -.045em;
  text-wrap: balance;
}
.section-head p { max-width: 780px; margin: 16px 0 0; color: var(--muted); font-size: 1rem; }
.section-index { display: inline-flex; align-items: center; gap: 10px; }
.section-index::before { content: ""; width: 32px; height: 4px; border-radius: 9px; background: var(--gold); }

.project-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.project-card, .service-card, .partnership-item, .crew-card, .contact-card, .inquiry-choice-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,250,242,.92);
  color: var(--soil);
  box-shadow: var(--shadow);
}
.project-card { display: flex; flex-direction: column; transition: transform .25s ease, box-shadow .25s ease; }
.project-card:hover { transform: translateY(-7px) rotate(-.25deg); box-shadow: 0 30px 70px rgba(62,46,32,.16); }
.project-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--forest); }
.project-media > img:first-child { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.project-card:hover .project-media > img:first-child { transform: scale(1.045); }
.project-identity { position: absolute; left: 17px; bottom: 17px; width: 74px; height: 74px; border-radius: 18px; overflow: hidden; box-shadow: 0 8px 24px rgba(0,0,0,.25); }
.project-status { position: absolute; top: 16px; right: 16px; padding: 7px 11px; border-radius: 999px; background: var(--gold); color: var(--soil); font-size: .72rem; font-weight: 800; }
.project-body { padding: 25px; display: flex; flex: 1; flex-direction: column; }
.project-kicker { color: var(--forest); font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.project-title h3 { margin: 4px 0 10px; color: var(--soil); font-size: 1.65rem; line-height: 1.1; }
.project-body p { color: var(--muted); }
.tag-row { display: flex; flex-wrap: wrap; gap: 7px; margin: auto 0 17px; }
.project-actions { border-top: 1px solid var(--line); padding-top: 17px; }
.store-link { color: var(--forest); }
.project-trailer { overflow: hidden; border-radius: 17px; }

.service-grid, .partnership-grid, .inquiry-choice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.services-grid { display: grid !important; grid-template-columns: repeat(3, minmax(0, 1fr)) !important; gap: 20px !important; }
.service-card, .partnership-item { padding: 30px; }
.service-card::before, .partnership-item::before { content: "✦"; display: block; margin-bottom: 20px; color: var(--gold); font-size: 1.8rem; }
.service-card h3, .partnership-item h3, .crew-card h3 { color: var(--forest); }
.service-card p, .partnership-item p { color: var(--muted); }
.service-card:hover, .inquiry-choice-card:hover { border-color: var(--gold); background: #fff7e9; }
.service-card.service-card--pillar {
  min-height: 360px !important;
  padding: 30px !important;
  border: 1px solid var(--line) !important;
  border-radius: var(--radius) !important;
  background: rgba(255,250,242,.96) !important;
  color: var(--soil) !important;
  box-shadow: var(--shadow) !important;
  transform: none !important;
}
.service-card.service-card--pillar::after { display: none !important; }
.service-card.service-card--pillar h3 { color: var(--forest) !important; }
.service-card.service-card--pillar p, .service-scope, .service-product-label { color: var(--muted) !important; }
.service-card.service-card--pillar .service-icon { border-color: rgba(62,46,32,.16) !important; background: rgba(242,162,10,.12) !important; color: var(--gold) !important; box-shadow: none !important; }
.service-card.service-card--pillar:hover, .service-card.service-card--pillar.is-selected { border-color: var(--gold) !important; background: #fff7e9 !important; transform: translateY(-5px) !important; }
.service-upgrade-arrows { display: none !important; }
.service-selection-status--static { color: var(--muted) !important; }
.service-flow { margin-top: 22px; padding: 28px; border-radius: var(--radius); background: var(--forest); color: var(--bg); }
.service-flow h3, .service-flow .eyebrow { color: var(--gold); }
.service-flow p { color: rgba(251,242,230,.8); }

#how-we-work { background: var(--forest); color: var(--bg); }
#how-we-work .section-head h2, #how-we-work .section-head p, #how-we-work .eyebrow { color: var(--bg); }
.approach-card { border-color: rgba(251,242,230,.18); background: rgba(255,255,255,.05); box-shadow: none; }
.approach { border: 1px solid rgba(251,242,230,.14) !important; border-radius: var(--radius) !important; background: rgba(31,55,32,.4) !important; box-shadow: none !important; }
.approach-copy h2 { color: var(--bg) !important; }
.approach-copy p { color: rgba(251,242,230,.78) !important; }
.approach-pills span { color: var(--gold) !important; }
.approach-visual { border-color: rgba(251,242,230,.14) !important; background: rgba(251,242,230,.06) !important; filter: none !important; }
.talent-orbit { border-color: rgba(251,242,230,.16) !important; }
.orbit-node { border-color: rgba(251,242,230,.18) !important; background: var(--forest) !important; color: var(--bg) !important; box-shadow: none !important; }
.core-node { border-color: var(--gold) !important; background: var(--bg) !important; color: var(--soil) !important; box-shadow: 0 0 0 10px rgba(242,162,10,.08) !important; }
.orbit-caption { color: rgba(251,242,230,.72) !important; }
.orbit-caption span { background: var(--gold) !important; }

.crew-layout, .contact-layout { display: grid; grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr); gap: 28px; align-items: start; }
.crew-card { padding: 32px; }
.leadership-grid { display: grid !important; grid-template-columns: minmax(0, 1.55fr) minmax(300px, .75fr) !important; gap: 24px !important; }
.leader-card, .info-card { border: 1px solid var(--line) !important; border-radius: var(--radius) !important; background: rgba(255,250,242,.94) !important; color: var(--soil) !important; box-shadow: var(--shadow) !important; }
.leader-copy h3, .info-card h3 { color: var(--forest) !important; }
.leader-copy p, .info-card p { color: var(--muted) !important; }
.leader-tags span, .skill-list span { border-color: rgba(46,75,46,.18) !important; background: rgba(168,184,154,.2) !important; color: var(--forest) !important; }
.crew-work-item { border-color: var(--line) !important; border-radius: 18px !important; background: var(--panel) !important; }
.crew-photo, .crew-photo img { border-radius: 24px; }
.experience-card, .qualification-card { border-color: var(--line); background: var(--panel); color: var(--soil); }
.experience-card p, .qualification-card p { color: var(--muted); }

.portfolio-groups { display: grid; gap: 42px; }
.portfolio-grid.cinematic-grid { padding: 28px !important; border: 1px solid var(--line) !important; border-radius: var(--radius) !important; background: rgba(255,250,242,.76) !important; box-shadow: var(--shadow) !important; }
.portfolio-chapter { border-color: var(--line) !important; border-radius: 20px !important; background: var(--forest) !important; color: var(--bg) !important; box-shadow: none !important; }
.portfolio-chapter-label { color: var(--gold) !important; }
.portfolio-group { padding: 25px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,250,242,.72); }
.portfolio-group h3 { color: var(--forest); }
.shot { overflow: hidden; border-radius: 20px; background: var(--soil); box-shadow: 0 16px 40px rgba(62,46,32,.14); }
.shot img { width: 100%; }
.shot figcaption { background: rgba(46,75,46,.95); color: var(--bg); }
.portfolio-lightbox { background: rgba(35,29,23,.92); }

#partnerships { overflow: hidden; background: var(--clay); }
#partnerships::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -30px;
  width: 390px;
  height: 480px;
  background: url("../images/brand/explorer-map-web.png") center bottom / contain no-repeat;
  opacity: .26;
  pointer-events: none;
}
.partnership-hero { max-width: 850px; position: relative; z-index: 2; }
.partnership-grid { position: relative; z-index: 2; margin-top: 35px; padding-right: 180px; }
.partnership-item { background: rgba(251,242,230,.86); }
.partnership-paths { position: relative; z-index: 2; display: grid !important; grid-template-columns: repeat(3, minmax(0, 1fr)) !important; gap: 20px !important; }
.partnership-path { padding: 28px !important; border: 1px solid rgba(62,46,32,.15) !important; border-radius: var(--radius) !important; background: rgba(251,242,230,.86) !important; color: var(--soil) !important; box-shadow: var(--shadow) !important; }
.partnership-path > span { color: var(--forest) !important; }
.partnership-path h3 { color: var(--soil) !important; }
.partnership-path p { color: var(--muted) !important; }

#contact { background: var(--bg); }
.contact-intro { position: sticky; top: 110px; }
.contact-intro::after {
  content: "";
  display: block;
  width: min(290px, 70%);
  aspect-ratio: 1;
  margin: 28px auto -15px;
  background: url("../images/brand/lumi-web.png") center / contain no-repeat;
}
.contact-card { padding: 28px; }
.contact-plane-bg { opacity: .16 !important; filter: sepia(1) saturate(.5) hue-rotate(45deg) !important; }
.contact-copy-block h2 { color: var(--soil) !important; }
.contact-copy-block p { color: var(--muted) !important; opacity: 1 !important; }
.contact-email, .copy-icon-btn { border-color: var(--line) !important; background: var(--panel) !important; color: var(--forest) !important; }
.inquiry-choice-grid { grid-template-columns: repeat(2, 1fr); }
.inquiry-choice, .inquiry-choice-card { padding: 18px !important; border: 1px solid var(--line) !important; border-radius: 18px !important; background: var(--panel) !important; color: var(--soil) !important; box-shadow: none !important; }
.inquiry-choice { min-height: 106px !important; display: flex !important; align-items: center !important; gap: 13px !important; text-align: left !important; }
.inquiry-choice-icon { width: 46px !important; height: 46px !important; min-width: 46px !important; display: grid !important; place-items: center !important; border-radius: 14px !important; background: rgba(242,162,10,.12) !important; color: var(--forest) !important; }
.inquiry-choice-icon svg { width: 25px !important; height: 25px !important; max-width: 25px !important; }
.inquiry-choice > span:last-child { display: grid !important; gap: 3px !important; }
.inquiry-choice strong { color: var(--soil) !important; font-size: .95rem !important; }
.inquiry-choice small { color: var(--muted) !important; font-size: .75rem !important; line-height: 1.35 !important; }
.inquiry-choice:hover, .inquiry-choice[aria-pressed="true"], .inquiry-choice-card.is-active { border-color: var(--gold) !important; background: rgba(242,162,10,.1) !important; }
.inquiry-detail-card { border-color: var(--line) !important; background: rgba(168,184,154,.16) !important; color: var(--soil) !important; }
.contact-form label > span, .hiring-group-label { color: var(--forest); font-weight: 800; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  border: 1px solid rgba(62,46,32,.22);
  border-radius: 14px;
  background: #fffdf8;
  color: var(--soil);
  font: inherit;
  outline: none;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(242,162,10,.16); }
.hiring-group { border-color: var(--line); background: rgba(220,194,161,.18); }
.form-note, .field-helper { color: var(--muted); }

.ambient-audio { border: 1px solid rgba(251,242,230,.18); border-radius: 20px; background: rgba(46,75,46,.94); color: var(--bg); box-shadow: var(--shadow); }
.ambient-toggle { color: var(--bg); }
.back-to-top-btn { border: 2px solid var(--soil); background: var(--gold); color: var(--soil); box-shadow: 0 5px 0 var(--soil); }

.footer { padding: 45px 0; background: var(--soil); color: var(--bg); border: 0; }
.footer-brand-card img { width: 225px; height: 68px; object-fit: contain; object-position: left; }
.footer-brand-card span { display: none; }
.footer-copyright { color: rgba(251,242,230,.7); }
.social-link { border: 1px solid rgba(251,242,230,.18); border-radius: 999px; color: var(--bg); }
.social-link:hover { background: var(--gold); color: var(--soil); }

@media (max-width: 1060px) {
  .menu a { padding-inline: 8px; font-size: .73rem; }
  .hero-content { grid-template-columns: 1fr .75fr; }
  .project-grid { grid-template-columns: repeat(2, 1fr); }
  .project-card:last-child { grid-column: 1 / -1; max-width: 570px; justify-self: center; }
}

@media (max-width: 820px) {
  .container { width: min(100% - 30px, 680px); }
  .header { position: relative; }
  .header .nav { min-height: auto; padding: 14px 0; align-items: flex-start; }
  .brand-logo-link img { width: 175px; height: 50px; }
  .nav-actions { gap: 8px; }
  .menu { display: none; }
  .hero { min-height: auto; padding: 62px 0 0; background-position: 54% center; }
  .hero-content { grid-template-columns: 1fr; gap: 12px; }
  .hero-copy { max-width: 610px; }
  .hero h1 { font-size: clamp(3rem, 14vw, 5.8rem); }
  .hero-side { min-height: 390px; justify-content: flex-end; }
  .hero-brand-art { width: min(78vw, 430px); }
  .section { padding: 78px 0; }
  .section-head { grid-template-columns: 1fr; gap: 12px; }
  .project-grid, .service-grid, .partnership-grid, .crew-layout, .contact-layout { grid-template-columns: 1fr; }
  .services-grid, .leadership-grid, .partnership-paths { grid-template-columns: 1fr !important; }
  .project-card:last-child { grid-column: auto; max-width: none; }
  .partnership-grid { padding-right: 0; }
  #partnerships::after { opacity: .1; }
  .contact-intro { position: static; }
}

@media (max-width: 540px) {
  .hero { background-image: linear-gradient(rgba(251,242,230,.9), rgba(251,242,230,.85)), url("../images/brand/web-hero.png"); }
  .hero h1 { font-size: clamp(2.75rem, 14vw, 4.3rem); }
  .hero-copy > p { font-size: .96rem; }
  .hero-buttons .btn { width: 100%; }
  .hero-side { min-height: 320px; }
  .section-head h2, .partnership-hero h2, .contact-intro h2 { font-size: 2.5rem; }
  .project-grid, .service-grid, .partnership-grid, .inquiry-choice-grid { grid-template-columns: 1fr; }
  .project-body, .service-card, .partnership-item, .crew-card, .contact-card { padding: 21px; }
  .footer-row { align-items: flex-start; gap: 24px; }
}

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

/* Dark brand refinement: one visual system, no legacy theme bleed. */
body.leaf-light-brand {
  --bg: #0d110c;
  --panel: #161c14;
  --panel-2: #20281d;
  --line: rgba(251, 242, 230, .13);
  --text: #fbf2e6;
  --muted: #c2b9ac;
  --white: #fbf2e6;
  --gold: #f2a20a;
  --soil: #3e2e20;
  --forest: #2e4b2e;
  --moss: #a8b89a;
  --clay: #dcc2a1;
  --shadow: 0 26px 80px rgba(0, 0, 0, .34);
  background:
    radial-gradient(circle at 12% 8%, rgba(46, 75, 46, .22), transparent 27rem),
    radial-gradient(circle at 92% 38%, rgba(242, 162, 10, .08), transparent 24rem),
    #0d110c !important;
  color: var(--text) !important;
  font-family: "DejaVu Sans", Arial, sans-serif !important;
  font-size: 16px;
  line-height: 1.65;
}

body.leaf-light-brand::before {
  background:
    linear-gradient(rgba(251,242,230,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(251,242,230,.018) 1px, transparent 1px) !important;
  background-size: 64px 64px !important;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.35), transparent 82%);
}

body.leaf-light-brand .header {
  min-height: 80px;
  background: rgba(12, 17, 11, .9) !important;
  border-bottom: 1px solid rgba(251, 242, 230, .1) !important;
  box-shadow: 0 14px 42px rgba(0,0,0,.26) !important;
}

body.leaf-light-brand .menu a { color: rgba(251,242,230,.78) !important; }
body.leaf-light-brand .menu a:hover,
body.leaf-light-brand .menu a.active { color: var(--text) !important; background: rgba(251,242,230,.08) !important; }
body.leaf-light-brand .menu a.cta { color: #211708 !important; background: var(--gold) !important; box-shadow: none !important; }
body.leaf-light-brand .language-toggle { background: rgba(251,242,230,.05) !important; color: var(--text) !important; }
body.leaf-light-brand .language-menu { background: #171d15 !important; border-color: var(--line) !important; }
body.leaf-light-brand .language-menu button { color: var(--text) !important; }

body.leaf-light-brand .hero {
  min-height: min(820px, calc(100svh - 80px));
  padding: 92px 0 76px;
  background:
    linear-gradient(90deg, rgba(10,13,9,.98) 0%, rgba(10,13,9,.93) 42%, rgba(10,13,9,.43) 69%, rgba(10,13,9,.08) 100%),
    linear-gradient(180deg, rgba(10,13,9,.08) 56%, #0d110c 100%),
    url("../images/brand/web-hero.png") 58% center / cover no-repeat !important;
}

body.leaf-light-brand .hero::after {
  left: auto;
  right: 44%;
  bottom: 12%;
  width: 180px;
  background: rgba(242,162,10,.08);
  filter: blur(26px);
}

body.leaf-light-brand .hero-content { grid-template-columns: minmax(0, .92fr) minmax(380px, 1.08fr) !important; }
body.leaf-light-brand .hero-copy { max-width: 640px; }
body.leaf-light-brand .eyebrow { color: var(--gold) !important; }
body.leaf-light-brand .hero h1 {
  color: var(--text) !important;
  font-size: clamp(3.7rem, 6.4vw, 6.7rem);
  line-height: .92;
  letter-spacing: -.055em;
  max-width: 730px;
}
body.leaf-light-brand .hero-copy > p { color: rgba(251,242,230,.72) !important; max-width: 590px; }
body.leaf-light-brand .hero-pills span,
body.leaf-light-brand .tag {
  border-color: rgba(168,184,154,.24) !important;
  background: rgba(168,184,154,.09) !important;
  color: #dbe5d2 !important;
}

body.leaf-light-brand .btn {
  border: 1px solid rgba(251,242,230,.17) !important;
  background: rgba(251,242,230,.07) !important;
  color: var(--text) !important;
  box-shadow: none !important;
  letter-spacing: .01em;
}
body.leaf-light-brand .btn.primary,
body.leaf-light-brand .hero-buttons .btn:first-child,
body.leaf-light-brand .partnership-actions .btn:last-child {
  border-color: var(--gold) !important;
  background: var(--gold) !important;
  color: #211708 !important;
}
body.leaf-light-brand .btn:hover { transform: translateY(-2px) !important; border-color: rgba(242,162,10,.75) !important; background: rgba(242,162,10,.16) !important; }
body.leaf-light-brand .btn.primary:hover,
body.leaf-light-brand .hero-buttons .btn:first-child:hover { background: #ffb221 !important; color: #211708 !important; }
body.leaf-light-brand .hero-buttons .btn { color: var(--text) !important; }

body.leaf-light-brand .section { padding: 112px 0; background: transparent !important; border: 0 !important; }
body.leaf-light-brand .section:nth-of-type(odd) { background: rgba(255,255,255,.012) !important; }
body.leaf-light-brand .section-head { grid-template-columns: 180px minmax(0,1fr) !important; gap: 34px; margin-bottom: 48px; }
body.leaf-light-brand .section-head h2,
body.leaf-light-brand .partnership-hero h2,
body.leaf-light-brand .contact-copy-block h2 {
  color: var(--text) !important;
  font-size: clamp(2.5rem, 4.7vw, 5rem);
  line-height: .98;
  letter-spacing: -.045em;
  text-transform: none;
}
body.leaf-light-brand .section-head p,
body.leaf-light-brand .partnerships-shell .section-head p { color: var(--muted) !important; opacity: 1 !important; }
body.leaf-light-brand .section-index {
  width: max-content;
  padding: 8px 12px !important;
  border: 1px solid var(--line) !important;
  border-radius: 999px;
  background: rgba(251,242,230,.035) !important;
  color: var(--moss) !important;
}
body.leaf-light-brand .section-index::before { background: var(--gold) !important; }

body.leaf-light-brand .project-card,
body.leaf-light-brand .service-card,
body.leaf-light-brand .leader-card,
body.leaf-light-brand .info-card {
  border-color: var(--line) !important;
  background: linear-gradient(145deg, rgba(31,40,28,.96), rgba(19,25,18,.98)) !important;
  color: var(--text) !important;
  box-shadow: var(--shadow) !important;
}
body.leaf-light-brand .project-card:hover { transform: translateY(-6px) !important; }
body.leaf-light-brand .project-media::after {
  content: "";
  position: absolute;
  inset: 38% 0 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent, rgba(13,17,12,.78));
}
body.leaf-light-brand .project-identity,
body.leaf-light-brand .project-status { z-index: 2; }
body.leaf-light-brand .project-body { color: var(--text) !important; }
body.leaf-light-brand .project-title h3 { color: var(--text) !important; }
body.leaf-light-brand .project-kicker { color: var(--gold) !important; }
body.leaf-light-brand .project-body p { color: var(--muted) !important; }
body.leaf-light-brand .project-actions { border-color: var(--line) !important; }
body.leaf-light-brand .store-link { color: var(--gold) !important; }

body.leaf-light-brand .services-grid { gap: 18px !important; }
body.leaf-light-brand .service-card.service-card--pillar {
  min-height: 360px !important;
  border-color: var(--line) !important;
  background: linear-gradient(150deg, rgba(32,41,29,.98), rgba(18,24,17,.98)) !important;
  color: var(--text) !important;
  box-shadow: 0 22px 55px rgba(0,0,0,.25) !important;
}
body.leaf-light-brand .service-card.service-card--pillar h3 { color: var(--text) !important; }
body.leaf-light-brand .service-card.service-card--pillar p,
body.leaf-light-brand .service-card.service-card--pillar .service-scope,
body.leaf-light-brand .service-card.service-card--pillar .service-product-label { color: var(--muted) !important; }
body.leaf-light-brand .service-card.service-card--pillar .service-icon { background: rgba(242,162,10,.1) !important; border-color: rgba(242,162,10,.3) !important; }
body.leaf-light-brand .service-card.service-card--pillar:hover,
body.leaf-light-brand .service-card.service-card--pillar[aria-pressed="true"] { background: linear-gradient(150deg, rgba(44,56,39,.98), rgba(20,27,19,.98)) !important; border-color: rgba(242,162,10,.62) !important; }
body.leaf-light-brand .service-selection-status--static { color: var(--muted) !important; }
body.leaf-light-brand .service-selected-note { background: var(--gold) !important; color: #211708 !important; border: 0 !important; }

body.leaf-light-brand #how-we-work { background: linear-gradient(135deg, #172319, #0f160f) !important; }
body.leaf-light-brand .approach {
  padding: clamp(28px,4vw,54px) !important;
  border-color: var(--line) !important;
  background: rgba(8,12,8,.36) !important;
  box-shadow: var(--shadow) !important;
}
body.leaf-light-brand .approach-copy h2 { color: var(--text) !important; }
body.leaf-light-brand .approach-copy p { color: var(--muted) !important; }
body.leaf-light-brand .approach-visual { background: radial-gradient(circle at center, rgba(242,162,10,.08), rgba(19,30,19,.92) 64%) !important; }
body.leaf-light-brand .orbit-node { background: #1c2a1c !important; color: var(--text) !important; }

body.leaf-light-brand .leader-card,
body.leaf-light-brand .info-card { border-radius: 26px !important; }
body.leaf-light-brand .leadership-grid { grid-template-columns: minmax(0,1.55fr) minmax(320px,.72fr) !important; gap: 18px !important; filter: none !important; }
body.leaf-light-brand .leader-copy h3,
body.leaf-light-brand .info-card h3 { color: var(--text) !important; }
body.leaf-light-brand .leader-copy p,
body.leaf-light-brand .info-card p { color: var(--muted) !important; }
body.leaf-light-brand .leader-tags span,
body.leaf-light-brand .skill-list span { background: rgba(168,184,154,.08) !important; border-color: rgba(168,184,154,.17) !important; color: #dce7d4 !important; }
body.leaf-light-brand .crew-work-item { background: #0c100c !important; border-color: var(--line) !important; }

body.leaf-light-brand #portfolio { background: #0a0e0a !important; }
body.leaf-light-brand #portfolio .portfolio-shell {
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}
body.leaf-light-brand #portfolio .portfolio-grid.cinematic-grid {
  display: grid !important;
  grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
  align-items: stretch !important;
  gap: 16px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}
body.leaf-light-brand #portfolio .portfolio-chapter,
body.leaf-light-brand #portfolio .portfolio-chapter:first-child,
body.leaf-light-brand #portfolio .portfolio-chapter--secondary,
body.leaf-light-brand #portfolio .portfolio-chapter--prison,
body.leaf-light-brand #portfolio .portfolio-chapter--climb {
  grid-column: 1 / -1 !important;
  display: grid !important;
  grid-template-columns: 62px minmax(0,1fr) auto !important;
  align-items: center !important;
  gap: 16px !important;
  margin: 36px 0 4px !important;
  padding: 16px 18px !important;
  border: 1px solid var(--line) !important;
  border-radius: 18px !important;
  background: linear-gradient(90deg, rgba(46,75,46,.42), rgba(23,30,21,.94)) !important;
}
body.leaf-light-brand #portfolio .portfolio-chapter:first-child { margin-top: 0 !important; }
body.leaf-light-brand #portfolio .portfolio-chapter::after { display: none !important; }
body.leaf-light-brand #portfolio .portfolio-chapter-mark { grid-column: 1 !important; grid-row: 1 !important; display: block !important; width: 62px !important; height: 62px !important; border-radius: 14px !important; overflow: hidden !important; }
body.leaf-light-brand #portfolio .portfolio-chapter-mark img { width: 100% !important; height: 100% !important; object-fit: contain !important; }
body.leaf-light-brand #portfolio .portfolio-chapter-label { grid-column: 2 !important; grid-row: 1 !important; color: var(--moss) !important; }
body.leaf-light-brand #portfolio .portfolio-chapter strong { grid-column: 3 !important; grid-row: 1 !important; color: var(--text) !important; font-size: clamp(1.35rem,2vw,2rem) !important; }
body.leaf-light-brand #portfolio .shot.cinema-shot,
body.leaf-light-brand #portfolio .shot[data-project] {
  position: relative !important;
  grid-column: span 4 !important;
  min-width: 0 !important;
  aspect-ratio: 16 / 10 !important;
  overflow: hidden !important;
  border: 1px solid var(--line) !important;
  border-radius: 18px !important;
  clip-path: none !important;
  background: #101610 !important;
  box-shadow: 0 18px 45px rgba(0,0,0,.24) !important;
}
body.leaf-light-brand #portfolio .shot.cinema-project-feature {
  grid-column: span 12 !important;
  aspect-ratio: 21 / 9 !important;
}
body.leaf-light-brand #portfolio .shot img { width: 100% !important; height: 100% !important; object-fit: cover !important; border-radius: 0 !important; }
body.leaf-light-brand #portfolio .shot::after {
  content: "" !important;
  position: absolute !important;
  inset: 36% 0 0 !important;
  z-index: 1 !important;
  background: linear-gradient(to bottom, transparent, rgba(5,8,5,.92)) !important;
}
body.leaf-light-brand #portfolio .shot figcaption {
  position: absolute !important;
  inset: auto 18px 16px !important;
  z-index: 2 !important;
  display: flex !important;
  align-items: end !important;
  justify-content: space-between !important;
  gap: 12px !important;
  padding: 0 !important;
  background: transparent !important;
  color: var(--text) !important;
}
body.leaf-light-brand #portfolio .shot figcaption span { color: var(--gold) !important; }
body.leaf-light-brand #portfolio .shot figcaption strong { color: var(--text) !important; }
body.leaf-light-brand #portfolio .portfolio-open { position: absolute !important; inset: 0 !important; width: 100% !important; height: 100% !important; }

body.leaf-light-brand #partnerships {
  background:
    linear-gradient(90deg, rgba(11,15,10,.99) 0%, rgba(11,15,10,.96) 60%, rgba(11,15,10,.68) 100%),
    url("../images/brand/explorer-map-web.png") 96% 56% / min(42vw, 590px) auto no-repeat !important;
}
body.leaf-light-brand #partnerships::after { display: none !important; }
body.leaf-light-brand #partnerships .partnerships-shell {
  padding: clamp(32px,5vw,66px) !important;
  border: 1px solid var(--line) !important;
  border-radius: 30px !important;
  background: linear-gradient(135deg, rgba(27,35,25,.94), rgba(13,18,12,.94)) !important;
  box-shadow: var(--shadow) !important;
}
body.leaf-light-brand #partnerships .section-head h2 { color: var(--text) !important; }
body.leaf-light-brand .partnership-paths { gap: 14px !important; border-color: var(--line) !important; }
body.leaf-light-brand .partnership-path,
body.leaf-light-brand .partnership-path + .partnership-path {
  padding: 24px !important;
  border: 1px solid var(--line) !important;
  border-radius: 20px !important;
  background: rgba(251,242,230,.045) !important;
  color: var(--text) !important;
  box-shadow: none !important;
}
body.leaf-light-brand .partnership-path > span { color: var(--gold) !important; }
body.leaf-light-brand .partnership-path h3 { color: var(--text) !important; }
body.leaf-light-brand .partnership-path p { color: var(--muted) !important; }

body.leaf-light-brand #contact { background: linear-gradient(180deg, #0d110c, #10160f) !important; padding-bottom: 90px !important; }
body.leaf-light-brand #contact .contact-card {
  padding: clamp(30px,5vw,66px) !important;
  border: 1px solid var(--line) !important;
  border-radius: 32px !important;
  background:
    radial-gradient(circle at 5% 15%, rgba(242,162,10,.08), transparent 28rem),
    linear-gradient(145deg, rgba(28,36,25,.98), rgba(15,20,14,.99)) !important;
  color: var(--text) !important;
  box-shadow: var(--shadow) !important;
}
body.leaf-light-brand .contact-plane-bg { opacity: .08 !important; filter: sepia(1) saturate(.5) !important; }
body.leaf-light-brand .contact-layout {
  display: grid !important;
  grid-template-columns: repeat(12, minmax(0,1fr)) !important;
  gap: 22px !important;
  align-items: start !important;
}
body.leaf-light-brand .contact-copy-block { grid-column: 1 / span 5 !important; grid-row: 1 / span 2 !important; padding-right: 18px; }
body.leaf-light-brand .contact-copy-block h2 { margin: 18px 0 20px !important; font-size: clamp(3rem,5vw,5.6rem) !important; }
body.leaf-light-brand .contact-copy-block p { color: var(--muted) !important; font-size: 1.08rem !important; }
body.leaf-light-brand .contact-email,
body.leaf-light-brand .copy-icon-btn { border-color: var(--line) !important; background: rgba(251,242,230,.055) !important; color: var(--text) !important; }
body.leaf-light-brand .inquiry-choice-grid { grid-column: 6 / -1 !important; grid-row: 1 !important; display: grid !important; grid-template-columns: repeat(2,minmax(0,1fr)) !important; gap: 12px !important; }
body.leaf-light-brand .inquiry-choice {
  min-height: 96px !important;
  border-color: var(--line) !important;
  background: rgba(251,242,230,.035) !important;
  color: var(--text) !important;
}
body.leaf-light-brand .inquiry-choice:hover,
body.leaf-light-brand .inquiry-choice[aria-pressed="true"] { border-color: rgba(242,162,10,.72) !important; background: rgba(242,162,10,.1) !important; }
body.leaf-light-brand .inquiry-choice-icon { background: rgba(242,162,10,.12) !important; color: var(--gold) !important; }
body.leaf-light-brand .inquiry-choice strong { color: var(--text) !important; }
body.leaf-light-brand .inquiry-choice small { color: var(--muted) !important; }
body.leaf-light-brand .contact-form {
  grid-column: 6 / -1 !important;
  grid-row: 2 !important;
  width: 100% !important;
  display: grid !important;
  gap: 14px !important;
  padding: clamp(22px,3vw,34px) !important;
  border: 1px solid var(--line) !important;
  border-radius: 24px !important;
  background: rgba(5,9,5,.46) !important;
  box-shadow: none !important;
}
body.leaf-light-brand .contact-form label { color: var(--text) !important; margin-bottom: 0 !important; }
body.leaf-light-brand .contact-form label > span,
body.leaf-light-brand .hiring-group-label { color: var(--moss) !important; }
body.leaf-light-brand .contact-form input,
body.leaf-light-brand .contact-form select,
body.leaf-light-brand .contact-form textarea {
  min-height: 50px;
  border-color: rgba(251,242,230,.15) !important;
  background: rgba(251,242,230,.055) !important;
  color: var(--text) !important;
}
body.leaf-light-brand .contact-form textarea { min-height: 150px; }
body.leaf-light-brand .contact-form input::placeholder,
body.leaf-light-brand .contact-form textarea::placeholder { color: rgba(251,242,230,.42) !important; }
body.leaf-light-brand .contact-form input:focus,
body.leaf-light-brand .contact-form select:focus,
body.leaf-light-brand .contact-form textarea:focus { border-color: var(--gold) !important; box-shadow: 0 0 0 4px rgba(242,162,10,.12) !important; }
body.leaf-light-brand .inquiry-detail-card { border-color: rgba(242,162,10,.2) !important; background: rgba(242,162,10,.07) !important; color: var(--text) !important; }
body.leaf-light-brand .inquiry-detail-card span { color: var(--gold) !important; }
body.leaf-light-brand .inquiry-detail-card strong { color: var(--text) !important; }
body.leaf-light-brand .inquiry-detail-card p { color: var(--muted) !important; }
body.leaf-light-brand .hiring-group { border-color: var(--line) !important; background: rgba(251,242,230,.035) !important; }
body.leaf-light-brand .form-note,
body.leaf-light-brand .field-helper { color: var(--muted) !important; }

body.leaf-light-brand .footer { background: #090c09 !important; border-top: 1px solid var(--line) !important; }
body.leaf-light-brand .ambient-audio { background: rgba(18,25,17,.94) !important; }

@media (max-width: 1100px) {
  body.leaf-light-brand .hero-content { grid-template-columns: minmax(0,1fr) minmax(300px,.72fr) !important; }
  body.leaf-light-brand .section-head { grid-template-columns: 1fr !important; gap: 14px !important; }
  body.leaf-light-brand .leadership-grid { grid-template-columns: 1fr !important; }
  body.leaf-light-brand .contact-copy-block { grid-column: 1 / span 5 !important; }
  body.leaf-light-brand .inquiry-choice-grid,
  body.leaf-light-brand .contact-form { grid-column: 6 / -1 !important; }
}

@media (max-width: 860px) {
  body.leaf-light-brand .hero {
    min-height: auto;
    padding-bottom: 420px;
    background:
      linear-gradient(180deg, rgba(10,13,9,.98) 0%, rgba(10,13,9,.94) 50%, rgba(10,13,9,.24) 78%, #0d110c 100%),
      url("../images/brand/web-hero.png") 73% bottom / auto 62% no-repeat !important;
  }
  body.leaf-light-brand .hero-content { grid-template-columns: 1fr !important; }
  body.leaf-light-brand .hero-side { display: none !important; }
  body.leaf-light-brand .section { padding: 82px 0; }
  body.leaf-light-brand .project-grid,
  body.leaf-light-brand .services-grid,
  body.leaf-light-brand .partnership-paths { grid-template-columns: 1fr !important; }
  body.leaf-light-brand .project-card:last-child { grid-column: auto !important; max-width: none !important; }
  body.leaf-light-brand #portfolio .shot.cinema-shot,
  body.leaf-light-brand #portfolio .shot[data-project] { grid-column: span 6 !important; }
  body.leaf-light-brand #portfolio .shot.cinema-project-feature { grid-column: span 12 !important; }
  body.leaf-light-brand .contact-layout { grid-template-columns: 1fr !important; }
  body.leaf-light-brand .contact-copy-block,
  body.leaf-light-brand .inquiry-choice-grid,
  body.leaf-light-brand .contact-form { grid-column: 1 !important; grid-row: auto !important; }
  body.leaf-light-brand .contact-copy-block { padding-right: 0; }
}

@media (max-width: 560px) {
  html,
  body.leaf-light-brand { overflow-x: hidden; }
  body.leaf-light-brand .container { width: min(100% - 28px, 680px); }
  body.leaf-light-brand .hero { padding: 58px 0 320px; }
  body.leaf-light-brand .hero-content,
  body.leaf-light-brand .hero-copy { width: 100%; min-width: 0; }
  body.leaf-light-brand .hero .eyebrow {
    max-width: 100%;
    font-size: .68rem;
    line-height: 1.45;
    overflow-wrap: anywhere;
  }
  body.leaf-light-brand .hero h1 {
    max-width: 100%;
    font-size: clamp(2.8rem,13vw,3.7rem);
    overflow-wrap: anywhere;
  }
  body.leaf-light-brand .hero-copy > p { width: 100%; max-width: none; }
  body.leaf-light-brand .hero-buttons .btn { width: 100%; }
  body.leaf-light-brand #portfolio .portfolio-chapter,
  body.leaf-light-brand #portfolio .portfolio-chapter:first-child,
  body.leaf-light-brand #portfolio .portfolio-chapter--secondary,
  body.leaf-light-brand #portfolio .portfolio-chapter--prison,
  body.leaf-light-brand #portfolio .portfolio-chapter--climb { grid-template-columns: 48px 1fr !important; }
  body.leaf-light-brand #portfolio .portfolio-chapter-mark { width: 48px !important; height: 48px !important; }
  body.leaf-light-brand #portfolio .portfolio-chapter-label { display: none !important; }
  body.leaf-light-brand #portfolio .portfolio-chapter strong { grid-column: 2 !important; }
  body.leaf-light-brand #portfolio .shot.cinema-shot,
  body.leaf-light-brand #portfolio .shot[data-project],
  body.leaf-light-brand #portfolio .shot.cinema-project-feature { grid-column: span 12 !important; aspect-ratio: 16 / 10 !important; }
  body.leaf-light-brand .inquiry-choice-grid { grid-template-columns: 1fr !important; }
  body.leaf-light-brand .field-row { grid-template-columns: 1fr !important; }
  body.leaf-light-brand #contact .contact-card { padding: 22px !important; }
}

/* Layout refinement: warm-soil hero, aligned headings and compact smart controls. */
body.leaf-light-brand .hero {
  min-height: min(790px, calc(100svh - 80px));
  padding: 84px 0 64px;
  background: #3e2e20 !important;
}

body.leaf-light-brand .hero::before,
body.leaf-light-brand .hero::after { display: none !important; }

body.leaf-light-brand .hero-content {
  grid-template-columns: minmax(0, 1fr) minmax(380px, .82fr) !important;
  align-items: center;
  padding: 0 !important;
}

body.leaf-light-brand .hero-copy { max-width: 690px; }
body.leaf-light-brand .hero h1 { max-width: 680px; }
body.leaf-light-brand .hero-side {
  min-height: 540px;
  display: flex !important;
  align-items: flex-end;
  justify-content: center;
  overflow: visible;
}

body.leaf-light-brand .hero-brand-art {
  display: block !important;
  width: min(100%, 570px);
  max-height: 580px;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 28px 34px rgba(18, 11, 6, .28));
}

body.leaf-light-brand .section-head {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  gap: 15px !important;
  margin-bottom: 48px;
}

body.leaf-light-brand .section-head > .section-index {
  margin: 0 !important;
}

body.leaf-light-brand .section-head > div:last-child {
  width: min(100%, 980px);
}

body.leaf-light-brand .section-head h2 {
  max-width: 900px;
  margin-top: 0 !important;
}

body.leaf-light-brand #partnerships .section-head {
  gap: 16px !important;
}

body.leaf-light-brand #partnerships .section-head > div:last-child {
  width: min(100%, 920px);
}

body.leaf-light-brand #contact .contact-card {
  padding: clamp(30px, 4vw, 54px) !important;
}

body.leaf-light-brand .contact-layout {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  gap: 24px !important;
}

body.leaf-light-brand .contact-copy-block,
body.leaf-light-brand .inquiry-choice-grid,
body.leaf-light-brand .contact-form {
  grid-column: 1 !important;
  grid-row: auto !important;
}

body.leaf-light-brand .contact-copy-block {
  width: min(100%, 980px);
  padding-right: 0 !important;
}

body.leaf-light-brand .contact-copy-block h2 {
  max-width: 850px;
  margin: 14px 0 14px !important;
  font-size: clamp(2.8rem, 4.6vw, 4.9rem) !important;
}

body.leaf-light-brand .contact-copy-block p {
  max-width: 760px;
  margin-bottom: 18px !important;
}

body.leaf-light-brand .inquiry-choice-grid {
  width: 100%;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 12px !important;
}

body.leaf-light-brand .contact-form {
  width: 100%;
  display: grid !important;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px !important;
  padding: clamp(22px, 2.8vw, 34px) !important;
}

body.leaf-light-brand .contact-form > .inquiry-detail-card,
body.leaf-light-brand .contact-form > .hiring-fields,
body.leaf-light-brand .contact-form > .message-field,
body.leaf-light-brand .contact-form > .form-actions {
  grid-column: 1 / -1;
}

body.leaf-light-brand .contact-form > .field-row { grid-column: span 4; }
body.leaf-light-brand .contact-form > .inquiry-native-field { grid-column: span 2; }
body.leaf-light-brand .contact-form > .company-field,
body.leaf-light-brand .contact-form > #subjectField { grid-column: span 3; }
body.leaf-light-brand .contact-form > label { margin-bottom: 0 !important; }
body.leaf-light-brand .contact-form textarea { min-height: 120px; }

body.leaf-light-brand .ambient-audio {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 120;
  display: flex;
  align-items: center;
  gap: 8px;
  width: auto;
  max-width: calc(100vw - 28px);
  padding: 7px;
  border: 1px solid rgba(251,242,230,.16) !important;
  border-radius: 999px !important;
  background: rgba(24,31,22,.94) !important;
  color: var(--text) !important;
  box-shadow: 0 18px 52px rgba(0,0,0,.38) !important;
  backdrop-filter: blur(16px);
}

body.leaf-light-brand .ambient-toggle {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

body.leaf-light-brand .ambient-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  background: var(--gold);
  color: #2a1b0d;
  font-size: 1.1rem;
  font-weight: 900;
}

body.leaf-light-brand .ambient-copy {
  display: grid;
  min-width: 118px;
  padding-right: 5px;
  line-height: 1.15;
}

body.leaf-light-brand .ambient-label {
  color: var(--text);
  font-size: .78rem;
  font-weight: 900;
}

body.leaf-light-brand .ambient-track {
  max-width: 190px;
  overflow: hidden;
  color: var(--moss);
  font-size: .68rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.leaf-light-brand .ambient-volume {
  display: grid;
  grid-template-columns: auto 92px;
  align-items: center;
  gap: 8px;
  width: 0;
  max-width: 0;
  margin: 0;
  overflow: hidden;
  opacity: 0;
  color: var(--moss);
  font-size: .68rem;
  font-weight: 800;
  white-space: nowrap;
  transition: width .24s ease, max-width .24s ease, opacity .18s ease, margin .24s ease;
}

body.leaf-light-brand .ambient-audio:hover .ambient-volume,
body.leaf-light-brand .ambient-audio:focus-within .ambient-volume,
body.leaf-light-brand .ambient-audio.is-playing .ambient-volume {
  width: 142px;
  max-width: 142px;
  margin-right: 8px;
  opacity: 1;
}

body.leaf-light-brand .ambient-volume input {
  width: 92px;
  accent-color: var(--gold);
}

body.leaf-light-brand .ambient-audio.is-playing .ambient-icon {
  box-shadow: 0 0 0 5px rgba(242,162,10,.13), 0 0 24px rgba(242,162,10,.26);
}

@media (max-width: 980px) {
  body.leaf-light-brand .hero-content { grid-template-columns: minmax(0,1fr) minmax(290px,.72fr) !important; }
  body.leaf-light-brand .hero-side { min-height: 520px; }
  body.leaf-light-brand .inquiry-choice-grid { grid-template-columns: repeat(2,minmax(0,1fr)) !important; }
  body.leaf-light-brand .contact-form > .field-row { grid-column: 1 / -1; }
  body.leaf-light-brand .contact-form > .inquiry-native-field,
  body.leaf-light-brand .contact-form > .company-field,
  body.leaf-light-brand .contact-form > #subjectField { grid-column: span 4; }
}

@media (max-width: 700px) {
  body.leaf-light-brand .hero {
    min-height: auto;
    padding: 66px 0 0;
    background: #3e2e20 !important;
  }
  body.leaf-light-brand .hero-content { grid-template-columns: minmax(0,1fr) !important; }
  body.leaf-light-brand .hero-side { display: flex !important; min-height: 390px; margin-top: 18px; }
  body.leaf-light-brand .hero-brand-art { width: min(92%, 390px); max-height: 410px; }
  body.leaf-light-brand .contact-form { grid-template-columns: 1fr; }
  body.leaf-light-brand .contact-form > .field-row,
  body.leaf-light-brand .contact-form > .inquiry-native-field,
  body.leaf-light-brand .contact-form > .company-field,
  body.leaf-light-brand .contact-form > #subjectField { grid-column: 1; }
  body.leaf-light-brand .ambient-audio { right: 12px; bottom: 12px; }
  body.leaf-light-brand .ambient-copy { min-width: 106px; }
  body.leaf-light-brand .ambient-audio:not(:focus-within):not(.is-playing) .ambient-volume { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  body.leaf-light-brand .ambient-volume { transition: none; }
}

/* Project launch update and studio-core refinement. */
body.leaf-light-brand .hero {
  background: #0b120c !important;
}

body.leaf-light-brand .hero::before {
  content: "";
  display: block !important;
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("../images/car-crash-arena-hero-2026.png") center center / cover no-repeat;
  opacity: .52;
}

body.leaf-light-brand .hero::after { display: none !important; }

body.leaf-light-brand .hero-content {
  grid-template-columns: minmax(0, 1fr) minmax(300px, .68fr) !important;
}

body.leaf-light-brand .hero-side {
  display: block !important;
  min-height: 1px;
  visibility: hidden;
}

body.leaf-light-brand .hero-copy { text-shadow: 0 3px 24px rgba(0,0,0,.34); }

body.leaf-light-brand #projects .project-card {
  border-color: rgba(242,162,10,.23) !important;
  background: #3e2e20 !important;
}

body.leaf-light-brand #portfolio .portfolio-chapter,
body.leaf-light-brand #portfolio .portfolio-chapter:first-child,
body.leaf-light-brand #portfolio .portfolio-chapter--secondary,
body.leaf-light-brand #portfolio .portfolio-chapter--prison,
body.leaf-light-brand #portfolio .portfolio-chapter--climb {
  border-color: rgba(242,162,10,.23) !important;
  background: #3e2e20 !important;
}

body.leaf-light-brand #partnerships .partnerships-shell {
  border-color: rgba(242,162,10,.24) !important;
  background: #3e2e20 !important;
}

body.leaf-light-brand #projects .project-card:nth-child(2) .project-identity,
body.leaf-light-brand #portfolio .portfolio-chapter--prison .portfolio-chapter-mark {
  background: #07080b !important;
}

body.leaf-light-brand #projects .project-card:nth-child(2) .project-identity img,
body.leaf-light-brand #portfolio .portfolio-chapter--prison .portfolio-chapter-mark img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
}

body.leaf-light-brand #how-we-work .core-node {
  width: 104px !important;
  height: 104px !important;
  padding: 8px !important;
  overflow: hidden;
  border: 4px solid var(--gold) !important;
  background: #fbf2e6 !important;
  box-shadow: 0 0 0 9px rgba(242,162,10,.09), 0 18px 44px rgba(0,0,0,.34) !important;
}

body.leaf-light-brand #how-we-work .core-node img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

body.leaf-light-brand #how-we-work .core-node strong {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

body.leaf-light-brand #how-we-work .orbit-node {
  border-color: rgba(251,242,230,.2) !important;
  background: rgba(29,43,29,.96) !important;
  color: #e8dfd2 !important;
  box-shadow: 0 10px 26px rgba(0,0,0,.24) !important;
}

body.leaf-light-brand #how-we-work .orbit-node.is-active {
  border-color: var(--gold) !important;
  background: var(--gold) !important;
  color: #2d1d0d !important;
  box-shadow: 0 0 0 5px rgba(242,162,10,.12), 0 12px 32px rgba(242,162,10,.24) !important;
  font-weight: 900;
}

@media (max-width: 700px) {
  body.leaf-light-brand .hero::before { background-position: 62% center; opacity: .44; }
  body.leaf-light-brand .hero-content { grid-template-columns: minmax(0,1fr) !important; }
  body.leaf-light-brand .hero-side { display: none !important; }
}
