    :root {
      --black: #0a0a08;
      --charcoal: #141410;
      --dark: #1c1c17;
      --gold: #c9923a;
      --gold-light: #e8b96a;
      --red: #c03228;
      --cream: #f5ede0;
      --cream-dark: #d9c9b0;
      --white: #faf8f4;
      --muted: rgba(245,237,224,0.45);
    }

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

    html { scroll-behavior: smooth; }

    body {
      background: var(--black);
      color: var(--cream);
      font-family: 'Jost', sans-serif;
      font-weight: 300;
      overflow-x: hidden;
    }

    /* CUSTOM CURSOR — solo en desktop con mouse */
    @media (hover: hover) and (pointer: fine) {
      body { cursor: none; }
    }
    .cursor, .cursor-ring { display: none; }
    @media (hover: hover) and (pointer: fine) {
      .cursor {
        display: block;
        position: fixed;
        width: 10px; height: 10px;
        background: var(--gold);
        border-radius: 50%;
        pointer-events: none;
        z-index: 9999;
        transition: transform 0.15s ease;
      }
      .cursor-ring {
        display: block;
        position: fixed;
        width: 36px; height: 36px;
        border: 1px solid rgba(201,146,58,0.5);
        border-radius: 50%;
        pointer-events: none;
        z-index: 9998;
        transition: all 0.35s ease;
      }
    }

    /* NAV */
    nav {
      position: fixed; top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 24px 60px;
      transition: background 0.5s, padding 0.4s;
    }
    nav.scrolled {
      background: rgba(10,10,8,0.95);
      backdrop-filter: blur(18px);
      padding: 14px 60px;
      border-bottom: 1px solid rgba(201,146,58,0.12);
    }
    .nav-logo {
      font-family: 'Shippori Mincho', serif;
      font-size: 1.5rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      color: var(--cream);
      text-decoration: none;
    }
    .nav-logo span { color: var(--gold); }
    .nav-links { display: flex; gap: 40px; list-style: none; }
    .nav-links a {
      color: var(--cream-dark);
      text-decoration: none;
      font-size: 0.78rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      transition: color 0.3s;
      position: relative;
    }
    .nav-links a::after {
      content: '';
      position: absolute; bottom: -4px; left: 0;
      width: 0; height: 1px;
      background: var(--gold);
      transition: width 0.3s;
    }
    .nav-links a:hover { color: var(--gold); }
    .nav-links a:hover::after { width: 100%; }
    .nav-cta {
      border: 1px solid var(--gold);
      padding: 10px 26px;
      color: var(--gold) !important;
      font-size: 0.75rem !important;
      letter-spacing: 0.2em !important;
      transition: background 0.3s, color 0.3s !important;
    }
    .nav-cta:hover { background: var(--gold); color: var(--black) !important; }
    .nav-cta::after { display: none !important; }

    /* Mobile nav drawer */
    .nav-drawer {
      display: none;
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(10,10,8,0.98);
      z-index: 99;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0;
    }
    .nav-drawer.open { display: flex; }
    .nav-drawer a {
      display: block;
      padding: 20px 40px;
      font-family: 'Shippori Mincho', serif;
      font-size: 1.6rem;
      color: var(--cream);
      text-decoration: none;
      letter-spacing: 0.06em;
      border-bottom: 1px solid rgba(201,146,58,0.1);
      width: 100%;
      text-align: center;
      transition: color 0.3s, background 0.3s;
    }
    .nav-drawer a:hover { color: var(--gold); background: rgba(201,146,58,0.05); }
    .nav-drawer a:last-child { border-bottom: none; color: var(--gold); margin-top: 20px; border: 1px solid var(--gold); }
    .drawer-close {
      position: absolute;
      top: 22px; right: 24px;
      background: none; border: none;
      color: var(--cream); font-size: 1.8rem;
      cursor: pointer; line-height: 1;
    }

    /* HERO */
    #hero {
      position: relative;
      height: 100vh; min-height: 700px;
      display: flex; align-items: center; justify-content: center;
      overflow: hidden;
      text-align: center;
    }
    .hero-bg {
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 70% 80% at 50% 60%, rgba(192,50,40,0.08) 0%, transparent 70%),
        radial-gradient(ellipse 50% 50% at 20% 80%, rgba(201,146,58,0.06) 0%, transparent 60%),
        linear-gradient(180deg, #0a0a08 0%, #12100a 50%, #0a0a08 100%);
    }
    .hero-grid {
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(201,146,58,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201,146,58,0.04) 1px, transparent 1px);
      background-size: 80px 80px;
      mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 80%);
    }
    .hero-kanji {
      position: absolute;
      font-family: 'Shippori Mincho', serif;
      color: rgba(201,146,58,0.04);
      font-size: 38vw;
      font-weight: 800;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      user-select: none;
      letter-spacing: -0.05em;
      pointer-events: none;
    }
    /* Floating Japanese characters */
    .float-chars {
      position: absolute; inset: 0;
      pointer-events: none;
      overflow: hidden;
    }
    .float-char {
      position: absolute;
      font-family: 'Shippori Mincho', serif;
      color: rgba(201,146,58,0.12);
      font-size: 1.4rem;
      animation: floatUp linear infinite;
    }
    @keyframes floatUp {
      0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
      10% { opacity: 1; }
      90% { opacity: 0.8; }
      100% { transform: translateY(-20vh) rotate(15deg); opacity: 0; }
    }
    .hero-inner {
      position: relative; z-index: 2;
      padding: 80px 24px 0;
      animation: fadeInUp 1.2s ease forwards;
    }
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(40px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .hero-eyebrow {
      display: inline-block;
      font-size: 0.7rem;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 28px;
      padding: 8px 20px;
      border: 1px solid rgba(201,146,58,0.3);
      animation: fadeInUp 1.2s 0.2s ease both;
    }
    .hero-title {
      font-family: 'Shippori Mincho', serif;
      font-size: clamp(4rem, 10vw, 9rem);
      font-weight: 700;
      line-height: 0.9;
      letter-spacing: -0.02em;
      animation: fadeInUp 1.2s 0.4s ease both;
    }
    .hero-title .line1 { display: block; color: var(--white); }
    .hero-title .line2 {
      display: block;
      color: transparent;
      -webkit-text-stroke: 1px rgba(245,237,224,0.3);
    }
    .hero-subtitle {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: clamp(1.1rem, 2.5vw, 1.6rem);
      color: var(--cream-dark);
      margin-top: 24px;
      letter-spacing: 0.04em;
      animation: fadeInUp 1.2s 0.6s ease both;
    }
    .hero-divider {
      width: 1px; height: 60px;
      background: linear-gradient(to bottom, var(--gold), transparent);
      margin: 36px auto;
      animation: fadeInUp 1.2s 0.8s ease both;
    }
    .hero-actions {
      display: flex; gap: 20px; justify-content: center; align-items: center;
      animation: fadeInUp 1.2s 1s ease both;
    }
    .btn-primary {
      background: var(--gold);
      color: var(--black);
      padding: 15px 40px;
      font-family: 'Jost', sans-serif;
      font-size: 0.78rem;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      text-decoration: none;
      transition: background 0.3s, transform 0.3s;
    }
    .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
    .btn-outline {
      border: 1px solid rgba(245,237,224,0.3);
      color: var(--cream);
      padding: 15px 40px;
      font-family: 'Jost', sans-serif;
      font-size: 0.78rem;
      font-weight: 300;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      text-decoration: none;
      transition: border-color 0.3s, color 0.3s;
    }
    .btn-outline:hover { border-color: var(--gold); color: var(--gold); }
    .hero-scroll {
      position: absolute; bottom: 36px; left: 50%;
      transform: translateX(-50%);
      display: flex; flex-direction: column; align-items: center; gap: 8px;
      color: var(--muted);
      font-size: 0.65rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      animation: fadeInUp 1.2s 1.2s ease both;
    }
    .scroll-line {
      width: 1px; height: 50px;
      background: linear-gradient(to bottom, transparent, var(--gold));
      animation: scrollPulse 2s ease-in-out infinite;
    }
    @keyframes scrollPulse {
      0%, 100% { opacity: 0.4; transform: scaleY(0.8); }
      50% { opacity: 1; transform: scaleY(1); }
    }

    /* SECTION BASE */
    section { position: relative; }
    .section-label {
      font-size: 0.65rem;
      letter-spacing: 0.4em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 16px;
    }
    .section-title {
      font-family: 'Shippori Mincho', serif;
      font-size: clamp(2.2rem, 5vw, 4rem);
      font-weight: 600;
      line-height: 1.05;
      color: var(--white);
    }
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.9s ease, transform 0.9s ease;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* ABOUT */
    #about {
      padding: 120px 60px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 100px;
      align-items: center;
      max-width: 1300px;
      margin: 0 auto;
      background: #f5ede0;
    }
    .about-image-wrap {
      position: relative;
    }
    .about-img-main {
      width: 100%;
      aspect-ratio: 3/4;
      background:
        linear-gradient(160deg, rgba(192,50,40,0.15) 0%, transparent 50%),
        linear-gradient(180deg, #1c1814 0%, #0f0d0a 100%);
      border: 1px solid rgba(201,146,58,0.15);
      display: flex; align-items: center; justify-content: center;
      font-family: 'Shippori Mincho', serif;
      font-size: 8rem;
      color: rgba(201,146,58,0.2);
      overflow: hidden;
      position: relative;
    }
    .about-img-main .emoji-art {
      font-size: 6rem;
      filter: drop-shadow(0 0 40px rgba(192,50,40,0.4));
      animation: breathe 4s ease-in-out infinite;
    }
    @keyframes breathe {
      0%, 100% { transform: scale(1); }
      50% { transform: scale(1.05); }
    }
    .about-img-accent {
      position: absolute;
      bottom: -24px; right: -16px;
      width: 45%;
      aspect-ratio: 1;
      background: linear-gradient(135deg, rgba(201,146,58,0.12), rgba(192,50,40,0.08));
      border: 1px solid rgba(201,146,58,0.2);
      display: flex; align-items: center; justify-content: center;
      font-family: 'Shippori Mincho', serif;
      font-size: 3rem;
      color: rgba(245,237,224,0.7);
    }
    .about-year {
      position: absolute;
      top: 24px; left: 0;
      background: var(--gold);
      color: var(--black);
      font-size: 0.65rem;
      letter-spacing: 0.2em;
      padding: 8px 14px;
      font-weight: 500;
    }
    .about-content p {
      font-size: 1.05rem;
      line-height: 1.85;
      color: #111111;
      margin-bottom: 22px;
    }
    .about-content p em {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      color: #8a5e1a;
      font-size: 1.15em;
    }
    .about-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: rgba(0,0,0,0.12);
      margin-top: 50px;
    }
    .stat {
      background: #efe3d2;
      padding: 28px 20px;
      text-align: center;
    }
    .stat-num {
      font-family: 'Shippori Mincho', serif;
      font-size: 2.5rem;
      font-weight: 700;
      color: #7a4e10;
      display: block;
    }
    .stat-label {
      font-size: 0.65rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: #555;
      margin-top: 6px;
      display: block;
    }

    /* MENU */
    #menu {
      background: var(--charcoal);
      padding: 120px 60px;
      position: relative;
      overflow: hidden;
    }
    #menu::before {
      content: '食';
      position: absolute;
      font-family: 'Shippori Mincho', serif;
      font-size: 40vw;
      color: rgba(201,146,58,0.03);
      top: 50%; left: 50%;
      transform: translate(-50%,-50%);
      pointer-events: none;
    }
    .menu-header {
      text-align: center;
      margin-bottom: 80px;
    }
    .menu-header .section-title { margin-bottom: 16px; }
    .menu-header p {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: 1.2rem;
      color: var(--muted);
    }
    .menu-tabs {
      display: flex; justify-content: center; gap: 0;
      margin-bottom: 60px;
      border: 1px solid rgba(201,146,58,0.2);
      width: fit-content;
      max-width: 100%;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      margin-left: auto; margin-right: auto;
      scrollbar-width: none;
    }
    .menu-tabs::-webkit-scrollbar { display: none; }
    .menu-tab {
      padding: 12px 32px;
      font-size: 0.72rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      cursor: pointer;
      color: var(--muted);
      background: transparent;
      border: none;
      transition: all 0.3s;
      font-family: 'Jost', sans-serif;
      border-right: 1px solid rgba(201,146,58,0.2);
    }
    .menu-tab:last-child { border-right: none; }
    .menu-tab.active { background: var(--gold); color: var(--black); }
    .menu-tab:hover:not(.active) { color: var(--gold); }
    .menu-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      max-width: 1200px;
      margin: 0 auto;
    }
    .menu-item {
      background: var(--dark);
      padding: 36px 32px;
      position: relative;
      transition: background 0.3s;
      border-top: 2px solid transparent;
    }
    .menu-item:hover { background: #201f18; border-top-color: var(--gold); }
    .menu-item-tag {
      font-size: 0.6rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 12px;
    }
    .menu-item-name {
      font-family: 'Shippori Mincho', serif;
      font-size: 1.25rem;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 8px;
      line-height: 1.2;
    }
    .menu-item-jp {
      font-family: 'Shippori Mincho', serif;
      font-size: 0.85rem;
      color: rgba(201,146,58,0.5);
      margin-bottom: 12px;
    }
    .menu-item-desc {
      font-size: 0.88rem;
      color: var(--muted);
      line-height: 1.7;
      margin-bottom: 24px;
    }
    .menu-item-price {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.4rem;
      color: var(--gold);
      font-weight: 600;
    }
    .menu-item-emoji {
      position: absolute;
      top: 20px; right: 20px;
      font-size: 1.8rem;
      opacity: 0.6;
    }
    .about-content .section-label { color: #8a5e1a; }
    .about-content .section-title { color: #111111; }
    #about { color: #111111; }

    /* EXPERIENCE STRIP */
    .experience-strip {
      background: var(--gold);
      padding: 28px 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 60px;
      overflow: hidden;
    }
    .strip-item {
      display: flex;
      align-items: center;
      gap: 14px;
      color: var(--black);
    }
    .strip-icon { font-size: 1.4rem; }
    .strip-text {
      font-size: 0.72rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      font-weight: 500;
    }
    .strip-divider { width: 1px; height: 24px; background: rgba(10,10,8,0.3); }

    /* GALLERY */
    #gallery {
      padding: 120px 60px;
      max-width: 1300px;
      margin: 0 auto;
    }
    .gallery-header { margin-bottom: 60px; }
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      grid-template-rows: repeat(2, 280px);
      gap: 3px;
    }
    .gallery-cell {
      overflow: hidden;
      position: relative;
    }
    .gallery-cell:nth-child(1) { grid-column: 1/6; grid-row: 1/2; }
    .gallery-cell:nth-child(2) { grid-column: 6/9; grid-row: 1/2; }
    .gallery-cell:nth-child(3) { grid-column: 9/13; grid-row: 1/3; }
    .gallery-cell:nth-child(4) { grid-column: 1/4; grid-row: 2/3; }
    .gallery-cell:nth-child(5) { grid-column: 4/9; grid-row: 2/3; }
    .gallery-img {
      width: 100%; height: 100%; min-height: 200px;
      display: flex; align-items: center; justify-content: center;
      font-size: 4rem;
      transition: transform 0.6s ease;
      position: relative;
    }
    .gallery-cell:hover .gallery-img { transform: scale(1.05); }
    .g1 { background: linear-gradient(135deg, #1a100a, #2a1508); }
    .g2 { background: linear-gradient(135deg, #0d1a10, #0a120e); }
    .g3 { background: linear-gradient(135deg, #1a0d0a, #120808); }
    .g4 { background: linear-gradient(135deg, #0f0d1a, #08080f); }
    .g5 { background: linear-gradient(135deg, #1a150a, #12100a); }
    .gallery-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
      opacity: 0;
      transition: opacity 0.4s;
      display: flex; align-items: flex-end; padding: 20px;
    }
    .gallery-cell:hover .gallery-overlay { opacity: 1; }
    .gallery-overlay span {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: 1rem;
      color: var(--cream);
    }

    /* RESERVATIONS */
    #reservations {
      background: var(--dark);
      padding: 120px 60px;
      position: relative;
      overflow: hidden;
    }
    #reservations::after {
      content: '予約';
      position: absolute;
      right: -60px; top: 50%;
      transform: translateY(-50%);
      font-family: 'Shippori Mincho', serif;
      font-size: 25vw;
      color: rgba(201,146,58,0.03);
      font-weight: 800;
      pointer-events: none;
    }
    .reservations-inner {
      max-width: 700px;
      margin: 0 auto;
      position: relative; z-index: 2;
    }
    .reservations-inner .section-label,
    .reservations-inner .section-title { text-align: center; }
    .reservations-inner .section-title { margin-bottom: 14px; }
    .res-subtitle {
      text-align: center;
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: 1.1rem;
      color: var(--muted);
      margin-bottom: 50px;
    }
    .res-form {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2px;
      background: rgba(201,146,58,0.1);
    }
    .form-group {
      background: var(--charcoal);
      padding: 0;
      position: relative;
    }
    .form-group.full { grid-column: 1/-1; }
    .form-group label {
      display: block;
      font-size: 0.6rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--gold);
      padding: 16px 20px 0;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      background: transparent;
      border: none;
      outline: none;
      color: var(--cream);
      font-family: 'Jost', sans-serif;
      font-size: 0.95rem;
      padding: 8px 20px 18px;
      font-weight: 300;
    }
    .form-group select option { background: var(--charcoal); color: var(--cream); }
    .form-group textarea { resize: none; height: 80px; }
    .res-submit {
      grid-column: 1/-1;
      background: var(--gold);
      color: var(--black);
      border: none;
      padding: 20px;
      font-family: 'Jost', sans-serif;
      font-size: 0.78rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      font-weight: 500;
      cursor: pointer;
      transition: background 0.3s, letter-spacing 0.3s;
    }
    .res-submit:hover { background: var(--gold-light); letter-spacing: 0.4em; }
    .res-info {
      display: flex; justify-content: space-between;
      margin-top: 50px;
      padding-top: 40px;
      border-top: 1px solid rgba(201,146,58,0.12);
    }
    .res-info-item { text-align: center; flex: 1; }
    .res-info-item .label {
      font-size: 0.6rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 8px;
    }
    .res-info-item .value {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem;
      color: var(--cream);
    }

    /* CHEF */
    #chef {
      padding: 120px 60px;
      max-width: 1300px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .chef-content .section-label { color: #8a5e1a; }
    .chef-content .section-title { color: #111111; margin-bottom: 24px; }
    .chef-content p {
      font-size: 1rem;
      line-height: 1.9;
      color: #111111;
      margin-bottom: 18px;
    }
    .chef-content p em {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      color: #7a4e10;
    }
    .chef-signature {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: 2rem;
      color: #7a4e10;
      margin-top: 30px;
    }
    .chef-img {
      aspect-ratio: 4/5;
      background: linear-gradient(160deg, #1a1208 0%, #0a0a08 100%);
      border: 1px solid rgba(201,146,58,0.15);
      display: flex; align-items: center; justify-content: center;
      font-size: 10rem;
      position: relative;
    }
    .chef-img::before {
      content: '';
      position: absolute;
      inset: 12px;
      border: 1px solid rgba(201,146,58,0.08);
      pointer-events: none;
    }
    .chef-award {
      position: absolute;
      bottom: -20px; left: 30px;
      background: var(--red);
      padding: 14px 22px;
      font-size: 0.65rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      font-weight: 500;
    }

    /* TESTIMONIALS */
    #testimonials {
      background: var(--charcoal);
      padding: 100px 60px;
      text-align: center;
    }
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      max-width: 1200px;
      margin: 60px auto 0;
    }
    .testimonial {
      background: var(--dark);
      padding: 48px 36px;
      position: relative;
      transition: background 0.3s;
    }
    .testimonial:hover { background: #1e1d15; }
    .testimonial::before {
      content: '"';
      position: absolute;
      top: 20px; left: 30px;
      font-family: 'Cormorant Garamond', serif;
      font-size: 5rem;
      color: rgba(201,146,58,0.15);
      line-height: 1;
    }
    .testimonial-text {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: 1.1rem;
      line-height: 1.75;
      color: var(--cream-dark);
      margin-bottom: 28px;
      position: relative; z-index: 1;
    }
    .testimonial-stars { color: var(--gold); font-size: 0.75rem; letter-spacing: 3px; margin-bottom: 12px; }
    .testimonial-author { font-size: 0.72rem; letter-spacing: 0.2em; color: var(--muted); text-transform: uppercase; }

    /* LOCATION */
    #location {
      padding: 120px 60px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      max-width: 100%;
    }
    .location-info {
      padding-right: 80px;
      max-width: 600px;
      margin-left: auto;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .location-info .section-title { margin-bottom: 36px; color: #111111; }
    .location-info .section-label { color: #8a5e1a; }
    .location-detail {
      display: flex;
      gap: 20px;
      padding: 24px 0;
      border-bottom: 1px solid rgba(0,0,0,0.1);
    }
    .location-detail:first-of-type { border-top: 1px solid rgba(0,0,0,0.1); }
    .loc-icon { font-size: 1.3rem; flex-shrink: 0; }
    .loc-label { font-size: 0.62rem; letter-spacing: 0.25em; text-transform: uppercase; color: #8a5e1a; margin-bottom: 6px; }
    .loc-value { font-size: 0.95rem; color: #111111; line-height: 1.6; }
    .location-map {
      background: linear-gradient(135deg, #0f0e0a 0%, #181510 100%);
      border-left: 1px solid rgba(201,146,58,0.1);
      display: flex; align-items: center; justify-content: center;
      font-size: 8rem;
      position: relative;
      overflow: hidden;
      min-height: 500px;
    }
    .map-grid {
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(201,146,58,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201,146,58,0.06) 1px, transparent 1px);
      background-size: 50px 50px;
    }
    .map-pin {
      position: relative; z-index: 2;
      text-align: center;
    }
    .map-pin .pin-icon { font-size: 4rem; }
    .map-pin-label {
      font-family: 'Shippori Mincho', serif;
      font-size: 1.1rem;
      color: var(--gold);
      margin-top: 12px;
      letter-spacing: 0.08em;
    }

    /* FOOTER */
    footer {
      background: var(--black);
      padding: 80px 60px 40px;
      border-top: 1px solid rgba(201,146,58,0.1);
    }
    .footer-top {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 60px;
      margin-bottom: 60px;
    }
    .footer-brand .nav-logo { font-size: 1.8rem; display: block; margin-bottom: 16px; }
    .footer-brand p {
      font-size: 0.88rem;
      color: var(--muted);
      line-height: 1.75;
      max-width: 280px;
    }
    .footer-social { display: flex; gap: 12px; margin-top: 24px; }
    .social-link {
      width: 38px; height: 38px;
      border: 1px solid rgba(201,146,58,0.2);
      display: flex; align-items: center; justify-content: center;
      font-size: 0.9rem;
      text-decoration: none;
      color: var(--cream-dark);
      transition: border-color 0.3s, color 0.3s;
    }
    .social-link:hover { border-color: var(--gold); color: var(--gold); }
    .footer-col h4 {
      font-size: 0.65rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 24px;
    }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 12px; }
    .footer-col ul li a {
      color: var(--muted);
      text-decoration: none;
      font-size: 0.88rem;
      transition: color 0.3s;
    }
    .footer-col ul li a:hover { color: var(--cream); }
    .footer-col p { color: var(--muted); font-size: 0.88rem; line-height: 1.75; }
    .footer-bottom {
      display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center;
      gap: 10px;
      padding-top: 30px;
      border-top: 1px solid rgba(245,237,224,0.05);
    }
    .footer-bottom p { font-size: 0.75rem; color: rgba(245,237,224,0.25); }
    .footer-bottom a { color: var(--gold); text-decoration: none; }

    /* SUCCESS MESSAGE */
    .success-msg {
      display: none;
      text-align: center;
      padding: 30px;
      background: rgba(201,146,58,0.1);
      border: 1px solid rgba(201,146,58,0.3);
      color: var(--gold);
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: 1.2rem;
      margin-top: 20px;
    }

    /* MOBILE HAMBURGER */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 6px;
      z-index: 101;
    }
    .hamburger span {
      display: block;
      width: 24px; height: 1.5px;
      background: var(--cream);
      transition: all 0.3s;
    }
    .hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

    /* ============================================
       RESPONSIVE — TABLET (≤1024px)
    ============================================ */
    @media (max-width: 1024px) {
      nav { padding: 18px 24px; }
      nav.scrolled { padding: 14px 24px; }
      .nav-links { display: none; }
      .hamburger { display: flex; }

      #about {
        grid-template-columns: 1fr;
        padding: 80px 32px;
        gap: 50px;
        max-width: 100%;
      }
      .about-img-main { aspect-ratio: 16/9; }
      .about-img-accent { width: 38%; bottom: -18px; right: 0; }
      .about-image-wrap { overflow: visible; padding-bottom: 20px; }

      #menu { padding: 80px 24px; }
      .menu-grid { grid-template-columns: 1fr 1fr; gap: 2px; }
      .menu-tab { padding: 12px 20px; font-size: 0.68rem; letter-spacing: 0.12em; }

      #gallery { padding: 80px 24px; }
      .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 220px 220px 220px;
        gap: 3px;
      }
      .gallery-cell { grid-column: auto !important; grid-row: auto !important; }
      .gallery-cell:nth-child(3) { grid-column: 1/3 !important; }
      .gallery-img { min-height: 220px; }

      #chef { grid-template-columns: 1fr; padding: 80px 32px; gap: 50px; }
      .chef-img { order: -1; aspect-ratio: 16/9; font-size: 6rem; }

      #testimonials { padding: 80px 24px; }
      .testimonials-grid { grid-template-columns: 1fr; gap: 2px; }

      #location { grid-template-columns: 1fr; padding: 80px 32px; }
      .location-info { padding-right: 0; max-width: 100%; margin-left: 0; margin-bottom: 40px; }
      .location-map { min-height: 260px; border-left: none; border-top: 1px solid rgba(201,146,58,0.1); }

      #reservations { padding: 80px 24px; }
      .res-form { grid-template-columns: 1fr; }
      .form-group.full { grid-column: 1; }
      .res-info { flex-direction: column; gap: 20px; }

      .experience-strip {
        gap: 16px;
        padding: 20px 16px;
        flex-wrap: wrap;
        justify-content: center;
      }
      .strip-divider { display: none; }
      .strip-item { flex: 0 0 calc(50% - 16px); justify-content: center; }

      .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
      footer { padding: 60px 32px 32px; }
    }

    /* ============================================
       RESPONSIVE — MOBILE (≤640px)
    ============================================ */
    @media (max-width: 640px) {
      nav { padding: 16px 20px; }
      nav.scrolled { padding: 12px 20px; }

      #hero { min-height: 100svh; }
      .hero-eyebrow {
        font-size: 0.6rem;
        letter-spacing: 0.18em;
        padding: 6px 14px;
        margin-bottom: 20px;
      }
      .hero-title { line-height: 0.95; }
      .hero-subtitle { font-size: 1rem; padding: 0 16px; }
      .hero-divider { height: 40px; margin: 24px auto; }
      .hero-actions { flex-direction: column; gap: 12px; width: 100%; padding: 0 24px; }
      .btn-primary, .btn-outline { text-align: center; width: 100%; padding: 14px 24px; }

      .experience-strip { padding: 16px; gap: 12px; }
      .strip-item { flex: 0 0 calc(50% - 12px); }
      .strip-text { font-size: 0.62rem; letter-spacing: 0.1em; }

      #about { padding: 60px 20px; gap: 40px; }
      .about-img-main { aspect-ratio: 4/3; }
      .about-img-accent { display: none; }
      .about-content p { font-size: 0.95rem; }
      .about-stats { grid-template-columns: repeat(3, 1fr); gap: 1px; }
      .stat { padding: 20px 10px; }
      .stat-num { font-size: 1.8rem; }

      #menu { padding: 60px 20px; }
      .menu-header { margin-bottom: 40px; }
      .menu-tabs { width: 100%; }
      .menu-tab { padding: 11px 16px; font-size: 0.65rem; letter-spacing: 0.1em; flex: 1; text-align: center; }
      .menu-grid { grid-template-columns: 1fr; }
      .menu-item { padding: 28px 24px; }
      .menu-cta-wrap { margin-top: 40px; }

      #gallery { padding: 60px 20px; }
      .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 160px 160px 160px;
      }
      .gallery-cell:nth-child(3) { grid-column: 1/3 !important; }
      .gallery-img { min-height: 160px; font-size: 2.8rem; }

      #chef { padding: 60px 20px; gap: 36px; }
      .chef-img { font-size: 5rem; aspect-ratio: 3/2; }
      .chef-award { bottom: -16px; left: 16px; font-size: 0.58rem; padding: 10px 14px; }

      #testimonials { padding: 60px 20px; }
      .testimonial { padding: 36px 24px; }

      #reservations { padding: 60px 20px; }
      .reservations-inner { max-width: 100%; }
      .res-submit { letter-spacing: 0.15em; font-size: 0.72rem; }

      #location { padding: 60px 20px; }
      .location-map { min-height: 200px; }

      footer { padding: 48px 20px 28px; }
      .footer-top { grid-template-columns: 1fr; gap: 32px; }
      .footer-brand p { max-width: 100%; }
      .footer-bottom { flex-direction: column; align-items: flex-start; gap: 6px; }
    }

    /* ============================================
       RESPONSIVE — PEQUEÑO (≤380px)
    ============================================ */
    @media (max-width: 380px) {
      .hero-eyebrow { font-size: 0.55rem; letter-spacing: 0.12em; }
      .menu-tab { padding: 10px 10px; font-size: 0.6rem; letter-spacing: 0.05em; }
      .stat-num { font-size: 1.5rem; }
      .section-title { font-size: clamp(1.8rem, 7vw, 2.5rem); }
    }
.admin-bar nav{top:32px}@media(max-width:782px){.admin-bar nav{top:46px}}.menu-cta-wrap{text-align:center;margin-top:60px;position:relative;z-index:2}.hero-actions a,.menu-cta-wrap a,.location-info a{display:inline-block}img{max-width:100%;height:auto}

/* Editable photo support */
.about-img-main.has-photo,
.chef-img.has-photo,
.gallery-img.has-photo,
.menu-item-photo {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}
.about-img-main.has-photo::after,
.chef-img.has-photo::after,
.gallery-img.has-photo::after,
.menu-item-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.28), rgba(0,0,0,.02));
  pointer-events: none;
}
.menu-item-photo {
  position: relative;
  width: calc(100% + 64px);
  height: 190px;
  margin: -36px -32px 24px;
  border-bottom: 1px solid rgba(201,146,58,0.18);
  overflow: hidden;
}
.menu-item:hover .menu-item-photo { filter: brightness(1.08); }
.chef-img.has-photo span,
.about-img-main.has-photo .emoji-art,
.gallery-img.has-photo { color: transparent; }
@media (max-width: 640px) {
  .menu-item-photo { width: calc(100% + 48px); margin: -28px -24px 22px; height: 180px; }
}
