@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Inter:wght@400;500;600;700&display=swap');
:root {
  --navy:#0e2447;
  --navy-2:#152d54;
  --gold:#b77b24;
  --gold-2:#d4a14a;
  --cream:#f6f0e7;
  --ink:#102544;
  --muted:#384a66;
  --ease:cubic-bezier(.2,.8,.2,1);
  --serif:"Iowan Old Style","Palatino Linotype","Book Antiqua",Georgia,serif;
  --sans:Inter,system-ui,-apple-system,"Segoe UI",sans-serif;
}

* {
  box-sizing:border-box
}

html,body {
  height:100%;
  margin:0
}

body {
  overflow:hidden;
  background:#f4eee5;
  color:var(--ink);
  font-family:var(--sans)
}

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

button {
  font:inherit
}

.art-bg,.art-glow,#sparkles {
  position:fixed;
  inset:0;
  pointer-events:none
}

.art-bg {
  z-index:0;
  background:url('assets/background.webp') center/cover no-repeat;
  filter:saturate(1.05) contrast(1.02);
  transform:scale(1.015)
}

.art-glow {
  z-index:1;
  background:linear-gradient(90deg,rgba(248,243,235,.25),rgba(248,243,235,.06) 42%,rgba(248,243,235,.18)),radial-gradient(circle at 50% 35%,rgba(255,252,245,.32),transparent 42%)
}

#sparkles {
  z-index:2
}

.app {
  position:relative;
  z-index:3;
  height:100dvh
}

.header {
  position:absolute;
  left:44px;
  right:42px;
  top:28px;
  height:60px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  z-index:20
}

.brand {
  display:flex;
  align-items:center;
  gap:14px
}

.brand-symbol {
  width:58px;
  height:58px;
  display:grid;
  place-items:center;
  overflow:visible
}

.brand-symbol img {
  width:74px;
  height:74px;
  object-fit:contain;
  display:block;
  filter:drop-shadow(0 5px 10px rgba(16,36,71,.08))
}

.brand-text {
  display:grid;
  gap:2px
}

.brand-text strong {
  font-family:var(--serif);
  font-size:25px;
  letter-spacing:.14em
}

.brand-text em {
  font-style:normal;
  color:var(--gold);
  font-size:14px;
  letter-spacing:.24em
}

.hamburger {
  width:50px;
  height:50px;
  border-radius:50%;
  border:1px solid rgba(183,123,36,.55);
  background:var(--navy);
  display:grid;
  place-content:center;
  gap:4px;
  box-shadow:0 8px 24px rgba(11,28,55,.18);
  cursor:pointer
}

.hamburger span {
  display:block;
  width:18px;
  height:2px;
  background:var(--gold-2)
}

.viewport {
  position:absolute;
  inset:0;
  overflow:hidden
}

.page {
  position:absolute;
  inset:0;
  opacity:0;
  visibility:hidden;
  transform:translateY(24px) scale(.992);
  transition:opacity .7s var(--ease),transform .7s var(--ease),visibility .7s
}

.page.active {
  opacity:1;
  visibility:visible;
  transform:none
}

.page-home {
  display:block
}

.home-copy {
  position:absolute;
  left:19.2vw;
  top:12.1vh;
  width:34vw;
  min-width:520px
}

.home-copy h1 {
  margin:0;
  font-family:var(--serif);
  font-weight:500;
  color:var(--navy);
  font-size:clamp(68px,5.45vw,108px);
  line-height:.91;
  letter-spacing:-.045em
}

.home-copy h1 em {
  font-weight:400;
  color:var(--gold);
  font-style:italic
}

.tagline {
  margin:26px 0 0;
  font-size:clamp(16px,1.08vw,22px);
  line-height:1.45;
  color:var(--muted)
}

.expertises {
  display:flex;
  align-items:flex-start;
  gap:48px;
  margin-top:26px
}

.expertises article {
  position:relative;
  min-width:110px;
  text-align:center
}

.expertises article:not(:last-child)::after {
  content:"";
  position:absolute;
  right:-25px;
  top:22px;
  width:1px;
  height:56px;
  background:rgba(183,123,36,.28)
}

.expert-icon {
  display:block;
  margin:0 auto 9px;
  width:33px;
  height:33px;
  position:relative;
  color:var(--gold)
}

.icon-star::before,.icon-star::after,.icon-compass::before,.icon-compass::after {
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  background:currentColor;
  transform:translate(-50%,-50%)
}

.icon-star::before {
  width:2px;
  height:31px
}

.icon-star::after {
  width:31px;
  height:2px;
  box-shadow:0 0 12px rgba(183,123,36,.55)
}

.icon-compass::before {
  width:2px;
  height:31px;
  transform:translate(-50%,-50%) rotate(45deg)
}

.icon-compass::after {
  width:31px;
  height:2px;
  transform:translate(-50%,-50%) rotate(45deg)
}

.icon-diamond {
  border:1px solid var(--gold);
  transform:rotate(45deg);
  width:25px;
  height:25px;
  margin-top:4px;
  margin-bottom:13px
}

.icon-diamond::before,.icon-diamond::after {
  content:"";
  position:absolute;
  inset:4px;
  border:1px solid var(--gold)
}

.icon-diamond::after {
  inset:8px
}

.expertises strong {
  font-size:12px;
  letter-spacing:.15em;
  line-height:1.38;
  color:var(--navy)
}

.brush-button {
  position:relative;
  margin-top:18px;
  width:405px;
  height:92px;
  border:0;
  color:#fff;
  background:none;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:34px;
  letter-spacing:.17em;
  font-size:15px;
  font-weight:700;
  isolation:isolate;
  padding:0 40px
}

.brush-button-art {
  position:absolute;
  inset:-18px -42px -18px -42px;
  width:calc(100% + 84px);
  height:calc(100% + 36px);
  object-fit:fill;
  z-index:-1;
  pointer-events:none;
  filter:drop-shadow(0 14px 22px rgba(10,25,49,.14))
}

.brush-button span,.brush-button b {
  position:relative;
  z-index:1
}

.brush-button b {
  color:var(--gold-2);
  font-size:24px;
  font-weight:400
}

.brush-button:hover {
  transform:translateY(-2px)
}

.orbital-wrap {
  position:absolute;
  right:8vw;
  top:7.7vh;
  width:62vh;
  height:62vh;
  aspect-ratio:1;
  min-width:550px;
  min-height:550px;
  overflow:visible
}

.orbit-svg {
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  overflow:visible
}

.orbit {
  fill:none;
  stroke:rgba(183,123,36,.26);
  stroke-width:1.1;
  stroke-dasharray:2 6
}

.orbit-b {
  opacity:.65
}

.orbit-c {
  opacity:.45
}

.guide {
  stroke:rgba(183,123,36,.16);
  stroke-width:.8
}

.faded {
  opacity:.25
}

.arc-path {
  fill:none;
  stroke:rgba(183,123,36,.54);
  stroke-width:1.5
}

.orbit-nav {
  position:absolute;
  inset:0
}

.orbital-logo {
  position:absolute;
  left:50%;
  top:50%;
  width:70%;
  max-width:390px;
  min-width:280px;
  aspect-ratio:1;
  object-fit:contain;
  transform:translate(-50%,-50%);
  pointer-events:none;
  filter:drop-shadow(0 9px 18px rgba(15,34,66,.11));
}

.nav-node {
  position:absolute;
  display:flex;
  align-items:center;
  gap:16px;
  color:var(--navy);
  font-size:13px;
  letter-spacing:.14em;
  font-weight:800;
  transform:translate(-24px,-50%);
  transform-origin:24px 50%;
  transition:transform .35s var(--ease),filter .35s var(--ease)
}

.nav-node span {
  display:grid;
  place-items:center;
  width:48px;
  height:48px;
  flex:0 0 48px;
  border-radius:50%;
  background:var(--navy);
  color:var(--gold-2);
  border:2px solid var(--gold);
  box-shadow:0 0 0 6px rgba(255,255,255,.55),0 0 0 8px rgba(183,123,36,.12),0 6px 20px rgba(16,36,71,.12)
}

.nav-node b {
  white-space:nowrap;
  max-width:200px
}

.nav-node i {
  position:absolute;
  left:64px;
  bottom:-7px;
  width:22px;
  height:2px;
  background:var(--gold)
}

.nav-node:hover,.nav-node.active {
  transform:translate(-24px,-50%) scale(1.035);
  filter:brightness(1.04)
}

.n1 {
  left:63.655%;
  top:16.203%
}

.n2 {
  left:84.509%;
  top:29.617%
}

.n3 {
  left:88.583%;
  top:50%
}

.n4 {
  left:80.220%;
  top:70.383%
}

.n5 {
  left:63.655%;
  top:83.797%
}

.manifesto-brush {
  position:absolute;
  right:3.7vw;
  bottom:2.4vh;
  width:42vw;
  min-width:610px;
  height:205px;
  color:white;
  padding:36px 48px 28px 184px;
  display:flex;
  align-items:center;
  z-index:2
}

.manifesto-art {
  position:absolute;
  inset:-22px -60px -26px -68px;
  width:calc(100% + 128px);
  height:calc(100% + 48px);
  object-fit:fill;
  z-index:-1;
  pointer-events:none;
  filter:drop-shadow(0 17px 30px rgba(10,25,49,.13))
}

.manifesto-brush p {
  margin:0;
  font-size:14px;
  line-height:1.55;
  font-weight:500;
  letter-spacing:-.01em;
  text-shadow:0 1px 3px rgba(5,15,32,.22)
}

.manifesto-brush strong {
  color:var(--gold-2)
}

.page-content {
  display:flex;
  align-items:center;
  justify-content:center;
  padding:120px 8vw 70px
}

.content-shell {
  position:relative;
  width:min(1100px,78vw);
  padding:44px 48px;
  border-radius:30px;
  background:rgba(248,243,235,.84);
  border:1px solid rgba(255,255,255,.78);
  box-shadow:0 26px 80px rgba(16,36,71,.14);
  backdrop-filter:blur(16px)
}

.content-close {
  position:absolute;
  top:20px;
  right:22px;
  width:42px;
  height:42px;
  border-radius:50%;
  display:grid;
  place-items:center;
  border:1px solid rgba(16,36,71,.14);
  background:rgba(255,255,255,.58);
  color:var(--navy);
  font-family:var(--sans);
  font-size:28px;
  font-weight:300;
  line-height:1;
  box-shadow:0 10px 24px rgba(16,36,71,.08);
  backdrop-filter:blur(8px);
  transition:transform .25s var(--ease),background .25s var(--ease),border-color .25s var(--ease),color .25s var(--ease)
}

.content-close:hover {
  transform:rotate(90deg) scale(1.06);
  background:var(--navy);
  color:white;
  border-color:var(--navy)
}

.content-close:focus-visible {
  outline:2px solid var(--gold);
  outline-offset:3px
}

.section-kicker {
  display:block;
  color:var(--gold);
  font-size:12px;
  letter-spacing:.2em;
  margin-bottom:12px
}

.content-shell h2 {
  font-family:var(--serif);
  font-weight:500;
  font-size:clamp(48px,5vw,82px);
  line-height:.95;
  margin:0 0 18px;
  color:var(--navy)
}

.section-lead {
  font-size:18px;
  line-height:1.6;
  color:var(--muted);
  max-width:920px
}

.content-grid {
  display:grid;
  gap:18px;
  margin-top:28px
}

.content-grid.two {
  grid-template-columns:repeat(2,1fr)
}

.content-grid.three {
  grid-template-columns:repeat(3,1fr)
}

.content-card {
  padding:24px;
  border-radius:22px;
  background:rgba(255,255,255,.48);
  border:1px solid rgba(16,36,71,.09)
}

.content-card>span {
  font-size:11px;
  letter-spacing:.16em;
  color:var(--gold)
}

.content-card h3 {
  font-family:var(--serif);
  font-size:29px;
  line-height:1.08;
  margin:12px 0;
  color:var(--navy)
}

.content-card p,.content-card li {
  color:var(--muted);
  line-height:1.55
}

.content-card ul {
  padding-left:18px
}

.number-list {
  display:grid;
  gap:12px
}

.tech-strip {
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:20px
}

.tech-strip b {
  padding:12px 16px;
  border-radius:999px;
  border:1px solid rgba(183,123,36,.22);
  background:rgba(255,255,255,.44);
  font-size:13px;
  color:var(--navy)
}

.process-line {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
  margin-top:28px
}

.process-step {
  border:1px solid rgba(16,36,71,.12);
  background:rgba(255,255,255,.45);
  border-radius:18px;
  padding:16px;
  text-align:left;
  color:var(--muted);
  cursor:pointer
}

.process-step span {
  display:block;
  color:var(--gold);
  font-size:12px;
  margin-bottom:8px
}

.process-step b {
  color:var(--navy)
}

.process-step.active {
  border-color:rgba(183,123,36,.45);
  background:white;
  transform:translateY(-4px)
}

.process-detail {
  margin-top:16px;
  padding:22px;
  border-radius:20px;
  background:rgba(14,36,71,.95);
  color:white
}

.process-detail h3 {
  font-family:var(--serif);
  font-size:32px;
  margin:0 0 8px
}

.process-detail p {
  margin:0;
  line-height:1.6;
  color:rgba(255,255,255,.82)
}

.mobile-menu {
  position:fixed;
  inset:0;
  z-index:19;
  background:rgba(247,241,232,.97);
  display:grid;
  place-items:center;
  opacity:0;
  visibility:hidden;
  transition:.4s var(--ease)
}

.mobile-menu.open {
  opacity:1;
  visibility:visible
}

.mobile-menu nav {
  display:grid;
  gap:20px;
  text-align:center
}

.mobile-menu a {
  font-family:var(--serif);
  font-size:34px;
  color:var(--navy)
}

.project-tagline {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  font-style: italic;
  color: var(--color-accent, #999);
  margin-top: 0.25rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
  opacity: 0.85;
}

@media(max-width:1300px) {
  .home-copy {
    left:12vw;
    min-width:500px
  }

  .orbital-wrap {
    right:7vw;
    width:58vh;
    height:58vh;
    min-width:520px;
    min-height:520px
  }

  .nav-node {
    font-size:12px;
    gap:13px
  }

  .nav-node b {
    max-width:175px
  }

  .manifesto-brush {
    right:1vw
  }

  .content-shell {
    width:min(1100px,88vw)
  }
}

@media(max-width:1050px) {
  .header {
    left:22px;
    right:22px
  }

  .home-copy {
    left:8vw;
    top:14vh;
    width:70vw;
    min-width:0
  }

  .home-copy h1 {
    font-size:clamp(58px,10vw,92px)
  }

  .orbital-wrap {
    display:none
  }

  .manifesto-brush {
    display:none
  }

  .expertises {
    gap:24px
  }

  .brush-button {
    width:min(365px,80vw)
  }

  .page-content {
    padding:110px 20px 50px;
    overflow:auto
  }

  .content-shell {
    width:100%;
    padding:30px
  }

  .content-close {
    top:14px;
    right:14px;
    width:38px;
    height:38px;
    font-size:25px
  }

  .content-grid.two,.content-grid.three,.process-line {
    grid-template-columns:1fr
  }

  .process-step.active {
    transform:none
  }
}

@media(max-width:680px) {
  .brand-symbol {
    width:44px;
    height:44px
  }

  .brand-symbol img {
    width:58px;
    height:58px
  }

  .brand-text strong {
    font-size:19px
  }

  .brand-text em {
    font-size:11px
  }

  .home-copy {
    top:15vh;
    left:22px;
    right:22px;
    width:auto
  }

  .home-copy h1 {
    font-size:clamp(46px,15vw,74px)
  }

  .tagline {
    font-size:15px
  }

  .expertises {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:8px
  }

  .expertises article {
    min-width:0
  }

  .expertises article:not(:last-child)::after {
    display:none
  }

  .expertises strong {
    font-size:9px
  }

  .brush-button {
    height:72px;
    font-size:12px;
    width:min(390px,86vw)
  }

  .content-shell {
    padding:56px 18px 24px
  }

  .content-close {
    top:12px;
    right:12px
  }

  .content-shell h2 {
    font-size:46px
  }
}

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

@media (min-width: 1301px) {
  .orbital-wrap {
    right: 11.5vw;
  }
}

@media (max-width: 1050px) {
  html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  body {
    background: #f4eee5;
  }

  .art-bg {
    background-position: center center;
    transform: none;
  }

  .app {
    height: 100dvh;
    display: grid;
    grid-template-rows: 76px minmax(0, 1fr);
  }

  .header {
    position: relative;
    inset: auto;
    height: 76px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(248,243,235,.90);
    border-bottom: 1px solid rgba(16,36,71,.10);
    box-shadow: 0 8px 28px rgba(16,36,71,.08);
    backdrop-filter: blur(14px) saturate(110%);
    -webkit-backdrop-filter: blur(14px) saturate(110%);
    z-index: 30;
  }

  .brand {
    gap: 10px;
    min-width: 0;
  }

  .brand-symbol {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
  }

  .brand-symbol img {
    width: 58px;
    height: 58px;
  }

  .brand-text {
    min-width: 0;
  }

  .brand-text strong {
    font-size: 18px;
    letter-spacing: .13em;
  }

  .brand-text em {
    font-size: 10px;
    letter-spacing: .22em;
  }

  .hamburger {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
  }

  .viewport {
    position: relative;
    inset: auto;
    min-height: 0;
    overflow: hidden;
  }

  .page {
    inset: 0;
  }

  .page-home {
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 34px 20px 46px;
  }

  .home-copy {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    width: min(760px, 100%);
    min-width: 0;
    margin: 0 auto;
  }

  .home-copy h1 {
    font-size: clamp(50px, 11vw, 88px);
    line-height: .92;
  }

  .tagline {
    margin-top: 20px;
    font-size: 16px;
  }

  .expertises {
    margin-top: 26px;
    gap: 14px;
    justify-content: space-between;
  }

  .expertises article {
    flex: 1 1 0;
    min-width: 0;
  }

  .expertises article:not(:last-child)::after {
    right: -8px;
    height: 52px;
  }

  .brush-button {
    margin-top: 24px;
    width: min(430px, 100%);
  }

  .orbital-wrap, .manifesto-brush {
    display: none;
  }

  .page-content {
    display: block;
    padding: 18px;
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .content-shell {
    width: 100%;
    max-width: 860px;
    min-height: auto;
    margin: 0 auto 28px;
    padding: 58px 26px 28px;
    border-radius: 24px;
  }

  .content-close {
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
    z-index: 5;
  }

  .content-shell h2 {
    font-size: clamp(46px, 9vw, 72px);
    line-height: .98;
    padding-right: 44px;
  }

  .section-lead {
    font-size: 17px;
    line-height: 1.55;
  }

  .content-grid.two, .content-grid.three, .process-line {
    grid-template-columns: 1fr;
  }

  .process-step.active {
    transform: none;
  }

  .mobile-menu {
    top: 76px;
    height: calc(100dvh - 76px);
    inset-inline: 0;
    bottom: 0;
  }

  .mobile-menu nav {
    gap: 16px;
  }

  .mobile-menu a {
    font-size: clamp(30px, 7vw, 42px);
  }
}

@media (max-width: 680px) {
  .header {
    height: 70px;
    padding: 0 14px;
  }

  .app {
    grid-template-rows: 70px minmax(0, 1fr);
  }

  .mobile-menu {
    top: 70px;
    height: calc(100dvh - 70px);
  }

  .brand-symbol {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .brand-symbol img {
    width: 54px;
    height: 54px;
  }

  .brand-text strong {
    font-size: 17px;
  }

  .brand-text em {
    font-size: 9px;
  }

  .page-home {
    padding: 26px 16px 38px;
  }

  .home-copy h1 {
    font-size: clamp(46px, 15vw, 72px);
  }

  .tagline {
    font-size: 15px;
    line-height: 1.5;
  }

  .expertises {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 22px;
  }

  .expertises article {
    display: grid;
    grid-template-columns: 40px 1fr;
    align-items: center;
    text-align: left;
    padding: 10px 12px;
    border-radius: 16px;
    background: rgba(248,243,235,.66);
    border: 1px solid rgba(16,36,71,.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  .expertises article:not(:last-child)::after {
    display: none;
  }

  .expert-icon {
    margin: 0;
  }

  .expertises strong {
    font-size: 10px;
    line-height: 1.35;
  }

  .brush-button {
    width: 100%;
    min-height: 70px;
    height: auto;
    padding: 20px 28px;
    gap: 20px;
  }

  .page-content {
    padding: 12px;
  }

  .content-shell {
    margin-bottom: 18px;
    padding: 54px 16px 22px;
    border-radius: 20px;
  }

  .content-close {
    top: 10px;
    right: 10px;
    width: 38px;
    height: 38px;
    font-size: 24px;
  }

  .section-kicker {
    font-size: 10px;
    letter-spacing: .16em;
    margin-bottom: 10px;
  }

  .content-shell h2 {
    font-size: clamp(38px, 12vw, 56px);
    padding-right: 34px;
    margin-bottom: 16px;
  }

  .section-lead {
    font-size: 15px;
    line-height: 1.52;
  }

  .content-grid {
    margin-top: 20px;
  }

  .content-card {
    padding: 18px 16px;
    border-radius: 18px;
  }

  .content-card h3 {
    font-size: 25px;
  }

  .content-card p, .content-card li {
    font-size: 14px;
  }

  .tech-strip {
    gap: 8px;
  }

  .tech-strip b {
    width: 100%;
    text-align: center;
  }

  .process-line {
    gap: 8px;
  }

  .process-step {
    padding: 13px 14px;
  }

  .process-detail {
    padding: 18px 16px;
  }
}

@media (max-width: 420px) {
  .brand-text strong {
    font-size: 15px;
  }

  .brand-text em {
    font-size: 8px;
  }

  .hamburger {
    width: 40px;
    height: 40px;
  }

  .page-home {
    padding-inline: 12px;
  }

  .content-shell {
    padding-inline: 14px;
  }
}

.mobile-menu {
  padding: clamp(92px, 10vh, 128px) clamp(28px, 5vw, 86px) clamp(30px, 5vh, 60px);
  overflow-y: auto;
  overscroll-behavior: contain;
  background: linear-gradient(112deg, rgba(248,243,235,.985), rgba(248,243,235,.94)), url('assets/background.webp') center / cover no-repeat;
  place-items: stretch;
}

.mobile-menu::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 72% 38%, rgba(183,123,36,.10), transparent 30%), linear-gradient(90deg, transparent 0 48%, rgba(16,36,71,.07) 48% 48.08%, transparent 48.08%);
}

.menu-shell {
  position: relative;
  z-index: 1;
  width: min(1460px, 100%);
  min-height: min(720px, calc(100dvh - 160px));
  margin: auto;
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(560px, 1.45fr);
  gap: clamp(42px, 6vw, 100px);
  align-items: start;
}

.menu-kicker {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.menu-navigation h2, .portfolio-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  color: var(--navy);
}

.menu-navigation h2 {
  max-width: 340px;
  font-size: clamp(42px, 4vw, 68px);
  line-height: .95;
}

.menu-links {
  display: grid;
  gap: 7px;
  margin-top: 38px;
  text-align: left;
}

.mobile-menu .menu-links a {
  position: relative;
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: center;
  gap: 13px;
  min-height: 54px;
  padding: 8px 12px 8px 0;
  border-bottom: 1px solid rgba(16,36,71,.10);
  font-family: var(--sans);
  font-size: 16px;
  color: var(--navy);
  transition: padding-left .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}

.menu-links a span {
  color: var(--gold);
  font-size: 10px;
  letter-spacing: .15em;
}

.menu-links a b {
  font-weight: 650;
  letter-spacing: .04em;
}

.menu-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .35s var(--ease);
}

.menu-links a:hover, .menu-links a.active {
  padding-left: 10px;
  color: var(--gold);
}

.menu-links a:hover::after, .menu-links a.active::after {
  width: 100%;
}

.portfolio-menu {
  min-width: 0;
  padding: clamp(26px, 3vw, 42px);
  border: 1px solid rgba(255,255,255,.76);
  border-radius: 30px;
  background: rgba(248,243,235,.72);
  box-shadow: 0 28px 80px rgba(16,36,71,.12);
  backdrop-filter: blur(18px) saturate(110%);
  -webkit-backdrop-filter: blur(18px) saturate(110%);
}

.portfolio-heading {
  display: grid;
  grid-template-columns: 1fr minmax(220px, 330px);
  gap: 28px;
  align-items: end;
  margin-bottom: 26px;
}

.portfolio-heading h2 {
  font-size: clamp(36px, 3vw, 54px);
  line-height: .98;
}

.portfolio-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.portfolio-list {
  display: grid;
  gap: 10px;
}

.mobile-menu .portfolio-item {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) minmax(130px, auto) 34px;
  gap: 17px;
  align-items: center;
  min-height: 92px;
  padding: 15px 18px;
  border: 1px solid rgba(16,36,71,.09);
  border-radius: 20px;
  background: rgba(255,255,255,.48);
  font-family: var(--sans);
  color: var(--navy);
  transition: transform .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}

.portfolio-item:hover {
  transform: translateX(7px);
  background: rgba(255,255,255,.82);
  border-color: rgba(183,123,36,.34);
  box-shadow: 0 16px 36px rgba(16,36,71,.08);
}

.portfolio-number {
  color: var(--gold);
  font-size: 10px;
  letter-spacing: .15em;
}

.portfolio-copy {
  min-width: 0;
  display: grid;
  gap: 6px;
}

.portfolio-copy strong {
  font-family: var(--serif);
  font-size: clamp(22px, 1.75vw, 31px);
  font-weight: 600;
  line-height: 1;
}

.portfolio-copy small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.portfolio-domain {
  color: rgba(16,36,71,.62);
  font-size: 11px;
  letter-spacing: .06em;
  white-space: nowrap;
}

.portfolio-arrow {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(183,123,36,.28);
  color: var(--gold);
  font-size: 18px;
  transition: color .3s var(--ease), background .3s var(--ease), transform .3s var(--ease);
}

.portfolio-item:hover .portfolio-arrow {
  color: white;
  background: var(--navy);
  transform: rotate(8deg);
}

@media (max-width: 1120px) {
  .menu-shell {
    grid-template-columns: minmax(220px, .58fr) minmax(480px, 1.42fr);
    gap: 36px;
  }

  .portfolio-domain {
    display: none;
  }

  .mobile-menu .portfolio-item {
    grid-template-columns: 30px minmax(0,1fr) 34px;
  }
}

@media (max-width: 1050px) {
  .mobile-menu {
    padding: 30px 18px 40px;
  }

  .mobile-menu::before {
    display: none;
  }

  .menu-shell {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 36px;
    width: min(760px, 100%);
  }

  .menu-navigation h2 {
    font-size: clamp(38px, 8vw, 58px);
  }

  .menu-links {
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 8px 20px;
    margin-top: 24px;
  }

  .mobile-menu .menu-links a {
    font-size: 15px;
  }

  .portfolio-menu {
    padding: 24px;
  }

  .portfolio-heading {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .portfolio-heading p {
    max-width: 520px;
  }
}

@media (max-width: 680px) {
  .mobile-menu {
    padding: 22px 12px 30px;
  }

  .menu-shell {
    gap: 28px;
  }

  .menu-kicker {
    font-size: 9px;
  }

  .menu-navigation h2 {
    font-size: 39px;
  }

  .menu-links {
    grid-template-columns: 1fr;
    gap: 2px;
    margin-top: 20px;
  }

  .mobile-menu .menu-links a {
    min-height: 48px;
    font-size: 14px;
  }

  .portfolio-menu {
    padding: 18px 14px;
    border-radius: 22px;
  }

  .portfolio-heading h2 {
    font-size: 34px;
  }

  .portfolio-heading p {
    font-size: 13px;
  }

  .mobile-menu .portfolio-item {
    grid-template-columns: 24px minmax(0,1fr) 30px;
    gap: 11px;
    min-height: 82px;
    padding: 13px 12px;
    border-radius: 17px;
  }

  .portfolio-copy strong {
    font-size: 22px;
  }

  .portfolio-copy small {
    font-size: 12px;
  }

  .portfolio-arrow {
    width: 30px;
    height: 30px;
  }
}

.orbital-wrap {
  pointer-events: none;
}

.orbit-svg, .orbital-logo {
  pointer-events: none;
}

.content-close {
  display: none !important;
}

.content-shell {
  padding-top: 44px;
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hamburger span {
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}

.brush-button span {
  position: relative;
  z-index: 2;
}

@media (max-width: 1050px) {
  .content-shell {
    padding-top: 30px;
  }
}

@media (max-width: 680px) {
  .content-shell {
    padding-top: 24px;
  }

  .content-shell h2 {
    padding-right: 0;
  }
}

.mobile-menu {
  display: grid;
  place-items: center;
  padding: clamp(96px, 12vh, 140px) 24px 44px;
  overflow-y: auto;
  background: linear-gradient(112deg, rgba(248,243,235,.985), rgba(248,243,235,.95)), url('assets/background.webp') center / cover no-repeat;
}

.mobile-menu::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 42%, rgba(183,123,36,.10), transparent 36%);
}

.classic-menu {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  display: grid;
  gap: 2px;
}

.classic-menu .menu-kicker {
  margin: 0 0 20px 58px;
}

.mobile-menu .classic-menu a {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 68px;
  padding: 10px 18px;
  border-bottom: 1px solid rgba(16,36,71,.11);
  color: var(--navy);
  font-family: var(--sans);
  transition: transform .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}

.mobile-menu .classic-menu a span {
  color: var(--gold);
  font-size: 10px;
  letter-spacing: .16em;
}

.mobile-menu .classic-menu a b {
  font-family: var(--serif);
  font-size: clamp(27px, 3vw, 44px);
  font-weight: 500;
  line-height: 1;
}

.mobile-menu .classic-menu a::after {
  content: "→";
  color: var(--gold);
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}

.mobile-menu .classic-menu a:hover, .mobile-menu .classic-menu a.active {
  color: var(--gold);
  transform: translateX(10px);
  border-color: rgba(183,123,36,.36);
}

.mobile-menu .classic-menu a:hover::after, .mobile-menu .classic-menu a.active::after {
  opacity: 1;
  transform: translateX(0);
}

.portfolio-page-shell {
  max-width: 1180px;
}

.portfolio-page-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 16px;
  margin-top: 30px;
}

.portfolio-project {
  display: grid;
  grid-template-columns: 36px minmax(0,1fr);
  gap: 16px;
  min-height: 178px;
  padding: 24px;
  border-radius: 22px;
  border: 1px solid rgba(16,36,71,.10);
  background: rgba(255,255,255,.50);
  color: var(--navy);
  transition: transform .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
}

.portfolio-project:hover {
  transform: translateY(-5px);
  border-color: rgba(183,123,36,.36);
  background: rgba(255,255,255,.82);
  box-shadow: 0 18px 38px rgba(16,36,71,.08);
}

.project-index {
  color: var(--gold);
  font-size: 10px;
  letter-spacing: .16em;
}

.portfolio-project h3 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: clamp(27px, 2.2vw, 38px);
  line-height: 1;
}

.portfolio-project p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.project-url {
  grid-column: 2;
  align-self: end;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: .06em;
}

@media (max-width: 1050px) {
  .mobile-menu {
    padding: 32px 18px 40px;
  }

  .classic-menu {
    width: min(680px, 100%);
  }

  .classic-menu .menu-kicker {
    margin-left: 0;
  }

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

@media (max-width: 680px) {
  .mobile-menu {
    padding: 22px 12px 30px;
  }

  .mobile-menu .classic-menu a {
    grid-template-columns: 32px 1fr auto;
    min-height: 58px;
    padding: 8px 8px;
    gap: 10px;
  }

  .mobile-menu .classic-menu a b {
    font-size: 28px;
  }

  .mobile-menu .classic-menu a:hover, .mobile-menu .classic-menu a.active {
    transform: none;
  }

  .portfolio-project {
    min-height: 150px;
    padding: 19px 16px;
  }
}

.brush-button span {
  letter-spacing:.14em
}

.mobile-menu .classic-menu a {
  transform:none;
  padding:12px 18px;
}

.mobile-menu .classic-menu a::after {
  display:none !important;
  content:none !important;
}

.mobile-menu .classic-menu a:hover, .mobile-menu .classic-menu a.active {
  color:var(--navy);
  transform:none;
  border-color:rgba(183,123,36,.34);
}

.mobile-menu .classic-menu a b {
  position:relative;
  transition:color .28s var(--ease), text-shadow .28s var(--ease), letter-spacing .28s var(--ease), transform .28s var(--ease);
}

.mobile-menu .classic-menu a:hover b, .mobile-menu .classic-menu a.active b {
  color:var(--gold);
  text-shadow:0 0 18px rgba(183,123,36,.18), 0 0 36px rgba(183,123,36,.14);
}

.mobile-menu .classic-menu a:hover span, .mobile-menu .classic-menu a.active span {
  color:var(--gold)
}

.mobile-menu .classic-menu .menu-home {
  min-height:82px;
  margin-bottom:16px;
  padding-top:4px;
  padding-bottom:18px;
  border-bottom:1px solid rgba(183,123,36,.34);
}

.mobile-menu .classic-menu .menu-home span {
  align-self:start;
  padding-top:10px;
}

.mobile-menu .classic-menu .menu-home b {
  font-family:var(--sans);
  font-size:clamp(34px,3.8vw,54px);
  font-weight:600;
  letter-spacing:.12em;
  line-height:1;
}

.mobile-menu .classic-menu .menu-home:hover, .mobile-menu .classic-menu .menu-home.active {
  color:var(--gold);
}

.mobile-menu .classic-menu .menu-home:hover b, .mobile-menu .classic-menu .menu-home.active b {
  color:var(--gold);
  text-shadow:0 0 16px rgba(183,123,36,.20), 0 0 34px rgba(183,123,36,.16);
  letter-spacing:.13em;
}

.mobile-menu .classic-menu .menu-home:hover span, .mobile-menu .classic-menu .menu-home.active span {
  color:var(--gold)
}

@media (max-width: 680px) {
  .mobile-menu .classic-menu .menu-home {
    min-height:72px;
    margin-bottom:12px;
    padding:4px 8px 14px;
  }

  .mobile-menu .classic-menu .menu-home b {
    font-size:30px;
    letter-spacing:.1em;
  }
}

.page-close-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 168px;
  min-height: 50px;
  margin: 30px auto 0;
  padding: 0 22px;
  border: 1px solid rgba(183,123,36,.34);
  border-radius: 999px;
  background: rgba(255,255,255,.48);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  box-shadow: 0 12px 30px rgba(16,36,71,.06);
  transition: transform .3s var(--ease), color .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}

.page-close-button i {
  position: relative;
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
}

.page-close-button i::before, .page-close-button i::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 1.5px;
  border-radius: 999px;
  background: var(--gold);
  transform-origin: center;
  transition: background .3s var(--ease), transform .3s var(--ease);
}

.page-close-button i::before {
  transform: translate(-50%,-50%) rotate(45deg);
}

.page-close-button i::after {
  transform: translate(-50%,-50%) rotate(-45deg);
}

.page-close-button:hover, .page-close-button:focus-visible {
  transform: translateY(-2px);
  color: white;
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: 0 16px 34px rgba(16,36,71,.16);
  outline: none;
}

.page-close-button:hover i::before, .page-close-button:hover i::after, .page-close-button:focus-visible i::before, .page-close-button:focus-visible i::after {
  background: var(--gold-2);
}

.page-close-button:hover i::before, .page-close-button:focus-visible i::before {
  transform: translate(-50%,-50%) rotate(135deg);
}

.page-close-button:hover i::after, .page-close-button:focus-visible i::after {
  transform: translate(-50%,-50%) rotate(45deg);
}

@media (max-width: 680px) {
  .page-close-button {
    width: 100%;
    min-height: 48px;
    margin-top: 24px;
  }
}

.page-close-button {
  display: flex;
  width: max-content;
  margin-left: auto;
  margin-right: auto;
  cursor: pointer;
}

@media (max-width: 680px) {
  .page-close-button {
    width: 100%;
  }
}

:root {
  --serif:"Cinzel",Georgia,serif;
  --sans:"Inter",system-ui,-apple-system,"Segoe UI",sans-serif
}

.brand-text strong,.home-copy h1,.content-shell h2,.editorial-content h3,.portfolio-project h3,.method-steps h3,.mobile-menu .classic-menu a b {
  font-family:var(--serif)
}

.brand-text strong {
  font-weight:600;
  letter-spacing:.11em
}

.home-copy h1 {
  font-weight:500;
  letter-spacing:-.025em
}

.content-shell h2 {
  font-weight:500;
  letter-spacing:.015em
}

.mobile-menu .classic-menu .menu-home {
  grid-template-columns:1fr;
  min-height:68px;
  margin:0 0 20px;
  padding:0 18px 16px;
  text-align:center;
  border-bottom:1px solid rgba(183,123,36,.34)
}

.mobile-menu .classic-menu .menu-home b {
  font-family:var(--serif);
  font-size:clamp(28px,2.8vw,42px);
  font-weight:500;
  letter-spacing:.08em;
  text-transform:none;
  color:var(--gold)
}

.mobile-menu .classic-menu .menu-home:hover b,.mobile-menu .classic-menu .menu-home.active b {
  letter-spacing:.1em;
  text-shadow:0 0 20px rgba(183,123,36,.22),0 0 42px rgba(183,123,36,.16)
}

.long-page {
  align-items:flex-start;
  overflow-y:auto;
  overscroll-behavior:contain;
  padding-top:116px;
  padding-bottom:70px
}

.editorial-shell {
  width:min(1180px,86vw);
  max-width:1180px;
  padding:48px 54px 44px;
  margin:auto
}

.editorial-shell h2 {
  font-size:clamp(44px,4.6vw,72px);
  margin-bottom:28px
}

.editorial-content {
  display:grid;
  gap:14px
}

.editorial-content h3 {
  margin:22px 0 0;
  color:var(--navy);
  font-size:clamp(23px,2vw,32px);
  font-weight:500;
  line-height:1.2
}

.editorial-content p {
  margin:0;
  color:var(--muted);
  font-size:16px;
  line-height:1.72
}

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

.principle-grid.three-principles {
  grid-template-columns:repeat(3,minmax(0,1fr))
}

.principle-grid.two-by-two {
  grid-template-columns:repeat(2,minmax(0,1fr))
}

.principle-grid article {
  padding:20px 21px;
  border-radius:20px;
  background:rgba(255,255,255,.48);
  border:1px solid rgba(16,36,71,.09)
}

.principle-grid strong {
  display:block;
  margin-bottom:8px;
  color:var(--gold);
  font-size:14px;
  letter-spacing:.03em
}

.principle-grid article p {
  font-size:14px;
  line-height:1.6
}

.thread-block {
  margin-top:30px;
  padding:22px 24px;
  border-left:3px solid var(--gold);
  border-radius:0 18px 18px 0;
  background:rgba(255,255,255,.42)
}

.thread-block span {
  display:block;
  margin-bottom:8px;
  color:var(--gold);
  font-size:10px;
  font-weight:700;
  letter-spacing:.2em
}

.thread-block p {
  margin:0;
  font-family:var(--serif);
  font-size:clamp(18px,1.7vw,25px);
  line-height:1.38;
  color:var(--navy)
}

.page-actions {
  display:flex;
  justify-content:center;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
  margin-top:28px
}

.page-actions .page-close-button {
  margin:0
}

.page-next-button,.submit-button {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:15px;
  min-height:50px;
  padding:0 24px;
  border:1px solid var(--navy);
  border-radius:999px;
  background:var(--navy);
  color:white;
  cursor:pointer;
  font-size:11px;
  font-weight:700;
  letter-spacing:.11em;
  text-transform:uppercase;
  box-shadow:0 12px 30px rgba(16,36,71,.12);
  transition:transform .3s var(--ease),background .3s var(--ease),color .3s var(--ease),box-shadow .3s var(--ease)
}

.page-next-button b,.submit-button b {
  color:var(--gold-2);
  font-size:20px;
  font-weight:400
}

.page-next-button:hover,.page-next-button:focus-visible,.submit-button:hover,.submit-button:focus-visible {
  transform:translateY(-2px);
  background:white;
  color:var(--navy);
  box-shadow:0 16px 34px rgba(16,36,71,.14);
  outline:none
}

.method-steps {
  display:grid;
  gap:16px;
  margin-top:14px
}

.method-steps>article {
  display:grid;
  grid-template-columns:48px 1fr;
  gap:18px;
  padding:22px;
  border-radius:22px;
  background:rgba(255,255,255,.45);
  border:1px solid rgba(16,36,71,.09)
}

.method-steps>article>span {
  display:grid;
  place-items:center;
  width:42px;
  height:42px;
  border-radius:50%;
  background:var(--navy);
  color:var(--gold-2);
  font-family:var(--serif);
  font-size:18px
}

.method-steps h3 {
  margin:0 0 10px;
  font-size:25px
}

.method-steps p,.method-steps li {
  color:var(--muted);
  line-height:1.65
}

.method-steps ul {
  margin:14px 0 0;
  padding-left:20px;
  display:grid;
  gap:8px
}

.contact-shell {
  max-width:980px
}

.contact-form {
  margin-top:26px
}

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

.form-grid label {
  display:grid;
  gap:8px;
  color:var(--gold);
  font-size:11px;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase
}

.form-grid .full {
  grid-column:1/-1
}

.form-grid input,.form-grid textarea {
  width:100%;
  border:1px solid rgba(16,36,71,.14);
  border-radius:15px;
  background:rgba(255,255,255,.62);
  color:var(--navy);
  font:500 15px/1.5 var(--sans);
  padding:14px 16px;
  outline:none;
  transition:border-color .25s var(--ease),box-shadow .25s var(--ease),background .25s var(--ease)
}

.form-grid input:focus,.form-grid textarea:focus {
  border-color:rgba(183,123,36,.62);
  background:white;
  box-shadow:0 0 0 4px rgba(183,123,36,.10)
}

.form-grid textarea {
  resize:vertical;
  min-height:160px
}

.submit-button {
  margin:20px auto 0;
  display:flex
}

.honeypot {
  position:absolute!important;
  left:-9999px!important;
  width:1px!important;
  height:1px!important;
  opacity:0!important
}

.single-action {
  margin-top:18px
}

@media(max-width:1050px) {
  .long-page {
    padding:26px 18px 48px
  }

  .editorial-shell {
    width:100%;
    padding:32px 28px 30px
  }

  .principle-grid.three-principles,.principle-grid {
    grid-template-columns:1fr
  }
}

@media(max-width:680px) {
  .editorial-shell {
    padding:26px 17px 24px;
    border-radius:22px
  }

  .editorial-shell h2 {
    font-size:36px;
    line-height:1.08
  }

  .editorial-content h3 {
    font-size:22px
  }

  .editorial-content p {
    font-size:15px;
    line-height:1.65
  }

  .method-steps>article {
    grid-template-columns:1fr;
    padding:18px
  }

  .form-grid {
    grid-template-columns:1fr
  }

  .form-grid .full {
    grid-column:auto
  }

  .page-actions {
    flex-direction:column
  }

  .page-actions .page-close-button,.page-next-button {
    width:100%
  }

  .mobile-menu .classic-menu .menu-home {
    min-height:60px;
    margin-bottom:10px;
    padding-bottom:12px
  }

  .mobile-menu .classic-menu .menu-home b {
    font-size:26px
  }
}

.form-status {
  display:none;
  margin-top:18px;
  padding:13px 15px;
  border-radius:14px;
  font-size:14px;
  line-height:1.5
}

.form-status.success,.form-status.error {
  display:block
}

.form-status.success {
  color:#1d5b3c;
  background:rgba(61,145,98,.10);
  border:1px solid rgba(61,145,98,.24)
}

.form-status.error {
  color:#8b3030;
  background:rgba(172,61,61,.09);
  border:1px solid rgba(172,61,61,.22)
}

:root {
  --serif:"Cinzel",Georgia,serif
}

.header {
  left:24px;
  right:34px
}

.brand {
  align-items:flex-start;
  gap:10px;
  transform:translateX(-6px)
}

.brand-symbol {
  width:60px;
  height:60px;
  flex:0 0 60px;
  margin-top:1px
}

.brand-symbol img {
  width:70px;
  height:70px;
  filter:drop-shadow(0 5px 10px rgba(16,36,71,.07))
}

.brand-text {
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:0;
  min-width:max-content;
  line-height:1
}

.brand-text strong,.brand-text em,.brand-text em b,.brand-text em span {
  font-family:var(--serif);
  font-style:normal
}

.brand-text strong {
  font-size:clamp(25px,1.75vw,31px);
  font-weight:600;
  letter-spacing:.11em;
  line-height:.92;
  color:var(--navy)
}

.brand-text em {
  align-self:center;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:.28em;
  margin-top:-1px;
  color:var(--gold);
  font-size:clamp(12px,.88vw,15px);
  letter-spacing:.18em;
  line-height:.88;
  text-transform:uppercase
}

.brand-text em b {
  font-weight:700
}

.brand-text em span {
  font-weight:500
}

@media (min-width:1051px) {
  .page-content.long-page {
    justify-content:flex-start;
    padding:120px 5vw 70px 278px;
  }

  .editorial-shell {
    width:min(1080px, calc(100vw - 380px));
    margin:0 auto 0 0;
  }
}

.thread-block {
  position:relative;
  padding:20px 24px 20px 30px;
  border-left:none;
  border-radius:0 18px 18px 0;
  background:rgba(255,255,255,.42)
}

.thread-block::before {
  content:"";
  position:absolute;
  left:12px;
  top:22px;
  bottom:22px;
  width:2px;
  border-radius:999px;
  background:linear-gradient(180deg, rgba(183,123,36,.95), rgba(183,123,36,.18));
}

.thread-block span {
  display:none !important
}

.thread-block p {
  margin:0;
  font-family:var(--serif);
  font-size:clamp(18px,1.7vw,25px);
  line-height:1.38;
  color:var(--navy)
}

.mobile-menu .classic-menu .menu-home {
  grid-template-columns:1fr;
  justify-items:center;
  text-align:center;
  min-height:58px;
  margin-bottom:18px;
  padding:0 8px 14px;
  border-bottom:1px solid rgba(183,123,36,.28);
}

.mobile-menu .classic-menu .menu-home b {
  font-family:var(--serif);
  font-size:clamp(22px,2.35vw,34px);
  font-weight:600;
  letter-spacing:.14em;
  line-height:1;
  text-transform:uppercase;
  color:var(--gold)
}

.mobile-menu .classic-menu .menu-home:hover, .mobile-menu .classic-menu .menu-home.active {
  transform:none;
  color:var(--gold);
  border-color:rgba(183,123,36,.4)
}

.mobile-menu .classic-menu .menu-home:hover b, .mobile-menu .classic-menu .menu-home.active b {
  color:var(--gold);
  text-shadow:0 0 14px rgba(183,123,36,.17),0 0 28px rgba(183,123,36,.1)
}

@media(max-width:1050px) {
  .header {
    left:18px;
    right:18px
  }

  .brand {
    transform:none
  }
}

@media(max-width:680px) {
  .brand-symbol {
    width:44px;
    height:44px;
    flex-basis:44px
  }

  .brand-symbol img {
    width:52px;
    height:52px
  }

  .brand-text strong {
    font-size:16px;
    letter-spacing:.1em
  }

  .brand-text em {
    font-size:8.7px;
    letter-spacing:.16em;
    gap:.2em;
    margin-top:0
  }

  .mobile-menu .classic-menu .menu-home {
    min-height:48px;
    margin-bottom:10px;
    padding-bottom:10px
  }

  .mobile-menu .classic-menu .menu-home b {
    font-size:20px;
    letter-spacing:.12em
  }
}

.header {
  left:20px
}

.brand {
  align-items:center;
  gap:12px;
  transform:translateX(-8px)
}

.brand-symbol {
  align-self:center;
  margin-top:-10px
}

.brand-text {
  justify-content:center
}

.brand-text em {
  margin-top:5px;
  line-height:1
}

.editorial-shell>.section-kicker {
  margin-bottom:28px
}

.editorial-shell>.editorial-content, .editorial-shell>.method-steps, .editorial-shell>.contact-intro, .editorial-shell>.contact-form {
  margin-top:0
}

@media (min-width:1051px) {
  .classic-menu {
    width:min(700px,100%)
  }

  .mobile-menu .classic-menu a {
    min-height:58px;
    padding:7px 16px
  }

  .mobile-menu .classic-menu a b {
    font-size:clamp(23px,2.45vw,36px)
  }

  .mobile-menu .classic-menu .menu-home {
    min-height:52px;
    margin-bottom:14px;
    padding-bottom:12px
  }

  .mobile-menu .classic-menu .menu-home b {
    font-size:clamp(20px,2vw,29px)
  }
}

.tagline {
  max-width:600px
}

.manifesto-brush p {
  max-width:100%;
  font-size:13.5px;
  line-height:1.48
}

@media(max-width:1050px) {
  .brand {
    transform:none
  }

  .brand-symbol {
    margin-top:-5px
  }

  .brand-text em {
    margin-top:3px
  }
}

@media(max-width:680px) {
  .brand-symbol {
    margin-top:-3px
  }

  .brand-text em {
    margin-top:2px
  }

  .editorial-shell>.section-kicker {
    margin-bottom:20px
  }
}

.manifesto-brush {
  right:3.2vw;
  width:43.5vw;
  min-width:650px;
  height:210px;
  padding:38px 54px 30px 190px;
}

.manifesto-brush p {
  max-width:620px;
  font-family:var(--serif);
  font-size:clamp(12px,.83vw,14px);
  font-weight:400;
  line-height:1.58;
  letter-spacing:.005em;
  text-wrap:balance;
}

.game-shell .project-focus {
  margin-top:22px;
  padding:24px;
  border-radius:22px;
  background:linear-gradient(145deg,rgba(14,36,71,.96),rgba(21,45,84,.92));
  color:white;
  box-shadow:0 22px 48px rgba(16,36,71,.16);
}

.game-shell .project-focus .focus-kicker {
  display:block;
  margin-bottom:8px;
  color:var(--gold-2);
  font-size:10px;
  font-weight:700;
  letter-spacing:.18em;
}

.game-shell .project-focus h3 {
  color:white;
  margin-top:0
}

.game-shell .project-focus>p {
  color:rgba(255,255,255,.82)
}

.game-shell .project-focus .principle-grid article {
  background:rgba(255,255,255,.08);
  border-color:rgba(255,255,255,.12);
}

.game-shell .project-focus .principle-grid article p {
  color:rgba(255,255,255,.76)
}

.game-shell .project-focus .principle-grid strong {
  color:var(--gold-2)
}

@media(max-width:1300px) {
  .manifesto-brush {
    right:.5vw;
    min-width:600px;
    width:46vw;
    padding-left:175px;
    padding-right:42px
  }

  .manifesto-brush p {
    font-size:12.2px
  }
}

@media(max-width:1050px) {
  .manifesto-brush {
    display:none
  }
}

.manifesto-brush {
  width:min(41vw, 690px);
  min-width:560px;
  height:188px;
  padding:34px 40px 26px 176px;
}

.manifesto-art {
  inset:-20px -56px -24px -64px;
  width:calc(100% + 120px);
  height:calc(100% + 44px);
}

.manifesto-brush p {
  font-family:var(--sans);
  font-size:clamp(13px, .9vw, 15.5px);
  line-height:1.52;
  font-weight:500;
  letter-spacing:-.01em;
  text-wrap:balance;
  max-width:58ch;
  text-shadow:0 1px 2px rgba(5,15,32,.16);
}

.expertises {
  gap:42px;
}

.expertises article {
  display:flex;
  flex-direction:column;
  align-items:center;
}

.expertises article:not(:last-child)::after {
  top:18px;
  height:52px;
}

.expert-icon-svg {
  display:grid;
  place-items:center;
  width:34px;
  height:34px;
  margin:0 auto 12px;
}

.expert-icon-svg img {
  display:block;
  width:32px;
  height:32px;
  object-fit:contain;
}

.expertises strong {
  font-size:11.5px;
  letter-spacing:.145em;
  line-height:1.36;
}

@media (max-width:1300px) {
  .manifesto-brush {
    width:min(43vw,660px);
    min-width:530px;
    padding:32px 36px 26px 166px;
  }

  .manifesto-brush p {
    font-size:13px;
    max-width:54ch;
  }
}

@media (max-width:1050px) {
  .expertises {
    gap:24px;
  }

  .expert-icon-svg {
    margin-bottom:10px;
  }
}

@media (max-width:680px) {
  .expert-icon-svg {
    width:28px;
    height:28px;
    margin-bottom:8px;
  }

  .expert-icon-svg img {
    width:26px;
    height:26px;
  }

  .expertises strong {
    font-size:8.7px;
    letter-spacing:.12em;
  }
}

.manifesto-brush {
  width:min(40vw, 650px);
  min-width:520px;
  height:176px;
  padding:30px 34px 24px 168px;
}

.manifesto-art {
  inset:-18px -50px -22px -60px;
  width:calc(100% + 110px);
  height:calc(100% + 40px);
}

.manifesto-brush p {
  max-width:48ch;
  font-family:var(--sans);
  font-size:clamp(13px,.82vw,14.5px);
  line-height:1.48;
  font-weight:500;
  letter-spacing:-.012em;
  text-wrap:pretty;
}

.expert-icon-svg {
  width:46px;
  height:46px;
  margin-bottom:10px;
}

.expert-icon-svg img {
  width:44px;
  height:44px;
}

.expertises article:not(:last-child)::after {
  top:24px;
  height:56px;
}

@media (max-width:1300px) {
  .manifesto-brush {
    width:min(42vw,620px);
    min-width:500px;
    padding:28px 30px 22px 156px;
  }

  .manifesto-brush p {
    font-size:12.7px;
    max-width:46ch;
  }
}

@media (max-width:680px) {
  .expert-icon-svg {
    width:34px;
    height:34px;
    margin-bottom:8px;
  }

  .expert-icon-svg img {
    width:32px;
    height:32px;
  }
}

.expertises {
  gap:52px
}

.expert-icon-svg {
  width:58px;
  height:58px;
  margin:0 auto 12px;
}

.expert-icon-svg img {
  width:56px;
  height:56px;
  object-fit:contain;
}

.expertises article:not(:last-child)::after {
  right:-27px;
  top:18px;
  height:70px;
}

.expertises strong {
  font-size:12px;
  letter-spacing:.15em;
  line-height:1.32;
}

@media (max-width:1300px) {
  .expert-icon-svg {
    width:54px;
    height:54px
  }

  .expert-icon-svg img {
    width:52px;
    height:52px
  }
}

@media (max-width:1050px) {
  .expertises {
    gap:22px
  }

  .expert-icon-svg {
    width:44px;
    height:44px
  }

  .expert-icon-svg img {
    width:42px;
    height:42px
  }
}

@media (max-width:680px) {
  .expertises {
    gap:10px
  }

  .expert-icon-svg {
    width:36px;
    height:36px;
    margin-bottom:8px
  }

  .expert-icon-svg img {
    width:34px;
    height:34px
  }

  .expertises strong {
    font-size:8.7px;
    letter-spacing:.12em
  }
}

.header-actions {
  display:flex;
  align-items:center;
  gap:10px
}

.audio-toggle {
  width:50px;
  height:50px;
  border-radius:50%;
  border:1px solid rgba(183,123,36,.55);
  background:rgba(244,237,227,.82);
  color:var(--navy);
  display:grid;
  place-items:center;
  box-shadow:0 8px 24px rgba(11,28,55,.12);
  cursor:pointer;
  transition:transform .25s var(--ease),background .25s var(--ease),border-color .25s var(--ease)
}

.audio-toggle:hover {
  transform:translateY(-2px);
  background:#fff;
  border-color:var(--gold)
}

.audio-toggle:focus-visible {
  outline:2px solid var(--gold);
  outline-offset:3px
}

.audio-icon {
  width:21px;
  height:21px;
  display:block
}

.audio-icon-pause {
  display:none
}

.audio-toggle.is-playing .audio-icon-play {
  display:none
}

.audio-toggle.is-playing .audio-icon-pause {
  display:block
}

@media(max-width:1050px) {
  .header-actions {
    gap:8px
  }

  .audio-toggle {
    width:44px;
    height:44px;
    flex:0 0 44px
  }
}

@media(max-width:680px) {
  .audio-toggle {
    width:40px;
    height:40px;
    flex-basis:40px
  }

  .audio-icon {
    width:19px;
    height:19px
  }
}

.mobile-menu .classic-menu > a:not(.menu-home) {
  position:relative;
  display:grid;
  grid-template-columns:1fr;
  justify-items:center;
  text-align:center;
}

.mobile-menu .classic-menu > a:not(.menu-home) span {
  position:absolute;
  left:18px;
  top:50%;
  transform:translateY(-50%);
}

.mobile-menu .classic-menu > a:not(.menu-home) b {
  width:100%;
  text-align:center;
}

.classic-menu .menu-kicker {
  margin:0 0 20px;
  text-align:center;
}

@media(max-width:680px) {
  .mobile-menu .classic-menu > a:not(.menu-home) span {
    left:8px;
  }
}

.header-actions {
  flex:0 0 auto;
  justify-content:flex-end
}

.hamburger {
  position:relative;
  place-items:center;
  overflow:hidden
}

.hamburger span {
  position:absolute;
  left:50%;
  top:50%;
  display:block;
  width:18px;
  height:2px;
  margin:0;
  border-radius:999px;
  background:var(--gold-2);
  transform-origin:center;
  transition:transform .28s var(--ease),opacity .22s var(--ease),background .25s var(--ease)
}

.hamburger span:nth-child(1) {
  transform:translate(-50%,-7px)
}

.hamburger span:nth-child(2) {
  transform:translate(-50%,-50%)
}

.hamburger span:nth-child(3) {
  transform:translate(-50%,5px)
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform:translate(-50%,-50%) rotate(45deg)
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity:0;
  transform:translate(-50%,-50%) scaleX(.35)
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform:translate(-50%,-50%) rotate(-45deg)
}

@media(max-width:680px) {
  .header {
    padding-left:14px;
    padding-right:calc(28px + env(safe-area-inset-right));
  }

  .header-actions {
    gap:10px;
    padding-right:max(4px, env(safe-area-inset-right));
  }

  .audio-toggle,.hamburger {
    width:42px;
    height:42px;
    flex:0 0 42px
  }

  .hamburger span {
    width:17px
  }

  .hamburger span:nth-child(1) {
    transform:translate(-50%,-6px)
  }

  .hamburger span:nth-child(3) {
    transform:translate(-50%,4px)
  }
}

@media(max-width:420px) {
  .header {
    padding-left:12px;
    padding-right:calc(24px + env(safe-area-inset-right));
  }

  .header-actions {
    gap:8px;
    padding-right:max(3px, env(safe-area-inset-right));
  }

  .audio-toggle,.hamburger {
    width:40px;
    height:40px;
    flex:0 0 40px
  }
}

@media (max-width:680px) {
  html,body,.app,.viewport {
    max-width:100%;
    overflow-x:hidden
  }

  .art-bg {
    background-image:url('assets/background_mobile.webp'),url('assets/background.webp');
    background-position:center center,center center;
    background-size:cover,cover;
    background-repeat:no-repeat,no-repeat;
  }

  .page-home {
    box-sizing:border-box;
    width:100%;
    max-width:100%;
    height:100%;
    overflow-x:hidden;
    overflow-y:hidden;
    padding:clamp(16px,2.4vh,24px) 16px clamp(14px,2vh,22px);
  }

  .home-copy {
    width:100%;
    max-width:100%;
    min-height:100%;
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    justify-content:flex-start;
    overflow:hidden;
  }

  .home-copy h1 {
    max-width:100%;
    font-size:clamp(36px,10.6vw,50px);
    line-height:.88;
    letter-spacing:-.035em;
  }

  .tagline {
    margin-top:clamp(12px,1.8vh,18px);
    font-size:clamp(12px,3.35vw,14px);
    line-height:1.38;
  }

  .expertises {
    width:100%;
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    align-items:start;
    gap:8px;
    margin-top:clamp(14px,2vh,20px);
  }

  .expertises article {
    display:flex;
    min-width:0;
    align-items:center;
    text-align:center;
  }

  .expert-icon-svg {
    width:32px;
    height:32px;
    margin-bottom:6px;
  }

  .expert-icon-svg img {
    width:30px;
    height:30px;
  }

  .expertises strong {
    font-size:clamp(7.4px,2.15vw,9px);
    letter-spacing:.09em;
    line-height:1.25;
  }

  .brush-button {
    width:min(330px,92%);
    height:clamp(54px,7.5vh,64px);
    min-height:54px;
    margin-top:clamp(15px,2.2vh,22px);
    font-size:10px;
  }
}

@media (max-width:420px) {
  .page-home {
    padding-inline:12px
  }

  .home-copy h1 {
    font-size:clamp(34px,10.2vw,43px)
  }

  .tagline {
    font-size:12px
  }

  .expertises {
    gap:5px
  }

  .expert-icon-svg {
    width:29px;
    height:29px
  }

  .expert-icon-svg img {
    width:27px;
    height:27px
  }

  .brush-button {
    width:94%;
    font-size:9.5px
  }
}

@media (max-width:680px) and (max-height:700px) {
  .page-home {
    padding-top:12px;
    padding-bottom:10px
  }

  .home-copy h1 {
    font-size:clamp(31px,9.4vw,42px)
  }

  .tagline {
    margin-top:9px;
    font-size:11.5px;
    line-height:1.32
  }

  .expertises {
    margin-top:10px
  }

  .expert-icon-svg {
    width:27px;
    height:27px;
    margin-bottom:4px
  }

  .expert-icon-svg img {
    width:25px;
    height:25px
  }

  .brush-button {
    height:50px;
    min-height:50px;
    margin-top:10px
  }
}

.home-copy h1 .title-period {
  color:var(--navy);
  font-style:normal
}

@media (max-width:680px) {
  .page-home {
    padding:clamp(16px,2.2vh,22px) 16px clamp(12px,1.8vh,18px);
  }

  .home-copy {
    min-height:100%;
  }

  .home-copy h1 {
    font-size:clamp(41px,11.8vw,58px);
    line-height:.885;
    letter-spacing:-.038em;
  }

  .tagline {
    margin-top:clamp(14px,2vh,20px);
    font-size:clamp(12.5px,3.55vw,15px);
    line-height:1.4;
    max-width:100%;
  }

  .expertises {
    margin-top:clamp(14px,1.8vh,18px);
    gap:8px;
  }

  .expert-icon-svg {
    width:31px;
    height:31px;
    margin-bottom:5px
  }

  .expert-icon-svg img {
    width:29px;
    height:29px
  }

  .expertises strong {
    font-size:clamp(7.3px,2.05vw,8.8px);
    line-height:1.2;
    letter-spacing:.08em
  }

  .brush-button {
    align-self:flex-start;
    width:min(405px,96%);
    height:clamp(66px,8.4vh,78px);
    min-height:66px;
    margin-top:auto;
    margin-bottom:2px;
    font-size:12px;
    letter-spacing:.14em;
    gap:24px;
    padding:0 28px;
  }

  .brush-button b {
    font-size:23px
  }

  .brush-button-art {
    inset:-14px -28px -14px -28px;
    width:calc(100% + 56px);
    height:calc(100% + 28px)
  }
}

@media (max-width:420px) {
  .page-home {
    padding-inline:12px
  }

  .home-copy h1 {
    font-size:clamp(37px,11.1vw,50px)
  }

  .tagline {
    font-size:12.5px;
    line-height:1.38
  }

  .expertises {
    gap:6px
  }

  .expert-icon-svg {
    width:28px;
    height:28px
  }

  .expert-icon-svg img {
    width:26px;
    height:26px
  }

  .expertises strong {
    font-size:7.2px
  }

  .brush-button {
    width:100%;
    height:64px;
    min-height:64px;
    font-size:11px;
    gap:18px;
    padding:0 24px
  }
}

@media (max-width:680px) and (max-height:700px) {
  .home-copy h1 {
    font-size:clamp(34px,10vw,45px)
  }

  .tagline {
    margin-top:10px;
    font-size:11.5px;
    line-height:1.32
  }

  .expertises {
    margin-top:10px
  }

  .brush-button {
    height:58px;
    min-height:58px;
    font-size:10.5px
  }
}

.brush-button {
  justify-content:center;
  gap:0;
}

.brush-button b {
  display:none !important
}

.brush-button span {
  display:block;
  text-align:center;
  width:100%
}

@media (min-width:681px) {
  .home-copy {
    display:flex;
    flex-direction:column
  }

  .brush-button {
    margin-top:28px;
    margin-left:0;
    margin-right:0;
  }
}

@media (max-width:680px) {
  .home-copy {
    justify-content:flex-start;
  }

  .brush-button {
    align-self:center;
    margin-top:auto;
    margin-bottom:auto;
    width:min(405px,96%);
    max-width:405px;
  }
}

@media (max-width:420px) {
  .brush-button {
    width:min(100%, 392px);
    margin-top:auto;
    margin-bottom:auto;
  }
}

@media (max-width:680px) and (max-height:700px) {
  .brush-button {
    margin-top:auto;
    margin-bottom:auto
  }
}

.studio-passion-block {
  margin:0 0 34px;
  padding:26px 28px;
  border-radius:22px;
  background:rgba(255,255,255,.52);
  border:1px solid rgba(183,123,36,.24);
  box-shadow:0 14px 34px rgba(16,36,71,.06);
}

.studio-passion-block h3 {
  margin:0 0 14px;
  font-family:var(--serif);
  font-size:clamp(24px,2.2vw,34px);
  line-height:1.15;
  font-weight:500;
  color:var(--navy);
}

.studio-passion-block p {
  margin:0;
  color:var(--muted);
  font-size:16px;
  line-height:1.72;
}

.studio-passion-block p+p {
  margin-top:14px
}

.legal-shell {
  max-width:1040px
}

.legal-content {
  display:grid;
  gap:10px
}

.legal-content h3 {
  margin:22px 0 4px;
  font-family:var(--serif);
  font-size:clamp(21px,1.8vw,28px);
  line-height:1.2;
  font-weight:500;
  color:var(--navy);
}

.legal-content h3:first-child {
  margin-top:0
}

.legal-content p,.legal-content li {
  color:var(--muted);
  font-size:15px;
  line-height:1.7;
}

.legal-content p {
  margin:0
}

.legal-content ul {
  margin:2px 0 4px;
  padding-left:22px;
  display:grid;
  gap:5px
}

.legal-content strong {
  color:var(--navy)
}

.contact-legal-link {
  display:flex;
  justify-content:center;
  margin-top:24px
}

.contact-legal-link a,.mobile-menu .classic-menu .menu-legal b {
  font-family:var(--sans);
  font-size:11px;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--gold);
}

.contact-legal-link a {
  padding:8px 4px;
  border-bottom:1px solid rgba(183,123,36,.34)
}

.mobile-menu .classic-menu .menu-legal {
  grid-template-columns:1fr;
  justify-items:center;
  min-height:36px;
  margin-top:12px;
  padding:10px 8px 0;
  border-top:1px solid rgba(183,123,36,.22);
  text-align:center;
}

.mobile-menu .classic-menu .menu-legal b {
  font-size:10px;
  letter-spacing:.13em
}

@media(max-width:680px) {
  .studio-passion-block {
    padding:20px 18px;
    margin-bottom:26px;
    border-radius:18px
  }

  .studio-passion-block h3 {
    font-size:23px
  }

  .studio-passion-block p {
    font-size:14.5px;
    line-height:1.65
  }

  .legal-shell {
    padding-top:28px
  }

  .legal-content h3 {
    font-size:20px;
    margin-top:18px
  }

  .legal-content p,.legal-content li {
    font-size:14px;
    line-height:1.62
  }

  .mobile-menu .classic-menu .menu-legal {
    min-height:30px;
    margin-top:6px;
    padding-top:7px
  }

  .mobile-menu .classic-menu .menu-legal b {
    font-size:9px
  }
}

.horizon-discover-wrap {
  display:flex;
  justify-content:center;
  align-items:center;
  margin-top:24px
}

.horizon-discover-link {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:54px;
  padding:0 32px;
  border:1px solid rgba(183,123,36,.48);
  border-radius:999px;
  background:linear-gradient(180deg,rgba(255,255,255,.92),rgba(240,233,222,.88));
  color:var(--navy);
  font-size:11px;
  font-weight:800;
  letter-spacing:.16em;
  text-transform:uppercase;
  box-shadow:0 14px 30px rgba(8,22,43,.16), inset 0 1px 0 rgba(255,255,255,.45);
  transition:transform .25s var(--ease),background .25s var(--ease),color .25s var(--ease),border-color .25s var(--ease),box-shadow .25s var(--ease)
}

.horizon-discover-link:hover,.horizon-discover-link:focus-visible {
  transform:translateY(-2px);
  background:linear-gradient(180deg,rgba(255,255,255,.98),rgba(247,241,232,.96));
  color:var(--navy);
  border-color:rgba(212,164,84,.82);
  box-shadow:0 18px 36px rgba(8,22,43,.2),0 0 0 3px rgba(212,164,84,.14);
  outline:none
}

@media(max-width:680px) {
  .horizon-discover-wrap {
    margin-top:18px
  }

  .horizon-discover-link {
    width:100%;
    min-height:50px;
    padding:0 20px;
    text-align:center
  }
}

.mobile-menu .classic-menu a.menu-legal {
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  min-height:34px;
  margin:8px auto 0;
  padding:8px 8px 0;
  border-bottom:none;
  border-top:1px solid rgba(183,123,36,.22);
  color:var(--gold);
  transform:none !important;
}

.mobile-menu .classic-menu a.menu-legal::after {
  display:none !important;
  content:none !important
}

.mobile-menu .classic-menu a.menu-legal b {
  width:auto;
  font-family:var(--sans);
  font-size:11px;
  font-weight:700;
  letter-spacing:.14em;
  line-height:1.2;
  text-transform:uppercase;
  text-align:center;
  color:var(--gold);
}

.mobile-menu .classic-menu a.menu-legal:hover, .mobile-menu .classic-menu a.menu-legal.active {
  color:var(--gold);
  border-color:rgba(183,123,36,.34);
  transform:none !important;
}

.mobile-menu .classic-menu a.menu-legal:hover b, .mobile-menu .classic-menu a.menu-legal.active b {
  color:var(--gold);
  text-shadow:0 0 10px rgba(183,123,36,.12);
}

@media(max-width:680px) {
  .mobile-menu .classic-menu a.menu-legal {
    min-height:30px;
    margin-top:6px;
    padding-top:7px;
  }

  .mobile-menu .classic-menu a.menu-legal b {
    font-size:9px;
  }
}

.art-bg,.art-glow,#sparkles {
  transition:filter .45s var(--ease), opacity .45s var(--ease), transform .45s var(--ease)
}

@media(min-width:1051px) {
  body.inner-page-active .art-bg {
    filter:saturate(1.03) contrast(1.01) blur(6px) brightness(.985);
    transform:scale(1.03);
  }

  body.inner-page-active .art-glow {
    opacity:.9;
    filter:blur(2px);
  }

  body.inner-page-active #sparkles {
    opacity:.4;
  }
}

.portfolio-page-shell > h2 {
  white-space:nowrap;
  font-size:clamp(32px,4.6vw,72px);
  line-height:.96;
}

@media (max-width:680px) {
  .portfolio-page-shell > h2 {
    font-size:clamp(26px,7.2vw,42px);
    letter-spacing:.01em;
  }
}

.horizon-discover-wrap {
  position:relative;
  flex-direction:column;
  gap:12px
}

.horizon-secret-trigger {
  width:28px;
  height:28px;
  padding:0;
  border:0;
  background:transparent;
  opacity:.13;
  cursor:pointer;
  transition:opacity .3s var(--ease),transform .3s var(--ease),filter .3s var(--ease)
}

.horizon-secret-trigger img {
  display:block;
  width:100%;
  height:100%;
  object-fit:contain;
  filter:grayscale(1) sepia(.25)
}

.horizon-secret-trigger:hover,.horizon-secret-trigger:focus-visible {
  opacity:.72;
  transform:rotate(8deg) scale(1.12);
  filter:drop-shadow(0 0 8px rgba(212,164,84,.38));
  outline:none
}

.secret-modal {
  position:fixed;
  inset:0;
  z-index:120;
  display:grid;
  place-items:center;
  padding:24px;
  opacity:0;
  visibility:hidden;
  transition:opacity .3s var(--ease),visibility .3s var(--ease)
}

.secret-modal.open {
  opacity:1;
  visibility:visible
}

.secret-modal-backdrop {
  position:absolute;
  inset:0;
  background:rgba(7,18,35,.62);
  backdrop-filter:blur(9px);
  -webkit-backdrop-filter:blur(9px)
}

.secret-modal-panel {
  position:relative;
  z-index:1;
  width:min(560px,100%);
  padding:42px 42px 36px;
  border:1px solid rgba(212,164,84,.42);
  border-radius:28px;
  background:linear-gradient(155deg,rgba(245,239,230,.98),rgba(232,222,207,.98));
  box-shadow:0 30px 90px rgba(4,12,24,.42);
  text-align:center;
  transform:translateY(18px) scale(.98);
  transition:transform .35s var(--ease)
}

.secret-modal.open .secret-modal-panel {
  transform:none
}

.secret-modal-close {
  position:absolute;
  top:16px;
  right:16px;
  width:40px;
  height:40px;
  border:1px solid rgba(16,36,71,.16);
  border-radius:50%;
  background:rgba(255,255,255,.48);
  cursor:pointer
}

.secret-modal-close span {
  position:absolute;
  left:50%;
  top:50%;
  width:16px;
  height:1.5px;
  background:var(--navy);
  border-radius:999px
}

.secret-modal-close span:first-child {
  transform:translate(-50%,-50%) rotate(45deg)
}

.secret-modal-close span:last-child {
  transform:translate(-50%,-50%) rotate(-45deg)
}

.secret-modal-close:hover,.secret-modal-close:focus-visible {
  background:var(--navy);
  outline:none
}

.secret-modal-close:hover span,.secret-modal-close:focus-visible span {
  background:var(--gold-2)
}

.secret-kicker {
  display:block;
  color:var(--gold);
  font-size:10px;
  font-weight:800;
  letter-spacing:.2em;
  margin-bottom:12px
}

.secret-logo {
  width:72px;
  height:72px;
  object-fit:contain;
  margin:0 auto 8px;
  filter:drop-shadow(0 8px 18px rgba(16,36,71,.12))
}

.secret-modal-panel h2 {
  margin:0 0 18px;
  font-family:var(--serif);
  font-size:clamp(30px,4vw,46px);
  font-weight:500;
  line-height:1.05;
  color:var(--navy)
}

.secret-modal-panel p {
  margin:10px auto;
  color:var(--muted);
  font-size:15px;
  line-height:1.65;
  max-width:470px
}

.secret-modal-panel p strong {
  color:var(--navy)
}

.secret-code-row {
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  margin:24px 0 6px
}

.secret-code-row code {
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:0 20px;
  border:1px solid rgba(183,123,36,.32);
  border-radius:14px;
  background:rgba(255,255,255,.66);
  color:var(--navy);
  font:800 15px/1 var(--sans);
  letter-spacing:.12em
}

.secret-copy-button,.secret-game-link {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  border-radius:999px;
  font-size:10px;
  font-weight:800;
  letter-spacing:.13em;
  text-transform:uppercase;
  cursor:pointer
}

.secret-copy-button {
  padding:0 20px;
  border:1px solid var(--navy);
  background:var(--navy);
  color:white
}

.secret-copy-button:hover,.secret-copy-button:focus-visible {
  background:#173760;
  outline:none
}

.secret-copy-status {
  min-height:20px!important;
  margin:4px 0 10px!important;
  color:var(--gold)!important;
  font-size:12px!important;
  font-weight:700
}

.secret-game-link {
  padding:0 24px;
  border:1px solid rgba(183,123,36,.42);
  background:rgba(255,255,255,.52);
  color:var(--navy)
}

.secret-game-link:hover,.secret-game-link:focus-visible {
  border-color:var(--gold);
  background:white;
  outline:none
}

body.secret-modal-open {
  overflow:hidden
}

@media(max-width:680px) {
  .horizon-secret-trigger {
    width:25px;
    height:25px
  }

  .secret-modal {
    padding:16px
  }

  .secret-modal-panel {
    padding:38px 20px 28px;
    border-radius:22px
  }

  .secret-code-row {
    flex-direction:column
  }

  .secret-code-row code,.secret-copy-button,.secret-game-link {
    width:100%
  }

  .secret-code-row code {
    font-size:14px
  }
}

.mobile-home-intro, .mobile-home-services, .mobile-home-actions {
  display:none
}

@media (max-width:680px) {
  .page-home {
    padding:24px 18px 56px;
    background:linear-gradient(180deg,rgba(248,243,235,.14),rgba(248,243,235,.02));
  }

  .home-copy {
    width:100%;
    margin:0
  }

  .home-copy h1 {
    font-size:clamp(42px,12.2vw,64px);
    line-height:.94;
    letter-spacing:-.035em;
    margin-top:4px;
    text-wrap:balance;
  }

  .tagline {
    margin-top:22px;
    font-size:16px;
    line-height:1.55;
    max-width:34rem;
  }

  .tagline br {
    display:none
  }

  .mobile-home-intro {
    display:block;
    margin-top:24px;
    padding:18px 18px 17px;
    border-radius:20px;
    background:rgba(255,255,255,.56);
    border:1px solid rgba(16,36,71,.10);
    box-shadow:0 14px 34px rgba(16,36,71,.07);
    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);
  }

  .mobile-eyebrow {
    display:block;
    margin-bottom:9px;
    color:var(--gold);
    font-size:10px;
    font-weight:700;
    letter-spacing:.22em;
  }

  .mobile-home-intro p {
    margin:0;
    color:var(--navy);
    font-size:14px;
    line-height:1.55;
  }

  .expertises {
    display:none
  }

  .mobile-home-services {
    display:grid;
    gap:10px;
    margin-top:18px;
  }

  .mobile-home-services article {
    display:grid;
    grid-template-columns:36px minmax(0,1fr);
    gap:13px;
    align-items:start;
    padding:16px 16px 15px;
    border-radius:18px;
    background:rgba(248,243,235,.72);
    border:1px solid rgba(16,36,71,.09);
    box-shadow:0 10px 26px rgba(16,36,71,.055);
  }

  .mobile-service-number {
    display:grid;
    place-items:center;
    width:34px;
    height:34px;
    border-radius:50%;
    color:var(--gold);
    border:1px solid rgba(183,123,36,.34);
    background:rgba(255,255,255,.52);
    font-family:var(--serif);
    font-size:11px;
  }

  .mobile-home-services strong {
    display:block;
    margin-bottom:5px;
    color:var(--navy);
    font-family:var(--serif);
    font-size:17px;
    font-weight:600;
  }

  .mobile-home-services p {
    margin:0;
    color:var(--muted);
    font-size:13px;
    line-height:1.45;
  }

  .mobile-home-actions {
    display:grid;
    gap:10px;
    margin-top:20px;
  }

  .mobile-primary-cta, .mobile-secondary-cta {
    min-height:52px;
    border-radius:999px;
    cursor:pointer;
    font-size:11px;
    font-weight:700;
    letter-spacing:.12em;
    text-transform:uppercase;
  }

  .mobile-primary-cta {
    border:1px solid var(--navy);
    background:var(--navy);
    color:white;
    box-shadow:0 14px 30px rgba(16,36,71,.16);
  }

  .mobile-primary-cta span {
    color:var(--gold-2);
    font-size:18px;
    margin-left:8px;
  }

  .mobile-secondary-cta {
    border:1px solid rgba(16,36,71,.18);
    background:rgba(255,255,255,.46);
    color:var(--navy);
  }

  .brush-button {
    display:none
  }
}

@media (max-width:680px) {
  .viewport {
    min-height:0;
    overflow:hidden;
  }

  .page-home {
    height:100%;
    min-height:0;
    overflow-x:hidden !important;
    overflow-y:auto !important;
    -webkit-overflow-scrolling:touch;
    overscroll-behavior-y:contain;
    touch-action:pan-y;
    scrollbar-gutter:stable;
    padding-bottom:72px;
  }

  .page-home.active {
    pointer-events:auto;
  }

  .page-home .home-copy {
    min-height:auto;
    height:auto;
    overflow:visible !important;
    padding-bottom:max(18px, env(safe-area-inset-bottom));
  }

  .mobile-home-actions {
    padding-bottom:max(8px, env(safe-area-inset-bottom));
  }
}

@media (max-width: 1050px) {
  .mobile-home-actions {
    align-items:center;
    justify-items:center;
  }

  .mobile-primary-cta, .mobile-secondary-cta {
    width:min(100%, 360px);
    margin-inline:auto;
    text-align:center;
    justify-content:center;
  }

  .mobile-primary-cta span {
    display:none !important;
  }
}

@media (max-width:680px) {
  .mobile-home-actions {
    width:100%;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
  }

  .mobile-primary-cta, .mobile-secondary-cta {
    box-sizing:border-box;
    display:grid;
    place-items:center;
    width:min(100%,360px);
    min-height:52px;
    margin:0 auto;
    padding:0 22px;
    text-align:center;
    text-indent:.12em;
    line-height:1.2;
  }
}

.manifesto-brush {
  width:min(41vw, 610px);
  min-width:540px;
  height:196px;
  padding:30px 72px 28px 178px;
  display:flex;
  align-items:center;
  justify-content:flex-start;
}

.manifesto-brush p {
  margin:0;
  max-width:35ch;
  font-size:13px;
  line-height:1.52;
  text-wrap:balance;
}

@media (max-width:1300px) {
  .manifesto-brush {
    width:min(40vw,560px);
    min-width:500px;
    padding:28px 64px 26px 166px;
  }

  .manifesto-brush p {
    max-width:33ch;
    font-size:12.4px;
  }
}

@media (max-width:1050px) {
  .manifesto-brush {
    display:none;
  }
}

.manifesto-brush {
  right:6vw;
}

@media (max-width:1300px) {
  .manifesto-brush {
    right:4.2vw;
  }
}

@media (max-width:1050px) {
  .manifesto-brush {
    display:none;
  }
}

.manifesto-brush {
  right:5.2vw;
  width:min(40vw, 590px);
  min-width:515px;
  height:198px;
  padding:28px 82px 26px 158px;
  align-items:center;
}

.manifesto-brush p.manifesto-staircase {
  margin:0;
  width:100%;
  max-width:none;
  font-size:13px;
  line-height:1.5;
  font-weight:600;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:1px;
  text-wrap:initial;
}

.manifesto-brush p.manifesto-staircase span {
  display:block;
  white-space:nowrap;
}

.manifesto-brush p.manifesto-staircase span:nth-child(1) {
  max-width:18ch;
}

.manifesto-brush p.manifesto-staircase span:nth-child(2) {
  max-width:33ch;
}

.manifesto-brush p.manifesto-staircase span:nth-child(3) {
  max-width:47ch;
}

.manifesto-brush p.manifesto-staircase span:nth-child(4) {
  max-width:58ch;
}

@media (max-width:1300px) {
  .manifesto-brush {
    right:3.6vw;
    width:min(40vw,560px);
    min-width:490px;
    padding:26px 70px 24px 150px;
  }

  .manifesto-brush p.manifesto-staircase {
    font-size:12.1px;
  }
}

@media (max-width:1050px) {
  .manifesto-brush {
    display:none;
  }
}
