*,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    :root {
      --bg: #f6f3ee;
      --bg-alt: #edebe5;
      --bg-card: #ffffff;
      --ink: #1a1714;
      --ink-mid: #4b4640;
      --ink-soft: #9c978f;
      --ink-xsoft: #ccc8c0;
      --amber: #b8700a;
      --amber-d: #8c5200;
      --amber-l: #f0c060;
      --amber-p: #fdf3e0;
      --display:'Outfit', sans-serif;
      --italic:'Outfit', sans-serif;
      --body:'Poppins', sans-serif;
      --ease: cubic-bezier(0.76, 0, 0.24, 1);
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      background: var(--bg);
      color: var(--ink);
      font-family: var(--body);
      overflow-x: hidden;
      cursor: none;
    }

    /* CURSOR */
    .cur {
      position: fixed;
      width: 8px;
      height: 8px;
      background: var(--amber);
      border-radius: 50%;
      pointer-events: none;
      z-index: 9999;
      transform: translate(-50%, -50%);
      transition: width .25s var(--ease), height .25s var(--ease);
    }

    .cur-ring {
      position: fixed;
      width: 34px;
      height: 34px;
      border: 1.5px solid var(--amber);
      border-radius: 50%;
      pointer-events: none;
      z-index: 9998;
      transform: translate(-50%, -50%);
      transition: left .1s var(--ease), top .1s var(--ease), width .25s, height .25s, opacity .3s;
      opacity: .45;
    }

    .cur.big {
      width: 18px;
      height: 18px;
    }

    .cur-ring.big {
      width: 56px;
      height: 56px;
      opacity: .2;
    }

    /* NAV */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 200;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 32px 64px;
      transition: background .4s, padding .4s, box-shadow .4s;
    }

    nav.scrolled {
      background: rgba(246, 243, 238, .95);
      backdrop-filter: blur(18px);
      padding: 18px 64px;
      box-shadow: 0 1px 0 var(--ink-xsoft);
    }

    .nav-logo {
      font-family: var(--italic);
      font-size: 27px;
      letter-spacing: .06em;
      color: var(--ink);
      text-decoration: none;
    }

    .nav-logo b {
      color: #ff6850;
      font-weight: 400;
    }

    .nav-links {
      display: flex;
      gap: 44px;
      list-style: none;
    }

    .nav-links a {
      font-size: 11px;
      font-weight: 500;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--ink-mid);
      text-decoration: none;
      position: relative;
      transition: color .3s;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -3px;
      left: 0;
      width: 0;
      height: 1.5px;
      background: var(--amber);
      transition: width .3s var(--ease);
    }

    .nav-links a:hover {
      color: var(--amber-d);
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .nav-cta {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: #fff;
      background: var(--ink);
      padding: 13px 30px;
      text-decoration: none;
      cursor: none;
      transition: background .3s, transform .3s;
    }

    .nav-cta:hover {
      background: var(--amber-d);
      transform: translateY(-1px);
    }

    /* HERO */
    #hero {
      min-height: 100vh;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      background: var(--bg);
      padding-top: 160px;
    }

    /* Ghost letters behind everything */
    .h-ghost {
      position: absolute;
      top: -0.1em;
      right: -0.06em;
      font-family: var(--display);
      font-size: clamp(260px, 36vw, 540px);
      font-weight: 900;
      line-height: 1;
      letter-spacing: -0.06em;
      color: transparent;
      -webkit-text-stroke: 1.5px rgba(26, 23, 20, 0.05);
      user-select: none;
      pointer-events: none;
      animation: ghostFloat 16s ease-in-out infinite alternate;
    }

    @keyframes ghostFloat {
      from {
        transform: translateY(0px) rotate(-1.5deg);
      }

      to {
        transform: translateY(28px) rotate(0deg);
      }
    }

    /* Vertical accent lines */
    .h-line1 {
      position: absolute;
      top: 0;
      right: 30%;
      bottom: 0;
      width: 1px;
      background: linear-gradient(180deg, transparent 0%, var(--amber) 45%, transparent 100%);
      opacity: .18;
      pointer-events: none;
    }

    .h-line2 {
      position: absolute;
      top: 0;
      right: calc(30% + 10px);
      bottom: 0;
      width: 1px;
      background: linear-gradient(180deg, transparent 0%, var(--amber) 65%, transparent 100%);
      opacity: .09;
      pointer-events: none;
    }

    /* Warm glow orb */
    .h-orb {
      position: absolute;
      right: 6%;
      top: 12%;
      width: clamp(240px, 30vw, 460px);
      aspect-ratio: 1;
      border-radius: 50%;
      background: radial-gradient(circle at 38% 38%, #fde5a0 0%, #e8a828 45%, #c47a0a 70%, transparent 100%);
      opacity: .1;
      filter: blur(70px);
      animation: orbBreath 9s ease-in-out infinite alternate;
      pointer-events: none;
    }

    @keyframes orbBreath {
      from {
        transform: scale(1);
        opacity: .1;
      }

      to {
        transform: scale(1.2);
        opacity: .16;
      }
    }

    /* Animated dot grid */
    .h-dots {
      position: absolute;
      bottom: 100px;
      left: 64px;
      display: grid;
      grid-template-columns: repeat(8, 14px);
      gap: 14px;
      opacity: .22;
      pointer-events: none;
    }

    .h-dots span {
      width: 3px;
      height: 3px;
      border-radius: 50%;
      background: var(--amber);
      animation: dotPop .5s var(--ease) both;
    }

    /* Content */
    .h-content {
      position: relative;
      z-index: 2;
      margin-top: auto;
      padding: 0 64px 106px;
    }

    .h-tag {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      font-size: 10px;
      font-weight: 600;
      letter-spacing: .32em;
      text-transform: uppercase;
      color: var(--amber-d);
      margin-bottom: 36px;
      opacity: 0;
      animation: riseIn .9s .25s var(--ease) forwards;
    }

    .h-tag::before {
      content: '';
      width: 44px;
      height: 1.5px;
      background: var(--amber);
    }

    /* THE HEADLINE */
    .h-h1 {
      font-family: var(--display);
      font-size: clamp(64px, 11vw, 160px);
      font-weight: 900;
      line-height: .90;
      letter-spacing: -0.035em;
      color: var(--ink);
      max-width: 880px;
      opacity: 0;
      animation: riseIn 1.1s .38s var(--ease) forwards;
    }

    .h-h1 .l-small {
      display: block;
      font-size: .24em;
      font-weight: 400;
      font-style: normal;
      letter-spacing: .28em;
      text-transform: uppercase;
      color: var(--ink-soft);
      font-family: var(--body);
      margin-bottom: .35em;
    }

    .h-h1 .l-italic {
      display: block;
      font-style: italic;
      font-weight: 400;
      color: #ff6850;
      letter-spacing: -0.02em;
    }

    .h-h1 .l-outline {
      display: block;
      color: transparent;
      -webkit-text-stroke: 2.5px var(--ink);
      font-weight: 900;
    }

    .h-bottom {
      margin-top: 56px;
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 48px;
      flex-wrap: wrap;
      opacity: 0;
      animation: riseIn 1s .62s var(--ease) forwards;
    }

    .h-desc {
      max-width: 400px;
      font-size: 14px;
      line-height: 1.88;
      color: var(--ink-mid);
      font-weight: 300;
    }

    .h-acts {
      display: flex;
      align-items: center;
      gap: 28px;
      flex-wrap: wrap;
    }

    .btn-fill {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: #fff;
      background: var(--ink);
      padding: 18px 48px;
      text-decoration: none;
      display: inline-block;
      transition: background .3s, transform .3s var(--ease), box-shadow .3s;
    }

    .btn-fill:hover {
      background: var(--amber-d);
      transform: translateY(-2px);
      box-shadow: 0 16px 44px rgba(140, 82, 0, .2);
    }

    .btn-line {
      font-size: 11px;
      font-weight: 500;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--ink);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 10px;
      border-bottom: 1.5px solid var(--ink-xsoft);
      padding-bottom: 3px;
      transition: color .3s, border-color .3s, gap .3s;
    }

    .btn-line::after {
      content: '↗';
      font-size: 14px;
      transition: transform .3s;
    }

    .btn-line:hover {
      color: var(--amber-d);
      border-color: var(--amber);
      gap: 16px;
    }

    .btn-line:hover::after {
      transform: translate(2px, -2px);
    }

    /* Scroll indicator */
    .h-scroll {
      position: absolute;
      bottom: 42px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      z-index: 2;
      opacity: 0;
      animation: fadeIn .8s 1.35s forwards;
    }

    .h-scroll span {
      font-size: 9px;
      font-weight: 600;
      letter-spacing: .3em;
      text-transform: uppercase;
      color: var(--ink-soft);
    }

    .scl-line {
      width: 1px;
      height: 52px;
      background: linear-gradient(180deg, var(--ink-soft), transparent);
      animation: scDrop 1.9s ease-in-out infinite;
    }

    @keyframes scDrop {
      0% {
        transform: scaleY(0);
        transform-origin: top;
      }

      50% {
        transform: scaleY(1);
        transform-origin: top;
      }

      51% {
        transform: scaleY(1);
        transform-origin: bottom;
      }

      100% {
        transform: scaleY(0);
        transform-origin: bottom;
      }
    }

    /* Marquee */
    .h-mq {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      border-top: 1px solid var(--ink-xsoft);
      padding: 15px 0;
      overflow: hidden;
      z-index: 3;
      opacity: 0;
      animation: fadeIn .8s 1.18s forwards;
    }

    .mq-t {
      display: flex;
      gap: 52px;
      white-space: nowrap;
      animation: mqScroll 22s linear infinite;
    }

    .mq-t span {
      font-size: 10px;
      font-weight: 500;
      letter-spacing: .24em;
      text-transform: uppercase;
      color: var(--ink-soft);
      flex-shrink: 0;
    }

    .mq-t .dot {
      color: var(--amber);
      font-size: 12px;
    }

    @keyframes mqScroll {
      from {
        transform: translateX(0)
      }

      to {
        transform: translateX(-50%)
      }
    }

    /* SHARED */
    section {
      position: relative;
      z-index: 1;
    }

    .lbl {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 18px;
      font-size: 10px;
      font-weight: 600;
      letter-spacing: .3em;
      text-transform: uppercase;
      color: var(--amber-d);
    }

    .lbl::before {
      content: '';
      width: 32px;
      height: 1.5px;
      background: var(--amber);
      display: block;
    }

    /* ABOUT */
    #about {
      padding: 140px 64px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 100px;
      align-items: center;
    }

    #about h2 {
      font-family: var(--display);
      font-size: clamp(34px, 4.5vw, 58px);
      font-weight: 700;
      line-height: 1.08;
      color: var(--ink);
    }

    #about h2 em {
      font-style: italic;
      font-weight: 400;
      color: var(--amber);
    }

    .a-right p {
      font-size: 15px;
      line-height: 1.9;
      color: var(--ink-mid);
      margin-bottom: 22px;
    }

    .a-div {
      width: 100%;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(184, 112, 10, .18) 50%, transparent);
      margin: 38px 0;
    }

    .stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
    }

    .stn {
      font-family: var(--display);
      font-size: 52px;
      font-weight: 700;
      color: var(--amber);
      line-height: 1;
      letter-spacing: -.03em;
    }

    .stl {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--ink-soft);
      margin-top: 4px;
    }

    /* SERVICES */
    #services {
      padding: 140px 64px;
      background: var(--bg-alt);
    }

    .sv-hd {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 70px;
    }

    .sv-hd h2 {
      font-family: var(--display);
      font-size: clamp(34px, 4.5vw, 58px);
      font-weight: 700;
      line-height: 1.08;
    }

    .sv-hd h2 em {
      font-style: italic;
      font-weight: 400;
      color: var(--amber);
    }

    .sv-intr {
      max-width: 300px;
      font-size: 13px;
      line-height: 1.85;
      color: var(--ink-soft);
    }

    .sv-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
    }

    .sv-card {
      background: var(--bg-card);
      padding: 48px 40px;
      position: relative;
      overflow: hidden;
      cursor: none;
      border: 1px solid transparent;
      display: block;
      text-decoration: none;
      transition: border-color .35s, transform .4s var(--ease), box-shadow .4s;
    }

    .sv-card::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--amber), var(--amber-l));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .4s var(--ease);
    }

    .sv-card:hover {
      border-color: var(--ink-xsoft);
      transform: translateY(-6px);
      box-shadow: 0 24px 60px rgba(26, 23, 20, .08);
    }

    .sv-card:hover::after {
      transform: scaleX(1);
    }

    .sv-n {
      font-family: var(--display);
      font-size: 12px;
      color: var(--amber);
      opacity: .65;
      margin-bottom: 28px;
      letter-spacing: .12em;
    }

    .sv-ico {
      width: 44px;
      height: 44px;
      margin-bottom: 22px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .sv-ico svg {
      width: 28px;
      height: 28px;
      stroke: var(--amber-d);
      fill: none;
      stroke-width: 1.4;
    }

    .sv-card h3 {
      font-family: var(--display);
      font-size: 24px;
      font-weight: 700;
      color: var(--ink);
      margin-bottom: 13px;
      line-height: 1.2;
    }

    .sv-card p {
      font-size: 13px;
      line-height: 1.82;
      color: var(--ink-mid);
    }

    .sv-tags {
      margin-top: 22px;
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
    }

    .sv-tag {
      font-size: 9px;
      font-weight: 600;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--amber-d);
      background: var(--amber-p);
      padding: 5px 11px;
    }

    .sv-arr {
      position: absolute;
      bottom: 40px;
      right: 40px;
      font-size: 18px;
      color: var(--amber);
      opacity: 0;
      transform: translateX(-6px);
      transition: opacity .3s, transform .3s;
    }

    .sv-card:hover .sv-arr {
      opacity: 1;
      transform: translateX(0);
    }

    /* PROCESS */
    #process {
      padding: 140px 64px;
      background: var(--bg);
    }

    .pc-hd {
      margin-bottom: 70px;
    }

    .pc-hd h2 {
      font-family: var(--display);
      font-size: clamp(34px, 4vw, 56px);
      font-weight: 700;
      line-height: 1.08;
      max-width: 520px;
    }

    .pc-hd h2 em {
      font-style: italic;
      font-weight: 400;
      color: var(--amber);
    }

    .pc-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      border: 1px solid var(--ink-xsoft);
    }

    .pc-step {
      padding: 48px 36px;
      border-right: 1px solid var(--ink-xsoft);
      position: relative;
      transition: background .3s;
    }

    .pc-step:hover {
      background: var(--amber-p);
    }

    .pc-step:last-child {
      border-right: none;
    }

    .pn {
      font-family: var(--display);
      font-size: 72px;
      font-weight: 900;
      line-height: 1;
      color: transparent;
      -webkit-text-stroke: 1px rgba(184, 112, 10, .22);
      margin-bottom: 18px;
      letter-spacing: -.04em;
    }

    .pc-step h3 {
      font-size: 13px;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--ink);
      margin-bottom: 12px;
    }

    .pc-step p {
      font-size: 13px;
      line-height: 1.78;
      color: var(--ink-mid);
    }

    .pc-arr {
      position: absolute;
      top: 48px;
      right: -14px;
      z-index: 2;
      width: 28px;
      height: 28px;
      background: var(--bg-card);
      border: 1.5px solid var(--ink-xsoft);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      color: var(--amber);
    }

    .pc-step:last-child .pc-arr {
      display: none;
    }

    /* WHY */
    #why {
      padding: 140px 64px;
      background: var(--bg-alt);
    }

    .wy-in {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 96px;
      align-items: start;
    }

    .wy-l h2 {
      font-family: var(--display);
      font-size: clamp(32px, 4vw, 56px);
      font-weight: 700;
      line-height: 1.08;
      margin-bottom: 30px;
    }

    .wy-l h2 em {
      font-style: italic;
      font-weight: 400;
      color: var(--amber);
    }

    .wy-l p {
      font-size: 14px;
      line-height: 1.9;
      color: var(--ink-mid);
    }

    .wy-item {
      padding: 26px 0;
      border-bottom: 1px solid var(--ink-xsoft);
      display: flex;
      gap: 18px;
      align-items: flex-start;
      transition: border-color .3s;
    }

    .wy-item:first-child {
      border-top: 1px solid var(--ink-xsoft);
    }

    .wy-item:hover {
      border-bottom-color: var(--amber);
    }

    .tck {
      width: 22px;
      height: 22px;
      border: 1.5px solid var(--amber);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 2px;
      background: var(--amber-p);
    }

    .tck::after {
      content: '✓';
      font-size: 9px;
      color: var(--amber-d);
      font-weight: 700;
    }

    .wy-item h4 {
      font-size: 14px;
      font-weight: 600;
      color: var(--ink);
      margin-bottom: 5px;
    }

    .wy-item p {
      font-size: 13px;
      line-height: 1.78;
      color: var(--ink-mid);
    }

    /* TESTIMONIALS */
    #testimonials {
      padding: 140px 64px;
      background: var(--ink);
    }

    .ts-hd {
      text-align: center;
      margin-bottom: 70px;
    }

    .ts-hd .lbl {
      justify-content: center;
      color: var(--amber-l);
    }

    .ts-hd .lbl::before {
      background: var(--amber-l);
    }

    .ts-hd h2 {
      font-family: var(--display);
      font-size: clamp(32px, 4.5vw, 56px);
      font-weight: 700;
      line-height: 1.08;
      color: #f6f3ee;
    }

    .ts-hd h2 em {
      font-style: italic;
      font-weight: 400;
      color: var(--amber-l);
    }

    .ts-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .ts-card {
      background: #232018;
      border: 1px solid rgba(246, 243, 238, .07);
      padding: 40px 36px;
      position: relative;
      overflow: hidden;
      transition: border-color .3s, transform .4s var(--ease);
    }

    .ts-card:hover {
      border-color: rgba(240, 192, 96, .3);
      transform: translateY(-4px);
    }

    .ts-card::before {
      content: '\201C';
      position: absolute;
      top: 14px;
      right: 26px;
      font-family: var(--display);
      font-size: 88px;
      line-height: 1;
      color: rgba(240, 192, 96, .07);
    }

    .stars {
      color: var(--amber-l);
      font-size: 12px;
      letter-spacing: 3px;
      margin-bottom: 16px;
    }

    .ts-card p {
      font-family: var(--display);
      font-size: 16px;
      font-weight: 400;
      font-style: italic;
      line-height: 1.72;
      color: rgba(246, 243, 238, .72);
      margin-bottom: 24px;
    }

    .t-au {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .t-av {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: rgba(184, 112, 10, .15);
      border: 1.5px solid rgba(240, 192, 96, .3);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      font-weight: 700;
      color: var(--amber-l);
      font-family: var(--display);
    }

    .t-nm {
      font-size: 13px;
      font-weight: 600;
      color: #f6f3ee;
    }

    .t-rl {
      font-size: 11px;
      color: rgba(246, 243, 238, .32);
      margin-top: 2px;
    }

    /* CTA */
    #cta {
      padding: 160px 64px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    #cta::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(184, 112, 10, .06) 0%, transparent 70%);
    }

    #cta .lbl {
      justify-content: center;
    }

    #cta h2 {
      font-family: var(--display);
      font-size: clamp(40px, 7vw, 96px);
      font-weight: 900;
      line-height: .94;
      max-width: 760px;
      margin: 0 auto 22px;
      letter-spacing: -.03em;
    }

    #cta h2 em {
      font-style: italic;
      font-weight: 400;
      color: var(--amber);
    }

    #cta p {
      font-size: 15px;
      color: var(--ink-mid);
      max-width: 420px;
      margin: 0 auto 48px;
      line-height: 1.85;
    }

    .cta-b {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    /* FOOTER */
    footer {
      background: var(--ink);
      border-top: 1px solid rgba(246, 243, 238, .07);
      padding: 72px 64px 40px;
      color: rgba(246, 243, 238, .45);
    }

    .ft-top {
      display: grid;
      grid-template-columns: 1.6fr 1fr 1fr 1fr;
      gap: 56px;
      margin-bottom: 56px;
    }

    .ft-logo {
      font-family: var(--italic);
      font-size: 25px;
      color: #f6f3ee;
      text-decoration: none;
      letter-spacing: .06em;
      display: block;
      margin-bottom: 18px;
    }

    .ft-logo b {
      color: var(--amber-l);
      font-weight: 400;
    }

    .ft-brand p {
      font-size: 13px;
      line-height: 1.78;
    }

    .ft-col h4 {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .28em;
      text-transform: uppercase;
      color: var(--amber-l);
      margin-bottom: 20px;
    }

    .ft-col ul {
      list-style: none;
    }

    .ft-col li {
      margin-bottom: 10px;
    }

    .ft-col a {
      font-size: 13px;
      color: rgba(246, 243, 238, .4);
      text-decoration: none;
      transition: color .3s;
    }

    .ft-col a:hover {
      color: #f6f3ee;
    }

    .ft-bot {
      border-top: 1px solid rgba(246, 243, 238, .07);
      padding-top: 26px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .ft-bot p {
      font-size: 12px;
      color: rgba(246, 243, 238, .18);
    }

    .ft-soc {
      display: flex;
      gap: 20px;
    }

    .ft-soc a {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: rgba(246, 243, 238, .28);
      text-decoration: none;
      transition: color .3s;
    }

    .ft-soc a:hover {
      color: var(--amber-l);
    }

    /* ANIMATIONS */
    @keyframes riseIn {
      from {
        opacity: 0;
        transform: translateY(42px)
      }

      to {
        opacity: 1;
        transform: translateY(0)
      }
    }

    @keyframes fadeIn {
      from {
        opacity: 0
      }

      to {
        opacity: 1
      }
    }

    @keyframes dotPop {
      from {
        opacity: 0;
        transform: scale(0)
      }

      to {
        opacity: 1;
        transform: scale(1)
      }
    }

    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity .85s var(--ease), transform .85s var(--ease);
    }

    .reveal.in {
      opacity: 1;
      transform: translateY(0);
    }

    .d1 {
      transition-delay: .08s
    }

    .d2 {
      transition-delay: .17s
    }

    .d3 {
      transition-delay: .26s
    }

    .d4 {
      transition-delay: .34s
    }

    .d5 {
      transition-delay: .42s
    }

    /* RESPONSIVE */
    @media(max-width:1100px) {
      nav {
        padding: 24px 32px;
      }

      nav.scrolled {
        padding: 16px 32px;
      }

      .h-content {
        padding: 0 32px 88px;
      }

      #about,
      #services,
      #process,
      #why,
      #testimonials,
      #cta {
        padding: 100px 32px;
      }

      footer {
        padding: 64px 32px 32px;
      }

      #about {
        grid-template-columns: 1fr;
        gap: 52px;
      }

      .wy-in {
        grid-template-columns: 1fr;
        gap: 52px;
      }

      .sv-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .pc-steps {
        grid-template-columns: repeat(2, 1fr);
      }

      .pc-step:nth-child(2) {
        border-right: none;
      }

      .pc-step:nth-child(3) {
        border-top: 1px solid var(--ink-xsoft);
      }

      .ft-top {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media(max-width:768px) {
      .nav-links {
        display: none;
      }

      .h-ghost {
        display: none;
      }

      .sv-grid {
        grid-template-columns: 1fr;
      }

      .pc-steps {
        grid-template-columns: 1fr;
      }

      .pc-step {
        border-right: none;
        border-bottom: 1px solid var(--ink-xsoft);
      }

      .ts-grid {
        grid-template-columns: 1fr;
      }

      .sv-hd,
      .pc-hd {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
      }

      .ft-top {
        grid-template-columns: 1fr;
        gap: 36px;
      }
    }

    .nav-toggle {
      display: none;
      background: none;
      border: none;
      color: var(--ink);
      cursor: none;
      z-index: 201;
    }

    @media(max-width:768px) {
      .nav-cta {
        display: none !important;
      }

      .nav-toggle {
        display: block;
        order: 2;
        margin-left: auto;
      }

      .nav-logo {
        order: 1;
        z-index: 202;
      }

      nav .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 0;
        min-width: 100vw;
        min-height: 100vh;
        background: rgba(246, 243, 238, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        opacity: 0;
        pointer-events: none;
        transition: opacity .4s var(--ease);
        z-index: 200;
        gap: 36px;
        display: flex;
        margin: 0;
      }

      nav .nav-links.active {
        opacity: 1;
        pointer-events: auto;
      }

      nav .nav-links a {
        font-size: 18px;
      }
    }

    @media(max-width:500px) {
      .stats {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .h-acts {
        flex-direction: column;
        align-items: stretch;
      }

      .h-acts a {
        text-align: center;
        justify-content: center;
      }
    }

    @media(max-width:480px) {

      html,
      body {
        overflow-x: hidden;
        width: 100%;
        position: relative;
      }

      .h-h1 {
        font-size: 46px !important;
        line-height: 1.05;
      }

      .sp-title {
        font-size: 40px !important;
        line-height: 1.1;
      }

      .h-tag,
      .sp-tag {
        flex-wrap: wrap;
        letter-spacing: 0.15em !important;
        gap: 8px;
      }

      .h-ghost,
      .sp-ghost {
        font-size: 110px !important;
      }

      .h-content {
        padding-left: 20px !important;
        padding-right: 20px !important;
      }

      .sp-hero {
        padding-left: 20px !important;
        padding-right: 20px !important;
      }

      nav,
      nav.scrolled {
        padding-left: 20px !important;
        padding-right: 20px !important;
      }
    }
  
    .scroll-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 44px;
      height: 44px;
      background: var(--ink);
      color: var(--amber-l);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: none;
      opacity: 0;
      pointer-events: none;
      z-index: 199;
      transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), background 0.3s;
      box-shadow: 0 8px 24px rgba(26,23,20,0.15);
      border: 1px solid rgba(246, 243, 238, 0.1);
      transform: translateY(20px);
    }
    .scroll-top.visible {
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
    }
    .scroll-top:hover {
      background: var(--amber-d);
      color: #fff;
      transform: translateY(-3px);
    }
    .scroll-top svg {
      width: 20px;
      height: 20px;
      stroke: currentColor;
      stroke-width: 2;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    @media (max-width: 768px) {
      .scroll-top {
        bottom: 20px;
        right: 20px;
      }
    }