    :root {
      --background: #f2efe8;
      --surface: #e6e1d7;
      --text: #121212;
      --muted: #74736d;
      --accent: #ff4d20;
      --dark: #151515;
      --light: #f7f4ec;
      --border: rgba(18, 18, 18, 0.18);
      --container: 1680px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      background: var(--background);
      color: var(--text);
      font-family: "Inter", sans-serif;
      line-height: 1.4;
      overflow-x: hidden;
    }

    body.menu-open {
      overflow: hidden;
    }

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

    img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    button {
      color: inherit;
      font: inherit;
    }

    .container {
      width: min(calc(100% - 56px), var(--container));
      margin-inline: auto;
    }

    .section-label {
      color: var(--muted);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    /* HEADER */

    .header {
      position: fixed;
      top: 0;
      left: 0;
      z-index: 100;
      width: 100%;
      color: white;
      mix-blend-mode: difference;
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 88px;
    }

    .logo {
      font-family: "Manrope", sans-serif;
      font-size: 18px;
      font-weight: 600;
      letter-spacing: -0.045em;
    }

    .desktop-nav {
      display: flex;
      align-items: center;
      gap: 34px;
      font-size: 14px;
    }

    .desktop-nav a,
    .footer-link {
      position: relative;
    }

    .desktop-nav a::after,
    .footer-link::after {
      position: absolute;
      right: 0;
      bottom: -5px;
      left: 0;
      height: 1px;
      background: currentColor;
      content: "";
      transform: scaleX(0);
      transform-origin: right;
      transition: transform 250ms ease;
    }

    .desktop-nav a:hover::after,
    .footer-link:hover::after {
      transform: scaleX(1);
      transform-origin: left;
    }

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

    .mobile-menu {
      position: fixed;
      inset: 0;
      z-index: 90;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 32px 24px 48px;
      background: var(--dark);
      color: white;
      opacity: 0;
      pointer-events: none;
      transform: translateY(-24px);
      transition:
        opacity 300ms ease,
        transform 300ms ease;
    }

    .mobile-menu.active {
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
    }

    .mobile-menu nav {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .mobile-menu a {
      font-family: "Manrope", sans-serif;
      font-size: clamp(48px, 13vw, 84px);
      letter-spacing: -0.07em;
      line-height: 0.95;
    }

    /* HERO */

    .hero {
      min-height: 100vh;
      display: flex;
      align-items: flex-end;
      padding-top: 150px;
      padding-bottom: 42px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 3.2fr) minmax(240px, 0.8fr);
      align-items: end;
      gap: 50px;
      width: 100%;
    }

    .hero-title {
      max-width: 1250px;
      font-family: "Manrope", sans-serif;
      font-size: clamp(68px, 10.2vw, 172px);
      font-weight: 500;
      letter-spacing: -0.078em;
      line-height: 0.84;
    }

    .hero-title .line {
      display: block;
      overflow: hidden;
    }

    .hero-title .line > span {
      display: block;
      animation: reveal-up 1000ms cubic-bezier(0.22, 1, 0.36, 1) backwards;
    }

    .hero-title .line:nth-child(2) > span {
      animation-delay: 100ms;
    }

    .hero-title .line:nth-child(3) > span {
      animation-delay: 200ms;
    }

    .accent-word {
  color: var(--accent);
  font-family: "Manrope", sans-serif;
  font-style: normal;
  font-weight: 500;
  letter-spacing: -0.078em;
}

    .hero-side {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      min-height: 230px;
      padding-bottom: 8px;
    }

    .hero-description {
      max-width: 320px;
      font-size: 15px;
      line-height: 1.55;
    }

    .scroll-hint {
      display: flex;
      align-items: center;
      gap: 12px;
      color: var(--muted);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    .scroll-line {
      width: 46px;
      height: 1px;
      background: currentColor;
    }

    /* INTRO */

    .intro {
      padding: 150px 0;
      border-top: 1px solid var(--border);
    }

    .intro-grid {
      display: grid;
      grid-template-columns: 1fr 3fr;
      gap: 50px;
    }

    .intro-copy {
      max-width: 1180px;
      font-family: "Manrope", sans-serif;
      font-size: clamp(35px, 5.4vw, 88px);
      letter-spacing: -0.064em;
      line-height: 1.01;
    }

    .intro-copy span {
      color: var(--muted);
    }

    /* PROJECTS */

    .projects {
      padding-bottom: 170px;
    }

    .projects-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      padding-bottom: 26px;
      border-bottom: 1px solid var(--border);
    }

    .projects-count {
      color: var(--muted);
      font-size: 13px;
    }

    .project-grid {
      display: grid;
      grid-template-columns: repeat(12, minmax(0, 1fr));
      column-gap: 24px;
      row-gap: 110px;
      padding-top: 44px;
    }

    .project-card {
      display: grid;
      gap: 18px;
    }

    .project-card:nth-child(1) {
      grid-column: 1 / span 8;
    }

    .project-card:nth-child(2) {
      grid-column: 9 / span 4;
      margin-top: 220px;
    }

    .project-card:nth-child(3) {
      grid-column: 1 / span 5;
      margin-top: 70px;
    }

    .project-card:nth-child(4) {
      grid-column: 6 / span 7;
    }

    .project-card:nth-child(5) {
      grid-column: 1 / span 12;
    }

    .project-card:nth-child(6) {
      grid-column: 7 / span 6;
    }

    .project-visual {
      position: relative;
      overflow: hidden;
      background: var(--surface);
    }

    .project-card:nth-child(1) .project-visual {
      aspect-ratio: 4 / 3;
    }

    .project-card:nth-child(2) .project-visual {
      aspect-ratio: 3 / 4;
    }

    .project-card:nth-child(3) .project-visual {
      aspect-ratio: 4 / 5;
    }

    .project-card:nth-child(4) .project-visual {
      aspect-ratio: 16 / 10;
    }

    .project-card:nth-child(5) .project-visual {
      aspect-ratio: 16 / 8;
    }

    .project-card:nth-child(6) .project-visual {
      aspect-ratio: 1 / 1;
    }

    .project-visual img {
      transform: scale(1.015);
      transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
    }

    .project-card:hover .project-visual img {
      transform: scale(1.065);
    }

    .project-overlay {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      padding: 22px;
      background:
        linear-gradient(
          to top,
          rgba(0, 0, 0, 0.34),
          rgba(0, 0, 0, 0) 44%
        );
      color: white;
      opacity: 0;
      transition: opacity 300ms ease;
    }

    .project-card:hover .project-overlay {
      opacity: 1;
    }

    .overlay-label {
      font-size: 12px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .project-arrow {
      display: grid;
      width: 54px;
      height: 54px;
      place-items: center;
      border-radius: 50%;
      background: var(--background);
      color: var(--text);
      font-size: 23px;
      transform: translateY(8px);
      transition: transform 300ms ease;
    }

    .project-card:hover .project-arrow {
      transform: translateY(0);
    }

    .project-meta {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      align-items: start;
      gap: 24px;
    }

    .project-title {
      font-family: "Manrope", sans-serif;
      font-size: clamp(23px, 2.8vw, 49px);
      font-weight: 500;
      letter-spacing: -0.055em;
      line-height: 1;
    }

    .project-services {
      color: var(--muted);
      font-size: 12px;
      line-height: 1.55;
      text-align: right;
    }

    /* ABOUT */

    .about {
      padding: 150px 0;
      background: var(--dark);
      color: var(--light);
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 3fr;
      gap: 50px;
    }

    .about .section-label {
      color: #898989;
    }

    .about-title {
      max-width: 1130px;
      font-family: "Manrope", sans-serif;
      font-size: clamp(42px, 6vw, 96px);
      letter-spacing: -0.066em;
      line-height: 0.98;
    }

    .about-details {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 90px;
      margin-top: 90px;
    }

    .about-copy {
      max-width: 560px;
      color: #b9b7b0;
      font-size: 16px;
      line-height: 1.75;
    }

    .services {
      display: grid;
    }

    .service {
      display: flex;
      justify-content: space-between;
      padding: 15px 0;
      border-top: 1px solid rgba(255, 255, 255, 0.18);
      font-size: 14px;
    }

    .service:last-child {
      border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    }

    .service-number {
      color: #777;
    }

    /* CONTACT */

    .contact {
      min-height: 94vh;
      display: flex;
      align-items: flex-end;
      padding: 110px 0 42px;
      background: var(--accent);
    }

    .contact-title {
      max-width: 1480px;
      margin-top: 28px;
      font-family: "Manrope", sans-serif;
      font-size: clamp(60px, 10.8vw, 178px);
      font-weight: 500;
      letter-spacing: -0.082em;
      line-height: 0.84;
    }

    .contact-title a {
      display: inline-block;
      border-bottom: 0.055em solid currentColor;
      transition:
        opacity 220ms ease,
        transform 220ms ease;
    }

    .contact-title a:hover {
      opacity: 0.55;
      transform: translateX(8px);
    }

    .contact-details {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
      margin-top: 100px;
      padding-top: 24px;
      border-top: 1px solid rgba(18, 18, 18, 0.34);
    }

    .contact-info {
      display: flex;
      flex-wrap: wrap;
      gap: 18px 34px;
      font-size: 14px;
    }

    .contact-info a {
      position: relative;
    }

    .contact-info a::after {
      position: absolute;
      right: 0;
      bottom: -4px;
      left: 0;
      height: 1px;
      background: currentColor;
      content: "";
      transform: scaleX(0);
      transform-origin: right;
      transition: transform 250ms ease;
    }

    .contact-info a:hover::after {
      transform: scaleX(1);
      transform-origin: left;
    }

    .socials {
      display: flex;
      justify-content: flex-end;
      gap: 24px;
      font-size: 14px;
    }

    .copyright {
      margin-top: 65px;
      color: rgba(18, 18, 18, 0.68);
      font-size: 12px;
    }

    /* ANIMATIONS */

    .reveal {
      opacity: 0;
      transform: translateY(42px);
      transition:
        opacity 900ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
    }

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

    @keyframes reveal-up {
      from {
        transform: translateY(110%);
      }

      to {
        transform: translateY(0);
      }
    }

    /* TABLET */

    @media (max-width: 1000px) {
      .container {
        width: min(calc(100% - 36px), var(--container));
      }

      .desktop-nav {
        display: none;
      }

      .menu-button {
        display: block;
      }

      .hero {
        min-height: 92vh;
      }

      .hero-grid {
        grid-template-columns: 1fr;
      }

      .hero-title {
        font-size: clamp(64px, 16.5vw, 130px);
      }

      .hero-side {
        min-height: auto;
        flex-direction: row;
        align-items: flex-end;
        gap: 40px;
        padding-top: 52px;
      }

      .intro {
        padding: 105px 0;
      }

      .intro-grid,
      .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
      }

      .project-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 72px 20px;
      }

      .project-card:nth-child(n) {
        grid-column: auto;
        margin-top: 0;
      }

      .project-card:nth-child(1),
      .project-card:nth-child(4),
      .project-card:nth-child(5) {
        grid-column: 1 / -1;
      }

      .project-card:nth-child(2) .project-visual,
      .project-card:nth-child(3) .project-visual,
      .project-card:nth-child(6) .project-visual {
        aspect-ratio: 4 / 5;
      }

      .about {
        padding: 110px 0;
      }

      .about-details {
        grid-template-columns: 1fr;
        gap: 62px;
        margin-top: 64px;
      }

      .contact {
        min-height: 82vh;
      }
    }

    /* MOBILE */

    @media (max-width: 640px) {
      .header-inner {
        height: 72px;
      }

      .hero {
        min-height: 88vh;
        padding-top: 115px;
      }

      .hero-title {
        font-size: clamp(57px, 17.8vw, 96px);
      }

      .hero-side {
        display: grid;
        gap: 46px;
        padding-top: 46px;
      }

      .hero-description {
        max-width: 290px;
      }

      .intro-copy {
        font-size: 37px;
      }

      .projects {
        padding-bottom: 105px;
      }

      .project-grid {
        grid-template-columns: 1fr;
        row-gap: 68px;
      }

      .project-card:nth-child(n) {
        grid-column: 1;
      }

      .project-card:nth-child(n) .project-visual {
        aspect-ratio: 4 / 5;
      }

      .project-card:nth-child(1) .project-visual,
      .project-card:nth-child(4) .project-visual,
      .project-card:nth-child(5) .project-visual {
        aspect-ratio: 4 / 3;
      }

      .project-meta {
        grid-template-columns: 1fr;
        gap: 7px;
      }

      .project-services {
        text-align: left;
      }

      .project-overlay {
        opacity: 1;
        padding: 16px;
      }

      .overlay-label {
        display: none;
      }

      .project-arrow {
        width: 46px;
        height: 46px;
        margin-left: auto;
        font-size: 20px;
      }

      .about-title {
        font-size: 42px;
      }

      .contact {
        min-height: 76vh;
        padding-bottom: 28px;
      }

      .contact-title {
        font-size: clamp(56px, 16vw, 100px);
      }

      .contact-details {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 70px;
      }

      .contact-info {
        display: grid;
        gap: 10px;
      }

      .socials {
        justify-content: flex-start;
      }

      .copyright {
        margin-top: 45px;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }

      *,
      *::before,
      *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
      }
    }

