   :root {
        --gold: #c8a020;
        --gold-hi: #e8c444;
        --gold-lo: #8a6010;
        --grd: linear-gradient(135deg, #f0d070 0%, #c8a020 48%, #7a5808 100%);

        --font-display: "Cormorant Garamond", "Times New Roman", Georgia, serif;
        --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

        /* Panel overlays — reduced opacity so marble stays visible when scrolling */
        --panel-hero: rgba(4, 7, 13, 0.52);
        --panel-section: rgba(6, 10, 16, 0.74);
        --panel-card: rgba(5, 8, 14, 0.82);
        --panel-nav: rgba(4, 6, 12, 0.96);
        --panel-card-logo-bg:rgba(5, 8, 14, 1);

        /* Text */
        --ink: #f4ecd8;
        --ink2: #ddd0b8;
        --body: #a89878;
        --muted: #706050;
        --sub-text:#f4ecd8;
        --hero-heading:#FFFFFF;
        

        /* Borders */
        --brd: rgba(200, 160, 32, 0.24);
        --brd2: rgba(200, 160, 32, 0.13);
        --brd3: rgba(200, 160, 32, 0.06);

        /* Model Close Btn Background */

    --model-x-bg:rgba(5, 8, 14, 0.8);

/* Model overlay Background */

    --model-ov-bg:rgba(2, 4, 8, 0.9);

        /* Marble canvas background */
        --canvas-bg: #04070c;

        /* Button text — dark on bright gold in dark mode */
        --btn-txt: #07060a;
      }

      [data-theme="light"] {
        --panel-hero: rgba(245, 238, 220, 0.55);
        --panel-section: rgba(240, 232, 212, 0.75);
        --panel-card: rgba(235, 226, 204, 0.76);
        --panel-nav: rgba(242, 235, 216, 0.96);
   --panel-card-logo-bg:rgba(235, 226, 204, 0.86);


        --ink: #18100a;
        --ink2: #2c1e14;
        --body: #5c4a32;
        --muted: #7a6040;
        --sub-text:black;
        --hero-heading:#2c1e14;
    
    --model-x-bg:#e9e9ed;


/* Model overlay Background */

    --model-ov-bg:rgba(184, 179, 162, 0.5);

        /* Dark amber for light mode — readable on parchment */
        --gold: #7a5008;
        --gold-hi: #9a6a10;
        --gold-lo: #5a3806;
        --grd: linear-gradient(135deg, #9a6a10 0%, #7a5008 48%, #5a3806 100%);

        --brd: rgba(100, 70, 10, 0.3);
        --brd2: rgba(100, 70, 10, 0.18);
        --brd3: rgba(100, 70, 10, 0.08);

        --canvas-bg: #eae2cc;

        /* Light mode: gold is dark amber, so button text must be light */
        --btn-txt: #f5edd8;
      }

      /* ═══════════════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════════════ */
      *,
      *::before,
      *::after {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }
      html {
        scroll-behavior: smooth;
        overflow-x: hidden;
      }
      body {
        background: var(--canvas-bg);
        color: var(--ink);
        font-family: var(--font-body);
        font-weight: 400;
        font-size: 16px;
        line-height: 1.7;
        overflow-x: hidden;
        transition: background 0.4s;
      }
      a {
        color: inherit;
        text-decoration: none;
      }

      /* Canvas — fixed behind everything */
      #c {
        position: fixed;
        inset: 0;
        width: 100%;
        height: 100%;
        display: block;
        z-index: 0;
        pointer-events: none;
      }

      /* Grain */
      .grain {
        position: fixed;
        inset: 0;
        z-index: 1;
        pointer-events: none;
        opacity: 0.12;
        mix-blend-mode: overlay;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='.05'/%3E%3C/svg%3E");
      }

      /* All page content above canvas */
      .pg {
        position: relative;
        z-index: 2;
      }

      /* ── MAX-WIDTH WRAPPER ── */
      .wrap {
        max-width: 1240px;
        margin: 0 auto;
        padding: 0 56px;
      }
      
     .section {
        background: var(--panel-section);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid var(--brd2);
        padding: 88px 0;
        transition: background 0.4s;
      }
      .section-sm {
        padding: 0;
      }

      /* Two-col header */
      .sec-hdr {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 64px;
        align-items: end;
        margin-bottom: 60px;
      }
      
      
        /* What we build svg. we are not showing the picture */
      
      #svc-picture {
          display: none;
      }
      
       /* ═══════════════════════════════════════════════════
   TYPOGRAPHY — readable sizes, proper hierarchy
═══════════════════════════════════════════════════ */
      .eyebrow {
        font-family: "Cinzel", serif;
        font-size: 11px;
        letter-spacing: 0.48em;
        color: var(--gold);
        display: inline-flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 12px;
        text-transform: uppercase;
      }
      .eyebrow::before {
        content: "";
        width: 18px;
        height: 1px;
        background: var(--gold);
      }

      h2.sec-title {
        font-family: "Playfair Display", serif;
        font-size: clamp(2rem, 3.2vw, 3.4rem);
        font-weight: 700;
        line-height: 1.08;
        color: var(--ink);
        transition: color 0.4s;
      }
      h2.sec-title em {
        font-style: italic;
        font-weight: 500;
        background: var(--grd);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        padding-right: 4px;
      }

      .gold-rule {
        width: 28px;
        height: 1px;
        background: var(--gold);
        margin: 16px 0 22px;
      }

      /* Body text — proper size, proper contrast */
      .body-text {
        font-size: 16px;
        line-height: 1.8;
        color: var(--body);
        transition: color 0.4s;
      }

      /* Scroll reveal */
      .rv {
        opacity: 0;
        transform: translateY(22px);
        transition:
          opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
          transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
      }
      .rv.in {
        opacity: 1;
        transform: none;
      }
      .d1 {
        transition-delay: 0.08s;
      }
      .d2 {
        transition-delay: 0.17s;
      }
      .d3 {
        transition-delay: 0.28s;
      }
      .d4 {
        transition-delay: 0.4s;
      }
      .d5 {
        transition-delay: 0.54s;
      }
      .d6 {
        transition-delay: 0.7s;
      }
      
      
       /* ═══════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════ */
      .btn-gold {
        font-family: "Cinzel", serif;
        font-size: 11px;
        letter-spacing: 0.22em;
        color: var(--btn-txt);
        background: var(--gold);
        padding: 14px 36px;
        display: inline-block;
        position: relative;
        overflow: hidden;
        box-shadow: 0 6px 32px rgba(200, 160, 32, 0.32);
        transition: box-shadow 0.3s;
        white-space: nowrap;
      }
      .btn-gold::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
        transform: translateX(-120%);
        transition: transform 0.52s;
      }
      .btn-gold:hover::after {
        transform: translateX(120%);
      }
      .btn-gold:hover {
        box-shadow: 0 10px 48px rgba(200, 160, 32, 0.5);
      }

      .btn-ghost {
        font-size: 15px;
        color: var(--ink2);
        border-bottom: 1px solid var(--brd);
        padding-bottom: 2px;
        display: inline-block;
        transition:
          color 0.3s,
          border-color 0.3s;
      }
      .btn-ghost:hover {
        color: var(--gold-hi);
        border-color: var(--gold);
      }



      
        /* ═══════════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════════ */
      #nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 900;
        padding: 24px 0;
        transition:
          background 0.4s,
          padding 0.32s,
          border-color 0.4s;
        border-bottom: 1px solid transparent;
      }
      #nav .wrap {
        display: flex;
        align-items: center;
        justify-content: space-between;
      }

      #nav.stuck {
        background: var(--panel-nav);
        backdrop-filter: blur(24px) saturate(1.6);
        padding: 14px 0;
        border-bottom-color: var(--brd2);
      }

      .n-logo {
        display: flex;
        align-items: center;
        gap: 11px;
      }
      .n-mark {
        font-family: "Cinzel", serif;
        font-size: 15px;
        letter-spacing: 0.44em;
        color: var(--ink);
        transition: color 0.4s;
      }

      .n-links {
        display: flex;
        gap: 32px;
        list-style: none;
      }
      .n-links a {
        font-size: 14px;
        letter-spacing: 0.04em;
        color: var(--ink2);
        position: relative;
        padding-bottom: 2px;
        transition: color 0.28s;
      }
      .n-links a::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: var(--gold);
        transform: scaleX(0);
        transform-origin: center;
        transition: transform 0.3s;
      }
      .active {
           color: var(--gold);
           
      }
      .n-links a:hover,
      .n-links a[aria-current] {
        color: var(--gold);
      }
      .n-links a:hover::after,
      .n-links a[aria-current]::after {
        transform: scaleX(1);
      }

      .n-right {
        display: flex;
        align-items: center;
        gap: 10px;
      }

      /* Theme toggle */
      .thm-btn {
        width: 38px;
        height: 38px;
        border: 1px solid var(--brd2);
        background: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        color: var(--body);
        transition: all 0.3s;
        flex-shrink: 0;
      }
      .thm-btn:hover {
        border-color: var(--brd);
        color: var(--gold);
      }
      .thm-sun,
      .thm-moon {
        position: absolute;
        transition:
          opacity 0.3s,
          transform 0.3s;
      }
      [data-theme="dark"] .thm-sun {
        opacity: 1;
        transform: rotate(0deg);
      }
      [data-theme="dark"] .thm-moon {
        opacity: 0;
        transform: rotate(60deg);
      }
      [data-theme="light"] .thm-sun {
        opacity: 0;
        transform: rotate(-60deg);
      }
      [data-theme="light"] .thm-moon {
        opacity: 1;
        transform: rotate(0deg);
      }

      .n-cta {
        font-family: "Cinzel", serif;
        font-size: 11px;
        letter-spacing: 0.2em;
        color: var(--btn-txt);
        background: var(--gold);
        padding: 10px 20px;
        position: relative;
        overflow: hidden;
        box-shadow: 0 4px 16px rgba(200, 160, 32, 0.28);
        transition: box-shadow 0.3s;
      }
      .n-cta::after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(255, 255, 255, 0.13);
        transform: translateX(-100%);
        transition: transform 0.36s;
      }
      .n-cta:hover::after {
        transform: translateX(0);
      }
      .n-cta:hover {
        box-shadow: 0 6px 26px rgba(200, 160, 32, 0.46);
      }

      /* Hamburger */
      .hbg {
        display: none;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        padding: 6px;
        cursor: pointer;
      }
      .hbg span {
        display: block;
        width: 22px;
        height: 1.5px;
        background: var(--ink);
        border-radius: 2px;
        transition:
          transform 0.3s,
          opacity 0.22s;
      }
      .hbg.on span:first-child {
        transform: translateY(6.5px) rotate(45deg);
      }
      .hbg.on span:nth-child(2) {
        opacity: 0;
      }
      .hbg.on span:last-child {
        transform: translateY(-6.5px) rotate(-45deg);
      }

      /* Mobile drawer */
      .m-ov {
        position: fixed;
        inset: 0;
        z-index: 950;
        background: var(--model-ov-bg);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.4s;
      }
      .m-ov.on {
        opacity: 1;
        pointer-events: all;
      }
      .m-drw {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(300px, 100vw);
        z-index: 960;
        background: var(--panel-section);
        backdrop-filter: blur(20px);
        border-left: 1px solid var(--brd2);
        padding: 64px 32px 40px;
        display: flex;
        flex-direction: column;
        transform: translateX(100%);
        visibility: hidden;
        transition:
          transform 0.5s cubic-bezier(0.76, 0, 0.24, 1),
          visibility 0.5s;
      }
      .m-drw.on {
        transform: translateX(0);
        visibility: visible;
      }
      .m-drw ul {
        list-style: none;
        flex: 1;
        margin-bottom: 20px;
      }
      .m-drw li {
        border-bottom: 1px solid var(--brd2);
      }
      .m-drw a {
        display: block;
        padding: 13px 0;
        font-family: "Playfair Display", serif;
        font-size: 1.5rem;
        color: var(--ink);
        transition:
          color 0.28s,
          padding-left 0.28s;
      }
      .m-drw a:hover {
        color: var(--gold);
        padding-left: 6px;
      }
      .m-cl {
        position: absolute;
        top: 18px;
        right: 18px;
        width: 32px;
        height: 32px;
        border: 1px solid var(--brd2);
        background: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--muted);
        font-size: 16px;
        transition: all 0.3s;
      }
      .m-cl:hover {
        background: var(--gold);
        color: var(--btn-txt);
        border-color: var(--gold);
      }
      .m-cta-lnk {
        display: block;
        text-align: center;
        font-family: "Cinzel", serif;
        font-size: 11px;
        letter-spacing: 0.22em;
        color: var(--btn-txt);
        background: var(--gold);
        padding: 13px;
      }
      
      
    /* ═══════════════════════════════════════════════════
            End oF NAV CLASSES
═══════════════════════════════════════════════════ */
      
      
           /* ═══════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
      footer {
        background: var(--panel-section);
        border-top: 1px solid var(--brd2);
        padding: 26px 0;
        transition: background 0.4s;
      }
      footer .wrap {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 12px;
      }
      .f-logo {
        display: flex;
        align-items: center;
        gap: 10px;
      }
      .f-wm {
        font-family: "Cinzel", serif;
        font-size: 13px;
        letter-spacing: 0.32em;
        color: var(--gold);
      }
      .f-copy {
        font-size: 13px;
        color: var(--sub-text);
        transition: color 0.4s;
      }
      .f-links {
        display: flex;
        gap: 18px;
        list-style: none;
        flex-wrap: wrap;
      }
      .f-links a {
        font-size: 13px;
        color: var(--ink2);
        transition: color 0.28s;
      }
      .f-links a:hover {
        color: var(--gold);
      }
      
      
                 /* ═══════════════════════════════════════════════════
   END of FOOTER
═══════════════════════════════════════════════════ */
      
             /* ═══════════════════════════════════════════════════
   HERO HOME
═══════════════════════════════════════════════════ */
      
        #hero {
        min-height: 96vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding-bottom: 0;
        position: relative;
        border-bottom: 1px solid var(--brd2);
      }
      #hero::before {
        content: "";
        position: absolute;
        inset: -60px -20px -60px -80px;

         pointer-events: none;
         z-index: -1;
      }
      #hero::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 160px;
        background: linear-gradient(to top, var(--panel-section), transparent);
        pointer-events: none;
        z-index: 0;
      }


     #about-hero {
        min-height: 96vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding-bottom: 0;
        position: relative;
        border-bottom: 1px solid var(--brd2);
      }
      #about-hero::before {
        content: "";
        position: absolute;
        inset: -60px -20px -60px -80px;

         pointer-events: none;
         z-index: -1;
      }
      #about-hero::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 160px;
        background: linear-gradient(to top, var(--panel-section), transparent);
        pointer-events: none;
        z-index: 0;
      }

      .h-inner {
        position: relative;
        z-index: 1;
      }
      .h-eye {
        font-family: "Cinzel", serif;
        font-size: 11px;
        letter-spacing: 0.52em;
        color: var(--gold);
        display: inline-flex;
        align-items: center;
        gap: 14px;
        margin-bottom: 32px;
        opacity: 0;
        animation: fuA 0.7s 0.1s forwards;
      }
      .h-eye::before {
        content: "";
        width: 22px;
        height: 1px;
        background: var(--gold);
      }
      .h-title {
        font-family: var(--font-display);
        font-weight: 700;
        font-size: clamp(5rem, 11vw, 13rem);
        line-height: 0.86;
        color: var(--ink);
        transition: color 0.4s;
      }
      .h-t1 {
        display: block;
        color: var(--ink);
font-weight: 700;
        opacity: 0;
        animation: fuD 0.95s 0.1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
      }
      .h-t2 {
        display: block;
        font-style: italic;
        font-weight: 500;
        background: var(--grd);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        filter: drop-shadow(0 0 14px rgba(0, 0, 0, 0.82));
         opacity: 0;
         animation: fuU 0.95s 0.28s cubic-bezier(0.16, 1, 0.3, 1) forwards;
      }

      .h-rule {
        width: 32px;
        height: 1px;
        background: var(--gold);
        margin: 44px 0;
        opacity: 0;
        animation: fuA 0.6s 0.85s forwards;
      }

      .h-foot {
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 80px;
        align-items: end;
        opacity: 0;
        animation: fuA 0.8s 1s forwards;
        padding-bottom: 40px;
      }
      .h-desc {
         font-size: 16px;
        font-weight: 400;          
        line-height: 1.78;
        color: var(--hero-heading);            
        max-width: 480px;

        transition: color 0.4s;
      }
     
      
      .h-acts {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 12px;
      }
      .h-badge {
        display: inline-flex;
        align-items: center;
        gap: 9px;
        font-family: "Cinzel", serif;
        font-size: 9px;
        letter-spacing: 0.18em;
        color: var(--gold);
      }
      .badge-dot {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: var(--gold);
        animation: pulse 2s infinite;
      }
      
      

      
      
                   /* ═══════════════════════════════════════════════════
  END OF HERO HOME
═══════════════════════════════════════════════════ */
      
      
               /* ═══════════════════════════════════════════════════
   Stats home
═══════════════════════════════════════════════════ */
      
      
         .stats-band {
        background: var(--panel-section);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid var(--brd2);
        transition: background 0.4s;
      }
      .stats-row {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
      }
      .st-cell {
        padding: 26px 0;
        border-right: 1px solid var(--brd2);
        padding-left: 32px;
        position: relative;
        transition: background 0.3s;
      }
      .st-cell:last-child {
        border-right: none;
      }
      .st-cell::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: var(--gold);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
      }
      .st-cell:hover::before {
        transform: scaleX(1);
      }
      .st-num {
        font-family: "Playfair Display", serif;
        font-size: 2.2rem;
        font-weight: 700;
        background: var(--grd);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        line-height: 1;
        margin-bottom: 4px;
        display: block;
      }
      .st-lbl {
        font-family: "Cinzel", serif;
        font-size: 9px;
        letter-spacing: 0.22em;
        color: var(--muted);
        transition: color 0.4s;
      }
      .st-sub {
        font-size: 13px;
        font-weight: 500;
        color: var(--ink2);
        margin-top: 3px;
        transition: color 0.4s;
      }
      
      
               /* ═══════════════════════════════════════════════════
   END of stats
═══════════════════════════════════════════════════ */
      
      
                     /* ═══════════════════════════════════════════════════
   SERVICE
═══════════════════════════════════════════════════ */
      
      .service-cta {
          
          display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
          
      }
      
      .svc-r1,
      .svc-r2 {
        display: grid;
        gap: 2px;
      }
      .svc-r1 {
        grid-template-columns: repeat(4, 1fr);
        margin-bottom: 2px;
      }
      .svc-r2 {
        grid-template-columns: repeat(3, 1fr);
      }

      .sc {
        background: var(--panel-card);
        border: 1px solid var(--brd2);
        padding: 32px 26px 28px;
        position: relative;
        overflow: hidden;
        cursor: pointer;
        display: flex;
        flex-direction: column;
        transition:
          background 0.32s,
          border-color 0.3s;
        text-decoration: none;
      }
      .sc:hover {
        border-color: var(--brd);
      }
      .sc::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--gold), transparent);
        transform: scaleX(0);
        transition: transform 0.44s cubic-bezier(0.16, 1, 0.3, 1);
      }
      .sc:hover::after {
        transform: scaleX(1);
      }
      .sc-n {
        font-family: "Playfair Display", serif;
        font-style: italic;
        font-size: 1.2rem;
        color: var(--ink2);
        -webkit-text-stroke: 1px var(--brd2);
        margin-bottom: 16px;
        user-select: none;
        transition: -webkit-text-stroke 0.3s;
      }
      .sc:hover .sc-n {
        -webkit-text-stroke: 1px rgba(200, 160, 32, 0.35);
      }
      .sc-h {
        font-family: "Playfair Display", serif;
        font-size: 1.05rem;
        font-weight: 600;
        color: var(--ink);
        margin-bottom: 10px;
        line-height: 1.26;
        transition: color 0.3s;
      }
      .sc:hover .sc-h {
        color: var(--gold);
      }
      .sc-p {
        font-size: 14px;
        line-height: 1.7;
        color: var(--body);
        flex: 1;
        margin-bottom: 16px;
        transition: color 0.4s;
      }
      .sc-price {
        font-family: "Cinzel", serif;
        font-size: 10px;
        letter-spacing: 0.17em;
        color: var(--gold);
        display: flex;
        align-items: center;
        gap: 7px;
        margin-top: auto;
      }
      .sc-price::before {
        content: "";
        width: 10px;
        height: 1px;
        background: var(--gold);
      }

      .svc-foot {
        margin-top: 44px;
        padding-top: 32px;
        border-top: 1px solid var(--brd2);
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 16px;
      }
      .svc-foot-t {
        font-size: 15px;
        color: var(--body);
        transition: color 0.4s;
      }
      .svc-foot-t strong {
        color: var(--ink);
        font-weight: 500;
      }

      .lnk {
        font-family: "Cinzel", serif;
        font-size: 11px;
        letter-spacing: 0.22em;
        color: var(--gold);
        display: inline-flex;
        align-items: center;
        gap: 9px;
        border-bottom: 1px solid var(--brd2);
        padding-bottom: 3px;
        transition:
          gap 0.3s,
          border-color 0.3s;
      }
      .lnk:hover {
        gap: 14px;
        border-color: var(--gold);
      }
      
       .svc-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2px;
        background: var(--brd3);
        margin-top: 52px;
      }
      .svc-grid-b {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2px;
        background: var(--brd3);
        margin-top: 2px;
      }
      .sc {
        background: var(--panel-card);
        padding: 28px 24px;
        text-decoration: none;
        display: block;
        position: relative;
        overflow: hidden;
        transition: background 0.32s;
      }
      .sc::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--gold), transparent);
        transform: scaleX(0);
        transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
      }
      .sc:hover::before {
        transform: scaleX(1);
      }
      .sc:hover {
        background: rgba(200, 160, 32, 0.07);
      }
      .sc-n {
        font-family: "Playfair Display", serif;
        font-style: italic;
        font-size: 2.4rem;
        color:  var(--ink2);
        -webkit-text-stroke: 1px var(--brd2);
        user-select: none;
        line-height: 1;
        margin-bottom: 14px;
        transition: -webkit-text-stroke 0.3s;
      }
      .sc:hover .sc-n {
        -webkit-text-stroke: 1px rgba(200, 160, 32, 0.45);
      }
      .sc-h {
        font-family: "Playfair Display", serif;
        font-size: 1rem;
        font-weight: 700;
        color: var(--ink);
        margin-bottom: 8px;
        transition: color 0.3s;
      }
      .sc:hover .sc-h {
        color: var(--gold);
      }
      .sc-p {
        font-size: 13px;
        font-weight: 500;
        line-height: 1.62;
        color: var(--ink2);
        transition: color 0.4s;
      }
      .sc-price {
        font-family: "Cinzel", serif;
        font-size: 9px;
        letter-spacing: 0.14em;
        color: var(--gold);
        margin-top: 16px;
        display: block;
      }
      
      
                           /* ═══════════════════════════════════════════════════
   END OF SERVICE
═══════════════════════════════════════════════════ */
      
                                 /* ═══════════════════════════════════════════════════
   WORK
═══════════════════════════════════════════════════ */
      
        .work-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2px;
        background: var(--brd3);
      }
      .wc {
        background: var(--panel-card);
        display: flex;
        flex-direction: column;
        overflow: hidden;
        cursor: pointer;
        transition: background 0.32s;
      }
      .wc:hover {
        background: var(--panel-section);
      }
      .wc-vis {
        height: 180px;
        position: relative;
        overflow: hidden;
        flex-shrink: 0;
      }
      .wc-vis-bg {
        position: absolute;
        inset: 0;
        transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        background: var(--panel-card-logo-bg) !important;
      }
      .wc:hover .wc-vis-bg {
        transform: scale(1.06);
      }
      .wc-badge {
        position: absolute;
        top: 12px;
        left: 14px;
        font-family: "Cinzel", serif;
        font-size: 9px;
        letter-spacing: 0.16em;
        color: rgba(255, 255, 255, 0.8);
        background: rgba(0, 0, 0, 0.4);
        padding: 4px 9px;
        backdrop-filter: blur(6px);
      }
      .wc-mono {
        position: absolute;
        bottom: 12px;
        right: 14px;
        font-family: "Playfair Display", serif;
        font-style: italic;
        font-size: 1.6rem;
        color: rgba(255, 255, 255, 0.14);
        font-weight: 700;
        user-select: none;
      }
      .wc-body {
        padding: 20px 22px 24px;
        flex: 1;
        display: flex;
        flex-direction: column;
      }
      .wc-name {
        font-family: "Playfair Display", serif;
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--ink);
        margin-bottom: 4px;
        line-height: 1.22;
        transition: color 0.3s;
      }
      .wc:hover .wc-name {
        color: var(--gold);
      }
      .wc-type {
        font-size: 13px;
        color: var(--body);
        margin-bottom: 14px;
        transition: color 0.4s;
      }
      .wc-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 4px;
        margin-top: auto;
      }
      .wc-tag {
        font-family: "Cinzel", serif;
        font-size: 9px;
        letter-spacing: 0.08em;
        color: var(--gold);
        border: 1px solid var(--brd2);
        padding: 4px 8px;
        transition: background 0.3s;
      }
      .wc:hover .wc-tag {
        background: rgba(200, 160, 32, 0.1);
      }
      .wc-res {
        margin-top: 10px;
        padding-top: 9px;
        border-top: 1px solid var(--brd2);
        font-family: "Cinzel", serif;
        font-size: 9px;
        letter-spacing: 0.06em;
        color: var(--muted);
        transition: color 0.3s;
      }
      .wc:hover .wc-res {
        color: var(--gold);
      }

      
      
 /* Modal */
      .modal-ov {
        position: fixed;
        inset: 0;
        z-index: 1100;
        background: var(--model-ov-bg);
        backdrop-filter: blur(24px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.36s;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 24px;
      }
      .modal-ov.open {
        opacity: 1;
        pointer-events: all;
      }
      .modal {
        background: var(--panel-card);
        border: 1px solid var(--brd2);
        max-width: 800px;
        width: 100%;
        max-height: 88vh;
        overflow-y: auto;
        position: relative;
        transform: translateY(28px) scale(0.97);
        transition:
          transform 0.42s cubic-bezier(0.16, 1, 0.3, 1),
          background 0.4s;
      }
      .modal-ov.open .modal {
        transform: none;
      }
      .modal-x {
        position: absolute;
        top: 14px;
        right: 14px;
        width: 32px;
        height: 32px;
        background: var(--model-x-bg);
        border: 1px solid var(--brd2);
        color: var(--ink2);
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 2;
        font-size: 13px;
        transition: all 0.3s;
      }
      .modal-x:hover {
        background: var(--gold);
        color: var(--btn-txt);
        border-color: var(--gold);
      }
      .modal-vis {
        height: 200px;
        position: relative;
        overflow: hidden;
        width: 100%;
      }
      .modal-vis-bg {
        position: absolute;
        inset: 0;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  background: var(--panel-card-logo-bg) !important;
      }
      .modal-vis-ov {
        position: absolute;
        inset: 0;
        background: linear-gradient(to bottom, transparent 40%, var(--panel-card));
      }
      .modal-vis-tag {
        position: absolute;
        top: 14px;
        left: 14px;
        font-family: "Cinzel", serif;
        font-size: 9px;
        letter-spacing: 0.16em;
        color: var(--ink2);
        background: rgba(4, 7, 13, 0.72);
        backdrop-filter: blur(6px);
        padding: 5px 10px;
        border: 1px solid rgba(200, 160, 32, 0.18);
      }
      [data-theme="light"] .modal-vis-tag {
        background: rgba(240, 232, 212, 0.8);
        color: var(--ink);
      }
      .modal-vis-mono {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: "Playfair Display", serif;
        font-style: italic;
        font-size: 5rem;
        font-weight: 700;
        color: transparent;
        -webkit-text-stroke: 1px rgba(200, 160, 32, 0.28);
        user-select: none;
      }
      .modal-body {
        padding: 32px 36px;
      }
      .modal-meta {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 10px;
      }
      .modal-tag {
        font-family: "Cinzel", serif;
        font-size: 12px;
        letter-spacing: 0.18em;
        color: var(--gold);
      }
      .modal-yr {
        font-family: "Cinzel", serif;
        font-size: 9px;
        letter-spacing: 0.18em;
        color: var(--muted);
      }
      .modal-yr::before {
        content: "·";
        margin-right: 12px;
      }
      .modal-title {
        font-family: "Playfair Display", serif;
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--ink);
        margin-bottom: 4px;
        transition: color 0.4s;
      }
      .modal-sub {
        font-size: 14px;
        font-weight: 500;
        color: var(--muted);
        margin-bottom: 18px;
        transition: color 0.4s;
      }
      .modal-rule {
        width: 20px;
        height: 1px;
        background: var(--gold);
        margin-bottom: 22px;
      }
      .modal-cols {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 28px;
        margin-bottom: 22px;
      }
      .modal-lbl {
        font-family: "Cinzel", serif;
        font-size: 12px;
        letter-spacing: 0.22em;
        color: var(--gold);
        margin-bottom: 9px;
        display: flex;
        align-items: center;
        gap: 6px;
      }
      .modal-lbl::before {
        content: "";
        width: 8px;
        height: 1px;
        background: var(--gold);
      }
      .modal-desc {
        font-size: 14px;
        font-weight: 500;
        line-height: 1.74;
        color: var(--ink2);
        transition: color 0.4s;
      }
      .modal-outs {
        list-style: none;
      }
      .modal-out {
        font-size: 13px;
        font-weight: 500;
        color: var(--ink2);
        padding: 5px 0;
        border-bottom: 1px solid var(--brd2);
        display: flex;
        gap: 8px;
        transition: color 0.4s;
      }
      .modal-out:last-child {
        border-bottom: none;
      }
      .modal-out::before {
        content: "→";
        color: var(--gold);
        font-size: 10px;
        flex-shrink: 0;
      }
      .modal-stack {
        display: flex;
        flex-wrap: wrap;
        gap: 5px;
        margin-bottom: 24px;
      }
      .modal-stag {
        font-family: "Cinzel", serif;
        font-size: 12px;
        letter-spacing: 0.1em;
        color: var(--gold);
        border: 1px solid var(--brd2);
        padding: 4px 9px;
      }
      .modal-acts {
        display: flex;
        align-items: center;
        gap: 10px;
        flex-wrap: wrap;
        padding-top: 18px;
        border-top: 1px solid var(--brd2);
      }
      .modal-btn-p {
        font-family: "Cinzel", serif;
        font-size: 10px;
        letter-spacing: 0.16em;
        color: var(--btn-txt);
        background: var(--gold);
        padding: 12px 24px;
        border: none;
        cursor: pointer;
        box-shadow: 0 4px 20px rgba(200, 160, 32, 0.28);
        transition: box-shadow 0.3s;
      }
      .modal-btn-p:hover {
        box-shadow: 0 8px 36px rgba(200, 160, 32, 0.46);
      }
      .modal-btn-s {
        font-family: "Cinzel", serif;
        font-size: 10px;
        letter-spacing: 0.14em;
        color: var(--gold);
        border: 1px solid var(--brd);
        padding: 11px 20px;
        background: none;
        cursor: pointer;
        transition: background 0.3s;
      }
      .modal-btn-s:hover {
        background: rgba(200, 160, 32, 0.08);
      }
      .modal-dismiss {
        margin-left: auto;
        font-size: 12px;
        font-weight: 500;
        color: var(--muted);
        background: none;
        border: none;
        cursor: pointer;
        transition: color 0.3s;
      }
      .modal-dismiss:hover {
        color: var(--ink);
      }

      
.wc-logo{
width: 100%;
  object-fit: cover;
  height: 100%;
}
      
      .m-logo {
          width: 100%;
          object-fit: contain;
          height: 100%;
      }
      
      .home-work {
          display: flex; 
          align-items: flex-end; 
          justify-content: space-between;
          margin-bottom: 52px
      }
      
      
                                 /* ═══════════════════════════════════════════════════
   END OF WORK
═══════════════════════════════════════════════════ */
      
      
                                       /* ═══════════════════════════════════════════════════
   PROCESS
═══════════════════════════════════════════════════ */
      
      .proc-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2px;
        background: var(--brd3);
        margin-top: 52px;
      }
      .proc-cell {
        background: var(--panel-card);
        padding: 32px 28px;
        position: relative;
        transition: background 0.32s;
        cursor: default;
      }
      .proc-cell::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: var(--gold);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.44s cubic-bezier(0.16, 1, 0.3, 1);
      }
      .proc-cell:hover::before {
        transform: scaleX(1);
      }
      .proc-cell:hover {
        background: rgba(200, 160, 32, 0.05);
      }
      .proc-n {
        font-family: "Playfair Display", serif;
        font-style: italic;
        font-size: 2.6rem;
        color: var(--ink2);
        -webkit-text-stroke: 1px var(--brd2);
        line-height: 1;
        margin-bottom: 14px;
        user-select: none;
        transition: -webkit-text-stroke 0.3s;
      }
      .proc-cell:hover .proc-n {
        -webkit-text-stroke: 1px rgba(200, 160, 32, 0.38);
      }
      .proc-h {
        font-family: "Playfair Display", serif;
        font-size: 1rem;
        font-weight: 700;
        color: var(--ink);
        margin-bottom: 6px;
        transition: color 0.3s;
      }
      .proc-cell:hover .proc-h {
        color: var(--gold);
      }
      .proc-p {
        font-size: 13px;
        font-weight: 500;
        line-height: 1.65;
        color: var(--ink2);
        transition: color 0.4s;
      }
      
      
                                       /* ═══════════════════════════════════════════════════
   END OF PROCESS
═══════════════════════════════════════════════════ */
      
                                                   /* ═══════════════════════════════════════════════════
   TESTOMONIALS
═══════════════════════════════════════════════════ */
      
        /* ── TESTIMONIAL ── */
      .testi-band {
        background: var(--panel-section);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid var(--brd2);
        padding: 72px 0 56px;
        transition: background 0.4s;
        overflow: hidden;
      }

      /* Track clips to one slide at a time */
      .testi-track {
        position: relative;
        overflow: hidden;
      }

      /* Each slide — hidden by default */
      .testi-slide {
        display: none;
        animation: testiIn 0.52s cubic-bezier(0.16, 1, 0.3, 1) both;
      }
      .testi-slide.active {
        display: block;
      }
      
      
      
       .testi-inner {
        display: grid;
        grid-template-columns: 1fr 2fr;
        gap: 80px;
        align-items: center;
      }

      /* Quote — fix font to match loaded fonts */
      .t-q {
        font-family: var(--font-body); /* Cormorant Garamond */
        font-style: italic;
        font-size: clamp(1.1rem, 2vw, 1.5rem);
        font-weight: 500;
        line-height: 1.56;
        color: var(--ink2);
        margin-bottom: 24px;
        position: relative;
        padding-left: 24px;
        border-left: 2px solid var(--gold);
        transition: color 0.4s;
      }

      .t-stars {
        display: flex;
        gap: 3px;
        margin-bottom: 20px;
        color: var(--gold);
        font-size: 13px;
      }
      .t-bar {
        width: 22px;
        height: 1px;
        background: var(--gold);
        margin-bottom: 16px;
      }
      .t-name {
        font-family: var(--font-display);
        font-size: 1rem;
        font-weight: 700;
        color: var(--ink);
        transition: color 0.4s;
      }
      .t-role {
        font-family: var(--font-body);
        font-size: 9px;
        letter-spacing: 0.18em;
        color: var(--sub-text);
        margin-top: 3px;
        transition: color 0.4s;
      }

      /* ── Controls ──────────────────────────────────── */
      .testi-controls {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        margin-top: 40px;
      }

      .testi-btn {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        border: 1px solid var(--brd);
        background: transparent;
        color: var(--body);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition:
          border-color 0.3s,
          color 0.3s,
          background 0.3s;
        flex-shrink: 0;
      }
      .testi-btn:hover {
        border-color: var(--gold);
        color: var(--gold);
        background: rgba(200, 160, 32, 0.06);
      }

      .testi-dots {
        display: flex;
        gap: 8px;
        align-items: center;
      }
      .testi-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        border: none;
        background: var(--brd);
        cursor: pointer;
        padding: 0;
        transition:
          background 0.3s,
          transform 0.3s,
          width 0.3s;
      }
      .testi-dot.active {
        background: var(--gold);
        width: 20px;
        border-radius: 3px;
      }

      
                                             /* ═══════════════════════════════════════════════════
   END OF TESTOMONIALS
═══════════════════════════════════════════════════ */
      
                                                   /* ═══════════════════════════════════════════════════
   CTA
═══════════════════════════════════════════════════ */
      
      /* ── CTA ── */
      #cta {
        padding: 120px 0;
        text-align: center;
        background: var(--panel-section);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid var(--brd2);
        position: relative;
        overflow: hidden;
        transition: background 0.4s;
      }
      .cta-c {
        position: absolute;
        width: 44px;
        height: 44px;
        pointer-events: none;
      }
      .cta-c.tl {
        top: 40px;
        left: 56px;
        border-top: 1px solid var(--brd);
        border-left: 1px solid var(--brd);
      }
      .cta-c.tr {
        top: 40px;
        right: 56px;
        border-top: 1px solid var(--brd);
        border-right: 1px solid var(--brd);
      }
      .cta-c.bl {
        bottom: 40px;
        left: 56px;
        border-bottom: 1px solid var(--brd);
        border-left: 1px solid var(--brd);
      }
      .cta-c.br {
        bottom: 40px;
        right: 56px;
        border-bottom: 1px solid var(--brd);
        border-right: 1px solid var(--brd);
      }
      .cta-in {
        position: relative;
        z-index: 1;
        max-width: 580px;
        margin: 0 auto;
      }
      .cta-ey {
        font-family: "Cinzel", serif;
        font-size: 10px;
        letter-spacing: 0.46em;
        color: var(--gold);
        display: inline-flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 16px;
      }
      .cta-ey::before,
      .cta-ey::after {
        content: "";
        width: 16px;
        height: 1px;
        background: var(--gold);
      }
      .cta-h {
        font-family: "Playfair Display", serif;
        font-size: clamp(2.8rem, 5.5vw, 6rem);
        font-weight: 700;
        line-height: 0.92;
        color: var(--ink);
        margin-bottom: 18px;
        transition: color 0.4s;
      }
      .cta-h em {
        font-style: italic;
        font-weight: 500;
        background: var(--grd);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
      }
      .cta-sub {
        font-size: 15px;
        font-weight: 500;
        line-height: 1.72;
        color: var(--ink2);
        max-width: 420px;
        margin: 0 auto 32px;
        transition: color 0.4s;
      }
      .cta-acts {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 14px;
        flex-wrap: wrap;
      }
      .cta-note {
        margin-top: 20px;
       font-family: var(--font-body);
        font-size: 9px;
        letter-spacing: 0.18em;
        color: var(--sub-text);
        transition: color 0.4s;
        padding-left: 4px;
  padding-right: 4px;
      }
      
                                                   /* ═══════════════════════════════════════════════════
   END of CTA
═══════════════════════════════════════════════════ */
      
                                                         /* ═══════════════════════════════════════════════════
   Portfolio Home
═══════════════════════════════════════════════════ */
      
       #portfolio-hero {
        min-height: 96vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 80px 0;
        position: relative;
        border-bottom: 1px solid var(--brd2);
      }

      /* Gradient washes — readable text over marble */
      #portfolio-hero::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 200px;
        background: linear-gradient(to bottom, var(--panel-nav), transparent);
        pointer-events: none;
        z-index: 0;
      }
      #portfolio-hero::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 340px;
        background: linear-gradient(to top, var(--panel-section), transparent);
        pointer-events: none;
        z-index: 0;
      }

      .portfolio-hero-inner {
        position: relative;
        z-index: 1;
      }

      .portfolio-h-eye {
        font-family: "Cinzel", serif;
        font-size: 11px;
        letter-spacing: 0.5em;
        color: var(--gold);
        display: inline-flex;
        align-items: center;
        gap: 14px;
        margin-bottom: 32px;
        opacity: 0;
        animation: fuA 0.7s 0.2s forwards;
      }
      .portfolio-h-eye::before {
        content: "";
        width: 20px;
        height: 1px;
        background: var(--gold);
      }

      .portfolio-h-title {
        font-family: "Playfair Display", serif;
        font-weight: 700;
        font-size: clamp(4.5rem, 9vw, 11rem);
        line-height: 0.88;
        letter-spacing: 0.01em;
        color: var(--ink);
        transition: color 0.4s;
      }
      .portfolio-h-t1 {
        display: block;
        opacity: 0;
        animation: fuD 0.95s 0.1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
      }
      .portfolio-h-t2 {
        display: block;
        font-style: italic;
        font-weight: 500;
        background: var(--grd);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        opacity: 0;
        animation: fuU 0.95s 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
      }

      /* Three columns — constrained width, good spacing */
      .portfolio-h-cols {
        display: grid;
        grid-template-columns: 1fr 1px 1fr 1px 1fr;
        margin-top: 48px;
        opacity: 0;
        animation: fuA 0.8s 0.88s forwards;
      }
      .portfolio-h-sep {
        background: var(--brd2);
        align-self: stretch;
      }
      .portfolio-h-col {
        padding: 0 36px;
      }
      .portfolio-h-col:first-child {
        padding-left: 0;
      }
      .portfolio-h-col:last-child {
        padding-right: 0;
      }

      .portfolio-hc-lbl {
        font-family: "Cinzel", serif;
        font-size: 10px;
        letter-spacing: 0.36em;
        color: var(--gold);
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        gap: 8px;
      }
      .portfolio-hc-lbl::before {
        content: "";
        width: 10px;
        height: 1px;
        background: var(--gold);
      }

      /* ★ KEY FIX: hero column text needs higher contrast panel behind it */
      .portfolio-hc-p {
        font-size: 15px;
        line-height: 1.76;
        color: var(--ink2);
        transition: color 0.4s;
      }
      .portfolio-hc-p strong {
        color: var(--ink);
        font-weight: 500;
      }
      .portfolio-h-ctas {
        display: flex;
        align-items: center;
        gap: 14px;
        flex-wrap: wrap;
        margin-top: 16px;
      }

      /* Availability badge */
      .portfolio-h-badge {
        display: inline-flex;
        align-items: center;
        gap: 9px;
        margin-top: 36px;
        border: 1px solid var(--brd2);
        padding: 9px 18px;
        background: var(--panel-section);
        backdrop-filter: blur(12px);
        opacity: 0;
        animation: fuA 0.7s 1.4s forwards;
      }
      .portfolio-badge-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--gold);
        flex-shrink: 0;
        animation: pulse 2.4s ease-in-out infinite;
      }
      .portfolio-badge-txt {
        font-family: "Cinzel", serif;
        font-size: 10px;
        letter-spacing: 0.28em;
        color: var(--gold);
      }

      /* Scroll cue */
      .portfolio-h-scroll {
        position: absolute;
        right: 56px;
        bottom: 80px;
        z-index: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 9px;
        opacity: 0;
        animation: fuA 1s 2s forwards;
      }
      .portfolio-h-scroll-ln {
        width: 1px;
        height: 50px;
        background: linear-gradient(to bottom, transparent, var(--gold));
        animation: scrollP 2.2s ease-in-out infinite;
      }
      .portfolio-h-scroll-tx {
        font-family: "Cinzel", serif;
        font-size: 9px;
        letter-spacing: 0.42em;
        color: var(--muted);
        writing-mode: vertical-lr;
      }

      
      
      
                                                         /* ═══════════════════════════════════════════════════
   END of Portfolio Home
═══════════════════════════════════════════════════ */
     
                                                              /* ═══════════════════════════════════════════════════
    Portfolio Filters
═══════════════════════════════════════════════════ */


 /* Filter Bar */
      .filter-bar {
        background: var(--panel-section);
        backdrop-filter: blur(12px) saturate(1.1);
        border-bottom: 1px solid var(--brd2);
        position: sticky;
        top: 62px;
        z-index: 800;
        transition: background 0.4s;
      }
      .filter-inner {
        display: flex;
        align-items: center;
        overflow-x: auto;
        scrollbar-width: none;
      }
      .filter-inner::-webkit-scrollbar {
        display: none;
      }
      .f-btn {
        font-family: "Cinzel", serif;
        font-size: 12px;
        letter-spacing: 0.22em;
        color: var(--sub-text);
        background: none;
        border: none;
        cursor: pointer;
        padding: 18px 22px;
        white-space: nowrap;
        position: relative;
        transition: color 0.28s;
        border-right: 1px solid var(--brd2);
        flex-shrink: 0;
        font-family: 500;
      }
      .f-btn::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: var(--gold);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.34s cubic-bezier(0.16, 1, 0.3, 1);
      }
      .f-btn.active {
        color: var(--gold);
      }
      .f-btn.active::after,
      .f-btn:hover::after {
        transform: scaleX(1);
      }
      .f-btn:hover {
        color: var(--gold);
      }
      .f-count {
        margin-left: auto;
        padding: 0 24px;
        font-family: "Cinzel", serif;
        font-size: 12px;
        letter-spacing: 0.2em;
        color: var(--sub-text);
        white-space: nowrap;
        flex-shrink: 0;
        transition: color 0.4s;
        font-family: 400;
      }
     
                                                              /* ═══════════════════════════════════════════════════
   END of Portfolio Filters
═══════════════════════════════════════════════════ */
      
                                                                    /* ═══════════════════════════════════════════════════
   Portfolio Featured
═══════════════════════════════════════════════════ */
      
      /* Featured */
      .featured {
        background: var(--panel-section);
        backdrop-filter: blur(12px) saturate(1.1);
        border-bottom: 1px solid var(--brd2);
        padding: 80px 0;
        transition: background 0.4s;
      }
      .feat-card {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2px;
        background: var(--brd3);
        cursor: pointer;
      }
      .feat-vis {
        height: 500px;
        position: relative;
        overflow: hidden;
      }
      .feat-vis-bg {
        position: absolute;
        inset: 0;
        transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        background: var(--panel-card-logo-bg);
      }
      .feat-card:hover .feat-vis-bg {
        transform: scale(1.04);
      }
      .feat-vis-overlay {
        position: absolute;
        inset: 0;
      }
      .feat-badge {
        position: absolute;
        top: 24px;
        left: 24px;
        font-family: "Cinzel", serif;
        font-size: 9px;
        letter-spacing: 0.22em;
        color: rgba(255, 255, 255, 0.9);
        background: rgba(0, 0, 0, 0.4);
        padding: 6px 14px;
        backdrop-filter: blur(8px);
      }
      .feat-feat-tag {
        position: absolute;
        top: 24px;
        right: 24px;
        font-family: "Cinzel", serif;
        font-size: 9px;
        letter-spacing: 0.28em;
        color: var(--gold);
        border: 1px solid rgba(200, 160, 32, 0.5);
        padding: 6px 14px;
        background: rgba(5, 8, 14, 0.6);
        backdrop-filter: blur(8px);
      }
      .feat-mono {
        position: absolute;
        bottom: 20px;
        right: 24px;
        font-family: "Playfair Display", serif;
        font-style: italic;
        font-size: 5rem;
        color: rgba(255, 255, 255, 0.08);
        font-weight: 700;
        user-select: none;
        line-height: 1;
      }
      .feat-body {
        background: var(--panel-card);
        padding: 48px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        transition: background 0.4s;
      }
      .feat-num {
        font-family: "Playfair Display", serif;
        font-style: italic;
        font-size: 3rem;
        color: var(--ink2);
        -webkit-text-stroke: 1px var(--brd2);
        margin-bottom: 24px;
        user-select: none;
        transition: -webkit-text-stroke 0.3s;
      }
      .feat-card:hover .feat-num {
        -webkit-text-stroke: 1px rgba(200, 160, 32, 0.35);
      }
      .feat-sector {
        font-family: "Cinzel", serif;
        font-size: 10px;
        letter-spacing: 0.32em;
        color: var(--gold);
        margin-bottom: 12px;
        display: flex;
        align-items: center;
        gap: 8px;
      }
      .feat-sector::before {
        content: "";
        width: 10px;
        height: 1px;
        background: var(--gold);
      }
      .feat-name {
        font-family: "Playfair Display", serif;
        font-size: clamp(1.6rem, 2.5vw, 2.4rem);
        font-weight: 700;
        line-height: 1.1;
        color: var(--ink);
        margin-bottom: 8px;
        transition: color 0.3s;
      }
      .feat-card:hover .feat-name {
        color: var(--gold);
      }
      .feat-sub {
        font-size: 15px;
        color: var(--body);
        margin-bottom: 24px;
        transition: color 0.4s;
      }
      .feat-rule {
        width: 24px;
        height: 1px;
        background: var(--gold);
        margin-bottom: 24px;
      }
      .feat-desc {
        font-size: 15px;
        line-height: 1.8;
        color: var(--body);
        margin-bottom: 32px;
        transition: color 0.4s;
      }
      .feat-outcomes {
        list-style: none;
        margin-bottom: 36px;
      }
      .feat-outcome {
        display: flex;
        align-items: baseline;
        gap: 14px;
        padding: 10px 0;
        border-bottom: 1px solid var(--brd2);
        font-size: 13px;
        color: var(--body);
        transition: color 0.4s;
      }
      .feat-outcome:first-child {
        border-top: 1px solid var(--brd2);
      }
      .feat-outcome-val {
        font-family: "Playfair Display", serif;
        font-weight: 700;
        font-size: 1.15rem;
        background: var(--grd);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        flex-shrink: 0;
        min-width: 64px;
      }
      .feat-stack {
        display: flex;
        flex-wrap: wrap;
        gap: 5px;
        margin-bottom: 36px;
      }
      .feat-tag {
        font-family: "Cinzel", serif;
        font-size: 9px;
        letter-spacing: 0.1em;
        color: var(--gold);
        border: 1px solid var(--brd2);
        padding: 5px 10px;
        transition: background 0.3s;
      }
      .feat-tag:hover {
        background: rgba(200, 160, 32, 0.12);
      }
      .feat-actions {
        display: flex;
        align-items: center;
        gap: 10px;
        flex-wrap: wrap;
      }
      
      .p-empty {
        display: none;
        padding: 80px 40px;
        text-align: center;
        background: var(--panel-card);
      }
      .p-empty.show {
        display: block;
      }
      .p-empty-icon {
        font-size: 2.4rem;
        color: var(--brd);
        margin-bottom: 16px;
      }
      .p-empty-t {
        font-family: "Playfair Display", serif;
        font-size: 1.3rem;
        color: var(--ink);
        margin-bottom: 8px;
      }
      .p-empty-s {
        font-size: 14px;
        color: var(--body);
      }
      
      
      
      
                                                                    /* ═══════════════════════════════════════════════════
   END of Portfolio Featured
═══════════════════════════════════════════════════ */
      
      
                                                                          /* ═══════════════════════════════════════════════════
    About Hero
═══════════════════════════════════════════════════ */
      
      .h-founding {
        display: flex;
        flex-direction: column;
        gap: 5px;
        align-items: flex-end;
      }
      .hf-yr {
        font-family: "Playfair Display", serif;
        font-size: 2.4rem;
        font-weight: 700;
        background: var(--grd);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        line-height: 1;
      }
      .hf-lbl {
        font-family: "Cinzel", serif;
        font-size: 12px;
        letter-spacing: 0.22em;
        color: var(--sub-text);
        transition: color 0.4s;
      }
      
                                                                          /* ═══════════════════════════════════════════════════
   END of  About Hero
═══════════════════════════════════════════════════ */
      
      
                                                                                /* ═══════════════════════════════════════════════════
  About Story
═══════════════════════════════════════════════════ */
      
       .story-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 88px;
        align-items: start;
        margin-top: 52px;
      }
      .story-p {
        font-size: 15px;
        font-weight: 500;
        line-height: 1.82;
        color: var(--ink2);
        margin-bottom: 18px;
        transition: color 0.4s;
      }
      .story-p:last-child {
        margin-bottom: 0;
      }
      
       .about-tl {
        list-style: none;
      }
      .about-tl-item {
        display: grid;
        grid-template-columns: 52px 1fr;
        gap: 0;
        padding: 18px 0;
        border-bottom: 1px solid var(--brd2);
      }
      .about-tl-item:first-child {
        border-top: 1px solid var(--brd2);
      }
      .about-tl-yr {
        font-family: "Cinzel", serif;
        font-size: 11px;
        letter-spacing: 0.2em;
        color: var(--gold);
        padding-top: 3px;
        font-weight: 500;
      }
      .about-tl-h {
        font-family: "Playfair Display", serif;
        font-size: 0.95rem;
        font-weight: 700;
        color: var(--ink);
        margin-bottom: 3px;
        transition: color 0.4s;
      }
      .about-tl-note {
        font-size: 13px;
        font-weight: 500;
        color: var(--ink2);
        line-height: 1.6;
        transition: color 0.4s;
      }
      
      
                                                                                /* ═══════════════════════════════════════════════════
   END of  About Story
═══════════════════════════════════════════════════ */
      
                                                                                      /* ═══════════════════════════════════════════════════
    About Principal
═══════════════════════════════════════════════════ */
      
       .principal-grid {
        display: grid;
        grid-template-columns: 320px 1fr;
        gap: 2px;
        background: var(--brd3);
        margin-top: 52px;
      }
      .pc-left {
        background: var(--panel-card);
        display: flex;
        flex-direction: column;
        transition: background 0.4s;
      }
      .pc-left .img-ph {
        flex: 1;
        min-height: 320px;
        border: none;
      }
      .pc-meta {
        padding: 24px 26px;
        border-top: 1px solid var(--brd2);
      }
      .pc-name {
        font-family: "Playfair Display", serif;
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--ink);
        margin-bottom: 3px;
        transition: color 0.4s;
      }
      .pc-role {
        font-family: "Cinzel", serif;
        font-size: 11px;
        letter-spacing: 0.2em;
        color: var(--gold);
        margin-bottom: 12px;
        font-weight: 400;
      }
      .pc-creds {
        list-style: none;
      }
      .pc-cred {
        font-size: 12px;
        font-weight: 500;
        color: var(--ink2);
        padding: 4px 0;
        border-bottom: 1px solid var(--brd2);
        display: flex;
        align-items: baseline;
        gap: 7px;
        transition: color 0.4s;
      }
      .pc-cred:last-child {
        border-bottom: none;
      }
      .pc-cred::before {
        content: "—";
        color: var(--gold);
        font-size: 10px;
        flex-shrink: 0;
      }

      .pc-right {
        background: var(--panel-card);
        padding: 44px;
        transition: background 0.4s;
      }
      .pc-quote {
        font-family:var(--body);
        font-style: italic;
        font-size: clamp(1rem, 1.8vw, 1.3rem);
        font-weight: 500;
        line-height: 1.56;
        color: var(--ink2);
        padding-left: 20px;
        border-left: 2px solid var(--gold);
        margin-bottom: 32px;
        transition: color 0.4s;
      }
      .pc-bio-p {
        font-size: 14px;
        font-weight: 500;
        line-height: 1.78;
        color: var(--ink2);
        margin-bottom: 16px;
        transition: color 0.4s;
      }
      .pc-bio-p:last-child {
        margin-bottom: 0;
      }
      .pc-chips {
        display: flex;
        flex-wrap: wrap;
        gap: 5px;
        margin-top: 24px;
        padding-top: 20px;
        border-top: 1px solid var(--brd2);
      }
      .pc-chip {
        font-family: "Cinzel", serif;
        font-size: 12px;
        letter-spacing: 0.1em;
        color: var(--gold);
        border: 1px solid var(--brd2);
        padding: 4px 9px;
        transition: background 0.3s;
        font-family: 500;
      }
      .pc-chip:hover {
        background: rgba(200, 160, 32, 0.1);
      }
      
      
                                                                                      /* ═══════════════════════════════════════════════════
   END of  About Principal
═══════════════════════════════════════════════════ */
      
                                                                                            /* ═══════════════════════════════════════════════════
    About Values
═══════════════════════════════════════════════════ */
      
        .values-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2px;
        background: var(--brd3);
        margin-top: 52px;
      }
      .val-cell {
        background: var(--panel-card);
        padding: 30px 26px;
        position: relative;
        overflow: hidden;
        transition: background 0.32s;
      }
      .val-cell::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--gold), transparent);
        transform: scaleX(0);
        transition: transform 0.44s cubic-bezier(0.16, 1, 0.3, 1);
      }
      .val-cell:hover::before {
        transform: scaleX(1);
      }
      .val-cell:hover {
        background: rgba(200, 160, 32, 0.04);
      }
      .val-n {
        font-family: "Playfair Display", serif;
        font-style: italic;
        font-size: 2rem;
        color: var(--ink2);
        -webkit-text-stroke: 1px var(--brd2);
        user-select: none;
        line-height: 1;
        margin-bottom: 16px;
        transition: -webkit-text-stroke 0.3s;
      }
      .val-cell:hover .val-n {
        -webkit-text-stroke: 1px rgba(200, 160, 32, 0.38);
      }
      .val-h {
        font-family: "Playfair Display", serif;
        font-size: 0.95rem;
        font-weight: 700;
        color: var(--ink);
        margin-bottom: 7px;
        transition: color 0.3s;
      }
      .val-cell:hover .val-h {
        color: var(--gold);
      }
      .val-p {
        font-size: 13px;
        font-weight: 500;
        line-height: 1.68;
        color: var(--ink2);
        transition: color 0.4s;
      }
      
                                                                                            /* ═══════════════════════════════════════════════════
   END of  About Values
═══════════════════════════════════════════════════ */
      
      
                                                                                            /* ═══════════════════════════════════════════════════
    Contact Hero
═══════════════════════════════════════════════════ */
      
        #contact-hero {
        min-height: 96vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 80px 0;
        position: relative;
        border-bottom: 1px solid var(--brd2);
      }

      /* Gradient washes — readable text over marble */
      #contact-hero::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 200px;
        background: linear-gradient(to bottom, var(--panel-nav), transparent);
        pointer-events: none;
        z-index: 0;
      }
      #contact-hero::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 340px;
        background: linear-gradient(to top, var(--panel-section), transparent);
        pointer-events: none;
        z-index: 0;
      }

      .contact-hero-inner {
        position: relative;
        z-index: 1;
      }

      .contact-h-eye {
        font-family: "Cinzel", serif;
        font-size: 11px;
        letter-spacing: 0.5em;
        color: var(--gold);
        display: inline-flex;
        align-items: center;
        gap: 14px;
        margin-bottom: 32px;
        opacity: 0;
        animation: fuA 0.7s 0.2s forwards;
      }
      .contact-h-eye::before {
        content: "";
        width: 20px;
        height: 1px;
        background: var(--gold);
      }

      .contact-h-title {
        font-family: "Playfair Display", serif;
        font-weight: 700;
        font-size: clamp(4.5rem, 9vw, 11rem);
        line-height: 0.88;
        letter-spacing: 0.01em;
        color: var(--ink);
        transition: color 0.4s;
      }
      .contact-h-t1 {
        display: block;
        opacity: 0;
        animation: fuD 0.95s 0.1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
      }
      .contact-h-t2 {
        display: block;
        font-style: italic;
        font-weight: 500;
        background: var(--grd);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        opacity: 0;
        animation: fuU 0.95s 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
      }
      
      .contact-h-foot {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        margin-top: 48px;
        opacity: 0;
        animation: fuA 0.8s 0.7s forwards;
      }
      .contact-h-desc {
        font-size: 15px;
        line-height: 1.78;
        color: var(--hero-heading);
        transition: color 0.4s;
        font-weight: 400;
      }
      .contact-h-desc strong {
        color: var(--hero-heading);
        font-weight: 500;
      }
      
       .contact-h-promise {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        gap: 8px;
      }
      .contact-h-pr-item {
        display: flex;
        align-items: center;
        gap: 12px;
        font-family: var(--body);
        font-size: 12px;
        letter-spacing: 0.14em;
        color: var(--hero-heading);
        transition: color 0.4s;
        font-weight: 500;
      }
      .contact-h-pr-icon {
        color: var(--gold);
        font-size: 10px;
        flex-shrink: 0;
      }
      
                                                                                            /* ═══════════════════════════════════════════════════
   END of  Contact Hero
═══════════════════════════════════════════════════ */
      
      
                                                                                                  /* ═══════════════════════════════════════════════════
     Contact Form
═══════════════════════════════════════════════════ */
      
        .contact-sec {
        background: var(--panel-section);
        backdrop-filter: blur(12px) saturate(1.1);
        border-bottom: 1px solid var(--brd2);
        padding: 100px 0;
        transition: background 0.4s;
      }
      .contact-grid {
        display: grid;
        grid-template-columns: 380px 1fr;
        gap: 80px;
        align-items: start;
      }

      /* ── LEFT SIDEBAR ── */
      .c-sidebar {
      }
      .c-step-list {
        list-style: none;
        margin-top: 36px;
      }
      .c-step {
        display: grid;
        grid-template-columns: 32px 1fr;
        gap: 16px;
        padding: 20px 0;
        border-bottom: 1px solid var(--brd2);
        cursor: default;
      }
      .c-step:first-child {
        border-top: 1px solid var(--brd2);
      }
      .c-step-n {
        font-family: "Cinzel", serif;
        font-size: 9px;
        letter-spacing: 0.22em;
        color: var(--gold);
        padding-top: 3px;
      }
      .c-step-body {
      }
      .c-step-h {
        font-family: "Playfair Display", serif;
        font-size: 0.95rem;
        font-weight: 600;
        color: var(--ink);
        margin-bottom: 4px;
        transition: color 0.4s;
      }
      .c-step-p {
        font-size: 13px;
        line-height: 1.65;
        color: var(--body);
        transition: color 0.4s;
      }

      /* Info cells */
      .c-info-cells {
        margin-top: 36px;
        display: flex;
        flex-direction: column;
        gap: 2px;
        background: var(--brd3);
      }
      .c-info-cell {
        background: var(--panel-card);
        padding: 18px 20px;
        transition: background 0.3s;
      }
      .c-info-cell:hover {
        background: rgba(200, 160, 32, 0.06);
      }
      .c-info-lbl {
        font-family: var(--body);
        font-size: 12px;
        letter-spacing: 0.22em;
        color: var(--gold);
        margin-bottom: 5px;
      }
      .c-info-val {
        font-size: 14px;
        color: var(--ink2);
        transition: color 0.4s;
      }
      .c-info-sub {
        font-size: 12px;
        color: var(--body);
        margin-top: 2px;
        transition: color 0.4s;
      }

      /* Availability badge */
      .c-avail {
        margin-top: 28px;
        padding: 18px 20px;
        background: rgba(200, 160, 32, 0.07);
        border: 1px solid var(--brd);
        display: flex;
        align-items: center;
        gap: 14px;
      }
      .c-avail-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--gold);
        flex-shrink: 0;
        animation: pulse 2s infinite;
      }
      .c-avail-txt {
      }
      .c-avail-h {
        font-family: "Cinzel", serif;
        font-size: 10px;
        letter-spacing: 0.18em;
        color: var(--gold);
        margin-bottom: 2px;
      }
      .c-avail-sub {
        font-size: 12px;
        color: var(--body);
        transition:color 0.4s;;
      }
      
         /* ── RIGHT FORM ── */
      .c-form-wrap {
        background: var(--panel-card);
        border: 1px solid var(--brd2);
        position: relative;
        overflow: hidden;
      }
      .c-form-wrap::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--gold), transparent);
      }

      .c-form-tabs {
        display: flex;
        border-bottom: 1px solid var(--brd2);
      }
      .c-tab {
        flex: 1;
        font-family: "Cinzel", serif;
        font-size: 10px;
        letter-spacing: 0.18em;
        color: var(--muted);
        background: none;
        border: none;
        cursor: pointer;
        padding: 16px 20px;
        border-right: 1px solid var(--brd2);
        transition:
          color 0.28s,
          background 0.28s;
        position: relative;
      }
      .c-tab:last-child {
        border-right: none;
      }
      .c-tab::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: var(--gold);
        transform: scaleX(0);
        transition: transform 0.34s cubic-bezier(0.16, 1, 0.3, 1);
      }
      .c-tab.active {
        color: var(--gold);
        background: rgba(200, 160, 32, 0.04);
      }
      .c-tab.active::after {
        transform: scaleX(1);
      }
      .c-tab:hover:not(.active) {
        color: var(--ink2);
      }

      .c-form-body {
        padding: 40px 40px;
      }
      .c-form-title {
        font-family: "Playfair Display", serif;
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--ink);
        margin-bottom: 6px;
        transition: color 0.4s;
      }
      .c-form-sub {
        font-size: 13px;
        color: var(--body);
        margin-bottom: 32px;
        transition: color 0.4s;
      }

      /* Form fields */
      .f-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        margin-bottom: 16px;
      }
      .f-field {
        display: flex;
        flex-direction: column;
        gap: 7px;
        margin-bottom: 16px;
      }
      .f-label {
        font-family: var(--body);
        font-size: 12px;
        letter-spacing: 0.22em;
        color: var(--gold);
      }
      .f-req {
        color: var(--body);
        margin-left: 4px;
      }

      .f-input,
      .f-select,
      .f-textarea {
        background: var(--panel-section);
        border: 1px solid var(--brd2);
        color: var(--ink);
        font-family: "DM Sans", sans-serif;
        font-size: 14px;
        padding: 12px 16px;
        outline: none;
        transition:
          border-color 0.28s,
          background 0.28s,
          color 0.4s;
        width: 100%;
      }
      .f-input::placeholder,
      .f-textarea::placeholder {
        color: var(--muted);
      }
      .f-input:focus,
      .f-select:focus,
      .f-textarea:focus {
        border-color: var(--gold);
        background: rgba(200, 160, 32, 0.04);
      }
      .f-select {
        cursor: pointer;
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23C8A020' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 14px center;
        padding-right: 36px;
      }
      .f-textarea {
        resize: vertical;
        min-height: 110px;
        line-height: 1.65;
      }

      /* Radio/checkbox style discipline selector */
      .f-disciplines {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 6px;
      }
      .f-disc-opt {
        display: none;
      }
      .f-disc-lbl {
        display: flex;
        align-items: center;
        gap: 9px;
        font-family: "Cinzel", serif;
        font-size: 11px;
        letter-spacing: 0.12em;
        color: var(--body);
        border: 1px solid var(--brd2);
        padding: 9px 12px;
        cursor: pointer;
        transition:
          color 0.28s,
          border-color 0.28s,
          background 0.28s;
      }
      .f-disc-lbl::before {
        content: "";
        width: 12px;
        height: 12px;
        border: 1px solid var(--brd2);
        flex-shrink: 0;
        transition:
          background 0.28s,
          border-color 0.28s;
      }
      .f-disc-opt:checked + .f-disc-lbl {
        color: var(--gold);
        border-color: var(--brd);
        background: rgba(200, 160, 32, 0.06);
      }
      .f-disc-opt:checked + .f-disc-lbl::before {
        background: var(--gold);
        border-color: var(--gold);
      }

      /* Budget selector */
      .f-budgets {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
      }
      .f-bud-opt {
        display: none;
      }
      .f-bud-lbl {
        font-family: "Cinzel", serif;
        font-size: 11px;
        letter-spacing: 0.12em;
        color: var(--body);
        border: 1px solid var(--brd2);
        padding: 7px 14px;
        cursor: pointer;
        transition:
          color 0.28s,
          border-color 0.28s,
          background 0.28s;
      }
      .f-bud-opt:checked + .f-bud-lbl {
        color: var(--gold);
        border-color: var(--brd);
        background: rgba(200, 160, 32, 0.06);
      }

      /* Submit */
      .f-submit-row {
        display: flex;
        align-items: center;
        gap: 16px;
        margin-top: 28px;
        padding-top: 24px;
        border-top: 1px solid var(--brd2);
        flex-direction: column;
      }
      .f-submit {
        font-family: "Cinzel", serif;
        font-size: 11px;
        letter-spacing: 0.22em;
        color: var(--btn-txt);
        background: var(--gold);
        padding: 14px 36px;
        border: none;
        cursor: pointer;
        position: relative;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(200, 160, 32, 0.28);
        transition: box-shadow 0.3s;
      }
      .f-submit::after {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 60%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
        transition: left 0.5s;
      }
      .f-submit:hover {
        box-shadow: 0 8px 36px rgba(200, 160, 32, 0.46);
      }
      .f-submit:hover::after {
        left: 140%;
      }
      .f-note {
        font-size: 12px;
        color: var(--muted);
        line-height: 1.55;
        transition: color 0.4s;
      }

      /* Success state */
      .f-success {
        display: none;
        text-align: center;
        padding: 60px 40px;
      }
      .f-success.show {
        display: block;
      }
      .f-success-icon {
        font-size: 2.4rem;
        color: var(--gold);
        margin-bottom: 16px;
      }
      .f-success-h {
        font-family: "Playfair Display", serif;
        font-size: 1.6rem;
        font-weight: 700;
        color: var(--ink);
        margin-bottom: 10px;
        transition: color 0.4s;
      }
      .f-success-p {
        font-size: 14px;
        color: var(--body);
        line-height: 1.7;
        transition: color 0.4s;
      }

      /* Panel tabs content */
      .c-tab-pane {
        display: none;
      }
      .c-tab-pane.active {
        display: block;
      }
      
                                                                                                  /* ═══════════════════════════════════════════════════
   END of  Contact Form
═══════════════════════════════════════════════════ */
      
      
                                                                                                        /* ═══════════════════════════════════════════════════
  Contact FAQ
═══════════════════════════════════════════════════ */
      
       .faq-sec {
        background: var(--panel-section);
        backdrop-filter: blur(12px) saturate(1.1);
        border-bottom: 1px solid var(--brd2);
        padding: 80px 0;
        transition: background 0.4s;
      }
      .faq-inner {
        display: grid;
        grid-template-columns: 280px 1fr;
        gap: 80px;
      }
      .faq-lft {
        position: sticky;
        top: 80px;
      }
      .faq-item {
        border-bottom: 1px solid var(--brd2);
      }
      .faq-item:first-child {
        border-top: 1px solid var(--brd2);
      }
      .faq-q {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        background: none;
        border: none;
        cursor: pointer;
        padding: 18px 0;
        text-align: left;
        font-family: var(--body);
        font-size: 1rem;
        font-weight: 500;
        color: var(--ink);
        transition: color 0.28s;
      }
      .faq-q:hover {
        color: var(--gold);
      }
      .faq-ic {
        font-size: 1.1rem;
        color: var(--gold);
        transition: transform 0.34s;
        flex-shrink: 0;
        margin-left: 14px;
      }
      .faq-item.open .faq-ic {
        transform: rotate(45deg);
      }
      .faq-ans {
        display: grid;
        grid-template-rows: 0fr;
        transition: grid-template-rows 0.36s cubic-bezier(0.16, 1, 0.3, 1);
      }
      .faq-ans-in {
        overflow: hidden;
      }
      .faq-item.open .faq-ans {
        grid-template-rows: 1fr;
      }
      .faq-ans-p {
        font-size: 13px;
        line-height: 1.75;
        color: var(--body);
        padding-bottom: 18px;
        transition: color 0.4s;
      }
      .faq-ans-p strong {
        color: var(--ink2);
        font-weight: 500;
      }
      
                                                                                                        /* ═══════════════════════════════════════════════════
   END of  Contact FAQ
═══════════════════════════════════════════════════ */
      
                                                                                                              /* ═══════════════════════════════════════════════════
    Contact Office
═══════════════════════════════════════════════════ */
      
        .offices {
        background: var(--panel-section);
        backdrop-filter: blur(12px) saturate(1.1);
        border-bottom: 1px solid var(--brd2);
        padding: 80px 0;
        transition: background 0.4s;
      }
      .office-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2px;
        background: var(--brd3);
        margin-top: 44px;
      }
      .office-card {
        background: var(--panel-card);
        padding: 32px 28px;
        transition: background 0.32s;
        cursor: default;
        position: relative;
        overflow: hidden;
      }
      .office-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--gold), transparent);
        transform: scaleX(0);
        transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
      }
      .office-card:hover::before {
        transform: scaleX(1);
      }
      .office-card:hover {
        background: rgba(200, 160, 32, 0.05);
      }
      .oc-flag {
        font-size: 1.6rem;
        margin-bottom: 12px;
      }
      .oc-city {
        font-family: "Playfair Display", serif;
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--ink);
        margin-bottom: 3px;
        transition: color 0.4s;
      }
      .oc-country {
        font-family: "Cinzel", serif;
        font-size: 9px;
        letter-spacing: 0.22em;
        color: var(--gold);
        margin-bottom: 16px;
      }
      .oc-rule {
        width: 18px;
        height: 1px;
        background: var(--gold);
        margin-bottom: 16px;
      }
      .oc-detail {
        font-size: 13px;
        color: var(--body);
        line-height: 1.65;
        transition: color 0.4s;
      }
      .oc-type {
        font-family: var(--body);
        font-size: 9px;
        letter-spacing: 0.16em;
        color: var(--sub-text);
        margin-top: 12px;
        transition: color 0.4s;
      }
      
                                                                                                              /* ═══════════════════════════════════════════════════
   END of  Contact Office
═══════════════════════════════════════════════════ */
      
         /* ═══════════════════════════════════════════════════
   KEYFRAMES
═══════════════════════════════════════════════════ */

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

      @keyframes fuD {
        from {
          opacity: 0;
          transform: translateY(-44px);
        }
        to {
          opacity: 1;
          transform: none;
        }
      }
      @keyframes fuU {
        from {
          opacity: 0;
          transform: translateY(44px);
        }
        to {
          opacity: 1;
          transform: none;
        }
      }
      @keyframes fuA {
        from {
          opacity: 0;
          transform: translateY(22px);
        }
        to {
          opacity: 1;
          transform: none;
        }
      }
      @keyframes pulse {
        0%,
        100% {
          box-shadow: 0 0 0 0 rgba(200, 160, 32, 0.6);
        }
        50% {
          box-shadow: 0 0 0 5px rgba(200, 160, 32, 0);
        }
      }
      @keyframes scrollP {
        0%,
        100% {
          opacity: 0.3;
        }
        50% {
          opacity: 1;
        }
      }
      
      
               /* ═══════════════════════════════════════════════════
   END of KEYFRAMES
═══════════════════════════════════════════════════ */
      
      
      /* =============================================
        Media Query
   ============================================= */
   
        @media (max-width: 1100px) {
        .sec-hdr {
          grid-template-columns: 1fr;
          gap: 24px;
        }
        .h-cols {
          grid-template-columns: 1fr;
          gap: 0;
        }
        .h-sep {
          display: none;
        }
        .h-col {
          padding: 16px 0;
          border-bottom: 1px solid var(--brd2);
        }
        .h-col:last-child {
          border-bottom: none;
        }
        .svc-r1 {
          grid-template-columns: 1fr 1fr;
        }
        .svc-r2 {
          grid-template-columns: 1fr 1fr;
        }
        .faq-inner {
          grid-template-columns: 1fr;
          gap: 44px;
        }
        .faq-hd {
          position: static;
        }
        .h-scroll {
          display: none;
        }
        
         .work-grid {
          grid-template-columns: 1fr 1fr;
        }
        
        
            .feat-card {
          grid-template-columns: 1fr;
        }
        .feat-vis {
          height: 320px;
        }
        
         .contact-grid {
          grid-template-columns: 320px 1fr;
          gap: 60px;
        }
        
      }
   
     @media (max-width: 1024px) {
        .n-links,
        .n-cta {
          display: none;
        }
        .hbg {
          display: flex;
        }
        .proc-grid {
          grid-template-columns: 1fr;
        }
        .proc-col:first-child {
          border-right: none;
          border-bottom: 1px solid var(--brd2);
        }
        .proc-col {
          padding: 72px 56px;
        }
         .svc-grid {
          grid-template-columns: 1fr 1fr;
        }
        .svc-grid-b {
          grid-template-columns: 1fr 1fr;
        }
        
         .testi-inner {
          grid-template-columns: 1fr;
          gap: 40px;
        }
        .t-img-col {
          display: none;
        }
         .proc-grid {
          grid-template-columns: 1fr;
        }
        .work-grid {
          grid-template-columns: 1fr 1fr;
        }
        
          .stats-row {
          grid-template-columns: 1fr 1fr;
        }
        .st-cell:nth-child(2) {
          border-right: none;
        }
        .st-cell:nth-child(3) {
          border-top: 1px solid var(--brd2);
          border-right: 1px solid var(--brd2);
        }
        .st-cell:nth-child(4) {
          border-top: 1px solid var(--brd2);
        }
        .modal-cols {
          grid-template-columns: 1fr;
        }
        
            .story-grid {
          grid-template-columns: 1fr;
          gap: 52px;
        }
        
           .principal-grid {
          grid-template-columns: 1fr;
        }
        .pc-left .img-ph {
          min-height: 260px;
        }
            .values-grid {
          grid-template-columns: 1fr 1fr;
        }
        
          .contact-h-foot {
          grid-template-columns: 1fr;
          gap: 24px;
        }
        
        
        .contact-grid {
          grid-template-columns: 1fr;
        }
        .c-sidebar {
          display: grid;
          grid-template-columns: 1fr;
          gap: 40px;
          align-items: start;
        }
        
         .faq-inner {
          grid-template-columns: 1fr;
          gap: 36px;
        }
        .faq-lft {
          position: static;
        }
        
             .office-grid {
          grid-template-columns: 1fr;
        }
        
      }
   
    @media (max-width: 768px) {
        
                .service-cta {
          
          display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 24px;
          flex-direction: column;
          gap: 20px;
          
      }

        .wrap {
          padding: 0 24px;
        }
        
          .section {
          padding: 72px 0;
        }
        .stats-row {
          grid-template-columns: 1fr 1fr;
        }
        .st-cell:nth-child(2) {
          border-right: none;
        }
        .st-cell:nth-child(3) {
          border-top: 1px solid var(--brd2);
          border-right: 1px solid var(--brd2);
        }
        .st-cell:nth-child(4) {
          border-top: 1px solid var(--brd2);
        }
        
        .svc-grid,
        .svc-grid-b {
          grid-template-columns: 1fr;
        }
        
        .work-grid {
          grid-template-columns: 1fr;
        }
        .svc-r1,
        .svc-r2 {
          grid-template-columns: 1fr;
        }
        .why-grid {
          grid-template-columns: 1fr;
        }
        .cta-corner {
          display: none;
        }
        .proc-col {
          padding: 64px 24px;
        }
        footer .wrap {
          flex-direction: column;
          text-align: center;
          align-items: center;
        }
        .f-links {
          justify-content: center;
        }
        .cta-corner {
          display: none;
        }
        
        #hero {
            justify-content: center;
        min-height: 70vh;
            
        }
        
           #about-hero {
            justify-content: center;
        min-height: 90vh;
            
        }
        
          .h-foot {
          grid-template-columns: 1fr;
          gap: 24px;
        }
        
            .h-acts {
          align-items: flex-start;
        }
        
        
          .testi-band {
          padding: 52px 0 44px;
        }
        .testi-inner {
          grid-template-columns: 1fr;
          gap: 32px;
        }
        .t-img-col {
          display: none; /* hide portrait on mobile — text only */
        }
        .t-q {
          padding-left: 16px;
          font-size: clamp(1rem, 4vw, 1.25rem);
        }
        .testi-controls {
          margin-top: 28px;
          gap: 14px;
        }
        
         .feat-body {
          padding: 32px 28px;
        }
        
        
        #portfolio-hero {
            justify-content: center;
    min-height: 70vh;
        }
        
        
         .h-founding {
          align-items: flex-start;
        }
        
           .pc-right {
          padding: 28px 24px;
        }
        
                .values-grid {
          grid-template-columns: 1fr;
        }
        
             .contact-h-title {
        font-family: "Playfair Display", serif;
        font-weight: 700;
        font-size: clamp(3.5rem, 9vw, 11rem);
        line-height: 0.88;
        letter-spacing: 0.01em;
        color: var(--ink);
        transition: color 0.4s;
      }
        
            .c-sidebar {
          grid-template-columns: 1fr;
        }
        .c-form-body {
          padding: 28px 24px;
        }
        
                .office-grid {
          grid-template-columns: 1fr;
        }
        
      }
      
      
        @media (max-width: 640px) {
        .modal-grid {
          grid-template-columns: 1fr;
          gap: 22px;
        }
        .modal-body {
          padding: 22px 20px 26px;
        }
        .modal-vis {
          height: 160px;
        }
        .modal-actions {
          flex-direction: column;
          align-items: stretch;
        }
        .modal-dismiss {
          margin-left: 0;
          text-align: center;
        }
        .modal-btn-primary,
        .modal-btn-secondary {
          text-align: center;
        }
      }
      
      @media (max-width: 480px) {
          
          
              .cta-acts {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 14px;
        flex-direction: column;
      }
          
          .home-work {
              
              display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 52px;
  flex-direction: column;
              
          }
          
          
        .wrap {
          padding: 0 18px;
        }
        
          .stats-row {
          grid-template-columns: 1fr;
        }
        .st-cell {
          border-right: none !important;
          border-bottom: 1px solid var(--brd2);
        }
        .st-cell:last-child {
          border-bottom: none;
        }
        
              .f-row {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 16px;
      }
       
       .f-disciplines {
           display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
       }
        
          .contact-h-title {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: clamp(3rem, 9vw, 11rem);
    line-height: 0.88;
    letter-spacing: 0.01em;
    color: var(--ink);
    transition: color 0.4s;
  }
        
      }
   
   
      