/* ============================================
   SEAM 採用LP — Mobile-First Luxury CSS
   ============================================ */

/* ---- VARIABLES ---- */
:root {
  --black:      #0d0d0d;
  --dark:       #111113;
  --dark-2:     #18181b;
  --dark-3:     #222226;
  --white:      #ffffff;
  --cream:      #f5f2ed;
  --gold:       #c9a96e;
  --gold-light: #e4c99a;
  --gold-dark:  #a8854a;
  --line-green: #06c755;

  --text-white:       #ffffff;
  --text-white-soft:  rgba(255,255,255,0.82);
  --text-white-muted: rgba(255,255,255,0.55);
  --text-dark:        #1a1a1a;
  --text-dark-soft:   rgba(0,0,0,0.72);
  --text-dark-muted:  rgba(0,0,0,0.48);

  --border-gold:  rgba(201,169,110,0.32);
  --border-light: rgba(255,255,255,0.10);
  --border-dark:  rgba(0,0,0,0.10);

  --font-serif: 'Cormorant Garamond', serif;
  --font-sans:  'Noto Sans JP', sans-serif;

  --section-pad: clamp(64px, 10vw, 120px);
  --container:   1000px;
  --ease:        cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ---- UTILITY ---- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.center { text-align: center; }

.mt-cta { margin-top: 36px; }

.mt-card { margin-top: 20px; }

.sp-br { display: none; }

/* ---- FADE ANIMATION ---- */
.fade {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.fade.show {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(13,13,13,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  gap: 12px;
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 2px;
  color: var(--white);
}

.brand-mark {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--white);
}

.brand-sub {
  font-size: 8px;
  letter-spacing: 0.22em;
  color: var(--gold);
  font-weight: 300;
  text-transform: uppercase;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.header-note {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--text-white-muted);
  white-space: nowrap;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-align: center;
  transition: transform 0.2s var(--ease), opacity 0.2s var(--ease), box-shadow 0.2s var(--ease);
  white-space: nowrap;
}

.btn:active { transform: scale(0.97); }

/* LINE button */
.btn-line {
  background: var(--line-green);
  color: #fff;
  border-radius: 4px;
}

.btn-line:hover {
  opacity: 0.9;
  box-shadow: 0 6px 20px rgba(6,199,85,0.30);
}

.btn-sm {
  font-size: 12px;
  padding: 9px 16px;
  border-radius: 4px;
}

.btn-md {
  font-size: 13px;
  padding: 11px 20px;
}

.btn-lg {
  font-size: 15px;
  padding: 16px 32px;
  border-radius: 4px;
  width: 100%;
  max-width: 380px;
}

.btn-hero {
  font-size: 16px;
  padding: 18px 36px;
  border-radius: 4px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 8px 28px rgba(6,199,85,0.32);
}

.btn-sticky {
  font-size: 15px;
  padding: 15px 28px;
  border-radius: 4px;
  width: 100%;
}

.btn-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 56px;
  overflow: hidden;
  background: var(--dark);
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.40) saturate(0.85);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,13,13,0.30) 0%,
    rgba(13,13,13,0.55) 50%,
    rgba(13,13,13,0.90) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: 48px;
  padding-bottom: 80px;
}

.hero-copy {
  max-width: 640px;
}

.eyebrow {
  font-size: 10px;
  letter-spacing: 0.28em;
  color: var(--gold);
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero-heading {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  color: var(--white);
}

.hero-heading-en {
  font-family: var(--font-serif);
  font-size: clamp(52px, 14vw, 88px);
  font-weight: 300;
  letter-spacing: 0.22em;
  line-height: 1;
  color: var(--white);
}

.hero-heading-ja {
  font-size: clamp(18px, 4.8vw, 28px);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.55;
  color: var(--text-white-soft);
}

.hero-lead {
  font-size: clamp(13px, 3.4vw, 16px);
  color: var(--text-white-muted);
  line-height: 1.9;
  margin-bottom: 28px;
  letter-spacing: 0.04em;
}

/* Stats Row */
.stats-row {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: 24px;
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  overflow: hidden;
  max-width: 480px;
}

.stat-item {
  flex: 1;
  padding: 12px 8px;
  text-align: center;
}

.stat-divider {
  width: 1px;
  background: var(--border-gold);
  flex-shrink: 0;
}

.stat-label {
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.stat-value {
  font-size: clamp(11px, 2.8vw, 14px);
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1.3;
}

/* Bullets */
.hero-bullets {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-bullets li {
  font-size: clamp(13px, 3.4vw, 15px);
  color: var(--text-white-soft);
  padding-left: 18px;
  position: relative;
  letter-spacing: 0.03em;
  line-height: 1.65;
}

.hero-bullets li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 11px;
  top: 4px;
}

/* CTA group */
.cta-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.cta-note {
  font-size: 11px;
  color: var(--text-white-muted);
  letter-spacing: 0.05em;
  line-height: 1.6;
}

/* Chips */
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--gold);
  border: 1px solid var(--border-gold);
  padding: 5px 12px;
  border-radius: 100px;
  background: rgba(201,169,110,0.06);
  font-weight: 400;
}

/* ============================================
   SECTION BASE
   ============================================ */
.section {
  padding: var(--section-pad) 0;
}

.section-dark {
  background: var(--dark);
  color: var(--text-white);
}

.section-dark .section-title,
.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-dark p,
.section-dark li {
  color: var(--text-white-soft);
}

.section-head {
  text-align: center;
  margin-bottom: 48px;
}

.section-label {
  font-family: var(--font-serif);
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.section-label::before,
.section-label::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.section-title {
  font-family: var(--font-sans);
  font-size: clamp(22px, 5.5vw, 36px);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.45;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.section-desc {
  font-size: clamp(13px, 3.4vw, 15px);
  color: var(--text-dark-soft);
  line-height: 1.9;
  max-width: 600px;
  margin: 0 auto;
  letter-spacing: 0.03em;
}

.section-dark .section-desc {
  color: var(--text-white-muted);
}

/* ============================================
   GRID — 3カード
   ============================================ */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.card {
  background: var(--cream);
  padding: clamp(24px, 4vw, 40px) clamp(20px, 3vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card-num {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.06em;
  line-height: 1;
}

.card h3 {
  font-size: clamp(15px, 3.4vw, 18px);
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: 0.04em;
  line-height: 1.45;
}

.card p {
  font-size: clamp(13px, 3.2vw, 14px);
  color: var(--text-dark-soft);
  line-height: 1.85;
}

/* ============================================
   DUO GRID (2-col)
   ============================================ */
.duo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  align-items: start;
}

/* Check list */
.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-top: 24px;
  margin-bottom: 8px;
}

.check-list li {
  font-size: clamp(14px, 3.5vw, 15px);
  color: var(--text-white-soft);
  padding-left: 26px;
  position: relative;
  line-height: 1.65;
  letter-spacing: 0.03em;
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-size: 13px;
  font-weight: 500;
}

/* Quote Box */
.quote-box {
  background: var(--dark-2);
  padding: clamp(32px, 5vw, 56px) clamp(24px, 4vw, 48px);
  border-left: 3px solid var(--gold);
  display: flex;
  align-items: center;
}

.quote-deco {
  font-family: var(--font-serif);
  font-size: 72px;
  color: var(--gold);
  opacity: 0.3;
  line-height: 0.6;
  margin-bottom: 16px;
}

.quote-main {
  font-size: clamp(16px, 4vw, 21px);
  font-weight: 500;
  color: var(--white);
  line-height: 1.65;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}

.quote-sub {
  font-size: clamp(13px, 3.2vw, 14px);
  color: var(--text-white-muted);
  line-height: 1.9;
}

/* ============================================
   CONDITIONS
   ============================================ */
.conditions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.condition-card {
  background: var(--cream);
  padding: clamp(20px, 3vw, 32px) clamp(16px, 2.5vw, 24px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
  transition: background 0.3s var(--ease);
}

.condition-card:hover {
  background: #efe9e0;
}

.condition-label {
  font-size: 10px;
  letter-spacing: 0.20em;
  color: var(--gold-dark);
  text-transform: uppercase;
  font-weight: 500;
}

.condition-value {
  font-size: clamp(15px, 3.5vw, 19px);
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.4;
  letter-spacing: 0.03em;
}

.condition-value.highlight {
  font-family: var(--font-serif);
  font-size: clamp(22px, 5.5vw, 34px);
  color: var(--gold-dark);
  font-weight: 500;
  line-height: 1.3;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3/4;
}

.gallery-side {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.gallery-sub {
  position: relative;
  overflow: hidden;
}

.gallery-sub img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.gallery-sub:hover img {
  transform: scale(1.03);
}

.gallery-caption {
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--text-dark-muted);
  padding: 8px 4px 2px;
}

.gallery-main {
  position: relative;
  overflow: hidden;
}

.gallery-main img {
  transition: transform 0.5s var(--ease);
}

.gallery-main:hover img {
  transform: scale(1.03);
}

/* ============================================
   LOCATIONS
   ============================================ */
.location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 40px;
}

.location-card {
  background: var(--cream);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: box-shadow 0.3s var(--ease);
}

.location-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
}

.location-img-wrap {
  position: relative;
  overflow: hidden;
}

.location-img-wrap img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.location-card:hover .location-img-wrap img {
  transform: scale(1.04);
}

.location-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: var(--white);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  padding: 4px 10px;
  border-radius: 2px;
}

.location-body {
  padding: clamp(20px, 3vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.mini-label {
  font-size: 9px;
  letter-spacing: 0.28em;
  color: var(--gold-dark);
  font-weight: 500;
  text-transform: uppercase;
}

.location-body h3 {
  font-family: var(--font-serif);
  font-size: clamp(22px, 4.5vw, 30px);
  font-weight: 400;
  color: var(--text-dark);
  letter-spacing: 0.06em;
  line-height: 1.2;
}

.location-body p {
  font-size: clamp(13px, 3.2vw, 14px);
  color: var(--text-dark-soft);
  line-height: 1.85;
  flex: 1;
}

.location-ig {
  margin-top: 10px;
}

.location-ig a {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--gold-dark);
  border-bottom: 1px solid rgba(168,133,74,0.35);
  padding-bottom: 1px;
  transition: color 0.2s;
}

.location-ig a:hover {
  color: var(--gold);
}

/* GINZA SOLD OUT */
.ginza-notice {
  margin-bottom: 40px;
}

.ginza-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 0;
  background: var(--dark);
  overflow: hidden;
}

.ginza-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) brightness(0.45);
}

.ginza-text {
  padding: clamp(24px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.sold-badge {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-serif);
  font-size: 13px;
  letter-spacing: 0.28em;
  color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.22);
  padding: 6px 18px;
  width: fit-content;
}

.ginza-title {
  font-family: var(--font-serif);
  font-size: clamp(22px, 5vw, 32px);
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.12em;
  text-decoration: line-through;
  text-decoration-color: rgba(255,255,255,0.3);
}

.ginza-desc {
  font-size: clamp(12px, 3vw, 14px);
  color: rgba(255,255,255,0.45);
  line-height: 1.85;
  letter-spacing: 0.03em;
}

/* ============================================
   WHY / FEATURE
   ============================================ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 56px;
}

.feature-card {
  background: var(--dark-2);
  border: 1px solid var(--border-light);
  padding: clamp(28px, 4vw, 44px) clamp(22px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.feature-card:hover {
  border-color: var(--border-gold);
  background: var(--dark-3);
}

.feature-icon {
  font-size: 18px;
  color: var(--gold);
  line-height: 1;
}

.feature-card h3 {
  font-size: clamp(15px, 3.4vw, 18px);
  font-weight: 500;
  color: var(--white);
  line-height: 1.45;
  letter-spacing: 0.04em;
}

.feature-card p {
  font-size: clamp(13px, 3.2vw, 14px);
  color: var(--text-white-muted);
  line-height: 1.85;
}

/* HEAVEN BLOCK */
.heaven-block {
  border-top: 1px solid var(--border-gold);
  padding-top: 56px;
}

.heaven-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.heaven-deco {
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--gold);
  margin-bottom: 24px;
  opacity: 0.8;
}

.heaven-main {
  font-family: var(--font-serif);
  font-size: clamp(22px, 5.5vw, 34px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.65;
  letter-spacing: 0.06em;
  margin-bottom: 24px;
}

.heaven-highlight {
  color: var(--gold);
  border-bottom: 1px solid rgba(201,169,110,0.45);
  padding-bottom: 2px;
}

.heaven-sub {
  font-size: clamp(13px, 3.4vw, 15px);
  color: var(--text-white-muted);
  line-height: 2.0;
  letter-spacing: 0.04em;
}

/* ============================================
   FLOW
   ============================================ */
.flow-section { background: var(--cream); }

.flow-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
  margin-bottom: 36px;
}

.step {
  background: var(--white);
  padding: clamp(20px, 3vw, 32px) clamp(16px, 2.5vw, 24px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 2px solid var(--gold);
}

.step-no {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.step-body h3 {
  font-size: clamp(15px, 3.5vw, 17px);
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

.step-body p {
  font-size: clamp(12px, 3vw, 13px);
  color: var(--text-dark-soft);
  line-height: 1.85;
}

.step-arrow {
  display: flex;
  align-items: flex-start;
  padding-top: 28px;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 18px;
  color: var(--gold);
  opacity: 0.7;
  flex-shrink: 0;
}

/* ============================================
   TRUST
   ============================================ */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.trust-item {
  background: var(--dark-2);
  border: 1px solid var(--border-light);
  padding: clamp(24px, 3.5vw, 36px) clamp(20px, 3vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.3s var(--ease);
}

.trust-item:hover {
  border-color: var(--border-gold);
}

.trust-icon {
  font-size: 20px;
  color: var(--gold);
  font-weight: 500;
}

.trust-item h4 {
  font-size: clamp(14px, 3.4vw, 16px);
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1.45;
}

.trust-item p {
  font-size: clamp(12px, 3vw, 13px);
  color: var(--text-white-muted);
  line-height: 1.85;
}

/* ============================================
   FAQ
   ============================================ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item {
  background: var(--cream);
  border-left: 3px solid transparent;
  transition: border-color 0.3s var(--ease);
}

.faq-item[open] {
  border-left-color: var(--gold);
}

.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 24px;
  font-size: clamp(14px, 3.5vw, 16px);
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
  letter-spacing: 0.03em;
  line-height: 1.55;
  user-select: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary:hover {
  background: rgba(0,0,0,0.02);
}

.faq-icon {
  font-size: 20px;
  color: var(--gold);
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 24px 22px;
  font-size: clamp(13px, 3.2vw, 15px);
  color: var(--text-dark-soft);
  line-height: 1.9;
  letter-spacing: 0.03em;
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  background: var(--dark);
  padding: clamp(72px, 12vw, 120px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.final-cta::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.final-wrap {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.final-label {
  font-family: var(--font-serif);
  font-size: 11px;
  letter-spacing: 0.36em;
  color: var(--gold);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 14px;
}

.final-label::before,
.final-label::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.final-wrap h2 {
  font-size: clamp(22px, 5.5vw, 34px);
  font-weight: 500;
  color: var(--white);
  line-height: 1.55;
  letter-spacing: 0.04em;
}

.final-wrap p {
  font-size: clamp(13px, 3.4vw, 15px);
  color: var(--text-white-muted);
  line-height: 1.9;
  letter-spacing: 0.04em;
}

.final-ig-note {
  margin-top: 8px;
  font-size: 11px;
  color: var(--text-white-muted);
  letter-spacing: 0.08em;
  line-height: 1.8;
  text-align: center;
}

.final-ig-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.final-ig-links a {
  font-size: 12px;
  color: var(--gold);
  border-bottom: 1px solid rgba(201,169,110,0.4);
  padding-bottom: 2px;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}

.final-ig-links a:hover {
  color: var(--gold-light);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--black);
  padding: 24px 0;
  border-top: 1px solid var(--border-light);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-inner div {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.35);
}

/* ============================================
   STICKY CTA
   ============================================ */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  padding: 12px 16px 16px;
  background: linear-gradient(to top, rgba(13,13,13,0.96) 60%, transparent);
  transform: translateY(100%);
  transition: transform 0.45s var(--ease);
}

.sticky-cta.visible {
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE — TABLET (max 768px)
   ============================================ */
@media (max-width: 768px) {

  .header-note { display: none; }

  .hero-heading-en {
    font-size: clamp(48px, 14vw, 72px);
  }

  .stats-row {
    max-width: 100%;
  }

  .grid-3 {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .duo-grid {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .duo-grid > .fade:first-child {
    padding: clamp(36px, 6vw, 56px) clamp(20px, 5vw, 36px);
    background: var(--dark-2);
    color: var(--white);
  }

  .conditions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .gallery-main img {
    aspect-ratio: 4/3;
  }

  .gallery-side {
    flex-direction: row;
    gap: 3px;
  }

  .gallery-sub {
    flex: 1;
  }

  .gallery-sub img {
    aspect-ratio: 1/1;
  }

  .location-grid {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .ginza-inner {
    grid-template-columns: 1fr;
  }

  .ginza-inner img {
    aspect-ratio: 16/6;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .flow-grid {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .step-arrow {
    display: none;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
  }
}

/* ============================================
   RESPONSIVE — MOBILE (max 480px)
   ============================================ */
@media (max-width: 480px) {

  .sp-br { display: block; }

  /* Header */
  .header-inner { height: 52px; }
  .brand-mark { font-size: 18px; }

  /* Hero */
  .hero { min-height: 100svh; }
  .hero-inner { padding-top: 32px; padding-bottom: 100px; }
  .eyebrow { font-size: 9px; letter-spacing: 0.22em; }

  .hero-heading-en {
    font-size: clamp(52px, 16vw, 72px);
  }

  .hero-heading-ja {
    font-size: clamp(17px, 4.6vw, 22px);
  }

  .hero-lead {
    font-size: 13px;
  }

  .stats-row {
    flex-wrap: wrap;
  }

  .stat-item {
    flex: 0 0 calc(50% - 1px);
  }

  .stat-divider:nth-child(4) {
    display: none;
  }

  .stat-value { font-size: 13px; }

  .btn-hero {
    font-size: 15px;
    padding: 17px 24px;
    max-width: 100%;
  }

  .btn-lg {
    max-width: 100%;
  }

  /* Section */
  .section-title { font-size: clamp(20px, 5.5vw, 26px); }
  .section-head { margin-bottom: 36px; }

  /* Cards */
  .card {
    padding: 28px 20px;
  }

  /* Conditions */
  .conditions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .condition-card {
    padding: 20px 14px;
  }

  .condition-value.highlight {
    font-size: clamp(24px, 6.5vw, 32px);
  }

  /* Gallery */
  .gallery-side {
    flex-direction: column;
  }

  .gallery-sub img {
    aspect-ratio: 4/3;
  }

  /* Location */
  .location-body {
    padding: 20px 18px;
  }

  /* Ginza */
  .ginza-inner {
    grid-template-columns: 1fr;
  }

  .ginza-inner img {
    aspect-ratio: 16/7;
  }

  .ginza-text { padding: 24px 20px; }

  /* Trust */
  .trust-grid {
    grid-template-columns: 1fr;
  }

  /* Flow */
  .step { padding: 24px 20px; }

  /* FAQ */
  .faq-item summary { padding: 18px 18px; font-size: 14px; }
  .faq-answer { padding: 0 18px 18px; font-size: 13px; }

  /* Final CTA */
  .final-wrap h2 { font-size: clamp(20px, 5.5vw, 26px); }

  /* Footer */
  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 4px;
  }

  /* Sticky CTA */
  .sticky-cta { padding: 10px 14px 14px; }
}

/* ============================================
   RESPONSIVE — SMALL (max 375px)
   ============================================ */
@media (max-width: 375px) {
  .hero-heading-en { font-size: 50px; }
  .stat-item { padding: 10px 6px; }
  .stat-value { font-size: 12px; }
}
