  :root {
    --bg: #080807;
    --panel: #12100e;
    --panel-soft: #1a1612;
    --gold: #d99035;
    --gold-light: #ffc064;
    --copper: #a54a14;
    --cream: #fff3dc;
    --muted: #d5c3a7;
    --line: rgba(217, 144, 53, 0.46);
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.48);
  }

  * {
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    margin: 0;
    font-family: "Poppins", Arial, sans-serif;
    color: var(--cream);
    background:
      radial-gradient(circle at 20% 0%, rgba(198, 103, 28, 0.18), transparent 24rem),
      radial-gradient(circle at 80% 34%, rgba(255, 184, 82, 0.12), transparent 28rem),
      linear-gradient(180deg, #090806 0%, #12100d 45%, #070706 100%);
    overflow-x: hidden;
  }

  body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    background-image:
      linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 86%, transparent);
  }

  a {
    color: inherit;
    text-decoration: none;
  }

  img {
    display: block;
    max-width: 100%;
    user-select: none;
    border-radius: 10px;
    -webkit-user-drag: none;
  }

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

  .site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    border-bottom: 1px solid transparent;
    background: rgba(8, 8, 7, 0.88);
    backdrop-filter: blur(18px);
    box-shadow: none;
    transition: border-color 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
  }

  .site-header.scrolled {
    border-bottom-color: rgba(217, 144, 53, 0.36);
    background: rgba(8, 8, 7, 0.94);
    box-shadow: 0 8px 34px rgba(0, 0, 0, 0.36);
  }

  .nav {
    min-height: 84px;
    display: flex;
    align-items: center;
    gap: clamp(18px, 2.4vw, 34px);
  }

  .brand {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    min-width: 152px;
  }

  .brand img {
    width: clamp(116px, 11vw, 156px);
    height: auto;
    max-height: 58px;
    object-fit: contain;
    border-radius: 10px;
    filter: drop-shadow(0 0 16px rgba(217, 144, 53, 0.28));
  }

  .nav-links {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(14px, 2.6vw, 34px);
    font-family: "Libre Baskerville", serif;
    font-size: 0.95rem;
  }

  .nav-links a {
    position: relative;
    padding: 26px 0;
    color: #f8ead5;
    transition: color 0.25s ease;
  }

  .nav-links a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 18px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
    transform: translateX(-50%);
    transition: width 0.25s ease;
  }

  .nav-links a:hover,
  .nav-links a.active {
    color: var(--gold-light);
  }

  .nav-links a:hover::after,
  .nav-links a.active::after {
    width: 120%;
  }

  .quote-btn,
  .btn {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border: 1px solid rgba(255, 198, 112, 0.72);
    border-radius: 4px;
    padding: 12px 28px;
    font-weight: 700;
    font-family: "Libre Baskerville", serif;
    color: #211207;
    background:
      linear-gradient(180deg, rgba(255, 228, 164, 0.82) 0%, rgba(241, 166, 64, 0.96) 43%, rgba(159, 62, 9, 0.98) 100%);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.42),
      inset 0 -10px 18px rgba(83, 25, 0, 0.22),
      0 14px 28px rgba(185, 85, 12, 0.25);
    transition: transform 0.28s ease, box-shadow 0.28s ease, color 0.28s ease, border-color 0.28s ease;
    white-space: nowrap;
  }

  .quote-btn::before,
  .btn::before {
    content: "";
    position: absolute;
    z-index: 0;
    inset: -70% -35%;
    background: linear-gradient(115deg, transparent 36%, rgba(255, 250, 216, 0.82) 48%, transparent 60%);
    transform: translateX(-82%) rotate(8deg);
    transition: transform 0.58s ease;
    pointer-events: none;
  }

  .quote-btn::after,
  .btn::after {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 4px;
    border: 1px solid rgba(255, 240, 190, 0.34);
    border-radius: 2px;
    opacity: 0.72;
    pointer-events: none;
    transition: inset 0.28s ease, opacity 0.28s ease;
  }

  .quote-btn {
    color: var(--gold-light);
    background:
      linear-gradient(180deg, rgba(43, 28, 16, 0.94), rgba(12, 10, 8, 0.88));
    box-shadow:
      inset 0 1px 0 rgba(255, 222, 155, 0.18),
      0 12px 28px rgba(0, 0, 0, 0.32);
  }

  .quote-btn:hover,
  .btn:hover {
    transform: translateY(-4px) scale(1.025);
    border-color: rgba(255, 219, 142, 0.96);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.55),
      inset 0 -12px 22px rgba(83, 25, 0, 0.22),
      0 18px 42px rgba(217, 144, 53, 0.32),
      0 0 24px rgba(255, 185, 82, 0.2);
  }

  .quote-btn:hover::before,
  .btn:hover::before {
    transform: translateX(82%) rotate(8deg);
  }

  .quote-btn:hover::after,
  .btn:hover::after {
    inset: 7px;
    opacity: 1;
  }

  .mobile-toggle {
    display: none;
    margin-left: auto;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 4px;
    color: var(--gold-light);
    background: transparent;
    font-size: 1.3rem;
  }

  .hero {
    position: relative;
    min-height: clamp(460px, 42.4vw, 650px);
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #070605;
  }

  .hero-slide {
    position: absolute;
    inset: 0;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.035);
    transition: opacity 0.9s ease, transform 5.2s ease;
    will-change: opacity, transform;
  }

  .hero-slide.active {
    opacity: 1;
    transform: scale(1);
  }

  .hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(90deg, rgba(7, 6, 5, 0.9) 0%, rgba(7, 6, 5, 0.68) 34%, rgba(7, 6, 5, 0.2) 64%, rgba(7, 6, 5, 0.58) 100%),
      linear-gradient(180deg, rgba(7, 6, 5, 0.34) 0%, rgba(7, 6, 5, 0.06) 46%, rgba(7, 6, 5, 0.68) 100%),
      radial-gradient(circle at 72% 48%, rgba(255, 183, 80, 0.16), transparent 27rem);
  }

  /* 3 SLIDES ACCENT DEFINITION CONFIGURATION */
  .hero-slide.one {
    background-image: url("../image/banner/b1.png");
  }

  .hero-slide.two {
    background-image: url("../image/banner/b2.png");
  }

  .hero-slide.three {
    background-image: url("../image/banner/b3.png");
  }

  .hero::after,
  .section-divider::before,
  .section-divider::after {
    display: none;
  }

  .hero-content {
    position: relative;
    z-index: 1;
    max-width: 570px;
    /* padding: clamp(28px, 4vw, 56px) 0; */
  }

  .hero-copy {
    display: none;
    opacity: 0;
    transform: translateY(16px);
  }

  .hero-copy.active {
    display: block;
    animation: copyIn 0.72s ease forwards;
  }

  .kicker {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0 0 8px;
    font-family: "Cinzel", serif;
    font-size: clamp(1rem, 2vw, 1.55rem);
    letter-spacing: 0.12em;
    color: #fff7e9;
  }

  .kicker::before,
  .kicker::after,
  .title-row::before,
  .title-row::after {
    content: "";
    width: 44px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-light));
  }

  .kicker::after,
  .title-row::after {
    background: linear-gradient(90deg, var(--gold-light), transparent);
  }

  .script-title {
    margin: 0;
    font-family: "Great Vibes", cursive;
    font-size: clamp(3rem, 6.4vw, 5rem);
    line-height: 0.88;
    font-weight: 400;
    color: var(--gold-light);
    text-shadow: 0 10px 22px rgba(0, 0, 0, 0.58);
  }

  .hero h1 {
    margin: 8px 0 16px;
    font-family: "Cinzel", serif;
    font-size: clamp(1.25rem, 2.25vw, 1.85rem);
    letter-spacing: 0.13em;
    color: #fff7ea;
  }

  .hero-subtitle {
    max-width: 530px;
    margin: 0;
    font-family: "Libre Baskerville", serif;
    font-size: clamp(0.98rem, 1.55vw, 1.16rem);
    line-height: 1.65;
    border: 0;
    color: #fff2de;
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 26px;
  }

  .hero-dots {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 10px;
    margin-top: 28px;
  }

  .hero-dot {
    width: 34px;
    height: 4px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 218, 148, 0.28);
    cursor: pointer;
    transition: width 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  }

  .hero-dot.active {
    width: 54px;
    background: var(--gold-light);
    box-shadow: 0 0 18px rgba(255, 192, 100, 0.42);
  }

  .btn.outline {
    color: #fff3de;
    background: linear-gradient(180deg, rgba(43, 28, 16, 0.78), rgba(135, 53, 7, 0.76));
  }

  section {
    position: relative;
    padding: clamp(40px, 8vw, 60px) 0;
  }

  .section-divider {
    overflow: visible;
  }

  .section-heading {
    text-align: center;
    margin-bottom: 32px;
  }

  .title-row {
    /* display: flex; */
    align-items: center;
    justify-content: center;
    gap: 14px;
    font-family: "Libre Baskerville", serif;
    font-size: clamp(1.9rem, 4.2vw, 3.1rem);
    line-height: 1.1;
    font-weight: 700;
  }

  .title-row span {
    color: var(--gold);
    font-family: "Great Vibes", cursive;
    font-size: 1.3em;
    font-weight: 400;
  }

  .section-heading p {
    margin: 10px auto 0;
    max-width: 730px;
    color: var(--muted);
    font-family: "Libre Baskerville", serif;
    line-height: 1.8;
  }

  .about-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(28px, 5vw, 58px);
    align-items: center;
  }

  .image-frame {
    position: relative;
    border: 1px solid rgba(255, 192, 100, 0.5);
    padding: 10px;
    background: linear-gradient(135deg, rgba(255, 192, 100, 0.18), rgba(5, 5, 5, 0.55));
    box-shadow: var(--shadow);
  }

  .image-frame::before {
    content: "";
    position: absolute;
    inset: 7px;
    border: 1px solid rgba(217, 144, 53, 0.28);
    pointer-events: none;
  }

  .image-frame img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    filter: saturate(1.08) contrast(1.05);
  }

  .experience {
    position: absolute;
    top: 250px;
    right: -28px;
    width: 132px;
    height: 132px;
    display: grid;
    place-items: center;
    text-align: center;
    border-radius: 50%;
    color: #180d05;
    background: radial-gradient(circle, #ffe0a0 0%, #d78d34 70%);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.38);
    animation: pulseGlow 2.6s ease-in-out infinite;
  }

  .experience strong {
    display: block;
    font-family: "Cinzel", serif;
    font-size: 2.4rem;
    line-height: 1;
  }

  .experience span {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
  }

  .eyebrow {
    margin: 0 0 -12px;
    color: var(--gold-light);
    font-family: "Great Vibes", cursive;
    font-size: 2.25rem;
  }

  .content h2 {
    margin: 0 0 -14px;
    font-family: "Libre Baskerville", serif;
    font-size: clamp(2rem, 4vw, 3.35rem);
    line-height: 1.15;
  }

  .content h2 span {
    color: var(--gold);
  }

  .content p {
    color: var(--muted);
    line-height: 1.9;
    text-align: justify;
  }

  /* CAROUSEL SLIDER STYLES */
  .applications-slider-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 20px 0;
    cursor: grab;
  }

  .applications-slider-container:active {
    cursor: grabbing;
  }

  .applications {
    display: flex;
    gap: 24px;
    will-change: transform;
  }

  @property --border-angle {
    syntax: "<angle>";
    inherits: false;
    initial-value: 0deg;
  }

  .card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: #070706;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    flex: 0 0 calc((100% - (24px * 2)) / 3);
    padding: 2px;
    z-index: 1;
    user-select: none;
  }

  .card::before {
    content: "";
    position: absolute;
    z-index: -2;
    inset: 0;
    background: conic-gradient(from var(--border-angle),
        transparent 30%,
        var(--gold-light) 45%,
        #ffffff 50%,
        var(--gold-light) 55%,
        transparent 70%);
    border-radius: 12px;
    animation: carLightDrive 8s linear infinite;
  }

  .card::after {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 2px;
    background: linear-gradient(180deg, rgba(22, 17, 12, 0.98), rgba(7, 7, 6, 1));
    border-radius: 10px;
  }

  .card:hover {
    transform: translateY(-9px);
  }

  @keyframes carLightDrive {
    0% {
      --border-angle: 0deg;
    }

    100% {
      --border-angle: 360deg;
    }
  }

  .card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    opacity: 0.9;
    border-radius: 10px 10px 0 0;
    transition: transform 0.45s ease, opacity 0.45s ease;
  }

  .card:hover img {
    transform: scale(1.04);
  }

  .card-body {
    position: relative;
    z-index: 1;
    padding: 22px 24px 26px;
    text-align: center;
  }

  .card h3 {
    margin: 0;
    font-family: "Great Vibes", cursive;
    font-size: clamp(2rem, 3vw, 2.6rem);
    color: #fff4df;
  }

  .card p {
    margin: 8px 0 18px;
    color: var(--muted);
    line-height: 1.7;
    font-size: 0.95rem;
  }

  .card .btn {
    margin-top: 10px;
    padding: 8px 22px;
    font-size: 0.85rem;
    min-height: 38px;
  }

  .badge {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 8px 18px;
    border: 1px solid rgba(255, 192, 100, 0.45);
    border-radius: 3px;
    color: var(--gold-light);
    background: rgba(118, 48, 9, 0.45);
    font-weight: 700;
  }

  /* CLIENT LOGO SECTION STYLES */
  .client-logos-section {
    background: rgba(10, 8, 6, 0.6);
    border-top: 1px solid rgba(217, 144, 53, 0.15);
    border-bottom: 1px solid rgba(217, 144, 53, 0.15);
    padding: 60px 0;
    overflow: hidden;
  }

  .logo-marquee {
    display: flex;
    width: 200%;
    animation: marqueeScroll 20s linear infinite;
  }

  .logo-track {
    display: flex;
    justify-content: space-around;
    width: 100%;
    align-items: center;
    gap: 25px;
  }

  .logo-track img {
    max-height: 47px;
    width: auto;
    gap: 20px;
    object-fit: contain;
    /* filter: grayscale(1) brightness(0.85) contrast(1.2);
      opacity: 0.6; */
    transition: opacity 0.3s ease, filter 0.3s ease;
  }

  .logo-track img:hover {
    filter: grayscale(0) brightness(1);
    opacity: 1;
  }

  @keyframes marqueeScroll {
    0% {
      transform: translateX(0%);
    }

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

  /* HAVE YOUR PART COL-6 INTERFACE GRID WITH RUNNING BORDER & SOLID BLACK OVERLAY CENTERED ON HOVER */
  .part-made-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 40px;
  }

  .part-made-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    height: 380px;
    padding: 2px;
    z-index: 1;
    box-shadow: var(--shadow);
  }

  .part-made-card::before {
    content: "";
    position: absolute;
    z-index: -2;
    inset: 0;
    background: conic-gradient(from var(--border-angle),
        transparent 30%,
        var(--gold-light) 45%,
        #ffffff 50%,
        var(--gold-light) 55%,
        transparent 70%);
    border-radius: 12px;
    animation: carLightDrive 8s linear infinite;
  }

  .part-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    background: #000000;
    border-radius: 10px;
    overflow: hidden;
    z-index: 1;
  }

  .part-card-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease;
  }

  .part-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.5) 70%, rgba(0, 0, 0, 0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    text-align: left;
    transition: background 0.4s ease, justify-content 0.4s ease, text-align 0.4s ease;
  }

  .part-made-card:hover .part-card-overlay {
    background: rgba(0, 0, 0, 0.85);
    justify-content: center;
    text-align: center;
  }

  .part-made-card:hover img {
    transform: scale(1.05);
    opacity: 0.15;
  }

  .part-card-overlay h3 {
    font-family: "Libre Baskerville", serif;
    font-size: clamp(1.2rem, 2.5vw, 1.55rem);
    color: #ffffff;
    margin: 0;
    transition: color 0.4s ease;
  }

  .part-card-hidden-text {
    max-height: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: max-height 0.4s ease, opacity 0.4s ease, transform 0.4s ease;
    color: var(--muted);
    font-size: 0.94rem;
    line-height: 1.6;
  }

  .part-made-card:hover .part-card-hidden-text {
    max-height: 150px;
    opacity: 1;
    transform: translateY(0);
    margin-top: 14px;
  }

  .part-made-card:hover h3 {
    color: var(--gold-light);
  }

  /* ASYMMETRIC MASONRY GALLERY GRID (MATCHING IMAGE_CD354E.PNG) */
  .gallery-asymmetric-masonry {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    margin-top: 36px;
    width: 100%;
  }

  .gallery-masonry-item {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 192, 100, 0.25);
    box-shadow: var(--shadow);
    cursor: pointer;
  }

  .gallery-masonry-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.1) saturate(1.05);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  }

  .gallery-masonry-item:hover img {
    transform: scale(1.05);
  }

  .gallery-masonry-item.span-col-2 {
    grid-column: span 2;
    aspect-ratio: 4 / 3.4;
  }

  .gallery-masonry-item.span-col-3 {
    grid-column: span 3;
    aspect-ratio: 4 / 2.5;
  }

  .gallery-actions-footer {
    display: flex;
    justify-content: center;
    margin-top: 42px;
  }

  /* LIGHTBOX LIGHT DESIGN POPUP FRAMEWORKS */
  .gallery-lightbox-modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(4, 4, 3, 0.96);
    backdrop-filter: blur(24px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
  }

  .gallery-lightbox-modal.popup-active {
    opacity: 1;
    pointer-events: auto;
  }

  .lightbox-modal-container {
    position: relative;
    max-width: min(90vw, 920px);
    max-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .lightbox-modal-container img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.85);
    border: 1px solid rgba(255, 192, 100, 0.25);
    border-radius: 4px;
    transform: scale(0.92);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  }

  .gallery-lightbox-modal.popup-active .lightbox-modal-container img {
    transform: scale(1);
  }

  .lightbox-modal-close {
    position: absolute;
    top: -54px;
    right: 0;
    background: transparent;
    border: 0;
    color: #ffffff;
    font-size: 2.4rem;
    cursor: pointer;
    transition: color 0.25s ease;
  }

  .lightbox-modal-close:hover {
    color: var(--gold-light);
  }

  .lightbox-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(18, 16, 14, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    font-size: 1.6rem;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.25s ease;
    user-select: none;
  }

  .lightbox-nav-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #211207;
  }

  .lightbox-nav-btn.prev-btn {
    left: -80px;
  }

  .lightbox-nav-btn.next-btn {
    right: -80px;
  }

  .story {
    min-height: 430px;
    display: grid;
    align-items: center;
    background:
      linear-gradient(90deg, rgba(8, 8, 7, 0.98) 0%, rgba(8, 8, 7, 0.76) 45%, rgba(8, 8, 7, 0.18) 100%),
      url("../image/banner/b5.png") right center / cover no-repeat;
  }

  .story .content {
    max-width: 560px;
  }

  .story .content h2 {
    font-style: italic;
  }

  .footer {
    padding: 42px 0 26px;
    border-top: 1px solid rgba(217, 144, 53, 0.32);
    background: rgba(6, 6, 5, 0.94);
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.8fr 0.85fr 1.25fr;
    gap: 32px;
  }

  .footer h3,
  .footer h4 {
    margin: 0 0 16px;
    color: var(--gold-light);
    font-family: "Libre Baskerville", serif;
  }

  .footer p,
  .footer a,
  .footer li {
    color: var(--muted);
    line-height: 1.8;
    font-size: 0.94rem;
  }

  .footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .newsletter {
    display: flex;
    margin-top: 16px;
    border: 1px solid rgba(255, 192, 100, 0.34);
  }

  .newsletter input {
    min-width: 0;
    flex: 1;
    border: 0;
    padding: 13px 14px;
    color: var(--cream);
    background: rgba(255, 255, 255, 0.06);
    outline: none;
  }

  .newsletter button {
    border: 0;
    padding: 0 18px;
    color: #1f1005;
    background: var(--gold-light);
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
  }

  .copyright {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 243, 220, 0.64);
    text-align: center;
    font-size: 0.88rem;
  }

  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.72s ease, transform 0.72s ease;
  }

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

  @keyframes pulseGlow {

    0%,
    100% {
      box-shadow: 0 18px 34px rgba(0, 0, 0, 0.38), 0 0 0 rgba(217, 144, 53, 0);
    }

    50% {
      box-shadow: 0 18px 34px rgba(0, 0, 0, 0.38), 0 0 34px rgba(217, 144, 53, 0.46);
    }
  }

  @keyframes copyIn {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @media (max-width: 980px) {
    .nav {
      flex-wrap: wrap;
      min-height: 76px;
      padding: 10px 0;
    }

    .mobile-toggle {
      display: inline-grid;
      place-items: center;
    }

    .brand {
      min-width: 118px;
    }

    .brand img {
      width: clamp(116px, 22vw, 140px);
    }

    .quote-btn {
      margin-left: auto;
    }

    .nav-links a:hover::after,
    .nav-links a.active::after {
      width: 30%;
    }

    .nav-links {
      order: 4;
      display: none;
      flex-basis: 100%;
      flex-direction: column;
      align-items: stretch;
      gap: 0;
      padding: 8px 0 12px;
    }

    .nav-links.open {
      display: flex;
    }

    .nav-links a {
      padding: 13px 0;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-links a::after {
      bottom: 6px;
      left: -11px;
      transform: none;
    }

    .hero {
      min-height: clamp(500px, 60vw, 620px);
    }

    .hero-slide {
      background-position: center center;
      background-size: cover;
    }

    .hero-slide::before {
      background: linear-gradient(90deg, rgba(7, 6, 5, 0.9) 0%, rgba(7, 6, 5, 0.68) 34%, rgba(7, 6, 5, 0.2) 64%, rgba(7, 6, 5, 0.58) 100%), linear-gradient(180deg, rgba(7, 6, 5, 0.34) 0%, rgba(7, 6, 5, 0.06) 46%, rgba(7, 6, 5, 0.68) 100%), radial-gradient(circle at 72% 48%, rgba(255, 183, 80, 0.16), transparent 27rem);
    }

    .hero-content {
      max-width: 620px;
      padding: 54px 0 72px;
    }

    .about-grid,
    .footer-grid,
    .part-made-grid {
      grid-template-columns: 1fr 1fr;
    }

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

    .gallery-masonry-item.span-col-2,
    .gallery-masonry-item.span-col-3 {
      grid-column: span 1;
      aspect-ratio: 4 / 3;
    }

    .lightbox-nav-btn.prev-btn {
      left: 16px;
    }

    .lightbox-nav-btn.next-btn {
      right: 16px;
    }

    .card {
      flex: 0 0 calc((100% - 24px) / 2);
    }
  }

  @media (max-width: 680px) {
    .container {
      width: min(100% - 24px, 1120px);
      padding: 0 15px;
    }

    .brand {
      min-width: 0;
    }

    .brand img {
      width: 155px;
      max-height: 48px;
      border-radius: 5px;
    }

    .quote-btn {
      padding: 10px 13px;
      font-size: 0.82rem;
    }

    .hero {
      min-height: 560px;
    }

    .hero-slide {
      background-position: center center;
      background-size: cover;
    }

    .hero-content {
      max-width: 100%;
      padding: 30px 0 30px;
    }

    .hero-subtitle {
      width: 100%;
    }

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

    .hero-actions .btn {
      width: 100%;
    }

    .script-title {
      font-size: clamp(2.75rem, 17vw, 4.2rem);
    }

    .hero h1 {
      letter-spacing: 0.08em;
    }

    .about-grid,
    .footer-grid,
    .part-made-grid {
      grid-template-columns: 1fr;
    }

    .gallery-asymmetric-masonry {
      grid-template-columns: 1fr;
    }

    .gallery-masonry-item.span-col-2,
    .gallery-masonry-item.span-col-3 {
      grid-column: span 1;
      aspect-ratio: 4 / 3;
    }

    .experience {
      right: -14px;
      width: 110px;
      height: 110px;
      top: 184px;
    }

    .experience strong {
      font-size: 2rem;
    }

    .card {
      flex: 0 0 100%;
    }

    .newsletter {
      flex-direction: column;
    }

    .newsletter button {
      min-height: 44px;
    }
  }

  @media (max-width: 520px) {
    .nav {
      gap: 12px;
    }

    .quote-btn {
      display: none;
    }

    .mobile-toggle {
      margin-left: auto;
    }
  }

  /* Premium About Banner Styling */
  .about-banner {
    width: 100%;
    height: 400px;
    background: linear-gradient(rgb(6 8 20 / 40%), rgb(6 8 20 / 62%)), url(../image/banner/p6.png) center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  }

  .about-banner h1 {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    color: #ffc064;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
  }

  .about-banner p {
    color: #f8ead5;
    letter-spacing: 2px;
    font-size: 0.9rem;
    /* text-transform: uppercase; */
  }

  /* Subtle Glow Overlay */
  .about-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #10b981, transparent);
  }

  @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

  .main-card {
    display: flex;
    flex-direction: column;
    background-color: #111827;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  }

  @media (min-width: 768px) {
    .main-card {
      flex-direction: row;
    }
  }

  .img-area {
    width: 100%;
    height: 300px;
  }

  @media (min-width: 768px) {
    .img-area {
      width: 50%;
      height: auto;
    }
  }

  .img-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .content-area {
    width: 100%;
    background-color: #1f180f;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  @media (min-width: 768px) {
    .content-area {
      width: 50%;
      padding: 32px;
    }
  }

  .tag {
    color: #febf64;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
    /* margin-bottom: 1rem; */
  }

  h2 {
    font-family: "Libre Baskerville", serif;
    font-size: clamp(2rem, 4vw, 3.35rem);
    line-height: 1.15;
    font-size: 2.25rem;
    margin-bottom: 0px;
    line-height: 1.2;
    margin-top: 6px;
  }

  .description {
    color: #d5c3a7;
    text-align: justify;
    margin-bottom: 0px;
  }

  .contact-box {
    border-left: 2px solid #febf64;
    padding-left: 16px;
    margin-bottom: 2rem;
  }

  .btn {
    display: inline-block;
    border: 1px solid #febf64;
    color: #e6e0b0;
    padding: 12px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    justify-content: center;
    width: 250px;
    transition: all 0.3s;
    text-align: center;
  }

  .btn:hover {
    background-color: #febf64;
    color: #111827;
  }

  .grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 48px;
  }

  @media (min-width: 640px) {
    .grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (min-width: 1024px) {
    .grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  .card {
    background-color: #111827;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid #1f2937;
    transition: border-color 0.3s;
  }

  .card:hover {
    border-color: #febf64;
  }

  .card h4 {
    font-size: 1.25rem;
    margin-bottom: 8px;
  }

  .card p {
    color: #6b7280;
    font-size: 0.875rem;
  }



  @import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Inter:wght@300;400;600&display=swap');

  :root {
    --gold: #d4af37;
    --dark-bg: #1a1814;
    --text-gray: #e5e7eb;
  }


  /* Heading */
  .section-title {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    text-align: center;
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 80px;
  }

  /* Process Flow */
  .flow-container {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 40px;
    position: relative;
  }

  .step-card {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: 2px solid #333;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.6s ease;
    background: #262626;
  }

  .step-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--gold);
  }

  .step-card.active {
    border-color: var(--gold);
  }

  .img-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* opacity: 0.4; */
    transition: transform 0.8s ease;
  }

  .step-card:hover .img-bg {
    transform: scale(1.2);
  }

  .card-content {
    position: relative;
    z-index: 2;
    text-align: center;
  }

  /* Section 2: Specs */
  .specs-section {
    margin-top: 100px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding-top: 80px;
  }

  .specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .spec-card {
    background: rgba(0, 0, 0, 0.4);
    padding: 30px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 8px;
  }

  .spec-card h4 {
    color: var(--gold);
    margin-top: 0;
  }

  #flow-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
  }

  .step-card {
    flex: 1 1 200px;
    max-width: 250px;
    cursor: pointer;
    position: relative;
    transition: transform 0.3s ease;
  }

  @media (max-width: 600px) {
    .step-card {
      flex: 1 1 100%;
      max-width: 100%;
    }
  }