/* ============================================================
   RunPals Tokyo — base stylesheet
   Theme: white × #6a9eba (unified) / pop & refined / responsive
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  /* base — unified around the brand color #6a9eba */
  --white: #ffffff;
  --blue-50: #f1f6f9;
  --blue-100: #e3edf2;
  --blue-200: #c9dde6;
  --blue-300: #a6c6d4;
  --blue-400: #88b1c4;
  --blue-500: #6a9eba;   /* primary — brand color */
  --blue-600: #4d7c95;
  --navy: #2c4a5a;       /* text dark */
  --ink: #3b5562;        /* body text */
  --muted: #708795;      /* sub text */

  /* in-family accents (unified to brand color) */
  --pop-coral: #4d7c95;
  --pop-yellow: #88b1c4;

  /* surface / lines */
  --surface: #ffffff;
  --line: #dde9ef;
  --shadow-sm: 0 6px 18px rgba(74, 122, 146, 0.10);
  --shadow-md: 0 14px 36px rgba(74, 122, 146, 0.16);

  /* layout */
  --maxw: 1120px;
  --maxw-narrow: 760px;
  --radius: 18px;
  --radius-lg: 28px;
  --header-h: 70px;

  /* type */
  --font-jp: "Noto Sans JP", system-ui, sans-serif;
  --font-en: "Poppins", "Noto Sans JP", sans-serif;
  --font-serif: "Bodoni Moda", "Noto Serif JP", serif;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  margin: 0;
  font-family: var(--font-jp);
  color: var(--ink);
  background: var(--white);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
ul { list-style: none; margin: 0; padding: 0; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, p { margin: 0; }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 20px;
}
.container--narrow { max-width: var(--maxw-narrow); }

.section { padding: 88px 0; }
.section--events { background: var(--blue-50); }
.section--shop   { background: var(--blue-50); }

.pc-only { display: inline; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4em;
  padding: 14px 28px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .02em;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
  color: var(--white);
  box-shadow: 0 10px 22px rgba(106, 158, 186, 0.40);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(106, 158, 186, 0.52); }
.btn--ghost {
  background: var(--white);
  color: var(--blue-600);
  border-color: var(--blue-200);
}
.btn--ghost:hover { transform: translateY(-2px); border-color: var(--blue-400); box-shadow: var(--shadow-sm); }
.btn--sm { padding: 10px 20px; font-size: 14px; }
.btn--block { width: 100%; }
.btn--soon { cursor: default; opacity: .7; letter-spacing: .06em; }
.btn--soon:hover { transform: none; box-shadow: none; border-color: var(--blue-200); }

/* ---------- Instagram icon (masked SVG, recolorable) ---------- */
.ig-ico {
  display: inline-block;
  width: 1.15em;
  height: 1.15em;
  background-color: currentColor;
  -webkit-mask: var(--ig-svg) center / contain no-repeat;
  mask: var(--ig-svg) center / contain no-repeat;
  vertical-align: -0.2em;
}
:root {
  --ig-svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 2C4.2 2 2 4.2 2 7v10c0 2.8 2.2 5 5 5h10c2.8 0 5-2.2 5-5V7c0-2.8-2.2-5-5-5H7zm0 2h10c1.7 0 3 1.3 3 3v10c0 1.7-1.3 3-3 3H7c-1.7 0-3-1.3-3-3V7c0-1.7 1.3-3 3-3zm5 3a5 5 0 100 10 5 5 0 000-10zm0 2a3 3 0 110 6 3 3 0 010-6zm5.5-3a1.2 1.2 0 100 2.4 1.2 1.2 0 000-2.4z'/%3E%3C/svg%3E");
}
/* Instagram rainbow button — つながるボタンを目立たせる */
.btn--ig {
  color: #ffffff;
  border: 0;
  background: linear-gradient(115deg, #feda75 0%, #fa7e1e 22%, #d62976 50%, #962fbf 74%, #4f5bd5 100%);
  background-size: 220% 220%;
  box-shadow: 0 10px 24px rgba(214, 41, 118, 0.42);
  animation: igShimmer 6s ease infinite;
}
.btn--ig:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(214, 41, 118, 0.56);
}
.btn--ig .ig-ico { color: #ffffff; }
@keyframes igShimmer {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@media (prefers-reduced-motion: reduce) {
  .btn--ig { animation: none; }
}
.ig-ico--blue { color: var(--blue-500); }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: inline-block;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 25px;
  line-height: 1.05;
  color: var(--navy);
  letter-spacing: .005em;
  padding-bottom: 5px;
  border-bottom: 2px solid var(--blue-500);
  transition: opacity .15s ease;
}
.logo:hover { opacity: .82; }
.logo--footer {
  color: var(--white);
  border-bottom-color: rgba(255, 255, 255, 0.65);
}

.nav__list { display: flex; align-items: center; gap: 6px; }
.nav__link {
  display: inline-block;
  padding: 10px 14px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  border-radius: 10px;
  transition: color .15s ease, background .15s ease;
}
.nav__link:hover { color: var(--blue-600); background: var(--blue-50); }
.nav__cta { margin-left: 8px; }

/* hamburger */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  position: relative;
}
.nav-toggle span {
  position: absolute;
  left: 10px;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease, top .25s ease;
}
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 27px; }
.nav-toggle.is-active span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--blue-100) 0%, var(--white) 78%);
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  opacity: .55;
}
.blob--1 { width: 320px; height: 320px; background: var(--blue-300); top: -80px; right: -60px; }
.blob--2 { width: 240px; height: 240px; background: var(--pop-yellow); bottom: -60px; left: -40px; opacity: .35; }
.blob--3 { width: 180px; height: 180px; background: var(--pop-coral); top: 40%; right: 18%; opacity: .22; }

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 48px;
  padding: 84px 20px 96px;
}
.hero__eyebrow {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: .16em;
  font-size: 17px;
  color: var(--blue-600);
  margin-bottom: 18px;
}
.hero__title {
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: clamp(34px, 5.4vw, 58px);
  line-height: 1.25;
  color: var(--navy);
  letter-spacing: .01em;
}
.hero__title-accent {
  background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__title--en {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(40px, 6vw, 66px);
  line-height: 1.12;
  letter-spacing: .005em;
}
.hero__lead {
  margin-top: 24px;
  font-size: 16px;
  color: var(--ink);
  max-width: 34em;
}
.hero__note {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  max-width: 34em;
  font-size: 13.5px;
  line-height: 1.9;
  color: var(--muted);
}
.hero__note-en {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  color: var(--blue-600);
  letter-spacing: .02em;
}
.hero__actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero__stats {
  margin-top: 40px;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.hero__stats li {
  display: flex;
  flex-direction: column;
  font-size: 13px;
  color: var(--muted);
}
.hero__stats strong {
  font-family: var(--font-en);
  font-size: 30px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
}
.hero__stats span { color: var(--blue-500); }

.hero__visual { position: relative; }
.hero__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(120% 90% at 70% 20%, rgba(255,255,255,.35), transparent 60%),
    linear-gradient(150deg, var(--blue-400), var(--blue-600));
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero__slide.is-active { opacity: 1; }
.hero__photo::after {
  /* soft vignette for badge legibility */
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(22, 49, 78, 0) 52%, rgba(22, 49, 78, .34));
}
.hero__photo-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  background: var(--white);
  color: var(--blue-600);
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 15px;
  padding: 8px 16px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

/* ---------- Section heading ---------- */
.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-head__eyebrow {
  font-family: var(--font-en);
  font-weight: 600;
  letter-spacing: .22em;
  font-size: 13px;
  color: var(--blue-500);
  margin-bottom: 12px;
}
.section-head__title {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  color: var(--navy);
}
.section-head__lead { margin-top: 14px; color: var(--muted); font-size: 15px; }
.section-foot { text-align: center; margin-top: 44px; }

/* ---------- Cards (generic) ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.cards--shop { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card__body { padding: 22px; }
.card__title { font-size: 19px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.card__text { font-size: 14px; color: var(--muted); margin-bottom: 16px; }

/* ---------- Events ---------- */

/* reusable pill tag (static) */
.tag {
  display: inline-block;
  background: var(--blue-100);
  color: var(--blue-600);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  white-space: nowrap;
}

/* event overview */
.event-overview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 44px;
}
.event-overview__item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.event-overview__label {
  display: block;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  color: var(--blue-500);
  margin-bottom: 10px;
}
.event-overview__value {
  font-size: 16px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.6;
}
.event-overview__value strong {
  font-family: var(--font-en);
  font-size: 26px;
  font-weight: 700;
  color: var(--blue-600);
  margin: 0 2px;
}
.event-overview__value small {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.6;
}

/* NEXT — featured (large) */
.event-next {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  margin-bottom: 48px;
}
.event-next::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(115deg, rgba(255, 255, 255, .06) 0 2px, transparent 2px 26px);
  pointer-events: none;
}
.event-next > * { position: relative; z-index: 1; }
.event-next__flag {
  position: absolute;
  top: 18px;
  right: 22px;
  z-index: 2;
  font-family: var(--font-en);
  font-weight: 800;
  letter-spacing: .14em;
  font-size: 12px;
  color: var(--blue-600);
  background: var(--white);
  padding: 6px 14px;
  border-radius: 999px;
}
.event-next__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  padding-right: 36px;
  border-right: 1px solid rgba(255, 255, 255, .28);
}
.event-next__month { font-family: var(--font-en); font-weight: 700; font-size: 18px; letter-spacing: .12em; opacity: .92; }
.event-next__day   { font-family: var(--font-serif); font-weight: 700; font-size: 86px; line-height: .92; margin: 6px 0; }
.event-next__dow   { font-family: var(--font-en); font-weight: 600; font-size: 14px; letter-spacing: .22em; opacity: .85; }
.event-next__kicker { font-family: var(--font-en); font-weight: 600; letter-spacing: .14em; font-size: 12px; opacity: .9; margin-bottom: 8px; }
.event-next__title { font-size: clamp(22px, 3vw, 31px); font-weight: 700; margin-bottom: 18px; }
.event-next__meta { display: flex; flex-wrap: wrap; gap: 12px 30px; margin: 0; }
.event-next__meta > div { display: flex; flex-direction: column; gap: 3px; }
.event-next__meta dt { font-family: var(--font-en); font-size: 11px; letter-spacing: .08em; opacity: .78; }
.event-next__meta dd { margin: 0; font-size: 16px; font-weight: 600; }
.event-next__cta { background: var(--white); color: var(--blue-600); white-space: nowrap; }
.event-next__cta:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(0, 0, 0, .18); }
.event-next--empty { display: block; text-align: center; }
.event-next__empty { margin: 0; }

/* upcoming schedule list */
.event-sched__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 18px;
  padding-left: 14px;
  border-left: 4px solid var(--blue-500);
}
.event-sched__list { display: grid; gap: 10px; }
.sched-row {
  display: grid;
  grid-template-columns: 92px minmax(0, 1.5fr) minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 22px;
  box-shadow: var(--shadow-sm);
  transition: transform .15s ease, box-shadow .15s ease;
}
.sched-row:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }
.sched-row__date {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 19px;
  color: var(--blue-600);
  line-height: 1.1;
}
.sched-row__date small { display: block; font-size: 11px; letter-spacing: .1em; color: var(--muted); font-weight: 600; }
.sched-row__title { font-weight: 700; color: var(--navy); font-size: 16px; }
.sched-row__place { font-size: 14px; color: var(--ink); }
.sched-row__cap { font-size: 13px; color: var(--muted); white-space: nowrap; }
.sched-row--empty { display: block; text-align: center; color: var(--muted); }

/* event gallery */
.gallery { margin-top: 48px; }
.gallery__marquee {
  position: relative;
  overflow: hidden;
  -webkit-mask: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.gallery__track {
  display: flex;
  width: max-content;
  animation: galleryMarquee 60s linear infinite;
}
.gallery__marquee:hover .gallery__track { animation-play-state: paused; }
.gallery__item {
  flex: 0 0 auto;
  width: 280px;
  aspect-ratio: 3 / 2;
  margin: 0 14px 0 0;        /* 右だけ余白 → -50%でシームレスにループ */
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@keyframes galleryMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .gallery__track { animation: none; }
  .gallery__marquee { overflow-x: auto; }
}

/* ---------- Collaboration ---------- */
.collab {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
}
.collab__image {
  position: relative;
  aspect-ratio: 5 / 4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    radial-gradient(110% 80% at 20% 10%, rgba(255,255,255,.4), transparent 55%),
    linear-gradient(135deg, var(--blue-300), var(--blue-500));
  box-shadow: var(--shadow-md);
}
.collab__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.collab__title { font-size: clamp(22px, 3vw, 30px); font-weight: 700; color: var(--navy); margin-bottom: 16px; }
.collab__text { color: var(--ink); margin-bottom: 20px; }
.collab__list { margin-bottom: 28px; display: grid; gap: 12px; }
.collab__list li {
  position: relative;
  padding-left: 30px;
  font-size: 15px;
  color: var(--ink);
}
.collab__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  background: var(--blue-100);
  color: var(--blue-600);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
}

.logos__label {
  text-align: center;
  margin: 60px 0 20px;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
}
.logos {
  margin-top: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}
.logos__item {
  flex: 1 1 150px;
  max-width: 190px;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 18px 22px;
  background: var(--blue-50);
  border: 1px dashed var(--blue-200);
  border-radius: 14px;
  font-family: var(--font-en);
  font-weight: 600;
  letter-spacing: .15em;
  font-size: 13px;
  color: var(--muted);
}
/* real partner logos */
.logos__item--brand {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  padding: 0;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.logos__item--brand:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-200);
}
.logos__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 18px 22px;
}
.brand-img {
  max-height: 40px;
  max-width: 86%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.brand-img--on { max-height: 66px; }                            /* o／n マークの表示サイズ */
.brand-img--redbull { max-height: 64px; max-width: 100%; }      /* Red Bull の表示サイズ */

/* ---------- Shop ---------- */
.product-card__thumb {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #ffffff;
}
.product-card__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
}
.product-card__soldout {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  background: rgba(22, 49, 78, .42);
  color: #ffffff;
  font-family: var(--font-en);
  font-weight: 700;
  letter-spacing: .14em;
  font-size: 15px;
}
.product-card.is-soldout .product-card__thumb img { filter: grayscale(.4); }
.product-card__btn[disabled] {
  background: var(--blue-100);
  color: var(--muted);
  cursor: not-allowed;
  box-shadow: none;
}
.product-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center; /* 前面（左側）を大きくトリミング表示 */
  display: block;
  transition: transform .3s ease;
}
.product-card:hover .product-card__thumb img { transform: scale(1.04); }
.product-card__name { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.product-card__price {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 14px;
}
.product-card__price span { font-family: var(--font-jp); font-size: 11px; color: var(--muted); margin-left: 6px; font-weight: 400; }
.product-card__btn { width: 100%; }

/* ---------- Q&A ---------- */
.faq { display: grid; gap: 14px; }
.faq__item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq__q {
  list-style: none;
  cursor: pointer;
  padding: 20px 54px 20px 22px;
  position: relative;
  font-weight: 700;
  color: var(--navy);
  font-size: 16px;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  background: var(--blue-100);
  color: var(--blue-600);
  border-radius: 50%;
  font-size: 18px;
  font-weight: 700;
  transition: transform .2s ease;
}
.faq__item[open] .faq__q::after { content: "−"; transform: translateY(-50%) rotate(180deg); }
.faq__a { padding: 0 22px 22px; color: var(--ink); font-size: 15px; }

/* ---------- Contact ---------- */
.section--contact { background: linear-gradient(180deg, var(--white), var(--blue-50)); }
.contact {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 48px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
}
.contact__title { font-size: clamp(24px, 3.4vw, 34px); font-weight: 700; color: var(--navy); margin: 10px 0 16px; }
.contact__text { color: var(--ink); margin-bottom: 26px; }
.contact__info { display: grid; gap: 12px; }
.contact__info li { font-size: 15px; color: var(--ink); }
.contact__info span {
  display: inline-block;
  width: 52px;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 600;
  color: var(--blue-500);
}
.contact__ig { color: var(--blue-600); font-weight: 700; transition: color .15s ease; }
.contact__ig:hover { color: var(--blue-500); text-decoration: underline; }

.form-row { margin-bottom: 18px; }
.form-row label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.req {
  font-size: 11px;
  color: var(--pop-coral);
  margin-left: 6px;
  font-weight: 700;
}
.contact__form input,
.contact__form select,
.contact__form textarea {
  width: 100%;
  padding: 13px 16px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  background: var(--blue-50);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
}
.contact__form input:focus,
.contact__form select:focus,
.contact__form textarea:focus {
  outline: none;
  background: var(--white);
  border-color: var(--blue-400);
  box-shadow: 0 0 0 4px rgba(106, 158, 186, 0.20);
}
.contact__form textarea { resize: vertical; }
.hp { display: none !important; }
.noscript-banner {
  margin: 0;
  padding: 12px 20px;
  text-align: center;
  font-size: 14px;
  color: var(--navy);
  background: var(--pop-yellow);
}
.contact__status {
  margin-top: 14px;
  font-size: 14px;
  font-weight: 500;
  padding: 11px 15px;
  border-radius: 10px;
  line-height: 1.6;
}
.contact__status.is-ok { background: #e7f4ec; color: #1e7a3d; }
.contact__status.is-err { background: #fdecea; color: #c0392b; }

/* ---------- Footer ---------- */
.footer { background: var(--navy); color: #c9dcef; }
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  padding-block: 48px;
}
.logo--footer { color: var(--white); }
.footer__tagline {
  margin-top: 12px;
  font-family: var(--font-serif);
  font-size: 15px;
  letter-spacing: .12em;
  color: #c9dcef;
}
.footer__desc { margin-top: 8px; font-size: 14px; color: #9db8d4; }
.footer__ig {
  display: inline-flex;
  align-items: center;
  gap: .4em;
  margin-top: 14px;
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 14px;
  color: var(--white);
  transition: opacity .15s ease;
}
.footer__ig:hover { opacity: .8; }
.footer__nav { display: flex; flex-direction: column; gap: 12px; }
.footer__nav a { font-size: 14px; color: #c9dcef; transition: color .15s ease; }
.footer__nav a:hover { color: var(--white); }

/* footer company profile */
.footer__company-title { color: var(--white); font-size: 14px; font-weight: 700; margin-bottom: 14px; }
.footer__company-list { display: grid; gap: 10px; margin: 0; }
.footer__company-list > div { display: flex; gap: 14px; font-size: 13px; line-height: 1.6; }
.footer__company-list dt { color: #9db8d4; min-width: 60px; flex-shrink: 0; }
.footer__company-list dd { margin: 0; color: #c9dcef; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); }
.footer__bottom .container { padding-block: 20px; }
.footer__bottom small { font-size: 13px; color: #7f9cba; }

/* ---------- Reservation ---------- */
.section--reserve { background: var(--blue-50); }
.reserve {
  display: grid;
  grid-template-columns: 1.3fr .9fr;
  gap: 40px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
}
.reserve__title { font-size: clamp(24px, 3.4vw, 34px); font-weight: 700; color: var(--navy); margin: 8px 0 14px; }
.reserve__text { color: var(--ink); margin-bottom: 22px; }
.reserve__steps { display: grid; gap: 12px; margin: 0 0 26px; }
.reserve__steps li { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--ink); font-weight: 500; }
.reserve__steps span {
  flex: 0 0 auto;
  width: 28px; height: 28px;
  display: grid; place-items: center;
  background: var(--blue-500); color: #fff;
  border-radius: 50%;
  font-family: var(--font-en); font-weight: 700; font-size: 14px;
}
.reserve__note { margin-top: 16px; font-size: 12.5px; color: var(--muted); line-height: 1.8; }
.btn--lg { padding: 17px 40px; font-size: 16px; }
[data-reserve][aria-disabled="true"] { opacity: .55; }

.reserve__card {
  background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
  color: #fff;
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-md);
}
.reserve__card-label { font-family: var(--font-en); font-weight: 600; letter-spacing: .14em; font-size: 12px; opacity: .9; margin-bottom: 14px; }
.reserve__next-date { font-family: var(--font-en); font-weight: 700; font-size: 26px; line-height: 1.1; }
.reserve__next-date small { font-size: 13px; letter-spacing: .1em; opacity: .85; margin-left: 4px; }
.reserve__next-title { font-size: 18px; font-weight: 700; margin: 10px 0 4px; }
.reserve__next-meta { font-size: 14px; opacity: .92; }
.link-more {
  display: inline-block;
  margin-top: 18px;
  font-weight: 700; font-size: 14px; color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, .5);
  padding-bottom: 2px;
}
.link-more:hover { border-bottom-color: #fff; }

/* ---------- Blog ---------- */
.blog-card {
  display: flex;
  flex-direction: column;
  text-align: left;
  width: 100%;
  padding: 0;
  font: inherit;
  color: inherit;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.blog-card__thumb { aspect-ratio: 16 / 10; overflow: hidden; }
.blog-card__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-card .card__body { display: flex; flex-direction: column; flex: 1; }
.blog-card__meta { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.blog-card__date { font-family: var(--font-en); font-size: 12px; color: var(--muted); font-weight: 600; }
.blog-card .card__title { font-size: 18px; }
.blog-card .card__text { margin-bottom: 14px; }
.blog-card__more { margin-top: auto; font-size: 14px; font-weight: 700; color: var(--blue-600); }

/* ---------- Modal ---------- */
.modal { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: 20px; }
.modal[hidden] { display: none; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(22, 49, 78, .55); -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px); }
.modal__panel {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
  max-height: 88vh;
  overflow: auto;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 42px;
  box-shadow: var(--shadow-md);
}
.modal__close {
  position: absolute; top: 14px; right: 16px;
  width: 38px; height: 38px;
  border: 0; border-radius: 50%;
  background: var(--blue-50); color: var(--navy);
  font-size: 22px; line-height: 1; cursor: pointer;
}
.modal__close:hover { background: var(--blue-100); }
.modal__meta { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.modal__title { font-size: clamp(20px, 3vw, 28px); font-weight: 700; color: var(--navy); margin-bottom: 18px; line-height: 1.45; }
.modal__img { width: 100%; border-radius: var(--radius); margin-bottom: 20px; }
.modal__text { color: var(--ink); }
.modal__text p { margin-bottom: 16px; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 960px) {
  .cards--shop { grid-template-columns: repeat(2, 1fr); }
  .hero__inner { gap: 36px; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .pc-only { display: none; }

  /* nav -> mobile drawer */
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
  }
  .nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 16px 20px 24px;
  }
  .nav__link { padding: 14px 12px; font-size: 16px; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav__cta { margin: 14px 0 0; }
  .nav-toggle { display: block; }

  /* hero stacks */
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 56px 20px 72px;
  }
  .hero__actions { justify-content: center; }
  .hero__stats { justify-content: center; gap: 24px; }
  .hero__lead, .hero__note { margin-inline: auto; }
  .hero__visual { order: -1; max-width: 360px; margin: 0 auto; }
  .hero__photo { aspect-ratio: 16 / 11; }

  /* layouts collapse */
  .cards { grid-template-columns: 1fr; }
  .collab { grid-template-columns: 1fr; gap: 32px; }
  .collab__image { order: -1; }
  .contact { grid-template-columns: 1fr; gap: 36px; padding: 32px 24px; }
  .reserve { grid-template-columns: 1fr; gap: 28px; padding: 32px 24px; }
  .modal__panel { padding: 30px 22px; }

  /* events */
  .event-overview { grid-template-columns: 1fr; gap: 14px; margin-bottom: 32px; }
  .event-next {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 22px;
    padding: 34px 24px 30px;
  }
  .event-next__date {
    flex-direction: row;
    align-items: baseline;
    justify-content: center;
    gap: 10px;
    padding: 0 0 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .28);
  }
  .event-next__day { font-size: 60px; margin: 0; }
  .event-next__meta { justify-content: center; }
  .event-next__cta { width: 100%; }
  .sched-row {
    grid-template-columns: 64px 1fr;
    gap: 4px 16px;
    align-items: start;
  }
  .sched-row__date { grid-row: 1 / span 4; align-self: center; font-size: 17px; }
  .sched-row__title,
  .sched-row__place,
  .sched-row__cap,
  .sched-row > .tag { grid-column: 2; justify-self: start; }
  .sched-row > .tag { margin-top: 6px; }

  .gallery__item { width: 220px; }
}

@media (max-width: 480px) {
  .container { padding-inline: 16px; }
  .cards--shop { grid-template-columns: 1fr; }
  .hero__stats { gap: 18px; }
  .hero__stats strong { font-size: 26px; }
  .btn { width: 100%; }
  .hero__actions .btn { width: 100%; }
}
