  :root {
    /* palette: くすみラベンダー × オフホワイト × 深いプラム */
    --bg: #f6f3ee;          /* 温かみのあるオフホワイト */
    --bg-warm: #efe9e0;     /* クリーム */
    --bg-lav: #e7dfe8;      /* 薄ラベンダー */
    --lav: #b9a9c9;         /* くすみラベンダー */
    --lav-deep: #8a7aa0;    /* 深いラベンダー */
    --plum: #4a2f4a;        /* 深いプラム */
    --ink: #2b2230;         /* テキスト */
    --ink-sub: #6b5f6f;     /* サブテキスト */
    --line: #d9cfd6;        /* 罫線 */
    --accent: #c48a6d;      /* 焼き菓子ブラウン（差し色） */
  }

  * { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--bg);
    color: var(--ink);
    font-family: 'Shippori Mincho', 'ヒラギノ明朝 ProN', 'Yu Mincho', serif;
    font-feature-settings: "palt";
    line-height: 1.8;
    letter-spacing: 0.04em;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }
  .en { font-family: 'Cormorant Garamond', 'Times New Roman', serif; letter-spacing: 0.08em; }
  .display { font-family: 'Italiana', 'Cormorant Garamond', serif; letter-spacing: 0.12em; font-weight: 400; }
  .mono { font-family: 'JetBrains Mono', ui-monospace, monospace; letter-spacing: 0.02em; }

  /* grain overlay for craft feel */
  body::before {
    content: "";
    position: fixed; inset: 0;
    pointer-events: none;
    z-index: 999;
    opacity: .35;
    mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.2  0 0 0 0 0.15  0 0 0 0 0.25  0 0 0 0.12 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  }

  /* ---------- Header ---------- */
  header.nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 50;
    padding: 22px 44px;
    display: flex; align-items: center; justify-content: space-between;
    background: rgba(246,243,238, 0);
    transition: background .35s ease, padding .35s ease, border-color .35s ease;
    border-bottom: 1px solid transparent;
  }
  header.nav.scrolled {
    background: rgba(246,243,238, 0.88);
    backdrop-filter: blur(10px);
    padding: 14px 44px;
    border-bottom-color: var(--line);
  }
  .brand { display: flex; align-items: baseline; gap: 10px; text-decoration: none; white-space: nowrap; }
  .brand .wordmark {
    font-family: 'Italiana', serif;
    font-size: 26px; letter-spacing: .18em;
    color: var(--plum);
    white-space: nowrap;
  }
  .brand .jp { font-size: 11px; color: var(--ink-sub); letter-spacing: .3em; }
  nav ul { list-style: none; display: flex; gap: 34px; margin: 0; padding: 0; }
  nav a {
    color: var(--ink); text-decoration: none;
    font-size: 13px; letter-spacing: .18em;
    position: relative; padding-bottom: 4px;
  }
  nav a::after {
    content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
    background: var(--plum); transition: width .3s ease;
  }
  nav a:hover::after { width: 100%; }
  .nav-cta {
    font-size: 12px; letter-spacing: .22em;
    padding: 10px 18px; border: 1px solid var(--plum); color: var(--plum);
    text-decoration: none; transition: background .25s, color .25s;
  }
  .nav-cta:hover { background: var(--plum); color: var(--bg); }
  .hamburger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
  .hamburger span { display: block; width: 22px; height: 1px; background: var(--ink); margin: 5px 0; transition: transform .3s; }

  /* ---------- Hero ---------- */
  .hero {
    position: relative; min-height: 100vh;
    padding: 140px 44px 80px;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 60px; align-items: center;
    overflow: hidden;
  }
  .hero-text { position: relative; z-index: 2; }
  .hero .eyebrow {
    display: inline-flex; align-items: center; gap: 14px;
    font-size: 11px; letter-spacing: .35em; color: var(--lav-deep);
    margin-bottom: 28px;
  }
  .hero .eyebrow .bar { width: 40px; height: 1px; background: var(--lav-deep); }
  .hero h1 {
    font-family: 'Shippori Mincho', serif;
    font-weight: 500;
    font-size: clamp(40px, 5.2vw, 78px);
    line-height: 1.25; letter-spacing: 0.04em;
    margin: 0 0 30px;
    color: var(--plum);
  }
  .hero h1 .light { color: var(--lav-deep); font-style: italic; font-family: 'Cormorant Garamond', serif; font-weight: 300; }
  .hero h1 .small {
    display: block;
    font-size: 0.42em;
    letter-spacing: 0.22em;
    color: var(--ink-sub);
    margin-top: 18px;
    font-family: 'Italiana', serif;
  }
  .hero p.lead {
    font-size: 15px; line-height: 2.1; color: var(--ink);
    max-width: 440px; margin: 0 0 40px;
  }
  .hero-meta { display: flex; gap: 28px; align-items: center; margin-top: 48px; }
  .hero-meta .open {
    display: flex; align-items: center; gap: 12px;
    font-size: 12px; letter-spacing: .2em; color: var(--ink-sub);
  }
  .hero-meta .open .dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #7ba07b; box-shadow: 0 0 0 4px rgba(123,160,123,.2);
    animation: pulse 2s infinite;
  }
  @keyframes pulse {
    0%,100% { box-shadow: 0 0 0 4px rgba(123,160,123,.2); }
    50%     { box-shadow: 0 0 0 7px rgba(123,160,123,.05); }
  }
  .btn-primary {
    display: inline-flex; align-items: center; gap: 14px;
    background: var(--plum); color: var(--bg);
    padding: 18px 30px;
    font-family: 'Shippori Mincho', serif;
    font-size: 14px; letter-spacing: .22em;
    text-decoration: none;
    transition: background .25s, transform .25s;
  }
  .btn-primary:hover { background: var(--ink); transform: translateY(-2px); }
  .btn-primary .arrow { transition: transform .25s; }
  .btn-primary:hover .arrow { transform: translateX(4px); }

  /* hero image stack */
  .hero-visual {
    position: relative;
    height: 620px;
  }
  .visual-card {
    position: absolute;
    overflow: hidden;
    background: var(--bg-lav);
    box-shadow: 0 20px 60px -30px rgba(74,47,74,0.4);
  }
  .visual-card.main {
    inset: 0 0 60px 80px;
    transform: rotate(-1.5deg);
  }
  .visual-card.badge {
    width: 150px; height: 150px;
    right: -10px; top: 40px;
    border-radius: 50%;
    background: var(--plum);
    color: var(--bg);
    display: flex; align-items: center; justify-content: center;
    text-align: center;
    transform: rotate(8deg);
    animation: floatBadge 6s ease-in-out infinite;
  }
  @keyframes floatBadge {
    0%,100% { transform: rotate(8deg) translateY(0); }
    50%     { transform: rotate(10deg) translateY(-8px); }
  }
  .visual-card.badge .inner {
    font-family: 'Italiana', serif;
    font-size: 14px; letter-spacing: .24em; line-height: 1.5;
  }
  .visual-card.badge .inner .big {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 32px;
    letter-spacing: .02em;
    margin: 4px 0;
  }
  .visual-card.side {
    width: 160px; height: 200px;
    left: 0; bottom: 0;
    transform: rotate(4deg);
    background: var(--bg-warm);
  }

  /* image frame (used for photos, falls back to stripes if no src) */
  .ph {
    width: 100%; height: 100%;
    position: relative; overflow: hidden;
    background:
      repeating-linear-gradient(135deg,
        rgba(138,122,160,0.12) 0 14px,
        rgba(138,122,160,0.04) 14px 28px),
      var(--bg-lav);
    display: flex; align-items: center; justify-content: center;
  }
  .ph img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(.92) contrast(.98);
  }
  .ph .label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px; letter-spacing: .15em;
    color: var(--lav-deep);
    background: var(--bg);
    padding: 4px 10px;
    border: 1px solid var(--lav);
    text-transform: uppercase;
    position: relative; z-index: 2;
  }
  .ph.warm {
    background:
      repeating-linear-gradient(135deg,
        rgba(196,138,109,0.15) 0 14px,
        rgba(196,138,109,0.04) 14px 28px),
      var(--bg-warm);
  }
  .ph.warm .label { border-color: var(--accent); color: var(--accent); }
  /* hide monospace label once a photo is present */
  .ph:has(img) .label { display: none; }

  /* scroll indicator */
  .scroll-indicator {
    position: absolute; left: 44px; bottom: 36px;
    display: flex; align-items: center; gap: 14px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px; letter-spacing: .3em; color: var(--ink-sub);
    z-index: 3;
  }
  .scroll-indicator .line {
    width: 60px; height: 1px; background: var(--ink-sub);
    position: relative; overflow: hidden;
  }
  .scroll-indicator .line::after {
    content: ""; position: absolute; left: 0; top: 0; height: 100%; width: 30%;
    background: var(--plum);
    animation: scrollLine 2.4s ease-in-out infinite;
  }
  @keyframes scrollLine {
    0%   { transform: translateX(-100%); }
    60%  { transform: translateX(233%); }
    100% { transform: translateX(233%); }
  }

  /* ---------- Section frame ---------- */
  section { padding: 140px 44px; position: relative; }
  .section-head {
    display: flex; align-items: flex-end; justify-content: space-between;
    margin-bottom: 80px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 28px;
  }
  .section-head .kicker {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px; letter-spacing: .3em;
    color: var(--lav-deep);
    display: block;
    margin-bottom: 10px;
  }
  .section-head h2 {
    font-family: 'Italiana', serif;
    font-size: clamp(44px, 5.5vw, 80px);
    letter-spacing: .08em;
    margin: 0;
    color: var(--plum);
    font-weight: 400;
  }
  .section-head h2 .jp {
    display: block;
    font-family: 'Shippori Mincho', serif;
    font-size: 0.24em; letter-spacing: .24em;
    color: var(--ink-sub);
    margin-top: 10px;
  }
  .section-head .aside {
    max-width: 360px; font-size: 13px; line-height: 2.1; color: var(--ink-sub);
    padding-bottom: 6px;
  }

  /* ---------- About ---------- */
  .about { background: var(--bg-lav); }
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px; align-items: center;
  }
  .about-visual {
    position: relative; height: 560px;
  }
  .about-visual .a1 {
    position: absolute; inset: 0 30% 20% 0;
    transform: rotate(-2deg);
    background: var(--bg-warm);
    overflow: hidden;
  }
  .about-visual .a2 {
    position: absolute; right: 0; bottom: 0;
    width: 260px; height: 320px;
    transform: rotate(3deg);
    overflow: hidden;
    box-shadow: 0 20px 50px -25px rgba(74,47,74,.35);
  }
  .about-visual .stamp {
    position: absolute; left: 20px; top: -30px;
    width: 110px; height: 110px; border-radius: 50%;
    border: 1px dashed var(--plum);
    display: flex; align-items: center; justify-content: center;
    color: var(--plum);
    font-family: 'Italiana', serif;
    font-size: 11px; letter-spacing: .22em;
    text-align: center;
    transform: rotate(-12deg);
    animation: rotateStamp 24s linear infinite;
  }
  @keyframes rotateStamp { to { transform: rotate(348deg); } }
  .about h3 {
    font-family: 'Shippori Mincho', serif;
    font-weight: 500;
    font-size: clamp(26px, 2.5vw, 34px);
    letter-spacing: .08em; line-height: 1.7;
    margin: 0 0 32px;
    color: var(--plum);
  }
  .about h3 em {
    font-style: normal;
    background: linear-gradient(transparent 62%, rgba(185,169,201,.45) 62%);
    padding: 0 4px;
  }
  .about .body { font-size: 14px; line-height: 2.2; color: var(--ink); max-width: 520px; }
  .about .body + .body { margin-top: 20px; }
  .about .sign {
    margin-top: 48px;
    display: flex; align-items: center; gap: 20px;
    font-size: 12px; color: var(--ink-sub); letter-spacing: .2em;
  }
  .about .sign .swirl {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic; font-size: 32px; color: var(--plum);
    letter-spacing: 0;
  }

  /* ---------- Menu ---------- */
  .menu { background: var(--bg); }
  .menu-list { display: flex; flex-direction: column; gap: 0; }
  .menu-item {
    display: grid;
    grid-template-columns: 80px 1.2fr 1fr 180px;
    gap: 40px; align-items: center;
    padding: 40px 0;
    border-top: 1px solid var(--line);
    cursor: pointer;
    transition: padding .4s ease, background .4s ease;
  }
  .menu-item:last-child { border-bottom: 1px solid var(--line); }
  .menu-item .num {
    font-family: 'Italiana', serif;
    font-size: 40px; color: var(--lav-deep);
    letter-spacing: .05em;
  }
  .menu-item .names {
    font-family: 'Shippori Mincho', serif;
  }
  .menu-item .names .en {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 28px; color: var(--plum);
    line-height: 1.2; margin-bottom: 6px;
    transition: transform .4s ease;
    transform-origin: left center;
  }
  .menu-item .names .jp {
    font-size: 14px; letter-spacing: .18em; color: var(--ink-sub);
  }
  .menu-item .desc {
    font-size: 13px; line-height: 1.9; color: var(--ink);
    max-width: 340px;
  }
  .menu-item .thumb {
    height: 120px; overflow: hidden;
    position: relative;
    transition: height .4s ease;
  }
  .menu-item .thumb .ph { transition: transform .6s ease; }
  .menu-item:hover { background: var(--bg-warm); padding-left: 30px; padding-right: 30px; }
  .menu-item:hover .thumb { height: 170px; }
  .menu-item:hover .thumb .ph { transform: scale(1.05); }
  .menu-item:hover .names .en { transform: translateX(8px); }

  .menu-foot {
    margin-top: 56px;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 13px; color: var(--ink-sub); letter-spacing: .15em;
  }
  .menu-foot .note {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px; letter-spacing: .2em;
  }

  /* ---------- News / SNS ---------- */
  .news { background: var(--plum); color: var(--bg); }
  .news .section-head { border-color: rgba(246,243,238,.2); }
  .news .section-head h2 { color: var(--bg); }
  .news .section-head h2 .jp { color: rgba(246,243,238,.6); }
  .news .section-head .kicker { color: var(--lav); }
  .news .section-head .aside { color: rgba(246,243,238,.7); }

  .news-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 40px;
  }
  .news-list {
    border-top: 1px solid rgba(246,243,238,.2);
  }
  .news-row {
    display: grid;
    grid-template-columns: 110px 100px 1fr 20px;
    gap: 16px; align-items: center;
    padding: 24px 0;
    border-bottom: 1px solid rgba(246,243,238,.2);
    font-size: 13px;
    transition: padding .3s;
    cursor: pointer;
  }
  .news-row:hover { padding-left: 12px; }
  .news-row .date { font-family: 'Cormorant Garamond', serif; letter-spacing: .08em; color: var(--lav); }
  .news-row .tag {
    font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: .2em;
    padding: 4px 10px; border: 1px solid rgba(246,243,238,.4);
    text-transform: uppercase; text-align: center; color: var(--bg);
  }
  .news-row .title { letter-spacing: .06em; }
  .news-row .arrow { opacity: .6; transition: transform .3s, opacity .3s; }
  .news-row:hover .arrow { transform: translateX(6px); opacity: 1; }

  .sns-card {
    background: rgba(246,243,238,.04);
    border: 1px solid rgba(246,243,238,.18);
    padding: 28px;
    display: flex; flex-direction: column; justify-content: space-between;
    aspect-ratio: auto;
    transition: background .3s;
  }
  .sns-card:hover { background: rgba(246,243,238,.08); }
  .sns-card .head {
    display: flex; align-items: center; justify-content: space-between;
    font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: .22em;
    color: var(--lav);
    margin-bottom: 20px;
  }
  .sns-card .head .handle { color: var(--bg); }
  .sns-preview {
    flex: 1;
    background:
      repeating-linear-gradient(135deg,
        rgba(246,243,238,0.08) 0 14px,
        rgba(246,243,238,0.02) 14px 28px);
    margin-bottom: 18px;
    min-height: 160px;
    position: relative;
    display: flex; align-items: center; justify-content: center;
  }
  .sns-preview .label {
    font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: .18em;
    padding: 4px 10px; border: 1px solid rgba(246,243,238,.3); color: rgba(246,243,238,.6);
    text-transform: uppercase;
  }
  .sns-card .caption {
    font-size: 12px; line-height: 1.8; color: rgba(246,243,238,.75);
  }
  .sns-card .foot {
    margin-top: 14px; font-family: 'Cormorant Garamond', serif; font-style: italic;
    font-size: 13px; color: var(--lav);
  }

  /* ---------- Visit / Access ---------- */
  .visit { background: var(--bg-warm); }
  .visit-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: stretch;
  }
  .visit-info h3 {
    font-family: 'Italiana', serif;
    font-size: 38px; letter-spacing: .1em;
    color: var(--plum);
    margin: 0 0 10px;
    font-weight: 400;
  }
  .visit-info .jp {
    font-size: 13px; letter-spacing: .2em; color: var(--ink-sub); margin-bottom: 40px;
  }
  .info-row {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 24px;
    padding: 22px 0;
    border-top: 1px solid var(--line);
    font-size: 13px; line-height: 1.9;
  }
  .info-row:last-of-type { border-bottom: 1px solid var(--line); }
  .info-row .label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px; letter-spacing: .22em;
    color: var(--lav-deep); text-transform: uppercase;
    padding-top: 3px;
  }
  .info-row .value { color: var(--ink); letter-spacing: .06em; display: flex; flex-direction: column; }
  .info-row .value .hours {
    display: flex; justify-content: space-between;
    max-width: 300px; font-size: 13px;
    width: 100%;
  }
  .info-row .value .hours + .hours { margin-top: 4px; }
  .info-row .value .hours .closed { color: var(--accent); font-style: italic; font-family: 'Cormorant Garamond', serif; }

  .map-wrap {
    position: relative;
    background: var(--bg-lav);
    overflow: hidden;
  }
  .map-wrap .map-ph {
    position: absolute; inset: 0;
    background:
      linear-gradient(180deg, rgba(185,169,201,.15), rgba(185,169,201,.05)),
      repeating-linear-gradient(0deg,
        rgba(138,122,160,.08) 0 1px, transparent 1px 60px),
      repeating-linear-gradient(90deg,
        rgba(138,122,160,.08) 0 1px, transparent 1px 60px),
      var(--bg-lav);
  }
  .map-wrap svg.roads {
    position: absolute; inset: 0; width: 100%; height: 100%;
  }
  .map-wrap .pin {
    position: absolute; left: 50%; top: 50%;
    transform: translate(-50%, -100%);
    display: flex; flex-direction: column; align-items: center;
    z-index: 2;
  }
  .map-wrap .pin .dot {
    width: 18px; height: 18px; border-radius: 50%;
    background: var(--plum);
    box-shadow: 0 0 0 0 rgba(74,47,74,.4);
    animation: pinPulse 2.2s infinite;
  }
  .map-wrap .pin .stick { width: 1px; height: 40px; background: var(--plum); }
  .map-wrap .pin .tag {
    position: absolute; top: -44px;
    background: var(--plum); color: var(--bg);
    font-family: 'Italiana', serif;
    font-size: 11px; letter-spacing: .24em;
    padding: 6px 14px;
    white-space: nowrap;
  }
  @keyframes pinPulse {
    0%   { box-shadow: 0 0 0 0 rgba(74,47,74,.4); }
    100% { box-shadow: 0 0 0 24px rgba(74,47,74,0); }
  }
  .map-wrap .compass {
    position: absolute; right: 20px; top: 20px;
    width: 48px; height: 48px; border: 1px solid var(--plum); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--plum);
    font-family: 'Italiana', serif;
    font-size: 12px;
    background: rgba(246,243,238,.6);
  }

  .visit-cta {
    margin-top: 40px;
    display: flex; gap: 18px; flex-wrap: wrap;
  }
  .btn-ghost {
    padding: 16px 26px; border: 1px solid var(--plum); color: var(--plum);
    text-decoration: none;
    font-size: 12px; letter-spacing: .22em;
    transition: background .25s, color .25s;
    display: inline-flex; align-items: center; gap: 12px;
  }
  .btn-ghost:hover { background: var(--plum); color: var(--bg); }

  /* ---------- Footer ---------- */
  footer {
    background: var(--bg);
    padding: 100px 44px 40px;
    border-top: 1px solid var(--line);
  }
  .foot-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
  }
  .foot-brand .wm {
    font-family: 'Italiana', serif;
    font-size: 42px; letter-spacing: .18em;
    color: var(--plum);
    margin-bottom: 12px;
  }
  .foot-brand .tag {
    font-family: 'Cormorant Garamond', serif; font-style: italic;
    font-size: 15px; color: var(--lav-deep);
    margin-bottom: 28px;
  }
  .foot-brand .small {
    font-size: 12px; line-height: 2; color: var(--ink-sub);
  }
  .foot-col h4 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px; letter-spacing: .3em;
    color: var(--lav-deep);
    margin: 0 0 20px;
    text-transform: uppercase;
    font-weight: 500;
  }
  .foot-col ul { list-style: none; margin: 0; padding: 0; }
  .foot-col li { margin-bottom: 10px; }
  .foot-col a {
    color: var(--ink); text-decoration: none;
    font-size: 13px; letter-spacing: .1em;
    transition: color .2s;
  }
  .foot-col a:hover { color: var(--plum); }
  .foot-bottom {
    border-top: 1px solid var(--line);
    padding-top: 28px;
    display: flex; justify-content: space-between;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px; letter-spacing: .2em; color: var(--ink-sub);
  }

  /* ---------- Reveal on scroll ---------- */
  .reveal {
    opacity: 0; transform: translateY(32px);
    transition: opacity 1s ease, transform 1s cubic-bezier(.2,.8,.2,1);
  }
  .reveal.in { opacity: 1; transform: none; }
  .reveal.delay-1 { transition-delay: .1s; }
  .reveal.delay-2 { transition-delay: .2s; }
  .reveal.delay-3 { transition-delay: .3s; }

  /* parallax hooks */
  [data-parallax] { will-change: transform; }

  /* ---------- Responsive ---------- */
  @media (max-width: 960px) {
    header.nav { padding: 18px 22px; }
    header.nav.scrolled { padding: 12px 22px; }
    nav ul, .nav-cta { display: none; }
    .hamburger { display: block; }
    section { padding: 90px 22px; }
    .hero { grid-template-columns: 1fr; padding: 120px 22px 60px; gap: 40px; }
    .hero-visual { height: 440px; }
    .visual-card.main { inset: 0 0 40px 40px; }
    .visual-card.badge { width: 110px; height: 110px; top: 10px; right: 4px; }
    .visual-card.badge .inner { font-size: 10px; }
    .visual-card.badge .inner .big { font-size: 22px; }
    .scroll-indicator { left: 22px; bottom: 22px; }
    .section-head { flex-direction: column; align-items: flex-start; gap: 24px; }
    .about-grid { grid-template-columns: 1fr; gap: 60px; }
    .about-visual { height: 420px; }
    .about-visual .a2 { width: 180px; height: 220px; }
    .menu-item {
      grid-template-columns: 50px 1fr;
      gap: 20px;
      padding: 28px 0;
    }
    .menu-item .desc { grid-column: 2; font-size: 12px; }
    .menu-item .thumb { grid-column: 1 / -1; height: 160px; }
    .menu-item .names .en { font-size: 22px; }
    .menu-item:hover { padding-left: 0; padding-right: 0; }
    .news-grid { grid-template-columns: 1fr; }
    .news-row { grid-template-columns: 90px 80px 1fr 16px; font-size: 12px; gap: 10px; }
    .visit-grid { grid-template-columns: 1fr; gap: 40px; }
    .map-wrap { height: 360px; }
    .foot-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .foot-brand { grid-column: 1 / -1; }
    .foot-bottom { flex-direction: column; gap: 14px; }
    .hero h1 { font-size: clamp(36px, 9vw, 56px); }
  }
