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

:root {
  --rose: #c9a0a0;
  --rose-light: #e8cece;
  --rose-pale: #f5eded;
  --beige: #f9f5f0;
  --beige-dark: #f0e8df;
  --brown: #7a5c5c;
  --brown-mid: #9a7070;
  --dark: #2d1f1f;
  --text: #4a3535;
  --text-mid: #7a6060;
}

html { scroll-behavior: smooth; }
body { font-family: 'Noto Serif JP', serif; color: var(--text); background: var(--beige); 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: 22px 60px;
  background: rgba(249,245,240,0.95); backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201,160,160,0.15);
  transition: padding 0.3s;
}
.nav-logo { text-decoration: none; }
.nav-logo-main { font-family: 'Playfair Display', serif; font-size: 1.35rem; font-style: italic; color: var(--brown); letter-spacing: 0.05em; display: block; }
.nav-logo-sub { font-family: 'Lato', sans-serif; font-size: 0.55rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--rose); display: block; margin-top: 2px; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { font-family: 'Lato', sans-serif; font-size: 0.78rem; letter-spacing: 0.1em; color: var(--text); text-decoration: none; transition: color 0.3s; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -3px; left: 0; right: 0; height: 1px; background: var(--rose); transform: scaleX(0); transition: transform 0.3s; }
.nav-links a:hover, .nav-links a.active { color: var(--rose); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-reserve { font-family: 'Lato', sans-serif; font-size: 0.72rem; letter-spacing: 0.15em; background: var(--rose); color: white; padding: 11px 26px; text-decoration: none; border-radius: 2px; transition: background 0.3s; }
.nav-reserve: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: 1px; background: var(--text); transition: all 0.3s; }

/* MOBILE MENU */
.mobile-menu { display: none; position: fixed; inset: 0; background: var(--beige); 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: 18px 0; }
.mobile-menu a { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-style: italic; color: var(--brown); text-decoration: none; transition: color 0.3s; }
.mobile-menu a:hover { color: var(--rose); }
.mobile-menu .mobile-book { font-size: 1rem; font-style: normal; font-family: 'Lato', sans-serif; letter-spacing: 0.15em; background: var(--rose); color: white; padding: 12px 36px; display: inline-block; margin-top: 8px; }

/* HERO */
.hero { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; padding-top: 76px; }
.hero-left { background: var(--rose-pale); display: flex; flex-direction: column; justify-content: center; padding: 80px 70px; }
.hero-right { position: relative; overflow: hidden; }
.hero-right img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; min-height: 500px; }

/* PAGE HERO */
.page-hero { height: 55vh; min-height: 380px; position: relative; display: flex; align-items: flex-end; padding: 0 60px 56px; margin-top: 76px; 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(45,31,31,0.65) 0%, rgba(45,31,31,0.2) 100%); }
.page-hero-content { position: relative; color: white; }
.page-hero-content h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 4.5vw, 4rem); font-weight: 400; line-height: 1.2; }
.page-hero-content h1 em { font-style: italic; color: var(--rose-light); }

/* TYPOGRAPHY */
.eyebrow { font-family: 'Lato', sans-serif; font-size: 0.62rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--rose); margin-bottom: 12px; }
.section-label { font-family: 'Lato', sans-serif; font-size: 0.62rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--rose); margin-bottom: 12px; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 400; line-height: 1.3; color: var(--dark); }
.section-title em { font-style: italic; color: var(--rose); }
.section-title.light { color: white; }
.body-text { font-size: 0.95rem; line-height: 2.2; color: var(--text-mid); }
.divider-rose { width: 48px; height: 1px; background: var(--rose-light); margin: 20px 0; }
.divider-center { width: 48px; height: 1px; background: var(--rose-light); margin: 20px auto 44px; }
.text-center { text-align: center; }

/* LAYOUT */
.section { padding: 100px 0; }
.container { max-width: 1120px; margin: 0 auto; padding: 0 60px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.align-center { align-items: center; }
.bg-white { background: white; }
.bg-beige { background: var(--beige); }
.bg-beige-dark { background: var(--beige-dark); }
.bg-rose-pale { background: var(--rose-pale); }
.bg-dark { background: var(--dark); }

/* BUTTONS */
.btn-primary { display: inline-block; font-family: 'Lato', sans-serif; font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; background: var(--rose); color: white; padding: 14px 36px; border-radius: 2px; text-decoration: none; transition: background 0.3s; }
.btn-primary:hover { background: var(--brown); }
.btn-outline { display: inline-block; font-family: 'Lato', sans-serif; font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--rose); border: 1px solid var(--rose); padding: 14px 36px; text-decoration: none; transition: all 0.3s; }
.btn-outline:hover { background: var(--rose); color: white; }
.btn-outline-dark { display: inline-block; font-family: 'Lato', sans-serif; font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text); border: 1px solid var(--text); padding: 11px 26px; text-decoration: none; transition: all 0.3s; margin-top: 20px; }
.btn-outline-dark:hover { background: var(--text); color: white; }
.btn-outline-light { display: inline-block; font-family: 'Lato', sans-serif; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: white; border: 1px solid rgba(255,255,255,0.5); padding: 14px 36px; text-decoration: none; transition: all 0.3s; }
.btn-outline-light:hover { border-color: white; background: rgba(255,255,255,0.1); }

/* HERO TEXT */
.hero-eyebrow { font-family: 'Lato', sans-serif; font-size: 0.62rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--rose); margin-bottom: 20px; }
.hero-title { font-family: 'Playfair Display', serif; font-size: clamp(2.6rem, 4vw, 4.2rem); font-weight: 400; line-height: 1.2; color: var(--dark); margin-bottom: 8px; }
.hero-title em { font-style: italic; color: var(--rose); }
.hero-subtitle { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-style: italic; color: var(--brown); margin-bottom: 24px; }
.hero-desc { font-size: 0.93rem; line-height: 2.1; color: var(--brown); margin-bottom: 36px; max-width: 420px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.hero-badge { position: absolute; bottom: 36px; left: -16px; background: white; padding: 18px 24px; box-shadow: 0 8px 36px rgba(0,0,0,0.1); z-index: 1; }
.hero-badge p:first-child { font-family: 'Playfair Display', serif; font-size: 1.7rem; color: var(--rose); }
.hero-badge p:last-child { font-family: 'Lato', sans-serif; font-size: 0.62rem; letter-spacing: 0.2em; color: var(--brown); text-transform: uppercase; }

/* FRAME IMAGE */
.frame-img { position: relative; }
.frame-img img { width: 100%; height: 480px; object-fit: cover; display: block; position: relative; z-index: 1; }
.frame-img::before { content: ''; position: absolute; top: -16px; left: -16px; right: 16px; bottom: 16px; border: 1px solid var(--rose-light); }

/* FEATURE LIST */
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.feature-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.92rem; color: var(--text-mid); line-height: 1.8; }
.feature-list li::before { content: '—'; color: var(--rose); flex-shrink: 0; }

/* MENU CARDS */
.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.menu-card { background: white; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; }
.menu-card:hover { transform: translateY(-5px); box-shadow: 0 14px 40px rgba(0,0,0,0.08); }
.menu-card img { width: 100%; height: 210px; object-fit: cover; display: block; }
.menu-card-body { padding: 26px 22px; }
.menu-card-tag { font-family: 'Lato', sans-serif; font-size: 0.58rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--rose); margin-bottom: 8px; }
.menu-card-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--dark); margin-bottom: 10px; }
.menu-card-desc { font-size: 0.82rem; line-height: 1.9; color: var(--text-mid); margin-bottom: 14px; }
.menu-card-price { font-family: 'Lato', sans-serif; font-size: 1rem; color: var(--rose); }
.menu-card-price span { font-size: 0.65rem; color: var(--text-mid); font-family: 'Noto Serif JP'; }

/* VOICE CARDS */
.voice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 48px; }
.voice-card { background: white; padding: 30px; }
.voice-stars { color: var(--rose); font-size: 0.82rem; letter-spacing: 2px; margin-bottom: 14px; }
.voice-text { font-size: 0.87rem; line-height: 2; color: var(--text); margin-bottom: 16px; }
.voice-name { font-family: 'Lato', sans-serif; font-size: 0.68rem; letter-spacing: 0.12em; color: var(--brown); }

/* STAFF */
.staff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
.staff-card { text-align: center; }
.staff-card img { width: 100%; height: 320px; object-fit: cover; object-position: top; display: block; margin-bottom: 20px; }
.staff-name { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--dark); margin-bottom: 4px; }
.staff-name-en { font-family: 'Lato', sans-serif; font-size: 0.65rem; letter-spacing: 0.2em; color: var(--rose); margin-bottom: 12px; }
.staff-desc { font-size: 0.83rem; line-height: 1.9; color: var(--text-mid); }

/* RESERVE FORM */
.reserve-section { background: var(--dark); padding: 100px 0; }
.reserve-inner { max-width: 760px; margin: 0 auto; padding: 0 60px; }
.reserve-inner .section-label, .reserve-inner .section-title { text-align: center; }
.reserve-inner .section-title { color: white; margin-bottom: 48px; }
.reserve-form { display: flex; flex-direction: column; gap: 14px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; }
.form-label { font-family: 'Lato', sans-serif; font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--rose-light); margin-bottom: 6px; }
.reserve-form input, .reserve-form select, .reserve-form textarea {
  width: 100%; padding: 14px 16px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.14);
  color: white; font-family: 'Noto Serif JP', serif; font-size: 0.87rem; transition: border-color 0.3s;
}
.reserve-form input:focus, .reserve-form select:focus, .reserve-form textarea:focus { outline: none; border-color: var(--rose); }
.reserve-form input::placeholder, .reserve-form textarea::placeholder { color: rgba(255,255,255,0.28); }
.reserve-form select { color: rgba(255,255,255,0.65); }
.reserve-form option { background: var(--dark); }
.reserve-form textarea { height: 110px; resize: vertical; }
.reserve-form button { padding: 16px; background: var(--rose); color: white; border: none; cursor: pointer; font-family: 'Lato', sans-serif; font-size: 0.73rem; letter-spacing: 0.2em; text-transform: uppercase; transition: background 0.3s; margin-top: 6px; }
.reserve-form button:hover { background: var(--brown); }

/* NEWS */
.news-list { display: flex; flex-direction: column; }
.news-item { display: flex; align-items: baseline; gap: 18px; padding: 18px 0; border-bottom: 1px solid rgba(74,53,53,0.1); cursor: pointer; }
.news-item:first-child { border-top: 1px solid rgba(74,53,53,0.1); }
.news-date { font-family: 'Lato', sans-serif; font-size: 0.68rem; color: var(--text-mid); flex-shrink: 0; letter-spacing: 0.06em; }
.news-cat { font-family: 'Lato', sans-serif; font-size: 0.58rem; letter-spacing: 0.12em; color: var(--rose); border: 1px solid var(--rose); padding: 3px 9px; flex-shrink: 0; }
.news-title { font-size: 0.93rem; color: var(--text); }
.news-item:hover .news-title { color: var(--rose); }

/* FOOTER */
footer { background: #1a0f0f; }
.footer-inner { max-width: 1120px; margin: 0 auto; padding: 64px 60px 36px; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
.footer-logo-main { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-style: italic; color: var(--rose-light); display: block; margin-bottom: 4px; }
.footer-logo-sub { font-family: 'Lato', sans-serif; font-size: 0.52rem; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,0.3); display: block; margin-bottom: 18px; }
.footer-brand p { font-family: 'Lato', sans-serif; font-size: 0.72rem; color: rgba(255,255,255,0.32); line-height: 1.9; }
.footer-col h4 { font-family: 'Lato', sans-serif; font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--rose); margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 9px; }
.footer-col a { font-family: 'Lato', sans-serif; font-size: 0.73rem; color: rgba(255,255,255,0.38); text-decoration: none; transition: color 0.3s; }
.footer-col a:hover { color: var(--rose-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 22px 60px; text-align: center; font-family: 'Lato', sans-serif; font-size: 0.62rem; color: rgba(255,255,255,0.2); }

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

/* RESPONSIVE */
@media (max-width: 900px) {
  nav { padding: 16px 20px; }
  .nav-links, .nav-reserve { display: none; }
  .nav-burger { display: flex; }
  .hero { grid-template-columns: 1fr; }
  .hero-left { padding: 48px 24px; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .menu-grid, .voice-grid, .staff-grid { grid-template-columns: 1fr; }
  .container { padding: 0 24px; }
  .section { padding: 64px 0; }
  .footer-inner { grid-template-columns: 1fr; padding: 40px 24px 24px; }
  .footer-bottom { padding: 18px 24px; }
  .page-hero { padding: 0 24px 40px; }
  .form-row-2 { grid-template-columns: 1fr; }
}
