/* Existing brand, navigation shell, homepage opening, footer and contact forms. */
:root {
  --red: #d72638; --red-dark: #a61d2a; --ink: #17191c; --ink-soft: #34383d; --paper: #ffffff; --mist: #f4f5f6; --line: #dfe1e3; --muted: #666b70; --radius: 8px; --shadow: 0 10px 28px rgba(23, 25, 28, 0.08); --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth; scroll-padding-top: 84px;
}

body {
  margin: 0px; overflow-x: hidden; color: var(--ink); background: var(--paper); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 16px; line-height: 1.65; -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block; max-width: 100%; height: auto;
}

a {
  color: inherit; text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  letter-spacing: 0px;
}

.container {
  width: min(calc(100% - 40px), var(--container)); margin-inline: auto;
}

.skip-link {
  position: fixed; z-index: 1000; top: 12px; left: 12px; padding: 10px 14px; color: rgb(255, 255, 255); background: var(--ink); transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0px);
}

.topbar {
  color: rgb(255, 255, 255); background: var(--ink); font-size: 12px;
}

.topbar__inner {
  min-height: 36px; display: flex; align-items: center; justify-content: space-between; gap: 24px;
}

.topbar__inner > p {
  margin: 0px;
}

.topbar__contacts {
  display: flex; align-items: center; gap: 22px;
}

.topbar a {
  color: rgb(255, 255, 255);
}

.topbar a:hover,
.topbar a:focus-visible {
  text-decoration: underline; text-underline-offset: 3px;
}

.site-header {
  position: sticky; z-index: 100; top: 0px; border-bottom: 1px solid var(--line); background: rgba(255, 255, 255, 0.97);
}

.nav-wrap {
  position: relative; min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 28px;
}

.brand {
  display: inline-flex; flex: 0 0 auto;
}

.brand-lockup {
  align-items: center; gap: 10px; color: var(--ink);
}

.brand-lockup__mark {
  width: 48px; height: 48px; object-fit: contain;
}

.brand-lockup__text {
  display: grid; gap: 0px; font-size: 20px; font-weight: 900; line-height: 0.92; letter-spacing: 0px; text-transform: uppercase;
}

.brand-lockup__text span:last-child {
  color: var(--red); font-size: 12px; line-height: 1.05; letter-spacing: 0.18em;
}

.brand--footer {
  color: rgb(255, 255, 255);
}

.main-nav {
  display: flex; align-items: center; gap: 24px; font-size: 14px; font-weight: 700;
}

.main-nav > a:not(.button) {
  padding: 8px 0px; border-bottom: 2px solid transparent;
}

.main-nav > a:not(.button):hover,
.main-nav > a:not(.button):focus-visible,
.main-nav > a[aria-current="page"]:not(.button) {
  border-color: var(--red);
}

.menu-toggle {
  width: 44px; height: 44px; display: none; padding: 10px; border: 0px; border-radius: 6px; color: rgb(255, 255, 255); background: var(--ink);
}

.menu-toggle span {
  display: block; height: 2px; margin: 5px 0px; background: currentcolor; transition: transform 0.2s, opacity 0.2s;
}

.button {
  min-height: 48px; display: inline-flex; align-items: center; justify-content: center; padding: 0px 20px; border: 1px solid var(--red); border-radius: 6px; color: rgb(255, 255, 255); background: var(--red); font-size: 14px; font-weight: 750; letter-spacing: 0px; text-align: center; cursor: pointer; transition: background 0.2s, border-color 0.2s;
}

.button:hover,
.button:focus-visible {
  border-color: var(--red-dark); background: var(--red-dark);
}

.button--small {
  min-height: 42px; padding-inline: 17px;
}

.button--outline {
  color: var(--ink); border-color: var(--ink); background: transparent;
}

.button--outline:hover,
.button--outline:focus-visible {
  color: rgb(255, 255, 255); border-color: var(--ink); background: var(--ink);
}

.eyebrow {
  margin: 0px 0px 14px; color: var(--red-dark); font-size: 13px; font-weight: 750; letter-spacing: 0px;
}

.eyebrow--light {
  color: rgb(255, 89, 103);
}

.hero__actions {
  margin-top: 30px; display: flex; align-items: center; flex-wrap: wrap; gap: 16px;
}

.contact-inline {
  padding: 82px 0px; background: var(--mist);
}

.contact-inline__grid {
  display: grid; grid-template-columns: minmax(280px, 0.78fr) minmax(0px, 1.22fr); align-items: start; gap: 64px;
}

.contact-inline__intro {
  position: sticky; top: 112px;
}

.contact-inline__intro h2 {
  margin: 0px 0px 18px; font-size: 40px; line-height: 1.15;
}

.contact-inline__intro > p:not(.eyebrow) {
  max-width: 460px; margin: 0px; color: var(--muted); font-size: 18px;
}

.contact-form {
  padding: 32px; border: 1px solid var(--line); border-radius: var(--radius); background: rgb(255, 255, 255); box-shadow: var(--shadow);
}

.contact-form__header {
  margin-bottom: 24px; display: flex; align-items: baseline; justify-content: space-between; gap: 20px;
}

.contact-form__header h2 {
  margin: 0px; font-size: 25px;
}

.contact-form__header span {
  color: var(--muted); font-size: 12px;
}

.form-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px;
}

.form-field {
  display: grid; gap: 7px;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 13px; font-weight: 750;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%; min-height: 50px; padding: 0px 13px; border: 1px solid rgb(207, 210, 212); border-radius: 5px; color: var(--ink); background: rgb(255, 255, 255); font-size: 15px;
}

.form-field textarea {
  min-height: 128px; padding-top: 12px; resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: rgba(215, 38, 56, 0.15) solid 3px; border-color: var(--red);
}

.form-options {
  margin: 20px 0px;
}

.form-check {
  display: flex; align-items: flex-start; gap: 10px; color: var(--muted); font-size: 12px; line-height: 1.55;
}

.form-check input {
  margin-top: 3px;
}

.form-check a {
  color: var(--ink); text-decoration: underline; text-underline-offset: 2px;
}

.form-submit {
  width: 100%;
}

.form-status {
  margin: 12px 0px 0px; color: var(--muted); font-size: 12px;
}

.form-status.is-error {
  color: rgb(157, 23, 32);
}

.form-status.is-success {
  color: rgb(27, 113, 64);
}

.honeypot {
  position: absolute; left: -9999px;
}

.footer {
  color: rgb(255, 255, 255); background: rgb(17, 19, 21);
}

.footer__main {
  display: grid; grid-template-columns: 1.45fr 0.85fr 0.85fr; gap: 70px; padding-top: 64px; padding-bottom: 56px;
}

.brand--footer img {
  width: 200px;
}

.footer__brand p {
  max-width: 440px; margin: 22px 0px 0px; color: rgb(174, 178, 182);
}

.footer h2 {
  margin: 0px 0px 18px; color: rgb(174, 178, 182); font-size: 14px;
}

.footer ul {
  margin: 0px; padding: 0px; list-style: none;
}

.footer li {
  margin: 7px 0px;
}

.footer a:hover,
.footer a:focus-visible {
  color: rgb(255, 154, 159);
}

.footer address {
  color: rgb(215, 217, 219); font-style: normal;
}

.footer address a {
  display: inline-block; margin-top: 7px;
}

.footer__bottom {
  min-height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 24px; border-top: 1px solid rgb(48, 51, 55); color: rgb(143, 148, 153); font-size: 12px;
}

.whatsapp-float {
  position: fixed; z-index: 90; right: 20px; bottom: 20px; min-height: 46px; display: inline-flex; align-items: center; gap: 9px; padding: 0px 14px 0px 11px; border: 1px solid rgb(31, 184, 91); border-radius: 6px; color: rgb(255, 255, 255); background: rgb(31, 184, 91); box-shadow: rgba(23, 25, 28, 0.14) 0px 8px 20px; font-size: 13px; font-weight: 750;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  color: rgb(255, 255, 255); background: rgb(23, 143, 71);
}

.whatsapp-float__icon {
  width: 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; color: rgb(21, 148, 71); background: rgb(255, 255, 255);
}

.whatsapp-float__icon svg {
  width: 17px; height: 17px; fill: currentcolor;
}

@media (max-width: 960px) {
.topbar {
  display: none;
}

.main-nav {
  position: absolute; top: calc(100% + 8px); right: 0px; width: min(360px, -40px + 100vw); display: none; align-items: stretch; flex-direction: column; gap: 2px; padding: 14px; border: 1px solid rgb(54, 57, 61); border-radius: var(--radius); color: rgb(255, 255, 255); background: var(--ink); box-shadow: var(--shadow);
}

.main-nav.is-open {
  display: flex;
}

.main-nav > a:not(.button) {
  padding: 10px; border: 0px;
}

.main-nav > a:not(.button):hover,
.main-nav > a:not(.button):focus-visible,
.main-nav > a[aria-current="page"]:not(.button) {
  background: rgb(42, 45, 49);
}

.main-nav .button {
  width: 100%; margin-top: 8px;
}

.menu-toggle {
  display: block;
}

.whatsapp-float {
  z-index: 110; top: 13px; right: 76px; bottom: auto; width: 46px; padding: 0px; justify-content: center; box-shadow: none;
}

.whatsapp-float__label {
  position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0px, 0px, 0px, 0px); white-space: nowrap;
}

.contact-inline__grid {
  grid-template-columns: 1fr; gap: 42px;
}

.contact-inline__intro {
  position: static;
}

.footer__main {
  grid-template-columns: 1fr 1fr;
}

.footer__brand {
  grid-column: 1 / -1;
}
}

@media (max-width: 680px) {
.container {
  width: min(calc(100% - 30px), var(--container));
}

.nav-wrap {
  min-height: 66px;
}

.main-nav {
  width: calc(-30px + 100vw);
}

.hero__actions {
  align-items: stretch; flex-direction: column;
}

.hero__actions .button,
.hero__actions .button--outline {
  width: 100%;
}

.home .hero__actions {
  align-items: center; flex-direction: row; gap: 10px;
}

.home .hero__actions .button,
.home .hero__actions .button--outline {
  width: auto;
}

.contact-inline {
  padding: 58px 0px;
}

.contact-inline__intro h2 {
  font-size: 32px;
}

.contact-form {
  padding: 24px 18px;
}

.contact-form__header {
  align-items: flex-start; flex-direction: column; gap: 4px;
}

.form-grid {
  grid-template-columns: 1fr;
}

.form-field--full {
  grid-column: auto;
}

.footer__main {
  grid-template-columns: 1fr; gap: 38px; padding-top: 54px;
}

.footer__brand {
  grid-column: auto;
}

.footer__bottom {
  padding: 20px 0px; align-items: flex-start; flex-direction: column; gap: 7px;
}

.whatsapp-float {
  top: 10px; right: 70px;
}
}

@media (prefers-reduced-motion: reduce) {
html {
  scroll-behavior: auto;
}

* {
  scroll-behavior: auto !important; transition-duration: 0.01ms !important;
}
}

.main-nav {
  gap: 18px;
}

.contact-inline__direct {
  padding-top: 22px; border-top: 1px solid rgb(207, 210, 212); margin-top: 24px !important; color: var(--ink-soft) !important; font-size: 14px !important;
}

.contact-inline__direct a {
  color: var(--ink); font-weight: 750; text-decoration: underline; text-underline-offset: 3px;
}

.contact-form {
  box-shadow: rgba(23, 25, 28, 0.08) 0px 12px 30px;
}

.form-field label span {
  color: var(--muted); font-weight: 500;
}

.field-error {
  min-height: 17px; display: block; color: rgb(157, 23, 32); font-size: 12px; line-height: 1.35;
}

.form-field__meta {
  min-height: 18px; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: var(--muted); font-size: 11px;
}

.form-options {
  margin-bottom: 14px;
}

.form-options > .field-error {
  margin-top: 5px;
}

.form-check input {
  width: 17px; height: 17px; flex: 0 0 auto; accent-color: var(--red);
}

.footer__main {
  grid-template-columns: 1.4fr 0.8fr 0.7fr 0.9fr; gap: 48px;
}

.footer__whatsapp {
  display: inline-block; margin-top: 18px; color: rgb(255, 255, 255); font-weight: 700; text-decoration: underline; text-underline-offset: 4px;
}

@media (max-width: 1100px) {
.topbar {
  display: none;
}

.main-nav {
  position: absolute; top: calc(100% + 8px); right: 0px; width: min(380px, -40px + 100vw); display: none; align-items: stretch; flex-direction: column; gap: 2px; padding: 14px; border: 1px solid rgb(54, 57, 61); border-radius: var(--radius); color: rgb(255, 255, 255); background: var(--ink); box-shadow: var(--shadow);
}

.main-nav.is-open {
  display: flex;
}

.main-nav > a:not(.button) {
  padding: 10px; border: 0px;
}

.main-nav > a:not(.button):hover,
.main-nav > a:not(.button):focus-visible,
.main-nav > a[aria-current="page"]:not(.button) {
  background: rgb(42, 45, 49);
}

.main-nav .button {
  width: 100%; margin-top: 8px;
}

.menu-toggle {
  display: block;
}

.whatsapp-float {
  z-index: 110; top: 13px; right: 76px; bottom: auto; width: 46px; padding: 0px; justify-content: center; box-shadow: none;
}

.whatsapp-float__label {
  position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0px, 0px, 0px, 0px); white-space: nowrap;
}

.footer__main {
  grid-template-columns: 1.3fr 0.9fr 0.9fr;
}

.footer__brand {
  grid-column: 1 / -1;
}
}

@media (max-width: 760px) {
.footer__main {
  grid-template-columns: 1fr 1fr;
}

.footer__brand {
  grid-column: 1 / -1;
}
}

@media (max-width: 680px) {
.form-field__meta {
  align-items: flex-start; flex-direction: column; gap: 2px;
}

.footer__main {
  grid-template-columns: 1fr;
}

.footer__brand {
  grid-column: auto;
}
}

.studio-hero {
  position: relative; overflow: hidden; color: rgb(255, 255, 255); background: radial-gradient(circle at 78% 30%, rgba(215, 38, 56, 0.22), transparent 32%), linear-gradient(135deg, rgb(17, 19, 22) 0%, rgb(23, 25, 28) 58%, rgb(14, 15, 17) 100%);
}

.studio-hero::after,
.portfolio-band::after {
  content: ""; position: absolute; pointer-events: none; width: 230px; height: 230px; background-image: radial-gradient(rgba(255, 255, 255, 0.22) 1.5px, transparent 1.5px); background-size: 14px 14px; opacity: 0.45;
}

.studio-hero::after {
  right: 26px; bottom: 18px;
}

.studio-hero__inner {
  min-height: 520px; display: grid; grid-template-columns: minmax(0px, 1fr) minmax(360px, 0.72fr); align-items: end; gap: 52px; padding-top: 40px; padding-bottom: 0px;
}

.studio-hero__copy {
  align-self: center; padding-bottom: 34px;
}

.studio-hero h1 {
  max-width: 780px; margin: 0px 0px 24px; font-size: 76px; line-height: 0.98; letter-spacing: 0px;
}

.studio-hero__lead {
  max-width: 720px; margin: 0px; color: rgb(228, 230, 232); font-size: 22px; line-height: 1.5;
}

.button--dark {
  color: rgb(255, 255, 255); border-color: rgba(255, 255, 255, 0.78);
}

.button--dark:hover,
.button--dark:focus-visible {
  color: var(--ink); border-color: rgb(255, 255, 255); background: rgb(255, 255, 255);
}

.studio-hero__visual {
  position: relative; z-index: 1; margin: 0px; align-self: end;
}

.studio-hero__visual img {
  width: min(100%, 560px); margin-inline: auto; filter: drop-shadow(rgba(0, 0, 0, 0.32) 0px 30px 46px);
}

.studio-hero .button {
  min-height: 58px; padding-inline: 26px;
}

.studio-hero__phone {
  margin: 22px 0px 0px; color: rgb(216, 218, 221); font-size: 17px; font-weight: 750;
}

.studio-hero__phone a {
  color: rgb(255, 255, 255); text-decoration: underline; text-underline-offset: 4px;
}

.portfolio-band {
  position: relative; overflow: hidden; padding: 78px 0px 86px; color: rgb(255, 255, 255); background: rgb(32, 38, 43);
}

.portfolio-band::after {
  right: 20px; bottom: -40px;
}

.portfolio-band__head {
  display: flex; align-items: end; justify-content: space-between; gap: 28px; margin-bottom: 34px;
}

.portfolio-band h2 {
  max-width: 760px; margin: 0px; font-size: 52px; line-height: 1.05;
}

.rail-controls {
  display: flex; gap: 8px;
}

.rail-controls button {
  width: 48px; height: 48px; border: 1px solid rgba(255, 255, 255, 0.52); border-radius: 6px; color: rgb(255, 255, 255); background: transparent; font-size: 30px; line-height: 1; cursor: pointer;
}

.rail-controls button:hover,
.rail-controls button:focus-visible {
  color: var(--ink); background: rgb(255, 255, 255);
}

.portfolio-rail {
  overflow-x: auto; overscroll-behavior-inline: contain; scroll-snap-type: x mandatory; scrollbar-width: none; cursor: grab; padding-left: max(20px, calc((100vw - var(--container)) / 2));
}

.portfolio-rail::-webkit-scrollbar {
  display: none;
}

.portfolio-rail.is-dragging {
  cursor: grabbing; scroll-snap-type: none;
}

.portfolio-rail__track {
  width: max-content; display: flex; gap: 24px; padding-right: max(20px, calc((100vw - var(--container)) / 2));
}

.portfolio-rail .work-card {
  width: min(76vw, 520px); scroll-snap-align: start; color: rgb(255, 255, 255);
}

.work-card {
  min-width: 0px; color: rgb(255, 255, 255);
}

.work-card__media {
  display: block; padding: 12px 12px 0px; border: 1px solid rgba(255, 255, 255, 0.18); border-radius: 8px; background: rgb(244, 245, 246);
}

.work-card__media::before {
  content: ""; display: block; width: 54px; height: 8px; margin: 0px 0px 10px; border-radius: 999px; background: linear-gradient(90deg, rgb(215, 38, 56) 0px, rgb(215, 38, 56) 8px, rgb(197, 200, 204) 8px, rgb(197, 200, 204) 18px, rgb(197, 200, 204) 26px, rgb(197, 200, 204) 36px, rgb(197, 200, 204) 44px, rgb(197, 200, 204) 54px);
}

.work-card img {
  width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: 4px 4px 0px 0px;
}

.work-card span {
  display: block; margin-top: 18px; color: rgb(255, 179, 184); font-size: 12px; font-weight: 750;
}

.work-card h3 {
  margin: 6px 0px 4px; font-size: 30px; line-height: 1.12;
}

.work-card p {
  margin: 0px; color: rgb(210, 213, 216);
}

@media (max-width: 960px) {
.studio-hero__inner {
  min-height: auto; grid-template-columns: 1fr; gap: 0px; padding-top: 58px;
}

.studio-hero__copy {
  padding-bottom: 20px;
}

.studio-hero h1 {
  font-size: 54px;
}

.studio-hero__lead {
  font-size: 19px;
}

.studio-hero__visual img {
  width: min(86vw, 430px);
}

.portfolio-band__head {
  align-items: start; flex-direction: column;
}

.portfolio-band h2 {
  font-size: 40px;
}

.portfolio-rail .work-card {
  width: min(84vw, 460px);
}
}

@media (max-width: 560px) {
.studio-hero h1 {
  font-size: 40px;
}

.studio-hero__inner {
  padding-top: 38px;
}

.portfolio-band {
  padding: 54px 0px 62px;
}

.portfolio-band h2 {
  font-size: 32px;
}

.work-card h3 {
  font-size: 25px;
}
}

.brand--footer .brand-lockup__mark {
  width: 54px; height: 54px;
}

.brand--footer .brand-lockup__text span:last-child {
  color: rgb(255, 107, 118);
}

@media (max-width: 680px) {
.brand-lockup {
  gap: 8px;
}

.brand-lockup__mark {
  width: 42px; height: 42px;
}

.brand-lockup__text {
  font-size: 17px;
}

.brand-lockup__text span:last-child {
  font-size: 10px;
}
}

@media (max-width: 680px) {
.container {
  width: min(100% - 30px, 360px); margin-left: 15px; margin-right: auto;
}

.whatsapp-float {
  top: auto; right: max(14px, env(safe-area-inset-right)); bottom: max(14px, env(safe-area-inset-bottom)); width: 46px; min-height: 46px; padding: 0px; justify-content: center;
}

.studio-hero__copy {
  min-width: 0px; max-width: 100%;
}

.studio-hero h1 {
  max-width: 100%; font-size: 36px; line-height: 1.08; overflow-wrap: anywhere; word-break: normal;
}

.studio-hero__lead {
  max-width: 100%; font-size: 17px; line-height: 1.55; overflow-wrap: anywhere;
}

.hero__actions {
  width: 100%; align-items: stretch; flex-direction: column;
}

.hero__actions .button {
  min-width: 0px; flex: 1 1 auto;
}
}

@media (max-width: 430px) {
.container {
  width: min(100% - 30px, 348px);
}

.studio-hero h1 {
  font-size: 32px;
}

.studio-hero .button {
  min-height: 56px; padding-inline: 16px;
}
}

.topbar {
  color: rgb(255, 255, 255); background: var(--red); font-weight: 800;
}

.topbar__inner {
  min-height: 32px;
}

.site-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12); background: rgba(14, 15, 17, 0.96); backdrop-filter: blur(14px);
}

.nav-wrap {
  min-height: 82px;
}

.brand-lockup {
  color: rgb(255, 255, 255);
}

.brand-lockup__mark {
  width: 54px; height: 54px;
}

.brand-lockup__text {
  font-size: 21px;
}

.brand-lockup__text span:last-child {
  color: rgb(255, 89, 103);
}

.main-nav {
  gap: 28px; padding: 0px; border: 0px; border-radius: 0px; background: transparent;
}

.main-nav > a:not(.button) {
  position: relative; min-height: 44px; display: inline-flex; align-items: center; padding: 0px; border: 0px; border-radius: 0px; color: rgb(255, 255, 255); opacity: 0.82; white-space: nowrap; transition: color 0.2s, opacity 0.2s;
}

.main-nav > a:not(.button):hover,
.main-nav > a:not(.button):focus-visible,
.main-nav > a[aria-current="page"]:not(.button) {
  color: rgb(255, 255, 255); opacity: 1; background: transparent;
}

.main-nav > a:not(.button)::after {
  content: ""; position: absolute; left: 0px; right: 0px; bottom: 5px; height: 2px; background: var(--red); transform: scaleX(0); transform-origin: left center; transition: transform 0.2s;
}

.main-nav > a:not(.button):hover::after,
.main-nav > a:not(.button):focus-visible::after,
.main-nav > a[aria-current="page"]:not(.button)::after {
  transform: scaleX(1);
}

.main-nav .button {
  min-height: 42px; margin-left: 4px; box-shadow: none;
}

.menu-toggle {
  border: 1px solid rgba(255, 255, 255, 0.16); color: rgb(255, 255, 255); background: rgb(32, 35, 40);
}

@media (min-width: 961px) {
.main-nav {
  position: static; width: auto; display: flex; flex-direction: row; align-items: center; color: inherit; box-shadow: none;
}

.menu-toggle {
  display: none;
}

.whatsapp-float {
  top: auto; right: 20px; bottom: 20px;
}
}

@media (min-width: 961px) and (max-width: 1160px) {
.main-nav {
  gap: 20px; font-size: 13px;
}

.main-nav .button {
  padding-inline: 16px;
}
}

.studio-hero {
  border-bottom: 1px solid rgb(43, 48, 53); background: linear-gradient(90deg, rgba(14, 15, 17, 0.92), rgba(14, 15, 17, 0.72) 54%, rgba(215, 38, 56, 0.08)), repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.035) 0px, rgba(255, 255, 255, 0.035) 1px, transparent 1px, transparent 18px), rgb(17, 19, 22);
}

.studio-hero::before {
  content: "BUCURESTI"; position: absolute; right: -44px; top: 34px; color: rgba(255, 255, 255, 0.035); font-size: 118px; font-weight: 950; line-height: 1; letter-spacing: 0px; pointer-events: none;
}

.studio-hero__inner {
  min-height: 600px; align-items: center;
}

.studio-hero__copy {
  position: relative; z-index: 2; padding-bottom: 0px;
}

.studio-hero h1 {
  max-width: 720px; font-size: 82px; line-height: 0.94;
}

.studio-hero__lead {
  max-width: 690px;
}

.studio-hero__visual {
  align-self: stretch; display: flex; align-items: end;
}

.studio-hero__visual img {
  width: min(100%, 620px); transform: translateX(18px);
}

.signal-strip {
  overflow: hidden; border-top: 1px solid rgb(43, 48, 53); border-bottom: 1px solid rgb(43, 48, 53); color: rgb(255, 255, 255); background: var(--red);
}

.signal-strip__track {
  width: max-content; display: flex; gap: 0px; animation: 28s linear 0s infinite normal none running signal-scroll;
}

.signal-strip span {
  display: inline-flex; align-items: center; min-height: 56px; padding: 0px 34px; border-right: 1px solid rgba(255, 255, 255, 0.28); font-size: 15px; font-weight: 900; text-transform: uppercase;
}

@keyframes signal-scroll { 
  0% { transform: translateX(0px); }
  100% { transform: translateX(-50%); }
}

.portfolio-band {
  padding-top: 96px; background: linear-gradient(rgb(32, 36, 42) 0%, rgb(21, 23, 26) 100%);
}

.portfolio-band__head {
  margin-bottom: 32px; padding-bottom: 24px; border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.portfolio-band h2 {
  max-width: 880px; font-size: 66px; line-height: 0.98;
}

.rail-controls button {
  width: 64px; height: 64px; border-color: rgba(255, 255, 255, 0.24); border-radius: 50%;
}

.portfolio-rail {
  padding-left: max(20px, calc((100vw - var(--container)) / 2));
}

.portfolio-rail__track {
  gap: 34px;
}

.portfolio-rail .work-card {
  width: min(78vw, 610px);
}

.work-card__media {
  padding: 0px; overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.16); background: rgb(15, 17, 19);
}

.work-card__media::before {
  display: none;
}

.work-card img {
  border-radius: 0px; transition: transform 0.45s, filter 0.45s;
}

.work-card:hover img,
.work-card:focus-within img {
  filter: saturate(1.08) contrast(1.05); transform: scale(1.025);
}

.work-card span {
  margin-top: 20px; color: rgb(255, 89, 103);
}

.work-card h3 {
  font-size: 42px;
}

@media (max-width: 960px) {
.site-header {
  background: rgb(17, 19, 22);
}

.main-nav {
  left: 0px; right: 0px; width: 100%; gap: 0px; padding: 10px 0px; border-width: 1px 0px; border-style: solid none; border-color: rgba(255, 255, 255, 0.12) currentcolor; border-image: none; border-radius: 0px; background: rgb(17, 19, 22); box-shadow: none;
}

.main-nav > a:not(.button) {
  min-height: 52px; justify-content: flex-start; padding: 0px 18px; border-bottom: 1px solid rgba(255, 255, 255, 0.1); border-radius: 0px; font-size: 17px;
}

.main-nav > a:not(.button)::after {
  display: none;
}

.studio-hero__inner {
  min-height: auto; padding-top: 48px;
}

.studio-hero h1 {
  font-size: 56px; line-height: 1;
}

.portfolio-band h2 {
  font-size: 44px;
}
}

@media (max-width: 680px) {
.topbar {
  display: none;
}

.nav-wrap {
  min-height: 68px;
}

.brand-lockup__mark {
  width: 44px; height: 44px;
}

.studio-hero {
  background: linear-gradient(rgba(14, 15, 17, 0.93), rgba(14, 15, 17, 0.84)), repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.035) 0px, rgba(255, 255, 255, 0.035) 1px, transparent 1px, transparent 18px), rgb(17, 19, 22);
}

.studio-hero::before {
  display: none;
}

.studio-hero h1 {
  font-size: 39px;
}

.studio-hero__lead {
  font-size: 18px;
}

.studio-hero__visual img {
  width: min(88vw, 350px); transform: none;
}

.signal-strip span {
  min-height: 46px; padding-inline: 22px; font-size: 12px;
}

.portfolio-band h2 {
  font-size: 34px;
}

.rail-controls button {
  width: 52px; height: 52px;
}

.work-card h3 {
  font-size: 30px;
}
}

@media (prefers-reduced-motion: reduce) {
.signal-strip__track {
  animation: auto ease 0s 1 normal none running none;
}

.work-card img {
  transition: none;
}
}

.studio-hero__copy {
  padding-bottom: 18px;
}

.studio-hero__phone {
  margin-top: 18px;
}

.portfolio-band__head {
  align-items: center;
}

.rail-controls {
  align-items: center; gap: 14px;
}

.portfolio-band__link {
  margin-right: 10px; color: rgb(255, 255, 255); font-size: 14px; font-weight: 800; text-decoration: underline; text-underline-offset: 5px;
}

.portfolio-band__link:hover,
.portfolio-band__link:focus-visible {
  color: rgb(255, 89, 103);
}

@media (max-width: 960px) {
.portfolio-band__head {
  align-items: flex-start;
}

.rail-controls {
  width: 100%; justify-content: flex-start;
}
}

@media (max-width: 680px) {
.portfolio-band__link {
  margin-right: auto;
}

.rail-controls {
  gap: 10px;
}
}

.contact-inline__intro,
.work-card {
  text-align: left;
}

.portfolio-band__head {
  align-items: flex-end;
}

.work-card span,
.work-card h3,
.work-card p {
  text-align: left;
}

.home .home-contact {
  background: rgb(255, 255, 255); color: rgb(25, 27, 29); padding: 88px 0px;
}

.home .home-contact .contact-inline__intro h2 {
  margin: 0px; font-size: 40px; line-height: 1.15; letter-spacing: 0px; text-align: left;
}

.home .home-contact {
  padding-top: 0px;
}

.home .home-contact .contact-inline__grid {
  border-top: 1px solid rgb(220, 224, 226); padding-top: 72px; grid-template-columns: 0.85fr 1.4fr; gap: 80px; align-items: start;
}

.home .home-contact .contact-inline__intro {
  position: static;
}

.home .home-contact .contact-inline__intro > p:not(.eyebrow) {
  margin-top: 20px;
}

.home .home-contact .contact-form {
  padding: 0px; background: transparent; border: 0px; border-radius: 0px; box-shadow: none;
}

.home .home-contact .contact-form__header h2 {
  font-size: 22px; line-height: 1.3; letter-spacing: 0px;
}

@media (max-width: 1000px) {
.home .home-contact .contact-inline__grid {
  gap: 40px; grid-template-columns: 1fr 1.4fr;
}
}

@media (max-width: 760px) {
.home .home-contact .contact-inline__intro h2 {
  font-size: 30px;
}

.home .home-contact .contact-inline__grid {
  grid-template-columns: 1fr; gap: 32px;
}

.home .whatsapp-float {
  top: 12px; right: 70px; bottom: auto;
}

.home .home-contact {
  padding: 0px 0px 72px;
}

.home .home-contact .contact-inline__grid {
  padding-top: 48px;
}
}

@media (max-width: 1100px) {
.site-header {
  top: 0px;
}

.nav-wrap {
  min-height: 68px;
}

.menu-toggle {
  display: block; flex: 0 0 auto;
}

.main-nav {
  position: absolute; left: 0px; right: 0px; top: 100%; width: 100%; max-height: calc(-68px + 100vh); display: none; overflow-y: auto; padding: 8px 20px 18px; border-width: 1px 0px; border-style: solid none; border-color: rgba(255, 255, 255, 0.12) currentcolor; border-image: none; border-radius: 0px; background: rgb(17, 19, 22); box-shadow: none;
}

.main-nav.is-open {
  display: flex;
}

.main-nav > a:not(.button) {
  min-height: 50px; padding: 0px; border-width: 0px 0px 1px; border-style: none none solid; border-color: currentcolor currentcolor rgba(255, 255, 255, 0.1); border-image: none; font-size: 16px;
}

.main-nav > a:not(.button)::after {
  display: none;
}

.main-nav .button {
  width: 100%; min-height: 50px; margin: 12px 0px 0px;
}
}

@media (max-width: 760px) {
.contact-inline {
  padding-top: 56px; padding-bottom: 56px;
}

.studio-hero__inner {
  padding-top: 44px;
}

.studio-hero h1 {
  font-size: clamp(32px, 10vw, 42px); line-height: 1.06;
}

.hero__actions,
.contact-form__header {
  align-items: stretch; flex-direction: column;
}

.hero__actions .button,
.contact-inline .button {
  width: 100%;
}

.form-grid,
.contact-inline__grid {
  grid-template-columns: 1fr;
}

.contact-inline__intro {
  position: static;
}

.portfolio-band__head,
.rail-controls {
  align-items: flex-start;
}

.portfolio-band__head {
  gap: 18px;
}

.rail-controls {
  flex-wrap: wrap;
}

.portfolio-band__link {
  width: 100%; margin: 0px 0px 2px;
}

.whatsapp-float {
  top: auto; right: max(14px, env(safe-area-inset-right)); bottom: max(14px, env(safe-area-inset-bottom)); width: 46px; min-height: 46px; padding: 0px; justify-content: center;
}

.whatsapp-float__label {
  position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0px, 0px, 0px, 0px); white-space: nowrap;
}
}

@media (max-width: 430px) {
.container {
  width: min(100% - 28px, 100%); margin-left: auto; margin-right: auto;
}

.button,
.form-field input,
.form-field select,
.form-field textarea {
  font-size: 16px;
}

.portfolio-rail {
  padding-left: 14px;
}

.portfolio-rail__track {
  padding-right: 14px;
}
}

/* Shared editorial layouts. Protected brand, hero, portfolio rail and forms above. */
.layout-container { width: min(1200px, calc(100% - 128px)); margin-inline: auto; }
.layout-wide { width: min(1360px, calc(100% - 128px)); margin-inline: auto; }
.design-main { background: #fff; }
.design-main :where(.page-section,.service-intro,.service-detail,.deliverables,.page-content,.related-articles,.process-feature,.home-faq) { padding: 88px 0; }
.design-main :where(.page-section,.service-intro,.service-detail,.deliverables,.page-content,.related-articles,.process-feature,.home-faq,.local-band) { background: #fff; color: #17191c; }
.design-main :where(.editorial-heading,.service-feature__copy,.service-intro__copy,.service-panel,.content-media__copy,.page-content__body,.local-band,.contact-page__intro) p { font-size: 18px; line-height: 1.75; }
.design-main :where(.editorial-heading,.service-intro__copy,.service-panel,.content-media__copy,.page-content__body,.local-band) h2 { font-size: 44px; line-height: 1.12; margin: 0 0 28px; letter-spacing: 0; }
.design-main > :not(.studio-hero):not(.signal-strip):not(.portfolio-band):not(.contact-inline) .eyebrow { font-size: 13px; line-height: 1.5; }
.editorial-heading { max-width: 820px; margin-bottom: 44px; }
.editorial-heading > :last-child { margin-bottom: 0; }
.design-main :where(.page-hero,.blog-hero,.article-hero) { padding: 42px 0 64px; color: #17191c; background: #fff; border-bottom: 1px solid #d8dade; }
.design-main :where(.page-hero,.blog-hero,.article-hero)::before,
.design-main :where(.page-hero,.blog-hero,.article-hero)::after { content: none; }
.design-main :where(.page-hero,.blog-hero) h1 { font-size: 64px; line-height: 1.06; margin: 0 0 28px; max-width: 1050px; letter-spacing: 0; }
.page-hero__copy > p:last-child,.blog-hero__copy > p:last-child { max-width: 750px; font-size: 20px; line-height: 1.65; margin-bottom: 0; }
.breadcrumbs { margin: 0 0 48px; font-size: 13px; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; padding: 0; margin: 0; color: #5a5e63; }
.breadcrumbs li + li::before { content: "/"; margin-right: 8px; color: #85898e; }
.breadcrumbs a { text-decoration: underline; text-underline-offset: 3px; }
.page-hero .eyebrow,.blog-hero .eyebrow { color: #c51e31; }

/* Service stories */
.service-feature { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); gap: 64px; align-items: center; padding: 96px 0; border-bottom: 1px solid #cdd0d3; }
.service-feature:last-child { border-bottom: 0; }
.service-feature__copy { padding-right: 16px; }
.service-feature__copy h2 { font-size: 64px; line-height: 1.04; letter-spacing: 0; margin: 20px 0 28px; max-width: 580px; }
.service-feature__copy > p:not(.eyebrow) { color: #51565c; max-width: 440px; }
.service-feature__links { list-style: none; margin: 34px 0 0; padding: 0; }
.service-feature__links li { border-bottom: 1px solid #d8dade; }
.service-feature__links a { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 60px; padding: 12px 0; font-size: 18px; font-weight: 650; }
.service-feature__links a span { color: #d72638; font-size: 24px; }
.service-feature__links a:hover { color: #bd1c2c; }
.service-feature__visual { min-width: 0; }
.device-study,.flow-study,.brand-study { margin: 0; padding: 36px; min-width: 0; }
.device-study figcaption,.flow-study figcaption,.brand-study figcaption { font-size: 13px; font-weight: 650; margin-bottom: 36px; }
.device-study { background: #f1f2f3; }
.device-study__screens { display: grid; grid-template-columns: minmax(0,3fr) minmax(0,1fr); align-items: center; gap: 16px; min-height: 280px; }
.device-study__desktop { display: block; border: 1px solid #c3c5c8; }
.device-study__desktop img { width: 100%; height: auto; display: block; }
.device-study__phone { width: 100%; height: auto; border: 4px solid #17191c; border-radius: 8px; }
.device-study > a { display: flex; justify-content: space-between; margin-top: 28px; font-size: 14px; font-weight: 650; }
.flow-study { background: #181a1d; color: #fff; }
.flow-study ol { padding: 0; margin: 0; list-style: none; }
.flow-study li { display: flex; gap: 24px; align-items: center; position: relative; min-height: 92px; }
.flow-study li + li { margin-top: 26px; }
.flow-study li + li::before { content: ""; position: absolute; height: 26px; width: 2px; background: #ed3347; left: 27px; top: -26px; }
.flow-study .diagram-icon { padding: 12px; width: 56px; height: 56px; background: #fff; border-radius: 0; flex: 0 0 auto; }
.flow-study strong { display: block; font-size: 28px; line-height: 1.2; margin-bottom: 6px; }
.flow-study li span { font-size: 15px; color: #c2c5ca; }
.flow-study > p { font-size: 13px; line-height: 1.6; margin: 30px 0 0; color: #c2c5ca; max-width: 450px; }
.flow-study--automation { background: #fff; color: #17191c; border: 1px solid #cdd0d3; }
.flow-study--automation .diagram-icon { background: #f1f2f3; }
.flow-study--automation li span,.flow-study--automation > p { color: #555a60; }
.flow-study--automation strong { font-size: 24px; }
.flow-study--automation li { min-height: 70px; }
.brand-study { background: #181a1d; color: #fff; }
.brand-study__mark { min-height: 250px; display: flex; align-items: center; justify-content: center; gap: 22px; }
.brand-study__mark img { width: 110px; height: auto; }
.brand-study__mark strong { font-size: 26px; line-height: 1.25; }
.brand-study__samples { display: grid; grid-template-columns: repeat(3,1fr); border: 1px solid #62656b; }
.brand-study__samples span { padding: 30px 12px; font-size: 13px; }
.brand-study__samples span:first-child { background: #d72638; }
.brand-study__samples span:last-child { background: #fff; color: #17191c; }
.brand-study > p { font-size: 13px; color: #c2c5ca; margin: 20px 0 0; }
.service-media { padding: 0 0 80px; }
.service-media .layout-wide > figure { max-width: 1100px; margin-inline: auto; }
.service-media .device-study__screens { grid-template-columns: minmax(0,3.5fr) minmax(0,1fr); }
.service-media .flow-study { padding: 48px; }
.service-media .flow-study ol { display: grid; grid-template-columns: repeat(3,1fr); gap: 48px; }
.service-media .flow-study--automation ol { grid-template-columns: repeat(4,1fr); }
.service-media .flow-study li { display: block; margin: 0; }
.service-media .flow-study .diagram-icon { margin-bottom: 28px; }
.service-media .flow-study li + li::before { top: 27px; left: -34px; width: 24px; height: 2px; }

/* Process and budget */
.process-feature__grid,.faq-layout { display: grid; grid-template-columns: minmax(0,0.85fr) minmax(0,1.15fr); gap: 90px; align-items: start; }
.process-feature .editorial-heading { margin: 0; }
.process-feature h2 { max-width: 470px; }
.accordion { min-width: 0; border-top: 1px solid #17191c; }
.accordion details { border-bottom: 1px solid #cdd0d3; }
.accordion summary { display: flex; gap: 24px; align-items: baseline; justify-content: space-between; padding: 25px 0; cursor: pointer; font-size: 18px; font-weight: 650; list-style: none; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { content: "+"; font-size: 24px; color: #c51e31; font-weight: 400; flex: 0 0 auto; transition: transform 160ms; }
.accordion details[open] summary::after { transform: rotate(45deg); }
.accordion details > p { margin: 0; padding: 0 38px 26px 0; font-size: 17px; line-height: 1.75; color: #555a60; }
.process-accordion summary { font-size: 24px; }
.budget-band { background: #d72638; color: #fff; padding: 72px 0; }
.budget-band__inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 90px; align-items: center; }
.budget-band h2 { font-size: 64px; line-height: 1.05; letter-spacing: 0; margin: 18px 0 0; max-width: 500px; }
.budget-band .eyebrow { color: #fff; }
.budget-band p:not(.eyebrow) { font-size: 20px; line-height: 1.65; margin: 0 0 28px; max-width: 480px; }
.budget-band .button { background: #17191c; color: #fff; border-color: #17191c; gap: 30px; }
.budget-band .button:hover { background: #303338; }
.home-faq .editorial-heading { margin-bottom: 0; }

/* Interior content */
.service-intro__grid { display: grid; grid-template-columns: minmax(0,1.4fr) minmax(0,0.8fr); gap: 90px; align-items: start; }
.service-intro__copy > p { color: #555a60; }
.service-fit { border-top: 3px solid #d72638; padding-top: 22px; }
.service-fit h2 { font-size: 26px; line-height: 1.25; margin: 0 0 20px; }
.service-fit ul { padding-left: 20px; color: #555a60; font-size: 17px; }
.service-fit li + li { margin-top: 14px; }
.service-detail { border-top: 1px solid #cdd0d3; }
.service-detail__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; }
.service-panel { min-width: 0; }
.service-panel ul { list-style: none; padding: 0; margin: 28px 0 0; }
.service-panel li { padding: 18px 0; border-top: 1px solid #d8dade; font-size: 17px; line-height: 1.75; }
.service-panel li strong { display: block; color: #17191c; }
.deliverables { border-block: 1px solid #d8dade; }
.deliverables__grid,.plain-columns,.scenario-list { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 48px; }
.deliverables__grid article,.plain-columns article,.scenario-list article { border-top: 1px solid #cdd0d3; padding: 24px 0 0; min-width: 0; }
.deliverables__grid h3,.plain-columns h3,.scenario-list h3 { font-size: 24px; line-height: 1.3; margin: 0 0 16px; }
.deliverables__grid p,.plain-columns p,.scenario-list p { font-size: 17px; color: #555a60; margin: 0; }
.scenario-list article > span { display: none; }
.local-band { padding: 44px 0; border-bottom: 1px solid #d8dade; }
.local-band__grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 64px; align-items: start; }
.design-main .local-band h2 { font-size: 30px; margin: 0; }
.local-band p { margin: 0; color: #555a60; }
.content-media { padding: 88px 0; }
.content-media__grid,.page-content__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: start; }
.content-media__grid--reverse { display: block; max-width: 850px; }
.content-media__copy p { color: #555a60; }
.about-disciplines { padding: 44px; background: #17191c; color: #fff; }
.about-disciplines > span { display: block; font-size: 44px; font-weight: 700; line-height: 1.3; }
.about-disciplines > span:nth-child(2) { color: #fa5868; }
.about-disciplines a { display: flex; justify-content: space-between; margin-top: 40px; font-size: 16px; }
.page-content__lead { font-size: 30px; line-height: 1.45; margin: 0; }
.page-content__body h2:not(:first-child) { margin-top: 48px; }
.related-articles { border-top: 1px solid #d8dade; }
.related-articles__head { display: flex; align-items: baseline; justify-content: space-between; gap: 24px; margin-bottom: 32px; }
.related-articles__head h2 { font-size: 36px; margin: 0; line-height: 1.2; }
.related-list { list-style: none; padding: 0; margin: 0; }
.related-list li { border-bottom: 1px solid #d8dade; }
.related-list a { display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 22px 0; font-size: 20px; font-weight: 600; }
.related-list a span:last-child { color: #c51e31; }

/* Portfolio and publishing */
.portfolio-listing .layout-container { width: min(1360px, calc(100% - 128px)); }
.work-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 72px 40px; }
.work-card--listing { width: auto; min-width: 0; }
.work-card--listing .work-card__media { display: block; width: 100%; aspect-ratio: 16/9; border-radius: 0; box-shadow: none; }
.work-card--listing .work-card__media img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.work-card--listing > h2 { color: #17191c; font-size: 36px; line-height: 1.2; margin: 14px 0; }
.work-card--listing > p { font-size: 17px; max-width: 550px; color: #555a60; }
.blog-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 64px 40px; }
.post-card { min-width: 0; }
.post-card:first-child { grid-column: 1/-1; display: grid; grid-template-columns: 1.25fr 1fr; gap: 56px; align-items: center; padding-bottom: 56px; border-bottom: 1px solid #cdd0d3; }
.post-card__image { display: block; }
.post-card__image img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.post-card__meta { display: flex; gap: 12px; margin: 22px 0 14px; font-size: 13px; color: #656a70; }
.post-card h2 { font-size: 30px; line-height: 1.2; margin: 0 0 20px; }
.post-card:first-child h2 { font-size: 40px; }
.post-card p { font-size: 18px; line-height: 1.7; color: #555a60; }
.post-card__link { display: inline-block; margin-top: 14px; color: #bc1d2d; font-weight: 650; text-decoration: underline; text-underline-offset: 5px; }
.article-hero__grid { display: grid; grid-template-columns: 1.4fr 0.8fr; gap: 64px; align-items: center; }
.article-hero h1 { font-size: 52px; line-height: 1.1; margin: 24px 0; }
.article-meta { display: flex; flex-wrap: wrap; gap: 8px; font-size: 13px; color: #555a60; }
.article-hero__lead { font-size: 20px; line-height: 1.65; }
.article-byline { font-size: 13px; color: #656a70; margin-top: 28px; }
.article-cover { margin: 0; }
.article-cover img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.article-content { width: min(760px,calc(100% - 40px)); margin: 0 auto; padding: 64px 0 88px; font-size: 18px; line-height: 1.85; }
.article-content h2 { margin: 48px 0 22px; font-size: 32px; line-height: 1.25; }
.article-content a { text-decoration: underline; text-underline-offset: 4px; color: #b71a2c; }
.article-content li + li { margin-top: 12px; }
.article-summary { border-top: 3px solid #d72638; border-bottom: 1px solid #d8dade; padding: 24px 0; margin-bottom: 40px; }
.article-summary h2 { margin-top: 0; }
.article-note,.legal-notice { border-left: 3px solid #d72638; padding: 8px 0 8px 24px; margin: 32px 0; }

/* Calculator and contact-page introduction */
.calculator-section { padding: 64px 0 88px; }
.calculator-layout { display: grid; grid-template-columns: minmax(0,1.35fr) minmax(0,0.8fr); gap: 64px; align-items: start; }
.calculator-controls { min-width: 0; }
.calculator-group { border: 0; padding: 0; margin: 0 0 44px; min-width: 0; }
.calculator-group legend { font-size: 24px; font-weight: 650; margin-bottom: 24px; }
.calculator-services,.calculator-addons { display: grid; gap: 0; }
.calculator-services label,.calculator-addons label { display: flex; align-items: flex-start; gap: 16px; padding: 22px 0; border-bottom: 1px solid #d8dade; cursor: pointer; }
.calculator-services input,.calculator-addons input { width: 20px; height: 20px; flex: 0 0 auto; accent-color: #d72638; margin-top: 5px; }
.calculator-services strong,.calculator-addons strong { font-size: 18px; display: block; }
.calculator-services small,.calculator-addons small { font-size: 15px; color: #555a60; display: block; line-height: 1.65; margin-top: 6px; }
.calculator-result { position: sticky; top: 112px; border-top: 4px solid #d72638; background: #17191c; color: #fff; padding: 32px; min-width: 0; }
.calculator-result .eyebrow { color: #ff7280; }
.calculator-total { font-size: 36px; font-weight: 700; line-height: 1.2; }
.calculator-result__status { font-size: 15px; color: #c7cacf; }
.calculator-breakdown > div { border-top: 1px solid #4a4d52; padding: 16px 0; display: grid; gap: 8px; font-size: 14px; }
.calculator-disclaimer { font-size: 14px; color: #c7cacf; line-height: 1.75; }
.calculator-result .button { width: 100%; margin-top: 18px; }
.calculator-result .button:disabled { opacity: 0.6; cursor: not-allowed; }
.segmented-control { display: flex; flex-wrap: wrap; gap: 8px; }
.segmented-control label { position: relative; flex: 1; cursor: pointer; }
.segmented-control input { position: absolute; opacity: 0; }
.segmented-control span { display: block; text-align: center; padding: 12px; border: 1px solid #adb0b5; font-size: 16px; }
.segmented-control input:checked + span { background: #17191c; color: #fff; border-color: #17191c; }
.segmented-control input:focus-visible + span { outline: 3px solid #d72638; outline-offset: 3px; }
.scope-explainer { margin-top: 16px; font-size: 16px; color: #555a60; }
.text-button { border: 0; background: none; padding: 8px 0; font-size: 16px; color: #bd1c2c; text-decoration: underline; cursor: pointer; }
.contact-page { padding: 40px 0 80px; background: #fff; }
.contact-page__grid { display: grid; grid-template-columns: minmax(0,0.85fr) minmax(0,1.15fr); gap: 64px; align-items: start; }
.contact-page__intro h1 { font-size: 52px; line-height: 1.1; letter-spacing: 0; margin: 0 0 28px; }
.contact-details { list-style: none; padding: 0; margin: 32px 0 0; }
.contact-details li { margin: 12px 0; font-size: 17px; }
.contact-details a { text-decoration: underline; text-underline-offset: 4px; }

/* Navigation enhancement */
.nav-services { align-self: stretch; display: flex; align-items: center; }
.nav-services__toggle { display: flex; align-items: center; gap: 7px; border: 0; padding: 0; background: none; color: #fff; font-size: 13px; font-weight: 700; cursor: pointer; min-height: 44px; }
.nav-services__toggle > img { width: 16px; height: 16px; filter: invert(1); transition: transform 160ms; }
.nav-services__toggle[aria-expanded=true] > img { transform: rotate(180deg); }
.nav-services__panel { position: absolute; inset: 100% 0 auto; width: 100%; padding: 32px max(40px,calc((100% - 1120px)/2)); background: #17191c; color: #fff; border-top: 1px solid #44474c; border-bottom: 3px solid #d72638; box-shadow: 0 16px 24px #0002; }
.nav-services__panel[hidden] { display: none; }
.nav-services__heading { display: flex; justify-content: space-between; gap: 24px; padding-bottom: 20px; border-bottom: 1px solid #44474c; font-size: 14px; }
.nav-services__heading > span { color: #aeb2b8; }
.nav-services__heading a { color: #ff7784; text-decoration: underline; text-underline-offset: 4px; }
.nav-services__links { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 24px 40px; padding-top: 24px; }
.nav-services__links a { display: block; min-width: 0; padding: 6px 0; }
.nav-services__links strong { display: block; font-size: 19px; line-height: 1.3; margin-bottom: 10px; }
.nav-services__links a > span { display: block; color: #bcc0c6; font-size: 14px; font-weight: 400; line-height: 1.6; }
.nav-services__links a:hover strong { color: #ff7784; }
.mobile-nav-contact { display: none; }
.whatsapp-float { width: 46px; min-height: 46px; padding: 0; justify-content: center; right: 14px; }
.whatsapp-float__label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; }
html:not(.js) .nav-services__panel[hidden] { display: block; position: static; padding: 24px; }
html:not(.js) .nav-services__toggle { display: none; }
html:not(.js) .main-nav { position: static; display: flex; flex-wrap: wrap; max-height: none; }
html:not(.js) .menu-toggle { display: none; }
html:not(.js) .nav-wrap { flex-wrap: wrap; }
html:not(.js) .nav-services { order: 10; width: 100%; }
html:not(.js) .site-header { position: static; }
:where(.design-main,.nav-services) a:focus-visible,:where(.design-main,.nav-services) button:focus-visible,.accordion summary:focus-visible { outline: 3px solid #d72638; outline-offset: 5px; }
@media (max-width: 1100px) {
  .whatsapp-float { right: max(76px, calc((100% - 1120px)/2 + 56px)); }
  .nav-services { display: block; align-self: auto; width: 100%; }
  .nav-services__toggle { font-size: 16px; min-height: 50px; justify-content: space-between; width: 100%; border-bottom: 1px solid #ffffff1a; }
  .nav-services__panel { position: static; padding: 20px 0; background: transparent; box-shadow: none; border: 0; }
  .nav-services__links { grid-template-columns: 1fr 1fr; gap: 20px; }
  .nav-services__links strong { font-size: 17px; }
  .mobile-nav-contact { display: grid; gap: 12px; padding: 24px 0 8px; font-size: 14px; color: #bfc3c9; }
  .service-feature { gap: 40px; padding: 72px 0; }
  .service-feature__copy h2 { font-size: 48px; }
  .device-study,.flow-study,.brand-study { padding: 28px; }
  .flow-study strong { font-size: 24px; }
  .process-feature__grid,.faq-layout,.service-intro__grid,.service-detail__grid,.content-media__grid,.page-content__grid { gap: 48px; }
  .calculator-layout { gap: 32px; }
}
@media (max-width: 900px) {
  .layout-container,.layout-wide,.portfolio-listing .layout-container { width: calc(100% - 40px); }
  .service-feature { grid-template-columns: 1fr; gap: 36px; }
  .service-feature__copy { padding: 0; max-width: 680px; }
  .service-feature__copy h2 { max-width: 650px; }
  .service-feature__copy > p:not(.eyebrow) { max-width: 550px; }
  .service-feature__links { max-width: 550px; }
  .device-study__screens { min-height: 0; }
  .process-feature__grid,.faq-layout,.service-intro__grid,.service-detail__grid,.content-media__grid,.page-content__grid { grid-template-columns: 1fr; gap: 40px; }
  .service-media .flow-study ol,.service-media .flow-study--automation ol { grid-template-columns: repeat(2,1fr); gap: 36px; }
  .service-media .flow-study li::before { display: none; }
  .article-hero__grid { grid-template-columns: 1fr; gap: 32px; }
  .article-cover { max-width: 600px; }
  .budget-band__inner { gap: 40px; }
  .budget-band h2 { font-size: 48px; }
  .post-card:first-child { gap: 28px; }
  .post-card:first-child h2 { font-size: 30px; }
  .calculator-layout { grid-template-columns: 1fr; }
  .calculator-result { position: static; }
  .contact-page__grid { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 760px) {
  .design-main :where(.page-section,.service-intro,.service-detail,.deliverables,.page-content,.related-articles,.process-feature,.home-faq,.content-media) { padding: 56px 0; }
  .design-main :where(.page-hero,.blog-hero,.article-hero) { padding: 28px 0 40px; }
  .design-main :where(.page-hero,.blog-hero) h1 { font-size: 40px; }
  .breadcrumbs { margin-bottom: 32px; }
  .page-hero__copy > p:last-child,.blog-hero__copy > p:last-child { font-size: 18px; }
  .design-main :where(.editorial-heading,.service-intro__copy,.service-panel,.content-media__copy,.page-content__body) h2 { font-size: 30px; }
  .design-main :where(.editorial-heading,.service-feature__copy,.service-intro__copy,.service-panel,.content-media__copy,.page-content__body,.local-band,.contact-page__intro) p { font-size: 17px; }
  .service-feature { padding: 56px 0; }
  .service-feature__copy h2 { font-size: 40px; }
  .service-feature__links a { font-size: 17px; }
  .device-study,.flow-study,.brand-study { padding: 24px; }
  .device-study figcaption,.flow-study figcaption,.brand-study figcaption { margin-bottom: 24px; }
  .device-study__screens { gap: 10px; }
  .device-study__phone { border-width: 2px; border-radius: 4px; }
  .flow-study strong { font-size: 24px; }
  .flow-study li { gap: 18px; }
  .flow-study li span { font-size: 14px; }
  .service-media { padding-bottom: 48px; }
  .service-media .flow-study { padding: 24px; }
  .service-media .flow-study ol,.service-media .flow-study--automation ol { grid-template-columns: 1fr; }
  .service-media .flow-study li { display: flex; }
  .service-media .flow-study .diagram-icon { margin: 0; }
  .brand-study__mark { gap: 16px; min-height: 200px; }
  .brand-study__mark img { width: 80px; }
  .brand-study__mark strong { font-size: 20px; }
  .brand-study__samples span { padding: 24px 10px; }
  .process-accordion summary { font-size: 22px; }
  .budget-band { padding: 48px 0; }
  .budget-band__inner { grid-template-columns: 1fr; gap: 28px; }
  .budget-band h2 { font-size: 40px; max-width: 350px; }
  .budget-band p:not(.eyebrow) { font-size: 18px; }
  .budget-band .button { width: 100%; gap: 16px; justify-content: space-between; }
  .deliverables__grid,.plain-columns,.scenario-list,.local-band__grid { grid-template-columns: 1fr; gap: 28px; }
  .local-band { padding: 32px 0; }
  .design-main .local-band h2 { font-size: 26px; }
  .about-disciplines { padding: 28px; }
  .about-disciplines > span { font-size: 36px; }
  .page-content__lead { font-size: 24px; }
  .work-grid,.blog-grid { grid-template-columns: 1fr; gap: 48px; }
  .work-card--listing > h2 { font-size: 30px; }
  .post-card:first-child { display: block; padding-bottom: 36px; }
  .post-card h2,.post-card:first-child h2 { font-size: 28px; }
  .article-hero h1 { font-size: 36px; }
  .article-hero__lead { font-size: 18px; }
  .article-content { font-size: 17px; padding: 40px 0 56px; }
  .article-content h2 { font-size: 28px; }
  .related-articles__head { flex-direction: column; gap: 16px; }
  .related-articles__head h2 { font-size: 30px; }
  .related-list a { font-size: 18px; }
  .calculator-section { padding: 40px 0 56px; }
  .calculator-result { padding: 24px; }
  .calculator-total { font-size: 30px; }
  .contact-page { padding-top: 28px; }
  .contact-page__intro h1 { font-size: 40px; }
  .nav-services__links { grid-template-columns: 1fr; gap: 18px; }
  .nav-services__links a > span { font-size: 13px; }
  .whatsapp-float { top: 12px; right: 70px; bottom: auto; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .nav-services__toggle > img,.accordion summary::after { transition: none; }
}

/* Featured portfolio projects use the existing full-width desktop captures. */
.device-study--project .device-study__screens { grid-template-columns: minmax(0, 1fr); min-height: 0; }

/* Shared consent dialog: necessary-only by default, independent of form consent. */
.consent-is-open { overflow: hidden; }
.consent-reopen { border: 0; padding: 0; background: none; color: inherit; cursor: pointer; text-decoration: underline; text-underline-offset: 4px; }
.consent-dialog { width: min(940px, calc(100% - 40px)); max-height: calc(100dvh - 40px); padding: 0; border: 1px solid #efdfe0; border-top: 4px solid var(--red); border-radius: 22px; color: var(--ink); background: #fffdfa; box-shadow: 0 30px 100px #100d164d; overflow: auto; overscroll-behavior: contain; }
.consent-dialog::backdrop { background: rgb(19 18 24 / 58%); backdrop-filter: blur(6px); }
.consent-dialog [hidden] { display: none !important; }
.consent-layout { display: grid; grid-template-columns: .85fr 1.15fr; }
.consent-brand { padding: 40px 32px; background: linear-gradient(145deg, #ffe7e7, #f7eff0 65%, #fffdfa); }
.consent-brand img { width: 76px; height: 76px; object-fit: contain; margin-bottom: 24px; }
.consent-dialog .consent-eyebrow { margin: 0 0 12px; color: #982331; font-size: 10px; font-weight: 800; letter-spacing: 1.5px; }
.consent-dialog h2 { margin: 0 0 16px; color: #25191d; font-size: clamp(28px, 3vw, 36px); font-weight: 800; line-height: 1.17; letter-spacing: -1.2px; }
.consent-dialog .consent-brand > p:not(.consent-eyebrow) { margin: 0; color: #62555b; font-size: 14px; line-height: 1.65; }
.consent-assurance { display: flex; align-items: flex-start; gap: 9px; margin-top: 26px; color: #71303b; font-size: 11px; font-weight: 700; line-height: 1.6; }
.consent-assurance > span { font-size: 17px; line-height: 1; }
.consent-content { align-self: center; padding: 46px 32px 34px; }
.consent-dialog #consent-intro { margin: 0 0 15px; font-size: 15px; line-height: 1.8; color: #3b3337; }
.consent-dialog .consent-note { margin: 0 0 22px; font-size: 12px; color: #74666c; line-height: 1.7; }
.consent-close { position: absolute; top: 9px; right: 10px; width: 36px; height: 36px; border: 0; border-radius: 50%; color: #6a535d; background: transparent; font-size: 26px; line-height: 1; cursor: pointer; }
.consent-close:hover { background: #f4e7e9; }
.consent-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.consent-button { min-height: 46px; border: 1px solid var(--red-dark); border-radius: 8px; padding: 11px 9px; color: white; background: var(--red-dark); font-size: 12px; font-weight: 750; cursor: pointer; }
.consent-button:hover { background: #851824; border-color: #851824; }
.consent-button--outline { grid-column: 1 / -1; background: transparent; color: var(--red-dark); border-color: #d4bfc4; }
.consent-button--outline:hover { color: var(--red-dark); background: #fff0f1; border-color: var(--red-dark); }
.consent-dialog .consent-footnote { display: flex; flex-wrap: wrap; gap: 8px 18px; margin: 15px 0 0; font-size: 10px; color: #77676f; line-height: 1.6; }
.consent-dialog .consent-footnote + .consent-footnote { margin-top: 6px; }
.consent-dialog .consent-footnote a { text-decoration: underline; text-underline-offset: 3px; }
.consent-details { margin: 0 0 20px; }
.consent-purpose { display: flex; align-items: center; gap: 14px; padding: 15px 0; border-top: 1px solid #e9dbdf; }
.consent-purpose > span:first-child, .consent-purpose > div { flex: 1; }
.consent-purpose strong { display: block; font-size: 13px; color: #35212a; }
.consent-dialog .consent-purpose p, .consent-purpose > span > span { display: block; margin: 3px 0 0; font-size: 11px; line-height: 1.6; color: #77676f; }
.consent-active { flex: none; color: #6b565f; font-size: 10px; font-weight: 700; white-space: nowrap; }
.consent-purpose input { appearance: none; flex: none; width: 44px; height: 26px; margin: 0; border: 1px solid #b7a8ae; border-radius: 20px; background: #e7e0e3; cursor: pointer; }
.consent-purpose input::before { content: ''; display: block; width: 18px; height: 18px; margin: 3px; border-radius: 50%; background: #fff; box-shadow: 0 1px 3px #0003; }
.consent-purpose input:checked { background: var(--red-dark); border-color: var(--red-dark); }
.consent-purpose input:checked::before { transform: translateX(18px); }
.consent-dialog :focus-visible, .consent-reopen:focus-visible { outline: 3px solid #d72638; outline-offset: 4px; }
.consent-status { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
@media (max-width: 700px) {
  .consent-dialog { width: calc(100% - 24px); max-height: calc(100dvh - 24px); border-radius: 16px; }
  .consent-layout { grid-template-columns: 1fr; }
  .consent-brand { padding: 23px 24px 20px; }
  .consent-brand img { width: 46px; height: 46px; margin-bottom: 12px; }
  .consent-dialog .consent-eyebrow { font-size: 9px; margin-bottom: 8px; }
  .consent-dialog h2 { font-size: 27px; line-height: 1.12; margin-bottom: 10px; }
  .consent-dialog h2 br { display: none; }
  .consent-dialog .consent-brand > p:not(.consent-eyebrow) { font-size: 12px; }
  .consent-assurance { margin-top: 12px; font-size: 10px; }
  .consent-content { padding: 20px 24px 24px; }
  .consent-dialog #consent-intro { font-size: 13px; line-height: 1.7; }
  .consent-dialog .consent-note { font-size: 11px; margin-bottom: 16px; }
}
@media (forced-colors: active) {
  .consent-purpose input { appearance: auto; }
  .consent-purpose input::before { display: none; }
}
