
/*
|--------------------------------------------------------------------------
| Shared design system
|--------------------------------------------------------------------------
*/

:root {
  --content-padding: clamp(24px, 6.4vw, 100px);
  --section-space: clamp(96px, 10vw, 170px);
  --section-space-compact: clamp(70px, 7vw, 115px);
  --page-title-size: clamp(82px, 9.6vw, 154px);
  --section-title-size: clamp(40px, 4.8vw, 72px);
  --lead-size: clamp(20px, 1.55vw, 25px);
  --body-size: 17px;
  --small-size: 13px;
  --radius-large: 34px;
  --radius-medium: 24px;
  --header-height: 80px;
}

img {
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

[aria-current="page"]::after {
  right: 0 !important;
}

/*
Content is visible by default. JavaScript only enables reveal hiding after
it has loaded successfully, preventing an empty page if a script fails.
*/
.reveal {
  opacity: 1 !important;
  transform: none !important;
}

html.js-enabled .reveal:not(.visible) {
  opacity: 0 !important;
  transform: translateY(24px) !important;
}

html.js-enabled .reveal.visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Performance: above-the-fold hero paints immediately. */
html.js-enabled .hero.reveal:not(.visible),
html.js-enabled .hero.reveal.visible {
  opacity: 1 !important;
  transform: none !important;
}


* {
box-sizing: border-box;
}

:root {
--page-background: #ededed;
      --text: #111111;
      --muted: #858585;
      --line: #d5d5d5;
      --soft-number: #dddddd;
      --button-background: #111111;
      --button-text: #ffffff;
}

body.dark {
--page-background: #232323;
      --text: #f5f5f5;
      --muted: #aaaaaa;
      --line: #414141;
      --soft-number: #383838;
      --button-background: #f5f5f5;
      --button-text: #111111;
}

html {
scroll-behavior: smooth;
}

body {
margin: 0;
      overflow-x: hidden;
      background: var(--page-background);
      color: var(--text);
      font-family: "Inter", Arial, sans-serif;
      -webkit-font-smoothing: antialiased;
      transition:
        background-color 0.35s ease,
        color 0.35s ease;
}

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

button {
color: inherit;
      font: inherit;
}

.page {
position: relative;
      isolation: isolate;
      width: 100%;
      margin: 0 auto;
      padding: 0 clamp(24px, 6.4vw, 100px);
      overflow: hidden;
      background: var(--page-background);
      border-radius: 0;
      box-shadow: none;
      transition: background-color 0.35s ease;
}

.page::before {
content: "";
      position: absolute;
      top: 0;
      right: clamp(24px, 6.4vw, 100px);
      left: clamp(24px, 6.4vw, 100px);
      z-index: 0;
      height: max(100vh, 900px);
      pointer-events: none;
      background-repeat: no-repeat;
      background-image:
  linear-gradient(
    to bottom,
     rgba(17, 17, 17, 0.05) 0%,
    rgba(17, 17, 17, 0.04) 20%,
    rgba(17, 17, 17, 0.03) 40%,
    rgba(17, 17, 17, 0.02) 60%,
    rgba(17, 17, 17, 0.01) 80%,
    rgba(17, 17, 17, 0) 100%
  ),
  linear-gradient(
    to bottom,
    rgba(17, 17, 17, 0.05) 0%,
    rgba(17, 17, 17, 0.04) 20%,
    rgba(17, 17, 17, 0.03) 40%,
    rgba(17, 17, 17, 0.02) 60%,
    rgba(17, 17, 17, 0.01) 80%,
    rgba(17, 17, 17, 0) 100%
  ),
  linear-gradient(
    to bottom,
    rgba(17, 17, 17, 0.05) 0%,
    rgba(17, 17, 17, 0.04) 20%,
    rgba(17, 17, 17, 0.03) 40%,
    rgba(17, 17, 17, 0.02) 60%,
    rgba(17, 17, 17, 0.01) 80%,
    rgba(17, 17, 17, 0) 100%
  ),
  linear-gradient(
    to bottom,
    rgba(17, 17, 17, 0.05) 0%,
    rgba(17, 17, 17, 0.04) 20%,
    rgba(17, 17, 17, 0.03) 40%,
    rgba(17, 17, 17, 0.02) 60%,
    rgba(17, 17, 17, 0.01) 80%,
    rgba(17, 17, 17, 0) 100%
  ),
  linear-gradient(
    to bottom,
    rgba(17, 17, 17, 0.05) 0%,
    rgba(17, 17, 17, 0.04) 20%,
    rgba(17, 17, 17, 0.03) 40%,
    rgba(17, 17, 17, 0.02) 60%,
    rgba(17, 17, 17, 0.01) 80%,
    rgba(17, 17, 17, 0) 100%
  );
      background-size:
        1px 100%,
        1px 100%,
        1px 100%,
        1px 100%,
        1px 100%;
      background-position:
        0 0,
        25% 0,
        50% 0,
        75% 0,
        100% 0;
}

.header,
    main,
    .footer {
position: relative;
      z-index: 1;
}

body.dark .page::before {
filter: invert(1);
      opacity: 0.72;
}

.header {
min-height: 80px;
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      gap: 30px;
      font-size: 15px;
}

.logo {
justify-self: start;
      font-weight: 500;
}

.navigation {
display: flex;
      align-items: center;
      gap: 30px;
}

.navigation-social {
display: none;
}

.navigation a,
    .social-links a,
    .footer a {
position: relative;
}

.navigation a::after,
    .social-links a::after,
    .footer a::after {
content: "";
      position: absolute;
      right: 100%;
      bottom: -3px;
      left: 0;
      height: 1px;
      background: currentColor;
      transition: right 0.25s ease;
}

.navigation a:hover::after,
    .social-links a:hover::after,
    .footer a:hover::after {
right: 0;
}

.theme-toggle {
justify-self: end;
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 0;
      border: 0;
      background: transparent;
      cursor: pointer;
      font-size: 15px;
}

.theme-icon {
width: 20px;
      height: 20px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex: 0 0 20px;
}

.theme-icon svg {
width: 100%;
      height: 100%;
      display: block;
}

.theme-icon-dark {
display: none;
}

body.dark .theme-icon-light {
display: none;
}

body.dark .theme-icon-dark {
display: block;
}

.menu-toggle {
display: none;
      padding: 0;
      border: 0;
      background: transparent;
      cursor: pointer;
}

.menu-toggle span {
display: block;
      width: 20px;
      height: 1px;
      margin: 5px 0;
      background: var(--text);
}

section {
padding: 78px 0;
}

.reveal {
opacity: 0;
      transform: translateY(24px);
      transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.reveal.visible {
opacity: 1;
      transform: translateY(0);
}

.pill-button {
display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      min-height: 38px;
      padding: 0 18px;
      border-radius: 999px;
      background: var(--button-background);
      color: var(--button-text);
      font-size: 15px;
      transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}

.pill-button:hover {
opacity: 0.84;
      transform: translateY(-2px);
}

.hero {
min-height: calc(100vh - 80px);
      padding-top: clamp(90px, 6vw, 155px);
      padding-bottom: 90px;
}

.hero-title {
width: 100%;
}

.hero-title-row {
display: flex;
      align-items: center;
}

.hero-title-row-top {
justify-content: flex-start;
      gap: clamp(24px, 3vw, 48px);
}

.hero-title-row-bottom {
justify-content: space-between;
      align-items: flex-end;
      gap: 50px;
      margin-top: -0.04em;
}

.title-word {
display: block;
      font-size: clamp(92px, 10.6vw, 170px);
      font-weight: 400;
      line-height: 0.8;
      letter-spacing: -0.085em;
      white-space: nowrap;
}

.hero-image {
height: clamp(105px, 8.4vw, 140px);
      flex: 0 0 auto;
      object-fit: cover;
      object-position: center 43%;
      border-radius: 30px;
      transform: rotate(-4deg);
}

.specialization {
width: 190px;
      flex: 0 0 190px;
      margin: 0 0 12px;
      font-size: 15px;
      line-height: 1.45;
}

.hero-content {
display: grid;
      grid-template-columns: minmax(0, 650px) 190px;
      justify-content: space-between;
      gap: 50px;
      margin-top: clamp(50px, 6vw, 165px);
}

.hero-introduction p {
max-width: 620px;
      margin: 0 0 30px;
      font-size: clamp(20px, 1.65vw, 27px);
      line-height: 1.28;
      letter-spacing: -0.035em;
}

.social-links {
display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 7px;
      font-size: 15px;
}

.social-links > span {
margin-bottom: 8px;
      color: var(--muted);
}

.section-title {
margin: 0;
      font-size: clamp(34px, 4vw, 52px);
      font-weight: 400;
      letter-spacing: -0.05em;
}

.service-grid {
display: grid;
      grid-template-columns: repeat(3, 1fr);
      margin-top: 48px;
}

.service-card {
min-height: 190px;
      padding: 0 28px;
      border-left: 1px solid var(--line);
}

.service-number {
display: block;
      margin-bottom: 56px;
      color: var(--soft-number);
      font-size: 36px;
      font-style: normal;
      letter-spacing: -0.05em;
}

.service-card h3 {
margin: 0 0 9px;
      font-size: 25px;
      font-weight: 500;
}

.service-card p {
max-width: 220px;
      margin: 0;
      font-size: 13px;
      line-height: 1.5;
}

.work {
padding-top: 90px;
}

.section-heading {
display: flex;
      justify-content: space-between;
      align-items: end;
      gap: 30px;
      padding-bottom: 16px;
      border-bottom: 1px solid var(--line);
}

.section-heading h2 {
margin: 0;
      font-size: 30px;
      font-weight: 400;
      letter-spacing: -0.04em;
}

.section-heading sup {
font-size: 9px;
}

.section-heading p {
margin: 0;
      font-size: 9px;
}

.project {
position: relative;
      min-height: 145px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 30px;
      border-bottom: 1px solid var(--line);
      overflow: visible;
      isolation: isolate;
}

.project-main {
position: relative;
      z-index: 2;
      display: block;
      min-width: 0;
}

.project strong {
display: block;
      font-size: clamp(39px, 5vw, 64px);
      font-weight: 400;
      line-height: 0.95;
      letter-spacing: -0.065em;
      transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}

.project small {
display: block;
      margin-top: 14px;
      font-size: 13px;
      line-height: 1.4;
}

.project-year {
position: relative;
      z-index: 4;
      flex: 0 0 auto;
      font-size: clamp(32px, 4vw, 47px);
      font-style: normal;
      letter-spacing: -0.055em;
}

.project-preview {
position: absolute;
      top: 50%;
      right: clamp(210px, 24vw, 360px);
      z-index: 3;
      width: clamp(180px, 16vw, 240px);
      aspect-ratio: 1 / 1;
      overflow: hidden;
      border-radius: 22px;
      opacity: 0;
      pointer-events: none;
      transform: translateY(-50%) rotate(-5deg) scale(0.94);
      transform-origin: center center;
      transition:
        opacity 0.28s ease,
        transform 0.32s cubic-bezier(.2,.8,.2,1);
      box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.project-preview img {
width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      transform: scale(1.03);
      transition: transform 0.45s ease;
}

.project:hover .project-preview,
    .project:focus-visible .project-preview {
opacity: 1;
      transform: translateY(-50%) rotate(-5deg) scale(1);
}

.project:hover .project-preview img,
    .project:focus-visible .project-preview img {
transform: scale(1);
}

.project:hover strong,
    .project:focus-visible strong {
transform: translateX(10px);
}

.more-work {
padding: 95px 0 55px;
}

.more-work h3 {
margin: 0 0 8px;
      font-size: 24px;
      font-weight: 400;
      letter-spacing: -0.04em;
}

.more-work p {
margin: 0;
      font-size: 13px;
}

.more-work a {
text-decoration: underline;
      text-underline-offset: 2px;
}

.process {
display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 95px;
      padding-top: 100px;
}

.process-copy h2 {
margin: 0 0 36px;
      font-size: clamp(36px, 4.6vw, 58px);
      font-weight: 400;
      line-height: 0.94;
      letter-spacing: -0.055em;
}

.process-copy p {
max-width: 370px;
      margin: 0;
      font-size: 15px;
      line-height: 1.45;
}

.accordion-item {
border-bottom: 1px solid var(--line);
}

.accordion-button {
width: 100%;
      min-height: 59px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 30px;
      padding: 0;
      border: 0;
      background: transparent;
      cursor: pointer;
      text-align: left;
      font-size: 20px;
}

.accordion-button span {
display: flex;
      gap: 22px;
}

.accordion-button b {
font-weight: 400;
}

.accordion-button i {
font-size: 18px;
      font-style: normal;
      transition: transform 0.3s ease;
}

.accordion-content {
display: grid;
      grid-template-rows: 0fr;
      transition: grid-template-rows 0.35s ease;
}

.accordion-content p {
min-height: 0;
      overflow: hidden;
      margin: 0;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.55;
}

.accordion-item.open .accordion-content {
grid-template-rows: 1fr;
}

.accordion-item.open .accordion-content p {
padding-bottom: 22px;
}

.accordion-item.open .accordion-button i {
transform: rotate(45deg);
}

.contact {
min-height: auto;
      padding-top: clamp(120px, 13vw, 210px);
      padding-bottom: clamp(80px, 8vw, 125px);
}

.contact-layout {
display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      align-items: end;
      gap: clamp(50px, 8vw, 150px);
}

.contact-title {
min-width: 0;
}

.contact-title h2 {
margin: 0;
      font-size: clamp(54px, 6.2vw, 100px);
      font-weight: 400;
      line-height: 0.91;
      letter-spacing: -0.07em;
}

.contact-image-wrapper {
position: relative;
      display: inline-block;
      width: auto;
      height: 0.72em;
      margin-right: 0.14em;
      vertical-align: 0.02em;
}

.contact-image {
width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      object-position: center 40%;
      border-radius: 15px;
}

.availability-dot {
position: absolute;
      top: 5px;
      right: 5px;
      width: 11px;
      height: 11px;
      border: 2px solid var(--page-background);
      border-radius: 50px;
      background: #67d160;
}

.contact-button {
min-width: 128px;
      flex: 0 0 auto;
      padding-inline: 20px;
}

.footer {
min-height: 100px;
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      gap: 40px;
      border-top: 1px solid var(--line);
      font-size: 15px;
}

.footer-copyright {
justify-self: start;
      margin: 0;
}

.footer-copyright span {
color: #ef8d91;
}

.footer-navigation {
display: flex;
      justify-content: center;
      align-items: center;
      gap: 22px;
}

.back-to-top {
justify-self: end;
}

@media (max-width: 900px) {
.page {
padding-inline: 40px;
}
}

@media (max-width: 900px) {
.hero-title-row-top {
justify-content: flex-start;
}
}

@media (max-width: 900px) {
.hero-title-row-bottom {
align-items: flex-start;
        flex-direction: column;
        gap: 40px;
}
}

@media (max-width: 900px) {
.specialization {
width: auto;
        flex-basis: auto;
}
}

@media (max-width: 900px) {
.hero-content {
grid-template-columns: 1fr;
        margin-top: 85px;
}
}

@media (max-width: 900px) {
.social-links {
flex-direction: row;
        flex-wrap: wrap;
        gap: 16px;
}
}

@media (max-width: 900px) {
.social-links > span {
width: 100%;
}
}

@media (max-width: 900px) {
.process {
grid-template-columns: 1fr;
        gap: 60px;
}
}

@media (max-width: 900px) {
.project {
min-height: 145px;
}
}

@media (max-width: 900px) {
.project-preview {
right: 120px;
        width: clamp(140px, 18vw, 190px);
        border-radius: 18px;
}
}

@media (max-width: 900px) {
.contact-layout {
grid-template-columns: 1fr;
        align-items: flex-start;
        gap: 50px;
}
}

@media (max-width: 900px) {
.contact-button {
justify-self: end;
}
}

@media (max-width: 900px) {
.footer {
grid-template-columns: 1fr auto;
        padding: 25px 0;
}
}

@media (max-width: 900px) {
.footer-navigation {
grid-column: 1 / -1;
        grid-row: 1;
        justify-content: flex-start;
        flex-wrap: wrap;
}
}

@media (max-width: 900px) {
.footer-copyright {
grid-column: 1;
        grid-row: 2;
}
}

@media (max-width: 900px) {
.back-to-top {
grid-column: 2;
        grid-row: 2;
}
}

@media (max-width: 680px) {
.page {
padding-inline: 22px;
}
}

@media (max-width: 680px) {
section {
padding: 78px 0;
}
}

@media (max-width: 680px) {
.header {
position: relative;
        min-height: 80px;
        grid-template-columns: 1fr auto auto;
        gap: 18px;
}
}

@media (max-width: 680px) {
.logo {
font-size: 15px;
        font-weight: 500;
        white-space: nowrap;
}
}

@media (max-width: 680px) {
.theme-toggle {
order: 0;
        justify-self: end;
        gap: 5px;
        font-size: 15px;
}
}

@media (max-width: 680px) {
.theme-icon {
width: 19px;
        height: 19px;
        flex-basis: 19px;
}
}

@media (max-width: 680px) {
.menu-toggle {
position: relative;
        z-index: 101;
        order: 1;
        display: block;
        width: 24px;
        height: 24px;
        padding: 0;
}
}

@media (max-width: 680px) {
.menu-toggle span {
position: absolute;
        left: 0;
        width: 24px;
        height: 1px;
        margin: 0;
        background: var(--text);
        transition:
          top 0.3s ease,
          transform 0.3s ease;
}
}

@media (max-width: 680px) {
.menu-toggle span:first-child {
top: 7px;
}
}

@media (max-width: 680px) {
.menu-toggle span:last-child {
top: 16px;
}
}

@media (max-width: 680px) {
.menu-toggle[aria-expanded="true"] span:first-child {
top: 12px;
        transform: rotate(45deg);
}
}

@media (max-width: 680px) {
.menu-toggle[aria-expanded="true"] span:last-child {
top: 12px;
        transform: rotate(-45deg);
}
}

@media (max-width: 680px) {
.navigation {
position: fixed;
        inset: 0;
        z-index: 100;
        display: flex;
        visibility: hidden;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-end;
        gap: 0;
        min-height: 100dvh;
        padding:
          110px
          22px
          max(48px, env(safe-area-inset-bottom));
        overflow-y: auto;
        border: 0;
        border-radius: 0;
        background: var(--page-background);
        box-shadow: none;
        opacity: 0;
        transform: translateY(-10px);
        pointer-events: none;
        transition:
          opacity 0.3s ease,
          transform 0.3s ease,
          visibility 0.3s ease;
}
}

@media (max-width: 680px) {
.navigation.open {
visibility: visible;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
}
}

@media (max-width: 680px) {
.navigation > a {
display: block;
        width: 100%;
        padding: 6px 0;
        font-size: clamp(34px, 8.7vw, 46px);
        line-height: 1.14;
        letter-spacing: -0.045em;
}
}

@media (max-width: 680px) {
.navigation > a::after {
display: none;
}
}

@media (max-width: 680px) {
.navigation-social {
width: 100%;
        display: flex;
        flex-direction: column;
        gap: 18px;
        margin-top: 28px;
        padding-top: 28px;
        border-top: 1px solid var(--line);
}
}

@media (max-width: 680px) {
.navigation-social a {
width: fit-content;
        align-self: flex-start;
        color: var(--muted);
        font-size: clamp(20px, 5vw, 26px);
        line-height: 1.16;
        letter-spacing: -0.03em;
}
}

@media (max-width: 680px) {
@media (max-height: 760px) {
.navigation {
padding-top: 90px;
          padding-bottom: max(36px, env(safe-area-inset-bottom));
}
}
}

@media (max-width: 680px) {
@media (max-height: 760px) {
.navigation > a {
font-size: clamp(31px, 8vw, 40px);
}
}
}

@media (max-width: 680px) {
@media (max-height: 760px) {
.navigation-social {
margin-top: 20px;
          padding-top: 20px;
}
}
}

@media (max-width: 680px) {
body.menu-open {
overflow: hidden;
}
}

@media (max-width: 680px) {
body.menu-open .header {
z-index: 101;
}
}

@media (max-width: 680px) {
body.menu-open .logo,
      body.menu-open .theme-toggle {
position: relative;
        z-index: 101;
}
}

@media (max-width: 680px) {
.hero {
min-height: auto;
        padding-top: 36px;
        padding-bottom: 90px;
}
}

@media (max-width: 680px) {
.hero-title {
display: grid;
        grid-template-columns: 1fr;
        grid-template-areas:
          "digital"
          "designer"
          "specialization"
          "image";
}
}

@media (max-width: 680px) {
.hero-title-row {
display: contents;
}
}

@media (max-width: 680px) {
.hero-title-row-top .title-word {
grid-area: digital;
}
}

@media (max-width: 680px) {
.hero-title-row-bottom .title-word {
grid-area: designer;
}
}

@media (max-width: 680px) {
.specialization {
grid-area: specialization;
}
}

@media (max-width: 680px) {
.hero-image {
grid-area: image;
}
}

@media (max-width: 680px) {
.title-word {
width: 100%;
        display: block;
        font-size: clamp(66px, 21vw, 104px);
        font-weight: 400;
        line-height: 0.82;
        letter-spacing: -0.085em;
        white-space: nowrap;
}
}

@media (max-width: 680px) {
.hero-title-row-bottom .title-word {
margin-top: 10px;
}
}

@media (max-width: 680px) {
.specialization {
width: min(100%, 360px);
        margin: 52px 0 0;
        font-size: 20px;
        line-height: 1.35;
}
}

@media (max-width: 680px) {
.hero-image {
justify-self: end;
        width: 52%;
        height: auto;
        aspect-ratio: 1.55 / 1;
        margin-top: 42px;
        border-radius: 26px;
        object-fit: cover;
        object-position: center;
        transform: rotate(-4deg);
}
}

@media (max-width: 680px) {
.hero-content {
display: block;
        margin-top: 78px;
}
}

@media (max-width: 680px) {
.hero-introduction {
width: 100%;
}
}

@media (max-width: 680px) {
.hero-introduction p {
max-width: none;
        margin: 0 0 38px;
        font-size: 20px;
        line-height: 1.32;
        letter-spacing: -0.035em;
}
}

@media (max-width: 680px) {
.hero-introduction .pill-button {
min-height: 48px;
        padding-inline: 22px;
        gap: 18px;
        border-radius: 999px;
        font-size: 15px;
}
}

@media (max-width: 680px) {
.social-links {
display: none;
}
}

@media (max-width: 680px) {
.section-title {
font-size: 34px;
}
}

@media (max-width: 680px) {
.service-grid {
grid-template-columns: 1fr;
}
}

@media (max-width: 680px) {
.service-card {
min-height: auto;
        padding: 28px 0;
        border-top: 1px solid var(--line);
        border-left: 0;
}
}

@media (max-width: 680px) {
.service-number {
margin-bottom: 28px;
}
}

@media (max-width: 680px) {
.section-heading {
align-items: flex-start;
        flex-direction: column;
}
}

@media (max-width: 680px) {
.project {
min-height: 115px;
}
}

@media (max-width: 680px) {
.project-preview {
display: none;
}
}

@media (max-width: 680px) {
.project strong {
font-size: 34px;
}
}

@media (max-width: 680px) {
.project small {
margin-top: 10px;
        font-size: 12px;
}
}

@media (max-width: 680px) {
.project-year {
font-size: 27px;
}
}

@media (max-width: 680px) {
.process {
display: grid;
        grid-template-columns: 1fr;
        gap: 50px;
}
}

@media (max-width: 680px) {
.process-copy p {
font-size: 15px;
}
}

@media (max-width: 680px) {
.accordion-button {
font-size: 16px;
}
}

@media (max-width: 680px) {
.accordion-content p {
font-size: 14px;
}
}

@media (max-width: 680px) {
.contact {
min-height: auto;
        padding-top: 100px;
        padding-bottom: 70px;
}
}

@media (max-width: 680px) {
.contact-layout {
display: flex;
        align-items: flex-start;
        flex-direction: column;
        gap: 45px;
}
}

@media (max-width: 680px) {
.contact-title h2 {
display: block;
        font-size: clamp(47px, 14vw, 72px);
        line-height: 0.93;
}
}

@media (max-width: 680px) {
.contact-image-wrapper {
width: 0.74em;
        height: 0.74em;
        margin-right: 0.12em;
        vertical-align: 0.01em;
}
}

@media (max-width: 680px) {
.contact-button {
justify-self: end;
        align-self: flex-end;
}
}

@media (max-width: 680px) {
.footer {
min-height: auto;
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        gap: 22px;
        padding: 28px 0;
        font-size: 12px;
}
}

@media (max-width: 680px) {
.footer-navigation {
order: 1;
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 14px 20px;
}
}

@media (max-width: 680px) {
.footer-copyright {
order: 2;
}
}

@media (max-width: 680px) {
.back-to-top {
order: 3;
}
}

@media (max-width: 680px) {
.page::before {
right: 22px;
        left: 22px;
        height: max(100vh, 850px);
        background-image:
          linear-gradient(
            to bottom,
            rgba(17, 17, 17, 0.06) 0%,
            rgba(17, 17, 17, 0.04) 30%,
            rgba(17, 17, 17, 0.02) 70%,
            rgba(17, 17, 17, 0) 100%
          ),
          linear-gradient(
            to bottom,
            rgba(17, 17, 17, 0.06) 0%,
            rgba(17, 17, 17, 0.04) 30%,
            rgba(17, 17, 17, 0.02) 70%,
            rgba(17, 17, 17, 0) 100%
          );
        background-size:
          1px 100%,
          1px 100%;
        background-position:
          0 0,
          100% 0;
}
}

/* SEO build mobile guide-line fix */
.header { z-index: 300; overflow: visible; }
main { z-index: 1; }
@media (max-width: 680px) {
  .page::before, body.dark .page::before { display: none !important; }
}


/*
|--------------------------------------------------------------------------
| Homepage hero image correction
|--------------------------------------------------------------------------
| The image width is explicitly controlled on desktop. This prevents the
| intrinsic image or its HTML width attribute from occupying the remaining
| flex-row space.
*/

@media (min-width: 901px) {
  .hero-title-row-top {
    justify-content: flex-start;
  }

  .hero-title-row-top .hero-image {
    width: clamp(190px, 18vw, 300px);
    max-width: clamp(190px, 18vw, 300px);
    height: clamp(105px, 8.4vw, 140px);
    flex: 0 0 clamp(190px, 18vw, 300px);
    aspect-ratio: 2.15 / 1;
    object-fit: cover;
    object-position: center 38%;
  }
}

@media (min-width: 681px) and (max-width: 900px) {
  .hero-title-row-top .hero-image {
    width: clamp(180px, 30vw, 270px);
    max-width: clamp(180px, 30vw, 270px);
    height: clamp(100px, 15vw, 130px);
    flex: 0 0 clamp(180px, 30vw, 270px);
    aspect-ratio: 2.08 / 1;
    object-fit: cover;
    object-position: center 38%;
  }
}


/*
|--------------------------------------------------------------------------
| Mobile global spacing refinement
|--------------------------------------------------------------------------
*/
@media (max-width: 680px) {
  .page {
    padding-left: 16px;
    padding-right: 16px;
  }

  section {
    padding-top: 62px;
    padding-bottom: 62px;
  }
}


/*
|--------------------------------------------------------------------------
| Global section spacing refinement
|--------------------------------------------------------------------------
*/

/* Desktop */
@media (min-width: 901px) {
  section {
    padding-top: 78px;
    padding-bottom: 78px;
  }
}

/* Tablet */
@media (min-width: 681px) and (max-width: 900px) {
  section {
    padding-top: 68px;
    padding-bottom: 68px;
  }
}

/* Mobile */
@media (max-width: 680px) {
  section {
    padding-top: 54px;
    padding-bottom: 54px;
  }
}


/*
|--------------------------------------------------------------------------
| Header profile avatar
|--------------------------------------------------------------------------
*/
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.logo-avatar {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  display: block;
  overflow: hidden;
  border-radius: 50%;
  background: var(--line);
}

.logo-avatar img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 52% 24%;
  transform: scale(1.48);
  transform-origin: 52% 24%;
}

.logo-name {
  display: inline-block;
}

@media (max-width: 680px) {
  .logo {
    gap: 8px;
  }

  .logo-avatar {
    width: 29px;
    height: 29px;
    flex-basis: 29px;
  }
}


/*
|--------------------------------------------------------------------------
| Button arrow icon alignment
|--------------------------------------------------------------------------
*/
.pill-button {
  line-height: 1;
}

.pill-button .button-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.pill-button .button-icon svg {
  width: 18px;
  height: 18px;
  display: block;
  flex: none;
}


/* Desktop home hero image sizing */

@media (min-width: 901px) {
  .hero-title-row-top .hero-image {
    width: clamp(190px, 11vw, 300px);
    max-width: clamp(190px, 11vw, 300px);
    height: clamp(105px, 8.4vw, 140px);
    flex: 0 0 clamp(190px, 18vw, 300px);
    aspect-ratio: 2.15 / 1;
    object-fit: cover;
    object-position: center 38%;
  }
}


/*
|--------------------------------------------------------------------------
| Home hero agency animation
|--------------------------------------------------------------------------
*/
.hero {
  position: relative;
}

.hero-content {
  position: relative;
}

.hero-agency-animation {
  position: absolute;
  left: 66%;
  bottom: -155px;
  width: clamp(330px, 33vw, 520px);
  aspect-ratio: 1 / 1;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
  opacity: 0.05;
}

.hero-agency-animation img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.hero-introduction,
.social-links {
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  .hero-agency-animation {
    left: 62%;
    bottom: -95px;
    width: clamp(280px, 42vw, 410px);
    opacity: 0.2;
  }
}

@media (max-width: 680px) {
  .hero-agency-animation {
    display: none;
  }
}


/*
|--------------------------------------------------------------------------
| Dark mode agency animation
|--------------------------------------------------------------------------
*/
body.dark .hero-agency-animation {
  position: absolute;
  left: 66%;
  bottom: -155px;
  width: clamp(330px, 33vw, 520px);
  aspect-ratio: 1 / 1;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
  opacity: 0.15;
  filter: invert(1);
}


/*
|--------------------------------------------------------------------------
| Client / collaboration logo marquee
|--------------------------------------------------------------------------
*/
.client-logos {
  position: relative;
  overflow: hidden;
  padding-top: 52px;
  padding-bottom: 52px;
}

.client-logos-heading {
  margin-bottom: 30px;
}

.client-logos-heading span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.client-logo-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 5%, #000 95%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 5%, #000 95%, transparent 100%);
}

.client-logo-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: clamp(46px, 6vw, 96px);
  animation: clientLogoScroll 42s linear infinite;
  will-change: transform;
}

.client-logo-marquee:hover .client-logo-track {
  animation-play-state: paused;
}

.client-logo-item {
  width: clamp(125px, 10vw, 175px);
  height: 72px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-logo-item img {
  width: 100%;
  max-width: 155px;
  max-height: 56px;
  display: block;
  object-fit: contain;
  object-position: center;
  opacity: .72;
  filter: grayscale(1) brightness(0);
  transition: opacity .25s ease, transform .25s ease;
}

.client-logo-item:hover img {
  opacity: 1;
  transform: scale(1.04);
}

body.dark .client-logo-item img {
  filter: grayscale(1) brightness(0) invert(1);
  opacity: .72;
}

body.dark .client-logo-item:hover img {
  opacity: 1;
}

@keyframes clientLogoScroll {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

@media (max-width: 900px) {
  .client-logos {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .client-logo-track {
    gap: 54px;
    animation-duration: 36s;
  }

  .client-logo-item {
    width: 135px;
    height: 66px;
  }
}

@media (max-width: 680px) {
  .client-logos {
    padding-top: 38px;
    padding-bottom: 38px;
  }

  .client-logos-heading {
    margin-bottom: 22px;
  }

  .client-logo-marquee {
    margin-left: -16px;
    width: calc(100% + 32px);
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
  }

  .client-logo-track {
    gap: 42px;
    animation-duration: 32s;
  }

  .client-logo-item {
    width: 118px;
    height: 58px;
  }

  .client-logo-item img {
    max-width: 118px;
    max-height: 46px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .client-logo-track {
    animation: none;
  }

  .client-logo-marquee {
    overflow-x: auto;
    scrollbar-width: none;
  }

  .client-logo-marquee::-webkit-scrollbar {
    display: none;
  }
}


/*
|--------------------------------------------------------------------------
| Client logo marquee — larger editorial scale
|--------------------------------------------------------------------------
*/
.client-logo-track {
  gap: clamp(72px, 8vw, 132px);
  animation-duration: 48s;
}

.client-logo-item {
  width: clamp(190px, 15vw, 250px);
  height: 112px;
}

.client-logo-item img {
  max-width: 210px;
  max-height: 84px;
}

@media (max-width: 1100px) {
  .client-logo-track {
    gap: 72px;
  }

  .client-logo-item {
    width: 180px;
    height: 96px;
  }

  .client-logo-item img {
    max-width: 168px;
    max-height: 72px;
  }
}

@media (max-width: 680px) {
  .client-logo-track {
    gap: 48px;
    animation-duration: 38s;
  }

  .client-logo-item {
    width: 150px;
    height: 82px;
  }

  .client-logo-item img {
    max-width: 138px;
    max-height: 62px;
  }
}


/*
|--------------------------------------------------------------------------
| Garda Trentino logo treatment
|--------------------------------------------------------------------------
*/
.client-logo-item--garda img {
  filter: brightness(0) saturate(100%);
}

body.dark .client-logo-item--garda img {
  filter: brightness(0) saturate(100%) invert(100%);
}
