:root {
  --bg: #f8f7f4;
  --ink: #171717;
  --muted: #667085;
  --accent: #7a5c3d;
  --accent-soft: #e9ded0;
  --line: rgba(20, 20, 20, 0.14);
  --dark: #121212;
  --display: "Noto Serif JP", "Yu Mincho", serif;
  --sans: "Noto Sans JP", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: var(--sans); color: var(--ink); background: var(--bg); letter-spacing: 0; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 78px;
  padding: 0 clamp(18px, 4vw, 54px);
  color: #fff;
  background: linear-gradient(to bottom, rgba(0,0,0,.42), transparent);
}

.brand {
  font-family: var(--display);
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1;
}

.topbar nav { display: flex; gap: 28px; justify-content: center; align-items: center; }
.topbar nav a { font-size: 14px; font-weight: 800; text-shadow: 0 2px 12px rgba(0,0,0,.35); }
.topbar .cta { justify-self: end; display: inline-flex; align-items: center; min-height: 44px; padding: 0 18px; border-radius: 999px; background: #fff; color: var(--ink); text-shadow: none; }

.hero-v2 {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero-v2::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(90deg, rgba(0,0,0,.72), rgba(0,0,0,.18) 62%, rgba(0,0,0,.06));
}

.hero-v2 img {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-content {
  max-width: 980px;
  padding: 150px clamp(22px, 7vw, 96px) clamp(64px, 9vw, 110px);
  color: #fff;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent-soft);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

h1, h2, h3 { margin: 0; font-family: var(--display); line-height: 1.12; }
h1 { max-width: 880px; margin-bottom: 24px; font-size: clamp(48px, 8vw, 104px); font-weight: 700; }
h2 { margin-bottom: 22px; font-size: clamp(34px, 5vw, 72px); }
h3 { margin-bottom: 10px; font-size: 28px; }
p { margin: 0; color: var(--muted); font-size: 16px; line-height: 2; }
.hero-content p:not(.eyebrow) { max-width: 640px; color: rgba(255,255,255,.82); font-size: 17px; }

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}
.button.secondary { background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.34); backdrop-filter: blur(12px); }

.floating-card {
  position: absolute;
  right: clamp(18px, 6vw, 80px);
  bottom: clamp(18px, 5vw, 70px);
  width: min(360px, calc(100vw - 36px));
  padding: 26px;
  color: var(--ink);
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(255,255,255,.62);
  border-radius: 22px;
  box-shadow: 0 24px 80px rgba(0,0,0,.22);
  backdrop-filter: blur(18px);
}
.floating-card b { display: block; margin-bottom: 8px; font-family: var(--display); font-size: 28px; }
.floating-card span { color: var(--muted); line-height: 1.8; font-size: 14px; }

.marquee {
  display: flex;
  gap: 30px;
  overflow: hidden;
  padding: 18px 0;
  color: #fff;
  background: var(--dark);
  white-space: nowrap;
}
.marquee span { font-family: var(--display); font-size: clamp(26px, 4vw, 56px); opacity: .88; }

.section { padding: clamp(78px, 11vw, 148px) clamp(22px, 6vw, 90px); }
.section.alt { background: #fff; }
.intro-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(36px, 7vw, 100px); align-items: start; max-width: 1180px; margin: 0 auto; }
.lead { font-family: var(--display); color: var(--ink); font-size: clamp(28px, 4vw, 52px); line-height: 1.35; }

.feature-list { display: grid; gap: 18px; }
.feature-row { display: grid; grid-template-columns: 86px 1fr; gap: 22px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.feature-row b { color: var(--accent); font-family: var(--display); font-size: 34px; line-height: 1; }

.cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; max-width: 1180px; margin: 44px auto 0; }
.card { min-height: 300px; padding: 28px; border-radius: 24px; background: #fff; border: 1px solid var(--line); box-shadow: 0 18px 54px rgba(20,20,20,.06); }
.card small { display: block; margin-bottom: 16px; color: var(--accent); font-size: 12px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.card .price { margin-top: 24px; color: var(--accent); font-family: var(--display); font-size: 32px; }

.image-band {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  min-height: 680px;
}
.image-band .text-panel { display: flex; flex-direction: column; justify-content: center; padding: clamp(50px, 7vw, 96px); color: #fff; background: var(--dark); }
.image-band .text-panel p { color: rgba(255,255,255,.72); }
.image-band .text-panel .eyebrow { color: var(--accent-soft); }

.split-info { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); }
.info-panel { padding: clamp(44px, 7vw, 84px); background: #fff; }
.info-panel dl { display: grid; grid-template-columns: 100px 1fr; gap: 18px 24px; margin: 30px 0 0; }
dt { color: var(--accent); font-weight: 900; }
dd { margin: 0; color: var(--muted); line-height: 1.8; }

.final {
  padding: clamp(80px, 12vw, 150px) 22px;
  text-align: center;
  background: var(--accent-soft);
}
.final p { max-width: 640px; margin: 0 auto 32px; }
.final .button { color: #fff; background: var(--dark); }

.hair2 { --bg:#f2ede7; --accent:#8b5742; --accent-soft:#e8d4c5; --dark:#171313; }
.izakaya2 { --bg:#120c08; --ink:#1b120b; --muted:#725e4d; --accent:#cf7431; --accent-soft:#f1c073; --dark:#120c08; }
.seitai2 { --bg:#f3f6f3; --accent:#447765; --accent-soft:#d8e7df; --dark:#1d2a2e; }
.cafe2 { --bg:#fbf5ea; --accent:#a87442; --accent-soft:#ead2ae; --dark:#241a12; --display:"Playfair Display","Noto Serif JP",serif; }
.yoga2 { --bg:#eef5f8; --accent:#557fae; --accent-soft:#d9e8f3; --dark:#182435; --display:"Cormorant Garamond","Noto Serif JP",serif; }
.lp2 { --bg:#fff7f6; --accent:#e65f67; --accent-soft:#ffd8d8; --dark:#10131d; --display:"Noto Sans JP",system-ui,sans-serif; }

.kikka-yokocho {
  --bg: #0e0b0a;
  --ink: #fff8eb;
  --muted: #b6a28d;
  --accent: #ff5a2d;
  --accent-soft: #ffd36a;
  --line: rgba(255, 248, 235, 0.16);
  --dark: #0b0807;
  background:
    linear-gradient(135deg, rgba(255, 90, 45, 0.08) 0 1px, transparent 1px 22px),
    #0e0b0a;
  color: var(--ink);
}

.kikka-yokocho .topbar {
  color: var(--ink);
  background: linear-gradient(to bottom, rgba(14, 11, 10, 0.88), rgba(14, 11, 10, 0.18), transparent);
}

.kikka-yokocho .brand {
  font-family: var(--sans);
  font-weight: 900;
  letter-spacing: 0.18em;
}

.kikka-yokocho .topbar nav a {
  color: rgba(255, 248, 235, 0.84);
  text-shadow: none;
}

.kikka-yokocho .topbar .cta,
.kikka-yokocho .button {
  color: #140b07;
  background: var(--accent-soft);
  box-shadow: 0 14px 32px rgba(255, 90, 45, 0.22);
}

.kikka-yokocho .button.secondary {
  color: var(--ink);
  background: rgba(255, 248, 235, 0.12);
  border-color: rgba(255, 248, 235, 0.28);
}

.kikka-hero::before {
  position: absolute;
  inset: auto clamp(18px, 5vw, 64px) 24px auto;
  z-index: 1;
  width: min(34vw, 360px);
  height: 4px;
  background: repeating-linear-gradient(90deg, var(--accent) 0 28px, transparent 28px 42px);
  content: "";
}

.kikka-hero::after {
  background: linear-gradient(90deg, rgba(8, 5, 4, 0.9), rgba(8, 5, 4, 0.36) 48%, rgba(8, 5, 4, 0.04) 72%);
}

.kikka-hero > img {
  object-position: center center;
}

.kikka-hero h1 {
  font-family: var(--sans);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
}

.kikka-hero .hero-content {
  max-width: 920px;
}

.kikka-hero .hero-content p:not(.eyebrow) {
  color: rgba(255, 248, 235, 0.82);
}

.kikka-yokocho .floating-card {
  color: var(--ink);
  background: rgba(16, 11, 8, 0.82);
  border: 1px solid rgba(255, 211, 106, 0.28);
  border-radius: 4px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.44);
}

.kikka-yokocho .floating-card b {
  color: var(--accent-soft);
  font-family: var(--sans);
  font-weight: 900;
}

.kikka-yokocho .floating-card span {
  color: rgba(255, 248, 235, 0.74);
}

.kikka-intro {
  background:
    radial-gradient(circle at 8% 12%, rgba(255, 211, 106, 0.12), transparent 24%),
    #0e0b0a;
}

.kikka-intro .lead {
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 900;
}

.kikka-intro .feature-row {
  border-bottom-color: rgba(255, 248, 235, 0.15);
}

.kikka-intro .feature-row b {
  color: var(--accent);
  font-family: var(--sans);
  font-weight: 900;
}

.kikka-intro .feature-row p {
  color: rgba(255, 248, 235, 0.72);
}

.kikka-menu {
  color: #1a100c;
  background:
    linear-gradient(90deg, rgba(255, 90, 45, 0.08) 1px, transparent 1px),
    #fff4df;
  background-size: 18px 18px;
}

.kikka-menu .eyebrow,
.kikka-course .eyebrow {
  color: var(--accent);
}

.kikka-menu h2,
.kikka-course h2 {
  max-width: 980px;
  font-family: var(--sans);
  font-weight: 900;
  line-height: 1.05;
}

.kikka-menu .cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.kikka-menu .card {
  min-height: 278px;
  color: #21130c;
  background: #fffaf0;
  border: 2px solid rgba(255, 90, 45, 0.18);
  border-radius: 0;
  box-shadow: 10px 10px 0 rgba(255, 90, 45, 0.14);
}

.kikka-menu .card h3 {
  font-family: var(--sans);
  font-weight: 900;
}

.kikka-menu .card p {
  color: #6a4e3a;
}

.kikka-special {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 680px;
  background: #16100d;
}

.special-photo {
  min-height: 520px;
}

.special-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(52px, 8vw, 104px);
}

.special-copy h2 {
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 900;
}

.special-copy p {
  max-width: 680px;
  color: rgba(255, 248, 235, 0.72);
}

.special-copy ul {
  display: grid;
  gap: 12px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.special-copy li {
  padding: 18px 20px;
  color: rgba(255, 248, 235, 0.78);
  background: rgba(255, 248, 235, 0.08);
  border-left: 4px solid var(--accent);
}

.special-copy li span {
  display: inline-block;
  min-width: 70px;
  color: var(--accent-soft);
  font-weight: 900;
}

.kikka-course {
  background:
    radial-gradient(circle at 78% 16%, rgba(255, 90, 45, 0.24), transparent 24%),
    #0e0b0a;
}

.course-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 44px;
  background: rgba(255, 248, 235, 0.16);
}

.course-row article {
  min-height: 340px;
  padding: 34px;
  background: #16100d;
}

.course-row em {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--accent-soft);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.course-row h3 {
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 900;
}

.course-row p {
  color: rgba(255, 248, 235, 0.68);
}

.course-row b {
  display: block;
  margin-top: 24px;
  color: var(--accent);
  font-size: 34px;
  font-weight: 900;
}

.kikka-seats {
  min-height: 720px;
}

.kikka-seats .text-panel {
  background:
    linear-gradient(135deg, rgba(255, 90, 45, 0.12), transparent),
    #fff4df;
}

.kikka-seats .text-panel h2 {
  color: #1a100c;
  font-family: var(--sans);
  font-weight: 900;
}

.kikka-seats .text-panel p {
  color: #6a4e3a;
}

.kikka-seats .text-panel .eyebrow {
  color: var(--accent);
}

.seat-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.seat-tags span {
  padding: 10px 14px;
  color: #1a100c;
  background: rgba(255, 90, 45, 0.13);
  border: 1px solid rgba(255, 90, 45, 0.2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.kikka-info {
  background: #0e0b0a;
}

.kikka-info .info-panel {
  color: #1a100c;
  background: #fffaf0;
}

.kikka-info .info-panel h2 {
  font-family: var(--sans);
  font-weight: 900;
}

.kikka-info .info-panel dd {
  color: #6a4e3a;
}

.kikka-info .info-photo {
  min-height: 520px;
  padding: 0;
}

.kikka-final {
  color: var(--ink);
  background:
    linear-gradient(rgba(14, 11, 10, 0.82), rgba(14, 11, 10, 0.9)),
    url("../../assets/izakaya/course.png") center/cover;
}

.kikka-final h2 {
  font-family: var(--sans);
  font-weight: 900;
}

.kikka-final p {
  color: rgba(255, 248, 235, 0.76);
}

.kikka-final .hero-actions {
  justify-content: center;
}

@media (max-width: 920px) {
  .topbar { position: absolute; grid-template-columns: 1fr; align-items: start; gap: 14px; padding-top: 20px; }
  .topbar nav { justify-content: flex-start; flex-wrap: wrap; gap: 14px 18px; }
  .topbar .cta { justify-self: start; }
  .floating-card { position: relative; right: auto; bottom: auto; margin: 0 22px 34px; }
  .intro-grid, .image-band, .split-info, .kikka-special { grid-template-columns: 1fr; }
  .cards, .kikka-menu .cards, .course-row { grid-template-columns: 1fr; }
  .image-band { min-height: auto; }
  .image-band > img { min-height: 420px; }
}

@media (max-width: 560px) {
  h1 { font-size: 42px; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .info-panel dl, .feature-row { grid-template-columns: 1fr; }
  .special-copy li span { display: block; margin-bottom: 6px; }
}

@media (max-width: 760px) {
  .kikka-hero {
    min-height: 760px;
    align-items: end;
  }

  .kikka-hero > img {
    height: 58%;
    object-position: 66% center;
  }

  .kikka-hero::after {
    background:
      linear-gradient(180deg, rgba(8, 5, 4, 0.08) 0%, rgba(8, 5, 4, 0.18) 42%, rgba(8, 5, 4, 0.94) 58%, rgba(8, 5, 4, 0.98) 100%),
      linear-gradient(90deg, rgba(8, 5, 4, 0.18), rgba(8, 5, 4, 0.02));
  }

  .kikka-hero::before {
    content: none;
  }

  .kikka-hero .hero-content {
    padding: 430px 22px 28px;
  }

  .kikka-hero h1 {
    max-width: 360px;
    margin-bottom: 18px;
    font-size: clamp(38px, 12vw, 52px);
    line-height: 1.04;
  }

  .kikka-hero .hero-content p:not(.eyebrow) {
    max-width: 340px;
    font-size: 14px;
    line-height: 1.85;
  }

  .kikka-yokocho .floating-card {
    margin: 0 22px 28px;
    padding: 18px;
  }
}

@media (max-width: 420px) {
  .kikka-hero {
    min-height: 720px;
  }

  .kikka-hero > img {
    height: 54%;
    object-position: 68% center;
  }

  .kikka-hero .hero-content {
    padding-top: 390px;
  }
}
