/*
Theme Name: ishidaya3
Template: hello-elementor
*/

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

  :root {
    --red: #C0392B;
    --red-deep: #8B1A0F;
    --gold: #C9A96E;
    --gold-light: #E8D5A3;
    --ink: #0D0D0D;
    --charcoal: #1A1A1A;
    --ash: #2C2C2C;
    --paper: #F5F0E8;
    --cream: #FAF7F2;
    --white: #FFFFFF;
    --muted: #888;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Cormorant Garamond', serif;
    background: var(--ink);
    color: var(--paper);
    overflow-x: hidden;
    cursor: default;
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4rem;
    background: linear-gradient(to bottom, rgba(13,13,13,0.95), transparent);
    transition: background 0.4s;
  }
  nav.scrolled { background: rgba(13,13,13,0.97); }

  .nav-logo {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--gold);
    text-decoration: none;
  }
  .nav-logo span { font-size: 0.75rem; display: block; letter-spacing: 0.3em; color: var(--gold-light); font-weight: 300; margin-top: 2px; }

  .nav-links { display: flex; gap: 2.5rem; align-items: center; list-style: none; }
  .nav-links a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.95rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--paper);
    text-decoration: none;
    opacity: 0.75;
    transition: opacity 0.3s, color 0.3s;
  }
  .nav-links a:hover { opacity: 1; color: var(--gold); }
  .nav-cta {
    background: var(--red);
    color: var(--white) !important;
    padding: 0.6rem 1.6rem !important;
    opacity: 1 !important;
    letter-spacing: 0.15em !important;
    transition: background 0.3s !important;
  }
  .nav-cta:hover { background: var(--red-deep) !important; }

  /* ── HERO ── */
  #hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse at 30% 60%, rgba(192,57,43,0.12) 0%, transparent 60%),
      linear-gradient(160deg, #0D0D0D 0%, #1A1214 50%, #0D0D0D 100%);
    z-index: 0;
  }

  /* Japanese geometric pattern overlay */
  .hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      repeating-linear-gradient(45deg, transparent, transparent 24px, rgba(201,169,110,0.03) 24px, rgba(201,169,110,0.03) 25px),
      repeating-linear-gradient(-45deg, transparent, transparent 24px, rgba(201,169,110,0.03) 24px, rgba(201,169,110,0.03) 25px);
    z-index: 1;
  }

  /* Vertical red line accent */
  .hero-bg::after {
    content: '';
    position: absolute;
    left: 15%;
    top: 0; bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--red) 30%, var(--red) 70%, transparent);
    opacity: 0.4;
    z-index: 2;
  }

  .hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    animation: fadeUp 1.2s ease both;
  }

  .hero-jp {
    font-family: 'Noto Serif JP', serif;
    font-size: 1rem;
    letter-spacing: 0.5em;
    color: var(--gold);
    margin-bottom: 2rem;
    opacity: 0.85;
    animation: fadeUp 1s 0.2s ease both;
  }

  .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(4rem, 9vw, 9rem);
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: -0.01em;
    color: var(--white);
    margin-bottom: 0.3em;
  }
  .hero-title em {
    font-style: italic;
    color: var(--gold);
    display: block;
  }

  .hero-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 300;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--paper);
    opacity: 0.6;
    margin-bottom: 3.5rem;
    animation: fadeUp 1s 0.4s ease both;
  }

  .hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    animation: fadeUp 1s 0.6s ease both;
  }

  .btn-primary {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.9rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    padding: 1rem 2.5rem;
    background: var(--red);
    color: var(--white);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
    display: inline-block;
  }
  .btn-primary:hover { background: var(--red-deep); transform: translateY(-2px); }

  .btn-outline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.9rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s, color 0.3s, transform 0.2s;
    display: inline-block;
  }
  .btn-outline:hover { background: var(--gold); color: var(--ink); transform: translateY(-2px); }

  .hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.45;
    animation: fadeUp 1s 1s ease both;
  }
  .hero-scroll span { font-size: 0.7rem; letter-spacing: 0.35em; text-transform: uppercase; }
  .scroll-line {
    width: 1px; height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s infinite;
  }

  /* ── DIVIDER ── */
  .section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 1rem 0;
  }
  .section-divider::before, .section-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(201,169,110,0.3), transparent);
  }
  .divider-icon { color: var(--gold); font-size: 1.2rem; opacity: 0.6; }

  /* ── SECTION BASE ── */
  section { padding: 8rem 4rem; }
  .container { max-width: 1400px; margin: 0 auto; }

  .section-label {
    font-family: 'Noto Serif JP', serif;
    font-size: 0.75rem;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 1rem;
    display: block;
  }
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4vw, 4rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 1.5rem;
  }
  .section-title em { font-style: italic; color: var(--gold); }
  .section-body {
    font-size: 1.15rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--paper);
    opacity: 0.7;
    max-width: 540px;
  }

  /* ── ABOUT ── */
  #about { background: var(--charcoal); }
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
  }
  .about-visual {
    position: relative;
  }
  .about-img-main {
    width: 100%;
    aspect-ratio: 3/4;
    background: var(--ash);
    overflow: hidden;
    position: relative;
  }
  .about-img-main img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(0.85) contrast(1.05);
    transition: transform 0.8s ease;
  }
  .about-img-main:hover img { transform: scale(1.04); }

  .about-img-secondary {
    position: absolute;
    width: 55%;
    aspect-ratio: 1;
    background: var(--ink);
    border: 3px solid var(--charcoal);
    bottom: -2.5rem;
    right: -2.5rem;
    overflow: hidden;
  }
  .about-img-secondary img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
    transition: transform 0.8s ease;
  }
  .about-img-secondary:hover img { transform: scale(1.06); }

  .about-accent {
    position: absolute;
    top: -1.5rem; left: -1.5rem;
    width: 80px; height: 80px;
    border: 1px solid rgba(201,169,110,0.3);
    z-index: -1;
  }

  .about-stat {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(201,169,110,0.15);
  }
  .stat-item { }
  .stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 400;
    color: var(--gold);
    line-height: 1;
  }
  .stat-label { font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-top: 0.25rem; }

  /* ── MENU PREVIEW ── */
  #menu { background: var(--ink); }
  .menu-intro { text-align: center; max-width: 600px; margin: 0 auto 5rem; }
  .menu-intro .section-body { margin: 0 auto; }

  .menu-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 4rem;
    border-bottom: 1px solid rgba(201,169,110,0.2);
  }
  .menu-tab {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.75rem 2rem;
    background: none;
    border: none;
    color: var(--muted);
    cursor: pointer;
    position: relative;
    transition: color 0.3s;
  }
  .menu-tab.active { color: var(--gold); }
  .menu-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 0; right: 0;
    height: 2px;
    background: var(--gold);
  }

  .menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
  }
  .menu-card {
    background: var(--charcoal);
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
  }
  .menu-card:hover { background: var(--ash); }
  .menu-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px; height: 0;
    background: var(--red);
    transition: height 0.4s ease;
  }
  .menu-card:hover::before { height: 100%; }

  .menu-card-number {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 400;
    color: rgba(201,169,110,0.08);
    position: absolute;
    top: 1rem; right: 1.5rem;
    line-height: 1;
    pointer-events: none;
  }

  .menu-card-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    margin-bottom: 1.5rem;
    filter: brightness(0.85) saturate(0.9);
    transition: filter 0.4s, transform 0.6s;
  }
  .menu-card:hover .menu-card-img { filter: brightness(0.95) saturate(1.05); transform: scale(1.02); }

  .menu-card-jp { font-family: 'Noto Serif JP', serif; font-size: 0.7rem; color: var(--gold); letter-spacing: 0.3em; margin-bottom: 0.4rem; }
  .menu-card-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 0.5rem;
  }
  .menu-card-desc { font-size: 0.95rem; color: var(--muted); line-height: 1.7; margin-bottom: 1.25rem; }
  .menu-card-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--gold);
    letter-spacing: 0.05em;
  }

  /* ── GALLERY ── */
  #gallery { background: var(--charcoal); padding: 8rem 0; }
  .gallery-header {
    padding: 0 4rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 4rem;
  }

  .gallery-masonry {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 3px;
    padding: 0 4rem;
  }

  .g-item {
    overflow: hidden;
    position: relative;
    cursor: zoom-in;
  }
  .g-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(0.8) saturate(0.85);
    transition: filter 0.5s ease, transform 0.7s ease;
  }
  .g-item:hover img { filter: brightness(1) saturate(1.1); transform: scale(1.06); }

  .g-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13,13,13,0.8) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
  }
  .g-item:hover .g-item-overlay { opacity: 1; }
  .g-item-label { font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }

  /* Masonry layout */
  .g-item:nth-child(1) { grid-column: 1 / 4; grid-row: 1 / 2; }
  .g-item:nth-child(2) { grid-column: 4 / 7; grid-row: 1 / 2; }
  .g-item:nth-child(3) { grid-column: 7 / 10; grid-row: 1 / 3; }
  .g-item:nth-child(4) { grid-column: 10 / 13; grid-row: 1 / 2; }
  .g-item:nth-child(5) { grid-column: 1 / 5; grid-row: 2 / 3; }
  .g-item:nth-child(6) { grid-column: 5 / 7; grid-row: 2 / 3; }
  .g-item:nth-child(7) { grid-column: 10 / 13; grid-row: 2 / 3; }

  /* ── VIDEO SECTION ── */
  #video-section { background: var(--ink); padding: 0; position: relative; overflow: hidden; }
  .video-wrapper {
    position: relative;
    aspect-ratio: 21/9;
    overflow: hidden;
  }
  .video-placeholder {
    width: 100%; height: 100%;
    background:
      radial-gradient(ellipse at center, rgba(192,57,43,0.15) 0%, rgba(13,13,13,0.95) 70%),
      linear-gradient(135deg, #0D0D0D 0%, #1C0E0E 50%, #0D0D0D 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2rem;
    min-height: 500px;
  }
  .video-play-btn {
    width: 90px; height: 90px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    position: relative;
  }
  .video-play-btn:hover { background: rgba(201,169,110,0.1); transform: scale(1.08); }
  .video-play-btn::after {
    content: '';
    width: 0; height: 0;
    border-left: 28px solid var(--gold);
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
    margin-left: 6px;
  }

  /* Pulse rings */
  .video-play-btn::before {
    content: '';
    position: absolute;
    inset: -12px;
    border: 1px solid rgba(201,169,110,0.25);
    border-radius: 50%;
    animation: pulsRing 2s infinite;
  }

  .video-caption {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 4.5rem);
    text-align: center;
    color: var(--white);
    letter-spacing: 0.02em;
    padding: 0 2rem;
  }
  .video-caption em { color: var(--gold); font-style: italic; }

  /* ── EXPERIENCE ── */
  #experience { background: var(--charcoal); }
  .experience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(201,169,110,0.1);
    border: 1px solid rgba(201,169,110,0.1);
  }
  .exp-card {
    background: var(--charcoal);
    padding: 3.5rem 2.5rem;
    position: relative;
    text-align: center;
    transition: background 0.3s;
  }
  .exp-card:hover { background: var(--ash); }
  .exp-icon {
    font-family: 'Noto Serif JP', serif;
    font-size: 2.5rem;
    color: var(--gold);
    opacity: 0.5;
    margin-bottom: 1.5rem;
    display: block;
  }
  .exp-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1rem;
  }
  .exp-desc { font-size: 1rem; color: var(--muted); line-height: 1.8; font-weight: 300; }

  /* ── RESERVATION ── */
  #reservation {
    background: var(--ink);
    background-image:
      radial-gradient(ellipse at 70% 50%, rgba(192,57,43,0.08) 0%, transparent 60%),
      repeating-linear-gradient(0deg, transparent, transparent 49px, rgba(201,169,110,0.02) 49px, rgba(201,169,110,0.02) 50px),
      repeating-linear-gradient(90deg, transparent, transparent 49px, rgba(201,169,110,0.02) 49px, rgba(201,169,110,0.02) 50px);
  }
  .res-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
  }
  .res-form { }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
  .form-group { display: flex; flex-direction: column; gap: 0.4rem; }
  .form-group label { font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
  .form-group input, .form-group select {
    background: var(--charcoal);
    border: 1px solid rgba(201,169,110,0.15);
    color: var(--paper);
    padding: 0.85rem 1rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
    appearance: none;
    width: 100%;
  }
  .form-group input:focus, .form-group select:focus { border-color: var(--gold); }
  .form-group select option { background: var(--charcoal); }

  .res-info { }
  .res-info-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(201,169,110,0.1);
  }
  .res-info-item:first-child { padding-top: 0; }
  .res-info-icon {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.5rem;
    color: var(--gold);
    opacity: 0.6;
    min-width: 2rem;
    text-align: center;
  }
  .res-info-label { font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--red); margin-bottom: 0.25rem; }
  .res-info-value { font-size: 1.05rem; color: var(--paper); opacity: 0.8; line-height: 1.6; }

  /* ── FOOTER ── */
  footer {
    background: var(--ink);
    border-top: 1px solid rgba(201,169,110,0.1);
    padding: 4rem 4rem 2rem;
  }
  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(201,169,110,0.08);
  }
  .footer-logo {
    font-family: 'Noto Serif JP', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
  }
  .footer-tagline { font-size: 0.9rem; color: var(--muted); line-height: 1.7; margin-top: 1rem; max-width: 260px; }
  .footer-col h4 { font-family: 'Cormorant Garamond', serif; font-size: 0.8rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
  .footer-col ul li a { font-size: 0.95rem; color: var(--muted); text-decoration: none; transition: color 0.3s; }
  .footer-col ul li a:hover { color: var(--paper); }
  .footer-bottom { display: flex; justify-content: space-between; align-items: center; }
  .footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.25); letter-spacing: 0.05em; }
  .social-links { display: flex; gap: 1.5rem; }
  .social-links a { color: var(--muted); font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase; text-decoration: none; transition: color 0.3s; }
  .social-links a:hover { color: var(--gold); }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes scrollPulse {
    0%, 100% { opacity: 0.45; transform: scaleY(1); }
    50% { opacity: 0.7; transform: scaleY(1.1); }
  }
  @keyframes pulsRing {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.5); opacity: 0; }
  }

  .fade-in { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
  .fade-in.visible { opacity: 1; transform: translateY(0); }

  /* Red kanji decoration */
  .kanji-deco {
    font-family: 'Noto Serif JP', serif;
    font-size: 14rem;
    color: rgba(192,57,43,0.04);
    position: absolute;
    line-height: 1;
    pointer-events: none;
    user-select: none;
  }

  /* Chopstick divider */
  .chopstick-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
  }
  .chopstick-divider::before, .chopstick-divider::after {
    content: '';
    width: 60px; height: 1px;
    background: rgba(201,169,110,0.3);
  }
  .chopstick-divider span { color: var(--gold); font-size: 0.6rem; }

  /* Utility */
  .text-gold { color: var(--gold); }
  .text-center { text-align: center; }
  .mt-1 { margin-top: 1rem; }
  .mt-2 { margin-top: 2rem; }
  .mt-3 { margin-top: 3rem; }

  /* Image placeholders styled as colored blocks for demo */
  .img-sushi-1 { background: linear-gradient(135deg, #1a0a0a, #3d1010); }
  .img-sushi-2 { background: linear-gradient(135deg, #0a1a10, #102d1a); }
  .img-sushi-3 { background: linear-gradient(135deg, #1a1510, #2d2010); }
  .img-chef { background: linear-gradient(135deg, #100a1a, #1a1030); }
  .img-interior { background: linear-gradient(135deg, #1a1010, #0d0d0d); }

  .placeholder-img {
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Noto Serif JP', serif;
    font-size: 3rem;
    color: rgba(201,169,110,0.2);
    letter-spacing: 0.2em;
  }

  /* ============================================
     RESPONSIVE STYLES
     ============================================ */

  /* ── TABLET LANDSCAPE (max-width: 1200px) ── */
  @media (max-width: 1200px) {
    nav { padding: 1.5rem 3rem; }
    section { padding: 6rem 3rem; }
    .container { max-width: 1100px; }

    .about-grid { gap: 4rem; }
    .res-inner { gap: 4rem; }

    .menu-grid { grid-template-columns: repeat(2, 1fr); }

    .gallery-masonry {
      grid-template-columns: repeat(6, 1fr);
      grid-template-rows: auto;
    }
    .g-item:nth-child(1) { grid-column: 1 / 3; grid-row: auto; }
    .g-item:nth-child(2) { grid-column: 3 / 5; grid-row: auto; }
    .g-item:nth-child(3) { grid-column: 5 / 7; grid-row: auto; }
    .g-item:nth-child(4) { grid-column: 1 / 4; grid-row: auto; }
    .g-item:nth-child(5) { grid-column: 4 / 7; grid-row: auto; }
    .g-item:nth-child(6) { grid-column: 1 / 3; grid-row: auto; }
    .g-item:nth-child(7) { grid-column: 3 / 7; grid-row: auto; }
    .g-item { min-height: 220px; }

    .footer-top { grid-template-columns: 2fr 1fr 1fr; gap: 3rem; }
  }

  /* ── TABLET PORTRAIT (max-width: 1024px) ── */
  @media (max-width: 1024px) {
    nav { padding: 1.25rem 2rem; }
    section { padding: 5rem 2rem; }
    .container { max-width: 100%; }

    .nav-links { gap: 1.5rem; }
    .nav-links a { font-size: 0.85rem; }

    .hero-title { font-size: clamp(3rem, 8vw, 6rem); }

    .about-grid {
      grid-template-columns: 1fr;
      gap: 3rem;
    }
    .about-visual { order: -1; }
    .about-img-secondary {
      width: 45%;
      bottom: -1.5rem;
      right: -1.5rem;
    }

    .menu-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .menu-card { padding: 2rem 1.5rem; }

    .experience-grid { grid-template-columns: repeat(2, 1fr); }
    .exp-card:last-child { grid-column: 1 / -1; }

    .res-inner {
      grid-template-columns: 1fr;
      gap: 3rem;
    }

    .gallery-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 1.5rem;
      padding: 0 2rem;
      margin-bottom: 3rem;
    }
    .gallery-masonry { padding: 0 2rem; }

    .footer-top {
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
    }
    .footer-top > div:first-child {
      grid-column: 1 / -1;
    }
  }

  /* ── MOBILE LARGE (max-width: 768px) ── */
  @media (max-width: 768px) {
    nav {
      padding: 1rem 1.5rem;
      flex-wrap: wrap;
    }
    nav.scrolled { padding: 0.75rem 1.5rem; }

    .nav-logo { font-size: 1.3rem; }
    .nav-logo .logo-img { max-height: 45px; }

    /* Hamburger-style mobile nav */
    .nav-links {
      position: fixed;
      top: 0;
      right: -100%;
      width: 280px;
      height: 100vh;
      background: var(--ink);
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 2rem;
      z-index: 1000;
      transition: right 0.4s ease;
      border-left: 1px solid rgba(201,169,110,0.15);
    }
    .nav-links.open { right: 0; }
    .nav-links a { font-size: 1rem; letter-spacing: 0.15em; opacity: 1; }
    .nav-cta { padding: 0.75rem 2rem !important; }

    /* Mobile menu toggle button — added via JS */
    .nav-toggle {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 5px;
      width: 32px;
      height: 32px;
      background: transparent;
      border: 1px solid rgba(201,169,110,0.3);
      cursor: pointer;
      z-index: 1001;
      position: relative;
    }
    .nav-toggle span {
      display: block;
      width: 20px;
      height: 1px;
      background: var(--gold);
      transition: transform 0.3s, opacity 0.3s;
    }
    .nav-toggle.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
    .nav-toggle.active span:nth-child(2) { opacity: 0; }
    .nav-toggle.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

    /* Mobile overlay */
    .nav-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.5);
      z-index: 999;
    }
    .nav-overlay.visible { display: block; }

    section { padding: 4rem 1.5rem; }
    .container { padding: 0; }

    .section-label { font-size: 0.65rem; letter-spacing: 0.3em; }
    .section-title { font-size: clamp(1.8rem, 6vw, 2.8rem); }
    .section-body { font-size: 1rem; max-width: 100%; }

    /* Hero */
    .hero-jp { font-size: 0.85rem; letter-spacing: 0.3em; margin-bottom: 1.5rem; }
    .hero-title { font-size: clamp(2.5rem, 12vw, 4rem); margin-bottom: 0.5rem; }
    .hero-sub { font-size: 1rem; letter-spacing: 0.2em; margin-bottom: 2.5rem; }
    .hero-actions { flex-direction: column; gap: 1rem; align-items: center; }
    .btn-primary, .btn-outline { width: 100%; max-width: 280px; text-align: center; }
    .hero-scroll { bottom: 1.5rem; }

    /* About */
    #about { padding: 4rem 1.5rem; }
    .about-grid { gap: 2.5rem; }
    .about-img-secondary {
      width: 40%;
      bottom: -1rem;
      right: -1rem;
    }
    .about-stat {
      flex-wrap: wrap;
      gap: 2rem;
    }
    .stat-number { font-size: 2.2rem; }

    /* Menu */
    #menu { padding: 4rem 1.5rem; }
    .menu-tabs {
      flex-wrap: wrap;
      margin-bottom: 2.5rem;
    }
    .menu-tab { padding: 0.6rem 1.2rem; font-size: 0.85rem; }
    .menu-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
    .menu-card { padding: 1.5rem; }
    .menu-card-number { font-size: 3rem; }
    .menu-card-name { font-size: 1.3rem; }

    /* Gallery */
    #gallery { padding: 4rem 0; }
    .gallery-header { padding: 0 1.5rem; margin-bottom: 2rem; }
    .gallery-masonry {
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto;
      padding: 0 1.5rem;
      gap: 2px;
    }
    .g-item { grid-column: auto !important; grid-row: auto !important; min-height: 180px; }
    .g-item:nth-child(1) { grid-column: 1 / -1 !important; min-height: 250px; }

    /* Video */
    .video-placeholder { min-height: 300px; }
    .video-play-btn { width: 70px; height: 70px; }
    .video-play-btn::after { border-left-width: 22px; border-top-width: 13px; border-bottom-width: 13px; margin-left: 5px; }
    .video-caption { font-size: clamp(1.5rem, 5vw, 2.5rem); padding: 0 1.5rem; }

    /* Video Slider (new) */
    #video-section .container { padding: 0 2rem; margin-bottom: 2.5rem; }
    .video-slider-wrapper { padding: 0 2rem; }
    .video-slide-item { flex: 0 0 80%; min-width: 260px; max-width: none; }

    /* Experience */
    #experience { padding: 4rem 1.5rem; }
    .experience-grid {
      grid-template-columns: 1fr;
      gap: 0;
    }
    .exp-card { padding: 2.5rem 2rem; }
    .exp-card:last-child { grid-column: auto; }
    .exp-title { font-size: 1.3rem; }

    /* Reservation */
    #reservation { padding: 4rem 1.5rem; }
    .res-inner { gap: 2.5rem; }
    .form-row { grid-template-columns: 1fr; gap: 0.75rem; }
    .form-group input, .form-group select { padding: 0.75rem 0.85rem; font-size: 0.95rem; }

    .res-info-item { padding: 1.25rem 0; gap: 1rem; }
    .res-info-icon { font-size: 1.2rem; }
    .res-info-value { font-size: 0.95rem; }

    /* Footer */
    footer { padding: 3rem 1.5rem 1.5rem; }
    .footer-top {
      grid-template-columns: 1fr;
      gap: 2.5rem;
      padding-bottom: 2.5rem;
    }
    .footer-top > div:first-child { grid-column: auto; }
    .footer-logo { font-size: 1.6rem; }
    .footer-tagline { max-width: 100%; }
    .footer-col h4 { margin-bottom: 1rem; }
    .footer-bottom {
      flex-direction: column;
      gap: 1rem;
      text-align: center;
    }
    .social-links { justify-content: center; }
  }

  /* ── MOBILE SMALL (max-width: 480px) ── */
  @media (max-width: 480px) {
    nav { padding: 0.75rem 1rem; }

    .nav-logo { font-size: 1.1rem; }
    .nav-logo .logo-img { max-height: 38px; }

    .nav-links { width: 100%; right: -100%; }

    section { padding: 3rem 1rem; }

    .section-label { margin-bottom: 0.75rem; }
    .section-title { margin-bottom: 1rem; }

    .hero-jp { font-size: 0.75rem; letter-spacing: 0.2em; margin-bottom: 1rem; }
    .hero-title { font-size: clamp(2rem, 14vw, 3rem); }
    .hero-sub { font-size: 0.85rem; letter-spacing: 0.15em; margin-bottom: 2rem; }
    .hero-scroll span { font-size: 0.6rem; }

    .btn-primary, .btn-outline { padding: 0.85rem 1.5rem; font-size: 0.8rem; }

    .about-img-secondary { display: none; }
    .about-accent { display: none; }
    .about-stat { flex-direction: column; gap: 1.5rem; }

    .menu-card { padding: 1.25rem; }
    .menu-card-number { font-size: 2.5rem; top: 0.5rem; right: 1rem; }
    .menu-card-name { font-size: 1.15rem; }
    .menu-card-desc { font-size: 0.85rem; }
    .menu-card-price { font-size: 1.1rem; }

    .gallery-masonry { grid-template-columns: 1fr; padding: 0 1rem; }
    .g-item { min-height: 200px; }
    .g-item:nth-child(1) { min-height: 280px; }
    .gallery-header { padding: 0 1rem; }

    .video-placeholder { min-height: 220px; }
    .video-play-btn { width: 60px; height: 60px; }
    .video-play-btn::after { border-left-width: 18px; border-top-width: 11px; border-bottom-width: 11px; }

    /* Video Slider (new) */
    #video-section .container { padding: 0 1rem; margin-bottom: 1.5rem; }
    .video-slider-wrapper { padding: 0 1rem; }
    .video-slide-item { flex: 0 0 85%; min-width: 240px; }
    .video-slide-caption { font-size: 0.9rem; }
    .video-slide-num { font-size: 2rem; }

    .exp-card { padding: 2rem 1.5rem; }
    .exp-icon { font-size: 2rem; margin-bottom: 1rem; }
    .exp-title { font-size: 1.15rem; }
    .exp-desc { font-size: 0.9rem; }

    .form-group label { font-size: 0.65rem; }
    .form-group input, .form-group select { font-size: 0.9rem; }

    footer { padding: 2.5rem 1rem 1rem; }
    .footer-top { gap: 2rem; padding-bottom: 2rem; }
    .footer-logo { font-size: 1.4rem; }
    .footer-copy { font-size: 0.7rem; }
  }

  /* ── PRINT ── */
  @media print {
    nav, footer, .hero-scroll, .cursor, .cursor-ring { display: none !important; }
    body { background: #fff; color: #000; }
    section { padding: 2rem 0; }
  }

