    :root {
      --bg: #070505;
      --bg2: #0b0808;
      --surface: #0f0b0b;
      --card: #140d0d;
      --card2: #191111;
      --red: #c8281c;
      --red-soft: #d63828;
      --red-line: rgba(200, 40, 28, 0.16);
      --red-muted: rgba(200, 40, 28, 0.09);
      --gold: #c9a85c;
      --white: #f4eeee;
      --muted: #5a4a4a;
      --text: #9a8a8a;
      --border: rgba(255, 255, 255, 0.045);
    }

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

    html {
      scroll-behavior: smooth;
    }

    /* cursor — fine pointer only */
    @media (pointer:fine) {
      * {
        cursor: none !important;
      }
    }

    #cursor-dot {
      position: fixed;
      width: 5px;
      height: 5px;
      background: var(--red);
      border-radius: 50%;
      pointer-events: none;
      z-index: 9999;
      transform: translate(-50%, -50%);
      box-shadow: 0 0 6px var(--red), 0 0 16px rgba(200, 40, 28, .45);
      will-change: left, top;
    }

    #cursor-ring {
      position: fixed;
      width: 34px;
      height: 34px;
      border: 1px solid rgba(200, 40, 28, .45);
      border-radius: 50%;
      pointer-events: none;
      z-index: 9998;
      transform: translate(-50%, -50%);
      transition: width .32s cubic-bezier(.25, 1, .5, 1),
        height .32s cubic-bezier(.25, 1, .5, 1),
        border-color .25s, background .25s;
      will-change: left, top;
    }

    #cursor-ring.hov {
      width: 52px;
      height: 52px;
      border-color: rgba(200, 40, 28, .75);
      background: rgba(200, 40, 28, .06);
    }

    #cursor-ring.clk {
      width: 22px;
      height: 22px;
      border-color: var(--red);
      background: rgba(200, 40, 28, .14);
    }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: 'DM Sans', sans-serif;
      font-weight: 300;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    /* grain */
    body::after {
      content: '';
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 999;
      opacity: .024;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
      background-size: 180px 180px;
    }

    /* ambient */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 0;
      background:
        radial-gradient(ellipse 90% 55% at 50% -5%, rgba(200, 40, 28, .11) 0%, transparent 58%),
        radial-gradient(ellipse 35% 25% at 85% 55%, rgba(200, 40, 28, .04) 0%, transparent 55%);
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 200;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.3rem 5vw;
      background: rgba(7, 5, 5, .88);
      backdrop-filter: blur(28px) saturate(1.3);
      border-bottom: 1px solid rgba(200, 40, 28, .09);
    }

    nav::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 5vw;
      right: 5vw;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(200, 40, 28, .22), transparent);
    }

    .nav-logo {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 700;
      font-size: 1.6rem;
      color: var(--white);
      text-decoration: none;
      letter-spacing: .14em;
      text-transform: uppercase;
    }

    .nav-logo span {
      color: var(--red-soft);
    }

    .nav-links {
      display: flex;
      gap: 2.2rem;
      list-style: none;
    }

    .nav-links a {
      font-size: .71rem;
      font-weight: 400;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--muted);
      text-decoration: none;
      position: relative;
      transition: color .25s;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -3px;
      left: 0;
      width: 0;
      height: 1px;
      background: var(--red);
      transition: width .3s;
    }

    .nav-links a:hover {
      color: var(--white);
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .nav-cta {
      font-family: 'DM Sans', sans-serif;
      font-weight: 500;
      font-size: .69rem;
      letter-spacing: .16em;
      text-transform: uppercase;
      background: transparent;
      color: var(--white);
      border: 1px solid rgba(200, 40, 28, .45);
      padding: .6rem 1.55rem;
      border-radius: 2px;
      position: relative;
      overflow: hidden;
      transition: border-color .3s;
    }

    .nav-cta::before {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--red);
      transform: translateX(-101%);
      transition: transform .32s cubic-bezier(.4, 0, .2, 1);
    }

    .nav-cta:hover {
      border-color: var(--red);
    }

    .nav-cta:hover::before {
      transform: translateX(0);
    }

    .nav-cta span {
      position: relative;
      z-index: 1;
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      padding: 4px;
    }

    .hamburger span {
      width: 22px;
      height: 1.5px;
      background: var(--white);
      border-radius: 2px;
      transition: all .28s ease;
      display: block;
    }

    .hamburger.open span:nth-child(1) {
      transform: rotate(45deg) translate(4.8px, 4.8px);
    }

    .hamburger.open span:nth-child(2) {
      opacity: 0;
      transform: scaleX(0);
    }

    .hamburger.open span:nth-child(3) {
      transform: rotate(-45deg) translate(4.8px, -4.8px);
    }

    .mobile-menu {
      display: none;
      position: fixed;
      top: 64px;
      left: 0;
      right: 0;
      background: rgba(7, 5, 5, .97);
      backdrop-filter: blur(24px);
      border-bottom: 1px solid var(--red-line);
      z-index: 190;
      flex-direction: column;
      padding: 0 5vw;
    }

    .mobile-menu.open {
      display: flex;
    }

    .mobile-menu a {
      font-size: .84rem;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: var(--muted);
      text-decoration: none;
      font-weight: 400;
      padding: 1rem 0;
      border-bottom: 1px solid var(--border);
      transition: color .2s, padding-left .2s;
    }

    .mobile-menu a:last-child {
      border-bottom: none;
    }

    .mobile-menu a:hover {
      color: var(--white);
      padding-left: .4rem;
    }

    /* ── HERO ── */
    .hero {
      position: relative;
      z-index: 2;
      min-height: 100vh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-areas: "left right";
      align-items: center;
      padding: 8rem 5vw 5rem;
      gap: 4.5rem;
    }

    .hero-left {
      grid-area: left;
    }

    .hero-right {
      grid-area: right;
    }

    .hero-divider {
      position: absolute;
      top: 0;
      left: 50%;
      width: 1px;
      height: 100%;
      background: linear-gradient(to bottom, transparent 10%, rgba(200, 40, 28, .09) 50%, transparent 90%);
      pointer-events: none;
    }

    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: .75rem;
      font-size: .63rem;
      font-weight: 400;
      letter-spacing: .28em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1.7rem;
      opacity: 0;
      animation: fadeUp .8s .1s forwards;
    }

    .hero-tag::before {
      content: '';
      width: 22px;
      height: 1px;
      background: var(--gold);
      opacity: .7;
    }

    .hero-h1 {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 600;
      font-size: clamp(3.2rem, 5.5vw, 6.8rem);
      line-height: .97;
      color: var(--white);
      margin-bottom: 1.7rem;
      letter-spacing: -.01em;
      opacity: 0;
      animation: fadeUp .9s .2s forwards;
    }

    .hero-h1 em {
      font-style: italic;
      color: var(--red-soft);
    }

    .hero-h1 .outline {
      color: transparent;
      -webkit-text-stroke: 1.2px rgba(244, 238, 238, .72);
      font-style: italic;
    }

    .hero-desc {
      font-size: .91rem;
      line-height: 2;
      color: var(--muted);
      max-width: 400px;
      margin-bottom: 2.4rem;
      opacity: 0;
      animation: fadeUp .9s .35s forwards;
    }

    .hero-actions {
      display: flex;
      gap: 1rem;
      align-items: center;
      flex-wrap: wrap;
      opacity: 0;
      animation: fadeUp .9s .5s forwards;
    }

    .btn-primary {
      background: var(--red);
      color: var(--white);
      padding: .9rem 2.1rem;
      border: none;
      font-family: 'DM Sans', sans-serif;
      font-weight: 500;
      font-size: .74rem;
      letter-spacing: .13em;
      text-transform: uppercase;
      text-decoration: none;
      border-radius: 2px;
      display: inline-block;
      position: relative;
      overflow: hidden;
      transition: box-shadow .3s, transform .2s;
      box-shadow: 0 4px 28px rgba(200, 40, 28, .32), inset 0 1px 0 rgba(255, 255, 255, .08);
    }

    .btn-primary::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255, 255, 255, .1) 0%, transparent 55%);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 38px rgba(200, 40, 28, .5), inset 0 1px 0 rgba(255, 255, 255, .08);
    }

    .btn-ghost {
      font-size: .74rem;
      font-weight: 400;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--muted);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: .45rem;
      transition: color .25s;
    }

    .btn-ghost::after {
      content: '→';
      transition: transform .28s;
    }

    .btn-ghost:hover {
      color: var(--white);
    }

    .btn-ghost:hover::after {
      transform: translateX(5px);
    }

    .hero-stats {
      display: flex;
      gap: 2.8rem;
      flex-wrap: wrap;
      margin-top: 3.2rem;
      padding-top: 2rem;
      border-top: 1px solid rgba(200, 40, 28, .1);
      opacity: 0;
      animation: fadeUp .9s .65s forwards;
    }

    .hs-n {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.95rem;
      font-weight: 700;
      color: var(--white);
      line-height: 1;
    }

    .hs-n span {
      color: var(--red-soft);
    }

    .hs-l {
      font-size: .62rem;
      letter-spacing: .15em;
      text-transform: uppercase;
      color: var(--muted);
      margin-top: .28rem;
    }

    .hero-right {
      opacity: 0;
      animation: fadeIn .9s .3s forwards;
    }

    .hero-card {
      background: var(--card);
      border: 1px solid rgba(200, 40, 28, .14);
      border-radius: 8px;
      padding: 2.4rem;
      position: relative;
      overflow: hidden;
      box-shadow: 0 24px 80px rgba(0, 0, 0, .65), inset 0 0 0 1px rgba(255, 255, 255, .03);
    }

    .hero-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--red) 40%, transparent);
    }

    .hero-card::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(200, 40, 28, .18), transparent);
    }

    .hero-card svg {
      width: 100%;
      height: auto;
      display: block;
    }

    .hero-caption {
      text-align: center;
      margin-top: .6rem;
      font-family: 'Instrument Serif', serif;
      font-style: italic;
      font-size: .76rem;
      color: var(--muted);
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(20px)
      }

      to {
        opacity: 1;
        transform: none
      }
    }

    @keyframes fadeIn {
      from {
        opacity: 0
      }

      to {
        opacity: 1
      }
    }

    /* ── SHARED ── */
    .divider {
      border: none;
      border-top: 1px solid var(--border);
      margin: 0 5vw;
      position: relative;
      z-index: 2;
    }

    .section {
      position: relative;
      z-index: 2;
      padding: 6rem 5vw;
      max-width: 1320px;
      margin: 0 auto;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: .65rem;
      font-size: .63rem;
      font-weight: 400;
      letter-spacing: .28em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: .85rem;
    }

    .eyebrow::before {
      content: '';
      width: 18px;
      height: 1px;
      background: var(--gold);
      opacity: .7;
    }

    .sec-h {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 3.5vw, 3.8rem);
      font-weight: 600;
      line-height: 1.05;
      color: var(--white);
      margin-bottom: 1rem;
    }

    .sec-h em {
      font-style: italic;
      color: var(--red-soft);
    }

    .sec-p {
      color: var(--muted);
      font-size: .91rem;
      line-height: 2;
      max-width: 480px;
    }

    .center {
      text-align: center;
    }

    .center .eyebrow {
      display: inline-flex;
    }

    .center .sec-p {
      margin: 0 auto;
    }

    .reveal {
      opacity: 0;
      transform: translateY(22px);
      transition: opacity .85s cubic-bezier(.22, 1, .36, 1), transform .85s cubic-bezier(.22, 1, .36, 1);
    }

    .reveal.on {
      opacity: 1;
      transform: none;
    }

    /* ── MARQUEE ── */
    .marquee-strip {
      position: relative;
      z-index: 2;
      border-top: 1px solid rgba(200, 40, 28, .09);
      border-bottom: 1px solid rgba(200, 40, 28, .09);
      background: var(--surface);
      overflow: hidden;
      padding: .8rem 0;
    }

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

    .marquee-track:hover {
      animation-play-state: paused;
    }

    .marquee-item {
      display: inline-flex;
      align-items: center;
      gap: 1.1rem;
      padding: 0 2.4rem;
      font-size: .63rem;
      letter-spacing: .26em;
      text-transform: uppercase;
      color: var(--muted);
      white-space: nowrap;
    }

    .mdot {
      width: 3px;
      height: 3px;
      border-radius: 50%;
      background: var(--red);
      flex-shrink: 0;
    }

    @keyframes marquee {
      0% {
        transform: translateX(0)
      }

      100% {
        transform: translateX(-50%)
      }
    }

    /* ── SERVICES ── */
    .sv-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      margin-top: 3.5rem;
      border: 1px solid rgba(200, 40, 28, .11);
      border-radius: 4px;
      overflow: hidden;
    }

    .sv {
      background: var(--card);
      padding: 2.7rem 2.2rem;
      position: relative;
      overflow: hidden;
      transition: background .35s;
      border-right: 1px solid rgba(200, 40, 28, .08);
      border-bottom: 1px solid rgba(200, 40, 28, .08);
    }

    .sv:nth-child(3n) {
      border-right: none;
    }

    .sv:nth-child(n+4) {
      border-bottom: none;
    }

    .sv::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--red), transparent);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .45s cubic-bezier(.4, 0, .2, 1);
    }

    .sv:hover {
      background: #1c1313;
    }

    .sv:hover::before {
      transform: scaleX(1);
    }

    .sv-num {
      font-family: 'Instrument Serif', serif;
      font-style: italic;
      font-size: .66rem;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: rgba(201, 168, 92, .55);
      margin-bottom: 1.3rem;
      display: block;
    }

    .sv-icon {
      margin-bottom: 1.2rem;
    }

    .sv-icon svg {
      width: 36px;
      height: 36px;
    }

    .sv-title {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 600;
      font-size: 1.22rem;
      color: var(--white);
      margin-bottom: .6rem;
      line-height: 1.2;
    }

    .sv-desc {
      color: var(--muted);
      font-size: .83rem;
      line-height: 1.85;
    }

    /* ── PLATFORM ── */
    .about-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }

    .about-visual {
      background: var(--card);
      border: 1px solid rgba(200, 40, 28, .14);
      border-radius: 8px;
      padding: 2.4rem;
      position: relative;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
    }

    .about-visual::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--red) 40%, transparent);
    }

    .about-visual svg {
      width: 100%;
      height: auto;
    }

    .about-caption {
      margin-top: 1.3rem;
      padding-top: 1.3rem;
      border-top: 1px solid var(--border);
      display: flex;
      align-items: center;
      gap: .85rem;
    }

    .caption-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--red);
      flex-shrink: 0;
      box-shadow: 0 0 8px var(--red);
      animation: pulse 2.5s infinite;
    }

    @keyframes pulse {

      0%,
      100% {
        box-shadow: 0 0 8px var(--red), 0 0 18px rgba(200, 40, 28, .3);
      }

      50% {
        box-shadow: 0 0 3px var(--red), 0 0 6px rgba(200, 40, 28, .1);
      }
    }

    .about-caption p {
      font-family: 'Instrument Serif', serif;
      font-style: italic;
      font-size: .84rem;
      color: var(--muted);
    }

    .feat-list {
      display: flex;
      flex-direction: column;
    }

    .feat-item {
      display: flex;
      gap: 1.35rem;
      align-items: flex-start;
      padding: 1.6rem 0;
      border-bottom: 1px solid var(--border);
      transition: padding-left .28s, border-color .28s;
    }

    .feat-item:first-child {
      border-top: 1px solid var(--border);
    }

    .feat-item:hover {
      padding-left: .5rem;
      border-bottom-color: var(--red-line);
    }

    .feat-ico {
      width: 40px;
      height: 40px;
      flex-shrink: 0;
      background: var(--red-muted);
      border: 1px solid var(--red-line);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      border-radius: 3px;
      margin-top: 2px;
      transition: background .28s, box-shadow .28s;
    }

    .feat-item:hover .feat-ico {
      background: rgba(200, 40, 28, .17);
      box-shadow: 0 0 18px rgba(200, 40, 28, .1);
    }

    .feat-item h4 {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 600;
      font-size: 1.08rem;
      color: var(--white);
      margin-bottom: .28rem;
    }

    .feat-item p {
      color: var(--muted);
      font-size: .83rem;
      line-height: 1.8;
    }

    /* ── PROCESS ── */
    .proc-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.4rem;
      margin-top: 3.5rem;
    }

    .proc-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 4px;
      padding: 2.1rem 1.8rem;
      position: relative;
      overflow: hidden;
      transition: border-color .3s, transform .35s cubic-bezier(.22, 1, .36, 1), box-shadow .3s;
    }

    .proc-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, var(--red), transparent);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .38s ease;
    }

    .proc-card:hover {
      border-color: rgba(200, 40, 28, .2);
      transform: translateY(-5px);
      box-shadow: 0 14px 40px rgba(0, 0, 0, .4), 0 0 28px rgba(200, 40, 28, .05);
    }

    .proc-card:hover::before {
      transform: scaleX(1);
    }

    .proc-step {
      font-family: 'Instrument Serif', serif;
      font-style: italic;
      font-size: .63rem;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: rgba(201, 168, 92, .55);
      margin-bottom: 1rem;
      display: block;
    }

    .proc-svg {
      margin-bottom: 1rem;
    }

    .proc-svg svg {
      width: 38px;
      height: 38px;
    }

    .proc-title {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 600;
      font-size: 1.02rem;
      color: var(--white);
      margin-bottom: .45rem;
    }

    .proc-desc {
      color: var(--muted);
      font-size: .81rem;
      line-height: 1.8;
    }

    /* ── CONTACT ── */
    .contact-wrap {
      display: grid;
      grid-template-columns: 1fr 1fr;
      border: 1px solid rgba(200, 40, 28, .14);
      border-radius: 5px;
      overflow: hidden;
      box-shadow: 0 24px 80px rgba(0, 0, 0, .5);
    }

    .c-left {
      background: var(--card);
      padding: 3.6rem;
      position: relative;
      overflow: hidden;
    }

    .c-left::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      width: 1px;
      background: linear-gradient(to bottom, var(--red), transparent);
    }

    .c-left::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, var(--red), transparent);
    }

    .c-right {
      background: var(--bg2);
      padding: 3.6rem;
      border-left: 1px solid rgba(200, 40, 28, .09);
    }

    .c-h {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 600;
      font-size: clamp(1.8rem, 2.8vw, 3rem);
      line-height: 1.05;
      color: var(--white);
      margin-bottom: .65rem;
    }

    .c-h em {
      font-style: italic;
      color: var(--red-soft);
    }

    .c-sub {
      color: var(--muted);
      font-size: .87rem;
      line-height: 1.9;
      margin-bottom: 2.6rem;
    }

    .c-rows {
      display: flex;
      flex-direction: column;
    }

    .c-row {
      display: flex;
      align-items: center;
      gap: 1.1rem;
      padding: 1.1rem 0;
      border-bottom: 1px solid var(--border);
      transition: padding-left .22s, border-color .22s;
    }

    .c-row:first-child {
      border-top: 1px solid var(--border);
    }

    .c-row:hover {
      padding-left: .4rem;
      border-bottom-color: var(--red-line);
    }

    .c-ico {
      width: 37px;
      height: 37px;
      background: var(--red-muted);
      border: 1px solid var(--red-line);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .88rem;
      flex-shrink: 0;
      border-radius: 2px;
    }

    .c-lbl {
      font-size: .58rem;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: .1rem;
    }

    .c-val {
      font-size: .84rem;
      color: var(--text);
    }

    .c-val a {
      color: inherit;
      text-decoration: none;
      transition: color .2s;
    }

    .c-val a:hover {
      color: var(--white);
    }

    .form {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }

    .fg {
      display: flex;
      flex-direction: column;
      gap: .38rem;
    }

    .fg label {
      font-size: .58rem;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--muted);
    }

    .fg input,
    .fg textarea {
      background: var(--card);
      border: 1px solid rgba(255, 255, 255, .05);
      color: var(--white);
      padding: .82rem .96rem;
      border-radius: 2px;
      font-family: 'DM Sans', sans-serif;
      font-size: .85rem;
      font-weight: 300;
      outline: none;
      width: 100%;
      transition: border-color .28s, background .28s, box-shadow .28s;
    }

    .fg input:focus,
    .fg textarea:focus {
      border-color: rgba(200, 40, 28, .38);
      background: rgba(200, 40, 28, .025);
      box-shadow: 0 0 0 3px rgba(200, 40, 28, .06);
    }

    .fg input::placeholder,
    .fg textarea::placeholder {
      color: var(--muted);
      opacity: .45;
    }

    .fg textarea {
      min-height: 112px;
      resize: vertical;
    }

    .form-submit {
      background: var(--red);
      color: var(--white);
      border: none;
      padding: .96rem 2.2rem;
      font-family: 'DM Sans', sans-serif;
      font-weight: 500;
      font-size: .73rem;
      letter-spacing: .16em;
      text-transform: uppercase;
      border-radius: 2px;
      position: relative;
      overflow: hidden;
      transition: box-shadow .3s, transform .2s;
      box-shadow: 0 4px 20px rgba(200, 40, 28, .3), inset 0 1px 0 rgba(255, 255, 255, .08);
    }

    .form-submit::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255, 255, 255, .09) 0%, transparent 55%);
    }

    .form-submit:hover {
      transform: translateY(-1px);
      box-shadow: 0 10px 34px rgba(200, 40, 28, .46), inset 0 1px 0 rgba(255, 255, 255, .08);
    }

    .form-submit:disabled {
      opacity: .6;
      pointer-events: none;
    }

    /* ── FOOTER ── */
    footer {
      position: relative;
      z-index: 2;
      background: var(--surface);
      border-top: 1px solid rgba(200, 40, 28, .09);
      padding: 2.6rem 5vw;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 1.4rem;
    }

    .f-logo {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 700;
      font-size: 1.5rem;
      color: var(--white);
      letter-spacing: .12em;
      text-transform: uppercase;
    }

    .f-copy {
      font-size: .68rem;
      letter-spacing: .1em;
      color: var(--muted);
    }

    .f-right {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: .45rem;
    }

    .f-links {
      display: flex;
      gap: 1.8rem;
    }

    .f-links a {
      font-size: .68rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--muted);
      text-decoration: none;
      transition: color .2s;
    }

    .f-links a:hover {
      color: var(--white);
    }

    .f-loc {
      font-size: .68rem;
      color: var(--muted);
    }

    /* Swal dark */
    .swal2-popup {
      background: var(--card2) !important;
      border: 1px solid var(--red-line) !important;
      border-radius: 6px !important;
    }

    .swal2-title {
      color: var(--white) !important;
      font-family: 'Cormorant Garamond', serif !important;
      font-size: 1.5rem !important;
    }

    .swal2-html-container {
      color: var(--muted) !important;
    }

    .swal2-confirm {
      background: var(--red) !important;
      border: none !important;
    }

    .swal2-toast {
      background: var(--card2) !important;
      border: 1px solid var(--red-line) !important;
    }

    .swal2-toast .swal2-title {
      color: var(--white) !important;
      font-size: .9rem !important;
    }

    /* ── RESPONSIVE ── */
    @media(max-width:1024px) {
      .hero {
        gap: 3rem;
      }

      .about-layout {
        gap: 3rem;
      }

      .proc-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media(max-width:768px) {
      nav {
        padding: 1rem 5vw;
      }

      .nav-links,
      .nav-cta {
        display: none;
      }

      .hamburger {
        display: flex;
      }

      /* ══ MOBILE FIX: text always first ══ */
      .hero {
        grid-template-columns: 1fr;
        grid-template-areas: "left" "right";
        padding: 6.5rem 5vw 3.5rem;
        gap: 2.5rem;
        min-height: auto;
      }

      .hero-left {
        grid-area: left;
        order: 1;
      }

      .hero-right {
        grid-area: right;
        order: 2;
      }

      .hero-divider {
        display: none;
      }

      .hero-desc {
        max-width: 100%;
      }

      .hero-h1 {
        font-size: clamp(2.6rem, 9vw, 3.8rem);
      }

      .section {
        padding: 4rem 5vw;
      }

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

      .sv {
        border-right: none;
      }

      .about-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }

      .proc-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
      }

      .contact-wrap {
        grid-template-columns: 1fr;
      }

      .c-left,
      .c-right {
        padding: 2.4rem;
      }

      .form-row {
        grid-template-columns: 1fr;
      }

      footer {
        flex-direction: column;
        align-items: flex-start;
      }

      .f-right {
        align-items: flex-start;
      }
    }

    @media(max-width:480px) {
      .hero-h1 {
        font-size: 2.6rem;
      }

      .hero-stats {
        gap: 1.6rem;
      }

      .hero-actions {
        flex-direction: column;
        align-items: flex-start;
      }

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

      .c-left,
      .c-right {
        padding: 1.7rem;
      }
    }

    /* ── PLANS ── */
    .plans-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.4rem;
      margin-top: 3.5rem;
      align-items: start;
    }

    .plan-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 6px;
      padding: 2.4rem 2rem;
      position: relative;
      transition: border-color .3s, transform .3s cubic-bezier(.22, 1, .36, 1);
    }

    .plan-card:hover {
      border-color: rgba(200, 40, 28, .22);
      transform: translateY(-4px);
    }

    .plan-popular {
      border-color: rgba(200, 40, 28, .38);
      background: #160e0e;
    }

    .plan-popular::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: var(--red);
      border-radius: 6px 6px 0 0;
    }

    .plan-premium::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--gold), rgba(201, 168, 92, .3));
      border-radius: 6px 6px 0 0;
    }

    .plan-badge {
      display: inline-block;
      background: rgba(200, 40, 28, .15);
      border: 1px solid rgba(200, 40, 28, .3);
      color: var(--red-soft);
      font-size: .6rem;
      font-weight: 500;
      letter-spacing: .18em;
      text-transform: uppercase;
      padding: .28rem .85rem;
      border-radius: 20px;
      margin-bottom: 1.2rem;
    }

    .plan-tier {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 600;
      font-size: 1.1rem;
      color: var(--white);
      margin-bottom: .5rem;
    }

    .plan-price {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 700;
      font-size: 2.8rem;
      color: var(--white);
      line-height: 1;
      margin-bottom: .2rem;
    }

    .plan-price span {
      font-size: 3.2rem;
    }

    .plan-popular .plan-price,
    .plan-popular .plan-price span {
      color: var(--red-soft);
    }

    .plan-premium .plan-price,
    .plan-premium .plan-price span {
      color: var(--gold);
    }

    .plan-cycle {
      font-size: .63rem;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 1.2rem;
    }

    .plan-desc {
      font-size: .83rem;
      line-height: 1.8;
      color: var(--muted);
      margin-bottom: 1.6rem;
      padding-bottom: 1.6rem;
      border-bottom: 1px solid var(--border);
    }

    .plan-feats {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: .75rem;
      margin-bottom: 2rem;
      font-size: .83rem;
      color: var(--text);
    }

    .plan-feats li {
      display: flex;
      align-items: center;
      gap: .7rem;
    }

    .plan-feats .pf-no {
      opacity: .3;
      text-decoration: line-through;
    }

    .pf-dot {
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--red);
      flex-shrink: 0;
    }

    .pf-no .pf-dot {
      background: var(--muted);
    }

    .plan-btn {
      display: block;
      text-align: center;
      padding: .85rem 1.4rem;
      border-radius: 3px;
      font-family: 'DM Sans', sans-serif;
      font-weight: 500;
      font-size: .72rem;
      letter-spacing: .14em;
      text-transform: uppercase;
      text-decoration: none;
      transition: opacity .25s, transform .2s, box-shadow .25s;
    }

    .plan-btn:hover {
      transform: translateY(-1px);
    }

    .plan-btn-ghost {
      background: transparent;
      border: 1px solid rgba(255, 255, 255, .1);
      color: var(--muted);
    }

    .plan-btn-ghost:hover {
      border-color: rgba(255, 255, 255, .25);
      color: var(--white);
    }

    .plan-btn-primary {
      background: var(--red);
      color: var(--white);
      border: 1px solid var(--red);
      box-shadow: 0 4px 20px rgba(200, 40, 28, .28);
    }

    .plan-btn-primary:hover {
      box-shadow: 0 8px 30px rgba(200, 40, 28, .46);
    }

    .plan-btn-gold {
      background: transparent;
      border: 1px solid rgba(201, 168, 92, .4);
      color: var(--gold);
    }

    .plan-btn-gold:hover {
      background: rgba(201, 168, 92, .07);
      border-color: var(--gold);
    }

    .plans-note {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 1rem;
      margin-top: 2.2rem;
      padding-top: 1.8rem;
      border-top: 1px solid var(--border);
      font-size: .75rem;
      color: var(--muted);
    }

    .plans-note a {
      color: var(--red-soft);
      text-decoration: none;
      font-size: .75rem;
      transition: opacity .2s;
    }

    .plans-note a:hover {
      opacity: .7;
    }

    /* also add plans to nav */
    @media(max-width:768px) {
      .plans-grid {
        grid-template-columns: 1fr;
      }
    }
