/* ============================================
   Yep.Tokyo Bar LP Stylesheet
   v5 / 2026-05-25
   ============================================ */

:root {
  --color-yellow: #F5C518;
  --color-yellow-light: #FFD84D;
  --color-yellow-deep: #E6B800;
  --color-pink: #FF4D8F;
  --color-dark: #0F1218;
  --color-dark-navy: #1A1F2E;
  --color-grey: #4A4A4A;
  --color-grey-light: #8A8A8A;
  --color-text: #2A2A2A;
  --color-text-soft: #555;
  --color-bg-light: #FAFAF6;
  --color-bg-warm: #FFF8E8;
  --color-border: #E5E5E0;

  --font-jp: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Hiragino Sans", system-ui, sans-serif;

  --max-w: 760px;
  --max-w-narrow: 560px;
  --pad-x: 20px;

  --radius: 12px;
  --radius-lg: 20px;
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
}

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

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

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-jp);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

a:hover { opacity: 0.7; }

ul, ol { margin: 0; padding: 0; list-style: none; }

table { border-collapse: collapse; width: 100%; }

blockquote { margin: 0; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.container-narrow { max-width: var(--max-w-narrow); }

.sp-only { display: inline; }
@media (min-width: 768px) {
  .sp-only { display: none; }
}

/* ============================================
   Header
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 56px;
  background: rgba(15, 18, 24, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 100;
  display: flex;
  align-items: center;
}

.header-inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.header-logo img {
  height: 22px;
  width: auto;
}

/* ============================================
   FV (First View)
   ============================================ */
.fv {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 90px var(--pad-x) 60px;
  overflow: hidden;
  isolation: isolate;
}

.fv-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -2;
  filter: brightness(0.55) saturate(1.1);
}

.fv-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,18,24,0.55) 0%, rgba(15,18,24,0.35) 40%, rgba(15,18,24,0.75) 100%);
  z-index: -1;
}

.fv-content {
  text-align: center;
  color: #fff;
  max-width: 600px;
  width: 100%;
}

.fv-logo {
  width: clamp(180px, 45vw, 280px);
  margin: 0 auto 28px;
  filter: drop-shadow(0 6px 20px rgba(0,0,0,0.5));
}

.fv-headline {
  font-size: clamp(28px, 7vw, 44px);
  font-weight: 900;
  line-height: 1.4;
  margin: 0 0 20px;
  letter-spacing: 0.02em;
  text-shadow: 0 4px 16px rgba(0,0,0,0.6);
}

.fv-sub-large {
  font-size: clamp(18px, 4.5vw, 24px);
  font-weight: 700;
  color: var(--color-yellow);
  margin: 0 0 28px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.fv-bullets {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 12px;
  margin: 0 0 24px;
  font-size: clamp(13px, 3.4vw, 15px);
}

.fv-bullets li {
  padding: 6px 14px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  font-weight: 500;
}

.fv-tagline {
  font-size: clamp(14px, 3.7vw, 16px);
  margin: 0 0 36px;
  line-height: 1.8;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

/* ============================================
   CTA Buttons
   ============================================ */
.cta-primary {
  display: inline-block;
  padding: 18px 36px;
  background: var(--color-yellow);
  color: var(--color-dark);
  font-weight: 700;
  font-size: 17px;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(245,197,24,0.45);
  letter-spacing: 0.02em;
  transition: all 0.25s ease;
  text-decoration: none;
}

.cta-primary:hover {
  background: var(--color-yellow-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(245,197,24,0.6);
  opacity: 1;
}

.cta-primary-lg {
  padding: 22px 48px;
  font-size: 19px;
}

.cta-secondary {
  display: inline-block;
  padding: 14px 28px;
  background: transparent;
  color: var(--color-text);
  font-weight: 600;
  font-size: 15px;
  border: 2px solid var(--color-text);
  border-radius: 999px;
  margin-top: 16px;
  transition: all 0.25s ease;
}

.cta-secondary:hover {
  background: var(--color-text);
  color: #fff;
  opacity: 1;
}

.cta-secondary-dark {
  color: #fff;
  border-color: #fff;
  margin-top: 20px;
}

.cta-secondary-dark:hover {
  background: #fff;
  color: var(--color-dark);
}

/* ============================================
   Sections (base)
   ============================================ */
.sec {
  padding: 80px 0;
  position: relative;
}

@media (max-width: 600px) {
  .sec { padding: 56px 0; }
}

.sec-light { background: var(--color-bg-light); }
.sec-dark {
  background: var(--color-dark);
  color: #fff;
}

.sec-heading {
  font-size: clamp(20px, 5vw, 28px);
  font-weight: 900;
  line-height: 1.5;
  margin: 0 0 36px;
  text-align: center;
  letter-spacing: 0.01em;
  position: relative;
  padding-bottom: 18px;
}

.sec-heading::after {
  content: "";
  display: block;
  width: 56px;
  height: 4px;
  background: var(--color-yellow);
  margin: 18px auto 0;
  border-radius: 2px;
}

.sec-heading-sm {
  font-size: clamp(18px, 4.5vw, 22px);
  font-weight: 700;
  line-height: 1.6;
  margin: 0 0 20px;
  text-align: center;
}

.sec-heading-final {
  font-size: clamp(22px, 5.5vw, 30px);
  font-weight: 900;
  line-height: 1.5;
  margin: 28px 0;
  text-align: center;
  color: #fff;
}

.sub-heading {
  font-size: clamp(18px, 4vw, 22px);
  font-weight: 700;
  margin: 40px 0 20px;
  border-left: 4px solid var(--color-yellow);
  padding-left: 14px;
  line-height: 1.6;
}

.sec-body {
  font-size: 15.5px;
  line-height: 1.95;
  margin-bottom: 16px;
}

.sec-body p { margin: 0 0 16px; }
.sec-body p:last-child { margin-bottom: 0; }

.sec-body-center {
  text-align: center;
  font-size: 15.5px;
  line-height: 1.95;
  margin: 0 0 16px;
}

.small-note {
  font-size: 13.5px;
  color: var(--color-text-soft);
}

.sec-dark .small-note {
  color: rgba(255,255,255,0.7);
}

/* ============================================
   Section 1: Duality (昼/夜)
   ============================================ */
.duality-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 30px 0 36px;
}

@media (max-width: 480px) {
  .duality-grid { grid-template-columns: 1fr; }
}

.duality-item {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow-md);
  position: relative;
}

.duality-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

@media (max-width: 480px) {
  .duality-item img { height: 200px; }
}

.duality-item figcaption {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* ============================================
   Section 2: Pricing
   ============================================ */
.price-summary {
  background: var(--color-dark);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  margin: 0 auto 40px;
  max-width: 480px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.price-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  text-align: left;
}

.price-summary-row .label {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

.price-summary-row .value {
  font-size: 22px;
  font-weight: 900;
  color: var(--color-yellow);
}

.price-summary-row .value small {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  margin-top: 2px;
}

.price-summary-bonus {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 2px solid var(--color-yellow);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--color-yellow);
}

.price-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  margin: 0 0 28px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  position: relative;
}

.price-card-recommended {
  border: 2px solid var(--color-yellow);
  background: #FFFEF5;
}

.recommended-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-yellow);
  color: var(--color-dark);
  padding: 6px 18px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(245,197,24,0.4);
}

.price-card-head {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--color-border);
}

.price-card-head span {
  font-size: 13px;
  font-weight: 400;
  color: var(--color-text-soft);
}

.price-table {
  width: 100%;
  margin-bottom: 16px;
}

.price-table th, .price-table td {
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
  text-align: left;
  vertical-align: top;
}

.price-table th {
  font-weight: 500;
  width: 40%;
  font-size: 14.5px;
}

.price-table td {
  font-weight: 700;
  font-size: 15px;
}

.price-table small {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: var(--color-text-soft);
  margin-top: 2px;
}

.price-note {
  background: var(--color-bg-warm);
  padding: 12px 14px;
  border-radius: 8px;
  margin: 0 0 12px;
  font-size: 14.5px;
  line-height: 1.7;
}

.price-note small {
  display: block;
  font-size: 12.5px;
  color: var(--color-text-soft);
}

.price-caption {
  margin: 0;
  font-size: 13.5px;
  color: var(--color-text-soft);
  line-height: 1.7;
}

.price-popular {
  margin: 12px 0 0;
  padding: 10px 14px;
  background: linear-gradient(90deg, var(--color-yellow) 0%, var(--color-yellow-light) 100%);
  color: var(--color-dark);
  border-radius: 8px;
  font-size: 14.5px;
  font-weight: 600;
}

.info-block {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px 22px;
  margin: 0 0 18px;
  border-left: 4px solid var(--color-yellow);
  box-shadow: var(--shadow-md);
}

.info-block-h {
  font-size: 16.5px;
  font-weight: 700;
  margin: 0 0 12px;
  line-height: 1.6;
}

.info-block p {
  margin: 0 0 8px;
  font-size: 14.5px;
  line-height: 1.85;
}

.info-block p:last-child { margin-bottom: 0; }

.info-block blockquote {
  padding: 12px 16px;
  background: var(--color-bg-warm);
  border-radius: 8px;
  margin: 8px 0 12px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-text-soft);
}

/* ============================================
   Section 3: Rule
   ============================================ */
.sec-rule {
  padding: 64px 0;
}

/* ============================================
   Section 4: Customers (dark)
   ============================================ */
.sec-dark .sec-heading::after {
  background: var(--color-yellow);
}

.stat-block {
  background: rgba(245,197,24,0.08);
  border: 2px solid var(--color-yellow);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  margin: 40px auto;
  max-width: 480px;
}

.stat-label {
  font-size: 14.5px;
  margin: 0 0 8px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}

.stat-number {
  font-size: clamp(48px, 13vw, 76px);
  font-weight: 900;
  color: var(--color-yellow);
  line-height: 1;
  margin: 8px 0;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 24px rgba(245,197,24,0.4);
}

.stat-number small {
  font-size: 0.4em;
  font-weight: 700;
  margin-left: 6px;
  color: var(--color-yellow-light);
}

.stat-sub {
  font-size: 15px;
  font-weight: 600;
  margin: 8px 0 14px;
  color: rgba(255,255,255,0.95);
}

.stat-caption {
  font-size: 12.5px;
  color: rgba(255,255,255,0.65);
  margin: 0;
}

/* ============================================
   Section 5: Unique
   ============================================ */
.crepe-menu-box {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px 22px;
  margin: 28px 0;
  border: 2px dashed var(--color-yellow);
}

.crepe-menu-h {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 16px;
  color: var(--color-text);
}

.crepe-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 14.5px;
  line-height: 1.7;
}

.crepe-list li:last-child { border-bottom: 0; }

.crepe-list small {
  color: var(--color-text-soft);
  font-size: 13px;
}

.price-tag {
  display: inline-block;
  background: var(--color-yellow);
  color: var(--color-dark);
  padding: 2px 10px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  margin-left: 6px;
}

.image-figure {
  margin: 24px 0;
  text-align: center;
}

.image-figure img {
  margin: 0 auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  max-width: 100%;
}

.image-figure figcaption {
  font-size: 13px;
  color: var(--color-text-soft);
  margin-top: 8px;
}

.bullet-list {
  margin: 12px 0 16px;
  padding-left: 0;
}

.bullet-list li {
  padding: 6px 0 6px 22px;
  position: relative;
  font-size: 14.5px;
  line-height: 1.8;
}

.bullet-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: var(--color-yellow);
  font-weight: 900;
}

/* ============================================
   Section 6: ALL HAPPY (dark + bg)
   ============================================ */
.sec-allhappy {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  isolation: isolate;
}

.sec-allhappy-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -2;
  filter: brightness(0.35) saturate(1.05);
}

.sec-allhappy-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,18,24,0.7) 0%, rgba(15,18,24,0.55) 50%, rgba(15,18,24,0.85) 100%);
  z-index: -1;
}

.sec-allhappy-inner {
  position: relative;
  z-index: 1;
}

.forbidden-list {
  max-width: 420px;
  margin: 32px auto;
  counter-reset: forbidden;
}

.forbidden-list li {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(245,197,24,0.4);
  padding: 16px 20px 16px 56px;
  border-radius: 10px;
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.6;
  position: relative;
  counter-increment: forbidden;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.forbidden-list li::before {
  content: counter(forbidden);
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background: var(--color-yellow);
  color: var(--color-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 14px;
}

.big-quote {
  background: rgba(245,197,24,0.08);
  border-left: 4px solid var(--color-yellow);
  padding: 24px 24px;
  margin: 32px 0;
  font-size: 15.5px;
  line-height: 2;
  font-style: italic;
  color: rgba(255,255,255,0.95);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.big-quote strong {
  color: var(--color-yellow);
  font-style: normal;
}

.allhappy-tagline {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  margin: 40px 0 30px;
  line-height: 1.6;
}

.big-yellow {
  display: inline-block;
  font-size: clamp(36px, 9vw, 56px);
  font-weight: 900;
  color: var(--color-yellow);
  letter-spacing: 0.08em;
  text-shadow: 0 4px 24px rgba(245,197,24,0.5);
  margin-top: 12px;
}

/* ============================================
   Section 7: Staff
   ============================================ */
.music-list {
  background: #fff;
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 20px 0;
  box-shadow: var(--shadow-md);
}

.music-list li {
  padding: 8px 0 8px 22px;
  position: relative;
  font-size: 14.5px;
  border-bottom: 1px solid var(--color-border);
}

.music-list li:last-child { border-bottom: 0; }

.music-list li::before {
  content: "🎵";
  position: absolute;
  left: 0;
  font-size: 13px;
}

.blog-link-box {
  background: var(--color-bg-warm);
  border-radius: var(--radius);
  padding: 28px 24px;
  margin: 40px 0 0;
  text-align: center;
}

.blog-link-box .sub-heading {
  border-left: none;
  padding-left: 0;
  margin-top: 0;
  text-align: center;
}

.blog-link-box p {
  font-size: 14.5px;
  margin: 12px 0 20px;
}

/* ============================================
   Section 8: Menu
   ============================================ */
.menu-block {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px 22px;
  margin: 0 0 20px;
  box-shadow: var(--shadow-md);
}

.menu-block-h {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-yellow);
  line-height: 1.5;
}

.menu-block-h small {
  font-size: 12.5px;
  font-weight: 400;
  color: var(--color-text-soft);
  margin-left: 4px;
}

.menu-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 14.5px;
  line-height: 1.7;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 8px;
}

.menu-list li:last-child { border-bottom: 0; }

.menu-list small {
  display: block;
  width: 100%;
  font-size: 12.5px;
  color: var(--color-text-soft);
  margin-top: 2px;
}

.badge-popular {
  display: inline-block;
  background: var(--color-pink);
  color: #fff;
  padding: 2px 10px;
  border-radius: 4px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.menu-more-note {
  text-align: center;
  font-size: 14px;
  color: var(--color-text-soft);
  margin: 24px 0 16px;
}

.menu-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 20px 0 0;
}

@media (max-width: 600px) {
  .menu-images { grid-template-columns: 1fr; }
}

.menu-images .image-figure { margin: 0; }
.menu-images .image-figure img {
  width: 100%;
  height: auto;
}

/* ============================================
   Section 9: Access
   ============================================ */
.access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 28px;
}

@media (max-width: 600px) {
  .access-grid { grid-template-columns: 1fr; }
}

.access-info {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px 22px;
  box-shadow: var(--shadow-md);
}

.access-h {
  font-size: 16.5px;
  font-weight: 700;
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color-yellow);
}

.access-info p {
  margin: 0 0 12px;
  font-size: 14.5px;
  line-height: 1.8;
}

.access-info .bullet-list { margin-top: 8px; }
.access-info .cta-secondary { width: 100%; text-align: center; }

.hours-table th, .hours-table td {
  padding: 10px 0;
  border-bottom: 1px solid var(--color-border);
  text-align: left;
  vertical-align: top;
  font-size: 14px;
}

.hours-table th {
  font-weight: 500;
  width: 50%;
}

.hours-table td {
  font-weight: 700;
}

.hours-table small {
  font-size: 12px;
  color: var(--color-text-soft);
  font-weight: 400;
}

.reservation-box, .payment-box {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px 22px;
  margin: 0 0 16px;
  box-shadow: var(--shadow-md);
}

.contact-list {
  margin: 16px 0 0;
}

.contact-list li {
  padding: 10px 0;
  font-size: 15px;
  border-bottom: 1px solid var(--color-border);
}

.contact-list li:last-child { border-bottom: 0; }

.contact-list a {
  color: var(--color-text);
  font-weight: 600;
  text-decoration: underline;
}

.age-notice {
  background: rgba(245,197,24,0.1);
  border-left: 4px solid var(--color-yellow);
  padding: 16px 20px;
  margin: 24px 0 0;
  border-radius: 0 8px 8px 0;
}

.age-notice p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
}

/* ============================================
   Section 10: Final CTA (dark + bg)
   ============================================ */
.sec-final-cta {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
}

.sec-final-cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -2;
  filter: brightness(0.4) saturate(1.1);
}

.sec-final-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,18,24,0.7) 0%, rgba(15,18,24,0.5) 50%, rgba(15,18,24,0.85) 100%);
  z-index: -1;
}

.sec-final-cta-inner {
  position: relative;
  z-index: 1;
}

.final-logo {
  width: clamp(160px, 40vw, 240px);
  margin: 0 auto 24px;
  filter: drop-shadow(0 6px 20px rgba(0,0,0,0.5));
}

.sec-final-cta .cta-primary {
  margin-top: 28px;
  display: inline-block;
}

.sec-final-cta .cta-secondary-dark {
  display: block;
  max-width: 360px;
  margin: 20px auto 0;
  text-align: center;
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
  background: var(--color-dark);
  color: rgba(255,255,255,0.85);
  padding: 56px 0 32px;
  text-align: center;
}

.footer-logo {
  height: 28px;
  width: auto;
  margin: 0 auto 24px;
}

.footer-name {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 6px;
}

.footer-address {
  font-size: 14px;
  margin: 0 0 24px;
  color: rgba(255,255,255,0.75);
}

.footer-links {
  margin: 0 0 28px;
}

.footer-links li {
  padding: 8px 0;
  font-size: 14px;
}

.footer-links a {
  color: var(--color-yellow);
  text-decoration: underline;
  font-weight: 500;
}

.footer-warning {
  font-size: 12.5px;
  color: rgba(255,255,255,0.6);
  margin: 0 0 12px;
}

.footer-copy {
  font-size: 11.5px;
  color: rgba(255,255,255,0.45);
  margin: 0;
  letter-spacing: 0.05em;
}
