*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --orange: #c8722a; --orange-light: #e8a96a; --orange-pale: #fdf4eb;
  --brown: #5c3d1e; --brown-mid: #8b6240; --cream: #faf7f2; --cream-dark: #f0e8dc;
  --dark: #1e1209; --green: #4a6741; --text: #3d2b1a; --text-mid: #7a5c3a;
}
html { scroll-behavior: smooth; }
body { font-family: 'Noto Sans JP', sans-serif; color: var(--text); background: var(--cream); overflow-x: hidden; }

/* NAV */
nav { position: fixed; top:0; left:0; right:0; z-index:200; display:flex; align-items:center; justify-content:space-between; padding:18px 60px; background:rgba(250,247,242,0.95); backdrop-filter:blur(8px); border-bottom:1px solid rgba(92,61,30,0.1); transition:padding .3s; }
.nav-logo { display:flex; align-items:center; gap:12px; text-decoration:none; }
.logo-mark { width:38px; height:38px; background:var(--orange); border-radius:50%; display:flex; align-items:center; justify-content:center; font-family:'Caveat',cursive; font-size:1.1rem; color:white; flex-shrink:0; }
.logo-text { font-family:'Libre Baskerville',serif; font-size:1.2rem; color:var(--brown); }
.logo-text span { display:block; font-family:'Noto Sans JP',sans-serif; font-size:0.58rem; font-weight:300; color:var(--brown-mid); letter-spacing:.18em; }
.nav-links { display:flex; gap:28px; list-style:none; }
.nav-links a { font-size:0.82rem; color:var(--text); text-decoration:none; transition:color .3s; position:relative; }
.nav-links a::after { content:''; position:absolute; bottom:-3px; left:0; right:0; height:2px; background:var(--orange); border-radius:1px; transform:scaleX(0); transition:transform .3s; }
.nav-links a:hover, .nav-links a.active { color:var(--orange); }
.nav-links a:hover::after, .nav-links a.active::after { transform:scaleX(1); }
.nav-order { font-size:0.78rem; font-weight:500; background:var(--orange); color:white; padding:10px 22px; border-radius:22px; text-decoration:none; transition:background .3s; }
.nav-order:hover { background:var(--brown); }
.nav-burger { display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:4px; }
.nav-burger span { display:block; width:24px; height:2px; background:var(--text); border-radius:1px; transition:all .3s; }

/* MOBILE MENU */
.mobile-menu { display:none; position:fixed; inset:0; background:var(--cream); z-index:150; flex-direction:column; align-items:center; justify-content:center; }
.mobile-menu.open { display:flex; }
.mobile-menu ul { list-style:none; text-align:center; }
.mobile-menu li { margin:16px 0; }
.mobile-menu a { font-family:'Libre Baskerville',serif; font-size:1.8rem; color:var(--brown); text-decoration:none; transition:color .3s; }
.mobile-menu a:hover { color:var(--orange); }
.mobile-menu .mobile-order { font-size:1rem; font-family:'Noto Sans JP',sans-serif; font-weight:500; background:var(--orange); color:white; padding:12px 36px; border-radius:24px; display:inline-block; margin-top:8px; }

/* HERO */
.hero { min-height:100vh; display:grid; grid-template-columns:1fr 1fr; padding-top:74px; }
.hero-left { display:flex; flex-direction:column; justify-content:center; padding:72px 64px; background:var(--cream); }
.hero-right { position:relative; overflow:hidden; }
.hero-right img { width:100%; height:100%; object-fit:cover; display:block; min-height:500px; }
.hero-info-card { position:absolute; bottom:28px; right:28px; background:white; padding:18px 22px; border-radius:10px; box-shadow:0 8px 28px rgba(0,0,0,0.1); }
.hero-info-row { display:flex; align-items:center; gap:8px; margin-bottom:8px; font-size:0.78rem; color:var(--text); }
.hero-info-row:last-child { margin-bottom:0; }

/* PAGE HERO */
.page-hero { height:52vh; min-height:360px; position:relative; display:flex; align-items:flex-end; padding:0 60px 52px; margin-top:74px; overflow:hidden; }
.page-hero-bg { position:absolute; inset:0; background-size:cover; background-position:center; }
.page-hero-overlay { position:absolute; inset:0; background:linear-gradient(to top, rgba(30,18,9,.7) 0%, rgba(30,18,9,.2) 100%); }
.page-hero-content { position:relative; color:white; }
.page-hero-content h1 { font-family:'Libre Baskerville',serif; font-size:clamp(2.2rem,4.5vw,4rem); font-weight:700; line-height:1.2; }
.page-hero-content h1 em { font-style:italic; color:var(--orange-light); }

/* TYPOGRAPHY */
.handwriting { font-family:'Caveat',cursive; font-size:1rem; color:var(--orange); margin-bottom:10px; }
.eyebrow { font-size:0.62rem; font-family:'Noto Sans JP'; letter-spacing:.3em; color:var(--orange); margin-bottom:10px; }
.section-label { font-size:0.62rem; letter-spacing:.3em; color:var(--orange); margin-bottom:10px; }
.section-title { font-family:'Libre Baskerville',serif; font-size:clamp(1.8rem,3vw,2.8rem); font-weight:700; color:var(--brown); line-height:1.3; }
.section-title em { font-style:italic; color:var(--orange); }
.section-title.light { color:white; }
.body-text { font-size:0.93rem; line-height:2.2; color:var(--text-mid); }
.divider-orange { width:44px; height:3px; background:var(--orange); border-radius:2px; margin:18px 0; }
.divider-center { width:44px; height:3px; background:var(--orange); border-radius:2px; margin:18px auto 40px; }
.text-center { text-align:center; }

/* LAYOUT */
.section { padding:96px 0; }
.container { max-width:1120px; margin:0 auto; padding:0 60px; }
.grid-2 { display:grid; grid-template-columns:1fr 1fr; gap:68px; }
.align-center { align-items:center; }
.bg-cream { background:var(--cream); }
.bg-white { background:white; }
.bg-orange-pale { background:var(--orange-pale); }
.bg-cream-dark { background:var(--cream-dark); }
.bg-dark { background:var(--dark); }
.bg-brown { background:var(--brown); }

/* HERO TEXT */
.hero-handwriting { font-family:'Caveat',cursive; font-size:1.05rem; color:var(--orange); margin-bottom:14px; }
.hero-title { font-family:'Libre Baskerville',serif; font-size:clamp(2.4rem,4vw,3.8rem); font-weight:700; color:var(--brown); line-height:1.2; margin-bottom:12px; }
.hero-title em { font-style:italic; color:var(--orange); }
.hero-sub { font-size:0.93rem; color:var(--brown-mid); margin-bottom:28px; line-height:1.9; }
.hero-tags { display:flex; gap:8px; flex-wrap:wrap; margin-bottom:32px; }
.tag { font-size:0.7rem; padding:5px 13px; border-radius:18px; border:1px solid var(--orange-light); color:var(--orange); background:var(--orange-pale); }
.hero-btns { display:flex; gap:14px; align-items:center; flex-wrap:wrap; }

/* BUTTONS */
.btn-fill { display:inline-block; font-size:0.82rem; font-weight:500; background:var(--orange); color:white; padding:13px 30px; border-radius:26px; text-decoration:none; transition:background .3s; }
.btn-fill:hover { background:var(--brown); }
.btn-text-link { font-size:0.82rem; color:var(--brown-mid); text-decoration:none; display:inline-flex; align-items:center; gap:6px; transition:color .3s; }
.btn-text-link::after { content:'→'; }
.btn-text-link:hover { color:var(--orange); }
.btn-outline-orange { display:inline-block; font-size:0.8rem; color:var(--orange); border:2px solid var(--orange); padding:12px 28px; border-radius:26px; text-decoration:none; transition:all .3s; }
.btn-outline-orange:hover { background:var(--orange); color:white; }
.btn-outline-white { display:inline-block; font-size:0.8rem; color:white; border:2px solid rgba(255,255,255,.55); padding:12px 28px; border-radius:26px; text-decoration:none; transition:all .3s; }
.btn-outline-white:hover { border-color:white; background:rgba(255,255,255,.12); }

/* FEATURE LIST */
.feature-list { list-style:none; display:flex; flex-direction:column; gap:11px; }
.feature-list li { display:flex; align-items:flex-start; gap:10px; font-size:0.9rem; color:var(--text-mid); line-height:1.8; }
.feature-list li::before { content:'✓'; color:var(--orange); flex-shrink:0; font-weight:700; }

/* STAT ITEMS */
.stat-item { display:flex; flex-direction:column; }
.stat-item strong { font-family:'Libre Baskerville',serif; font-size:1.6rem; color:var(--orange); }
.stat-item span { font-size:0.68rem; color:var(--text-mid); margin-top:3px; letter-spacing:.05em; }

/* MENU GRID */
.menu-grid-4 { display:grid; grid-template-columns:repeat(4,1fr); gap:18px; margin-top:44px; }
.menu-item-card { background:white; border-radius:10px; overflow:hidden; transition:transform .3s, box-shadow .3s; }
.menu-item-card:hover { transform:translateY(-4px); box-shadow:0 12px 32px rgba(0,0,0,.09); }
.menu-item-card img { width:100%; height:170px; object-fit:cover; display:block; }
.menu-item-body { padding:14px; }
.menu-item-name { font-family:'Libre Baskerville',serif; font-size:0.95rem; color:var(--brown); margin-bottom:5px; }
.menu-item-desc { font-size:0.75rem; color:var(--text-mid); line-height:1.7; margin-bottom:10px; }
.menu-item-price { font-family:'Libre Baskerville',serif; font-size:1rem; color:var(--orange); font-weight:700; }
.menu-item-price span { font-size:0.68rem; font-weight:400; font-family:'Noto Sans JP'; color:var(--text-mid); }

/* GALLERY */
.gallery-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:4px; }
.gallery-item { overflow:hidden; }
.gallery-item img { width:100%; height:260px; object-fit:cover; display:block; transition:transform .6s; }
.gallery-item:hover img { transform:scale(1.05); }
.gallery-item.tall img { height:524px; }

/* ACCESS TABLE */
.access-table { width:100%; border-collapse:collapse; }
.access-table tr { border-bottom:1px solid rgba(92,61,30,.1); }
.access-table td { padding:13px 0; font-size:0.87rem; vertical-align:top; }
.access-table td:first-child { width:80px; font-size:0.62rem; letter-spacing:.1em; text-transform:uppercase; color:var(--orange); padding-right:16px; }
.access-table td:last-child { color:var(--text-mid); line-height:1.9; }

/* NEWS */
.news-list { display:flex; flex-direction:column; }
.news-item { display:flex; align-items:baseline; gap:16px; padding:16px 0; border-bottom:1px solid rgba(61,43,26,.1); cursor:pointer; }
.news-item:first-child { border-top:1px solid rgba(61,43,26,.1); }
.news-date { font-size:0.68rem; color:var(--text-mid); flex-shrink:0; }
.news-cat { font-size:0.6rem; letter-spacing:.1em; color:var(--orange); border:1px solid var(--orange); padding:2px 8px; border-radius:10px; flex-shrink:0; }
.news-title { font-size:0.9rem; color:var(--text); }
.news-item:hover .news-title { color:var(--orange); }

/* FOOTER */
footer { background:var(--dark); }
.footer-inner { max-width:1120px; margin:0 auto; padding:60px 60px 36px; display:grid; grid-template-columns:2fr 1fr 1fr; gap:40px; }
.footer-brand-logo { display:flex; align-items:center; gap:10px; margin-bottom:16px; }
.footer-brand-logo .logo-mark { width:34px; height:34px; font-size:1rem; }
.footer-brand-logo .logo-text { font-size:1.1rem; color:var(--orange-light); }
.footer-brand-logo .logo-text span { color:rgba(255,255,255,.3); }
.footer-brand p { font-size:0.72rem; color:rgba(255,255,255,.32); line-height:1.9; }
.footer-col h4 { font-size:0.62rem; letter-spacing:.25em; text-transform:uppercase; color:var(--orange-light); margin-bottom:18px; }
.footer-col ul { list-style:none; }
.footer-col li { margin-bottom:9px; }
.footer-col a { font-size:0.73rem; color:rgba(255,255,255,.38); text-decoration:none; transition:color .3s; }
.footer-col a:hover { color:var(--orange-light); }
.footer-bottom { border-top:1px solid rgba(255,255,255,.06); padding:20px 60px; text-align:center; font-size:0.62rem; color:rgba(255,255,255,.2); }

/* ANIMATIONS */
.fade-up { animation:fadeUp 1.1s ease both; animation-delay:.3s; }
@keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
.reveal { opacity:0; transform:translateY(20px); transition:opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }

/* RESPONSIVE */
@media (max-width:900px) {
  nav { padding:14px 20px; }
  .nav-links, .nav-order { display:none; }
  .nav-burger { display:flex; }
  .hero { grid-template-columns:1fr; }
  .hero-left { padding:44px 22px; }
  .grid-2 { grid-template-columns:1fr; }
  .menu-grid-4 { grid-template-columns:repeat(2,1fr); }
  .gallery-grid { grid-template-columns:repeat(2,1fr); }
  .gallery-item.tall img { height:260px; }
  .container { padding:0 22px; }
  .section { padding:60px 0; }
  .footer-inner { grid-template-columns:1fr; padding:36px 22px 22px; }
  .footer-bottom { padding:16px 22px; }
  .page-hero { padding:0 22px 36px; }
}
