:root {
  --black: #080808;
  --black-2: #11110f;
  --paper: #f1efe8;
  --paper-2: #dfdcd2;
  --accent: #e6a13b;
  --accent-bright: #f0b85f;
  --line-light: rgba(255,255,255,.17);
  --line-dark: rgba(8,8,8,.18);
  --page: min(1440px, calc(100vw - 64px));
  --header: 92px;
  --ease: cubic-bezier(.2,.75,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--black); }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--black);
  color: var(--paper);
  font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
::selection { background: var(--accent); color: var(--black); }

.page { width: var(--page); margin-inline: auto; }
.section { position: relative; padding: 150px 0; }
.section-light { background: var(--paper); color: var(--black); }

.skip-link {
  position: fixed; z-index: 999; top: 10px; left: 10px; transform: translateY(-150%);
  padding: 12px 18px; background: var(--paper); color: var(--black); font-weight: 700;
}
.skip-link:focus { transform: none; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* Header */
.site-header {
  position: fixed; z-index: 100; inset: 0 0 auto; height: var(--header);
  display: flex; align-items: center; justify-content: space-between; padding: 0 32px;
  border-bottom: 1px solid transparent;
  transition: height .35s var(--ease), background-color .35s var(--ease), border-color .35s var(--ease);
}
.site-header.is-scrolled, .site-header.menu-active {
  height: 76px; background: rgba(8,8,8,.9); border-color: var(--line-light); backdrop-filter: blur(16px);
}
.brand { position: relative; z-index: 2; }
.brand img { width: 225px; height: auto; }
.main-nav { display: flex; align-items: center; gap: 30px; font-size: 14px; font-weight: 700; }
.main-nav > a:not(.nav-contact) { position: relative; }
.main-nav > a:not(.nav-contact)::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -6px; height: 1px;
  background: var(--accent-bright); transition: right .28s var(--ease);
}
.main-nav > a:hover::after, .main-nav > a:focus-visible::after { right: 0; }
.nav-contact { display: inline-flex; align-items: center; gap: 12px; margin-left: 4px; padding: 13px 18px; border: 1px solid rgba(255,255,255,.72); transition: .28s var(--ease); }
.nav-contact:hover, .nav-contact:focus-visible { background: var(--paper); color: var(--black); }
.menu-button { display: none; position: relative; z-index: 3; width: 48px; height: 48px; border: 0; padding: 0; background: transparent; cursor: pointer; }
.menu-button span:not(.sr-only) { position: absolute; left: 8px; width: 32px; height: 1px; background: #fff; transition: .32s var(--ease); }
.menu-button span:first-child { top: 18px; }
.menu-button span:nth-child(2) { top: 29px; }
.menu-button[aria-expanded="true"] span:first-child { top: 24px; transform: rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(2) { top: 24px; transform: rotate(-45deg); }

/* Hero */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; background: #111; }
.hero-slides, .hero-shade, .hero-grid { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: 0; margin: 0; opacity: 0; transform: scale(1.035); transition: opacity 1s ease, transform 7s linear; }
.hero-slide.is-active { opacity: 1; transform: scale(1); }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-slide:nth-child(1) img { object-position: center 53%; }
.hero-slide:nth-child(2) img { object-position: center center; }
.hero-slide:nth-child(3) img { object-position: center center; }
.hero-slide:nth-child(4) img { object-position: center center; }
.hero-shade { background: linear-gradient(180deg, rgba(5,5,5,.58) 0%, rgba(5,5,5,.08) 29%, rgba(5,5,5,.38) 59%, rgba(5,5,5,.94) 100%), linear-gradient(90deg, rgba(5,5,5,.58), transparent 64%); }
.hero-grid { opacity: .28; background-image: linear-gradient(to right, transparent calc(100% - 1px), rgba(255,255,255,.13) 1px); background-size: calc(100vw / 6) 100%; pointer-events: none; }
.hero-content { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1fr) 180px; align-items: end; gap: 50px; padding: calc(var(--header) + 100px) 0 118px; }
.hero-copy { max-width: 1240px; }
.kicker, .section-tag { margin: 0; font-size: 12px; line-height: 1.2; font-weight: 700; letter-spacing: .145em; text-transform: uppercase; }
.kicker { margin-bottom: 32px; color: rgba(255,255,255,.75); }
.hero-title { margin: 0; max-width: 1280px; font-size: clamp(64px, 9.55vw, 152px); line-height: .84; letter-spacing: -.07em; font-weight: 700; text-wrap: balance; }
.hero-title em { color: var(--accent-bright); font-style: normal; }
.hero-lead { max-width: 670px; margin: 46px 0 0; font-size: clamp(19px, 1.48vw, 24px); line-height: 1.5; color: rgba(255,255,255,.88); }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 30px; margin-top: 40px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 56px; padding: 0 24px; border: 1px solid transparent; font-weight: 700; transition: transform .28s var(--ease), background-color .28s var(--ease); }
.button:hover { transform: translateY(-3px); }
.button-primary { background: var(--paper); color: var(--black); }
.button-primary:hover, .button-primary:focus-visible { background: var(--accent-bright); }
.arrow-link { display: inline-flex; gap: 12px; align-items: center; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.5); font-weight: 700; transition: .25s ease; }
.arrow-link:hover, .arrow-link:focus-visible { color: var(--accent-bright); border-color: var(--accent-bright); }
.hero-index { justify-self: end; display: grid; gap: 12px; align-self: end; padding-bottom: 4px; }
.hero-index button { position: relative; display: grid; grid-template-columns: 36px 1fr; align-items: center; gap: 10px; width: 126px; padding: 8px 0; border: 0; background: transparent; color: rgba(255,255,255,.45); text-align: left; cursor: pointer; }
.hero-index button::after { content: ""; height: 1px; background: rgba(255,255,255,.25); transition: background-color .3s ease, transform .3s ease; transform-origin: left; }
.hero-index button.is-active { color: #fff; }
.hero-index button.is-active::after { background: var(--accent-bright); transform: scaleX(1.12); }
.hero-index span { font-size: 11px; font-weight: 700; letter-spacing: .12em; }
.hero-capabilities { position: absolute; z-index: 2; left: 50%; bottom: 26px; transform: translateX(-50%); display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; padding-top: 13px; border-top: 1px solid rgba(255,255,255,.27); font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.68); }

/* Common typography */
.section-tag { color: var(--accent); }
.display { margin: 0; max-width: 1080px; font-size: clamp(50px, 6.5vw, 103px); line-height: .94; letter-spacing: -.058em; font-weight: 700; text-wrap: balance; }
.section-intro { margin: 0; max-width: 520px; font-size: 19px; line-height: 1.58; color: rgba(255,255,255,.64); }
.section-heading { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(320px, .7fr); align-items: end; gap: 90px; margin-bottom: 84px; }
.section-heading .section-tag { margin-bottom: 27px; }

/* Statement */
.statement-grid { display: grid; grid-template-columns: 260px minmax(0, 1fr); gap: 70px; }
.statement-copy { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 56px; max-width: 940px; margin-top: 62px; padding-top: 32px; border-top: 1px solid var(--line-dark); }
.statement-copy p { margin: 0; font-size: 20px; line-height: 1.55; color: rgba(8,8,8,.67); }

/* Work */
.work { background: var(--black); }
.work-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 105px 30px; }
.case-wide { grid-column: 1 / -1; }
.case-media { position: relative; display: block; overflow: hidden; aspect-ratio: 16 / 10; background: #191919; }
.case-wide .case-media { aspect-ratio: 16 / 8.2; }
.case-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.23)); }
.case-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease), filter .9s var(--ease); }
.case:nth-child(2) .case-media img { object-position: center center; }
.case-media:hover img, .case-media:focus-visible img { transform: scale(1.04); filter: contrast(1.04) saturate(1.08); }
.case-arrow { position: absolute; z-index: 2; top: 22px; right: 22px; display: grid; place-items: center; width: 58px; height: 58px; border-radius: 50%; border: 1px solid rgba(255,255,255,.43); background: rgba(8,8,8,.7); font-size: 23px; backdrop-filter: blur(8px); transition: .38s var(--ease); }
.case-media:hover .case-arrow, .case-media:focus-visible .case-arrow { transform: rotate(45deg); background: var(--accent-bright); color: var(--black); }
.case-info { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, .75fr); gap: 42px; margin-top: 22px; padding-top: 23px; border-top: 1px solid var(--line-light); }
.case:not(.case-wide) .case-info { grid-template-columns: 1fr; gap: 19px; }
.case-info p { margin: 0; color: rgba(255,255,255,.62); font-size: 16px; line-height: 1.58; }
.case-info div > p { margin-bottom: 10px; font-size: 11px; line-height: 1.2; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: rgba(255,255,255,.46); }
.case-info h3 { margin: 0; font-size: clamp(34px, 3vw, 52px); line-height: .98; letter-spacing: -.045em; }

/* Services */
.services-layout { display: grid; grid-template-columns: minmax(350px, .9fr) minmax(0, 1.1fr); gap: 100px; align-items: start; }
.services-title-block { position: sticky; top: 130px; }
.services-title-block .section-tag { margin-bottom: 27px; }
.services-title-block .display { font-size: clamp(48px, 5.45vw, 82px); }
.services-title-block .section-intro { margin-top: 38px; color: rgba(8,8,8,.62); }
.service-list { border-top: 1px solid var(--line-dark); }
.service { position: relative; display: grid; grid-template-columns: 54px minmax(230px, .8fr) minmax(240px, 1fr) 34px; gap: 22px; align-items: center; min-height: 124px; padding: 24px 0; border-bottom: 1px solid var(--line-dark); overflow: hidden; }
.service::before { content: ""; position: absolute; inset: 0; transform: translateX(-101%); background: var(--accent-bright); transition: transform .48s var(--ease); }
.service:hover::before { transform: none; }
.service > * { position: relative; z-index: 1; }
.service > span { font-size: 11px; font-weight: 700; letter-spacing: .13em; color: rgba(8,8,8,.43); }
.service h3 { margin: 0; font-size: clamp(25px, 2.25vw, 36px); line-height: 1; letter-spacing: -.035em; }
.service p { margin: 0; font-size: 15px; line-height: 1.5; color: rgba(8,8,8,.62); }
.service b { justify-self: end; font-size: 28px; font-weight: 300; transition: transform .35s var(--ease); }
.service:hover b { transform: rotate(45deg); }

/* Method */
.method { background: var(--black-2); }
.method-grid { list-style: none; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; padding: 1px; background: var(--line-light); }
.method-card { min-height: 390px; display: flex; flex-direction: column; padding: 32px; background: var(--black-2); transition: transform .4s var(--ease), background-color .4s var(--ease), color .4s var(--ease); }
.method-card:hover { transform: translateY(-8px); background: var(--accent-bright); color: var(--black); }
.method-card span { font-size: 11px; font-weight: 700; letter-spacing: .13em; color: var(--accent-bright); }
.method-card:hover span { color: var(--black); }
.method-card h3 { margin: auto 0 27px; font-size: clamp(34px, 3vw, 48px); line-height: 1; letter-spacing: -.045em; }
.method-card p { margin: 0; color: rgba(255,255,255,.62); line-height: 1.55; }
.method-card:hover p { color: rgba(8,8,8,.7); }

/* About */
.about { position: relative; min-height: 900px; display: flex; align-items: flex-end; overflow: hidden; padding: 150px 0 100px; }
.about-image, .about-shade { position: absolute; inset: 0; }
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-shade { background: linear-gradient(180deg, rgba(8,8,8,.2), rgba(8,8,8,.65) 58%, rgba(8,8,8,.97)), linear-gradient(90deg, rgba(8,8,8,.5), transparent 65%); }
.about-layout { position: relative; z-index: 1; display: grid; grid-template-columns: .65fr 1.35fr; gap: 100px; align-items: end; }
.experience strong { display: block; margin-bottom: 18px; font-size: clamp(100px, 12vw, 190px); line-height: .8; letter-spacing: -.08em; color: var(--accent-bright); }
.experience span { display: block; max-width: 320px; font-size: 18px; color: rgba(255,255,255,.72); }
.about-copy { max-width: 800px; }
.about-copy .section-tag { margin-bottom: 27px; }
.about-copy .display { font-size: clamp(49px, 5.8vw, 91px); }
.about-copy > p:not(.section-tag):not(.signature) { max-width: 720px; margin: 27px 0 0; font-size: 19px; line-height: 1.56; color: rgba(255,255,255,.72); }
.signature { margin: 34px 0 0; font-size: 25px; font-weight: 700; }

/* Brand ticker */
.brand-ticker { overflow: hidden; border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); background: var(--black); }
.ticker-track { display: flex; align-items: center; width: max-content; animation: ticker 34s linear infinite; }
.ticker-track span { display: inline-flex; align-items: center; min-height: 104px; padding: 0 35px; font-size: clamp(26px, 2.55vw, 43px); font-weight: 700; letter-spacing: -.04em; color: rgba(255,255,255,.7); }
.ticker-track span::after { content: "•"; margin-left: 70px; color: var(--accent); }

/* Contact */
.contact { background: var(--accent-bright); color: var(--black); }
.contact-layout { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(380px, .92fr); gap: 100px; align-items: start; }
.contact .section-tag { color: rgba(8,8,8,.53); }
.contact-title { margin: 28px 0 0; font-size: clamp(59px, 7vw, 112px); line-height: .91; letter-spacing: -.064em; }
.contact-title span { color: rgba(8,8,8,.5); }
.contact-lead { max-width: 720px; margin: 44px 0 0; font-size: 20px; line-height: 1.55; color: rgba(8,8,8,.66); }
.contact-details { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; margin-top: 45px; font-size: clamp(20px, 2vw, 30px); font-weight: 700; letter-spacing: -.025em; }
.contact-details a { border-bottom: 1px solid rgba(8,8,8,.28); }
.contact-details address { margin-top: 18px; font-size: 16px; line-height: 1.55; font-style: normal; font-weight: 400; color: rgba(8,8,8,.65); }
.contact-form { padding: 36px; background: var(--black); color: #fff; }
.contact-form label { display: block; margin-bottom: 23px; }
.contact-form label > span { display: block; margin-bottom: 9px; font-size: 11px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: rgba(255,255,255,.56); }
.field-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.contact-form input, .contact-form textarea { width: 100%; padding: 13px 0; border: 0; border-bottom: 1px solid rgba(255,255,255,.25); border-radius: 0; outline: 0; background: transparent; color: #fff; transition: border-color .25s ease; }
.contact-form textarea { min-height: 112px; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--accent-bright); }
.contact-form button { width: 100%; min-height: 62px; display: flex; align-items: center; justify-content: space-between; margin-top: 9px; padding: 0 20px; border: 1px solid rgba(255,255,255,.7); background: transparent; cursor: pointer; font-weight: 700; transition: .28s ease; }
.contact-form button:hover, .contact-form button:focus-visible { background: var(--paper); color: var(--black); }
.contact-form > p { margin: 15px 0 0; font-size: 12px; color: rgba(255,255,255,.48); }

/* Footer */
.site-footer { padding: 70px 0 26px; background: var(--black); }
.footer-main { display: grid; grid-template-columns: 1fr 1fr auto; gap: 48px; align-items: center; padding-bottom: 47px; border-bottom: 1px solid var(--line-light); }
.footer-logo img { width: min(310px, 100%); height: auto; }
.footer-main > p { margin: 0; color: rgba(255,255,255,.54); }
.footer-main > div { display: flex; gap: 26px; font-weight: 700; }
.footer-main a:hover { color: var(--accent-bright); }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 23px; font-size: 12px; color: rgba(255,255,255,.38); }
.footer-bottom p { margin: 0; }

/* Motion */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .78s var(--ease), transform .78s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@keyframes ticker { to { transform: translateX(-50%); } }

@media (max-width: 1100px) {
  :root { --page: min(100% - 44px, 1440px); }
  .site-header { padding-inline: 22px; }
  .brand img { width: 192px; }
  .main-nav { gap: 19px; }
  .hero-content, .section-heading, .services-layout, .about-layout, .contact-layout { gap: 55px; }
  .service { grid-template-columns: 42px minmax(190px, .75fr) minmax(220px, 1fr) 25px; gap: 14px; }
  .method-card { min-height: 340px; padding: 25px; }
}

@media (max-width: 860px) {
  :root { --page: calc(100vw - 36px); --header: 76px; }
  .section { padding: 96px 0; }
  .site-header, .site-header.is-scrolled { height: 72px; padding-inline: 18px; }
  .brand img { width: 174px; }
  .menu-button { display: block; }
  .main-nav { position: fixed; inset: 0; flex-direction: column; justify-content: center; align-items: flex-start; gap: 18px; padding: 100px 28px 40px; background: var(--black); visibility: hidden; opacity: 0; transform: translateY(-12px); transition: opacity .35s var(--ease), transform .35s var(--ease), visibility .35s; }
  .main-nav.is-open { visibility: visible; opacity: 1; transform: none; }
  .main-nav > a { font-size: clamp(36px, 11vw, 64px); line-height: 1; letter-spacing: -.045em; }
  .main-nav .nav-contact { margin: 18px 0 0; padding: 16px 18px; font-size: 18px; letter-spacing: 0; }

  .hero { min-height: 850px; }
  .hero-slide:nth-child(1) img { object-position: 58% center; }
  .hero-content { grid-template-columns: 1fr; padding-top: 140px; padding-bottom: 128px; }
  .hero-title { font-size: clamp(58px, 16.8vw, 105px); line-height: .86; }
  .hero-index { position: absolute; right: 0; bottom: 30px; grid-template-columns: repeat(4, 1fr); gap: 8px; }
  .hero-index button { grid-template-columns: 1fr; width: 42px; gap: 4px; }
  .hero-index button::after { width: 100%; }
  .hero-capabilities { grid-template-columns: repeat(2, 1fr); gap: 8px 18px; }

  .statement-grid, .section-heading, .services-layout, .about-layout, .contact-layout { grid-template-columns: 1fr; }
  .statement-grid { gap: 38px; }
  .statement-copy { grid-template-columns: 1fr; gap: 28px; margin-top: 46px; }
  .section-heading { gap: 35px; margin-bottom: 58px; }

  .work-grid { grid-template-columns: 1fr; gap: 78px; }
  .case-wide { grid-column: auto; }
  .case-wide .case-media, .case-media { aspect-ratio: 4 / 3; }
  .case-info { grid-template-columns: 1fr; gap: 20px; }

  .services-layout { gap: 60px; }
  .services-title-block { position: static; }
  .service { grid-template-columns: 38px 1fr 26px; min-height: 0; padding: 26px 0; }
  .service h3 { grid-column: 2; }
  .service p { grid-column: 2 / 4; padding-right: 15px; }
  .service b { grid-column: 3; grid-row: 1; }

  .method-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about { min-height: 900px; }
  .about-layout { gap: 60px; }
  .experience strong { font-size: 120px; }

  .contact-form { padding: 28px 22px; }
  .footer-main { grid-template-columns: 1fr; align-items: start; }
}

@media (max-width: 560px) {
  :root { --page: calc(100vw - 28px); }
  .section { padding: 78px 0; }
  .hero { min-height: 800px; }
  .hero-content { padding-bottom: 132px; }
  .kicker { margin-bottom: 25px; font-size: 10px; }
  .hero-title { font-size: clamp(52px, 17.7vw, 77px); letter-spacing: -.065em; }
  .hero-lead { margin-top: 34px; font-size: 18px; }
  .hero-actions { gap: 18px; }
  .button { width: 100%; }
  .hero-capabilities { font-size: 9px; }
  .display { font-size: clamp(43px, 14.5vw, 64px); }
  .statement-copy p, .contact-lead { font-size: 17px; }
  .case-arrow { top: 12px; right: 12px; width: 48px; height: 48px; }
  .case-info h3 { font-size: 39px; }
  .method-grid { grid-template-columns: 1fr; }
  .method-card { min-height: 290px; }
  .about { min-height: 960px; padding-bottom: 80px; }
  .about-image img { object-position: 45% center; }
  .experience strong { font-size: 96px; }
  .contact-title { font-size: clamp(50px, 15.7vw, 72px); }
  .contact-details { font-size: 19px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}

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

/* Interactive project cases */
.case-interactive .case-media {
  isolation: isolate;
  cursor: zoom-in;
}
.case-interactive .case-media img {
  transform: scale(1.002);
  transition: transform 1.15s var(--ease), filter 1.15s var(--ease);
  will-change: transform;
}
.case-interactive .case-media::after {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.63) 43%, rgba(0,0,0,.08) 78%),
    linear-gradient(180deg, rgba(0,0,0,.04) 35%, rgba(0,0,0,.75) 100%);
  opacity: .28;
  transition: opacity .65s var(--ease);
}
.case-interactive .case-arrow {
  z-index: 4;
}
.case-hover-panel {
  position: absolute;
  z-index: 3;
  left: clamp(22px, 4vw, 64px);
  bottom: clamp(22px, 4vw, 58px);
  width: min(740px, calc(100% - 150px));
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition: opacity .52s var(--ease), transform .62s var(--ease);
  pointer-events: none;
}
.case-hover-eyebrow {
  margin: 0 0 16px;
  color: var(--accent-bright);
  font-size: 11px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.case-hover-panel h4 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(38px, 5vw, 76px);
  line-height: .92;
  letter-spacing: -.055em;
  text-wrap: balance;
}
.case-hover-copy {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255,255,255,.78);
  font-size: clamp(15px, 1.35vw, 19px);
  line-height: 1.5;
}
.case-hover-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 28px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid rgba(255,255,255,.28);
  list-style: none;
}
.case-hover-points li {
  min-width: 0;
}
.case-hover-points strong,
.case-hover-points span {
  display: block;
}
.case-hover-points strong {
  margin-bottom: 5px;
  color: var(--accent-bright);
  font-size: 13px;
  text-transform: uppercase;
}
.case-hover-points span {
  color: rgba(255,255,255,.68);
  font-size: 13px;
  line-height: 1.42;
}
.case-hover-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255,255,255,.55);
  font-weight: 700;
  pointer-events: auto;
}
.case-hover-cta:hover,
.case-hover-cta:focus-visible {
  color: var(--accent-bright);
  border-color: var(--accent-bright);
}
.case-touch-hint {
  position: absolute;
  z-index: 3;
  left: 18px;
  bottom: 18px;
  display: none;
  padding: 9px 11px;
  background: rgba(8,8,8,.78);
  border: 1px solid rgba(255,255,255,.35);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.case-interactive .case-media:hover img,
.case-interactive .case-media:focus-visible img,
.case-interactive.is-open .case-media img {
  transform: scale(1.085);
  filter: contrast(1.06) saturate(.94);
}
.case-interactive .case-media:hover::after,
.case-interactive .case-media:focus-visible::after,
.case-interactive.is-open .case-media::after {
  opacity: .92;
}
.case-interactive .case-media:hover .case-hover-panel,
.case-interactive .case-media:focus-visible .case-hover-panel,
.case-interactive.is-open .case-hover-panel {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.case-interactive .case-media:hover .case-arrow,
.case-interactive .case-media:focus-visible .case-arrow,
.case-interactive.is-open .case-arrow {
  transform: rotate(45deg);
  background: var(--accent-bright);
  color: var(--black);
}
.case-interactive.is-open .case-media {
  cursor: zoom-out;
}

/* Toyota Virtual Showroom keeps the existing standard case format. */
.case-toyota .case-hover-panel {
  left: clamp(20px, 2.4vw, 38px);
  bottom: clamp(20px, 2.4vw, 34px);
  width: calc(100% - clamp(88px, 8vw, 126px));
}
.case-toyota .case-hover-panel h4 {
  max-width: 560px;
  font-size: clamp(30px, 3.35vw, 48px);
  line-height: .94;
}
.case-toyota .case-hover-panel h4 span {
  display: block;
  margin-top: 8px;
  color: var(--accent-bright);
  font-size: .56em;
  line-height: 1;
  letter-spacing: .015em;
  text-transform: uppercase;
}
.case-toyota .case-hover-copy {
  max-width: 610px;
  margin-top: 16px;
  font-size: clamp(13px, 1.05vw, 16px);
  line-height: 1.43;
}
.case-toyota .case-hover-points {
  gap: 12px;
  margin-top: 18px;
  padding-top: 15px;
}
.case-toyota .case-hover-points strong,
.case-toyota .case-hover-points span {
  font-size: 11px;
}
.case-toyota .case-hover-cta {
  margin-top: 18px;
  font-size: 13px;
}

@media (max-width: 860px) {
  .case-hover-panel {
    left: 24px;
    bottom: 24px;
    width: calc(100% - 48px);
  }
  .case-toyota .case-hover-panel {
    left: 20px;
    bottom: 20px;
    width: calc(100% - 76px);
  }
  .case-toyota .case-hover-panel h4 {
    font-size: clamp(29px, 5.7vw, 42px);
  }
  .case-toyota .case-hover-copy {
    font-size: 12px;
    line-height: 1.38;
  }
  .case-toyota .case-hover-points {
    display: none;
  }
  .case-hover-panel h4 {
    font-size: clamp(38px, 8.5vw, 64px);
  }
  .case-hover-copy {
    max-width: 94%;
  }
}

@media (max-width: 620px) {
  .case-caterpillar .case-media {
    aspect-ratio: 4 / 5;
  }
  .case-toyota .case-hover-panel {
    top: 14px;
    right: 58px;
    bottom: 14px;
    left: 14px;
    width: auto;
    max-height: calc(100% - 28px);
    overflow-y: auto;
    overscroll-behavior: contain;
    padding-right: 5px;
    scrollbar-width: thin;
  }
  .case-toyota .case-hover-eyebrow {
    max-width: 80%;
  }
  .case-toyota .case-hover-panel h4 {
    max-width: 100%;
    font-size: clamp(25px, 8.4vw, 36px);
  }
  .case-toyota .case-hover-copy {
    margin-top: 12px;
    font-size: 11px;
    line-height: 1.32;
  }
  .case-toyota .case-hover-cta {
    margin-top: 12px;
    font-size: 12px;
  }
  .case-hover-panel {
    left: 18px;
    bottom: 18px;
    width: calc(100% - 36px);
  }
  .case-hover-eyebrow {
    margin-bottom: 11px;
    font-size: 9px;
  }
  .case-hover-panel h4 {
    max-width: 90%;
    font-size: clamp(36px, 12vw, 52px);
  }
  .case-hover-copy {
    margin-top: 15px;
    font-size: 14px;
  }
  .case-hover-points {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 18px;
    padding-top: 14px;
  }
  .case-hover-points li {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 10px;
  }
  .case-hover-points strong {
    margin: 0;
    font-size: 11px;
  }
  .case-hover-points span {
    font-size: 11px;
  }
  .case-hover-cta {
    margin-top: 18px;
    font-size: 14px;
  }
}

@media (hover: none) {
  .case-touch-hint { display: inline-flex; }
  .case-interactive.is-open .case-touch-hint { display: none; }
}

/* Toyota Hilux Press Event */
.case-toyota-event .case-media img {
  object-position: 64% center;
}

@media (max-width: 620px) {
  .case-toyota-event .case-media img {
    object-position: 68% center;
  }
}

/* Puma Mobile Retail — interactive wide case */
.case-puma .case-hover-panel {
  width: min(930px, calc(100% - 150px));
}

.case-puma .case-hover-panel h4 {
  max-width: 780px;
  font-size: clamp(42px, 4.7vw, 72px);
}

.case-puma .case-hover-panel h4 span {
  display: block;
  margin-top: 9px;
  color: var(--accent-bright);
  font-size: .46em;
  line-height: 1;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.case-puma .case-hover-copy {
  max-width: 880px;
  margin-top: 17px;
  font-size: clamp(13px, 1.08vw, 16px);
  line-height: 1.48;
}

.case-puma .case-hover-copy-secondary {
  margin-top: 10px;
  color: rgba(255,255,255,.68);
}

.case-puma .case-hover-points {
  max-width: 880px;
  gap: 15px;
  margin-top: 20px;
  padding-top: 17px;
}

.case-puma .case-hover-points strong,
.case-puma .case-hover-points span {
  font-size: 11px;
}

.case-puma .case-hover-cta {
  margin-top: 20px;
  font-size: 13px;
}

@media (max-width: 1100px) {
  .case-puma .case-hover-panel {
    width: calc(100% - 112px);
  }

  .case-puma .case-hover-panel h4 {
    font-size: clamp(38px, 5.7vw, 62px);
  }

  .case-puma .case-hover-copy {
    font-size: 13px;
    line-height: 1.42;
  }
}

@media (max-width: 860px) {
  .case-puma .case-hover-panel {
    top: 22px;
    right: 72px;
    bottom: 22px;
    left: 22px;
    width: auto;
    max-height: calc(100% - 44px);
    overflow-y: auto;
    overscroll-behavior: contain;
    padding-right: 6px;
    scrollbar-width: thin;
  }

  .case-puma .case-hover-panel h4 {
    max-width: 100%;
    font-size: clamp(34px, 7.6vw, 54px);
  }

  .case-puma .case-hover-points {
    display: none;
  }
}

@media (max-width: 620px) {
  .case-puma .case-hover-panel {
    top: 14px;
    right: 58px;
    bottom: 14px;
    left: 14px;
    max-height: calc(100% - 28px);
  }

  .case-puma .case-hover-eyebrow {
    max-width: 82%;
    margin-bottom: 9px;
  }

  .case-puma .case-hover-panel h4 {
    font-size: clamp(27px, 8.6vw, 38px);
  }

  .case-puma .case-hover-panel h4 span {
    margin-top: 6px;
    font-size: .48em;
  }

  .case-puma .case-hover-copy {
    margin-top: 11px;
    font-size: 11px;
    line-height: 1.34;
  }

  .case-puma .case-hover-copy-secondary {
    margin-top: 7px;
  }

  .case-puma .case-hover-cta {
    margin-top: 12px;
    font-size: 12px;
  }
}

/* Puma Mobile Retail and Telia Showroom — standard interactive cases */
.case-puma .case-hover-panel,
.case-telia .case-hover-panel {
  left: clamp(20px, 2.4vw, 38px);
  bottom: clamp(20px, 2.4vw, 34px);
  width: calc(100% - clamp(88px, 8vw, 126px));
}
.case-puma .case-hover-panel h4,
.case-telia .case-hover-panel h4 {
  max-width: 570px;
  font-size: clamp(30px, 3.35vw, 48px);
  line-height: .94;
}
.case-puma .case-hover-panel h4 span,
.case-telia .case-hover-panel h4 span {
  display: block;
  margin-top: 8px;
  color: var(--accent-bright);
  font-size: .54em;
  line-height: 1;
  letter-spacing: .035em;
  text-transform: uppercase;
}
.case-puma .case-hover-copy,
.case-telia .case-hover-copy {
  max-width: 620px;
  margin-top: 14px;
  font-size: clamp(12px, .98vw, 15px);
  line-height: 1.4;
}
.case-puma .case-hover-copy-secondary,
.case-telia .case-hover-copy-secondary {
  margin-top: 8px;
  color: rgba(255,255,255,.68);
}
.case-puma .case-hover-points,
.case-telia .case-hover-points {
  gap: 12px;
  margin-top: 16px;
  padding-top: 14px;
}
.case-puma .case-hover-points strong,
.case-puma .case-hover-points span,
.case-telia .case-hover-points strong,
.case-telia .case-hover-points span { font-size: 10px; }
.case-puma .case-hover-cta,
.case-telia .case-hover-cta { margin-top: 16px; font-size: 12px; }
.case-telia .case-media img { object-position: center center; }

@media (max-width: 1100px) {
  .case-puma .case-hover-panel,
  .case-telia .case-hover-panel {
    top: 18px; right: 68px; bottom: 18px; left: 18px;
    width: auto; max-height: calc(100% - 36px); overflow-y: auto;
    overscroll-behavior: contain; padding-right: 5px; scrollbar-width: thin;
  }
  .case-puma .case-hover-panel h4,
  .case-telia .case-hover-panel h4 { font-size: clamp(28px, 4.6vw, 42px); }
  .case-puma .case-hover-points,
  .case-telia .case-hover-points { display: none; }
}

@media (max-width: 620px) {
  .case-puma .case-hover-panel,
  .case-telia .case-hover-panel {
    top: 14px; right: 58px; bottom: 14px; left: 14px;
    max-height: calc(100% - 28px);
  }
  .case-puma .case-hover-eyebrow,
  .case-telia .case-hover-eyebrow { max-width: 82%; margin-bottom: 8px; }
  .case-puma .case-hover-panel h4,
  .case-telia .case-hover-panel h4 { max-width: 100%; font-size: clamp(25px, 8.1vw, 35px); }
  .case-puma .case-hover-panel h4 span,
  .case-telia .case-hover-panel h4 span { margin-top: 5px; font-size: .47em; }
  .case-puma .case-hover-copy,
  .case-telia .case-hover-copy { margin-top: 10px; font-size: 11px; line-height: 1.31; }
  .case-puma .case-hover-copy-secondary,
  .case-telia .case-hover-copy-secondary { margin-top: 6px; }
  .case-puma .case-hover-cta,
  .case-telia .case-hover-cta { margin-top: 11px; font-size: 12px; }
}

/* Sleeping World — interactive wide-format case */
.case-sleeping .case-media img {
  object-position: center center;
}

.case-sleeping .case-hover-panel {
  width: min(880px, calc(100% - 150px));
}

.case-sleeping .case-hover-panel h4 {
  max-width: 760px;
  font-size: clamp(42px, 4.8vw, 74px);
}

.case-sleeping .case-hover-panel h4 span {
  display: block;
  margin-top: 9px;
  color: var(--accent-bright);
  font-size: .48em;
  line-height: 1;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.case-sleeping .case-hover-copy {
  max-width: 820px;
  margin-top: 17px;
  font-size: clamp(13px, 1.08vw, 16px);
  line-height: 1.46;
}

.case-sleeping .case-hover-copy-secondary {
  margin-top: 9px;
  color: rgba(255,255,255,.69);
}

.case-sleeping .case-hover-points {
  max-width: 820px;
  gap: 15px;
  margin-top: 20px;
  padding-top: 17px;
}

.case-sleeping .case-hover-points strong,
.case-sleeping .case-hover-points span {
  font-size: 11px;
}

.case-sleeping .case-hover-cta {
  margin-top: 20px;
  font-size: 13px;
}

@media (max-width: 1100px) {
  .case-sleeping .case-hover-panel {
    top: 22px;
    right: 72px;
    bottom: 22px;
    left: 22px;
    width: auto;
    max-height: calc(100% - 44px);
    overflow-y: auto;
    overscroll-behavior: contain;
    padding-right: 6px;
    scrollbar-width: thin;
  }

  .case-sleeping .case-hover-panel h4 {
    max-width: 100%;
    font-size: clamp(36px, 6.1vw, 60px);
  }

  .case-sleeping .case-hover-points {
    display: none;
  }
}

@media (max-width: 620px) {
  .case-sleeping .case-media {
    aspect-ratio: 4 / 5;
  }

  .case-sleeping .case-media img {
    object-position: 47% center;
  }

  .case-sleeping .case-hover-panel {
    top: 14px;
    right: 58px;
    bottom: 14px;
    left: 14px;
    max-height: calc(100% - 28px);
  }

  .case-sleeping .case-hover-eyebrow {
    max-width: 82%;
    margin-bottom: 9px;
  }

  .case-sleeping .case-hover-panel h4 {
    font-size: clamp(27px, 8.8vw, 39px);
  }

  .case-sleeping .case-hover-panel h4 span {
    margin-top: 6px;
    font-size: .48em;
  }

  .case-sleeping .case-hover-copy {
    margin-top: 11px;
    font-size: 11px;
    line-height: 1.34;
  }

  .case-sleeping .case-hover-copy-secondary {
    margin-top: 7px;
  }

  .case-sleeping .case-hover-cta {
    margin-top: 12px;
    font-size: 12px;
  }
}

/* Refined copy layout — Puma Mobile Retail & Toyota Virtual Showroom */
.case-puma .case-hover-copy,
.case-toyota:not(.case-toyota-event) .case-hover-copy {
  max-width: 620px;
}

.case-puma .case-hover-copy-secondary,
.case-toyota:not(.case-toyota-event) .case-hover-copy-secondary {
  margin-top: 8px;
  color: rgba(255,255,255,.68);
}

@media (max-width: 1100px) {
  .case-puma .case-hover-panel,
  .case-toyota:not(.case-toyota-event) .case-hover-panel {
    top: 18px;
    right: 68px;
    bottom: 18px;
    left: 18px;
    width: auto;
    max-height: calc(100% - 36px);
    overflow-y: auto;
    overscroll-behavior: contain;
    padding-right: 5px;
    scrollbar-width: thin;
  }

  .case-puma .case-hover-points,
  .case-toyota:not(.case-toyota-event) .case-hover-points {
    display: none;
  }
}

@media (max-width: 620px) {
  .case-puma .case-hover-panel,
  .case-toyota:not(.case-toyota-event) .case-hover-panel {
    top: 14px;
    right: 58px;
    bottom: 14px;
    left: 14px;
    max-height: calc(100% - 28px);
  }

  .case-puma .case-hover-copy,
  .case-toyota:not(.case-toyota-event) .case-hover-copy {
    margin-top: 10px;
    font-size: 11px;
    line-height: 1.32;
  }

  .case-puma .case-hover-copy-secondary,
  .case-toyota:not(.case-toyota-event) .case-hover-copy-secondary {
    margin-top: 6px;
  }
}

/* WHAT WE DO — interactive service experiences */
.service-interactive {
  display: block;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  background: transparent;
  transition: background-color .45s var(--ease), color .45s var(--ease);
}

.service-interactive::before {
  display: none;
}

.service-trigger {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 54px minmax(230px, .8fr) minmax(240px, 1fr) 34px;
  gap: 22px;
  align-items: center;
  min-height: 142px;
  padding: 28px 0;
  overflow: hidden;
  color: var(--black);
  cursor: zoom-in;
  transition:
    min-height .55s var(--ease),
    padding .55s var(--ease),
    color .4s var(--ease);
}

.service-visual,
.service-shade {
  position: absolute;
  z-index: -2;
  inset: 0;
  pointer-events: none;
}

.service-visual {
  opacity: 0;
  overflow: hidden;
  background: var(--black);
  transition: opacity .5s var(--ease);
}

.service-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.015);
  filter: saturate(.84) contrast(1.05);
  transition: transform 1.15s var(--ease), filter 1.15s var(--ease);
  will-change: transform;
}

.service-shade {
  z-index: -1;
  opacity: 0;
  background:
    linear-gradient(90deg, rgba(5,5,5,.95) 0%, rgba(5,5,5,.83) 48%, rgba(5,5,5,.52) 100%),
    linear-gradient(180deg, rgba(5,5,5,.25), rgba(5,5,5,.82));
  transition: opacity .5s var(--ease);
}

.service-number,
.service-trigger h3,
.service-text,
.service-trigger b {
  position: relative;
  z-index: 1;
}

.service-number {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .13em;
  color: rgba(8,8,8,.43);
  transition: color .35s var(--ease);
}

.service-trigger h3 {
  margin: 0;
  font-size: clamp(25px, 2.25vw, 36px);
  line-height: 1;
  letter-spacing: -.035em;
}

.service-text {
  display: grid;
  grid-template-rows: auto 0fr;
  min-width: 0;
  transition: grid-template-rows .55s var(--ease);
}

.service-summary,
.service-detail {
  display: block;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(8,8,8,.62);
  transition:
    color .35s var(--ease),
    opacity .42s var(--ease),
    transform .5s var(--ease);
}

.service-detail {
  min-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(14px);
  padding-top: 0;
}

.service-trigger b {
  justify-self: end;
  font-size: 28px;
  font-weight: 300;
  transition: transform .38s var(--ease), color .35s var(--ease);
}

.service-touch-hint {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 14px;
  display: none;
  padding: 8px 10px;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(8,8,8,.76);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.service-interactive:hover .service-trigger,
.service-trigger:focus-visible,
.service-interactive.is-open .service-trigger {
  min-height: 250px;
  padding-block: 42px;
  color: #fff;
  cursor: zoom-out;
}

.service-interactive:hover .service-visual,
.service-trigger:focus-visible .service-visual,
.service-interactive.is-open .service-visual,
.service-interactive:hover .service-shade,
.service-trigger:focus-visible .service-shade,
.service-interactive.is-open .service-shade {
  opacity: 1;
}

.service-interactive:hover .service-visual img,
.service-trigger:focus-visible .service-visual img,
.service-interactive.is-open .service-visual img {
  transform: scale(1.085);
  filter: saturate(.9) contrast(1.08);
}

.service-interactive:hover .service-number,
.service-trigger:focus-visible .service-number,
.service-interactive.is-open .service-number {
  color: var(--accent-bright);
}

.service-interactive:hover .service-summary,
.service-interactive:hover .service-detail,
.service-trigger:focus-visible .service-summary,
.service-trigger:focus-visible .service-detail,
.service-interactive.is-open .service-summary,
.service-interactive.is-open .service-detail {
  color: rgba(255,255,255,.82);
}

.service-interactive:hover .service-text,
.service-trigger:focus-visible .service-text,
.service-interactive.is-open .service-text {
  grid-template-rows: auto 1fr;
}

.service-interactive:hover .service-detail,
.service-trigger:focus-visible .service-detail,
.service-interactive.is-open .service-detail {
  opacity: 1;
  transform: none;
  padding-top: 13px;
}

.service-interactive:hover .service-trigger b,
.service-trigger:focus-visible b,
.service-interactive.is-open .service-trigger b {
  transform: rotate(45deg);
  color: var(--accent-bright);
}

@media (max-width: 1100px) {
  .service-trigger {
    grid-template-columns: 42px minmax(190px, .75fr) minmax(220px, 1fr) 25px;
    gap: 14px;
  }
}

@media (max-width: 860px) {
  .service-trigger {
    grid-template-columns: 38px 1fr 26px;
    min-height: 132px;
    padding: 25px 0;
  }

  .service-trigger h3 {
    grid-column: 2;
  }

  .service-text {
    grid-column: 2 / 4;
    padding-right: 14px;
  }

  .service-trigger b {
    grid-column: 3;
    grid-row: 1;
  }

  .service-interactive:hover .service-trigger,
  .service-trigger:focus-visible,
  .service-interactive.is-open .service-trigger {
    min-height: 280px;
    padding-block: 34px;
  }
}

@media (max-width: 560px) {
  .service-trigger {
    grid-template-columns: 32px 1fr 24px;
    gap: 10px;
    min-height: 126px;
  }

  .service-trigger h3 {
    font-size: clamp(25px, 8vw, 34px);
  }

  .service-summary,
  .service-detail {
    font-size: 13px;
    line-height: 1.45;
  }

  .service-interactive:hover .service-trigger,
  .service-trigger:focus-visible,
  .service-interactive.is-open .service-trigger {
    min-height: 330px;
    padding-block: 30px 44px;
  }

  .service-detail {
    padding-right: 4px;
  }
}

@media (hover: none) {
  .service-touch-hint {
    display: inline-flex;
  }

  .service-interactive.is-open .service-touch-hint {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-trigger,
  .service-visual,
  .service-visual img,
  .service-shade,
  .service-text,
  .service-detail,
  .service-trigger b {
    transition-duration: .01ms !important;
  }
}

/* MOBILE NAVIGATION — BLACK MENU & UNIFIED MOBILE CONTROLS */
@media (max-width: 860px) {
  .site-header,
  .site-header.is-scrolled,
  .site-header.menu-active {
    height: 72px;
    padding-inline: 18px;
    background: rgba(8,8,8,.97);
    border-color: rgba(255,255,255,.14);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  .brand img {
    width: 168px;
  }

  /* Hamburger control uses the same thin, circular visual language as the arrows. */
  .menu-button {
    display: block;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,.48);
    border-radius: 50%;
    background: rgba(8,8,8,.62);
    box-shadow: 0 8px 24px rgba(0,0,0,.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition:
      transform .28s var(--ease),
      border-color .28s var(--ease),
      background-color .28s var(--ease);
  }

  .menu-button:hover,
  .menu-button:focus-visible {
    transform: translateY(-1px);
    border-color: var(--accent-bright);
    outline: none;
  }

  .menu-button span:not(.sr-only) {
    left: 11px;
    width: 20px;
    height: 1px;
    background: #fff;
  }

  .menu-button span:first-child {
    top: 17px;
  }

  .menu-button span:nth-child(2) {
    top: 25px;
  }

  .menu-button[aria-expanded="true"] {
    border-color: var(--accent-bright);
    background: var(--accent-bright);
  }

  .menu-button[aria-expanded="true"] span:not(.sr-only) {
    background: var(--black);
  }

  .menu-button[aria-expanded="true"] span:first-child,
  .menu-button[aria-expanded="true"] span:nth-child(2) {
    top: 21px;
  }

  /* Compact black mobile navigation. */
  .main-nav {
    position: fixed;
    inset: 72px 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    max-height: calc(100svh - 72px);
    overflow-y: auto;
    padding: 12px 18px 20px;
    border-top: 1px solid rgba(255,255,255,.12);
    border-bottom: 1px solid rgba(255,255,255,.12);
    background: var(--black);
    box-shadow: 0 24px 48px rgba(0,0,0,.42);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      opacity .3s var(--ease),
      transform .34s var(--ease),
      visibility .3s;
  }

  .main-nav.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .main-nav > a,
  .main-nav .nav-contact {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 54px;
    margin: 0;
    padding: 12px 0;
    border: 0;
    border-bottom: 1px solid rgba(255,255,255,.13);
    border-radius: 0;
    background: transparent;
    color: rgba(255,255,255,.92);
    font-size: 17px;
    line-height: 1.2;
    letter-spacing: .005em;
  }

  .main-nav > a:hover,
  .main-nav > a:focus-visible {
    color: var(--accent-bright);
    outline: none;
  }

  .main-nav > a:not(.nav-contact)::after {
    display: none;
  }

  .main-nav > a:not(.nav-contact)::before {
    content: "↗";
    order: 2;
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(255,255,255,.42);
    border-radius: 50%;
    background: rgba(8,8,8,.46);
    color: #fff;
    font-size: 14px;
    font-weight: 300;
    line-height: 1;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition:
      transform .28s var(--ease),
      border-color .28s var(--ease),
      background-color .28s var(--ease),
      color .28s var(--ease);
  }

  .main-nav > a:not(.nav-contact):hover::before,
  .main-nav > a:not(.nav-contact):focus-visible::before {
    transform: translate3d(2px,-2px,0);
    border-color: var(--accent-bright);
    background: var(--accent-bright);
    color: var(--black);
  }

  .main-nav .nav-contact {
    margin-top: 6px;
    padding-block: 14px;
    border-bottom-color: transparent;
    color: var(--accent-bright);
    font-size: 16px;
  }

  /* Project arrows — mobile only. Desktop design remains unchanged. */
  .case-arrow {
    top: 14px;
    right: 14px;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,.48);
    border-radius: 50%;
    background: rgba(8,8,8,.52);
    color: #fff;
    font-size: 18px;
    font-weight: 300;
    line-height: 1;
    box-shadow: 0 8px 22px rgba(0,0,0,.24);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition:
      transform .3s var(--ease),
      border-color .3s var(--ease),
      background-color .3s var(--ease),
      color .3s var(--ease);
  }

  .case-media:hover .case-arrow,
  .case-media:focus-visible .case-arrow,
  .case-interactive.is-open .case-arrow {
    transform: translate3d(1px,-2px,0);
    border-color: var(--accent-bright);
    background: var(--accent-bright);
    color: var(--black);
  }

  /* Thin round arrows for CTA links, contact actions and navigation. */
  .nav-contact > span,
  .arrow-link > span,
  .case-hover-cta > span,
  .contact-form button > span {
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    width: 30px;
    height: 30px;
    border: 1px solid currentColor;
    border-radius: 50%;
    background: rgba(8,8,8,.16);
    font-size: 14px;
    font-weight: 300;
    line-height: 1;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition:
      transform .28s var(--ease),
      border-color .28s var(--ease),
      background-color .28s var(--ease),
      color .28s var(--ease);
  }

  .nav-contact:hover > span,
  .nav-contact:focus-visible > span,
  .arrow-link:hover > span,
  .arrow-link:focus-visible > span,
  .case-hover-cta:hover > span,
  .case-hover-cta:focus-visible > span,
  .contact-form button:hover > span,
  .contact-form button:focus-visible > span {
    transform: translate3d(2px,-2px,0);
  }

  /* WHAT WE DO plus controls use the same mobile visual system. */
  .service-trigger b {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(8,8,8,.34);
    border-radius: 50%;
    background: rgba(255,255,255,.16);
    font-size: 22px;
    font-weight: 300;
    line-height: 1;
    transition:
      transform .3s var(--ease),
      border-color .3s var(--ease),
      background-color .3s var(--ease),
      color .3s var(--ease);
  }

  .service-interactive:hover .service-trigger b,
  .service-trigger:focus-visible b,
  .service-interactive.is-open .service-trigger b {
    transform: rotate(45deg);
    border-color: var(--accent-bright);
    background: var(--accent-bright);
    color: var(--black);
  }
}

@media (max-width: 560px) {
  .site-header,
  .site-header.is-scrolled,
  .site-header.menu-active {
    padding-inline: 14px;
  }

  .brand img {
    width: 154px;
  }

  .main-nav {
    padding-inline: 14px;
  }

  .main-nav > a,
  .main-nav .nav-contact {
    min-height: 50px;
    font-size: 15px;
  }

  .main-nav .nav-contact {
    font-size: 15px;
  }

  .case-arrow {
    top: 12px;
    right: 12px;
    width: 42px;
    height: 42px;
    font-size: 17px;
  }

  .nav-contact > span,
  .arrow-link > span,
  .case-hover-cta > span,
  .contact-form button > span,
  .main-nav > a:not(.nav-contact)::before {
    width: 28px;
    height: 28px;
    font-size: 13px;
  }

  .service-trigger b {
    width: 36px;
    height: 36px;
    font-size: 21px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .main-nav,
  .menu-button,
  .case-arrow,
  .nav-contact > span,
  .arrow-link > span,
  .case-hover-cta > span,
  .contact-form button > span,
  .main-nav > a:not(.nav-contact)::before,
  .service-trigger b {
    transition-duration: .01ms !important;
  }
}

/* MOBILE NAVIGATION — NO ARROW SYMBOLS */
@media (max-width: 860px) {
  /* Keep the compact solid-black mobile menu. */
  .site-header,
  .site-header.is-scrolled,
  .site-header.menu-active {
    background: #080808;
  }

  .main-nav {
    background: #080808;
  }

  .main-nav > a,
  .main-nav .nav-contact {
    font-size: 16px;
  }

  /*
   * Project controls keep the thin round visual language,
   * but the arrow symbol is replaced by a plus.
   * The plus rotates into a close symbol when the case is open.
   */
  .case-arrow {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,.48);
    border-radius: 50%;
    background: rgba(8,8,8,.52);
    color: #fff;
    font-size: 0;
    line-height: 1;
    box-shadow: 0 8px 22px rgba(0,0,0,.24);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition:
      transform .3s var(--ease),
      border-color .3s var(--ease),
      background-color .3s var(--ease),
      color .3s var(--ease);
  }

  .case-arrow::before {
    content: "+";
    display: block;
    font-size: 24px;
    font-weight: 300;
    line-height: 1;
    transform: rotate(0);
    transition: transform .3s var(--ease);
  }

  .case-media:hover .case-arrow,
  .case-media:focus-visible .case-arrow,
  .case-interactive.is-open .case-arrow {
    transform: translateY(-2px);
    border-color: var(--accent-bright);
    background: var(--accent-bright);
    color: var(--black);
  }

  .case-media:hover .case-arrow::before,
  .case-media:focus-visible .case-arrow::before,
  .case-interactive.is-open .case-arrow::before {
    transform: rotate(45deg);
  }

  /* Remove arrow symbols from CTA links, contact actions and mobile navigation. */
  .nav-contact > span,
  .arrow-link > span,
  .case-hover-cta > span,
  .contact-form button > span {
    display: none !important;
  }

  .main-nav > a:not(.nav-contact)::before,
  .main-nav > a:not(.nav-contact)::after {
    display: none !important;
    content: none !important;
  }

  .main-nav > a,
  .main-nav .nav-contact {
    justify-content: flex-start;
  }

  /*
   * WHAT WE DO keeps the same circular control system.
   * Plus becomes a close symbol when active.
   */
  .service-trigger b {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(8,8,8,.34);
    border-radius: 50%;
    background: rgba(255,255,255,.16);
    font-size: 22px;
    font-weight: 300;
    line-height: 1;
  }

  .service-interactive:hover .service-trigger b,
  .service-trigger:focus-visible b,
  .service-interactive.is-open .service-trigger b {
    transform: rotate(45deg);
    border-color: var(--accent-bright);
    background: var(--accent-bright);
    color: var(--black);
  }
}

@media (max-width: 560px) {
  .main-nav > a,
  .main-nav .nav-contact {
    font-size: 15px;
  }

  .case-arrow {
    width: 42px;
    height: 42px;
  }

  .case-arrow::before {
    font-size: 22px;
  }

  .service-trigger b {
    width: 36px;
    height: 36px;
    font-size: 21px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .case-arrow,
  .case-arrow::before,
  .service-trigger b {
    transition-duration: .01ms !important;
  }
}

/* ADDITIONAL CONTACT — TOMMY ÖSTBERG */
.contact-secondary {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-top: 10px;
  padding-top: 20px;
  border-top: 1px solid rgba(8,8,8,.24);
}

.contact-secondary a {
  overflow-wrap: anywhere;
}

@media (max-width: 560px) {
  .contact-secondary {
    width: 100%;
    gap: 10px;
    margin-top: 8px;
    padding-top: 17px;
  }

  .contact-secondary a {
    font-size: 17px;
    line-height: 1.35;
  }
}

