﻿/* ─── RESET & VARIABLES ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink: #1a1a18;
  --ink-soft: #3d3d39;
  --ink-muted: #7a7a75;
  --paper: #f7f5f0;
  --paper-warm: #ede9e0;
  --paper-card: #faf8f4;
  --accent: #c8382a;
  --accent-soft: #e8cfc9;
  --gold: #a07838;
  --gold-light: #d4b87a;
  --border: rgba(26,26,24,0.12);
  --border-soft: rgba(26,26,24,0.06);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 4rem;
  background: rgba(247,245,240,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 0.5px solid var(--border);
  overflow: visible;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo img {
  height: 38px;
  width: auto;
  display: block;
  max-width: none;
}

.nav-logo-mark {
  width: 36px;
  height: 36px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo-mark svg { width: 20px; height: 20px; }

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.nav-logo-text .en {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
}

.nav-logo-text .jp {
  font-family: 'Noto Sans JP', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', sans-serif;
  font-size: 10px;
  font-weight: 300;
  color: var(--ink-muted);
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--accent); }

.nav-cta {
  background: var(--ink) !important;
  color: var(--paper) !important;
  padding: 0.5rem 1.25rem !important;
  font-weight: 500 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--accent) !important; color: #fff !important; }

/* ─── BUTTONS ─── */
.btn-primary {
  background: var(--accent);
  color: #fff;
  padding: 0.875rem 2rem;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: #a02d21; transform: translateY(-1px); }

.btn-ghost {
  color: var(--ink);
  padding: 0.875rem 1.5rem;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-decoration: none;
  border: 0.5px solid var(--border);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: var(--ink); }

/* ─── SECTION DIVIDER ─── */
.section-divider {
  height: 1px;
  background: var(--border);
  margin: 0 4rem;
}

/* ─── MARQUEE ─── */
.marquee-wrap {
  background: var(--ink);
  padding: 1rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-inner {
  display: inline-flex;
  animation: marquee 30s linear infinite;
}

.marquee-item {
  font-family: 'Noto Sans JP', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', sans-serif;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.5);
  padding: 0 3rem;
}

.marquee-dot { color: var(--accent); padding: 0; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── SECTIONS ─── */
section { padding: 6rem 4rem; }

.section-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.section-label-line {
  width: 24px;
  height: 1px;
  background: var(--accent);
}

.section-label-text {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

.section-title em  { font-style: italic; color: var(--accent); }
.section-title.light { color: #fff; }

.section-subtitle {
  font-size: 15px;
  font-weight: 300;
  color: var(--ink-soft);
  max-width: 560px;
  line-height: 1.9;
}

/* ─── FADE-IN ANIMATION ─── */
.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible { opacity: 1; transform: none; }



/* ─── Extracted inline styles ─── */
.flex-center { display:flex; align-items:center; }
.ml-1 { margin-left:1rem; }
.mt-1 { margin-top:1rem; }
.mt-15 { margin-top:1.5rem; }
.delay-1 { transition-delay:.05s; }
.delay-2 { transition-delay:.1s; }
.delay-3 { transition-delay:.15s; }
.col-span-2 { grid-column:span 2; }
.bg-gold { background:var(--gold-light); }
.text-gold { color:var(--gold-light); }
.text-white { color:#fff; }
.justify-center { justify-content:center; }
.hidden { display:none; }
.pointer { cursor:pointer; }
.mb-0 { margin-bottom:0; }
.text-sm { font-size:14px; }
.bg-white-10 { background:rgba(255,255,255,.1); }
.footer-logo-img { height:26px; width:auto; filter:brightness(0) invert(1); opacity:0.65; }
.content-heading { font-family:'Cormorant Garamond',serif; font-size:1.8rem; font-weight:300; color:var(--ink); margin:1rem 0 2rem; }
.text-center-block { text-align:center; max-width:600px; margin:0 auto; }
.mt-0 { margin-top:0; }

/* ─── PAGE HERO (inner pages: about, khaigo, food-service) ─── */
.page-hero {
  padding-top: 72px;
  background: var(--ink);
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  opacity: 0.18;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(255,255,255,.9) 39px, rgba(255,255,255,.9) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(255,255,255,.9) 39px, rgba(255,255,255,.9) 40px);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 4rem 4rem 3.5rem;
  width: 100%;
}
.hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.hero-breadcrumb span {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  font-weight: 300;
}
.hero-breadcrumb .sep   { color: rgba(255,255,255,.2); }
.hero-breadcrumb .current { color: var(--gold-light); }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 0.5px solid rgba(200,160,90,.3);
  padding: 0.35rem 0.85rem;
  margin-bottom: 1rem;
}
.hero-eyebrow svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 0.4rem;
}
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-sub {
  font-family: 'Noto Sans JP', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,.35);
  letter-spacing: 0.18em;
  margin-bottom: 1.5rem;
}
.hero-desc {
  font-size: 14.5px;
  font-weight: 300;
  color: rgba(255,255,255,.55);
  max-width: 600px;
  line-height: 1.9;
}

/* ─── BODY TEXT & CHECKLIST (shared utility) ─── */
.body-text {
  font-size: 14.5px;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.95;
  margin-bottom: 1.25rem;
}
.section-title.light { color: #fff; }

.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 1.5rem;
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 14px;
  font-weight: 300;
  color: var(--ink-soft);
}
.check-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.15rem;
}
.check-dot::after {
  content: '';
  width: 6px;
  height: 4px;
  border-left: 1.5px solid #fff;
  border-bottom: 1.5px solid #fff;
  transform: rotate(-45deg) translateY(-1px);
  display: block;
}

/* ─── CTA SECTION (shared: about, khaigo) ─── */
.cta-section {
  background: var(--paper);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0;
}
.cta-left {
  padding: 5rem 4rem;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.cta-left::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,.9) 0, rgba(255,255,255,.9) 1px, transparent 0, transparent 50%);
  background-size: 8px 8px;
  pointer-events: none;
}
.cta-right {
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: #fff;
  margin-bottom: 1.25rem;
  line-height: 1.15;
}
.cta-title em { font-style: italic; color: var(--gold-light); }
.cta-text {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,.5);
  line-height: 1.9;
  margin-bottom: 2rem;
}
.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.cta-right-content { display: flex; flex-direction: column; gap: 1.25rem; }
.cta-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding-bottom: 1.25rem;
  border-bottom: 0.5px solid var(--border);
}
.cta-info-item:last-child { border-bottom: none; padding-bottom: 0; }
.cta-info-icon {
  width: 36px;
  height: 36px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cta-info-icon svg { width: 16px; height: 16px; stroke: #fff; fill: none; stroke-width: 1.5; }
.cta-info-label {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 0.2rem;
}
.cta-info-value { font-size: 14px; font-weight: 300; color: var(--ink); line-height: 1.6; }

/* ─── FOOTER (all pages) ─── */
footer {
  background: #111110;
  padding: 2rem 4rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  border-top: 0.5px solid rgba(255,255,255,.06);
  gap: 2rem;
}
.footer-left  { display: flex; align-items: center; gap: 0.75rem; }
.footer-text  { display: flex; flex-direction: column; gap: 0.25rem; text-align: center; justify-self: center; }
.footer-brand { font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.footer-copy  { font-size: 10px; color: rgba(255,255,255,.22); font-weight: 300; letter-spacing: 0.02em; }
.footer-center { display: none; }
.footer-right { display: flex; gap: 2rem; justify-self: end; }
.footer-link {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-link:hover { color: rgba(255,255,255,.7); }

.jp-label { display:block; margin-top:0.4rem; font-family:"Noto Sans JP","Hiragino Sans","Yu Gothic","Meiryo",sans-serif; font-size:11px; color:var(--ink-muted); letter-spacing:0.05em; }
.bg-accent-subtle { background:rgba(200,56,42,0.04); }

/* ─── VIDEO SECTION (shared) ─── */
.video-section { background:linear-gradient(160deg,var(--paper-warm) 0%,#e8edf0 100%); text-align:center; }
.video-hero-inner { max-width:1000px; margin:0 auto; }
.video-pill { display:inline-flex; align-items:center; border:0.5px solid rgba(26,26,24,0.15); border-radius:100px; padding:0.5rem 1.5rem; font-size:10px; letter-spacing:0.16em; text-transform:uppercase; color:var(--ink-muted); margin-bottom:2rem; background:rgba(255,255,255,0.55); }
.video-headline { font-family:'Cormorant Garamond',serif; font-size:clamp(2.6rem,4.5vw,4rem); font-weight:300; color:var(--ink); line-height:1.1; margin-bottom:2.5rem; }
.video-headline em { font-style:italic; color:var(--accent); }
.video-wrap { position:relative; width:100%; aspect-ratio:16/9; overflow:hidden; background:#000; border-radius:16px; box-shadow:0 32px 80px rgba(0,0,0,0.2); margin-bottom:2.5rem; }
.video-thumb { position:absolute; inset:0; display:flex; align-items:center; justify-content:center; cursor:pointer; }
.video-thumb-img { position:absolute; inset:0; background-size:cover; background-position:center; transition:transform 0.5s ease; }
.video-thumb:hover .video-thumb-img { transform:scale(1.03); }
.video-thumb-overlay { position:absolute; inset:0; background:rgba(10,10,8,0.3); transition:background 0.3s; }
.video-thumb:hover .video-thumb-overlay { background:rgba(10,10,8,0.15); }
.video-play-btn { position:relative; z-index:2; width:80px; height:80px; border-radius:50%; background:rgba(255,255,255,0.95); border:none; display:flex; align-items:center; justify-content:center; cursor:pointer; color:var(--accent); transition:transform 0.25s,background 0.2s; box-shadow:0 8px 40px rgba(0,0,0,0.3); padding-left:4px; }
.video-play-btn:hover { transform:scale(1.12); background:#fff; }
.video-caption { font-size:15px; font-weight:300; color:var(--ink-soft); max-width:580px; margin:0 auto 2.5rem; line-height:1.85; }
.video-ctas { display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; }
.video-iframe { width:100%; height:100%; display:block; border:none; }
