*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --gold: #C9A84C; --gold-light: #E8C97A; --rose: #f36b83;
    --black: #080608; --charcoal: #111013; --white: #FAF8F5;
    --text-muted: rgba(250,248,245,0.55);
  }
  html { scroll-behavior: smooth; }
  body { background: var(--black); color: var(--white); font-family: 'Raleway', sans-serif; font-weight: 300; overflow-x: hidden; }

  /* ══════════════════════════════
     TWO-TIER NAV
  ══════════════════════════════ */
  .nav-wrapper { position: fixed; top: 0; left: 0; right: 0; z-index: 200; transition: all 0.4s; }
  .nav-top {
    background: rgba(8,6,8,0.95); border-bottom: 1px solid rgba(201,168,76,0.12);
    display: flex; align-items: center; justify-content: center;
    gap: 24px; padding: 0 40px; height: 36px; backdrop-filter: blur(6px);
  }
  .nav-top-social { display: flex; gap: 14px; align-items: center; }
  .nav-top-social a { color: var(--text-muted); text-decoration: none; font-size: 13px; transition: color 0.2s; line-height: 1; }
  .nav-top-social a:hover { color: var(--gold); }
  .nav-top-divider { width: 1px; height: 16px; background: rgba(201,168,76,0.25); flex-shrink: 0; }
  .nav-top-info { display: flex; gap: 24px; align-items: center; }
  .nav-top-info a { color: var(--text-muted); text-decoration: none; font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; display: flex; align-items: center; gap: 6px; transition: color 0.2s; white-space: nowrap; }
  .nav-top-info a:hover { color: var(--gold); }
  .nav-bottom {
    background: rgba(8,6,8,0.97); backdrop-filter: blur(6px);
    display: flex; align-items: center; justify-content: center;
    height: 68px; border-bottom: 1px solid rgba(201,168,76,0.08);
    padding: 0 32px; gap: 0;
  }
  .nav-logo-wrap { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; margin: 0 22px; }
  .nav-logo-wrap img { height: 56px; width: auto; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.7)); transition: opacity 0.2s; }
  .nav-logo-wrap img:hover { opacity: 0.85; }
  .nav-group { display: flex; align-items: center; list-style: none; }
  .nav-item { position: relative; }
  .nav-item > a {
    display: flex; align-items: center; gap: 4px;
    font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--white); text-decoration: none; padding: 0 14px; height: 68px;
    transition: color 0.2s; white-space: nowrap;
  }
  .nav-item > a:hover, .nav-item > a.active { color: var(--gold); }
  .nav-item > a .arrow { font-size: 7px; opacity: 0.55; transition: transform 0.2s; margin-top: 1px; }
  .nav-item:hover > a .arrow { transform: rotate(180deg); }
  .nav-dropdown {
    display: none; position: absolute; top: 100%; left: 0;
    background: rgba(14,11,16,0.98); border-top: 2px solid var(--rose);
    min-width: 210px; box-shadow: 0 12px 40px rgba(0,0,0,0.65); z-index: 300;
  }
  .nav-item:hover .nav-dropdown { display: block; }
  .nav-dropdown a {
    display: block; padding: 12px 20px; font-size: 11px; letter-spacing: 0.16em;
    text-transform: uppercase; color: rgba(250,248,245,0.8); text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.05); transition: all 0.2s; white-space: nowrap;
  }
  .nav-dropdown a:last-child { border-bottom: none; }
  .nav-dropdown a:hover, .nav-dropdown a.active { color: var(--gold); background: rgba(201,168,76,0.06); padding-left: 26px; }
  .nav-reserve-btn {
    border: 1px solid rgba(201,168,76,0.5) !important; padding: 8px 18px !important;
    margin-left: 10px; height: auto !important; color: var(--gold) !important; transition: all 0.3s !important;
  }
  .nav-reserve-btn:hover { background: var(--gold) !important; color: var(--black) !important; }
  .nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; -webkit-tap-highlight-color: transparent; position: absolute; right: 16px; }
  .nav-hamburger span { width: 22px; height: 1.5px; background: var(--white); display: block; }
  .mobile-menu { display: none; position: fixed; top: 64px; left: 0; right: 0; z-index: 199; background: rgba(8,6,8,0.98); border-top: 1px solid rgba(201,168,76,0.15); flex-direction: column; max-height: calc(100vh - 64px); overflow-y: auto; }
  .mobile-menu.open { display: flex; }
  .mob-section { font-size: 9px; letter-spacing: 0.35em; text-transform: uppercase; color: var(--rose); padding: 14px 20px 6px; border-top: 1px solid rgba(250,248,245,0.06); }
  .mobile-menu a { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(250,248,245,0.8); text-decoration: none; padding: 12px 20px; border-bottom: 1px solid rgba(250,248,245,0.05); transition: color 0.2s; }
  .mobile-menu a:hover, .mobile-menu a.active { color: var(--gold); }
  .mobile-menu a.mob-reserve { color: var(--gold); margin: 14px 20px 18px; border: 1px solid rgba(201,168,76,0.4); padding: 12px 20px; text-align: center; border-bottom: 1px solid rgba(201,168,76,0.4); }

  /* ══ PAGE HERO ══ */
  .page-hero {
    position: relative; min-height: 72vh; display: flex; align-items: flex-end;
    padding: 0 0 80px; overflow: hidden;
  }
  .hero-bg { position: absolute; inset: 0; }
  .hero-bg img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(8,6,8,0.3) 0%, rgba(8,6,8,0.1) 30%, rgba(8,6,8,0.75) 70%, rgba(8,6,8,0.97) 100%); }
  .hero-content { position: relative; z-index: 2; max-width: 860px; padding: 0 60px; }
  .hero-label { font-size: 10px; letter-spacing: 0.45em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; display: block; }
  .hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(52px, 8vw, 100px); font-weight: 300; font-style: italic; line-height: 0.93; color: var(--white); margin-bottom: 28px; }
  .hero-title .accent { color: var(--gold); }
  .hero-rule { width: 56px; height: 1px; background: var(--gold); margin-bottom: 24px; }
  .hero-sub { font-size: 15px; line-height: 1.85; color: rgba(250,248,245,0.82); max-width: 540px; }

  /* ══ STORY ══ */
  .story-section { padding: 100px 40px; max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .section-label { font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase; color: var(--rose); margin-bottom: 18px; display: block; }
  .section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(36px, 4vw, 58px); font-weight: 300; font-style: italic; line-height: 1.06; color: var(--white); margin-bottom: 28px; }
  .section-title .accent { color: var(--gold); }
  .story-body p { font-size: 15px; line-height: 1.9; color: var(--text-muted); margin-bottom: 20px; }
  .story-body p:last-child { margin-bottom: 0; }
  .story-images { position: relative; height: 540px; }
  .img-stack { position: absolute; overflow: hidden; }
  .img-stack img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.8s cubic-bezier(0.22,1,0.36,1); }
  .img-stack:hover img { transform: scale(1.04); }
  .img-a { top: 0; left: 0; width: 63%; height: 70%; }
  .img-b { bottom: 0; right: 0; width: 55%; height: 62%; border: 3px solid var(--black); }
  .img-a::before { content: ''; position: absolute; top: -12px; left: -12px; width: 44px; height: 44px; border-top: 2px solid var(--gold); border-left: 2px solid var(--gold); z-index: 1; }

  /* ══ PHILOSOPHY STRIP ══ */
  .philosophy { background: var(--charcoal); border-top: 1px solid rgba(201,168,76,0.1); border-bottom: 1px solid rgba(201,168,76,0.1); padding: 80px 40px; text-align: center; }
  .philosophy blockquote { font-family: 'Cormorant Garamond', serif; font-size: clamp(24px, 3.5vw, 40px); font-weight: 300; font-style: italic; color: var(--white); line-height: 1.45; max-width: 820px; margin: 0 auto 20px; }
  .philosophy blockquote .hl { color: var(--gold); }
  .philosophy cite { font-size: 10px; letter-spacing: 0.35em; text-transform: uppercase; color: var(--text-muted); }

  /* ══ SHIBUYA ══ */
  .shibuya { padding: 100px 40px; max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .shibuya-photos { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 5px; height: 480px; }
  .shibuya-photos img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s cubic-bezier(0.22,1,0.36,1); overflow: hidden; }
  .shibuya-photos img:hover { transform: scale(1.04); }
  .shibuya-photos img:first-child { grid-row: span 2; }
  .shibuya-text .section-label { color: var(--rose); }
  .shibuya-text p { font-size: 15px; line-height: 1.9; color: var(--text-muted); margin-bottom: 18px; }
  .shibuya-logo { margin-bottom: 24px; }
  .shibuya-logo img { max-width: 220px; filter: brightness(1.3) saturate(1.2); }
  .link-text { font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--rose); text-decoration: none; border-bottom: 1px solid rgba(243,107,131,0.4); padding-bottom: 3px; transition: all 0.2s; display: inline-block; margin-top: 8px; }
  .link-text:hover { color: var(--gold); border-color: var(--gold); }

  /* ══ VALUES ══ */
  .values { background: var(--charcoal); padding: 100px 40px; }
  .values-inner { max-width: 1200px; margin: 0 auto; }
  .values-header { text-align: center; margin-bottom: 64px; }
  .values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; }
  .value-card { background: rgba(255,255,255,0.03); padding: 48px 36px; position: relative; overflow: hidden; transition: background 0.3s; }
  .value-card::before { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.4s; }
  .value-card:hover { background: rgba(201,168,76,0.06); }
  .value-card:hover::before { transform: scaleX(1); }
  .value-icon { font-size: 32px; margin-bottom: 18px; display: block; line-height: 1; }
  .value-card h3 { font-family: 'Cinzel', serif; font-size: 11px; font-weight: 400; letter-spacing: 0.15em; color: var(--gold); margin-bottom: 12px; text-transform: uppercase; }
  .value-card p { font-size: 14px; line-height: 1.8; color: var(--text-muted); }

  /* ══ HOURS ══ */
  .hours-section { padding: 100px 40px; max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .hours-table { width: 100%; border-collapse: collapse; margin-top: 16px; }
  .hours-table tr { border-bottom: 1px solid rgba(201,168,76,0.08); }
  .hours-table tr:last-child { border-bottom: none; }
  .hours-table td { padding: 16px 0; font-size: 14px; line-height: 1.4; }
  .hours-table td:first-child { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); width: 48%; }
  .hours-table td:last-child { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 300; color: var(--white); }
  .hours-note { margin-top: 20px; font-size: 12px; color: var(--text-muted); line-height: 1.7; }
  .hours-img { position: relative; height: 460px; overflow: hidden; }
  .hours-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .hours-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(201,168,76,0.08), transparent); }

  /* ══ GALLERY ══ */
  .gallery-strip { display: grid; grid-template-columns: repeat(5, 1fr); height: 300px; overflow: hidden; }
  .gallery-strip .gitem { overflow: hidden; position: relative; }
  .gallery-strip .gitem img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(0.22,1,0.36,1); display: block; }
  .gallery-strip .gitem:hover img { transform: scale(1.08); }
  .gallery-strip .gitem::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,6,8,0.4), transparent 60%); }

  /* ══ MICHELIN BADGE ══ */
  .michelin-strip { background: linear-gradient(135deg, #1a0005 0%, #0d0008 50%, #1a0005 100%); border-top: 1px solid rgba(228,0,43,0.2); border-bottom: 1px solid rgba(228,0,43,0.2); padding: 60px 40px; display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; text-align: center; }
  .michelin-strip .badge-icon { font-size: 56px; line-height: 1; }
  .michelin-strip .badge-text h3 { font-family: 'Cinzel', serif; font-size: 13px; font-weight: 400; letter-spacing: 0.2em; color: #E4002B; text-transform: uppercase; margin-bottom: 8px; }
  .michelin-strip .badge-text p { font-size: 14px; line-height: 1.7; color: var(--text-muted); max-width: 480px; }
  .michelin-strip .badge-divider { width: 1px; height: 60px; background: rgba(228,0,43,0.2); }
  .michelin-link { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase; color: #E4002B; text-decoration: none; border: 1px solid rgba(228,0,43,0.4); padding: 12px 24px; transition: all 0.3s; margin-top: 16px; }
  .michelin-link:hover { background: #E4002B; color: var(--white); }

  /* ══ CTA ══ */
  .cta-section { padding: 100px 40px; text-align: center; background: var(--black); }
  .cta-section h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(36px, 5vw, 64px); font-weight: 300; font-style: italic; color: var(--white); margin-bottom: 20px; }
  .cta-section h2 .accent { color: var(--gold); }
  .cta-section p { font-size: 15px; color: var(--text-muted); max-width: 460px; margin: 0 auto 44px; line-height: 1.8; }
  .cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
  .btn-primary { background: var(--gold); color: var(--black); padding: 18px 48px; font-size: 11px; font-weight: 400; letter-spacing: 0.28em; text-transform: uppercase; text-decoration: none; transition: all 0.3s; display: inline-block; }
  .btn-primary:hover { background: var(--gold-light); }
  .btn-ghost { border: 1px solid rgba(250,248,245,0.3); color: var(--white); padding: 18px 48px; font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; text-decoration: none; transition: all 0.3s; display: inline-block; }
  .btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

  /* ══ FOOTER ══ */
  .footer-section { background: #050405; border-top: 1px solid rgba(201,168,76,0.1); padding: 80px 40px 56px; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 48px; align-items: start; }
  .footer-block h4 { font-family: 'Cinzel', serif; font-size: 11px; font-weight: 400; letter-spacing: 0.25em; color: var(--gold); text-transform: uppercase; margin-bottom: 24px; }
  .hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; }
  .hours-day { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 3px; }
  .hours-time { font-family: 'Cormorant Garamond', serif; font-size: 17px; font-weight: 300; color: var(--white); }
  .footer-middle { text-align: center; }
  .footer-logo-img { height: 68px; width: auto; object-fit: contain; margin-bottom: 20px; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5)); }
  .footer-address { font-size: 13px; line-height: 1.7; color: var(--text-muted); margin-bottom: 20px; }
  .footer-phone { font-family: 'Cormorant Garamond', serif; font-size: 19px; color: var(--white); text-decoration: none; display: block; margin-bottom: 28px; }
  .social-icons { display: flex; gap: 14px; justify-content: center; }
  .social-icons a { width: 36px; height: 36px; border: 1px solid rgba(250,248,245,0.15); display: flex; align-items: center; justify-content: center; text-decoration: none; color: var(--text-muted); transition: all 0.3s; }
  .social-icons a:hover { border-color: var(--gold); color: var(--gold); }
  .footer-ctas { display: flex; flex-direction: column; gap: 10px; }
  .footer-ctas a { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--white); text-decoration: none; border: 1px solid rgba(250,248,245,0.15); padding: 13px 20px; text-align: center; transition: all 0.3s; display: block; }
  .footer-ctas a:hover { border-color: var(--gold); color: var(--gold); }
  .footer-ctas a.cta-primary { background: var(--gold); color: var(--black); border-color: var(--gold); }
  .footer-ctas a.cta-primary:hover { background: var(--gold-light); }
  .footer-bottom { background: #050405; border-top: 1px solid rgba(250,248,245,0.06); padding: 22px 40px; display: flex; justify-content: space-between; align-items: center; }
  .footer-bottom p { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(250,248,245,0.22); }
  .footer-bottom a { color: rgba(250,248,245,0.32); text-decoration: none; }
  .footer-bottom a:hover { color: var(--gold); }

  /* ══ VIP + CHAT ══ */
  #vip-callout { position: fixed; bottom: 148px; right: 20px; z-index: 9997; max-width: 250px; background: #1c1408; border: 1px solid rgba(201,168,76,0.35); border-radius: 16px 16px 4px 16px; padding: 16px 36px 16px 16px; box-shadow: 0 8px 32px rgba(0,0,0,0.55); display: flex; align-items: flex-start; gap: 10px; animation: popIn 0.5s 2.5s cubic-bezier(0.22,1,0.36,1) both; }
  @keyframes popIn { from{opacity:0;transform:translateY(12px) scale(0.95);}to{opacity:1;transform:translateY(0) scale(1);} }
  #vip-callout.hidden { display: none; }
  #vip-callout::after { content: ''; position: absolute; bottom: -10px; right: 24px; width: 0; height: 0; border-left: 10px solid transparent; border-top: 10px solid #1c1408; }
  .vip-emoji { font-size: 20px; line-height: 1; flex-shrink: 0; margin-top: 2px; }
  .vip-text p { font-size: 13px; font-weight: 300; line-height: 1.55; color: rgba(250,248,245,0.92); }
  .vip-text strong { font-weight: 600; color: var(--gold); }
  .vip-close { position: absolute; top: 8px; right: 10px; background: none; border: none; color: rgba(250,248,245,0.4); font-size: 15px; cursor: pointer; padding: 0; }
  .vip-close:hover { color: var(--gold); }
  #cp-chat-bubble { position: fixed; bottom: 16px; right: 16px; z-index: 9999; cursor: pointer; width: 110px; height: 110px; background: none; border: none; box-shadow: none; padding: 0; display: flex; align-items: center; justify-content: center; transition: transform 0.2s ease; -webkit-tap-highlight-color: transparent; }
  #cp-chat-bubble:hover { transform: scale(1.08); }
  #cp-chat-bubble img { width: 110px; height: 110px; object-fit: contain; display: block; filter: drop-shadow(0 4px 18px rgba(0,0,0,0.55)); }
  #cp-chat-frame { display: none; position: fixed; bottom: 140px; right: 16px; z-index: 9998; width: 360px; height: 560px; border-radius: 16px; overflow: hidden; box-shadow: 0 16px 64px rgba(0,0,0,0.6), 0 0 0 1px rgba(201,168,76,0.2); }
  #cp-chat-frame.open { display: block; animation: slideUp 0.3s cubic-bezier(0.22,1,0.36,1); }
  @keyframes slideUp { from{opacity:0;transform:translateY(16px);}to{opacity:1;transform:translateY(0);} }
  #cp-chat-frame iframe { width: 100%; height: 100%; border: none; display: block; }

  /* ══ MOBILE ══ */
  @media (max-width: 960px) {
    .nav-top { display: none; }
    .nav-bottom { padding: 0 16px; height: 64px; justify-content: center; }
    .nav-group { display: none; }
    .nav-logo-wrap { margin: 0; }
    .nav-logo-wrap img { height: 44px; }
    .nav-hamburger { display: flex; }
    .page-hero { min-height: 65vh; }
    .hero-content { padding: 0 24px 0; }
    .story-section, .shibuya, .hours-section { grid-template-columns: 1fr; gap: 40px; padding: 64px 20px; }
    .story-images { height: 280px; }
    .shibuya-photos { height: 260px; }
    .hours-img { height: 280px; }
    .philosophy { padding: 60px 20px; }
    .values { padding: 64px 20px; }
    .values-grid { grid-template-columns: 1fr; }
    .value-card { padding: 36px 24px; }
    .gallery-strip { grid-template-columns: repeat(3, 1fr); height: 200px; }
    .michelin-strip { padding: 48px 20px; gap: 24px; flex-direction: column; }
    .michelin-strip .badge-divider { display: none; }
    .cta-section { padding: 64px 20px; }
    .cta-btns { flex-direction: column; align-items: center; }
    .btn-primary, .btn-ghost { width: 100%; max-width: 280px; text-align: center; }
    .footer-section { grid-template-columns: 1fr; padding: 60px 20px 40px; gap: 40px; }
    .footer-middle { order: -1; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; padding: 18px 20px; }
    #cp-chat-bubble { width: 90px; height: 90px; bottom: 12px; right: 12px; }
    #cp-chat-bubble img { width: 90px; height: 90px; }
    #cp-chat-frame { width: calc(100vw - 24px); right: 12px; bottom: 116px; height: 520px; }
    #vip-callout { right: 12px; bottom: 136px; max-width: 220px; }
  }
  @media (max-width: 480px) {
    .gallery-strip { grid-template-columns: repeat(2, 1fr); }
  }