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

    :root {
      --espresso:   #1A0F0A;
      --cream:      #F2E8D5;
      --gold:       #C9A84C;
      --gold-light: #E8C96A;
      --green:      #3D5A3E;
      --offwhite:   #FAF6EE;
      --mid:        #7A6254;
      --text-dark:  #2B1A10;
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--offwhite);
      color: var(--text-dark);
      font-family: 'DM Sans', sans-serif;
      font-size: 16px;
      overflow-x: hidden;
    }

    /* ─── NAV ─── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 22px 48px;
      background: transparent;
      transition: background .4s, backdrop-filter .4s;
    }
    nav.scrolled {
      background: rgba(26, 15, 10, 0.92);
      backdrop-filter: blur(12px);
    }
    .nav-logo {
      font-family: 'Playfair Display', serif;
      font-size: 1.25rem;
      font-weight: 700;
      letter-spacing: .12em;
      color: var(--cream);
      text-transform: uppercase;
    }
    .nav-links { display: flex; gap: 36px; list-style: none; }
    .nav-links a {
      color: var(--cream);
      text-decoration: none;
      font-size: .82rem;
      font-weight: 500;
      letter-spacing: .1em;
      text-transform: uppercase;
      opacity: .75;
      transition: opacity .2s;
    }
    .nav-links a:hover { opacity: 1; }
    .nav-cta {
      background: var(--gold);
      color: var(--espresso);
      border: none; cursor: pointer;
      font-family: 'DM Sans', sans-serif;
      font-size: .8rem; font-weight: 600;
      letter-spacing: .12em; text-transform: uppercase;
      padding: 10px 24px;
      transition: background .2s;
    }
    .nav-cta:hover { background: var(--gold-light); }

    /* ─── HERO ─── */
    #hero {
      position: relative;
      min-height: 100vh;
      display: flex; flex-direction: column;
      justify-content: flex-end;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute; inset: 0;
      background:
        linear-gradient(to top, rgba(26,15,10,.95) 0%, rgba(26,15,10,.55) 50%, rgba(26,15,10,.3) 100%),
            url('images/longor.jpg') center/cover no-repeat;
    }

    /* Grain texture overlay */
    .hero-bg::after {
      content: '';
      position: absolute; inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none; opacity: .5;
    }

    .hero-content {
      position: relative; z-index: 2;
      padding: 0 48px 80px;
      max-width: 900px;
    }

    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: 10px;
      font-size: .72rem; font-weight: 500; letter-spacing: .22em;
      text-transform: uppercase; color: var(--gold);
      margin-bottom: 24px;
    }
    .hero-eyebrow span { display: block; width: 32px; height: 1px; background: var(--gold); }

    .hero-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(3.2rem, 8vw, 7rem);
      font-weight: 900;
      line-height: .95;
      color: var(--cream);
      letter-spacing: -.02em;
      margin-bottom: 8px;
    }
    .hero-title em {
      font-style: italic;
      color: var(--gold);
    }

    .hero-subtitle {
      font-family: 'Playfair Display', serif;
      font-style: italic;
      font-size: clamp(1rem, 2.5vw, 1.5rem);
      color: rgba(242,232,213,.6);
      margin-bottom: 36px;
      letter-spacing: .02em;
    }

    .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

    .btn-primary {
      background: var(--gold);
      color: var(--espresso);
      border: none; cursor: pointer;
      font-family: 'DM Sans', sans-serif;
      font-size: .85rem; font-weight: 600;
      letter-spacing: .1em; text-transform: uppercase;
      padding: 16px 36px;
      transition: background .2s, transform .2s;
      text-decoration: none; display: inline-block;
    }
    .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }

    .btn-outline {
      background: transparent;
      color: var(--cream);
      border: 1px solid rgba(242,232,213,.4);
      cursor: pointer;
      font-family: 'DM Sans', sans-serif;
      font-size: .85rem; font-weight: 500;
      letter-spacing: .1em; text-transform: uppercase;
      padding: 16px 36px;
      transition: border-color .2s, color .2s;
      text-decoration: none; display: inline-block;
    }
    .btn-outline:hover { border-color: var(--cream); }

    .hero-scroll {
      position: absolute; bottom: 36px; right: 48px; z-index: 2;
      display: flex; flex-direction: column; align-items: center; gap: 8px;
      color: rgba(242,232,213,.4);
      font-size: .68rem; letter-spacing: .18em; text-transform: uppercase;
    }
    .hero-scroll-line {
      width: 1px; height: 48px;
      background: linear-gradient(to bottom, rgba(201,168,76,.6), transparent);
      animation: scrollPulse 2s ease-in-out infinite;
    }
    @keyframes scrollPulse { 0%,100%{opacity:.4} 50%{opacity:1} }

    /* ─── STATS BAR ─── */
    .stats-bar {
      background: var(--espresso);
      padding: 32px 48px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
    }
    .stat-item {
      text-align: center;
      padding: 0 24px;
      border-right: 1px solid rgba(242,232,213,.1);
    }
    .stat-item:last-child { border-right: none; }
    .stat-number {
      font-family: 'Playfair Display', serif;
      font-size: 2.4rem;
      font-weight: 700;
      color: var(--gold);
      line-height: 1;
    }
    .stat-label {
      font-size: .75rem;
      font-weight: 400;
      color: rgba(242,232,213,.5);
      letter-spacing: .12em;
      text-transform: uppercase;
      margin-top: 6px;
    }

    /* ─── SECTION UTIL ─── */
    section { padding: 100px 48px; }
    .section-eyebrow {
      display: inline-flex; align-items: center; gap: 10px;
      font-size: .72rem; font-weight: 600; letter-spacing: .22em;
      text-transform: uppercase; color: var(--gold);
      margin-bottom: 18px;
    }
    .section-eyebrow span { display: block; width: 28px; height: 1px; background: var(--gold); }
    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 5vw, 3.4rem);
      font-weight: 700; line-height: 1.1;
      color: var(--espresso);
    }
    .section-title em { font-style: italic; color: var(--green); }

    /* ─── ABOUT ─── */
    #about {
      background: var(--offwhite);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      padding: 100px 80px;
    }
    .about-image-wrap {
      position: relative;
    }
    .about-image-main {
      width: 100%; aspect-ratio: 4/5;
      object-fit: cover;
      filter: sepia(.12) contrast(1.05);
    }
    .about-image-accent {
      position: absolute;
      bottom: -28px; right: -28px;
      width: 52%; aspect-ratio: 1;
      object-fit: cover;
      border: 8px solid var(--offwhite);
      filter: sepia(.18);
    }
    .about-badge {
      position: absolute;
      top: 24px; left: -20px;
      background: var(--gold);
      color: var(--espresso);
      padding: 16px 20px;
      text-align: center;
      font-family: 'Playfair Display', serif;
    }
    .about-badge-num {
      font-size: 2rem; font-weight: 900; line-height: 1; display: block;
    }
    .about-badge-txt {
      font-size: .62rem; font-weight: 600; letter-spacing: .1em;
      text-transform: uppercase; display: block; margin-top: 3px;
    }

    .about-text .section-title { margin-bottom: 20px; }
    .about-body {
      font-size: 1rem; line-height: 1.8; color: var(--mid);
      margin-bottom: 28px;
    }
    .about-features {
      display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
      margin-bottom: 36px;
    }
    .about-feat {
      display: flex; align-items: flex-start; gap: 10px;
      font-size: .88rem; color: var(--text-dark); font-weight: 500;
    }
    .feat-icon {
      width: 32px; height: 32px;
      background: rgba(201,168,76,.15);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; font-size: 1rem;
    }

    /* ─── MENU ─── */
    #menu {
      background: var(--espresso);
      padding: 100px 48px;
    }
    #menu .section-title { color: var(--cream); }
    #menu .section-eyebrow { color: var(--gold); }

    .menu-header {
      display: flex; justify-content: space-between; align-items: flex-end;
      margin-bottom: 56px; gap: 20px;
    }
    .menu-link {
      color: rgba(242,232,213,.55);
      font-size: .8rem; letter-spacing: .14em;
      text-transform: uppercase; text-decoration: none;
      border-bottom: 1px solid rgba(242,232,213,.2);
      padding-bottom: 3px;
      white-space: nowrap;
      transition: color .2s, border-color .2s;
    }
    .menu-link:hover { color: var(--gold); border-color: var(--gold); }

    .menu-tabs {
      display: flex; gap: 4px;
      margin-bottom: 40px;
      border-bottom: 1px solid rgba(242,232,213,.1);
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none; 
      -ms-overflow-style: none; 
      flex-wrap: nowrap;
    }

      .menu-tabs::-webkit-scrollbar {
      display: none;
    }

    .menu-tab {
      background: none; border: none; cursor: pointer;
      font-family: 'DM Sans', sans-serif;
      font-size: .82rem; font-weight: 500;
      letter-spacing: .1em; text-transform: uppercase;
      color: rgba(242,232,213,.4);
      padding: 10px 20px;
      border-bottom: 2px solid transparent;
      margin-bottom: -1px;
      transition: color .2s, border-color .2s;
      white-space: nowrap;
      flex-shrink: 0;
    }
    .menu-tab.active { color: var(--gold); border-color: var(--gold); }
    .menu-tab:hover { color: var(--cream); }

    .menu-panel { display: none; }
    .menu-panel.active { display: block; }

    /* Carousel styles */
    .carousel { position: relative; overflow: hidden; }
    .carousel-track { display: flex; transition: transform .35s ease; will-change: transform; }
    .carousel-slide { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); grid-auto-rows: auto; gap: 24px; align-items: start; flex-shrink: 0; width: 100%; padding: 0 10px; box-sizing: border-box; }
    .carousel-slide .menu-card:not(:has(.menu-card-img-wrap)) { align-self: start; height: auto; }
    .carousel-slide .menu-card { margin: 0; }
    .carousel-controls { display:flex; gap:12px; align-items:center; justify-content:center; margin-top:28px; }
    .carousel-prev, .carousel-next { background: rgba(201,168,76,.15); border: 1px solid rgba(201,168,76,.35); color: var(--gold); padding:10px 14px; cursor:pointer; font-size:1.3rem; transition: background .2s, color .2s; border-radius: 12px; }
    .carousel-prev:hover, .carousel-next:hover { background: rgba(201,168,76,.35); }
    .carousel-indicators { display:flex; gap:8px; }
    .carousel-dot { width:10px; height:10px; border-radius:50%; background: rgba(242,232,213,.2); border:none; cursor:pointer; transition: background .2s; }
    .carousel-dot:hover { background: rgba(242,232,213,.35); }
    .carousel-dot.active { background: var(--gold); }

    .menu-card {
      display: flex;
      flex-direction: column;
      justify-content:  flex-start;
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(242,232,213,.08);
      border-radius: 24px;
      overflow: hidden;
      transition: background .2s, transform .2s;
      height: auto;
      align-self: flex-start;
    }
    .menu-card:hover { background: rgba(255,255,255,.1); transform: translateY(-3px); }

    /* Text-only cards (no images) should size naturally */
    .menu-card:not(:has(.menu-card-img-wrap)),
    .menu-card-text-only {
      min-height: auto;
      aspect-ratio: auto;
    }

    .menu-card-img-wrap {
      overflow: hidden;
      position: relative;
      min-height: 220px;
      width: 100%;
      display: block;
    }
    .menu-card-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      filter: brightness(.92) saturate(1.1);
      transition: transform .4s ease, filter .4s ease;
    }
    .menu-card:hover .menu-card-img {
      transform: scale(1.04);
      filter: brightness(1) saturate(1.2);
    }
    .menu-card-body {
      padding: 22px 20px 24px;
      display: flex;
      flex-direction: column;
      flex: 1;
    }
    .menu-card-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--cream);
      margin-bottom: 10px;
      line-height: 1.2;
    }
    .menu-card-desc {
      font-size: .85rem;
      color: rgba(242,232,213,.8);
      line-height: 1.7;
      margin-bottom: 18px;
      flex: 1;
    }
    .menu-card-price {
      font-size: 1rem;
      font-weight: 700;
      color: var(--gold);
      letter-spacing: .04em;
      margin-top: auto;
    }
    .menu-tag {
      display: inline-block;
      font-size: .65rem;
      font-weight: 700;
      letter-spacing: .11em;
      text-transform: uppercase;
      background: rgba(201,168,76,.12);
      color: var(--gold);
      padding: 4px 10px;
      margin-left: 8px;
      vertical-align: middle;
      border-radius: 99px;
    }

    .menu-card-hidden {
      display: none;
    }

    @media (max-width:900px) {
      .carousel-slide { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; padding: 0; }
      .carousel-track { transition: none; }
      .menu-card { min-height: auto; }
      .menu-card-img-wrap { min-height: 220px; }
    }

    @media (max-width:650px) {
      .carousel-slide { grid-template-columns: 1fr; gap: 18px; }
      .menu-card-img-wrap { min-height: 240px; }
    }

    /* ─── EXPERIENCE ─── */
    #experience {
      background: var(--cream);
      padding: 100px 80px;
    }
    .experience-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      margin-top: 56px;
    }
    .exp-card {
      background: var(--offwhite);
      padding: 44px 36px;
      position: relative;
      overflow: hidden;
      transition: transform .3s;
    }
    .exp-card::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0;
      height: 3px;
      background: var(--gold);
      transform: scaleX(0); transform-origin: left;
      transition: transform .3s;
    }
    .exp-card:hover { transform: translateY(-6px); }
    .exp-card:hover::before { transform: scaleX(1); }
    .exp-num {
      font-family: 'Playfair Display', serif;
      font-size: 3.5rem; font-weight: 900;
      color: rgba(26,15,10,.06);
      line-height: 1;
      margin-bottom: -16px;
    }
    .exp-icon { font-size: 2rem; margin-bottom: 16px; }
    .exp-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.3rem; font-weight: 700;
      color: var(--espresso);
      margin-bottom: 12px;
    }
    .exp-body {
      font-size: .88rem; line-height: 1.75;
      color: var(--mid);
    }

    /* ─── REVIEWS ─── */
    #reviews {
      background: var(--offwhite);
      padding: 100px 48px;
    }
    .reviews-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; }
    .reviews-score {
      display: flex; align-items: center; gap: 16px;
    }
    .score-big {
      font-family: 'Playfair Display', serif;
      font-size: 4rem; font-weight: 900;
      color: var(--espresso); line-height: 1;
    }
    .score-meta { display: flex; flex-direction: column; gap: 4px; }
    .stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 2px; }
    .score-count { font-size: .8rem; color: var(--mid); }

    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .review-card {
      background: white;
      padding: 32px;
      border-bottom: 3px solid transparent;
      transition: border-color .3s, transform .3s;
    }
    .review-card:hover { border-color: var(--gold); transform: translateY(-4px); }
    .review-stars { color: var(--gold); font-size: .9rem; letter-spacing: 2px; margin-bottom: 14px; }
    .review-text {
      font-size: .9rem; line-height: 1.75;
      color: var(--text-dark);
      margin-bottom: 20px;
    }
    .review-author {
      display: flex; align-items: center; gap: 12px;
    }
    .review-avatar {
      width: 36px; height: 36px; border-radius: 50%;
      background: var(--gold);
      display: flex; align-items: center; justify-content: center;
      font-family: 'Playfair Display', serif;
      font-size: .9rem; font-weight: 700;
      color: var(--espresso);
    }
    .review-name {
      font-size: .85rem; font-weight: 600; color: var(--espresso);
    }
    .review-date { font-size: .75rem; color: var(--mid); margin-top: 2px; }

    /* ─── CTA ─── */
    #cta {
      position: relative;
      background:
        linear-gradient(135deg, rgba(26,15,10,.96) 0%, rgba(61,90,62,.9) 100%),
        url('https://images.unsplash.com/photo-1495474472287-4d71bcdd2085?w=1200&q=80') center/cover;
      padding: 120px 80px;
      text-align: center;
    }
    .cta-inner { max-width: 640px; margin: 0 auto; }
    .cta-eyebrow {
      display: inline-flex; align-items: center; gap: 10px; justify-content: center;
      font-size: .72rem; font-weight: 600; letter-spacing: .22em;
      text-transform: uppercase; color: var(--gold);
      margin-bottom: 24px;
    }
    .cta-eyebrow span { display: block; width: 24px; height: 1px; background: var(--gold); }
    .cta-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 5vw, 3.4rem);
      font-weight: 700; color: var(--cream);
      line-height: 1.15; margin-bottom: 20px;
    }
    .cta-title em { font-style: italic; color: var(--gold); }
    .cta-body {
      font-size: 1rem; color: rgba(242,232,213,.6);
      line-height: 1.7; margin-bottom: 40px;
    }
    .cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
    .cta-info {
      display: flex; justify-content: center; gap: 40px;
      margin-top: 56px;
      padding-top: 40px;
      border-top: 1px solid rgba(242,232,213,.12);
    }
    .cta-info-item {
      display: flex; flex-direction: column; align-items: center; gap: 4px;
    }
    .cta-info-label { font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(242,232,213,.35); }
    .cta-info-val { font-size: .92rem; color: var(--cream); font-weight: 500; }
    .cta-info-val a { color: inherit; text-decoration: none; }
    .cta-info-val a:hover { color: var(--gold); }

    /* ─── FOOTER ─── */
    footer {
      background: var(--espresso);
      padding: 56px 48px 32px;
    }
    .footer-top {
      display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 60px;
      margin-bottom: 48px;
    }
    .footer-brand {
      font-family: 'Playfair Display', serif;
      font-size: 1.6rem; font-weight: 900;
      letter-spacing: .08em; text-transform: uppercase;
      color: var(--cream); margin-bottom: 14px;
    }
    .footer-tagline {
      font-style: italic;
      font-size: .85rem; color: rgba(242,232,213,.4);
      line-height: 1.6;
    }
    .footer-col-title {
      font-size: .72rem; font-weight: 600; letter-spacing: .2em;
      text-transform: uppercase; color: var(--gold);
      margin-bottom: 20px;
    }
    .footer-links { list-style: none; }
    .footer-links li { margin-bottom: 10px; }
    .footer-links a {
      color: rgba(242,232,213,.45); font-size: .88rem;
      text-decoration: none; transition: color .2s;
    }
    .footer-links a:hover { color: var(--cream); }
    .footer-bottom {
      display: flex; justify-content: space-between; align-items: center;
      padding-top: 24px;
      border-top: 1px solid rgba(242,232,213,.08);
      font-size: .75rem; color: rgba(242,232,213,.25);
    }
    .footer-gold { color: var(--gold); }

    /* ─── MOBILE ─── */
    @media (max-width: 900px) {
      nav { padding: 18px 24px; }
      .nav-links { display: none; }
      section { padding: 72px 24px; }
      #about { grid-template-columns: 1fr; padding: 72px 24px; gap: 48px; }
      .about-image-accent { display: none; }
      .stats-bar { grid-template-columns: repeat(2,1fr); gap: 2px; padding: 24px; }
      .stat-item { padding: 16px; border-right: none; border-bottom: 1px solid rgba(242,232,213,.1); }
      .menu-panel.active { grid-template-columns: 1fr; }
      .experience-grid { grid-template-columns: 1fr; }
      .reviews-grid { grid-template-columns: 1fr; }
      .reviews-header { flex-direction: column; align-items: flex-start; gap: 20px; }
      .hero-content { padding: 0 24px 72px; }
      .hero-scroll { display: none; }
      #cta { padding: 80px 24px; }
      .cta-info { flex-direction: column; gap: 20px; }
      .footer-top { grid-template-columns: 1fr; gap: 36px; }
      .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    }

    @media (prefers-reduced-motion: reduce) {
      *, .hero-scroll-line { animation: none !important; transition: none !important; }
    }
