:root {
      --yellow: #FAB91C;
      --ink: #0b0b0b;
      --paper: #f7f5ef;
      --soft: #eeeae0;
      --muted: #77736b;
      --line: rgba(11,11,11,.14);
      --radius: 28px;
      --shadow: 0 28px 70px rgba(0,0,0,.16);
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      background: var(--paper);
      color: var(--ink);
      font-family: "DM Sans", sans-serif;
      overflow-x: hidden;
    }

    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }
    button, input, textarea { font: inherit; }

    .site-shell {
      width: 100%;
      margin: 0;
      background: #fff;
      border-radius: 0;
      overflow: hidden;
      box-shadow: none;
    }

    .container {
      width: min(1240px, calc(100% - 64px));
      margin: 0 auto;
    }

    .eyebrow {
      display: inline-flex;
      gap: 9px;
      align-items: center;
      font-size: .76rem;
      text-transform: uppercase;
      letter-spacing: .14em;
      font-weight: 700;
    }

    .eyebrow::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 2px;
      background: var(--yellow);
      box-shadow: 0 0 0 5px rgba(250,185,28,.14);
    }

    .topbar {
      position: absolute;
      z-index: 20;
      top: 32px;
      left: 50%;
      transform: translateX(-50%);
      width: min(1240px, calc(100% - 64px));
      display: flex;
      align-items: center;
      justify-content: space-between;
      color: #fff;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 11px;
      font-family: "Manrope", sans-serif;
      font-weight: 800;
      font-size: 1.15rem;
      letter-spacing: -.03em;
    }

    .brand-logo {
      width: 52px;
      height: 34px;
      object-fit: contain;
      display: block;
      flex: 0 0 auto;
      filter: drop-shadow(0 4px 12px rgba(0,0,0,.18));
      transform-origin: center;
      transition: transform .28s ease;
    }

    .brand:hover .brand-logo {
      transform: scale(1.06);
    }

    .nav {
      display: flex;
      gap: 30px;
      align-items: center;
      font-size: .9rem;
      color: rgba(255,255,255,.78);
    }

    .nav a {
      position: relative;
      transition: color .25s ease;
    }

    .nav a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -8px;
      width: 100%;
      height: 1px;
      background: var(--yellow);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .25s ease;
    }

    .nav a:hover { color: #fff; }
    .nav a:hover::after { transform: scaleX(1); }

    .menu-btn {
      display: none;
      border: 0;
      border-radius: 14px;
      width: 44px;
      height: 44px;
      background: rgba(255,255,255,.14);
      color: #fff;
      cursor: pointer;
      backdrop-filter: blur(10px);
    }

    .cta {
      border: 0;
      cursor: pointer;
      display: inline-flex;
      justify-content: center;
      align-items: center;
      gap: 10px;
      min-height: 48px;
      padding: 0 20px;
      border-radius: 999px;
      background: var(--yellow);
      color: var(--ink);
      font-weight: 700;
      transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
    }

    .cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 14px 28px rgba(250,185,28,.22);
      background: #ffc42d;
    }

    .cta.light {
      background: #fff;
      color: var(--ink);
    }

    .hero {
      position: relative;
      min-height: 790px;
      display: flex;
      align-items: flex-end;
      color: #fff;
      overflow: hidden;
      background:
        linear-gradient(90deg, rgba(7,7,7,.92) 0%, rgba(7,7,7,.73) 40%, rgba(7,7,7,.2) 72%, rgba(7,7,7,.56) 100%),
        radial-gradient(circle at 77% 22%, rgba(250,185,28,.28), transparent 28%),
        linear-gradient(135deg, #141414 0%, #2a2416 42%, #0c0c0c 100%);
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      opacity: .4;
      background-image:
        linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
      background-size: 56px 56px;
      mask-image: linear-gradient(to bottom, #000, transparent 88%);
    }

    .hero-orb {
      position: absolute;
      width: 380px;
      aspect-ratio: 1;
      border-radius: 50%;
      right: 7%;
      top: 20%;
      background: var(--yellow);
      filter: blur(1px);
      opacity: .92;
      box-shadow: 0 0 100px rgba(250,185,28,.35);
      animation: float 7s ease-in-out infinite;
    }

    .hero-orb::after {
      content: "";
      position: absolute;
      inset: 20%;
      border-radius: 50%;
      background: #151515;
      filter: blur(2px);
    }

    .hero-orb::before {
      content: "";
      position: absolute;
      width: 56%;
      height: 14%;
      border-radius: 999px;
      left: 22%;
      top: 43%;
      background: #fff;
      opacity: .9;
      transform: rotate(-18deg);
      filter: blur(10px);
      z-index: 2;
    }

    @keyframes float {
      0%, 100% { transform: translate3d(0,0,0) rotate(0deg); }
      50% { transform: translate3d(0,-18px,0) rotate(6deg); }
    }

    .hero-content {
      position: relative;
      z-index: 3;
      width: 100%;
      padding: 150px 0 64px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.45fr .75fr;
      gap: 60px;
      align-items: end;
    }

    h1, h2, h3, p { margin-top: 0; }
    h1, h2, h3 { font-family: "Manrope", sans-serif; letter-spacing: -.05em; }

    h1 {
      max-width: 820px;
      margin: 18px 0 28px;
      font-size: clamp(4rem, 8vw, 7.7rem);
      line-height: .91;
      font-weight: 600;
    }

    .hero-copy p {
      max-width: 640px;
      font-size: 1.08rem;
      color: rgba(255,255,255,.72);
      line-height: 1.75;
      margin-bottom: 32px;
    }

    .hero-side {
      padding-bottom: 12px;
    }

    .hero-side h3 {
      font-size: 1.55rem;
      line-height: 1.18;
      margin-bottom: 20px;
      font-weight: 600;
    }

    .hero-services {
      margin: 0 0 30px;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 10px;
      color: rgba(255,255,255,.78);
    }

    .hero-services li {
      padding-bottom: 10px;
      border-bottom: 1px solid rgba(255,255,255,.14);
    }

    .hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

    .ticker {
      overflow: hidden;
      background: var(--yellow);
      border-bottom: 1px solid rgba(0,0,0,.08);
    }

    .ticker-track {
      display: flex;
      width: max-content;
      animation: ticker 22s linear infinite;
    }

    .ticker-item {
      display: flex;
      align-items: center;
      gap: 18px;
      padding: 20px 28px;
      text-transform: uppercase;
      font-weight: 800;
      letter-spacing: .06em;
      font-size: .84rem;
    }

    .ticker-dot { width: 7px; height: 7px; background: var(--ink); border-radius: 50%; }

    @keyframes ticker {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }

    section { position: relative; }

    .intro {
      padding: 110px 0 54px;
      background: #fff;
    }

    .intro-head {
      display: grid;
      grid-template-columns: 1.3fr .7fr;
      gap: 60px;
      align-items: end;
    }

    .intro h2 {
      font-size: clamp(2.8rem, 5.6vw, 5.8rem);
      line-height: 1.02;
      margin: 18px 0 0;
      font-weight: 600;
    }

    .intro h2 span { color: #b8b4ab; }

    .intro-side {
      color: var(--muted);
      font-size: 1rem;
      line-height: 1.72;
      max-width: 470px;
      justify-self: end;
    }

    .showcase {
      padding: 56px 0 110px;
      background: #fff;
    }

    .showcase-grid {
      display: grid;
      grid-template-columns: 1fr 1.25fr 1fr 1.08fr;
      gap: 14px;
      align-items: stretch;
    }

    .visual-card {
      min-height: 380px;
      border-radius: 24px;
      overflow: hidden;
      position: relative;
      background: #111;
      isolation: isolate;
      box-shadow: inset 0 0 0 1px rgba(0,0,0,.06);
    }

    .visual-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,.65), transparent 60%);
      z-index: 1;
    }

    .visual-card:nth-child(1) {
      background:
        radial-gradient(circle at 35% 35%, rgba(250,185,28,.95), transparent 20%),
        linear-gradient(135deg, #171717, #6a3d00);
    }

    .visual-card:nth-child(2) {
      background:
        linear-gradient(90deg, transparent 0 36%, rgba(250,185,28,.95) 36% 43%, transparent 43%),
        linear-gradient(150deg, #efe4d1, #2f2f2f);
    }

    .visual-card:nth-child(3) {
      background:
        radial-gradient(circle at 70% 40%, #b9c7c7, transparent 25%),
        linear-gradient(145deg, #131313 0 36%, #d5c3a1 36% 100%);
    }

    .visual-card:nth-child(4) {
      background:
        radial-gradient(circle at 70% 30%, rgba(255,255,255,.24), transparent 22%),
        linear-gradient(135deg, #f6be21 0 52%, #1a1a1a 52%);
    }

    .visual-card .label {
      position: absolute;
      left: 22px;
      bottom: 20px;
      z-index: 3;
      color: #fff;
      font-weight: 600;
      font-size: .95rem;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .visual-card .label::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--yellow);
    }

    .stats {
      background: #fff;
      padding: 0 0 110px;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4,1fr);
      gap: 30px;
      padding-top: 30px;
      border-top: 1px solid var(--line);
    }

    .stat strong {
      display: block;
      font-family: "Manrope", sans-serif;
      font-size: clamp(2.7rem, 4vw, 4.6rem);
      line-height: 1;
      margin-bottom: 16px;
      letter-spacing: -.06em;
    }

    .stat b { display: block; font-size: .92rem; margin-bottom: 8px; }
    .stat p { color: var(--muted); font-size: .84rem; line-height: 1.6; margin: 0; }

    .services {
      padding: 110px 0;
      color: #fff;
      background: var(--ink);
      overflow: hidden;
    }

    .services::before {
      content: "";
      position: absolute;
      width: 500px;
      height: 500px;
      border-radius: 50%;
      right: -180px;
      top: -190px;
      background: var(--yellow);
      filter: blur(130px);
      opacity: .15;
    }

    .section-head {
      display: flex;
      justify-content: space-between;
      gap: 44px;
      align-items: end;
      margin-bottom: 54px;
    }

    .section-head h2 {
      font-size: clamp(3rem, 5vw, 5.6rem);
      line-height: 1;
      margin: 18px 0 0;
      font-weight: 600;
    }

    .section-head p {
      max-width: 430px;
      color: rgba(255,255,255,.58);
      line-height: 1.7;
      margin: 0 0 10px;
    }

    .service-list { border-top: 1px solid rgba(255,255,255,.12); }

    .service-row {
      display: grid;
      grid-template-columns: 80px 1fr 1.2fr 44px;
      gap: 24px;
      align-items: center;
      padding: 30px 0;
      border-bottom: 1px solid rgba(255,255,255,.12);
      transition: background .25s ease, padding .25s ease;
    }

    .service-row:hover {
      background: rgba(255,255,255,.035);
      padding-left: 16px;
      padding-right: 16px;
    }

    .service-num { color: var(--yellow); font-size: .82rem; font-weight: 700; }
    .service-row h3 { margin: 0; font-size: clamp(1.6rem, 3vw, 2.8rem); font-weight: 600; }
    .service-row p { margin: 0; color: rgba(255,255,255,.58); line-height: 1.6; }

    .service-arrow {
      width: 42px;
      aspect-ratio: 1;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,.2);
      display: grid;
      place-items: center;
      color: var(--yellow);
      transition: transform .25s ease, background .25s ease;
    }

    .service-row:hover .service-arrow {
      transform: rotate(45deg);
      background: var(--yellow);
      color: var(--ink);
    }

    .process {
      padding: 110px 0;
      background: #f0ede6;
    }

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

    .process-card {
      min-height: 320px;
      border-radius: 24px;
      padding: 26px;
      background: #fff;
      border: 1px solid rgba(0,0,0,.06);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: transform .25s ease, box-shadow .25s ease;
    }

    .process-card:hover {
      transform: translateY(-7px);
      box-shadow: var(--shadow);
    }

    .process-card .num {
      font-family: "Manrope";
      font-size: 3.4rem;
      font-weight: 700;
      color: var(--yellow);
      line-height: 1;
    }

    .process-card h3 { font-size: 1.5rem; margin: 0 0 10px; }
    .process-card p { margin: 0; color: var(--muted); line-height: 1.6; font-size: .92rem; }

    .work {
      padding: 110px 0;
      background: #fff;
    }

    .work-grid {
      display: grid;
      grid-template-columns: repeat(2,1fr);
      gap: 18px;
      margin-top: 48px;
    }

    .work-card {
      min-height: 460px;
      border-radius: 26px;
      padding: 28px;
      color: #fff;
      overflow: hidden;
      position: relative;
      display: flex;
      align-items: flex-end;
      background: #111;
    }

    .work-card:nth-child(1) {
      background: linear-gradient(135deg, #151515, #3d2a00 60%, var(--yellow));
    }
    .work-card:nth-child(2) {
      background: radial-gradient(circle at 65% 30%, var(--yellow), transparent 26%), linear-gradient(145deg, #151515, #242424);
    }
    .work-card:nth-child(3) {
      background: linear-gradient(155deg, #efe7db 0 42%, #151515 42%);
      color: #fff;
    }
    .work-card:nth-child(4) {
      background: linear-gradient(120deg, var(--yellow), #d58a00 40%, #1a1a1a 40%);
    }

    .work-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,.65), transparent 64%);
    }

    .work-copy { position: relative; z-index: 2; }
    .work-copy span { font-size: .78rem; color: rgba(255,255,255,.68); text-transform: uppercase; letter-spacing: .12em; }
    .work-copy h3 { font-size: clamp(1.8rem, 3vw, 3rem); margin: 7px 0 0; }

    .contact {
      padding: 110px 0;
      background: var(--yellow);
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 70px;
      align-items: start;
    }

    .contact h2 {
      font-size: clamp(3.5rem, 7vw, 7.2rem);
      line-height: .93;
      font-weight: 600;
      margin: 16px 0 24px;
    }

    .contact p { max-width: 560px; line-height: 1.7; }

    .contact-card {
      background: #111;
      color: #fff;
      border-radius: 26px;
      padding: 28px;
    }

    .contact-card label {
      display: block;
      color: rgba(255,255,255,.62);
      font-size: .8rem;
      margin: 16px 0 8px;
    }

    .contact-card input,
    .contact-card textarea {
      width: 100%;
      color: #fff;
      border: 1px solid rgba(255,255,255,.13);
      background: rgba(255,255,255,.06);
      border-radius: 14px;
      outline: none;
      padding: 14px 15px;
      transition: border .2s ease, background .2s ease;
    }

    .contact-card textarea { min-height: 130px; resize: vertical; }

    .contact-card input:focus,
    .contact-card textarea:focus {
      border-color: var(--yellow);
      background: rgba(255,255,255,.09);
    }

    .contact-card .cta {
      margin-top: 18px;
      width: 100%;
      background: #fff;
    }

    footer {
      background: #0b0b0b;
      color: #fff;
      padding: 50px 0 34px;
    }

    .footer-top {
      display: flex;
      justify-content: space-between;
      gap: 40px;
      align-items: start;
    }

    .footer-links {
      display: grid;
      grid-template-columns: repeat(2,1fr);
      gap: 12px 50px;
      color: rgba(255,255,255,.64);
      font-size: .9rem;
    }

    .footer-bottom {
      margin-top: 50px;
      padding-top: 20px;
      border-top: 1px solid rgba(255,255,255,.12);
      display: flex;
      justify-content: space-between;
      gap: 20px;
      color: rgba(255,255,255,.44);
      font-size: .8rem;
    }

    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity .7s ease, transform .7s cubic-bezier(.2,.75,.2,1);
    }

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


    footer .brand-logo {
      background: var(--yellow);
      padding: 6px 8px;
      border-radius: 10px;
      width: 56px;
      height: 38px;
      filter: none;
    }

    .hero .parallax-layer {
      position: absolute;
      inset: -8%;
      pointer-events: none;
      opacity: .28;
      background:
        radial-gradient(circle at 25% 30%, rgba(255,255,255,.16) 0 1px, transparent 2px),
        radial-gradient(circle at 65% 55%, rgba(250,185,28,.34) 0 1px, transparent 2px);
      background-size: 42px 42px, 68px 68px;
      will-change: transform;
      animation: driftGrid 18s linear infinite alternate;
    }

    @keyframes driftGrid {
      from { transform: translate3d(-1%, -1%, 0) rotate(-1deg); }
      to { transform: translate3d(2%, 2%, 0) rotate(1deg); }
    }

    .hero-copy h1 {
      animation: heroIn .9s cubic-bezier(.18,.8,.25,1) .08s both;
    }

    .hero-copy > p {
      animation: heroIn .9s cubic-bezier(.18,.8,.25,1) .18s both;
    }

    .hero-actions {
      animation: heroIn .9s cubic-bezier(.18,.8,.25,1) .28s both;
    }

    @keyframes heroIn {
      from { opacity: 0; transform: translateY(34px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .visual-card,
    .work-card {
      transition: transform .45s cubic-bezier(.2,.75,.2,1), box-shadow .45s ease;
    }

    .visual-card:hover,
    .work-card:hover {
      transform: translateY(-8px) scale(1.012);
      box-shadow: 0 30px 65px rgba(0,0,0,.18);
    }

    .visual-card::before,
    .work-card::after {
      transition: transform .7s cubic-bezier(.2,.75,.2,1), opacity .4s ease;
    }

    .service-row h3 {
      transition: transform .28s ease, color .28s ease;
    }

    .service-row:hover h3 {
      transform: translateX(8px);
      color: var(--yellow);
    }

    @media (max-width: 980px) {
      .container, .topbar { width: min(100% - 36px, 1240px); }
      .nav { display: none; }
      .menu-btn { display: inline-grid; place-items: center; }
      .topbar > .cta { display: none; }

      .hero { min-height: 860px; }
      .hero-grid, .intro-head, .contact-grid { grid-template-columns: 1fr; }
      .hero-side { max-width: 620px; }
      .hero-orb { width: 320px; right: -80px; top: 18%; }
      .showcase-grid { grid-template-columns: repeat(2,1fr); }
      .stats-grid, .process-grid { grid-template-columns: repeat(2,1fr); }
      .service-row { grid-template-columns: 60px 1fr 44px; }
      .service-row p { display: none; }
      .section-head { align-items: start; flex-direction: column; }
    }

    @media (max-width: 680px) {
      .container, .topbar { width: calc(100% - 28px); }
      .topbar { top: 20px; }
      .hero { min-height: 760px; }
      .hero-content { padding: 130px 0 38px; }
      h1 { font-size: clamp(3.35rem, 16vw, 5.5rem); }
      .hero-copy p { font-size: .96rem; }
      .hero-orb { width: 250px; top: 18%; right: -100px; opacity: .68; }

      .intro, .services, .process, .work, .contact { padding: 78px 0; }
      .showcase { padding: 38px 0 78px; }

      .showcase-grid { grid-template-columns: 1fr; }
      .visual-card { min-height: 320px; }
      .visual-card:nth-child(3),
      .visual-card:nth-child(4) { display: none; }

      .stats-grid { grid-template-columns: 1fr 1fr; gap: 28px 18px; }
      .stat strong { font-size: 2.8rem; }

      .service-row { grid-template-columns: 42px 1fr 38px; gap: 14px; padding: 24px 0; }
      .service-row h3 { font-size: 1.4rem; }

      .process-grid, .work-grid { grid-template-columns: 1fr; }
      .process-card { min-height: 260px; }
      .work-card { min-height: 360px; }

      .contact h2 { font-size: clamp(3rem, 17vw, 5.2rem); }
      .footer-top, .footer-bottom { flex-direction: column; }
      .footer-links { grid-template-columns: 1fr; }
    }

    @media (prefers-reduced-motion: reduce) {
      * {
        scroll-behavior: auto !important;
        animation: none !important;
        transition: none !important;
      }
      .reveal { opacity: 1; transform: none; }
    }
