
  /* Every section below the hero shares this rhythm. Two adjacent sections each
     contributing their own padding is what produced the 240-280px gaps. */
  :root {
    --sec-y: 80px;
    --sec-x: 80px;
  }

  /* ─── HERO ─── */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
  }

  .hero-bg-lines {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(to right, rgba(201,168,76,0.03) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(201,168,76,0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
  }

  .hero-radial {
    position: absolute;
    top: -20%; left: -10%;
    width: 70vw; height: 70vw;
    background: radial-gradient(circle, rgba(201,168,76,0.04) 0%, transparent 65%);
    pointer-events: none;
  }

  .hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 140px 64px 80px 80px;
    position: relative;
    z-index: 2;
  }

  .hero-eyebrow {
    display: flex; align-items: center; gap: 16px;
    margin-bottom: 32px;
  }
  .hero-eyebrow-line {
    width: 48px; height: 1px;
    background: linear-gradient(to right, var(--gold), transparent);
  }
  .hero-eyebrow span {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.3em;
    color: var(--gold);
    text-transform: uppercase;
  }

  .hero-heading {
    font-family: var(--font-display);
    font-size: clamp(64px, 7vw, 108px);
    font-weight: 300;
    line-height: 0.92;
    letter-spacing: -0.01em;
    margin-bottom: 40px;
    position: relative;
  }
  .hero-heading em {
    font-style: italic;
    color: var(--gold);
  }
  .hero-heading .line-indent {
    display: block;
    padding-left: 80px;
  }

  .hero-desc {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 300;
    line-height: 1.75;
    color: var(--white-dim);
    max-width: 400px;
    margin-bottom: 56px;
    font-style: italic;
    letter-spacing: 0.02em;
  }

  .hero-actions {
    display: flex; align-items: center; gap: 32px;
  }
  .btn-primary {
    padding: 18px 40px;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: none;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 12px;
    position: relative;
    overflow: hidden;
    transition: color 0.4s ease;
  }
  .btn-primary::before {
    content: '';
    position: absolute; inset: 0;
    background: var(--gold);
    transform: translateX(-101%);
    transition: transform 0.4s cubic-bezier(.77,0,.175,1);
  }
  .btn-primary:hover { color: var(--black); }
  .btn-primary:hover::before { transform: translateX(0); }
  .btn-primary span, .btn-primary svg { position: relative; z-index: 1; }

  .hero-scroll-hint {
    display: flex; align-items: center; gap: 10px;
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.25em;
    color: var(--white-faint);
    text-transform: uppercase;
  }
  .scroll-line {
    width: 1px; height: 32px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scroll-pulse 2s ease-in-out infinite;
  }
  @keyframes scroll-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
  }

  .hero-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .hero-visual-container {
    position: relative;
    width: 480px;
    height: 480px;
  }

  .hero-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid;
    animation: spin-slow linear infinite;
  }
  .hero-ring-1 {
    inset: 0;
    border-color: rgba(201,168,76,0.15);
    animation-duration: 30s;
  }
  .hero-ring-2 {
    inset: 30px;
    border-color: rgba(201,168,76,0.08);
    animation-duration: 20s;
    animation-direction: reverse;
  }
  .hero-ring-3 {
    inset: 60px;
    border-color: rgba(201,168,76,0.05);
    animation-duration: 40s;
  }
  @keyframes spin-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }

  .hero-center-glow {
    position: absolute; inset: 80px;
    background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
    border-radius: 50%;
  }

  .hero-food-card {
    position: absolute;
    background: var(--surface);
    border: 1px solid var(--border-bright);
    overflow: hidden;
    transition: transform 0.4s ease;
  }
  .hero-food-card:hover { transform: scale(1.03); }

  .hfc-main {
    width: 260px; height: 300px;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    border-color: rgba(201,168,76,0.25);
  }
  .hfc-main .card-img {
    width: 100%; height: 200px;
    background: linear-gradient(135deg, #1a1a0e 0%, #2a2010 50%, #1a1208 100%);
    display: flex; align-items: center; justify-content: center;
    font-size: 80px;
    position: relative;
    overflow: hidden;
  }
  .hfc-main .card-img::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, transparent 50%, var(--surface));
  }
  .hero-food-card .card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
  }
  .hfc-main .card-body {
    padding: 16px;
  }
  .hfc-main .card-tag {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.2em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 6px;
  }
  .hfc-main .card-name {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--white);
    letter-spacing: 0.03em;
    line-height: 1.2;
  }
  .hfc-main .card-price {
    position: absolute;
    bottom: 16px; right: 16px;
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--gold);
    font-weight: 500;
  }

  .hfc-side {
    width: 160px; height: 180px;
  }
  .hfc-side.left { top: 15%; left: -5%; }
  .hfc-side.right { bottom: 18%; right: -5%; }
  .hfc-side .card-img {
    width: 100%; height: 110px;
    display: flex; align-items: center; justify-content: center;
    font-size: 50px;
    background: var(--surface-2);
  }
  .hfc-side .card-body { padding: 10px 12px; }
  .hfc-side .card-name {
    font-family: var(--font-display);
    font-size: 13px;
    color: var(--white-dim);
    letter-spacing: 0.02em;
  }
  .hfc-side .card-price {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--gold);
    margin-top: 4px;
  }

  .hero-badge {
    position: absolute;
    background: var(--black-3);
    border: 1px solid var(--border-bright);
    padding: 10px 16px;
    display: flex; align-items: center; gap: 10px;
    backdrop-filter: blur(12px);
  }
  .hero-badge.top-right {
    top: 8%; right: 4%;
  }
  .hero-badge .badge-icon { font-size: 18px; }
  .hero-badge .badge-text {
    display: flex; flex-direction: column; gap: 1px;
  }
  .hero-badge .badge-label {
    font-family: var(--font-mono);
    font-size: 8px;
    letter-spacing: 0.2em;
    color: var(--white-faint);
    text-transform: uppercase;
  }
  .hero-badge .badge-value {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
  }

  .hero-ticker {
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 44px;
    background: var(--gold);
    display: flex; align-items: center;
    overflow: hidden;
  }
  .ticker-track {
    display: flex; align-items: center;
    white-space: nowrap;
    animation: ticker 20s linear infinite;
  }
  @keyframes ticker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }
  .ticker-item {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--black);
    padding: 0 32px;
    display: flex; align-items: center; gap: 32px;
  }
  .ticker-item::before {
    content: '✦';
    font-size: 7px;
  }

  /* ─── MARQUEE STRIP ─── */
  .marquee-strip {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    background: var(--black-2);
    padding: 20px 0;
  }
  .marquee-inner {
    display: flex; gap: 0;
    animation: marquee 25s linear infinite;
    white-space: nowrap;
  }
  @keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }
  .marquee-item {
    display: flex;
    align-items: center;
    gap: 18px;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 300;
    font-style: italic;
    color: var(--white-faint);
    padding: 0 24px;
    letter-spacing: 0.05em;
    flex-shrink: 0;
  }
  .marquee-item img {
    width: 46px; height: 46px;
    object-fit: cover;
    border: 1px solid var(--border-bright);
    flex-shrink: 0;
    filter: saturate(0.85);
  }
  .marquee-item .mq-name { white-space: nowrap; }
  .marquee-item .sep { color: var(--gold); margin: 0 0 0 24px; }

  @media (max-width: 700px) {
    .marquee-item { font-size: 20px; gap: 12px; padding: 0 16px; }
    .marquee-item img { width: 34px; height: 34px; }
    .marquee-item .sep { margin-left: 16px; }
  }

  /* ─── PHILOSOPHY ─── */
  .philosophy {
    padding: var(--sec-y) var(--sec-x);
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
    position: relative;
  }
  .philosophy::before {
    content: '';
    position: absolute;
    top: 0; left: var(--sec-x); right: var(--sec-x);
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border-bright), transparent);
  }

  .phil-left .section-label {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.35em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 24px;
    display: flex; align-items: center; gap: 12px;
  }
  .phil-left .section-label::before {
    content: '';
    width: 32px; height: 1px;
    background: var(--gold);
  }
  .phil-left h2 {
    font-family: var(--font-display);
    font-size: clamp(44px, 4.5vw, 68px);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: 0.01em;
    margin-bottom: 32px;
  }
  .phil-left h2 em { font-style: italic; color: var(--gold); }

  .phil-left p {
    font-family: var(--font-display);
    font-size: 17px;
    line-height: 1.8;
    color: var(--white-dim);
    font-weight: 300;
    font-style: italic;
    letter-spacing: 0.02em;
    margin-bottom: 24px;
  }

  .phil-stats {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1px;
    margin-top: 56px;
    border: 1px solid var(--border);
    background: var(--border);
  }
  .stat-box {
    background: var(--black);
    padding: 28px 24px;
  }
  .stat-box .num {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 500;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 6px;
  }
  .stat-box .label {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.2em;
    color: var(--white-faint);
    text-transform: uppercase;
  }

  .phil-right {
    position: relative;
  }
  .phil-visual {
    width: 100%;
    aspect-ratio: 4/5;
    background: var(--surface);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
  }
  .phil-visual-inner {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, #0d0d06, #1a1a08, #0d0d06);
  }
  .phil-visual-inner img {
    width: 100%; height: 100%; object-fit: cover;
    display: block; opacity: 0.85;
  }
  .phil-visual-quote {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 32px;
    background: linear-gradient(to top, rgba(0,0,0,0.95), transparent);
  }
  .phil-visual-quote p {
    font-family: var(--font-display);
    font-size: 20px;
    font-style: italic;
    font-weight: 300;
    line-height: 1.5;
    color: var(--white);
    letter-spacing: 0.02em;
  }
  .phil-visual-quote cite {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.25em;
    color: var(--gold);
    text-transform: uppercase;
    margin-top: 12px;
    display: block;
  }

  .phil-corner-badge {
    position: absolute;
    top: -20px; right: -20px;
    width: 100px; height: 100px;
    border: 1px solid var(--gold);
    display: flex; align-items: center; justify-content: center;
    background: var(--black);
  }
  .phil-corner-badge::before {
    content: '';
    position: absolute; inset: 6px;
    border: 1px solid rgba(201,168,76,0.25);
  }
  .phil-corner-badge span {
    font-family: var(--font-display);
    font-size: 11px;
    color: var(--gold);
    letter-spacing: 0.15em;
    text-align: center;
    line-height: 1.4;
  }

  /* ─── MENU SHOWCASE ─── */
  .menu-section {
    padding: 120px 80px;
    position: relative;
    overflow: hidden;
  }
  .menu-bg-text {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: 260px;
    font-weight: 600;
    color: rgba(255,255,255,0.015);
    white-space: nowrap;
    pointer-events: none;
    letter-spacing: -0.03em;
    line-height: 1;
    z-index: 0;
  }

  .menu-header {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-bottom: 80px;
    position: relative; z-index: 1;
  }
  .menu-header-left .section-label {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.35em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 16px;
    display: flex; align-items: center; gap: 12px;
  }
  .menu-header-left .section-label::before { content: ''; width: 32px; height: 1px; background: var(--gold); }
  .menu-header-left h2 {
    font-family: var(--font-display);
    font-size: clamp(44px, 4.5vw, 64px);
    font-weight: 300;
    line-height: 1.05;
  }
  .menu-header-left h2 em { font-style: italic; color: var(--gold); }

  .menu-filter {
    display: flex; gap: 2px;
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 4px;
  }
  .filter-btn {
    padding: 10px 20px;
    background: transparent;
    border: none;
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white-faint);
    cursor: none;
    transition: all 0.3s ease;
  }
  .filter-btn.active, .filter-btn:hover {
    background: var(--gold);
    color: var(--black);
  }

  .menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    position: relative; z-index: 1;
  }

  .menu-card {
    background: var(--black);
    position: relative;
    overflow: hidden;
    cursor: none;
    transition: background 0.3s ease;
  }
  .menu-card:hover { background: var(--surface); }
  .menu-card.featured {
    grid-column: span 2;
    grid-row: span 2;
  }

  .mc-img {
    width: 100%; padding-top: 90%;
    background: var(--surface);
    position: relative;
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
  }
  .menu-card.featured .mc-img { padding-top: 65%; }

  .mc-emoji {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 64px;
    background: linear-gradient(135deg, #111108, #1c1c08, #111108);
    transition: transform 0.5s cubic-bezier(.34,1.56,.64,1);
  }
  .menu-card.featured .mc-emoji { font-size: 100px; }
  .menu-card:hover .mc-emoji { transform: scale(1.08); }

  .mc-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 24px;
  }
  .menu-card:hover .mc-overlay { opacity: 1; }
  .mc-overlay-btn {
    padding: 10px 20px;
    background: var(--gold);
    color: var(--black);
    font-family: var(--font-sans);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border: none;
    cursor: none;
    width: fit-content;
  }

  .mc-body {
    padding: 16px 20px 20px;
    border-top: 1px solid var(--border);
  }
  .menu-card.featured .mc-body { padding: 20px 28px 28px; }

  .mc-cat {
    font-family: var(--font-mono);
    font-size: 8px;
    letter-spacing: 0.25em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 6px;
  }
  .mc-name {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 0.02em;
    margin-bottom: 4px;
    line-height: 1.2;
  }
  .menu-card.featured .mc-name { font-size: 26px; }

  .mc-desc {
    font-family: var(--font-display);
    font-size: 12px;
    color: var(--white-faint);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .menu-card.featured .mc-desc { -webkit-line-clamp: 3; font-size: 13px; }

  .mc-footer {
    display: flex; align-items: center; justify-content: space-between;
  }
  .mc-price {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    color: var(--white);
  }
  .mc-price span { font-size: 13px; color: var(--white-faint); margin-right: 2px; }
  .mc-add {
    width: 32px; height: 32px;
    background: transparent;
    border: 1px solid var(--border-bright);
    color: var(--white-dim);
    font-size: 18px;
    display: flex; align-items: center; justify-content: center;
    cursor: none;
    transition: all 0.3s ease;
    font-weight: 300;
    line-height: 1;
  }
  .mc-add:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }

  /* ─── EXPERIENCE STRIP ─── */
  .experience-strip {
    padding: var(--sec-y) var(--sec-x);
  }
  .exp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
  }
  .exp-item {
    background: var(--black-2);
    padding: 48px 36px;
    position: relative;
    overflow: hidden;
  }
  .exp-item::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
  }
  .exp-item:hover::before { transform: scaleX(1); }

  .exp-num {
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 300;
    color: rgba(201,168,76,0.12);
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
  }
  .exp-icon { margin-bottom: 18px; }
  .exp-icon img {
    width: 60px; height: 60px; object-fit: cover; display: block;
    border: 1px solid var(--border-bright);
    filter: saturate(0.9);
    transition: transform .5s var(--ease, ease);
  }
  .exp-item:hover .exp-icon img { transform: scale(1.06); }
  .exp-title {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 12px;
  }
  .exp-text {
    font-family: var(--font-display);
    font-size: 14px;
    font-style: italic;
    font-weight: 300;
    color: var(--white-dim);
    line-height: 1.7;
    letter-spacing: 0.02em;
  }

  /* ─── FEATURED ITEMS DEEP DIVE ─── */
  .deep-section {
    padding: 120px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
  }

  .deep-visual {
    background: var(--surface);
    display: flex; align-items: center; justify-content: center;
    font-size: 160px;
    position: relative;
    overflow: hidden;
    border-right: 1px solid var(--border);
    min-height: 600px;
  }
  .deep-visual-bg {
    position: absolute; inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(201,168,76,0.08), transparent 65%);
  }
  .deep-visual-text {
    position: absolute; bottom: 40px; left: 40px;
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.25em;
    color: var(--gold);
    text-transform: uppercase;
  }

  .deep-content {
    padding: 80px;
    display: flex; flex-direction: column; justify-content: center;
  }
  .deep-content .section-label {
    font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.35em;
    color: var(--gold); text-transform: uppercase;
    margin-bottom: 24px; display: flex; align-items: center; gap: 12px;
  }
  .deep-content .section-label::before { content: ''; width: 32px; height: 1px; background: var(--gold); }
  .deep-content h2 {
    font-family: var(--font-display);
    font-size: 52px; font-weight: 300; line-height: 1.1;
    margin-bottom: 24px;
  }
  .deep-content h2 em { font-style: italic; color: var(--gold); }
  .deep-content p {
    font-family: var(--font-display);
    font-size: 16px; font-weight: 300; font-style: italic;
    color: var(--white-dim); line-height: 1.8; letter-spacing: 0.02em;
    margin-bottom: 40px;
  }
  .deep-items {
    display: flex; flex-direction: column;
    gap: 1px; background: var(--border);
    border: 1px solid var(--border);
    margin-bottom: 40px;
  }
  .deep-item {
    background: var(--black);
    padding: 18px 24px;
    display: flex; align-items: center; justify-content: space-between;
    cursor: none;
    transition: background 0.3s ease;
  }
  .deep-item:hover { background: var(--surface); }
  .deep-item-name {
    font-family: var(--font-display); font-size: 17px; font-weight: 400;
    color: var(--white); letter-spacing: 0.02em;
  }
  .deep-item-right {
    display: flex; align-items: center; gap: 20px;
  }
  .deep-item-price {
    font-family: var(--font-display); font-size: 18px; font-weight: 500;
    color: var(--gold);
  }
  .deep-item-add {
    width: 28px; height: 28px;
    border: 1px solid var(--border-bright);
    background: transparent;
    color: var(--white-dim);
    font-size: 16px; cursor: none;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s ease;
  }
  .deep-item-add:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }

  /* ─── ORDERING SECTION ─── */
  .order-section {
    padding: var(--sec-y) var(--sec-x);
    position: relative;
    text-align: center;
    overflow: hidden;
  }
  .order-bg {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse at 20% 50%, rgba(201,168,76,0.04), transparent 50%),
      radial-gradient(ellipse at 80% 50%, rgba(201,168,76,0.04), transparent 50%);
  }
  .order-section .section-label {
    font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.35em;
    color: var(--gold); text-transform: uppercase;
    margin-bottom: 24px; display: flex; align-items: center; justify-content: center; gap: 12px;
    position: relative; z-index: 1;
  }
  .order-section .section-label::before, .order-section .section-label::after {
    content: ''; width: 32px; height: 1px; background: var(--gold);
  }
  .order-section h2 {
    font-family: var(--font-display);
    font-size: clamp(52px, 6vw, 88px);
    font-weight: 300; line-height: 1;
    letter-spacing: 0.01em;
    margin-bottom: 24px;
    position: relative; z-index: 1;
  }
  .order-section h2 em { font-style: italic; color: var(--gold); }
  .order-section p {
    font-family: var(--font-display);
    font-size: 18px; font-weight: 300; font-style: italic;
    color: var(--white-dim); line-height: 1.7;
    max-width: 560px; margin: 0 auto 40px;
    position: relative; z-index: 1;
    letter-spacing: 0.02em;
  }

  .order-steps {
    display: flex; align-items: center; justify-content: center; gap: 0;
    margin-bottom: 44px;
    position: relative; z-index: 1;
    max-width: 800px; margin-left: auto; margin-right: auto;
  }
  .order-step {
    flex: 1;
    padding: 32px 24px;
    border: 1px solid var(--border);
    background: var(--surface);
    text-align: center;
    position: relative;
  }
  .order-step:not(:last-child) { border-right: none; }
  .order-step::before {
    content: attr(data-step);
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--gold);
    color: var(--black);
    font-family: var(--font-mono); font-size: 9px; font-weight: 500;
    letter-spacing: 0.1em; padding: 2px 10px;
  }
  .step-icon { margin-bottom: 14px; }
  .step-icon img {
    width: 56px; height: 56px; object-fit: cover; display: block;
    border: 1px solid var(--border-bright);
  }
  .step-title {
    font-family: var(--font-sans); font-size: 11px; font-weight: 600;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--white); margin-bottom: 8px;
  }
  .step-text {
    font-family: var(--font-display); font-size: 13px; font-style: italic;
    color: var(--white-faint); line-height: 1.6;
  }

  .order-cta-group {
    display: flex; align-items: center; justify-content: center; gap: 16px;
    position: relative; z-index: 1;
    flex-wrap: wrap;
    margin-bottom: 0;
  }
  .btn-platform {
    padding: 16px 32px;
    background: var(--surface);
    border: 1px solid var(--border-bright);
    color: var(--white-dim);
    font-family: var(--font-sans);
    font-size: 10px; font-weight: 600;
    letter-spacing: 0.15em; text-transform: uppercase;
    cursor: none; text-decoration: none;
    display: inline-flex; align-items: center; gap: 10px;
    transition: all 0.3s ease;
  }
  .btn-platform:hover { background: var(--surface-2); border-color: var(--gold); color: var(--gold); }
  .btn-platform.primary-platform {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
    font-weight: 700;
  }
  .btn-platform.primary-platform:hover { background: var(--gold-light); }

  /* ─── TESTIMONIALS ─── */
  .testimonials {
    padding: var(--sec-y) var(--sec-x);
    border-top: 1px solid var(--border);
    overflow: hidden;
  }
  .test-header {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-bottom: 44px;
  }
  .test-header .section-label {
    font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.35em;
    color: var(--gold); text-transform: uppercase;
    margin-bottom: 16px; display: flex; align-items: center; gap: 12px;
  }
  .test-header .section-label::before { content: ''; width: 32px; height: 1px; background: var(--gold); }
  .test-header h2 {
    font-family: var(--font-display);
    font-size: 52px; font-weight: 300; line-height: 1.05;
  }
  .test-header h2 em { font-style: italic; color: var(--gold); }
  .test-count {
    font-family: var(--font-display); font-size: 64px; font-weight: 300; color: var(--gold);
    line-height: 1;
  }
  .test-count-label {
    font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.2em;
    color: var(--white-faint); text-transform: uppercase; margin-top: 4px;
  }

  .test-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
    background: var(--border); border: 1px solid var(--border);
  }
  .test-card {
    background: var(--black); padding: 36px;
  }
  .test-stars {
    display: flex; gap: 3px; margin-bottom: 20px;
  }
  .test-stars span { color: var(--gold); font-size: 12px; }
  .test-quote {
    font-family: var(--font-display);
    font-size: 18px; font-weight: 300; font-style: italic;
    color: var(--white); line-height: 1.65; letter-spacing: 0.02em;
    margin-bottom: 28px;
  }
  .test-author {
    display: flex; align-items: center; gap: 12px;
    border-top: 1px solid var(--border); padding-top: 20px;
  }
  .test-avatar {
    width: 36px; height: 36px;
    border: 1px solid var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-size: 15px; font-weight: 400;
    color: var(--gold); letter-spacing: 0;
    background: var(--surface);
    flex-shrink: 0;
  }
  .test-name {
    font-family: var(--font-sans); font-size: 11px; font-weight: 600;
    color: var(--white); letter-spacing: 0.08em;
  }
  .test-location {
    font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.15em;
    color: var(--white-faint); margin-top: 2px;
  }

  /* ─── FOOTER ─── */
  footer {
    background: var(--black-2);
    border-top: 1px solid var(--border);
  }
  .footer-top {
    padding: 80px;
    display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    border-bottom: 1px solid var(--border);
  }

  .footer-brand .logo { margin-bottom: 24px; }
  .footer-brand p {
    font-family: var(--font-display);
    font-size: 14px; font-style: italic; font-weight: 300;
    color: var(--white-faint); line-height: 1.8; letter-spacing: 0.02em;
    max-width: 280px;
  }

  .footer-social {
    display: flex; gap: 10px; margin-top: 28px;
  }
  .social-btn {
    width: 36px; height: 36px;
    border: 1px solid var(--border-bright);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; cursor: none;
    transition: all 0.3s ease; text-decoration: none;
  }
  .social-btn:hover { border-color: var(--gold); background: var(--gold-dim); }

  .footer-col h4 {
    font-family: var(--font-sans); font-size: 9px; font-weight: 700;
    letter-spacing: 0.3em; color: var(--gold); text-transform: uppercase;
    margin-bottom: 24px;
  }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 12px; }
  .footer-col ul li a {
    font-family: var(--font-display); font-size: 14px; font-weight: 300;
    color: var(--white-faint); text-decoration: none; letter-spacing: 0.03em;
    transition: color 0.3s ease; font-style: italic;
  }
  .footer-col ul li a:hover { color: var(--white); }

  .footer-newsletter input {
    width: 100%; padding: 12px 16px;
    background: var(--surface); border: 1px solid var(--border);
    color: var(--white); font-family: var(--font-mono); font-size: 10px;
    letter-spacing: 0.1em; outline: none; margin-bottom: 8px;
    transition: border-color 0.3s ease;
  }
  .footer-newsletter input:focus { border-color: var(--gold); }
  .footer-newsletter input::placeholder { color: var(--white-faint); }
  .footer-newsletter button {
    width: 100%; padding: 12px;
    background: var(--gold); color: var(--black);
    font-family: var(--font-sans); font-size: 9px; font-weight: 700;
    letter-spacing: 0.2em; text-transform: uppercase; border: none; cursor: none;
    transition: background 0.3s ease;
  }
  .footer-newsletter button:hover { background: var(--gold-light); }

  .footer-bottom {
    padding: 24px 80px;
    display: flex; align-items: center; justify-content: space-between;
  }
  .footer-copy {
    font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.15em;
    color: var(--white-faint);
  }
  .footer-legal {
    display: flex; gap: 24px;
  }
  .footer-legal a {
    font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.15em;
    color: var(--white-faint); text-decoration: none; transition: color 0.3s ease;
  }
  .footer-legal a:hover { color: var(--gold); }

  .footer-city {
    font-family: var(--font-display); font-size: 13px; font-style: italic;
    color: var(--white-faint);
  }
  .footer-city span { color: var(--gold); }

  /* ─── LOADING SCREEN ─── */
  #loader {
    position: fixed; inset: 0;
    background: var(--black);
    z-index: 9997;
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; gap: 24px;
  }
  .loader-logo-img {
    width: clamp(180px, 32vw, 280px); height: auto;
    animation: loader-pulse 1.5s ease-in-out infinite;
  }
  @keyframes loader-pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
  }
  .loader-bar-wrap {
    width: 200px; height: 1px;
    background: var(--border);
  }
  .loader-bar {
    height: 100%; width: 0;
    background: var(--gold);
    animation: loader-fill 1.8s cubic-bezier(.77,0,.175,1) forwards;
  }
  @keyframes loader-fill { to { width: 100%; } }
  .loader-text {
    font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.3em;
    color: var(--white-faint); text-transform: uppercase;
  }

  /* ─── SCROLL ANIMATIONS ─── */
  .reveal {
    opacity: 0; transform: translateY(32px);
    transition: opacity 0.8s cubic-bezier(.25,.46,.45,.94), transform 0.8s cubic-bezier(.25,.46,.45,.94);
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }

  /* ─── CART FLOATING ─── */
  .cart-float {
    position: fixed; bottom: 32px; right: 32px;
    z-index: 999;
    background: var(--gold);
    width: 56px; height: 56px;
    display: flex; align-items: center; justify-content: center;
    cursor: none;
    transition: transform 0.3s ease, background 0.3s ease;
    box-shadow: 0 8px 32px rgba(201,168,76,0.3);
  }
  .cart-float:hover { transform: scale(1.1); background: var(--gold-light); }
  .cart-float svg { width: 22px; height: 22px; color: var(--black); }
  .cart-count {
    position: absolute; top: -6px; right: -6px;
    width: 20px; height: 20px;
    background: var(--black);
    border: 1px solid var(--gold);
    border-radius: 50%;
    font-family: var(--font-mono); font-size: 9px;
    color: var(--gold); display: flex; align-items: center; justify-content: center;
    font-weight: 500;
  }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 1100px) {
    .hero { grid-template-columns: 1fr; }
    .hero-right { display: none; }
    .hero-left { padding: 140px 48px 80px; }
    .menu-grid { grid-template-columns: repeat(2, 1fr); }
    .menu-card.featured { grid-column: span 2; }
    :root { --sec-y: 64px; --sec-x: 48px; }
    .philosophy { grid-template-columns: 1fr; gap: 48px; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; padding: 60px 48px; }
    .deep-section { grid-template-columns: 1fr; }
    .deep-visual { min-height: 300px; }
  }
  @media (max-width: 768px) {
    :root { --sec-y: 52px; --sec-x: 24px; }
    header { padding: 0 24px; }
    nav { display: none; }
    .hero-left { padding: 120px 24px 60px; }
    .hero-heading { font-size: clamp(44px, 11vw, 108px); }
    .hero-heading .line-indent { padding-left: 0; }
    .menu-section { padding: 80px 24px; }
    .exp-grid { grid-template-columns: 1fr 1fr; }
    .test-grid { grid-template-columns: 1fr; }
    .order-steps { flex-direction: column; }
    .order-step:not(:last-child) { border-right: 1px solid var(--border); border-bottom: none; }
    .footer-top { grid-template-columns: 1fr; padding: 40px 24px; }
    .footer-bottom { flex-direction: column; gap: 16px; padding: 24px; text-align: center; }
    .deep-content { padding: 48px 24px; }
  }