/* ============================================
   CAFE LUMIÈRE — original styles
   ============================================ */

:root {
  --c-bg: #ffffff;
  --c-bg-cream: #f5f0e7;
  --c-bg-soft: #f9f5ee;
  --c-dark: #2a221a;
  --c-text: #4a3a2c;
  --c-text-2: #7a6a5a;
  --c-accent: #c4a574;
  --c-line: #e8dec9;
  --ff-en-deco: 'Cinzel', serif;
  --ff-en-body: 'Poppins', sans-serif;
  --ff-jp: 'Noto Serif JP', 'Yu Mincho', 'YuMincho', serif;
  --ff-jp-sans: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;
  --max-w: 1200px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-jp);
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  font-size: 14px;
  letter-spacing: 0.04em;
  line-height: 1.9;
}

/* ============================================
   LOADING / PROGRESS
   ============================================ */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--c-bg);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  transition: opacity .8s ease, visibility .8s ease;
}
#loader.is-done { opacity: 0; visibility: hidden; }
#loader-mark {
  font-family: var(--ff-en-deco);
  font-size: 18px;
  letter-spacing: 0.4em;
  color: var(--c-text);
  margin-bottom: 24px;
}
#loader-bar {
  width: 240px; height: 1px;
  background: var(--c-line);
  position: relative;
  overflow: hidden;
}
#loader-bar-in {
  position: absolute; left: 0; top: 0; height: 100%;
  background: var(--c-text);
  width: 0%;
  transition: width .15s linear;
}

/* Page reveal curtains */
.curtain {
  position: fixed; left: 0; right: 0; height: 50vh;
  background: var(--c-bg);
  z-index: 9998;
  pointer-events: none;
  transition: transform 1s cubic-bezier(.77,0,.18,1);
}
.curtain.top { top: 0; transform: translateY(0); }
.curtain.bottom { bottom: 0; transform: translateY(0); }
body.is-loaded .curtain.top { transform: translateY(-100%); }
body.is-loaded .curtain.bottom { transform: translateY(100%); }

/* ============================================
   HEADER (fixed logo + nav)
   ============================================ */
#h-logo {
  position: fixed;
  top: 28px; left: 32px;
  z-index: 100;
  opacity: 0; transform: translateY(-12px);
  transition: opacity .8s ease .2s, transform .8s ease .2s;
}
body.is-loaded #h-logo { opacity: 1; transform: translateY(0); }
#h-logo a {
  display: flex; flex-direction: column; align-items: flex-start;
  line-height: 1.1;
}
#h-logo .h-logo-en {
  font-family: var(--ff-en-deco);
  font-size: 22px;
  letter-spacing: 0.18em;
  color: var(--c-text);
  font-weight: 600;
}
#h-logo .h-logo-sub {
  font-family: var(--ff-en-body);
  font-size: 9.5px;
  letter-spacing: 0.32em;
  color: var(--c-text-2);
  margin-top: 6px;
  text-transform: uppercase;
}
.is-hero-out #h-logo .h-logo-en { color: var(--c-text); }

#h-nav {
  position: fixed;
  top: 32px; right: 32px;
  z-index: 100;
}
#h-nav ul { display: flex; gap: 4px; }
#h-nav a {
  display: inline-block;
  padding: 10px 18px;
  font-family: var(--ff-en-body);
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--c-text);
  text-transform: uppercase;
  position: relative;
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity .6s ease, transform .6s ease, color .2s ease;
}
#h-nav a::after {
  content: '';
  position: absolute;
  left: 18px; right: 18px; bottom: 4px;
  height: 1px;
  background: var(--c-text);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
#h-nav a:hover::after { transform: scaleX(1); }
body.is-loaded #h-nav a { opacity: 1; transform: translateY(0); }
body.is-loaded #h-nav li:nth-child(1) a { transition-delay: .35s; }
body.is-loaded #h-nav li:nth-child(2) a { transition-delay: .45s; }
body.is-loaded #h-nav li:nth-child(3) a { transition-delay: .55s; }
body.is-loaded #h-nav li:nth-child(4) a { transition-delay: .65s; }

#h-sister {
  position: fixed;
  bottom: 28px; right: 32px;
  z-index: 100;
  font-family: var(--ff-en-deco);
  font-size: 14px;
  letter-spacing: 0.22em;
  color: var(--c-text);
  border: 1px solid var(--c-text);
  padding: 10px 18px;
  background: rgba(255,255,255,.85);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .8s ease 1s, transform .8s ease 1s;
}
body.is-loaded #h-sister { opacity: 1; transform: translateY(0); }
#h-sister:hover { background: var(--c-text); color: #fff; }

/* ============================================
   HERO / MAIN VISUAL
   ============================================ */
#mv {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: var(--c-dark);
}
#mv-bg { position: absolute; inset: 0; z-index: 1; }
#mv-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(20,15,10,.18);
  z-index: 2;
  pointer-events: none;
}
#mv-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  color: #fff;
}
#mv-overlay .mv-en {
  font-family: var(--ff-en-deco);
  font-size: 14px;
  letter-spacing: 0.6em;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.2s ease 1.4s, transform 1.2s ease 1.4s;
}
#mv-overlay .mv-name {
  font-family: var(--ff-en-deco);
  font-size: clamp(48px, 7vw, 96px);
  letter-spacing: 0.18em;
  font-weight: 600;
  line-height: 1.1;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.4s ease 1.7s, transform 1.4s ease 1.7s;
}
#mv-overlay .mv-line {
  width: 0;
  height: 1px;
  background: rgba(255,255,255,.7);
  margin: 28px 0;
  transition: width 1.4s ease 2.2s;
}
#mv-overlay .mv-tag {
  font-family: var(--ff-jp);
  font-size: 13px;
  letter-spacing: 0.35em;
  font-weight: 400;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.2s ease 2.5s, transform 1.2s ease 2.5s;
}
body.is-loaded #mv-overlay .mv-en,
body.is-loaded #mv-overlay .mv-name,
body.is-loaded #mv-overlay .mv-tag {
  opacity: 1; transform: translateY(0);
}
body.is-loaded #mv-overlay .mv-line { width: 64px; }

#mv-scroll {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-family: var(--ff-en-body);
  font-size: 10px;
  letter-spacing: 0.4em;
  z-index: 4;
  opacity: 0;
  animation: mvScrollIn 1s ease 3s forwards;
}
#mv-scroll::after {
  content: '';
  display: block;
  width: 1px; height: 40px;
  background: rgba(255,255,255,.7);
  margin: 12px auto 0;
  animation: mvLine 2.4s ease-in-out infinite;
}
@keyframes mvScrollIn { to { opacity: 1; } }
@keyframes mvLine {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================
   GENERIC LAYOUT
   ============================================ */
.box { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }
.bg-cream { background: var(--c-bg-cream); }
.bg-white { background: var(--c-bg); }
.bg-soft { background: var(--c-bg-soft); }
.bg-dark { background: var(--c-dark); color: #efe7d8; }

.btm-0 { padding-bottom: 0 !important; }
.section { padding: 110px 0 120px; position: relative; }
.section-sm { padding: 60px 0; }

/* Anchor offset so sticky header doesn't cover */
.anchor { position: absolute; top: -40px; }

/* Section title (twin) */
.sec-tit { text-align: center; margin-bottom: 64px; }
.sec-tit .en {
  display: block;
  font-family: var(--ff-en-deco);
  font-size: 13px;
  letter-spacing: 0.45em;
  color: var(--c-accent);
  font-weight: 400;
}
.sec-tit .jp {
  display: block;
  font-family: var(--ff-jp);
  font-size: 26px;
  letter-spacing: 0.18em;
  color: var(--c-text);
  font-weight: 600;
  margin-top: 16px;
  position: relative;
}
.sec-tit .jp::after {
  content: '';
  display: block;
  width: 30px; height: 1px;
  background: var(--c-accent);
  margin: 22px auto 0;
}

/* ============================================
   NEWS
   ============================================ */
.news {
  background: var(--c-bg-cream);
  padding: 36px 0;
}
.news ul {
  max-width: 960px; margin: 0 auto; padding: 0 32px;
}
.news li {
  display: flex; gap: 32px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(74,58,44,.1);
  font-size: 13px;
}
.news li:last-child { border-bottom: 0; }
.news time {
  font-family: var(--ff-en-body);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--c-text-2);
  flex-shrink: 0;
  width: 90px;
  padding-top: 2px;
}
.news .nt { color: var(--c-text); }

/* ============================================
   CONCEPT
   ============================================ */
#concept { background: var(--c-bg); }
.con-pan {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}
.con-pan-img { overflow: hidden; }
.con-pan-img img { width: 100%; transform: scale(1.001); transition: transform 6s ease; }
.con-pan-img.aos-animate img { transform: scale(1.06); }
.con-pan-txt h3 {
  font-family: var(--ff-jp);
  font-size: 22px;
  letter-spacing: 0.16em;
  color: var(--c-text);
  font-weight: 600;
  line-height: 1.9;
  margin-bottom: 28px;
}
.con-pan-txt p {
  font-size: 13.5px;
  line-height: 2.2;
  color: var(--c-text-2);
  letter-spacing: 0.08em;
}

/* ============================================
   FULL-WIDTH PARALLAX BANDS (multiple)
   ============================================ */
.full-band {
  position: relative;
  min-height: 540px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.full-band::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(20,15,10,.42);
}
.full-band.dark::before { background: rgba(20,15,10,.55); }
.full-band.light::before { background: rgba(20,15,10,.28); }
.full-band-in {
  position: relative;
  padding: 100px 32px;
  max-width: 880px;
  z-index: 2;
}
.full-band .en {
  font-family: var(--ff-en-deco);
  font-size: 12px;
  letter-spacing: 0.5em;
  margin-bottom: 22px;
  color: rgba(255,255,255,.88);
}
.full-band h2 {
  font-family: var(--ff-jp);
  font-size: 22px;
  letter-spacing: 0.2em;
  font-weight: 500;
  line-height: 2.1;
}
.full-band h2 .accent {
  display: block;
  font-family: var(--ff-en-deco);
  font-size: 40px;
  letter-spacing: 0.14em;
  color: #fff;
  margin-bottom: 18px;
  font-weight: 500;
}
.full-band .line {
  width: 36px; height: 1px;
  background: rgba(255,255,255,.7);
  margin: 22px auto;
}

/* Backwards compat */
.bread-band { composes: full-band; }
.bread-band-in { composes: full-band-in; }

/* Specific band backgrounds */
.band-bread { background-image: url('../../image/bg_pan_img.jpg'); }
.band-just-baked { background-image: url('../../image/con_img001.jpg'); background-position: center 30%; }
.band-morning { background-image: url('../../image/pan_img001.jpg'); background-position: center; }

/* ============================================
   MENU
   ============================================ */
#menu { background: var(--c-bg); }
.cho-area {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-bottom: 88px;
}
.cho-card {
  background: var(--c-bg-soft);
  padding: 36px;
  position: relative;
}
.cho-card figure { overflow: hidden; aspect-ratio: 1/1; }
.cho-card figure img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s ease; }
.cho-card:hover figure img { transform: scale(1.05); }
.cho-card h3 {
  font-family: var(--ff-en-deco);
  font-size: 22px;
  letter-spacing: 0.22em;
  color: var(--c-text);
  margin: 28px 0 6px;
}
.cho-card .ja {
  font-family: var(--ff-jp);
  font-size: 14px;
  letter-spacing: 0.18em;
  color: var(--c-text-2);
  margin-bottom: 18px;
}
.cho-card .price {
  font-family: var(--ff-en-body);
  font-size: 17px;
  letter-spacing: 0.1em;
  color: var(--c-accent);
  margin-bottom: 20px;
}
.cho-card .desc {
  font-size: 12.5px;
  line-height: 2;
  color: var(--c-text-2);
}

/* Side menu */
.sid-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.sid-item figure { overflow: hidden; aspect-ratio: 1/1; margin-bottom: 18px; }
.sid-item figure img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s ease; }
.sid-item:hover figure img { transform: scale(1.05); }
.sid-item .ja-name {
  font-family: var(--ff-jp);
  font-size: 14px;
  letter-spacing: 0.14em;
  color: var(--c-text);
  font-weight: 600;
  text-align: center;
  margin-bottom: 4px;
}
.sid-item .price-sm {
  font-family: var(--ff-en-body);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--c-accent);
  text-align: center;
}

/* ============================================
   DRINK
   ============================================ */
#drink { background: var(--c-bg-cream); }
.dri-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.dri-img { overflow: hidden; }
.dri-img img { width: 100%; transition: transform 6s ease; }
.dri-img.aos-animate img { transform: scale(1.06); }
.dri-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 40px;
}
.dri-list dt {
  font-family: var(--ff-jp);
  font-size: 13.5px;
  letter-spacing: 0.12em;
  color: var(--c-text);
  padding: 10px 0 4px;
  display: flex; justify-content: space-between; align-items: baseline;
  border-bottom: 1px dotted rgba(74,58,44,.25);
}
.dri-list dt .p {
  font-family: var(--ff-en-body);
  color: var(--c-accent);
  font-size: 13px;
}
.dri-list dd {
  font-size: 11px;
  color: var(--c-text-2);
  letter-spacing: 0.08em;
  padding: 6px 0 14px;
  line-height: 1.7;
}

/* ============================================
   ACCESS
   ============================================ */
#access { background: var(--c-bg); }
.acc-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  margin-bottom: 32px;
}
.acc-item {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.acc-item:nth-child(even) { direction: rtl; }
.acc-item:nth-child(even) > * { direction: ltr; }
.acc-map {
  width: 100%;
  height: 360px;
  border: 1px solid var(--c-line);
}
.acc-info h3 {
  font-family: var(--ff-jp);
  font-size: 19px;
  letter-spacing: 0.18em;
  color: var(--c-text);
  font-weight: 600;
  margin-bottom: 4px;
}
.acc-info .acc-en {
  font-family: var(--ff-en-deco);
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--c-accent);
  margin-bottom: 24px;
}
.acc-info dl {
  border-top: 1px solid var(--c-line);
}
.acc-info dl > div {
  display: grid;
  grid-template-columns: 100px 1fr;
  padding: 12px 0;
  border-bottom: 1px solid var(--c-line);
  font-size: 12.5px;
}
.acc-info dt {
  font-family: var(--ff-en-body);
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--c-accent);
  padding-top: 3px;
  text-transform: uppercase;
}
.acc-info dd { color: var(--c-text); letter-spacing: 0.06em; line-height: 1.85; }

/* ============================================
   BRAND CTA (sister brand)
   ============================================ */
#brand-cta {
  position: relative;
  background-image: url('../../image/bra_img001.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 140px 0;
  color: #efe7d8;
  text-align: center;
  overflow: hidden;
}
#brand-cta::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,15,10,.78) 0%, rgba(20,15,10,.65) 100%);
}
#brand-cta > * { position: relative; z-index: 2; }
#brand-cta .bra-en {
  font-family: var(--ff-en-deco);
  font-size: 12px;
  letter-spacing: 0.5em;
  color: var(--c-accent);
  margin-bottom: 16px;
}
#brand-cta h2 {
  font-family: var(--ff-en-deco);
  font-size: 38px;
  letter-spacing: 0.2em;
  color: #fff;
  margin-bottom: 8px;
}
#brand-cta .bra-jp {
  font-family: var(--ff-jp);
  font-size: 15px;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,.75);
  margin-bottom: 36px;
}
#brand-cta .bra-link {
  display: inline-flex;
  align-items: center; gap: 12px;
  border: 1px solid rgba(255,255,255,.6);
  padding: 16px 36px;
  font-family: var(--ff-en-body);
  font-size: 11px;
  letter-spacing: 0.32em;
  color: #fff;
  text-transform: uppercase;
  transition: background .25s ease, color .25s ease;
}
#brand-cta .bra-link:hover { background: #fff; color: var(--c-dark); }
#brand-cta .bra-link::after { content: '→'; font-size: 14px; }

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--c-dark);
  color: rgba(255,255,255,.55);
  padding: 28px 32px;
  text-align: center;
  font-family: var(--ff-en-body);
  font-size: 10.5px;
  letter-spacing: 0.32em;
  border-top: 1px solid rgba(255,255,255,.07);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .box { padding: 0 24px; }
  .section { padding: 80px 0 88px; }
  #h-logo { top: 18px; left: 18px; }
  #h-logo .h-logo-en { font-size: 17px; }
  #h-logo .h-logo-sub { font-size: 8.5px; }
  #h-nav { top: auto; bottom: 0; left: 0; right: 0; background: rgba(255,255,255,.95); padding: 8px 0; backdrop-filter: blur(8px); border-top: 1px solid var(--c-line); }
  #h-nav ul { justify-content: space-around; }
  #h-nav a { padding: 8px 6px; font-size: 9.5px; letter-spacing: 0.18em; }
  #h-sister { display: none; }
  #mv-overlay .mv-name { font-size: 42px; letter-spacing: 0.14em; }
  .con-pan, .dri-wrap, .acc-item { grid-template-columns: 1fr; gap: 40px; }
  .acc-item:nth-child(even) { direction: ltr; }
  .cho-area { grid-template-columns: 1fr; gap: 28px; }
  .sid-list { grid-template-columns: 1fr 1fr; gap: 24px; }
  .dri-list { grid-template-columns: 1fr; }
  .bread-band { background-attachment: scroll; min-height: 360px; }
  .bread-band h2 .accent { font-size: 26px; }
  #brand-cta h2 { font-size: 26px; }
  .sec-tit .jp { font-size: 20px; }
  footer { padding-bottom: 60px; }
}
