@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Lato:wght@300;400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300;400;500;600&display=swap');

:root {
  --bg:        #FDF7F3;
  --bg-2:      #F5E8DE;
  --bg-3:      #EDD8CC;
  --rose:      #D4897A;
  --rose-lt:   #EDB8A8;
  --rose-pale: #F7EAE5;
  --gold:      #B8895A;
  --dark:      #2D1A14;
  --text:      #3D2B22;
  --muted:     rgba(61,43,34,0.5);
  --border:    rgba(61,43,34,0.1);
  --border-s:  rgba(61,43,34,0.06);
  --ff-en:     'Playfair Display', Georgia, serif;
  --ff-sub:    'Cormorant Garamond', serif;
  --ff-jp:     'Noto Serif JP', serif;
  --ff-sans:   'Lato', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; font-size: 16px; }
body { background: var(--bg); color: var(--text); font-family: var(--ff-jp); overflow-x: hidden; padding-top: 36px; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ─── DEMO BAR ─── */
#demo-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
  background: rgba(45,26,20,0.96); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184,137,90,0.2);
  padding: 7px 0;
}
.demo-bar-inner {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-size: 0.7rem; color: rgba(255,255,255,0.4);
}
.demo-badge {
  font-size: 0.54rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  background: rgba(184,137,90,0.15); color: var(--gold);
  padding: 3px 10px;
}
.demo-link { color: var(--gold); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.demo-copy { color: rgba(255,255,255,0.18); font-size: 0.62rem; margin-left: 4px; }
@media(max-width:640px){ .demo-copy { display: none; } }

/* ─── HEADER ─── */
.site-header {
  position: fixed; top: 36px; left: 0; right: 0; z-index: 500;
  padding: 0 5vw; height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(253,247,243,0.85);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-s);
  transition: background .4s ease, border-color .4s ease;
}
.site-header.scrolled {
  background: rgba(253,247,243,0.97);
  border-bottom-color: var(--border);
}
.logo {
  font-family: var(--ff-en); font-style: italic; font-weight: 600;
  font-size: 1.55rem; letter-spacing: .04em; color: var(--dark);
  display: flex; flex-direction: column; line-height: 1;
}
.logo-sub {
  font-family: var(--ff-sans); font-style: normal; font-weight: 300;
  font-size: .58rem; letter-spacing: .32em; text-transform: uppercase;
  color: var(--rose); margin-top: 2px;
}
.header-nav {
  display: flex; align-items: center; gap: 2rem;
}
.header-nav a {
  font-family: var(--ff-sans); font-size: .7rem; letter-spacing: .22em;
  text-transform: uppercase; color: var(--muted);
  transition: color .25s;
}
.header-nav a:hover { color: var(--rose); }
.btn-reserve-header {
  font-family: var(--ff-sans); font-size: .65rem; font-weight: 400;
  letter-spacing: .18em; text-transform: uppercase;
  padding: 10px 22px; border: 1px solid var(--rose);
  color: var(--rose); background: transparent;
  transition: background .3s, color .3s;
  cursor: pointer; text-decoration: none;
}
.btn-reserve-header:hover { background: var(--rose); color: #fff; }
.hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; width: 40px; height: 40px; cursor: pointer;
  background: none; border: none; padding: 0;
}
.hamburger span {
  display: block; width: 24px; height: 1px; background: var(--dark);
  transition: transform .4s ease, opacity .3s, width .3s;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px,4px); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px,-4px); }

/* ─── HERO ─── */
.hero {
  min-height: calc(100vh - 36px);
  display: grid; grid-template-columns: 1fr 1fr;
}
.hero-image {
  position: relative; overflow: hidden;
}
.hero-image img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
  transition: transform 8s ease;
}
.hero-image:hover img { transform: scale(1.04); }
.hero-image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(45,26,20,0.15), transparent);
}
.hero-text {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 8vw 80px 6vw; background: var(--bg); position: relative;
}
.hero-text::before {
  content: 'BLOOM'; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%) rotate(-90deg);
  font-family: var(--ff-en); font-size: clamp(6rem,10vw,12rem);
  font-weight: 700; font-style: italic;
  color: rgba(212,137,122,0.05); white-space: nowrap;
  pointer-events: none; letter-spacing: .05em;
}
.hero-eyebrow {
  font-family: var(--ff-sans); font-size: .62rem; font-weight: 400;
  letter-spacing: .4em; text-transform: uppercase; color: var(--rose);
  margin-bottom: 1.8rem;
  display: flex; align-items: center; gap: 12px;
}
.hero-eyebrow::before {
  content: ''; display: block; width: 32px; height: 1px; background: var(--rose);
}
.hero-title {
  font-family: var(--ff-en); font-weight: 600; font-style: italic;
  font-size: clamp(2.4rem,4vw,4.2rem); line-height: 1.15;
  color: var(--dark); margin-bottom: .6rem;
  letter-spacing: -.01em;
}
.hero-title-jp {
  font-family: var(--ff-jp); font-weight: 300; font-size: clamp(.85rem,1.1vw,1.05rem);
  letter-spacing: .2em; color: var(--muted); margin-bottom: 2.8rem;
}
.hero-desc {
  font-family: var(--ff-jp); font-weight: 300; font-size: .9rem;
  line-height: 2.0; color: var(--muted); max-width: 340px;
  margin-bottom: 3rem;
}
.hero-cta {
  display: flex; align-items: center; gap: 1.5rem;
}
.btn-primary {
  font-family: var(--ff-sans); font-size: .68rem; letter-spacing: .22em;
  text-transform: uppercase; padding: 14px 32px;
  background: var(--rose); color: #fff; border: 1px solid var(--rose);
  transition: background .3s, color .3s; cursor: pointer;
}
.btn-primary:hover { background: var(--dark); border-color: var(--dark); }
.btn-outline {
  font-family: var(--ff-sans); font-size: .68rem; letter-spacing: .22em;
  text-transform: uppercase; padding: 14px 32px;
  background: transparent; color: var(--text); border: 1px solid var(--border);
  transition: border-color .3s, color .3s; cursor: pointer;
}
.btn-outline:hover { border-color: var(--rose); color: var(--rose); }
.hero-scroll {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--ff-sans); font-size: .58rem; letter-spacing: .35em;
  text-transform: uppercase; color: var(--muted);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hero-scroll::after {
  content: ''; display: block; width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--rose), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%,100% { opacity: 0; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}
.hero-tag {
  position: absolute; top: 50%; right: -20px; transform: translateY(-50%);
  writing-mode: vertical-rl; font-family: var(--ff-sans); font-size: .55rem;
  letter-spacing: .4em; text-transform: uppercase; color: var(--rose-pale);
  background: var(--rose); padding: 16px 8px;
  display: none;
}

/* ─── SECTION COMMON ─── */
section { padding: clamp(60px,8vw,120px) 5vw; }
.section-eyebrow {
  font-family: var(--ff-sans); font-size: .6rem; letter-spacing: .42em;
  text-transform: uppercase; color: var(--rose);
  display: flex; align-items: center; gap: 12px; margin-bottom: 1.2rem;
}
.section-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--rose); }
.section-title {
  font-family: var(--ff-en); font-weight: 600; font-style: italic;
  font-size: clamp(1.8rem,3vw,3rem); color: var(--dark);
  line-height: 1.2; margin-bottom: .5rem;
}
.section-title-jp {
  font-family: var(--ff-jp); font-weight: 300; font-size: .82rem;
  letter-spacing: .18em; color: var(--muted); margin-bottom: 3rem;
}
.wrap { max-width: 1180px; margin: 0 auto; }

/* ─── NEWS ─── */
.news-section { background: var(--bg-2); padding: clamp(40px,5vw,72px) 5vw; }
.news-list { display: flex; flex-direction: column; gap: 0; }
.news-item {
  display: flex; align-items: center; gap: 2rem; padding: 18px 0;
  border-bottom: 1px solid var(--border);
  transition: opacity .25s;
}
.news-item:first-child { border-top: 1px solid var(--border); }
.news-item:hover { opacity: .72; }
.news-date { font-family: var(--ff-sub); font-size: .82rem; color: var(--muted); flex-shrink: 0; }
.news-cat {
  font-family: var(--ff-sans); font-size: .58rem; letter-spacing: .18em;
  text-transform: uppercase; padding: 3px 10px;
  background: var(--rose-pale); color: var(--rose); flex-shrink: 0;
}
.news-title { font-size: .9rem; font-weight: 400; letter-spacing: .04em; line-height: 1.6; }

/* ─── CONCEPT ─── */
.concept-section { background: var(--bg); }
.concept-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6vw; align-items: center;
}
.concept-img {
  position: relative;
}
.concept-img img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
}
.concept-img::after {
  content: ''; position: absolute; bottom: -20px; right: -20px;
  width: 60%; height: 60%;
  border: 1px solid var(--rose-lt); pointer-events: none;
}
.concept-text { padding: 2rem 0; }
.concept-quote {
  font-family: var(--ff-en); font-style: italic; font-weight: 400;
  font-size: clamp(1.2rem,1.8vw,1.6rem); color: var(--rose-dark);
  line-height: 1.6; margin-bottom: 2rem;
  border-left: 2px solid var(--rose-lt); padding-left: 1.4rem;
}
.concept-body {
  font-weight: 300; font-size: .9rem; line-height: 2.1; color: var(--muted);
  margin-bottom: 2rem;
}

/* ─── MENU/SERVICES ─── */
.menu-section { background: var(--bg-2); }
.menu-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
}
.menu-card { position: relative; overflow: hidden; cursor: pointer; }
.menu-card img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  transition: transform .6s ease;
}
.menu-card:hover img { transform: scale(1.06); }
.menu-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(45,26,20,.75) 0%, transparent 55%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 24px;
}
.menu-card-title {
  font-family: var(--ff-en); font-style: italic; font-size: 1.2rem;
  color: #fff; margin-bottom: 4px;
}
.menu-card-jp { font-size: .72rem; color: rgba(255,255,255,.6); letter-spacing: .12em; }
.menu-card-price {
  font-family: var(--ff-sub); font-size: .82rem; color: var(--rose-lt);
  margin-top: 6px;
}

/* ─── STYLE GALLERY ─── */
.gallery-section { background: var(--bg); }
.gallery-scroll-wrap {
  overflow-x: auto; padding-bottom: 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--rose-lt) transparent;
}
.gallery-scroll-wrap::-webkit-scrollbar { height: 3px; }
.gallery-scroll-wrap::-webkit-scrollbar-track { background: transparent; }
.gallery-scroll-wrap::-webkit-scrollbar-thumb { background: var(--rose-lt); }
.gallery-scroll {
  display: flex; gap: 16px; width: max-content;
}
.gallery-item {
  width: 260px; flex-shrink: 0;
}
.gallery-item img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item-label {
  font-family: var(--ff-sub); font-style: italic; font-size: .88rem;
  color: var(--muted); margin-top: 10px; text-align: center;
  letter-spacing: .08em;
}

/* ─── STAFF ─── */
.staff-section { background: var(--bg-2); }
.staff-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 3rem; }
.staff-card {}
.staff-img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  object-position: top center; margin-bottom: 1.2rem;
  filter: grayscale(20%);
  transition: filter .4s;
}
.staff-card:hover .staff-img { filter: grayscale(0); }
.staff-name {
  font-family: var(--ff-en); font-style: italic; font-size: 1.1rem;
  color: var(--dark); margin-bottom: 2px;
}
.staff-role {
  font-size: .72rem; letter-spacing: .2em; color: var(--rose); margin-bottom: .8rem;
}
.staff-bio { font-size: .82rem; font-weight: 300; line-height: 1.9; color: var(--muted); }

/* ─── ACCESS ─── */
.access-section { background: var(--bg); }
.access-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5vw; align-items: start; }
.access-info { padding: 2rem 0; }
.access-table { width: 100%; border-collapse: collapse; margin-bottom: 2rem; }
.access-table tr { border-bottom: 1px solid var(--border); }
.access-table th {
  font-family: var(--ff-sans); font-size: .65rem; letter-spacing: .22em;
  text-transform: uppercase; color: var(--muted); font-weight: 400;
  padding: 14px 0; text-align: left; width: 7rem;
}
.access-table td { font-size: .88rem; font-weight: 300; padding: 14px 0; line-height: 1.7; }
.access-map {
  aspect-ratio: 4/3; background: var(--bg-2);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: .8rem; letter-spacing: .1em;
}

/* ─── FOOTER ─── */
.site-footer { background: var(--dark); padding: 60px 5vw 40px; }
.footer-inner {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 4rem;
  margin-bottom: 48px;
}
.footer-logo {
  font-family: var(--ff-en); font-style: italic; font-weight: 600;
  font-size: 2rem; color: #fff; margin-bottom: 6px;
}
.footer-logo-sub {
  font-family: var(--ff-sans); font-size: .58rem; letter-spacing: .35em;
  text-transform: uppercase; color: var(--rose-lt); margin-bottom: 1.2rem;
}
.footer-desc { font-size: .8rem; font-weight: 300; line-height: 2; color: rgba(255,255,255,.4); }
.footer-nav-title {
  font-family: var(--ff-sans); font-size: .6rem; letter-spacing: .3em;
  text-transform: uppercase; color: var(--rose-lt); margin-bottom: 1rem;
}
.footer-nav { display: flex; flex-direction: column; gap: .55rem; }
.footer-nav a {
  font-size: .82rem; font-weight: 300; color: rgba(255,255,255,.5);
  transition: color .25s;
}
.footer-nav a:hover { color: var(--rose-lt); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-copy { font-size: .72rem; color: rgba(255,255,255,.3); }
.footer-privacy { font-size: .72rem; color: rgba(255,255,255,.35); transition: color .25s; }
.footer-privacy:hover { color: var(--rose-lt); }

/* ─── MOBILE NAV ─── */
@media(max-width:860px){
  .header-nav { display: none; }
  .btn-reserve-header { display: none; }
  .hamburger {
    display: flex; z-index: 1100; position: relative;
  }
  .mobile-nav {
    position: fixed; inset: 0; background: var(--bg);
    z-index: 1000; pointer-events: none;
    display: flex; flex-direction: column;
    justify-content: center; align-items: center; gap: 0;
    clip-path: circle(0% at calc(100% - 56px) 90px);
    transition: clip-path .72s cubic-bezier(.77,0,.175,1);
  }
  .mobile-nav.nav-open { pointer-events: all; clip-path: circle(160% at calc(100% - 56px) 90px); }
  .mobile-nav::before {
    content: 'BLOOM'; position: absolute; font-family: var(--ff-en);
    font-style: italic; font-size: clamp(5rem,18vw,9rem); font-weight: 700;
    color: rgba(212,137,122,0.07); pointer-events: none; letter-spacing: .04em;
    user-select: none;
  }
  .mobile-nav a {
    font-family: var(--ff-en); font-style: italic; font-size: 1.4rem;
    color: var(--dark); padding: 18px 0; width: 240px; text-align: center;
    border-bottom: 1px solid var(--border);
    opacity: 0; transform: translateY(16px);
    transition: color .3s, opacity .5s ease, transform .5s ease;
  }
  .mobile-nav a:last-child { border-bottom: none; }
  .mobile-nav a:hover { color: var(--rose); }
  .mobile-nav.nav-open a { opacity: 1; transform: translateY(0); }
  .mobile-nav.nav-open a:nth-child(1) { transition-delay: .22s; }
  .mobile-nav.nav-open a:nth-child(2) { transition-delay: .30s; }
  .mobile-nav.nav-open a:nth-child(3) { transition-delay: .38s; }
  .mobile-nav.nav-open a:nth-child(4) { transition-delay: .46s; }
  .mobile-nav.nav-open a:nth-child(5) { transition-delay: .54s; }
  .mobile-nav.nav-open a:nth-child(6) { transition-delay: .62s; }
  .site-header.menu-active {
    background: var(--bg) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-bottom-color: transparent !important;
  }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-image { aspect-ratio: 4/3; }
  .hero-image img { height: 100%; }
  .hero-text { padding: 48px 6vw; }
  .hero-text::before { display: none; }
  .concept-inner { grid-template-columns: 1fr; }
  .concept-img::after { display: none; }
  .menu-grid { grid-template-columns: 1fr 1fr; }
  .staff-grid { grid-template-columns: 1fr; gap: 2rem; }
  .staff-card { display: grid; grid-template-columns: 120px 1fr; gap: 1rem; align-items: start; }
  .staff-img { aspect-ratio: 1; margin-bottom: 0; }
  .access-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
}
@media(max-width:560px){
  .menu-grid { grid-template-columns: 1fr; }
  .gallery-item { width: 200px; }
}
