/* =============================================
   TOKINOHARI — Luxury Redesign
   Designer-grade stylesheet
   ============================================= */

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

/* ── Design Tokens ── */
:root {
  --ink:        #1A1714;
  --ink-soft:   #3D3530;
  --warm-white: #FAF7F2;
  --cream:      #F0E8DC;
  --cream-dark: #E4D8C8;
  --gold:       #C4A35A;
  --gold-light: #DEC98A;
  --gold-pale:  #F5EDD8;
  --sage:       #7A8C7A;
  --taupe:      #8C7B6B;
  --border:     #E2D9CE;

  --font-display: 'Cormorant Garamond', 'Noto Serif JP', serif;
  --font-serif:   'Noto Serif JP', serif;
  --font-sans:    'Noto Sans JP', sans-serif;
  --font-en:      'Montserrat', sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --dur: 0.7s;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--warm-white);
  line-height: 1.9;
  letter-spacing: 0.04em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── Section Base ── */
section { padding: 120px 0; }

.label {
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 20px;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.divider {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 20px 0 28px;
}

/* ── Scroll Animation ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity var(--dur) var(--ease-out),
              transform var(--dur) var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ── Header ── */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  transition: background 0.5s var(--ease-out),
              border-color 0.5s var(--ease-out),
              padding 0.4s var(--ease-out);
  border-bottom: 1px solid transparent;
}

#header.scrolled {
  background: rgba(250, 247, 242, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-color: var(--border);
}

.header-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 48px;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  flex-shrink: 0;
  gap: 4px;
}

.logo-en {
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--gold);
}

.logo-ja {
  font-size: 9px;
  color: var(--taupe);
  letter-spacing: 0.15em;
}

.nav-pc { margin-left: auto; }

.nav-pc ul {
  display: flex;
  gap: 40px;
}

.nav-pc a {
  font-size: 0.82rem;
  color: var(--ink-soft);
  letter-spacing: 0.08em;
  position: relative;
  padding-bottom: 2px;
}

.nav-pc a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease-out);
}

.nav-pc a:hover::after { width: 100%; }
.nav-pc a:hover { color: var(--ink); }

.header-reserve {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-en);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 9px 22px;
  border-radius: 50px;
  transition: background 0.3s, color 0.3s;
  margin-left: 24px;
  white-space: nowrap;
}

.header-reserve:hover {
  background: var(--gold);
  color: white;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 26px; height: 1px;
  background: var(--ink);
  transition: 0.4s var(--ease-out);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-sp {
  position: fixed;
  inset: 0;
  background: var(--warm-white);
  z-index: 190;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out);
}

.nav-sp.open {
  opacity: 1;
  pointer-events: all;
}

.nav-sp a {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 5vw, 2rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--ink);
  padding: 12px 40px;
  transition: color 0.3s;
}

.nav-sp a:hover { color: var(--gold); }

.nav-sp .sp-reserve {
  margin-top: 24px;
  font-family: var(--font-en);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 12px 32px;
  border-radius: 50px;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  transition: transform 10s var(--ease-out);
}

.hero-image.loaded { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(26, 23, 20, 0.62) 0%,
    rgba(26, 23, 20, 0.45) 50%,
    rgba(26, 23, 20, 0.55) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 24px 80px;
  max-width: 760px;
  width: 100%;
}

.hero-eyebrow {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.35em;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 32px;
  display: block;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: 0.04em;
  color: #fff;
  margin-bottom: 28px;
}

.hero-title em {
  font-style: normal;
  color: var(--gold-light);
  display: block;
}

.hero-body {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 2.1;
  margin-bottom: 48px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-ja);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 18px 40px;
  min-height: 58px;
  border-radius: 10px;
  transition: background 0.3s, transform 0.3s var(--ease-out), box-shadow 0.3s;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(196, 163, 90, 0.4);
}

.btn-primary .arrow {
  width: 16px; height: 1px;
  background: currentColor;
  position: relative;
  transition: width 0.3s;
}

.btn-primary .arrow::after {
  content: '';
  position: absolute;
  right: 0; top: -3px;
  width: 7px; height: 7px;
  border-right: 1px solid currentColor;
  border-top: 1px solid currentColor;
  transform: rotate(45deg);
}

.btn-primary:hover .arrow { width: 24px; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 400;
  min-height: 58px;
  letter-spacing: 0.08em;
  padding: 18px 36px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 10px;
  transition: border-color 0.3s, background 0.3s;
}

.btn-secondary:hover {
  border-color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.1);
}

.hero-note {
  margin-top: 32px;
  font-family: var(--font-en);
  font-size: 10px;
  letter-spacing: 0.35em;
  color: rgba(255, 255, 255, 0.45);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 10;
}

.scroll-text {
  font-family: var(--font-en);
  font-size: 9px;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.5);
}

.scroll-track {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.2);
  position: relative;
  overflow: hidden;
}

.scroll-thumb {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 50%;
  background: var(--gold);
  animation: scrollAnim 2s ease-in-out infinite;
}

@keyframes scrollAnim {
  0%   { top: -50%; }
  100% { top: 150%; }
}

/* ── Ticker ── */
.ticker {
  background: var(--ink);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-inner {
  display: inline-flex;
  animation: ticker 28s linear infinite;
}

.ticker-item {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.35em;
  color: var(--gold);
  padding: 0 48px;
}

.ticker-sep {
  color: rgba(196, 163, 90, 0.3);
  padding: 0;
}

@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Philosophy ── */
.philosophy {
  background: var(--ink);
  color: var(--warm-white);
  text-align: center;
  padding: 140px 0;
}

.philosophy .label { color: var(--gold); }

.philosophy-quote {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: var(--warm-white);
  max-width: 720px;
  margin: 0 auto 32px;
}

.philosophy-quote em {
  font-style: normal;
  color: var(--gold-light);
}

.philosophy-body {
  font-size: 0.93rem;
  color: rgba(250, 247, 242, 0.65);
  max-width: 480px;
  margin: 0 auto;
  line-height: 2.0;
}

/* ── Concerns ── */
.concerns {
  background: var(--warm-white);
}

.concerns-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 80px;
}

.concerns-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
}

.concern-item {
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 24px;
  cursor: default;
  transition: background 0.3s;
}

.concern-item:nth-child(odd) {
  padding-right: 40px;
  border-right: 1px solid var(--border);
}

.concern-item:nth-child(even) {
  padding-left: 40px;
}

.concern-num {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold);
  flex-shrink: 0;
}

.concern-text {
  font-family: var(--font-serif);
  font-size: 0.93rem;
  color: var(--ink-soft);
  line-height: 1.85;
}

/* ── About ── */
.about {
  background: var(--cream);
  padding: 120px 0;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
}

.about-image-wrap {
  position: relative;
  overflow: hidden;
}

.about-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease-out);
}

.about-image-wrap:hover .about-img { transform: scale(1.03); }

.about-image-accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 160px;
  height: 160px;
  border: 1px solid var(--gold);
  z-index: -1;
}

.about-content {
  padding: 0 80px;
}

.about-content h3 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 32px;
}

.about-content p {
  font-size: 0.93rem;
  color: var(--taupe);
  line-height: 2.0;
  margin-bottom: 20px;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-num span {
  font-size: 1.2rem;
  color: var(--gold);
}

.stat-label {
  font-size: 0.78rem;
  color: var(--taupe);
  letter-spacing: 0.08em;
}

/* ── Menu ── */
.menu-section {
  background: var(--warm-white);
}

.menu-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 72px;
}

.menu-header-right {
  font-size: 0.82rem;
  color: var(--taupe);
  text-align: right;
  line-height: 1.8;
}

/* Featured menu */
.menu-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--ink);
  margin-bottom: 2px;
  overflow: hidden;
}

.menu-featured-image {
  position: relative;
  overflow: hidden;
}

.menu-featured-image img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  opacity: 0.6;
  transition: opacity 0.6s, transform 0.8s var(--ease-out);
}

.menu-featured:hover .menu-featured-image img {
  opacity: 0.75;
  transform: scale(1.04);
}

.menu-featured-content {
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.menu-badge-premium {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 28px;
}

.menu-featured-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 400;
  color: var(--warm-white);
  line-height: 1.4;
  margin-bottom: 20px;
}

.menu-featured-desc {
  font-size: 0.86rem;
  color: rgba(250, 247, 242, 0.6);
  line-height: 2;
  margin-bottom: 40px;
}

.menu-featured-price {
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.menu-price-main {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--gold-light);
  letter-spacing: -0.02em;
}

.menu-price-sub {
  font-size: 0.82rem;
  color: rgba(250, 247, 242, 0.4);
}

.menu-time-badge {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gold);
  border-top: 1px solid rgba(196,163,90,0.4);
  padding-top: 16px;
  margin-top: 16px;
}

/* Menu grid */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  background: transparent;
}

.menu-card {
  background: var(--warm-white);
  padding: 40px 36px;
  position: relative;
  transition: background 0.4s, box-shadow 0.4s;
  cursor: default;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.menu-card:hover { background: var(--gold-pale); }

.menu-card-label {
  font-family: var(--font-en);
  font-size: 9px;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 20px;
}

.menu-card h3 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.6;
  margin-bottom: 16px;
}

.menu-card-desc {
  font-size: 0.86rem;
  color: var(--taupe);
  line-height: 2.0;
  margin-bottom: 28px;
}

.menu-card-footer {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 20px;
  margin-top: auto;
}

.menu-card-price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.menu-card-price small {
  font-size: 0.78rem;
  color: var(--taupe);
  font-family: var(--font-sans);
  font-weight: 400;
  margin-left: 4px;
}

.menu-card-time {
  font-family: var(--font-en);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--taupe);
}

.menu-footnote {
  margin-top: 32px;
  font-size: 0.8rem;
  color: var(--taupe);
  line-height: 1.9;
  padding-left: 16px;
  border-left: 2px solid var(--border);
}

.menu-cta {
  text-align: center;
  margin-top: 64px;
}

/* ── Features ── */
.features {
  background: var(--cream);
}

.features-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 120px;
  align-items: start;
}

.features-left {
  position: sticky;
  top: 120px;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.feature-item {
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 32px;
  align-items: start;
}

.feature-item:first-child { border-top: 1px solid var(--border); }

.feature-num {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold);
  padding-top: 4px;
}

.feature-content h3 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.5;
}

.feature-content p {
  font-size: 0.9rem;
  color: var(--taupe);
  line-height: 2.0;
}

/* ── Profile ── */
.profile {
  background: var(--warm-white);
}

.profile-inner {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 96px;
  align-items: start;
}

.profile-image-wrap {
  position: relative;
}

.profile-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
}

.profile-image-caption {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--gold);
  color: white;
  font-family: var(--font-en);
  font-size: 9px;
  letter-spacing: 0.3em;
  padding: 10px 16px;
}

.profile-content { padding-top: 16px; }

.profile-name-block {
  margin-bottom: 40px;
}

.profile-name {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 8px;
}

.profile-title {
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.08em;
}

.profile-content p {
  font-size: 0.93rem;
  color: var(--taupe);
  line-height: 2.1;
  margin-bottom: 20px;
}

.profile-sns {
  margin-top: 40px;
}

.sns-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  border-bottom: 1px solid var(--border);
  padding-bottom: 8px;
  transition: color 0.3s, border-color 0.3s;
}

.sns-link:hover { color: var(--gold); border-color: var(--gold); }

/* ── Blog ── */
.blog-section {
  background: var(--cream);
}

.blog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 64px;
}

.blog-all-link {
  font-family: var(--font-en);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: opacity 0.3s;
}

.blog-all-link:hover { opacity: 0.7; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  background: transparent;
}

.blog-card {
  background: var(--warm-white);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: background 0.3s, box-shadow 0.3s;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.blog-card:hover { background: var(--gold-pale); }

.blog-card a {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-img-wrap {
  overflow: hidden;
  aspect-ratio: 4/3;
}

.blog-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.blog-card:hover .blog-img { transform: scale(1.06); }

.blog-card-body {
  padding: 28px 32px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-tag {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 9px;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 14px;
}

.blog-card-body h3,
.blog-card-body h2 {
  font-family: var(--font-serif);
  font-size: 0.93rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--ink);
  flex: 1;
  margin-bottom: 20px;
}

.blog-date {
  font-family: var(--font-en);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--taupe);
  margin-top: auto;
}

/* ── Access ── */
.access {
  background: var(--warm-white);
}

.access-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.access-content { padding-top: 16px; }

.access-dl {
  margin-bottom: 48px;
}

.access-dl dt {
  font-family: var(--font-en);
  font-size: 9px;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-top: 28px;
  margin-bottom: 6px;
}

.access-dl dt:first-child { margin-top: 0; }

.access-dl dd {
  font-size: 0.93rem;
  color: var(--ink-soft);
  line-height: 2.0;
}

.access-map-wrap {
  position: relative;
}

.access-map-wrap::before {
  content: 'MAP';
  position: absolute;
  top: -14px;
  left: 0;
  font-family: var(--font-en);
  font-size: 9px;
  letter-spacing: 0.3em;
  color: var(--gold);
  z-index: 2;
}

.access-map-wrap iframe {
  width: 100%;
  height: 440px;
  border: none;
  display: block;
  filter: grayscale(20%);
}

/* ── CTA ── */
.cta {
  background: var(--ink);
  text-align: center;
  padding: 140px 0;
}

.cta .label { color: var(--gold); }

.cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--warm-white);
  margin-bottom: 20px;
  line-height: 1.4;
}

.cta-body {
  font-size: 0.93rem;
  color: rgba(250, 247, 242, 0.6);
  margin-bottom: 56px;
  line-height: 2.0;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  min-height: 58px;
  gap: 10px;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-en);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  padding: 18px 44px;
  border-radius: 10px;
  transition: background 0.3s, transform 0.3s var(--ease-out);
}

.btn-cta-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(250, 247, 242, 0.7);
  font-family: var(--font-en);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  padding: 18px 44px;
  border: 1px solid rgba(250, 247, 242, 0.2);
  border-radius: 10px;
  min-height: 58px;
  transition: border-color 0.3s, color 0.3s;
}

.btn-cta-secondary:hover {
  border-color: rgba(250, 247, 242, 0.5);
  color: var(--warm-white);
}

.btn-line-icon {
  background: #06C755;
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 3px;
  letter-spacing: 0;
  font-family: var(--font-en);
}

.cta-footnote {
  margin-top: 40px;
  font-family: var(--font-en);
  font-size: 9px;
  letter-spacing: 0.3em;
  color: rgba(250, 247, 242, 0.25);
}

/* ── Footer ── */
.footer {
  background: #111009;
  padding: 72px 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 80px;
  align-items: start;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 32px;
}

.footer-brand .logo-en {
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}

.footer-brand .logo-ja {
  font-size: 9px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.15em;
  display: block;
  margin-bottom: 20px;
}

.footer-address {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.9;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-nav a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
  transition: color 0.3s;
}

.footer-nav a:hover { color: var(--gold); }

.footer-sns {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-sns a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
  transition: color 0.3s;
}

.footer-sns a:hover { color: var(--gold); }

.footer-copy {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.18);
  letter-spacing: 0.08em;
  text-align: center;
}

/* ── Float Buttons (mobile) ── */
.float-btns {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 150;
  flex-direction: row;
}

.float-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: opacity 0.3s;
}

.float-btn:hover { opacity: 0.9; }

.float-btn-air {
  background: var(--ink);
  color: var(--warm-white);
}

.float-btn-line {
  background: var(--gold);
  color: var(--ink);
}

/* ── Buttons (shared) ── */
.btn-reserve,
.btn-reserve-header,
.btn-reserve-hero,
.btn-reserve-large,
.btn-air,
.btn-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-en);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  padding: 14px 32px;
  border-radius: 50px;
  transition: background 0.3s, transform 0.3s var(--ease-out);
  white-space: nowrap;
}

.btn-reserve,
.btn-reserve-header {
  background: var(--gold);
  color: var(--ink);
}

.btn-reserve:hover,
.btn-reserve-header:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn-air { background: #2a5c40; color: white; }
.btn-air:hover { background: #1f4530; transform: translateY(-2px); }
.btn-line { background: var(--ink); color: var(--warm-white); }
.btn-line:hover { background: var(--ink-soft); transform: translateY(-2px); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 140px 32px 64px; }
  .hero-right { height: 60vw; position: relative; }
  .hero-image { position: absolute; inset: 0; }
  .hero-image-overlay { background: linear-gradient(to bottom, var(--warm-white) 0%, transparent 40%); }
  .hero-scroll-indicator { left: 32px; }
  .about-inner { grid-template-columns: 1fr; }
  .about-content { padding: 48px 0 0; }
  .about-image-accent { display: none; }
  .menu-featured { grid-template-columns: 1fr; }
  .menu-featured-image { height: 300px; }
  .menu-grid { grid-template-columns: 1fr 1fr; }
  .features-inner { grid-template-columns: 1fr; gap: 64px; }
  .features-left { position: static; }
  .profile-inner { grid-template-columns: 1fr; gap: 64px; }
  .profile-image-wrap { max-width: 360px; }
  .access-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 48px; }
  .concerns-header { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  section { padding: 80px 0; }
  .container { padding: 0 20px; }
  .nav-pc, .header-reserve { display: none; }
  .hamburger { display: flex; }
  .hero-left { padding: 120px 20px 48px; }
  .hero-title { font-size: 2.4rem; }
  .hero-actions { align-items: stretch; }
  .btn-primary { justify-content: center; }
  .concerns-list { grid-template-columns: 1fr; }
  .concern-item:nth-child(odd) { border-right: none; padding-right: 0; }
  .concern-item:nth-child(even) { padding-left: 0; }
  .menu-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; background: none; gap: 16px; }
  .blog-card { border: 1px solid var(--border); }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .float-btns { display: flex; }
  .cta-actions { flex-direction: column; align-items: center; }
  .menu-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .blog-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .profile-image-wrap { max-width: 100%; }
  .about-stats { gap: 24px; flex-wrap: wrap; }
  .ticker-item { padding: 0 32px; }
  .philosophy { padding: 100px 0; }
  .cta { padding: 100px 0; }
  .header-inner { padding: 0 20px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .menu-featured-content { padding: 40px 28px; }
  .menu-card { padding: 28px 20px; }
  .blog-card-body { padding: 20px 24px 24px; }
  .footer-inner { grid-template-columns: 1fr; }
}

/* ── Blog Article Pages ── */
.breadcrumb {
  padding: 20px 0;
  font-size: 0.78rem;
  color: var(--taupe);
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { margin: 0 8px; opacity: 0.4; }

.article-header {
  padding: 56px 0 40px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 56px;
}

.article-tag {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 9px;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 20px;
}

.article-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 16px;
}

.article-meta {
  font-size: 0.8rem;
  color: var(--taupe);
  letter-spacing: 0.05em;
}

.article-body {
  max-width: 720px;
  margin: 0 auto 80px;
  font-size: 0.95rem;
  line-height: 2.1;
}

.article-body h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--ink);
  margin: 56px 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.article-body p { margin-bottom: 20px; color: var(--ink-soft); }
.article-body strong { font-weight: 700; color: var(--ink); }

.article-cta {
  background: var(--cream);
  padding: 48px 40px;
  text-align: center;
  margin: 72px 0;
}

.article-cta h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 10px;
}

.article-cta p {
  font-size: 0.86rem;
  color: var(--taupe);
  margin-bottom: 28px;
  line-height: 2;
}

.article-cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.related-section {
  border-top: 1px solid var(--border);
  padding-top: 56px;
  margin-top: 56px;
}

.related-section h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 32px;
}

@media (max-width: 768px) {
  .article-cta { padding: 32px 20px; }
  .article-cta-btns { flex-direction: column; align-items: center; }
}
