    :root {
      --saffron: #E8820C;
      --saffron-light: #F5A623;
      --ember: #C0392B;
      --spice: #8B1A1A;
      --cream: #FAF3E0;
      --cream-light: #FFFDF7;
      --charcoal: #1A1A1A;
      --gold: #D4AF37;
      --gold-light: #E8C95A;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Outfit', sans-serif;
      background: var(--charcoal);
      color: #E8E0D0;
      overflow-x: hidden;
    }

    /* SCROLL PROGRESS */
    #scroll-progress {
      position: fixed;
      top: 0;
      left: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--saffron), var(--gold));
      z-index: 9999;
      width: 0%;
      transition: width 0.1s linear;
    }

    /* NAVBAR */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      padding: 1.5rem 2rem;
      transition: all 0.4s ease;
    }

    nav.scrolled {
      background: rgba(15, 10, 8, 0.96);
      backdrop-filter: blur(20px);
      padding: 1rem 2rem;
      border-bottom: 1px solid rgba(232, 130, 12, 0.15);
    }

    .nav-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--gold);
      letter-spacing: 0.05em;
      cursor: pointer;
    }

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

    .nav-link {
      position: relative;
      font-size: 0.85rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #C8C0B0;
      transition: color 0.3s;
      cursor: pointer;
    }

    .nav-link::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 1px;
      background: var(--saffron);
      transition: width 0.3s;
    }

    .nav-link:hover {
      color: var(--gold-light);
    }

    .nav-link:hover::after,
    .nav-link.active::after {
      width: 100%;
    }

    .nav-link.active {
      color: var(--saffron);
    }

    .btn-order {
      background: linear-gradient(135deg, var(--saffron), var(--ember));
      color: white;
      padding: 0.6rem 1.4rem;
      border-radius: 2px;
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      transition: all 0.3s;
      border: none;
      cursor: pointer;
    }

    .btn-order:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(232, 130, 12, 0.4);
    }

    /* HAMBURGER */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
    }

    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--gold);
      transition: all 0.3s;
    }

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

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

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

    .mobile-menu {
      position: fixed;
      top: 0;
      right: -100%;
      width: 80%;
      max-width: 320px;
      height: 100vh;
      background: rgba(10, 7, 5, 0.98);
      backdrop-filter: blur(20px);
      z-index: 999;
      padding: 6rem 2rem 2rem;
      transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
      border-left: 1px solid rgba(232, 130, 12, 0.2);
    }

    .mobile-menu.open {
      right: 0;
    }

    .mobile-menu .nav-link {
      display: block;
      font-size: 1.1rem;
      padding: 1rem 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    /* NAV ANCHORS (multi-page) */
    a.nav-logo {
      text-decoration: none;
      color: inherit;
      display: inline-block;
    }

    a.nav-brand {
      display: flex;
      align-items: center;
      text-decoration: none;
    }

    .nav-logo-img {
      height: 52px;
      width: auto;
      display: block;
    }

    @media (max-width: 768px) {
      .nav-logo-img {
        height: 44px;
      }
    }

    a.nav-link {
      text-decoration: none;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 2.5rem;
    }

    /* HERO */
    .hero-slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 1.2s ease;
    }

    .hero-slide.active {
      opacity: 1;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      transform: scale(1.05);
      transition: transform 8s ease;
    }

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

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(10, 5, 2, 0.78) 0%, rgba(10, 5, 2, 0.4) 50%, rgba(10, 5, 2, 0.65) 100%);
    }

    .hero-content {
      position: relative;
      z-index: 2;
    }

    .hero-tag {
      font-size: 0.75rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--saffron);
      font-weight: 600;
    }

    .hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(3.5rem, 8vw, 7rem);
      font-weight: 300;
      line-height: 1.05;
      color: var(--cream);
    }

    .hero-title em {
      font-style: italic;
      color: var(--gold-light);
    }

    .hero-subtitle {
      font-size: 1rem;
      color: rgba(250, 243, 224, 0.75);
      font-weight: 300;
      max-width: 480px;
      line-height: 1.8;
    }

    .hero-dots {
      display: flex;
      gap: 8px;
    }

    .hero-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.3);
      cursor: pointer;
      transition: all 0.3s;
    }

    .hero-dot.active {
      background: var(--saffron);
      width: 28px;
      border-radius: 4px;
    }

    /* SECTION LABELS */
    .section-tag {
      font-size: 0.72rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--saffron);
      font-weight: 600;
    }

    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.2rem, 4vw, 3.5rem);
      font-weight: 400;
      color: var(--cream-light);
      line-height: 1.15;
    }

    .section-title em {
      font-style: italic;
      color: var(--gold-light);
    }

    .section-body {
      color: rgba(232, 224, 208, 0.7);
      font-weight: 300;
      line-height: 1.85;
    }

    /* DIVIDER */
    .ornament {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .ornament::before,
    .ornament::after {
      content: '';
      flex: 1;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.4), transparent);
    }

    .ornament-icon {
      color: var(--gold);
      font-size: 0.9rem;
    }

    /* CARDS */
    .menu-card {
      position: relative;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.07);
      border-radius: 4px;
      overflow: hidden;
      transition: all 0.4s ease;
    }

    .menu-card-body {
      padding: 1.3rem .7rem;
    }

    .menu-card-cat {
      font-size: 0.65rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(232, 130, 12, 0.75);
      margin: 0 0 0.35rem;
    }

    .menu-card-media {
      position: relative;
      overflow: hidden;
    }

    .menu-card-title-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 0.5rem;
    }

    .menu-card-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.2rem;
      color: var(--cream);
      margin: 0;
      flex: 1;
      min-width: 0;
      line-height: 1.3;
    }

    .menu-card-title-row .price-tag {
      flex-shrink: 0;
      white-space: nowrap;
    }

    .menu-card-order {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 4;
      display: block;
      text-align: center;
      padding: 0.95rem 1.25rem;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      text-decoration: none;
      color: #fff;
      background: linear-gradient(135deg, var(--saffron), var(--ember));
      /* Extra px past 100% avoids a hairline of the gradient showing inside the card (esp. short cards). */
      transform: translate3d(0, calc(100% + 8px), 0);
      pointer-events: none;
      transition: transform 0.35s ease;
    }

    .menu-card:hover .menu-card-order {
      transform: translate3d(0, 0, 0);
      pointer-events: auto;
    }

    .menu-card-order:hover {
      filter: brightness(1.08);
    }

    @media (hover: none) {
      .menu-card-order {
        transform: translate3d(0, 0, 0);
        pointer-events: auto;
      }

      .menu-card-body {
        padding-bottom: 4.25rem;
      }
    }

    .menu-card:hover {
      background: rgba(255, 255, 255, 0.06);
      border-color: rgba(232, 130, 12, 0.3);
      transform: translateY(-6px);
      box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
    }

    .menu-card img {
      display: block;
      width: 100%;
      height: 220px;
      object-fit: cover;
      transition: transform 0.6s ease;
    }

    .menu-card:hover img {
      transform: scale(1.07);
    }

    .price-tag {
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      color: var(--saffron);
      background: rgba(232, 130, 12, 0.12);
      padding: 0.25rem 0.7rem;
    }

    /* BUTTONS */
    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: linear-gradient(135deg, var(--saffron), var(--ember));
      color: white;
      padding: 0.85rem 2rem;
      border-radius: 2px;
      font-size: 0.82rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      transition: all 0.3s;
      border: none;
      cursor: pointer;
      text-decoration: none;
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 32px rgba(232, 130, 12, 0.4);
    }

    .btn-outline {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: transparent;
      color: var(--gold);
      padding: 0.85rem 2rem;
      border-radius: 2px;
      font-size: 0.82rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      transition: all 0.3s;
      border: 1px solid rgba(212, 175, 55, 0.5);
      cursor: pointer;
      text-decoration: none;
    }

    .btn-outline:hover {
      background: rgba(212, 175, 55, 0.1);
      border-color: var(--gold);
      transform: translateY(-3px);
    }

    /* STATS */
    .stat-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 3.5rem;
      font-weight: 600;
      color: var(--gold);
      line-height: 1;
    }

    .stat-label {
      font-size: 0.78rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: rgba(232, 224, 208, 0.6);
    }

    /* HOURS TABLE */
    .hours-row {
      display: flex;
      justify-content: space-between;
      padding: 0.75rem 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      font-size: 0.9rem;
    }

    .hours-row:last-child {
      border-bottom: none;
    }

    .hours-day {
      color: rgba(232, 224, 208, 0.6);
      font-weight: 400;
    }

    .hours-time {
      color: var(--cream);
      font-weight: 500;
    }

    .hours-closed {
      color: rgba(192, 57, 43, 0.8);
      font-weight: 500;
    }

    /* TESTIMONIAL */
    .testimonial-card {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(212, 175, 55, 0.15);
      border-radius: 4px;
      padding: 2rem;
    }

    .stars {
      color: var(--gold);
      font-size: 0.9rem;
      letter-spacing: 0.1em;
    }

    /* MENU FILTER */
    .filter-btn {
      padding: 0.5rem 1.2rem;
      border-radius: 2px;
      font-size: 0.78rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      font-weight: 600;
      cursor: pointer;
      border: 1px solid rgba(255, 255, 255, 0.12);
      color: rgba(232, 224, 208, 0.6);
      background: transparent;
      transition: all 0.3s;
    }

    .filter-btn.active,
    .filter-btn:hover {
      background: var(--saffron);
      color: white;
      border-color: var(--saffron);
    }

    /* SERVICE CARD */
    .service-card {
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 4px;
      padding: 2.5rem;
      transition: all 0.4s;
    }

    .service-card:hover {
      border-color: rgba(232, 130, 12, 0.35);
      background: linear-gradient(135deg, rgba(232, 130, 12, 0.06), rgba(255, 255, 255, 0.01));
      transform: translateY(-4px);
    }

    .service-icon {
      width: 56px;
      height: 56px;
      background: linear-gradient(135deg, rgba(232, 130, 12, 0.2), rgba(192, 57, 43, 0.1));
      border: 1px solid rgba(232, 130, 12, 0.3);
      border-radius: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      margin-bottom: 1.5rem;
    }

    /* FOOTER */
    footer {
      background: #0A0705;
      border-top: 1px solid rgba(232, 130, 12, 0.15);
    }

    /* ANIMATIONS */
    .fade-up {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .fade-up-delay-1 {
      transition-delay: 0.1s;
    }

    .fade-up-delay-2 {
      transition-delay: 0.2s;
    }

    .fade-up-delay-3 {
      transition-delay: 0.3s;
    }

    .fade-up-delay-4 {
      transition-delay: 0.4s;
    }

    /* PAGE HEADER */
    .page-hero {
      background: linear-gradient(135deg, #0D0805 0%, #1A0F08 50%, #0D0805 100%);
      min-height: 45vh;
      display: flex;
      align-items: flex-end;
      padding-bottom: 4rem;
      padding-top: 8rem;
      position: relative;
      overflow: hidden;
    }

    .page-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: radial-gradient(ellipse at 20% 50%, rgba(232, 130, 12, 0.08) 0%, transparent 60%), radial-gradient(ellipse at 80% 50%, rgba(192, 57, 43, 0.06) 0%, transparent 60%);
    }

    .page-hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(3rem, 6vw, 5.5rem);
      font-weight: 300;
      color: var(--cream);
    }

    .page-hero-title em {
      color: var(--gold-light);
      font-style: italic;
    }

    .breadcrumb {
      font-size: 0.78rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: rgba(232, 224, 208, 0.4);
    }

    .breadcrumb span {
      color: var(--saffron);
    }

    .breadcrumb a {
      color: rgba(232, 224, 208, 0.4);
      text-decoration: none;
      transition: color 0.3s;
    }

    .breadcrumb a:hover {
      color: var(--gold-light);
    }

    /* TEXTURE OVERLAY */
    .texture {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4'%3E%3Ccircle cx='1' cy='1' r='0.5' fill='rgba(255,255,255,0.015)'/%3E%3C/svg%3E");
    }

    /* CONTACT FORM */
    .form-input {
      width: 100%;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 2px;
      padding: 0.9rem 1.2rem;
      color: var(--cream);
      font-family: 'Outfit', sans-serif;
      font-size: 0.9rem;
      transition: border-color 0.3s;
      outline: none;
    }

    .form-input:focus {
      border-color: var(--saffron);
      background: rgba(255, 255, 255, 0.06);
    }

    .form-label {
      font-size: 0.75rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: rgba(232, 224, 208, 0.5);
      margin-bottom: 0.5rem;
      display: block;
    }

    /* GALLERY */
    .gallery-item {
      overflow: hidden;
      cursor: pointer;
      border-radius: 2px;
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }

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

    .gallery-overlay {
      position: absolute;
      inset: 0;
      background: rgba(10, 5, 2, 0);
      transition: background 0.3s;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .gallery-item:hover .gallery-overlay {
      background: rgba(10, 5, 2, 0.5);
    }

    /* SPICE LEVEL */
    .spice-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--ember);
      display: inline-block;
    }

    .spice-dot.empty {
      background: rgba(192, 57, 43, 0.2);
    }

    /* GOLD LINE DIVIDER */
    .gold-line {
      width: 60px;
      height: 2px;
      background: linear-gradient(90deg, var(--saffron), var(--gold));
    }

    /* SCROLL INDICATOR */
    .scroll-indicator {
      width: 30px;
      height: 50px;
      border: 1px solid rgba(255, 255, 255, 0.3);
      border-radius: 20px;
      display: flex;
      justify-content: center;
      padding-top: 8px;
    }

    .scroll-indicator::before {
      content: '';
      width: 4px;
      height: 10px;
      background: var(--gold);
      border-radius: 2px;
      animation: scroll-bounce 2s infinite;
    }

    @keyframes scroll-bounce {

      0%,
      100% {
        transform: translateY(0);
        opacity: 1;
      }

      50% {
        transform: translateY(10px);
        opacity: 0.3;
      }
    }

    @keyframes float {

      0%,
      100% {
        transform: translateY(0px);
      }

      50% {
        transform: translateY(-12px);
      }
    }

    .float {
      animation: float 6s ease-in-out infinite;
    }

    /* MEDIA — collapse to hamburger when full nav + logo no longer fit (~6 links + Order CTA) */
    @media (max-width: 1000px) {
      .nav-links {
        display: none;
      }

      .hamburger {
        display: flex;
      }

      .btn-order-nav {
        display: none;
      }
    }

    @media (min-width: 1101px) {
      .mobile-menu {
        display: none;
      }
    }

    /* Kora public form status (js/main.js) */
    .form-status {
      margin-top: 0.25rem;
      padding: 0.85rem 1rem;
      border-radius: 4px;
      font-size: 0.9rem;
      line-height: 1.5;
      display: none;
    }

    .form-status.is-visible {
      display: block;
    }

    .form-status--neutral {
      color: rgba(232, 224, 208, 0.85);
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.12);
    }

    .form-status--error {
      background: rgba(198, 40, 40, 0.15);
      border: 1px solid rgba(239, 154, 154, 0.5);
      color: #ffcdd2;
    }

    .form-status--success {
      background: rgba(46, 125, 50, 0.2);
      border: 1px solid rgba(165, 214, 167, 0.45);
      color: #c8e6c9;
    }

    .g-recaptcha {
      margin-top: 0.25rem;
    }
