

      .arch-copy-reveal {
        opacity: 0;
        transform: translate3d(-80px, 0, 0);
        transition:
          opacity 900ms cubic-bezier(0.22, 1, 0.36, 1),
          transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
        will-change: opacity, transform;
      }
      /* =========================================================
   STUDIO CTA BUTTON GROUP — RIGHT TO LEFT REVEAL
   Unique namespace: studio-cta-reveal
========================================================= */

      .studio-cta-reveal {
        opacity: 0;
        transform: translate3d(100px, 0, 0);

        transition:
          opacity 900ms cubic-bezier(0.22, 1, 0.36, 1),
          transform 900ms cubic-bezier(0.22, 1, 0.36, 1);

        will-change: opacity, transform;
      }

      /* Activated animation state */

      .studio-cta-reveal.studio-cta-reveal--visible {
        opacity: 1;
        transform: translate3d(0, 0, 0);
      }
      /* Activated state */
      .arch-copy-reveal.arch-copy-reveal--visible {
        opacity: 1;
        transform: translate3d(0, 0, 0);
      }
      :root {
        --white: #fffdfb;
        --cream: #fff1e4;
        --ink: #201810;
        --ink-soft: #7a6e63;
        --orange: #ff5a1f;
        --orange-deep: #d6420c;
        --orange-soft: #ffdcc2;
        --line: #f0e2d2;
        --lcfblue: #97c6ce;
      }
      * {
        box-sizing: border-box;
      }
      html {
        scroll-behavior: smooth;
      }
      body {
        color: var(--ink);
        font-family: "Inter", sans-serif;
        -webkit-font-smoothing: antialiased;
      }
      .font-display {
        font-family: "Space Grotesk", sans-serif;
        font-weight: 700;
        letter-spacing: -0.02em;
      }
      .font-mono {
        font-family: "IBM Plex Mono", monospace;
      }

      @media (prefers-reduced-motion: reduce) {
        * {
          animation-duration: 0.001ms !important;
          animation-iteration-count: 1 !important;
          transition-duration: 0.001ms !important;
          scroll-behavior: auto !important;
        }
      }

      ::selection {
        background: var(--orange);
        color: var(--white);
      }
      :focus-visible {
        outline: 3px solid var(--orange);
        outline-offset: 3px;
      }

      .bounce {
        transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
      }
      /* =========================================
   ADDITIVE PREMIUM ANIMATION SYSTEM
   Works alongside original animations
========================================= */

      /* Base state */
      .kiln-slide-text {
        opacity: 0;
        transform: translateY(35px);
        clip-path: inset(0 0 100% 0);
      }

      /* Activated only when parent gets .in */
      .reveal.in .kiln-slide-text {
        animation: kilnTextReveal 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
      }

      /* Different directions */
      .kiln-slide-left {
        opacity: 0;
        transform: translateX(-45px);
      }

      .reveal.in .kiln-slide-left {
        animation: kilnSlideLeft 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
      }

      .kiln-slide-right {
        opacity: 0;
        transform: translateX(45px);
      }

      .reveal.in .kiln-slide-right {
        animation: kilnSlideRight 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
      }
      .reveal .line {
        display: block;
        opacity: 0;
        transform: translateY(100%);
      }

      .reveal.in .line {
        animation: lineUp 1s cubic-bezier(0.77, 0, 0.18, 1) forwards;
      }
      /* =========================================================
   ARCHITECTURAL STACKED IMAGE CARD SYSTEM
========================================================= */

      .architectural-stack-wrapper {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 520px;
      }

      .architectural-image-stack {
        position: relative;
        width: min(100%, 500px);
        height: 480px;
        perspective: 1200px;
      }

      /* BASE CARD */

      .architectural-stack-card {
        position: absolute;
        inset: 0;

        width: 100%;
        height: 100%;

        overflow: hidden;

        border-radius: 28px;

        background: #ddd;

        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.16);

        transition:
          transform 1s cubic-bezier(0.22, 1, 0.36, 1),
          opacity 1s ease,
          z-index 0s linear 0.5s;

        transform-origin: center center;
      }
      /* =========================================================
   PROCESS SECTION SLIDE-UP REVEAL
   Unique namespace: process-
========================================================= */

      .process-heading-reveal,
      .process-card-reveal {
        opacity: 0;

        transform: translate3d(0, 80px, 0);

        transition:
          opacity 900ms cubic-bezier(0.22, 1, 0.36, 1),
          transform 900ms cubic-bezier(0.22, 1, 0.36, 1);

        will-change: opacity, transform;
      }

      /* ACTIVE STATE */

      .process-heading-reveal.process-reveal-visible,
      .process-card-reveal.process-reveal-visible {
        opacity: 1;

        transform: translate3d(0, 0, 0);
      }

      /* STAGGERED CARD DELAYS */

      .process-card-reveal--one {
        transition-delay: 0.1s;
      }

      .process-card-reveal--two {
        transition-delay: 0.25s;
      }

      .process-card-reveal--three {
        transition-delay: 0.4s;
      }

      .process-card-reveal--four {
        transition-delay: 0.55s;
      }
      .architectural-stack-card img {
        width: 100%;
        height: 100%;

        object-fit: cover;

        display: block;

        transition: transform 1.2s ease;
      }

      /* TOP CARD */

      .architectural-stack-card--1 {
        z-index: 4;

        transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
      }

      /* SECOND CARD */

      .architectural-stack-card--2 {
        z-index: 3;

        transform: translate3d(18px, 18px, -40px) rotate(3deg) scale(0.96);
      }

      /* THIRD CARD */

      .architectural-stack-card--3 {
        z-index: 2;

        transform: translate3d(36px, 36px, -80px) rotate(6deg) scale(0.92);
      }

      /* FOURTH CARD */

      .architectural-stack-card--4 {
        z-index: 1;

        transform: translate3d(54px, 54px, -120px) rotate(9deg) scale(0.88);
      }

      /* HOVER EFFECT */

      .architectural-image-stack:hover .architectural-stack-card--1 img {
        transform: scale(1.06);
      }

      /* RESPONSIVE */

      @media (max-width: 768px) {
        .architectural-stack-wrapper {
          min-height: 400px;
          margin-top: 30px;
        }

        .architectural-image-stack {
          height: 380px;
        }

        .architectural-stack-card--2 {
          transform: translate3d(12px, 12px, -40px) rotate(3deg) scale(0.96);
        }

        .architectural-stack-card--3 {
          transform: translate3d(24px, 24px, -80px) rotate(6deg) scale(0.92);
        }

        .architectural-stack-card--4 {
          transform: translate3d(36px, 36px, -120px) rotate(9deg) scale(0.88);
        }
      }
      .reveal.in .line:nth-child(1) {
        animation-delay: 0.1s;
      }

      .reveal.in .line:nth-child(2) {
        animation-delay: 0.3s;
      }

      .reveal.in .line:nth-child(3) {
        animation-delay: 0.5s;
      }

      @keyframes lineUp {
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }
      /* Text reveal */
      @keyframes kilnTextReveal {
        from {
          opacity: 0;
          transform: translateY(35px);
          clip-path: inset(0 0 100% 0);
        }

        to {
          opacity: 1;
          transform: translateY(0);
          clip-path: inset(0 0 0 0);
        }
      }

      /* Left slide */
      @keyframes kilnSlideLeft {
        from {
          opacity: 0;
          transform: translateX(-45px);
        }

        to {
          opacity: 1;
          transform: translateX(0);
        }
      }

      /* Right slide */
      @keyframes kilnSlideRight {
        from {
          opacity: 0;
          transform: translateX(45px);
        }

        to {
          opacity: 1;
          transform: translateX(0);
        }
      }

      /* Delays */
      .kiln-delay-1 {
        animation-delay: 0.12s !important;
      }

      .kiln-delay-2 {
        animation-delay: 0.24s !important;
      }

      .kiln-delay-3 {
        animation-delay: 0.36s !important;
      }

      .kiln-delay-4 {
        animation-delay: 0.48s !important;
      }
      .reveal {
        opacity: 0;
        transform: translateY(20px) rotate(-0.5deg);
        transition:
          opacity 0.6s ease,
          transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
      }
      .reveal.in {
        opacity: 1;
        transform: translateY(0) rotate(0);
      }

      /* ---- Animated buttons ---- */
      .btn-anim {
        position: relative;
        overflow: hidden;
        isolation: isolate;
        transition:
          color 0.4s ease,
          box-shadow 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
          transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
      }
      .btn-anim::before {
        content: "";
        position: absolute;
        inset: 0;
        background: var(--ink);
        border-radius: inherit;
        transform: translateY(102%);
        transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        z-index: -1;
      }
      .btn-anim:hover::before {
        transform: translateY(0);
      }
      .btn-anim:hover {
        color: var(--white);
        transform: translateY(-3px) rotate(-1deg);
        box-shadow: 0 12px 0 -4px rgba(32, 24, 16, 0.15);
      }
      .btn-anim:active {
        transform: translateY(0) rotate(0);
      }
      .btn-anim .arrow {
        display: inline-block;
        transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
      }
      .btn-anim:hover .arrow {
        transform: translateX(5px) rotate(45deg);
      }

      .btn-orange::before {
        background: var(--orange);
      }
      .btn-orange:hover {
        color: var(--white);
        box-shadow: 0 12px 0 -4px rgba(255, 90, 31, 0.35);
      }

      .btn-ghost {
        transition:
          background 0.3s ease,
          transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
          border-color 0.3s ease;
      }
      .btn-ghost:hover {
        background: var(--orange-soft);
        border-color: var(--orange);
        transform: translateY(-3px) rotate(1deg);
      }

      /* ---- Rounded punchy cards ---- */
      .card {
        border-radius: 32px;
        background: var(--white);
        border: 2px solid var(--line);
        transition:
          transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
          box-shadow 0.4s ease,
          border-color 0.4s ease;
      }
      .card:hover {
        transform: translateY(-8px) rotate(-0.6deg);
        box-shadow: 0 20px 0 -6px var(--orange-soft);
        border-color: var(--orange);
      }
      .card-img-wrap {
        border-radius: 24px;
        overflow: hidden;
        position: relative;
      }
      .card-img-wrap img {
        transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
      }
      .card:hover .card-img-wrap img {
        transform: scale(1.08) rotate(1deg);
      }

      .tag-pill {
        border-radius: 999px;
      }

      .icon-circle {
        border-radius: 999px;
        transition:
          background 0.3s ease,
          transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
      }
      .card:hover .icon-circle {
        background: var(--orange);
        transform: rotate(-35deg) scale(1.1);
      }
      .card:hover .icon-circle svg {
        stroke: var(--white);
      }

      .dot {
        width: 8px;
        height: 8px;
        border-radius: 999px;
        background: var(--line);
        transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
      }
      .dot.active {
        width: 28px;
        background: var(--orange);
      }

      .nav-link {
        position: relative;
        color: var(--ink-soft);
        font-weight: 600;
      }
      .nav-link:hover {
        color: var(--ink);
      }
      .nav-link::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -6px;
        height: 3px;
        width: 0%;
        background: var(--orange);
        border-radius: 999px;
        transition: width 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
      }
      .nav-link:hover::after {
        width: 100%;
      }

      /* squiggle underline for hero word */
      .squiggle {
        position: relative;
        display: inline-block;
      }
      .squiggle svg {
        position: absolute;
        left: 0;
        bottom: -10px;
        width: 100%;
        height: 16px;
      }

      /* sticker badge */
      .sticker {
        transform: rotate(-8deg);
        animation: wiggle 5s ease-in-out infinite;
      }
      @keyframes wiggle {
        0%,
        100% {
          transform: rotate(-8deg);
        }
        50% {
          transform: rotate(-3deg);
        }
      }

      /* ---- Scroll progress bar ---- */
      #scrollBar {
        position: fixed;
        top: 0;
        left: 0;
        height: 3px;
        width: 0%;
        background: var(--lcfblue);
        z-index: 60;
        transition: width 0.08s linear;
      }

      /* ---- Hamburger: three dots -> arrow ---- */
      /* .burger {
        width: 44px;
        height: 44px;
        border-radius: 999px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 2px solid var(--ink);
        position: relative;
        transition:
          background 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
          border-color 0.3s ease,
          transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
      }
      .burger:hover {
        transform: scale(1.08) rotate(8deg);
      }
      .burger.open {
        background: var(--ink);
        border-color: var(--ink);
        transform: rotate(180deg);
      }
      .burger-dots {
        position: relative;
        width: 20px;
        height: 20px;
      }
      .burger-dots span {
        position: absolute;
        width: 5px;
        height: 5px;
        border-radius: 999px;
        background: var(--ink);
        transition:
          transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
          opacity 0.3s ease,
          background 0.3s ease,
          border-radius 0.3s ease;
      }
      .burger-dots span:nth-child(1) {
        top: 1px;
        left: 1px;
      }
      .burger-dots span:nth-child(2) {
        top: 1px;
        right: 1px;
      }
      .burger-dots span:nth-child(3) {
        bottom: 1px;
        left: 1px;
      }
      .burger-dots span:nth-child(4) {
        bottom: 1px;
        right: 1px;
      }
      .burger.open .burger-dots span {
        background: var(--white);
      }
      .burger.open .burger-dots span:nth-child(1) {
        transform: translate(7px, 7px) scale(1.8);
        border-radius: 2px;
      }
      .burger.open .burger-dots span:nth-child(2),
      .burger.open .burger-dots span:nth-child(3) {
        opacity: 0;
        transform: scale(0);
      }
      .burger.open .burger-dots span:nth-child(4) {
        transform: translate(-7px, -7px) scale(1.8);
        border-radius: 2px;
      } */


      .menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  height: 44px;
  padding: 0 14px;

  border: 2px solid var(--ink);
  border-radius: 999px;

  font-family: monospace;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;

  background: transparent;
  color: var(--ink);
  cursor: pointer;

  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.menu-toggle:active {
  transform: scale(0.95);
}

.menu-toggle .close-text {
  display: none;
}

/* When menu is open */
.menu-toggle.open {
  background: var(--ink);
  color: var(--white);
}

.menu-toggle.open .menu-text {
  display: none;
}

.menu-toggle.open .close-text {
  display: block;
}

      /* ---- Mobile menu: side drawer + overlay ---- */
      #menuOverlay {
        position: fixed;
        inset: 0;
        z-index: 39;
        background: rgba(32, 24, 16, 0.55);
        backdrop-filter: blur(2px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.4s ease;
      }
      #menuOverlay.open {
        opacity: 1;
        pointer-events: auto;
      }
      #mobileMenu {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        z-index: 40;
        width: min(84vw, 400px);
        background: var(--cream);
        border-left: 2px solid var(--ink);
        transform: translate3d(100%, 0, 0) skewX(-2deg);
        transition: transform 0.55s cubic-bezier(0.65, 0, 0.35, 1);
        pointer-events: none;
        overflow: hidden;
      }
      #mobileMenu::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: repeating-linear-gradient(
          transparent,
          transparent 38px,
          var(--line) 38px,
          var(--line) 40px
        );
        opacity: 0.6;
        pointer-events: none;
      }
      #mobileMenu.open {
        transform: translate3d(0, 0, 0) skewX(0deg);
        pointer-events: auto;
      }
      .mobile-link {
        opacity: 0;
        transform: translate3d(60px, 0, 0);
        transition:
          opacity 0.5s ease,
          transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
        transition-delay: 0s;
      }
      #mobileMenu.open .mobile-link {
        opacity: 1;
        transform: translate3d(0, 0, 0);
      }
      #mobileMenu.open .mobile-link:nth-child(1) {
        transition-delay: 0.15s;
      }
      #mobileMenu.open .mobile-link:nth-child(2) {
        transition-delay: 0.22s;
      }
      #mobileMenu.open .mobile-link:nth-child(3) {
        transition-delay: 0.29s;
      }
      #mobileMenu.open .mobile-link:nth-child(4) {
        transition-delay: 0.36s;
      }
      #mobileMenu.open .mobile-link:nth-child(5) {
        transition-delay: 0.43s;
      }
      .mobile-link-num {
        font-family: "IBM Plex Mono", monospace;
        font-size: 13px;
        color: var(--orange);
        margin-right: 14px;
      }

      /* ---- Awards / press marquee ---- */
      .press-strip {
        border-top: 2px solid var(--line);
        border-bottom: 2px solid var(--line);
        overflow: hidden;
        background-color: #97c6ce;
      }
      .marquee-track {
        display: flex;
        width: max-content;
        animation: marqueeScroll 26s linear infinite;
      }
      .press-strip:hover .marquee-track {
        animation-play-state: paused;
      }
      @keyframes marqueeScroll {
        from {
          transform: translate3d(0, 0, 0);
        }
        to {
          transform: translate3d(-50%, 0, 0);
        }
      }
      .press-item {
        border-left: 2px solid var(--line);
        white-space: nowrap;
      }

      /* ---- Capabilities ---- */
      .cap-row {
        border-top: 2px solid var(--line);
        transition:
          background 0.4s ease,
          padding-left 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
      }
      .cap-row:last-child {
        border-bottom: 2px solid var(--line);
      }
      .cap-row:hover {
        background: var(--orange-soft);
        padding-left: 18px;
      }
      .cap-row .arrow-cap {
        transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
      }
      .cap-row:hover .arrow-cap {
        transform: translateX(10px) rotate(45deg);
      }
      .cap-num {
        transition: color 0.4s ease;
      }
      .cap-row:hover .cap-num {
        color: var(--orange);
      }

      /* ---- Material library ---- */
      .material-card {
        border-radius: 28px;
        overflow: hidden;
        position: relative;
        height: 320px;
        border: 2px solid var(--line);
        transition:
          transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
          box-shadow 0.4s ease;
      }
      .material-card:hover {
        transform: translateY(-10px) rotate(-1deg);
        box-shadow: 0 24px 0 -8px var(--orange-soft);
      }
      .material-swatch {
        position: absolute;
        inset: 0;
        transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
      }
      .material-card:hover .material-swatch {
        transform: scale(1.1) rotate(2deg);
      }
      .material-swatch--concrete {
        background:
          radial-gradient(
            circle at 20% 30%,
            rgba(255, 255, 255, 0.15),
            transparent 40%
          ),
          radial-gradient(
            circle at 70% 70%,
            rgba(0, 0, 0, 0.08),
            transparent 45%
          ),
          linear-gradient(135deg, #b9b2a8, #948c80);
      }
      .material-swatch--timber {
        background:
          repeating-linear-gradient(
            100deg,
            #c98a4f 0 6px,
            #b6763c 6px 12px,
            #c2814a 12px 20px
          ),
          linear-gradient(160deg, #a5652f, #c98a4f);
        background-blend-mode: multiply;
      }
      .material-swatch--clay {
        background:
          radial-gradient(
            circle at 30% 20%,
            rgba(255, 255, 255, 0.18),
            transparent 42%
          ),
          linear-gradient(150deg, var(--orange-deep), #7a3312);
      }
      .material-caption {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 22px;
        background: linear-gradient(
          to top,
          rgba(32, 24, 16, 0.85),
          transparent
        );
        color: var(--white);
      }

      /* ---- People ---- */
      .person-card {
        transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
      }
      .person-card:hover {
        transform: translateY(-6px);
      }
      .person-photo {
        border-radius: 20px;
        overflow: hidden;
        aspect-ratio: 4/5;
      }
      .person-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: grayscale(0.5);
        transition:
          filter 0.5s ease,
          transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
      }
      .person-card:hover .person-photo img {
        filter: grayscale(0);
        transform: scale(1.05);
      }

      /* ---- Testimonials ---- */
      .quote-card {
        border-radius: 28px;
        transition:
          transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
          box-shadow 0.4s ease;
      }
      .quote-card:hover {
        transform: translateY(-6px) rotate(0.6deg);
        box-shadow: 0 18px 0 -6px var(--orange-soft);
      }
      .quote-mark {
        font-family: "Space Grotesk", sans-serif;
        font-size: 64px;
        line-height: 0.6;
        color: var(--orange);
      }

      /* ---- Counter pulse on activation ---- */
      .counter-pop {
        animation: counterPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
      }
      @keyframes counterPop {
        0% {
          transform: scale(0.7);
        }
        60% {
          transform: scale(1.12);
        }
        100% {
          transform: scale(1);
        }
      }

      /* ---- Back to top ---- */
      #toTop {
        position: fixed;
        right: 22px;
        bottom: 22px;
        z-index: 45;
        width: 52px;
        height: 52px;
        border-radius: 999px;
        background: var(--ink);
        color: var(--white);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transform: translateY(14px) scale(0.9);
        pointer-events: none;
        transition:
          opacity 0.3s ease,
          transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
          background 0.3s ease;
        box-shadow: 0 12px 24px rgba(32, 24, 16, 0.25);
      }
      #toTop.show {
        opacity: 1;
        transform: translateY(0) scale(1);
        pointer-events: auto;
      }
      #toTop:hover {
        background: var(--orange);
      }
    
.social-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  height: 48px;
  padding: 0 22px;
  border-radius: 10px;
  color: #ffffff !important;
  font-size: 13px;
  font-weight: bold;
  text-decoration: none;
  box-sizing: border-box;
}

.facebook-button {
  background: #1877f2;
}

.whatsapp-button {
  background: #25d366;
}

.social-button:hover {
  opacity: 0.85;
}