/* ============================================================
   壹号娱乐会馆 · Site Kit 共享样式 /assets/site.css
   设计基调：暗夜蓝 × 霓虹紫 × 金色 × 云南民族色彩点缀
   ============================================================ */

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

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

body {
  font-family: "Noto Sans SC", -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  background-color: var(--color-night);
  background-image:
    radial-gradient(ellipse at 18% -12%, rgba(156, 39, 176, 0.07), transparent 52%),
    radial-gradient(ellipse at 88% 18%, rgba(30, 136, 229, 0.05), transparent 42%);
  background-attachment: fixed;
  color: var(--color-white);
  line-height: 1.75;
  font-size: 16px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

ul,
ol {
  list-style: none;
}

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

::selection {
  background: rgba(156, 39, 176, 0.55);
  color: #fff;
}

/* ---------- CSS Variables ---------- */
:root {
  --color-night: #0B1D3A;
  --color-purple: #9C27B0;
  --color-gold: #FFD700;
  --color-red: #C7302A;
  --color-yellow: #F5A623;
  --color-blue: #1E88E5;
  --color-white: #FFFFFF;
  --color-gray: #B0BEC5;
  --color-darkgray: #37474F;
  --color-deepblue: #1A1A2E;

  --color-purple-light: #CE93D8;
  --color-gold-light: #FFECB3;
  --color-blue-light: #64B5F6;
  --color-red-light: #E57373;

  --color-bg-soft: rgba(255, 255, 255, 0.04);
  --color-bg-card: linear-gradient(145deg, rgba(26, 26, 46, 0.92), rgba(55, 71, 79, 0.32));
  --color-border-soft: rgba(255, 255, 255, 0.08);
  --color-border-purple: rgba(156, 39, 176, 0.35);

  --font-headline: "Orbitron", "DIN Alternate", "Bahnschrift", "PingFang SC", sans-serif;
  --font-body: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-number: "Roboto Mono", "JetBrains Mono", "Cascadia Code", "Consolas", monospace;

  --header-h: 72px;
  --container-w: 1440px;
  --radius: 16px;
  --transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Focus Visibility ---------- */
:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Chinese Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headline);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.04em;
  color: var(--color-white);
}

p {
  margin-bottom: 1em;
}

p:last-child {
  margin-bottom: 0;
}

strong {
  color: var(--color-gold);
  font-weight: 600;
}

/* ---------- Skip Link ---------- */
.skip-link {
  position: fixed;
  top: -80px;
  left: 24px;
  z-index: 9999;
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--color-gold), var(--color-yellow));
  color: var(--color-night);
  font-weight: 700;
  font-size: 14px;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 0;
}

/* ---------- Main Content ---------- */
#main-content {
  display: block;
  scroll-margin-top: calc(var(--header-h) + 4px);
  flex: 1 0 auto;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(11, 29, 58, 0.97), rgba(11, 29, 58, 0.88));
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(156, 39, 176, 0.28);
}

.header-inner {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 32px;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Brand */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-family: var(--font-headline);
  font-size: 22px;
  font-weight: 900;
  color: var(--color-night);
  background: linear-gradient(135deg, var(--color-purple) 0%, var(--color-gold) 100%);
  border-radius: 10px 4px 10px 4px;
  box-shadow: 0 0 20px rgba(156, 39, 176, 0.35);
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  white-space: nowrap;
}

.brand-text-main {
  font-family: var(--font-headline);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.06em;
  background: linear-gradient(135deg, var(--color-purple-light) 0%, var(--color-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.brand-text-sub {
  font-family: var(--font-number);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.32em;
  color: var(--color-gray);
  text-transform: uppercase;
}

/* Nav Toggle */
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-border-soft);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.3s ease, background 0.3s ease;
  flex-shrink: 0;
}

.nav-toggle:hover {
  border-color: var(--color-border-purple);
  background: rgba(156, 39, 176, 0.1);
}

.nav-toggle-box {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 24px;
  height: 24px;
}

.nav-toggle-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Desktop Nav */
.site-nav {
  display: block;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-gray);
  white-space: nowrap;
  transition: color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.nav-link:hover {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.06);
}

.nav-link[aria-current="page"] {
  color: var(--color-white);
  background: linear-gradient(135deg, rgba(156, 39, 176, 0.22), rgba(156, 39, 176, 0.08));
  box-shadow: inset 0 -2px 0 var(--color-purple);
}

.nav-num {
  font-family: var(--font-number);
  font-size: 11px;
  font-weight: 700;
  color: var(--color-gold);
  opacity: 0.85;
}

.nav-label {
  letter-spacing: 0.04em;
}

/* Header Progress */
.header-progress {
  height: 2px;
  background: rgba(255, 255, 255, 0.06);
}

.header-progress-fill {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--color-purple), var(--color-gold), var(--color-blue), var(--color-purple));
  background-size: 200% 100%;
  transition: width 0.12s linear;
}

/* ---------- Footer ---------- */
.site-footer {
  margin-top: auto;
  position: relative;
  background: linear-gradient(180deg, var(--color-deepblue) 0%, #0D0D1F 100%);
  border-top: 1px solid var(--color-border-purple);
}

.footer-band {
  height: 4px;
  background: linear-gradient(90deg,
    var(--color-purple) 0%,
    var(--color-gold) 30%,
    var(--color-blue) 65%,
    var(--color-red) 100%);
  opacity: 0.8;
}

.footer-main {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 64px 32px 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 48px;
}

.footer-brand-col .brand {
  margin-bottom: 20px;
}

.brand--footer .brand-mark {
  width: 36px;
  height: 36px;
  font-size: 19px;
}

.brand--footer .brand-text-main {
  font-size: 18px;
}

.brand--footer .brand-text-sub {
  font-size: 8px;
}

.footer-trust {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-gold-light);
  letter-spacing: 0.03em;
  margin-bottom: 12px;
}

.footer-desc {
  font-size: 13px;
  color: var(--color-gray);
  line-height: 1.9;
}

.footer-col-title {
  font-family: var(--font-headline);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--color-white);
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-border-purple);
}

.footer-col-title::before {
  content: "▸ ";
  color: var(--color-gold);
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 14px;
  color: var(--color-gray);
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links a:hover {
  color: var(--color-purple-light);
  padding-left: 4px;
}

.footer-contact li {
  position: relative;
  font-size: 13px;
  color: var(--color-gray);
  line-height: 1.8;
  margin-bottom: 10px;
  padding-left: 20px;
}

.footer-contact li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--color-purple);
  border-radius: 50% 50% 50% 0;
  opacity: 0.85;
}

.footer-contact-phone {
  font-family: var(--font-number);
  letter-spacing: 0.02em;
}

.footer-contact li.footer-contact-hotline {
  font-family: var(--font-number);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-gold);
  letter-spacing: 0.02em;
}

.footer-hotline-time {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  color: var(--color-gray);
  letter-spacing: 0.08em;
  margin-top: 2px;
}

.footer-contact-addr {
  line-height: 1.7;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom-inner {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px 24px;
  font-size: 13px;
  color: var(--color-gray);
}

/* ---------- Back to Top ---------- */
.to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 900;
  width: 44px;
  height: 44px;
  border-radius: 12px 4px 12px 4px;
  background: linear-gradient(135deg, var(--color-purple), #7B1FA2);
  color: var(--color-white);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(156, 39, 176, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

.to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.to-top:hover {
  box-shadow: 0 12px 36px rgba(156, 39, 176, 0.6);
  transform: translateY(-3px);
}

.to-top.is-visible:hover {
  transform: translateY(-3px);
}

/* ---------- Container & Section ---------- */
.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: 72px 0;
}

.section-head {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 40px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-border-soft);
}

.section-index {
  font-family: var(--font-number);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-gold);
  background: rgba(156, 39, 176, 0.15);
  padding: 6px 12px;
  border-radius: 8px 3px 8px 3px;
  line-height: 1.2;
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-headline);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.section-sub {
  font-size: 14px;
  color: var(--color-gray);
  margin-left: auto;
  text-align: right;
  max-width: 40%;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-purple), #7B1FA2);
  color: var(--color-white);
  box-shadow: 0 4px 16px rgba(156, 39, 176, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(156, 39, 176, 0.45);
}

.btn-outline {
  background: transparent;
  border-color: var(--color-purple);
  color: var(--color-purple-light);
}

.btn-outline:hover {
  background: rgba(156, 39, 176, 0.1);
  border-color: var(--color-purple-light);
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--color-gold), var(--color-yellow));
  color: var(--color-night);
  box-shadow: 0 4px 16px rgba(255, 215, 0, 0.25);
}

.btn-gold:hover {
  box-shadow: 0 8px 28px rgba(255, 215, 0, 0.4);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 13px;
  border-radius: 8px;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 16px;
  border-radius: 12px;
}

.btn-block {
  display: flex;
  width: 100%;
}

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  padding: 8px 0;
  font-size: 13px;
  color: var(--color-gray);
}

.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.breadcrumb-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  color: var(--color-purple);
  font-family: var(--font-number);
  font-size: 12px;
}

.breadcrumb-link {
  color: var(--color-blue-light);
  transition: color 0.3s ease;
}

.breadcrumb-link:hover {
  color: var(--color-gold);
}

.breadcrumb-current {
  color: var(--color-white);
  font-weight: 500;
}

/* ---------- Grid ---------- */
.grid {
  display: grid;
  gap: 24px;
}

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

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

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-12 {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.grid-span-2 { grid-column: span 2; }
.grid-span-3 { grid-column: span 3; }
.grid-span-4 { grid-column: span 4; }
.grid-span-6 { grid-column: span 6; }
.grid-span-8 { grid-column: span 8; }

/* ---------- Card ---------- */
.card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  border-color: var(--color-border-purple);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}

.card-text {
  font-size: 14px;
  color: var(--color-gray);
  line-height: 1.8;
}

.card-num {
  display: block;
  font-family: var(--font-number);
  font-size: 36px;
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1.1;
  margin-bottom: 12px;
}

/* ---------- Tag ---------- */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 100px;
  border: 1px solid;
  line-height: 1.6;
  background: transparent;
}

.tag--purple {
  color: var(--color-purple-light);
  border-color: var(--color-border-purple);
  background: rgba(156, 39, 176, 0.08);
}

.tag--gold {
  color: var(--color-gold);
  border-color: rgba(255, 215, 0, 0.4);
  background: rgba(255, 215, 0, 0.08);
}

.tag--blue {
  color: var(--color-blue-light);
  border-color: rgba(30, 136, 229, 0.4);
  background: rgba(30, 136, 229, 0.08);
}

.tag--red {
  color: var(--color-red-light);
  border-color: rgba(199, 48, 42, 0.4);
  background: rgba(199, 48, 42, 0.08);
}

.tag--gray {
  color: var(--color-gray);
  border-color: var(--color-border-soft);
  background: var(--color-bg-soft);
}

/* ---------- Media & Image ---------- */
.media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: linear-gradient(145deg, var(--color-deepblue), var(--color-darkgray));
  border: 1px solid var(--color-border-soft);
}

.media--16x9 { aspect-ratio: 16 / 9; }
.media--4x3 { aspect-ratio: 4 / 3; }
.media--1x1 { aspect-ratio: 1 / 1; }
.media--portrait { aspect-ratio: 3 / 4; }

.media > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  background: linear-gradient(180deg, transparent 40%, rgba(11, 29, 58, 0.85));
  z-index: 2;
  pointer-events: none;
}

/* ---------- Divider & Number ---------- */
.divider {
  height: 1px;
  border: none;
  margin: 32px 0;
  background: linear-gradient(90deg, rgba(156, 39, 176, 0.5), rgba(255, 215, 0, 0.3), transparent);
}

.num {
  font-family: var(--font-number);
  font-weight: 700;
  color: var(--color-gold);
  letter-spacing: -0.02em;
}

/* ---------- Reveal Animation ---------- */
.js-enabled [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.js-enabled [data-reveal].is-revealed {
  opacity: 1;
  transform: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  :root {
    --container-w: 100%;
  }

  .header-inner {
    padding: 0 20px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(11, 29, 58, 0.99), rgba(26, 26, 46, 0.98));
    border-bottom: 3px solid var(--color-purple);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s;
  }

  .site-nav[data-open] {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px 20px;
  }

  .nav-item {
    border-bottom: 1px solid var(--color-border-soft);
  }

  .nav-item:last-child {
    border-bottom: none;
  }

  .nav-link {
    padding: 14px 10px;
    font-size: 16px;
    border-radius: 0;
    justify-content: flex-start;
  }

  .nav-link[aria-current="page"] {
    background: rgba(156, 39, 176, 0.16);
    box-shadow: inset 3px 0 0 var(--color-purple);
  }

  .container {
    padding: 0 20px;
  }

  .section {
    padding: 56px 0;
  }

  .section-sub {
    max-width: 55%;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 56px 20px 40px;
  }

  .footer-bottom-inner {
    padding: 16px 20px;
  }

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

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

  .grid-span-8,
  .grid-span-6,
  .grid-span-4 {
    grid-column: span 12;
  }

  .grid-span-2,
  .grid-span-3 {
    grid-column: span 6;
  }
}

@media (max-width: 640px) {
  :root {
    --header-h: 64px;
  }

  .header-inner {
    padding: 0 16px;
    height: var(--header-h);
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    font-size: 18px;
    border-radius: 8px 3px 8px 3px;
  }

  .brand-text-main {
    font-size: 17px;
  }

  .brand-text-sub {
    font-size: 8px;
    letter-spacing: 0.24em;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
  }

  .nav-list {
    padding: 12px 16px;
  }

  .container {
    padding: 0 16px;
  }

  .section {
    padding: 40px 0;
  }

  .section-head {
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
  }

  .section-title {
    font-size: 22px;
  }

  .section-sub {
    max-width: 100%;
    margin-left: 0;
    text-align: left;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 16px 32px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 6px;
    padding: 16px;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .grid-12 {
    grid-template-columns: 1fr;
  }

  .grid-span-2,
  .grid-span-3,
  .grid-span-4,
  .grid-span-6,
  .grid-span-8 {
    grid-column: span 1;
  }

  .to-top {
    right: 16px;
    bottom: 16px;
    width: 40px;
    height: 40px;
  }
}

@media (min-width: 1200px) {
  .container {
    padding: 0 40px;
  }

  .footer-main {
    padding-left: 40px;
    padding-right: 40px;
  }

  .footer-bottom-inner {
    padding-left: 40px;
    padding-right: 40px;
  }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .js-enabled [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .to-top {
    transition: none;
  }

  .to-top.is-visible {
    transform: none;
  }
}
