/* ================================================================
   THE LIVELY 7DAYS — style.css
   ブランド共通スタイル
   ================================================================ */

/* ----------------------------------------------------------------
   Design Tokens
   ---------------------------------------------------------------- */
:root {
  --navy:        #303055;
  --navy-dk:     #252442;
  --navy-dkr:    #1a1a35;
  --gold:        #AD761E;
  --bronze:      #AA7D5F;
  --white:       #f5f3ef;
  --white-70:    rgba(245, 243, 239, 0.70);
  --white-30:    rgba(245, 243, 239, 0.30);
  --white-15:    rgba(245, 243, 239, 0.15);
  --gold-40:     rgba(173, 118, 30, 0.40);
  --gold-20:     rgba(173, 118, 30, 0.20);
  --gold-08:     rgba(173, 118, 30, 0.08);

  --font-en:     'Montserrat', sans-serif;
  --font-jp:     'Noto Serif JP', serif;
  --font-display-jp: 'Shippori Mincho', 'Noto Serif JP', serif; /* B6: display headings */

  /* Subtle diagonal stripe — brand motif */
  --stripe: repeating-linear-gradient(
    -45deg,
    transparent 0px, transparent 18px,
    rgba(255,255,255,0.016) 18px, rgba(255,255,255,0.016) 19px
  );

  --sp: clamp(4rem, 8vw, 8rem);   /* section padding */
  --px: clamp(1.5rem, 5vw, 4rem); /* horizontal page padding */
  --mw: 1200px;                    /* max-width */
}

/* ----------------------------------------------------------------
   Reset & Base
   ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-en);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ----------------------------------------------------------------
   Layout helpers
   ---------------------------------------------------------------- */
.inner {
  max-width: var(--mw);
  margin: 0 auto;
  padding: 0 var(--px);
}

/* ----------------------------------------------------------------
   Scroll reveals — 控えめなフェードアップ + 行マスクリベール
   ---------------------------------------------------------------- */
.fade-in {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .8s cubic-bezier(.25, .46, .45, .94),
              transform .8s cubic-bezier(.25, .46, .45, .94);
}
.fade-in.visible { opacity: 1; transform: none; }

/* 行マスクリベール: 見出し文字が行ボックス内で下から立ち上がる */
.lm { display: block; overflow: hidden; }
.lm-i {
  display: block;
  transform: translateY(108%);
  transition: transform 1s cubic-bezier(.16, 1, .3, 1);
}
.reveal-lines .lm:nth-of-type(1) .lm-i { transition-delay: .05s; }
.reveal-lines .lm:nth-of-type(2) .lm-i { transition-delay: .17s; }
.reveal-lines .lm:nth-of-type(3) .lm-i { transition-delay: .29s; }
.reveal-lines.visible .lm-i { transform: none; }

/* ----------------------------------------------------------------
   Placeholder images (branded, replaced when real photos arrive)
   ---------------------------------------------------------------- */
.ph {
  width: 100%;
  background-color: var(--navy-dk);
  background-image:
    repeating-linear-gradient(
      -45deg,
      transparent 0px, transparent 10px,
      var(--gold-20) 10px, var(--gold-20) 11px
    );
  border: 1px solid var(--gold-20);
  display: flex;
  align-items: flex-end;
  position: relative;
  min-height: 320px;
}
.ph::after {
  content: attr(data-label);
  position: absolute;
  bottom: .875rem;
  left: .875rem;
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .22em;
  color: var(--gold);
  text-transform: uppercase;
}
.ph--sq   { aspect-ratio: 1/1; min-height: 0; }
.ph--hotel { aspect-ratio: 4/3; min-height: 0; }
.ph--portrait-c {
  aspect-ratio: 3/4;
  min-height: 0;
  max-width: 300px;
  margin: 2rem auto;
}

/* ----------------------------------------------------------------
   Section labels (shared)
   ---------------------------------------------------------------- */
.sec-label {
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
  margin-bottom: .625rem;
}
.label-en {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .35em;
  color: var(--gold);
}
.label-jp {
  font-family: var(--font-jp);
  font-size: .8rem;
  font-weight: 300;
  letter-spacing: .08em;
  color: var(--white-70);
}
.sec-rule {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

/* ================================================================
   HEADER
   ================================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 1.125rem var(--px);
  display: flex;
  justify-content: center;
  transition: background .3s, border-color .3s;
  border-bottom: 1px solid transparent;
  /* Task#11: always show the same translucent backdrop as .scrolled so the
     "THE LIVELY" logo stays legible over the hero image from the very top
     of the page, not just after scrolling. */
  background: rgba(37, 36, 66, .92);
  backdrop-filter: blur(10px);
  border-color: var(--gold-20);
}
.site-header.scrolled {
  background: rgba(37, 36, 66, .92);
  backdrop-filter: blur(10px);
  border-color: var(--gold-20);
}
.header-inner {
  max-width: var(--mw);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-logo {
  /* Task#9: text logo replaced with the brand logo image. */
  display: block;
  height: 16px;
  width: auto;
}
.header-nav {
  display: flex;
  gap: 2rem;
  opacity: 0;
  transition: opacity .7s ease;
  transition-delay: .9s;
}
body.page-loaded .header-nav { opacity: 1; }
.header-nav a {
  font-size: .72rem;
  font-weight: 300;
  letter-spacing: .14em;
  color: var(--white-70);
  padding-bottom: 3px;
  background-image: linear-gradient(var(--gold), var(--gold));
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 0% 1px;
  transition: color .2s, background-size .3s ease;
}
.header-nav a:hover { color: var(--gold); background-size: 100% 1px; }

/* Mobile nav */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle-line {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--white);
  transition: transform .35s ease, opacity .35s ease;
}
body.nav-open .nav-toggle-line:nth-child(1) { transform: translateY(4px) rotate(45deg); }
body.nav-open .nav-toggle-line:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }
.nav-toggle:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
/* ヘッダー(z:100)がオーバーレイ(z:105)に埋もれるとトグルで閉じられなくなるため
   開いている間はヘッダーごと最前面へ */
body.nav-open .site-header { z-index: 120; }
body.nav-open { overflow: hidden; }

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 105;
  background: rgba(26, 26, 53, .97);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 var(--px);
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility 0s .35s;
}
body.nav-open .mobile-nav {
  opacity: 1;
  visibility: visible;
  transition: opacity .35s ease, visibility 0s;
}
.mobile-nav a {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--white);
  border-bottom: 1px solid var(--gold-20);
  padding-bottom: 1rem;
}
.mobile-nav a::before {
  content: "\2014\00a0"; /* em dash + nbsp（エンコーディング事故防止のためエスケープ表記） */
  color: var(--gold);
  font-weight: 300;
}

/* ================================================================
   HERO
   ================================================================ */
.section-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--navy) var(--stripe);
  overflow: hidden;
  padding-top: 80px;
  isolation: isolate; /* blend をヒーロー内に閉じる */
}

/* Task#2: hero background — static key visual image, shown at its
   original colors (no filter / tone tint), per explicit request. */
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
/* Task#2: .hero-tone / .hero-video-overlay / .hero-grain (color tint,
   dark gradient overlay, film grain — previously used to unify the video
   with the brand palette and boost overlaid-text legibility) removed.
   The image is shown as-is; with all overlaid text also removed there is
   no legibility need for a tint.
   .hero-inner and everything it contained (.hero-eyebrow / .hero-title... /
   .hero-sub / .hero-dates / .hero-date-item / .hero-date-sep / .hero-city /
   .hero-range and their entrance-animation rules) were removed the same
   way — the key visual already carries the "THE LIVELY 7DAYS" title, and
   the FUKUOKA/OSAKA/TOKYO date list duplicated the Schedule section below. */

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 1.75rem;
  right: var(--px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  z-index: 2;
}
.hero-scroll-label {
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .32em;
  color: var(--white-30);
  writing-mode: vertical-rl;
}
.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: .3; }
}

/* ================================================================
   CONCEPT
   ================================================================ */
.section-concept {
  position: relative;
  overflow: hidden;
  padding: var(--sp) 0;
  background: var(--navy) var(--stripe);
}
.concept-bg { position: absolute; inset: 0; }
.concept-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .4; /* シルクは元々暗いテクスチャなので写真より高め。比較時に調整 */
}
.concept-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--navy) 0%, rgba(48, 48, 85, .25) 45%, var(--navy) 100%);
}
.concept-inner {
  position: relative;
  z-index: 1;
  max-width: var(--mw);
  margin: 0 auto;
  padding: 0 var(--px);
  /* Task#3: DESIGN/MUSIC/ART/TECH keyword column (concept-right) removed.
     Single-column layout for concept-left only. */
  display: block;
}
.concept-headline {
  font-family: var(--font-display-jp); /* B6: Shippori Mincho for display heading */
  /* 上限4.2rem: 4.6remだと「泊まらなくても、」8字がカラム幅(約624px)と同寸になり
     環境差で行中折れが発生するため、余裕を持たせる */
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: .06em;
  margin-bottom: 2rem;
}
.concept-body {
  font-family: var(--font-jp);
  font-size: .875rem;
  font-weight: 300;
  line-height: 2.1;
  color: var(--white-70);
  letter-spacing: .05em;
  /* Task#3: concept-right (keyword column) removed; cap width for readability
     in the now single-column layout.
     Widened from 640px so the first sentence (ended with <br>) reads on a
     single line at typical desktop widths instead of wrapping mid-phrase. */
  max-width: 900px;
}

/* ================================================================
   SCHEDULE
   ================================================================ */
.section-schedule {
  padding: var(--sp) 0;
  background: var(--navy-dk) var(--stripe);
  border-top: 1px solid var(--gold-20);
}
.schedule-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
}
.sch-divider {
  width: 1px;
  align-self: stretch;
  background: var(--gold-20);
}
.sch-city {
  padding: 0 clamp(1.25rem, 2.5vw, 3rem);
}
.sch-city:first-child { padding-left: 0; }
.sch-city:last-child  { padding-right: 0; }
.sch-city:nth-of-type(1) { transition-delay: 0s; }
.sch-city:nth-of-type(3) { transition-delay: .12s; }
.sch-city:nth-of-type(5) { transition-delay: .24s; }
.sch-city-en {
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .38em;
  color: var(--gold);
  margin-bottom: .2rem;
}
.sch-city-jp {
  font-family: var(--font-jp);
  font-size: .78rem;
  font-weight: 300;
  letter-spacing: .08em;
  color: var(--white-70);
  margin-bottom: 1.5rem;
}
.sch-dates {
  display: flex;
  align-items: baseline;
  gap: .4rem;
  margin-bottom: 1rem;
}
.sch-d1 {
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: 1;
  white-space: nowrap;
}
.sch-dash { font-size: 1rem; font-weight: 100; color: var(--gold); white-space: nowrap; }
.sch-d2 {
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 300;
  letter-spacing: -.01em;
  line-height: 1;
  color: var(--white);
  white-space: nowrap;
}
.sch-detail {
  font-family: var(--font-jp);
  font-size: .8rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--white-70);
  letter-spacing: .05em;
  margin-bottom: .4rem;
}
.sch-venue {
  font-family: var(--font-jp);
  font-size: .75rem;
  font-weight: 300;
  color: var(--white-70); /* A3: was --white-30, raised for WCAG AA */
  letter-spacing: .05em;
  margin-bottom: .4rem;
}
.sch-free {
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--gold);
}
.sch-note {
  font-family: var(--font-jp);
  font-size: .72rem;
  font-weight: 300;
  color: var(--white-30);
  letter-spacing: .05em;
  margin-top: 3rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--gold-20);
}

/* ================================================================
   CONTENTS — shared
   ================================================================ */
.section-contents {
  padding-top: var(--sp);
  background: var(--navy) var(--stripe);
  border-top: 1px solid var(--gold-20);
}
.section-contents .inner { margin-bottom: clamp(2rem, 4vw, 3.5rem); }

.ct-item {
  border-top: 1px solid var(--gold-20);
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.ct-item .inner { /* already handled by .inner */ }

.ct-num {
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .38em;
  color: var(--gold);
  margin-bottom: .4rem;
}
.ct-rule {
  width: 2.5rem;
  height: 1px;
  background: var(--gold);
  margin-bottom: 2rem;
}
.ct-en {
  /* Task#1: switch from bold Montserrat (poppy impression) to the existing
     Shippori Mincho display font for a calmer, more restrained tone. */
  font-family: var(--font-display-jp);
  font-size: clamp(1.9rem, 4.2vw, 3.4rem);
  font-weight: 600;
  letter-spacing: .01em;
  line-height: 1.15;
  margin-bottom: .35rem;
}
.ct-jp {
  font-family: var(--font-jp);
  font-size: .85rem;
  font-weight: 300;
  letter-spacing: .1em;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.ct-body {
  font-family: var(--font-jp);
  font-size: .9rem;
  font-weight: 300;
  line-height: 2.1;
  color: var(--white-70);
  letter-spacing: .05em;
  max-width: 42ch;
  margin-bottom: 1.5rem;
}
.ct-body--wide { max-width: 64ch; }

.ct-meta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.ct-tag {
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--gold);
  border: 1px solid var(--gold-40);
  padding: .28rem .75rem;
  transition: border-color .3s ease, background-color .3s ease;
}
.ct-tag:hover {
  border-color: var(--gold);
  background-color: var(--gold-08);
}
.ct-time, .ct-price {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
}

/* Special guest block */
.ct-special-role {
  display: block;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .3em;
  color: var(--gold);
  margin-bottom: .25rem;
}
.ct-special-name {
  display: block;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: .05em;
}
.ct-special-dates {
  list-style: none;
  margin-top: 1.1rem;
  border-top: 1px solid var(--gold-20);
}
.ct-special-dates li {
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
  padding: .55rem 0;
  border-bottom: 1px solid var(--gold-20);
}

/* Task: per-venue daily lineup — announced later, shown as "Coming Soon" badges */
.ct-lineup {
  margin-top: 1.75rem;
}
.ct-lineup-label {
  font-family: var(--font-jp);
  font-size: .68rem;
  font-weight: 300;
  letter-spacing: .08em;
  color: var(--white-30);
  margin-bottom: .75rem;
}
.ct-lineup-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}
.ct-lineup-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  border: 1px solid var(--gold-40);
  padding: .5rem .9rem;
}
.ct-lineup-item .gbd-city {
  font-size: .62rem;
}
.ct-lineup-status {
  font-family: var(--font-en);
  font-size: .68rem;
  font-weight: 600;
  font-style: italic;
  letter-spacing: .05em;
  color: var(--white-50);
}

/* Content layout variants */
.ct-layout {
  display: grid;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
.ct-layout--ir { grid-template-columns: 1fr .85fr; }
.ct-layout--il { grid-template-columns: .85fr 1fr; }
.ct-layout .ct-text.fade-in { transition-delay: .15s; }

.ct-img { min-height: 360px; }
.ct-img .ph { height: 100%; min-height: 360px; }
.ct-img img { width: 100%; height: 100%; min-height: 360px; object-fit: cover; display: block; }
.ct-img--dual { display: flex; flex-direction: column; gap: .75rem; min-height: 360px; }
.ct-img--dual img { flex: 1; width: 100%; min-height: 0; object-fit: cover; display: block; }

/* Special guest highlight image (larger, framed, captioned) */
.ct-img--special {
  position: relative;
  border: 1px solid var(--gold);
  aspect-ratio: 3 / 4;
  overflow: hidden;
}
.ct-img--special img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  /* Task: DJ HASEBE's portrait subject sits left-of-center in the source
     photo; shift the crop focus left/up so the face & torso read balanced
     within the 3:4 frame instead of appearing pushed to the left edge. */
  object-position: 15% 30%;
  transition: transform .6s ease;
}
.ct-img--special:hover img { transform: scale(1.04); }

/* Hover zoom for content imagery */
.ct-img--dual, .ct-inline-img, .hotel-img {
  overflow: hidden;
}
.ct-img--dual img, .ct-inline-img img, .hotel-img img {
  transition: transform .6s ease;
}
.ct-img--dual:hover img,
.ct-inline-img:hover img,
.hotel-img:hover img {
  transform: scale(1.04);
}
.ct-img-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2.5rem 1.5rem 1.5rem;
  background: linear-gradient(to top, rgba(10,10,26,.95), rgba(10,10,26,0));
}
.ct-special-bio {
  margin-top: 1.25rem;
  font-family: var(--font-jp);
  font-size: .8rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--white-70);
  letter-spacing: .03em;
}
.ct-special-bio.fade-in { transition-delay: .35s; }

/* Inline supporting image within text column */
.ct-inline-img { margin: 1.5rem 0; }
.ct-inline-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  border: 1px solid var(--gold-20);
}
.ct-inline-img.fade-in { transition-delay: .25s; }

/* 小さめ写真 + キャプション（余白で品を出す非対称パターン） */
.ct-layout--emode {
  /* Task#4: match the Restaurant Dinner image column ratio so the photo
     reads at a similar size instead of the previous smaller .8fr column. */
  grid-template-columns: .85fr 1fr;
  align-items: start;
}
.ct-img-small {
  max-width: 480px;
  width: 100%;
  margin-top: clamp(1rem, 3vw, 3rem);
}
.ct-img-small img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  border: 1px solid var(--gold-20);
}
.ct-img-cap {
  font-family: var(--font-jp);
  font-size: .68rem;
  font-weight: 300;
  letter-spacing: .08em;
  color: var(--white-30);
  margin-top: .6rem;
}

/* テクスチャ背景付きセクション（GPT Image 2生成のボケ素材を薄く敷く） */
.ct-item--textured { position: relative; overflow: hidden; }
.ct-bg { position: absolute; inset: 0; }
.ct-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .35;
}
.ct-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--navy) 0%, rgba(48, 48, 85, .15) 40%, var(--navy) 100%);
}
.ct-item--textured .inner { position: relative; z-index: 1; }

/* Guest Bartender — ポートレートを片側に寄せた非対称構成 */
.ct-layout--gb {
  grid-template-columns: .95fr 1.05fr;
  align-items: center;
}
.gb-portrait { overflow: hidden; max-width: 260px; }
.gb-portrait img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  border: 1px solid var(--gold-20);
  transition: transform .6s ease;
}
.gb-portrait:hover img { transform: scale(1.03); }
.gb-dates-list {
  list-style: none;
  margin-top: 1.75rem;
  border-top: 1px solid var(--gold-20);
}
.gb-dates-list li {
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
  padding: .8rem 0;
  border-bottom: 1px solid var(--gold-20);
}
.gbd-city {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .3em;
  color: var(--gold);
  min-width: 6.5em;
}
.gbd-date {
  font-family: var(--font-jp);
  font-size: .85rem;
  font-weight: 300;
  letter-spacing: .05em;
  color: var(--white-70);
}

/* Full-width content head */
.ct-full-head { margin-bottom: 2.5rem; }
.cocktail-grid.fade-in { transition-delay: .15s; }

/* Task#5: cocktail section now uses the same side-by-side image/text
   layout as Emode, so add spacing before the city price grid below it. */
#cocktail .ct-layout { margin-bottom: 2.5rem; }

/* Cocktail 3-city grid */
.cocktail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-top: 1px solid var(--gold-20);
}
.ck-city {
  padding: 2rem clamp(1rem, 2vw, 2rem);
  border-right: 1px solid var(--gold-20);
}
.ck-city:first-child { padding-left: 0; }
.ck-city:last-child  { border-right: none; padding-right: 0; }

.ck-city-name {
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .36em;
  color: var(--gold);
  margin-bottom: 1rem;
}
.ck-name {
  font-family: var(--font-jp);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: .05em;
  margin-top: .875rem;
  /* Task#4: bartender name (.ck-bt) removed; widen spacing to price in its place. */
  margin-bottom: .6rem;
}
.ck-price {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--gold);
}

/* Dinner */
.dinner-locs {
  display: flex;
  gap: 2rem;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}
.dl {
  border-left: 1px solid var(--gold);
  padding-left: 1rem;
}
.dl-city {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .3em;
  color: var(--gold);
  margin-bottom: .25rem;
}
.dl-cuisine {
  font-family: var(--font-jp);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .05em;
  /* Task#5: .dl-info (price/course name) removed below; no bottom margin needed
     since .dl-cuisine is now the last line in each .dl block. */
}
.dinner-pct {
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: -.01em;
  color: var(--gold);
}

/* ================================================================
   HOTELS
   ================================================================ */
.section-hotels {
  padding: var(--sp) 0;
  background: var(--navy-dk) var(--stripe);
  border-top: 1px solid var(--gold-20);
}
.hotels-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
}
.hotel { display: flex; flex-direction: column; gap: 1.5rem; }
.hotel-img .ph--hotel { height: 100%; }
.hotel-img img { width: 100%; aspect-ratio: 3/2; object-fit: cover; display: block; }

.hotel-loc {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .36em;
  color: var(--gold);
  margin-bottom: .3rem;
}
.hotel-name {
  /* Task#1: apply the same restrained Shippori Mincho treatment as .ct-en
     instead of bold Montserrat. */
  font-family: var(--font-display-jp);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: .08em;
  line-height: 1.5;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--gold-20);
}
.hotel-addr, .hotel-access {
  font-family: var(--font-jp);
  font-size: .78rem;
  font-weight: 300;
  color: var(--white-70);
  line-height: 1.9;
  letter-spacing: .05em;
  margin-bottom: .3rem;
}
.hotel-links {
  display: flex;
  gap: 1.25rem;
  margin-top: .875rem;
}
.hotel-link {
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--gold);
  border-bottom: 1px solid var(--gold-40);
  padding-bottom: .1rem;
  transition: color .2s, border-color .2s;
}
.hotel-link:hover { color: var(--white); border-color: var(--white); }

/* 不完全な対称性: カードを僅かに縦ズラし */
@media (min-width: 961px) {
  .hotel:nth-child(2) { margin-top: 3rem; }
  .hotel:nth-child(3) { margin-top: 1.25rem; }
}
/* ホバーリベール: ゴールドの線が写真下端を走る */
.hotel-img { position: relative; }
.hotel-img::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--gold);
  transition: width .5s ease;
}
.hotel:hover .hotel-img::after { width: 100%; }

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3rem);
  background: var(--navy-dkr) var(--stripe);
}
.footer-inner {
  max-width: var(--mw);
  margin: 0 auto;
  padding: 0 var(--px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.footer-logo-main {
  /* Task#9: text logo replaced with the brand logo image. */
  display: block;
  height: clamp(28px, 4.5vw, 40px);
  width: auto;
}
.footer-logo-sub {
  font-size: .68rem;
  font-weight: 300;
  letter-spacing: .38em;
  color: var(--gold);
  margin-top: .3rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}
.footer-rule {
  width: 56px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 1.5rem;
}
.footer-ig {
  display: flex;
  flex-direction: column;
  gap: .45rem;
  margin-bottom: 2rem;
}
.footer-ig a {
  font-size: .72rem;
  font-weight: 300;
  letter-spacing: .1em;
  color: var(--white-70);
  padding-bottom: 3px;
  background-image: linear-gradient(var(--gold), var(--gold));
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 0% 1px;
  transition: color .2s, background-size .3s ease;
}
.footer-ig a:hover { color: var(--gold); background-size: 100% 1px; }
.footer-copy {
  font-size: .64rem;
  font-weight: 300;
  letter-spacing: .14em;
  color: var(--white-15);
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 960px) {
  /* Task#3: concept-right keyword column removed; .concept-inner is now
     block-level by default, no responsive override needed here. */

  .schedule-grid { grid-template-columns: 1fr; }
  .sch-divider { width: 100%; height: 1px; }
  .sch-city { padding: 2rem 0; }
  .sch-city:first-child { padding-top: 0; }

  .ct-layout--ir,
  .ct-layout--il { grid-template-columns: 1fr; }
  .ct-layout--il .ct-img { order: -1; }
  .ct-layout--emode { grid-template-columns: 1fr; }
  .ct-img-small { margin-top: 0; max-width: 420px; }
  .ct-layout--gb { grid-template-columns: 1fr; }
  .ct-layout--gb .gb-portrait { max-width: 210px; margin: 0 auto; }
  .ct-img, .ct-img .ph { min-height: 260px; }
  .ct-img img { min-height: 260px; }

  .cocktail-grid { grid-template-columns: 1fr; }
  .ck-city { border-right: none; border-bottom: 1px solid var(--gold-20); padding: 1.5rem 0; }
  .ck-city:last-child { border-bottom: none; }
  .ct-item--bleed .ck-city { border-bottom-color: var(--white-15); }

  .hotels-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .header-nav { display: none; }
  .nav-toggle { display: flex; }

  /* Task#11: shrink the now-always-opaque header bar's vertical padding on
     mobile so it reads as a slim bar rather than a thick block — while the
     "THE LIVELY" logo and hamburger icon (44px tap target) keep their own
     sizes untouched, so nothing gets visually cramped. */
  .site-header { padding-top: .625rem; padding-bottom: .625rem; }

  .dinner-locs { flex-direction: column; }
  .hotels-grid { grid-template-columns: 1fr; }

  .concept-headline { font-size: clamp(1.9rem, 8.5vw, 2.6rem); }

  /* Task#10: the mobile key visual is portrait (4:5) but noticeably wider
     than a phone viewport (~9:19.5), so object-fit:cover still cropped the
     "THE LIVELY 7DAYS" logo at the sides. Switch to contain so the full
     image (and logo) is always visible. object-position:bottom pins the
     image to the bottom edge so the leftover letterbox space collects only
     at the top; that remaining bar is filled with near-black (matching the
     image's own dark edges) so the seam blends in.
     The logo lockup only occupies the middle ~15%-80% of the image width
     (measured), so a modest scale-up (anchored to the bottom edge, via
     .section-hero's existing overflow:hidden) shrinks that top bar further
     without ever pushing the logo past the screen edges. */
  .hero-image {
    object-fit: contain;
    object-position: bottom;
    background: #000;
    transform: scale(1.4);
    transform-origin: bottom center;
  }
}

/* ================================================================
   A2: Focus visibility — keyboard navigation
   ================================================================ */
a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ================================================================
   A1: Reduced motion — stop all animations for users who prefer it
   ================================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  html { scroll-behavior: auto; }
  /* Ensure fade-in elements are visible immediately */
  .fade-in {
    opacity: 1 !important;
    transform: none !important;
  }
  /* Ensure line-mask reveal headings are fully shown immediately */
  .lm-i { transform: none !important; }
  /* Ensure schedule staggered-entrance elements are visible immediately */
  .header-nav {
    opacity: 1 !important;
    transform: none !important;
  }
  /* mobile-nav の visibility 遅延を無効化（閉じた瞬間にフォーカス不可にする） */
  .mobile-nav, .nav-toggle-line { transition-delay: 0s !important; }
}
