/* ============================================================
   TOKENS & RESET
   ============================================================ */
:root {
  --gold: #C4995A;
  --gold-light: #D9B87A;
  --gold-pale: #F0E4CC;
  --cream: #FAFAF6;
  --ivory: #F5F0E8;
  --dark: #1C1A17;
  --brown: #5C4A30;
  --gray: #8A8278;
  --white: #FFFFFF;

  /* Layout tokens */
  --max-w: 960px;
  --pad-x: 20px;
  --section-py: 64px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--dark);
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* ============================================================
   CONTAINER
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1.0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.3); }
}
@keyframes slideUp {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: 56px;
  display: flex;
  align-items: center;
  background: rgba(12, 10, 8, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196, 153, 90, 0.15);
  transition: background 0.4s ease, border-color 0.4s ease;
}
.site-header.scrolled {
  background: rgba(12, 10, 8, 0.92);
  border-bottom-color: rgba(196, 153, 90, 0.28);
}
.header-inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad-x);
}
.header-logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
  text-decoration: none;
}
.header-logo-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.18em;
  line-height: 1;
}
.header-logo-sub {
  font-size: 8px;
  color: var(--gold);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 1;
}
.header-line-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--gold);
  color: var(--white);
  text-decoration: none;
  padding: 9px 18px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: background 0.25s ease, transform 0.25s ease;
  white-space: nowrap;
}
.header-line-btn:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}
.header-line-btn svg {
  width: 16px;
  height: 16px;
  fill: var(--white);
  flex-shrink: 0;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #0B0908;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  transform: scale(1.06);
  animation: heroZoom 14s ease-out forwards;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(12,10,8,0.55) 0%,
    rgba(12,10,8,0.45) 40%,
    rgba(12,10,8,0.80) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 136px 0 100px;
}
.hero-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.hero-inner {
  max-width: 680px;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(196,153,90,0.6);
  padding: 6px 16px;
  border-radius: 2px;
  margin-bottom: 24px;
  animation: fadeUp 0.8s ease 0.2s both;
}
.hero-badge::before {
  content: '';
  width: 20px; height: 1px;
  background: var(--gold);
}
.hero-badge span {
  color: var(--gold-light);
  font-size: 10px;
  letter-spacing: 0.2em;
  font-weight: 400;
  text-transform: uppercase;
}

/* Headline */
.hero-headline {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(38px, 8vw, 72px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.35;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
  animation: fadeUp 0.8s ease 0.4s both;
}
.hero-headline em {
  font-style: normal;
  color: var(--gold-light);
  position: relative;
}
.hero-headline em::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 1px;
}

/* Sub */
.hero-sub {
  font-size: clamp(13px, 2vw, 16px);
  color: rgba(255,255,255,0.80);
  letter-spacing: 0.1em;
  margin-bottom: 28px;
  line-height: 1.9;
  animation: fadeUp 0.8s ease 0.6s both;
}

/* Tags */
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
  animation: fadeUp 0.8s ease 0.8s both;
}
.hero-tag {
  background: rgba(196,153,90,0.14);
  border: 1px solid rgba(196,153,90,0.45);
  color: var(--gold-light);
  font-size: 11px;
  padding: 5px 13px;
  border-radius: 2px;
  letter-spacing: 0.08em;
  backdrop-filter: blur(4px);
}

/* CTA wrap */
.hero-cta-wrap {
  animation: fadeUp 0.8s ease 1.0s both;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--gold);
  color: var(--white);
  text-decoration: none;
  text-align: center;
  padding: 20px 44px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  border-radius: 3px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease, transform 0.3s ease;
  min-width: 300px;
  box-shadow: 0 8px 32px rgba(196,153,90,0.4);
}
.cta-btn-icon {
  width: 20px; height: 20px;
  fill: var(--white);
  flex-shrink: 0;
}
.cta-btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.cta-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transition: left 0.5s;
}
.cta-btn:hover::before { left: 100%; }
.cta-btn:hover { background: var(--gold-light); transform: translateY(-2px); }
.cta-btn .btn-sub {
  display: block;
  font-size: 10px;
  opacity: 0.8;
  margin-top: 3px;
  letter-spacing: 0.05em;
}
.hero-cta-note {
  margin-top: 12px;
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.08em;
}

/* SCROLL indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 3;
  animation: fadeUp 1s ease 1.8s both;
}
.hero-scroll-text {
  font-size: 9px;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.45);
  font-weight: 400;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  51%  { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}
.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(196,153,90,0.8), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

/* ============================================================
   SECTION BASE
   ============================================================ */
section { padding: var(--section-py) 0; }
.section-label {
  font-size: 9px;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 8px;
  font-weight: 400;
}
.section-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 300;
  text-align: center;
  line-height: 1.6;
  color: var(--dark);
  margin-bottom: 40px;
}
.section-title-white { color: var(--white); }

/* ============================================================
   EMPATHY
   ============================================================ */
.empathy { background: var(--ivory); }
.pain-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 36px;
}
.pain-card {
  background: var(--white);
  border: 1px solid rgba(196,153,90,0.18);
  border-radius: 8px;
  overflow: hidden;
}
.pain-card-img {
  width: 100%;
  height: 90px;
  object-fit: cover;
  display: block;
  filter: brightness(0.78) saturate(0.65);
}
.pain-card-body {
  padding: 10px 12px 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.pain-card-icon {
  flex-shrink: 0;
  width: 30px; height: 30px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.pain-card-icon svg {
  width: 14px; height: 14px;
  stroke: var(--brown);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.pain-text {
  font-size: 12px;
  line-height: 1.65;
  color: var(--dark);
  font-weight: 500;
  padding-top: 4px;
}
.arrow-block { text-align: center; margin-bottom: 32px; }
.arrow-gold {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.arrow-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
.arrow-text { font-size: 13px; color: var(--gold); letter-spacing: 0.12em; font-weight: 500; }
.answer-box {
  background: linear-gradient(135deg, var(--dark) 0%, #3D3020 100%);
  border-radius: 8px;
  padding: 36px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.answer-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.answer-box-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(16px, 2.5vw, 22px);
  color: var(--white);
  font-weight: 300;
  margin-bottom: 16px;
  line-height: 1.7;
}
.answer-box-title em { color: var(--gold-light); font-style: normal; font-weight: 600; }
.answer-box p {
  font-size: clamp(12px, 1.5vw, 14px);
  color: rgba(255,255,255,0.65);
  line-height: 1.9;
  letter-spacing: 0.05em;
}

/* ============================================================
   SAFE
   ============================================================ */
.safe-section { background: var(--cream); }
.safe-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}
.safe-item {
  text-align: center;
  padding: 24px 12px 28px;
  border: 1px solid var(--gold-pale);
  border-radius: 8px;
  background: var(--white);
  position: relative;
}
.safe-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 28px; height: 2px;
  background: var(--gold);
  border-radius: 1px;
}
.safe-icon-wrap {
  width: 48px; height: 48px;
  margin: 0 auto 12px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.safe-icon-wrap svg {
  width: 22px; height: 22px;
  stroke: var(--brown);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.safe-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  color: var(--gold);
  font-weight: 300;
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.safe-label { font-size: 11px; font-weight: 500; color: var(--dark); line-height: 1.7; }
.salary-highlight {
  padding: 32px 36px;
  background: linear-gradient(135deg, var(--dark) 0%, #3D3020 100%);
  border-radius: 8px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.salary-highlight::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.salary-label {
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 0.2em;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.salary-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 7vw, 72px);
  color: var(--gold-light);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 6px;
}
.salary-unit { font-size: 20px; vertical-align: baseline; }
.salary-desc { font-size: 12px; color: rgba(255,255,255,0.55); letter-spacing: 0.08em; margin-top: 8px; }

/* ============================================================
   MENU PHOTO GRID
   ============================================================ */
.menu-wrap { background: var(--dark); }
.menu-section-header {
  padding: 50px 0 0;
  text-align: center;
}
.menu-photos-outer {
  max-width: var(--max-w);
  padding-bottom: 50px;
  margin: 0 auto;
  overflow: hidden;
}
.menu-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.menu-photo-item {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.menu-photo-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.65) saturate(0.8);
  transition: transform 0.5s ease;
  display: block;
}
.menu-photo-item:hover img { transform: scale(1.05); }
.menu-photo-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(20,16,10,0.9));
  padding: 28px 16px 18px;
}
.menu-photo-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.2em;
  display: block;
  margin-bottom: 3px;
}
.menu-photo-name {
  font-size: clamp(11px, 1.5vw, 14px);
  color: var(--white);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.4;
}
.menu-photo-sub {
  font-size: clamp(9px, 1vw, 11px);
  color: rgba(255,255,255,0.5);
  margin-top: 3px;
}

/* ============================================================
   COMPARE
   ============================================================ */
.compare-section { background: var(--ivory); }
.compare-table {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--gold-pale);
  box-shadow: 0 4px 32px rgba(196,153,90,0.1);
}
.compare-head { display: grid; grid-template-columns: 1fr 1fr 1fr; }
.compare-head-cell {
  padding: 16px 10px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.col-night { background: #2A2A2A; color: rgba(255,255,255,0.55); }
.col-topic {
  background: var(--dark);
  color: var(--gold-light);
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
}
.col-here { background: var(--gold); color: var(--white); }
.compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-top: 1px solid var(--gold-pale);
}
.compare-cell {
  padding: 14px 10px;
  text-align: center;
  font-size: 12px;
  line-height: 1.5;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.compare-cell.night-cell {
  background: #F8F5F0;
  color: #9A8E82;
  text-decoration: line-through;
  text-decoration-color: rgba(196,153,90,0.4);
}
.compare-cell.here-cell { color: var(--brown); font-weight: 500; }
.compare-cell.topic-cell {
  color: var(--gray);
  font-size: 11px;
  letter-spacing: 0.1em;
  font-weight: 500;
  background: var(--ivory);
}
.compare-icon {
  width: 18px; height: 18px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* ============================================================
   BENEFITS
   ============================================================ */
.benefits-section { background: var(--cream); }
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.benefit-card {
  background: var(--white);
  border: 1px solid var(--gold-pale);
  border-radius: 8px;
  padding: 22px 18px;
  position: relative;
  overflow: hidden;
}
.benefit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--gold);
}
.benefit-icon-wrap {
  width: 38px; height: 38px;
  background: var(--gold-pale);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.benefit-icon-wrap svg {
  width: 18px; height: 18px;
  stroke: var(--brown);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.benefit-card-text { font-size: 12px; color: var(--dark); line-height: 1.75; }
.benefit-card-text strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 3px;
}

/* ============================================================
   STORES
   ============================================================ */
.stores-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.stores-section::before {
  content: 'STORE';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: min(20vw, 160px);
  color: rgba(196,153,90,0.04);
  font-weight: 300;
  white-space: nowrap;
  pointer-events: none;
}
.stores-section .section-title { color: var(--white); }

.store-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.store-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  border: 1px solid rgba(196,153,90,0.25);
  border-radius: 10px;
  text-decoration: none;
  overflow: hidden;
  min-height: 100px;
  transition: border-color 0.3s ease;
}
.store-card:hover { border-color: rgba(196,153,90,0.55); }

.store-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 0.6s ease;
}
.store-card:hover .store-card-bg { transform: scale(1.08); }

.store-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(12,10,8,0.88) 0%,
    rgba(12,10,8,0.72) 55%,
    rgba(12,10,8,0.50) 100%
  );
  transition: background 0.4s ease;
}
.store-card:hover .store-card-overlay {
  background: linear-gradient(
    to right,
    rgba(12,10,8,0.92) 0%,
    rgba(12,10,8,0.78) 55%,
    rgba(12,10,8,0.58) 100%
  );
}

.store-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  z-index: 3;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.store-card:hover::before { opacity: 1; }

.store-num {
  position: relative;
  z-index: 2;
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  color: rgba(196,153,90,0.25);
  font-weight: 300;
  line-height: 1;
  flex-shrink: 0;
  min-width: 40px;
}
.store-info {
  position: relative;
  z-index: 2;
  flex: 1;
}
.store-area {
  font-size: 9px;
  color: var(--gold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 5px;
  font-weight: 400;
}
.store-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  color: var(--white);
  font-weight: 300;
  letter-spacing: 0.05em;
}
.store-arrow-icon {
  position: relative;
  z-index: 2;
  width: 22px; height: 22px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.6;
  flex-shrink: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.store-card:hover .store-arrow-icon {
  opacity: 1;
  transform: translateX(3px);
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  background: linear-gradient(160deg, var(--cream) 0%, var(--ivory) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.final-cta-eyebrow { font-size: 10px; letter-spacing: 0.25em; color: var(--gold); text-transform: uppercase; margin-bottom: 16px; }
.final-cta-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 300;
  color: var(--dark);
  line-height: 1.6;
  margin-bottom: 16px;
}
.final-cta-title em { color: var(--gold); font-style: normal; }
.final-cta-sub {
  font-size: clamp(13px, 1.5vw, 15px);
  color: var(--gray);
  line-height: 2;
  margin-bottom: 40px;
  letter-spacing: 0.05em;
}
.line-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--gold);
  color: var(--white);
  text-decoration: none;
  padding: 20px 48px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: all 0.3s ease;
  box-shadow: 0 6px 24px rgba(196,153,90,0.35);
  min-width: 300px;
}
.line-btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(196,153,90,0.45);
}
.line-btn svg { width: 22px; height: 22px; fill: var(--white); flex-shrink: 0; }
.line-note { font-size: 11px; color: var(--gray); letter-spacing: 0.08em; margin-top: 16px; }

/* ============================================================
   FOOTER
   ============================================================ */
footer { background: var(--dark); padding: 36px 24px; text-align: center; }
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--gold);
  font-weight: 300;
  letter-spacing: 0.22em;
  margin-bottom: 12px;
}
.footer-copy { font-size: 10px; color: rgba(255,255,255,0.3); letter-spacing: 0.1em; }

/* ============================================================
   FIXED CTA
   ============================================================ */
.fixed-cta {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 460px;
  z-index: 100;
  animation: slideUp 0.5s ease 2s both;
  transition: opacity 0.3s ease;
}
.fixed-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--gold);
  color: var(--white);
  text-decoration: none;
  padding: 16px 24px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: 0 6px 28px rgba(196,153,90,0.5), 0 2px 8px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}
.fixed-cta a:hover { background: var(--gold-light); transform: translateY(-1px); }
.pulse-dot {
  width: 8px; height: 8px;
  background: #4DF16E;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 1.5s ease infinite;
}

/* ============================================================
   RESPONSIVE — TABLET  ≥ 640px
   ============================================================ */
@media (min-width: 640px) {
  :root { --pad-x: 32px; }

  .pain-cards { grid-template-columns: repeat(4, 1fr); gap: 14px; }
  .pain-card-img { height: 100px; }

  .benefits-grid { grid-template-columns: repeat(3, 1fr); }

  .menu-photos { grid-template-columns: repeat(4, 1fr); }
  .menu-photo-item { aspect-ratio: 3 / 4; }

  .store-cards { flex-direction: column; gap: 12px; }
  .store-card { padding: 24px 28px; }
}

/* ============================================================
   RESPONSIVE — DESKTOP  ≥ 900px
   ============================================================ */
@media (min-width: 900px) {
  :root {
    --pad-x: 48px;
    --section-py: 96px;
  }

  .hero { min-height: 100vh; align-items: center; }
  .hero-content { padding: 140px 0 120px; }
  .hero-inner { max-width: 720px; }

  .section-title { margin-bottom: 52px; }

  .pain-cards { grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .pain-card-img { height: 120px; }
  .pain-text { font-size: 13px; }

  .safe-grid { gap: 20px; }
  .safe-label { font-size: 12px; }

  .menu-photos { grid-template-columns: repeat(4, 1fr); }
  .menu-photo-item { aspect-ratio: 2 / 3; }
  .menu-photo-name { font-size: 13px; }
  .menu-photo-sub { font-size: 11px; }

  .compare-head-cell { padding: 18px 16px; font-size: 13px; }
  .compare-cell { padding: 16px 12px; font-size: 13px; }
  .compare-cell.topic-cell { font-size: 12px; }
  .compare-icon { width: 20px; height: 20px; }

  .benefits-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .benefit-card { padding: 28px 22px; }
  .benefit-card-text { font-size: 13px; }
  .benefit-card-text strong { font-size: 14px; }

  .store-cards { flex-direction: row; gap: 14px; }
  .store-card { flex: 1; padding: 26px 28px; }
  .store-num { font-size: 52px; }

  .cta-btn { min-width: 320px; font-size: 16px; }
  .line-btn { padding: 22px 64px; font-size: 17px; }
}

/* ============================================================
   RESPONSIVE — LARGE  ≥ 1200px
   ============================================================ */
@media (min-width: 1200px) {
  :root { --max-w: 1100px; }
  .menu-section-header { padding: 50px 0 0; }
}
