    /* OPTIONAL (recommended): add to <head> if you can
  */

    :root {
      /* Luxury wine palette */
      --bg-primary: #0b0809;
      --bg-secondary: #140c10;
      --bg-elevated: #1c1014;
      --bg-deep: #070506;

      --wine-900: #4a0f1a;
      --wine-700: #6b1524;
      --wine-500: #9b2237;
      --wine-400: #b3162e;

      --gold-500: #c8a35a;
      --gold-soft: #e2c27a;
      --gold-muted: rgba(200, 163, 90, 0.25);

      --text-primary: #f3e7cf;
      --text-secondary: rgba(243, 231, 207, 0.75);
      --text-muted: rgba(243, 231, 207, 0.55);

      --wine: var(--wine-500);
      --burgundy: var(--wine-700);
      --sand: var(--gold-500);
      --cream: var(--text-primary);
      --charcoal: var(--text-primary);
      --border: var(--gold-muted);

      /* Premium system */
      --bg: var(--bg-primary);
      --surface: linear-gradient(180deg, rgba(28, 16, 20, 0.9), rgba(20, 12, 16, 0.85));
      --surface-strong: linear-gradient(180deg, rgba(28, 16, 20, 0.96), rgba(20, 12, 16, 0.92));
      --surface-dark: rgba(74, 15, 26, 0.3);

      --ring: var(--gold-500);

      --radius-sm: 12px;
      --radius-md: 16px;
      --radius-lg: 22px;

      --shadow-sm: 0 20px 60px rgba(0, 0, 0, 0.55);
      --shadow-md: 0 24px 68px rgba(0, 0, 0, 0.62);
      --shadow-lg: 0 32px 80px rgba(0, 0, 0, 0.72);

      --hairline: rgba(200, 163, 90, 0.18);
      --hairline-2: var(--gold-muted);

      /* Typography */
      --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
      --font-serif: "Fraunces", Georgia, "Times New Roman", Times, serif;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: var(--font-sans);
      color: var(--charcoal);
      background:
        radial-gradient(900px 500px at 15% 0%, rgba(200, 163, 90, 0.08), transparent 60%),
        radial-gradient(800px 500px at 85% 10%, rgba(155, 34, 55, 0.12), transparent 60%),
        linear-gradient(180deg, #0B0809, #070506);
      line-height: 1.65;
      letter-spacing: 0.01em;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    /* Subtle premium grain (optional). If you don't want it, delete this block. */
    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      opacity: 0.05;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='320' height='320'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='320' height='320' filter='url(%23n)' opacity='.65'/%3E%3C/svg%3E");
      mix-blend-mode: multiply;
    }

    img {
      max-width: 100%;
      display: block;
    }

    .container {
      width: min(1120px, calc(100% - 3rem));
      margin-inline: auto;
    }

    h1,
    h2,
    h3,
    h4 {
      font-family: var(--font-serif);
      line-height: 1.15;
      margin: 0;
      color: var(--burgundy);
      letter-spacing: 0.02em;
    }

    h1 {
      letter-spacing: 0.01em;
    }

    p {
      margin-top: 0;
      color: var(--text-secondary);
    }

    /* Header */
    .top-nav {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(11, 8, 9, 0.82);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--hairline-2);
      box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
    }

    .top-nav__inner {
      width: min(1120px, calc(100% - 3rem));
      margin-inline: auto;
      position: relative;
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      gap: 0.65rem 1rem;
      padding: 0.9rem 0;
    }

    .top-nav__brand {
      display: inline-flex;
      align-items: center;
    }

    .top-nav__brand-icon {
      width: 38px;
      height: 38px;
      border-radius: 8px;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.35);
      transition: transform 0.25s ease;
      object-fit: cover;
    }

    .top-nav__brand:hover .top-nav__brand-icon {
      transform: scale(1.05);
    }

    .top-nav__current {
      display: block;
      justify-self: center;
      font-family: var(--font-serif);
      font-size: 1rem;
      letter-spacing: 0.06rem;
      color: var(--text-primary);
      white-space: nowrap;
      text-transform: uppercase;
    }

    .top-nav__toggle {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 1px solid var(--hairline-2);
      border-radius: 10px;
      background: rgba(20, 12, 16, 0.75);
      color: var(--text-primary);
      width: 42px;
      height: 42px;
      font-size: 1.3rem;
      line-height: 1;
      cursor: pointer;
      transition: background 0.2s ease, transform 0.2s ease;
    }

    .top-nav__toggle:hover,
    .top-nav__toggle:focus-visible {
      background: rgba(200, 163, 90, 0.12);
      transform: translateY(-1px);
    }

    .top-nav__links {
      grid-column: 1 / -1;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: stretch;
      gap: 0.25rem;
      max-height: 0;
      opacity: 0;
      overflow: hidden;
      transform: translateY(-8px);
      pointer-events: none;
      transition: max-height 0.25s ease, opacity 0.2s ease, transform 0.25s ease;
    }

    .top-nav__group {
      display: flex;
      flex-direction: column;
      gap: 0.25rem;
    }

    .top-nav.nav-open .top-nav__links {
      max-height: 420px;
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
      margin-top: 0.35rem;
      padding-bottom: 0.25rem;
    }

    .top-nav__link {
      position: relative;
      display: block;
      width: 100%;
      color: var(--text-secondary);
      text-decoration: none;

      font-family: var(--font-sans);
      font-weight: 100;
      /* thinner */
      font-size: 0.9rem;

      letter-spacing: 0.16rem;
      text-transform: uppercase;
      padding: 0.7rem 0.9rem;
      border-radius: 10px;
      transition: color 0.2s ease, background 0.2s ease;
    }

    .top-nav__link::after {
      content: "";
      position: absolute;
      left: 0.9rem;
      right: 0.9rem;
      bottom: 0.36rem;
      height: 2px;
      border-radius: 999px;
      background: linear-gradient(90deg, rgba(200, 163, 90, 0.55), var(--gold-soft));
      transform: scaleX(0);
      transform-origin: left center;
      transition: transform 0.25s ease;
    }

    .top-nav__link:hover,
    .top-nav__link:focus-visible {
      color: var(--gold-soft);
      background: rgba(200, 163, 90, 0.12);
    }

    .top-nav__link:hover::after,
    .top-nav__link:focus-visible::after {
      transform: scaleX(1);
    }

    @media (min-width: 769px) {

      .top-nav__inner {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
        grid-template-rows: auto;
        /* force a single row */
        align-items: center;
        gap: clamp(1rem, 2vw, 2.2rem);
      }

      /* CENTER ICON */

      .top-nav__brand {
        grid-column: 2;
        grid-row: 1;
        /* ensure same row as nav groups */
        justify-self: center;
        display: flex;
        align-items: center;
      }

      .top-nav__brand-icon {
        width: 48px;
        height: 48px;
        display: block;
      }

      .top-nav__current {
        display: none;
      }

      .top-nav__toggle {
        display: none;
      }

      /* IMPORTANT: keep container so grid placement stays stable */
      .top-nav__links {
        display: contents;
        /* keep if your HTML relies on it */
        max-height: none;
        opacity: 1;
        overflow: visible;
        transform: none;
        pointer-events: auto;
        margin: 0;
        padding: 0;
      }

      /* NAV GROUPS */

      .top-nav__group {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: clamp(0.65rem, 1.1vw, 1.3rem);
      }

      .top-nav__group--left {
        grid-column: 1;
        grid-row: 1;
        /* force same row */
        justify-self: end;
        justify-content: flex-end;
      }

      .top-nav__group--right {
        grid-column: 3;
        grid-row: 1;
        /* force same row */
        justify-self: start;
        justify-content: flex-start;
      }

      /* LINKS */

      .top-nav__link {
        width: auto;
        display: flex;
        align-items: center;
        padding: 0.4rem 0.1rem 0.55rem;
        border-radius: 0;
        white-space: nowrap;
        background: transparent;
      }

      .top-nav__link::after {
        left: 0;
        right: 0;
        bottom: 0.2rem;
      }

      .top-nav__link:hover,
      .top-nav__link:focus-visible {
        color: var(--gold-soft);
        background: transparent;
      }

    }

    /* Buttons */
    .btn {
      background: linear-gradient(180deg, #b3162e, #9b2237);
      color: #fff;
      border: 1px solid rgba(200, 163, 90, 0.25);
      padding: 0.78rem 1.25rem;
      border-radius: 999px;
      cursor: pointer;
      font-weight: 600;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.55rem;
      box-shadow: 0 18px 50px rgba(155, 34, 55, 0.25);
      transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
    }

    .btn:hover,
    .btn:focus-visible {
      transform: translateY(-2px);
      box-shadow: 0 28px 70px rgba(0, 0, 0, 0.6);
      filter: saturate(1.1);
    }

    .btn-secondary {
      background: rgba(24, 12, 16, 0.6);
      color: var(--text-primary);
      border: 1px solid rgba(200, 163, 90, 0.25);
      box-shadow: none;
      backdrop-filter: blur(6px);
    }

    .btn-secondary:hover,
    .btn-secondary:focus-visible {
      background: rgba(28, 16, 20, 0.85);
      border-color: var(--gold-500);
    }

    /* Sections spacing - slightly more luxurious */
    section {
      padding: 5.5rem 0;
    }

    /* NAMA header: make it feel more cinematic */
    .nama-header {
      min-height: 62vh;
      position: relative;
      isolation: isolate;
      display: flex;
      align-items: flex-end;
      padding: 6rem 0 3rem;
      background-image:
        radial-gradient(900px 600px at 75% 20%, rgba(200, 163, 90, 0.16), transparent 60%),
        url("images/NAMA-BG.avif");
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      /* border-bottom: 1px solid rgba(200, 163, 90, 0.25); */
    }

    .nama-header::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      background:
        linear-gradient(135deg, rgba(7, 5, 6, 0.82), rgba(7, 5, 6, 0.52)),
        linear-gradient(180deg, rgba(7, 5, 6, 0.38), rgba(7, 5, 6, 0.78));
    }

    .nama-header .container {
      position: relative;
      z-index: 1;
    }

    .nama-copy {
      width: min(680px, 100%);
      margin-left: auto;
      text-align: right;
      color: var(--text-primary);
      text-shadow:
        0 3px 6px rgba(0, 0, 0, 1),
        0 12px 24px rgba(0, 0, 0, 0.95),
        0 30px 60px rgba(0, 0, 0, 0.85);
    }

    .nama-copy p {
      margin: 0;
      font-size: 0.95rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--text-primary);

      text-shadow:
        0 1px 2px rgba(0, 0, 0, 1),
        0 4px 8px rgba(0, 0, 0, 0.9);
    }

    .nama-copy h2 {
      margin-top: 0.7rem;
      font-size: clamp(2rem, 5vw, 3.15rem);
      letter-spacing: 0.09em;
      color: var(--text-primary);

      text-shadow:
        0 2px 4px rgba(0, 0, 0, 1),
        0 10px 22px rgba(0, 0, 0, 0.9),
        0 28px 50px rgba(0, 0, 0, 0.8);
    }

    /* Hero */
    .hero {
      position: relative;
      padding: 4.5rem 0;
      background:
        radial-gradient(860px 460px at 18% 0%, rgba(200, 163, 90, 0.16), transparent 62%),
        radial-gradient(760px 520px at 85% 10%, rgba(155, 34, 55, 0.18), transparent 62%),
        url("images/NAMA-BG.avif") center / cover no-repeat;
      isolation: isolate;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 0;
      background:
        linear-gradient(120deg, rgba(7, 5, 6, 0.85), rgba(20, 12, 16, 0.68)),
        linear-gradient(180deg, rgba(7, 5, 6, 0.38), rgba(7, 5, 6, 0.78));
      backdrop-filter: saturate(0.9) contrast(1.05);
      -webkit-backdrop-filter: saturate(0.9) contrast(1.05);
      pointer-events: none;
    }

    .hero .container {
      position: relative;
      z-index: 1;
    }

    .hero-content {
      max-width: 1080px;
      margin-inline: auto;
    }

    .tagline {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.35rem 0.85rem;
      border: 1px solid rgba(200, 163, 90, 0.25);
      border-radius: 999px;
      font-size: 0.8rem;
      color: var(--gold-soft);
      margin-bottom: 1.1rem;
      background: rgba(24, 12, 16, 0.72);
      backdrop-filter: blur(6px);
    }

    .tagline::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 999px;
      background: radial-gradient(circle at 30% 30%, var(--gold-soft), var(--gold-500));
      box-shadow: 0 0 0 3px rgba(200, 163, 90, 0.2);
    }

    .hero h1 {
      font-size: clamp(2.1rem, 5vw, 3.25rem);
      margin-bottom: 1rem;
    }

    .hero-sub {
      max-width: 62ch;
      font-size: 1.08rem;
      margin-bottom: 0;
      color: var(--text-primary);
      text-shadow: 0 3px 16px rgba(0, 0, 0, 0.78);
    }

    .about-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
      gap: 1.3rem;
      margin-bottom: 1.8rem;
      align-items: center;
    }

    .about-item {
      border-radius: var(--radius-md);
      overflow: hidden;
      min-height: 220px;
    }

    .about-item--text {
      margin: 0;
      padding: 1.35rem;
      max-width: none;
      display: flex;
      align-items: center;
      text-align: center;
      justify-content: center;
    }

    .about-item--logo {
      border: 1px solid rgba(200, 163, 90, 0.28);
      box-shadow: var(--shadow-sm);
      min-height: 220px;
      min-width: 220px;
      max-width: 280px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 1.25rem;
      background: rgba(14, 7, 9, 0.55);
    }

    .about-item--logo img {
      width: 100%;
      height: auto;
      object-fit: contain;
      filter: saturate(1.03) contrast(1.02);
    }

    .hero-actions {
      display: flex;
      gap: 0.9rem;
      flex-wrap: wrap;
      margin-bottom: 1.6rem;
      justify-content: center;
    }

    .trust-points {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      gap: 0.65rem;
    }

    .trust-points li {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      color: var(--text-secondary);
    }

    .trust-points li::before {
      content: "";
      width: 9px;
      height: 9px;
      border-radius: 999px;
      background: radial-gradient(circle at 30% 30%, var(--gold-soft), var(--gold-500));
      box-shadow: 0 0 0 4px rgba(200, 163, 90, 0.2);
    }



    .section-head {
      max-width: 720px;
      margin-bottom: 2.2rem;
    }

    .notice {
      margin-top: 0.8rem;
      color: var(--text-muted);
      font-size: 0.98rem;
    }

    /* Filters */
    .filter-tabs {
      display: inline-flex;
      gap: 0.35rem;
      padding: 0.35rem;
      border: 1px solid rgba(200, 163, 90, 0.25);
      border-radius: 999px;
      margin-bottom: 1.4rem;
      background: rgba(24, 12, 16, 0.75);
      backdrop-filter: blur(6px);
    }

    .filter-btn {
      border: none;
      background: transparent;
      color: var(--text-secondary);
      border-radius: 999px;
      padding: 0.5rem 1.05rem;
      cursor: pointer;
      transition: 0.2s ease;
    }

    .filter-btn.active {
      background: linear-gradient(180deg, #b3162e, #9b2237);
      color: #fff;
      box-shadow: 0 18px 50px rgba(155, 34, 55, 0.25);
    }

    /* Cards */
    .portfolio-grid {
      display: grid;
      grid-auto-flow: column;
      grid-auto-columns: minmax(240px, 320px);
      gap: 1.2rem;
      overflow-x: auto;
      overscroll-behavior-x: contain;
      scroll-snap-type: x mandatory;
      scroll-padding: 0.25rem;
      padding: 0.25rem;
      margin-inline: -0.25rem;
      -webkit-overflow-scrolling: touch;
    }

    .portfolio-grid::-webkit-scrollbar {
      height: 0.55rem;
    }

    .portfolio-grid::-webkit-scrollbar-thumb {
      background: rgba(200, 163, 90, 0.4);
      border-radius: 999px;
    }

    .portfolio-grid .card {
      scroll-snap-align: start;
      margin: 0;
      min-height: 100%;
    }

    .card {
      background: var(--surface);
      border: 1px solid rgba(200, 163, 90, 0.25);
      border-radius: var(--radius-md);
      padding: 1.05rem;
      box-shadow: var(--shadow-sm);
      transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
      position: relative;
      overflow: hidden;
    }

    .card::after {
      content: "";
      position: absolute;
      inset: -1px;
      background: radial-gradient(500px 220px at 20% 0%, rgba(200, 163, 90, 0.20), transparent 55%);
      opacity: 0;
      transition: 0.25s ease;
      pointer-events: none;
    }

    .card:hover {
      transform: translateY(-4px);
      border-color: #c8a35a;
      box-shadow: var(--shadow-md);
    }

    .card:hover::after {
      opacity: 1;
    }

    .product-image {
      width: 100%;
      aspect-ratio: 4 / 5;
      object-fit: cover;
      border-radius: 12px;
      margin-bottom: 0.9rem;
      border: 1px solid rgba(200, 163, 90, 0.25);
      background: rgba(24, 12, 16, 0.8);
    }

    .accent {
      color: var(--wine);
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .card h3 {
      font-size: 1.22rem;
      margin-bottom: 0.5rem;
    }

    .meta {
      margin: 0;
      font-size: 0.93rem;
      color: var(--text-muted);
    }

    /* About / Stats / Contact grids */
    .about-grid,
    .contact-grid {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      gap: 1.35rem;
      align-items: start;
    }

    .about-copy {
      grid-column: span 7;
    }

    .stats {
      grid-column: span 5;
      display: grid;
      gap: 0.95rem;
    }

    .stat {
      border: 1px solid rgba(200, 163, 90, 0.25);
      border-radius: var(--radius-md);
      background: radial-gradient(520px 240px at 20% 0%, rgba(200, 163, 90, 0.14), transparent 60%), var(--surface-strong);
      padding: 1.1rem;
      box-shadow: var(--shadow-sm);
    }

    .stat strong {
      font-size: 1.75rem;
      color: var(--burgundy);
      display: block;
      font-family: var(--font-serif);
      letter-spacing: 0.01em;
    }

    /* Service/Testimonial/Footer grids */
    .service-grid,
    .testimonial-grid,
    .footer-grid {
      display: grid;
      gap: 1.1rem;
    }

    .service-grid {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .testimonial-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .footer-grid {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .service-icon {
      width: 38px;
      height: 38px;
      color: var(--wine);
      margin-bottom: 0.7rem;
    }

    /* Timeline */
    .timeline {
      position: relative;
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 1rem;
    }

    .timeline::before {
      content: "";
      position: absolute;
      top: 18px;
      left: 8%;
      right: 8%;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(200, 163, 90, 0.9), transparent);
    }

    .step {
      position: relative;
      padding-top: 2.1rem;
    }

    .step::before {
      content: "";
      position: absolute;
      top: 9px;
      left: 0;
      width: 16px;
      height: 16px;
      border-radius: 999px;
      background: radial-gradient(circle at 30% 30%, var(--gold-soft), var(--wine-500));
      border: 2px solid rgba(11, 8, 9, 0.95);
      box-shadow: 0 0 0 4px rgba(200, 163, 90, 0.2);
    }

    /* Quotes */
    blockquote {
      margin: 0;
      padding: 1.1rem 1.1rem 1.0rem;
      border-left: 3px solid rgba(200, 163, 90, 0.85);
      background: var(--surface);
      border-radius: var(--radius-md);
      border: 1px solid rgba(200, 163, 90, 0.25);
      box-shadow: var(--shadow-sm);
    }

    /* Forms */
    form {
      grid-column: span 7;
      border: 1px solid rgba(200, 163, 90, 0.25);
      border-radius: var(--radius-md);
      padding: 1.1rem;
      background: var(--surface);
      box-shadow: var(--shadow-sm);
    }

    .contact-panel {
      grid-column: 4 / span 6;
      width: 100%;
    }

    #contact .contact-panel {
      max-width: 760px;
      margin-inline: auto;
    }

    .field {
      margin-bottom: 1rem;
    }

    label {
      font-size: 0.9rem;
      font-weight: 600;
      display: block;
      margin-bottom: 0.4rem;
      color: var(--text-secondary);
    }

    input,
    select,
    textarea {
      width: 100%;
      padding: 0.72rem 0.8rem;
      border-radius: 12px;
      border: 1px solid rgba(200, 163, 90, 0.35);
      background: rgba(24, 12, 16, 0.65);
      color: var(--charcoal);
      font: inherit;
      transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    }

    input:focus,
    select:focus,
    textarea:focus,
    .filter-btn:focus-visible,
    .btn:focus-visible,
    .top-nav__link:focus-visible {
      outline: 2px solid #c8a35a;
      outline-offset: 2px;
      box-shadow: 0 0 0 6px rgba(200, 163, 90, 0.15);
    }

    .error {
      color: #9b2f2f;
      font-size: 0.83rem;
      min-height: 1.1em;
    }

    .success {
      margin-top: 0.8rem;
      color: #2f6f44;
      font-weight: 600;
    }

    /* Footer */
    footer {
      background:
        radial-gradient(900px 500px at 10% 0%, rgba(200, 163, 90, 0.12), transparent 55%),
        linear-gradient(180deg, #140c10, #070506);
      color: var(--text-secondary);
      padding: 3.2rem 0 1.2rem;
      border-top: 1px solid rgba(200, 163, 90, 0.25);
    }

    footer h4 {
      color: var(--text-primary);
      margin-bottom: 0.8rem;
      letter-spacing: 0.04em;
    }

    footer ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    footer a {
      color: var(--text-secondary);
      text-decoration: none;
    }

    footer a:hover {
      color: var(--gold-soft);
      text-decoration: underline;
    }

    .legal {
      border-top: 1px solid rgba(200, 163, 90, 0.25);
      margin-top: 1.6rem;
      padding-top: 0.95rem;
      font-size: 0.88rem;
      color: var(--text-muted);
    }

    /* Modal */
    .modal {
      position: fixed;
      inset: 0;
      background: rgba(7, 5, 6, 0.72);
      display: none;
      place-items: center;
      z-index: 40;
      backdrop-filter: blur(6px);
    }

    .modal.open {
      display: grid;
    }

    .modal-content {
      width: min(560px, calc(100% - 2rem));
      background: linear-gradient(180deg, rgba(28, 16, 20, 0.95), rgba(20, 12, 16, 0.9));
      border: 1px solid rgba(200, 163, 90, 0.25);
      border-radius: var(--radius-md);
      padding: 1.1rem;
      box-shadow: var(--shadow-lg);
    }

    /* Responsive */
    @media (max-width: 980px) {

      .hero-content,
      .about-copy,
      .stats,
      form,
      .contact-panel {
        grid-column: 1/-1;
      }

      .service-grid,
      .testimonial-grid,
      .timeline,
      .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .timeline::before {
        display: none;
      }
    }

    @media (max-width: 680px) {
      .top-nav__inner {
        width: min(1120px, calc(100% - 2rem));
      }

      .top-nav__current {
        font-size: 0.92rem;
      }

      .nama-header {
        background-attachment: scroll;
        min-height: 36vh;
        padding: 4rem 0 2.3rem;
      }

      .about-layout {
        grid-template-columns: 1fr;
      }

      .about-item--logo {
        order: 1;
        justify-self: center;
        max-width: 240px;
      }

      .about-item--text-1 {
        order: 2;
      }

      .about-item--text-2 {
        order: 3;
      }

      .service-grid,
      .testimonial-grid,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .portfolio-grid {
        grid-auto-columns: minmax(220px, 82vw);
        gap: 0.9rem;
      }
    }

    /* Reduced motion */
    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }


      .btn,
      .card,
      .top-nav__link {
        transition: none;
      }
    }

    /* ===========================
   Winery Logo Buttons
   =========================== */

    .winery-section {
      position: relative;
      padding: 5rem 0;
      isolation: isolate;

      background:
        radial-gradient(800px 400px at 15% 0%, rgba(200, 163, 90, 0.10), transparent 60%),
        radial-gradient(600px 400px at 90% 10%, rgba(155, 34, 55, 0.15), transparent 60%),
        url("images/landscapes/landscape-winery-1.jpg") center / cover no-repeat;
    }

    .winery-section::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      background:
        linear-gradient(180deg, rgba(7, 5, 6, 0.70), rgba(7, 5, 6, 0.60)),
        radial-gradient(120% 90% at 50% 20%, rgba(11, 8, 9, 0.20), rgba(11, 8, 9, 0.78));
      backdrop-filter: saturate(0.95) contrast(1.08);
      -webkit-backdrop-filter: saturate(0.95) contrast(1.08);
    }

    .winery-section>.container {
      position: relative;
      z-index: 1;
    }

    .winery-section .section-head h2,
    .winery-section .section-head .notice {
      color: var(--text-primary);
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.65);
    }

    .winery-buttons {

      display: flex;
      gap: 1.25rem;

      flex-wrap: wrap;
      justify-content: center;
      align-items: center;

      margin-top: 2rem;
    }

    /* Winery Button */

    .winery-btn {

      position: relative;

      display: flex;
      align-items: center;
      justify-content: center;

      width: 340px;
      height: 210px;

      padding: 1.5rem;

      border-radius: var(--radius-md);

      border: 1px solid var(--hairline-2);

      background:
        radial-gradient(240px 120px at 30% 10%, rgba(200, 163, 90, 0.10), transparent 70%),
        linear-gradient(180deg, rgba(28, 16, 20, 0.92), rgba(20, 12, 16, 0.85));

      box-shadow: var(--shadow-sm);

      overflow: hidden;

      transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
    }

    /* glow highlight */

    .winery-btn::before {

      content: "";
      position: absolute;
      inset: -40%;

      background: conic-gradient(from 180deg,
          rgba(200, 163, 90, 0),
          rgba(200, 163, 90, 0.35),
          rgba(155, 34, 55, 0.25),
          rgba(200, 163, 90, 0));

      opacity: 0;
      transition: opacity 0.3s ease;
    }

    /* logo */

    .winery-btn img {

      max-width: 90%;
      max-height: 120px;

      object-fit: contain;

      filter: brightness(0.95) contrast(1.05);

      transition: transform 0.25s ease, filter 0.25s ease;
    }

    /* hover animation */

    .winery-btn:hover {

      transform: translateY(-4px) scale(1.03);

      border-color: var(--gold-500);

      box-shadow: var(--shadow-md);
    }

    .winery-btn:hover::before {
      opacity: 1;
    }

    .winery-btn:hover img {

      transform: scale(1.06);

      filter: brightness(1.05) contrast(1.08);
    }

    /* click animation */

    .winery-btn:active {

      transform: scale(0.97);

      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    }

    /* ===========================
   Mobile Layout
   =========================== */

    @media (max-width: 720px) {

      .winery-buttons {

        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: stretch;

        overflow: visible;

        padding: 0;
        margin: 2rem 0 0;
      }

      .winery-btn {

        width: 100%;
        max-width: 420px;
        min-height: 180px;
        height: auto;

        margin-inline: auto;
      }

    }

    .showcase-links {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1rem;
    }

    .showcase-link-card {
      text-decoration: none;
      color: inherit;
    }

    .showcase-link-card h3 {
      color: var(--text-primary);
      margin-top: 0.35rem;
      margin-bottom: 0.55rem;
    }

    .winery-btn--text {
      text-decoration: none;
    }

    .winery-btn--text span {
      color: var(--text-primary);
      font-family: var(--font-serif);
      font-size: 1.25rem;
      text-align: center;
    }

    .feature-hero {
      min-height: 42vh;
      background-size: cover;
      background-position: center;
      display: flex;
      align-items: end;
      padding: 5rem 0 2rem;
    }

    .feature-hero h1 {
      color: var(--text-primary);
      font-size: clamp(2rem, 6vw, 3.2rem);
    }

    .feature-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1rem;
    }

    .feature-card h2 {
      color: var(--text-primary);
      margin-bottom: 0.8rem;
    }

    .feature-card--single {
      grid-column: 1 / -1;
    }

    .festival-section__gallery {
      padding-top: 2rem;
    }

    .festival-gallery {
      display: grid;
      gap: 1rem;
      margin-top: 1rem;
    }

    .festival-gallery__focus {
      margin: 0;
      padding: 0.85rem;
    }

    .festival-gallery__focus-trigger {
      width: 100%;
      border: 0;
      padding: 0;
      border-radius: 12px;
      overflow: hidden;
      cursor: zoom-in;
      background: transparent;
    }

    .festival-gallery__focus-image {
      width: 100%;
      aspect-ratio: 16 / 9;
      object-fit: cover;
      border: 1px solid rgba(200, 163, 90, 0.25);
      border-radius: 12px;
    }

    .festival-gallery__focus-caption {
      margin: 0.75rem 0 0;
      color: var(--text-secondary);
      font-size: 0.96rem;
    }

    .festival-gallery__thumbs {
      display: grid;
      grid-auto-flow: column;
      grid-auto-columns: minmax(140px, 180px);
      gap: 0.85rem;
      overflow-x: auto;
      overscroll-behavior-x: contain;
      scroll-snap-type: x mandatory;
      padding-bottom: 0.25rem;
    }

    .festival-gallery__thumb {
      border: 1px solid rgba(200, 163, 90, 0.2);
      border-radius: 12px;
      padding: 0;
      background: rgba(24, 12, 16, 0.75);
      cursor: pointer;
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      transition: border-color 0.2s ease, transform 0.2s ease;
      scroll-snap-align: start;
    }

    .festival-gallery__thumb img {
      width: 100%;
      height: 100%;
      aspect-ratio: 4 / 3;
      object-fit: cover;
      opacity: 0.78;
      transition: opacity 0.2s ease;
    }

    .festival-gallery__thumb:hover,
    .festival-gallery__thumb:focus-visible,
    .festival-gallery__thumb.is-active {
      border-color: var(--gold-500);
      transform: translateY(-2px);
    }

    .festival-gallery__thumb:hover img,
    .festival-gallery__thumb:focus-visible img,
    .festival-gallery__thumb.is-active img {
      opacity: 1;
    }

    .festival-gallery-modal[hidden] {
      display: none;
    }

    .festival-gallery-modal {
      position: fixed;
      inset: 0;
      z-index: 1200;
      display: grid;
      place-items: center;
      padding: 1.5rem;
      background: rgba(7, 5, 6, 0.92);
      backdrop-filter: blur(4px);
    }

    .festival-gallery-modal__inner {
      position: relative;
      max-width: min(1100px, 100%);
      width: 100%;
    }

    .festival-gallery-modal__image {
      width: 100%;
      max-height: 80vh;
      object-fit: contain;
      border-radius: 14px;
      border: 1px solid rgba(200, 163, 90, 0.28);
      background: rgba(11, 8, 9, 0.9);
    }

    .festival-gallery-modal__caption {
      margin: 0.8rem 0 0;
      text-align: center;
      color: var(--text-primary);
    }

    .festival-gallery-modal__close {
      position: absolute;
      top: -0.6rem;
      right: -0.6rem;
      width: 2.1rem;
      height: 2.1rem;
      border: 1px solid rgba(200, 163, 90, 0.35);
      border-radius: 999px;
      background: rgba(20, 12, 16, 0.9);
      color: var(--text-primary);
      font-size: 1.4rem;
      line-height: 1;
      cursor: pointer;
    }

    body.modal-open {
      overflow: hidden;
    }

    @media (max-width: 980px) {

      .showcase-links,
      .feature-grid {
        grid-template-columns: 1fr;
      }
    }

    /* =========================
   Portal Section
========================= */

    .portal-section {
      padding: 0;
    }

    /* Full width grid */

    .portal-grid {
      display: grid;

      grid-template-columns: repeat(2, 1fr);
      grid-auto-rows: minmax(320px, 40vh);

      width: 100vw;
      margin-left: calc(50% - 50vw);

      gap: 0;
      /* removes spacing */
    }

    /* Portal tiles */

    .portal-card {

      position: relative;

      display: flex;
      flex-direction: column;
      justify-content: flex-end;

      padding: 2rem;

      text-decoration: none;

      color: var(--text-primary);

      background-size: cover;
      background-position: center;

      border: none;
      border-radius: 0;

      overflow: hidden;

      transition:
        transform .35s ease,
        filter .35s ease;
    }

    /* overlay for readability */

    .portal-card::before {
      content: "";

      position: absolute;
      inset: 0;

      background:
        linear-gradient(180deg,
          rgba(7, 5, 6, 0.0),
          rgba(7, 5, 6, 0.15));

      z-index: 0;
    }

    /* content layer */

    .portal-card>* {
      position: relative;
      z-index: 1;
    }

    /* hover effect */

    .portal-card:hover {

      transform: scale(1.03);

      filter: brightness(1.05);
    }

    /* kicker */

    .portal-card__kicker {

      color: var(--gold-soft);

      text-transform: uppercase;

      letter-spacing: .12em;

      font-size: .72rem;
    }

    /* title */

    .portal-card h3 {

      margin-top: .4rem;

      font-size: clamp(1.4rem, 2vw, 1.9rem);

      color: var(--text-primary);
    }

    /* description */

    .portal-card p {

      margin-top: .35rem;

      color: var(--text-secondary);

      max-width: 38ch;
    }

    /* Mobile */

    @media (max-width: 768px) {

      .portal-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 260px;
      }

    }

    .winery-section .section-head h1,
    .winery-section .section-head h2,
    .winery-section .section-head .notice {
      color: var(--text-primary);
    }

    .winery-section--page {
      min-height: calc(100vh - 90px);
    }

    @media (max-width: 980px) {
      .portal-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 680px) {
      .portal-grid {
        grid-template-columns: 1fr;
      }
    }