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

:root {
  --c1: #7a0809;
  --c2: #1a73e8;
  /* Derived brand tokens — all built from the theme colors */
  /* Derived brand tokens — all built from the theme colors */
  --red: var(--c1);
  --red-dark: #7a0809;
  --red-soft: color-mix(in srgb, var(--c1) 7%, #fff);
  --red-glow: color-mix(in srgb, var(--c1) 28%, transparent);
  --accent: var(--c2);
  --accent-soft: color-mix(in srgb, var(--c2) 16%, #fff);
  --accent-glow: color-mix(in srgb, var(--c2) 34%, transparent);

  --ink: #14100f;
  --ink-2: #211a18;
  --ink-3: #2d2926;
  --sand: #f6f1ea;
  --sand-2: #ece4d8;
  --white: #ffffff;
  --muted: #7a7570;
  --muted-2: #9a948d;
  --line: rgba(20, 16, 15, 0.1);
  --line-soft: rgba(20, 16, 15, 0.06);

  --f-display: system-ui;
  --f-body: 'Poppins', 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-b: cubic-bezier(0.34, 1.56, 0.64, 1);

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --max: 1400px;

  --shadow-sm: 0 1px 2px rgba(20, 16, 15, 0.06);
  --shadow-md: 0 12px 30px rgba(20, 16, 15, 0.08);
  --shadow-lg: 0 28px 60px rgba(20, 16, 15, 0.14);
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--f-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}

a:focus,
a:active {
  outline: none !important;
  box-shadow: none !important;
}

button:focus,
button:active {
  outline: none !important;
  box-shadow: none !important;
}

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

h1,
h2,
h3,
h4 {
  font-family: var(--f-display);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
}

.garment-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1003;
  width: 100%;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transform: translate3d(0, 0, 0);
  transition: background 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease;
}

.garment-header.is-mobile-overlay-hidden {
  display: none;
  transform: translate3d(0, 0, 0);
  pointer-events: none;
}

.garment-header.is-scrolled {
  background: #fff;
  border-bottom-color: rgba(15, 15, 15, 0.08);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.garment-header-inner {
  width: min(100%, var(--max));
  height: 102px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
  transition: height 0.28s ease;
}

.garment-header.is-scrolled .garment-header-inner {
  height: 94px;
}

.garment-logo {
  position: relative;
  display: block;
  width: 220px;
  height: 70px;
}

.garment-logo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  transition: opacity 0.25s ease;
}

.logo-dark {
  opacity: 0;
}

.garment-header.is-scrolled .logo-light {
  opacity: 0;
}

.garment-header.is-scrolled .logo-dark {
  opacity: 1;
}

.garment-nav {
  display: flex;
  align-items: stretch;
  justify-content: center;
  min-width: 0;
  gap: clamp(18px, 2.3vw, 38px);
  height: 100%;
}

.garment-nav > a,
.dropdown-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  height: 100%;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.garment-header.is-scrolled .garment-nav > a,
.garment-header.is-scrolled .dropdown-trigger {
  color: #0b0b0b;
}

.garment-nav > a::after,
.dropdown-trigger::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 3px;
  background: var(--c2);
  transform: translateX(-50%);
  transition: width 0.2s ease;
}

.garment-nav > a:hover,
.garment-nav > a.current,
.dropdown-trigger:hover,
.dropdown-trigger.current {
  color: var(--c2);
}

.garment-nav > a:hover::after,
.garment-nav > a.current::after,
.dropdown-trigger:hover::after,
.dropdown-trigger.current::after {
  width: 100%;
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: stretch;
  height: 100%;
}

.products-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 250px;
  padding: 0;
  background: #fff;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 12px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.nav-dropdown:hover .products-dropdown,
.nav-dropdown:focus-within .products-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

/* ── Price List Dropdown ── */
.price-list-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  max-height: calc(100vh - 132px);
  width: min(1400px, calc(100vw - 48px));
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translate(-27%, 0);

  transform-origin: top center;
  transition: opacity 0.25s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.price-list-nav:hover .price-list-dropdown,
.price-list-nav:focus-within .price-list-dropdown {
  opacity: 1;
  visibility: visible;
}

.price-list-header {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 48px;
  padding: 0 20px;
  border-bottom: 1px solid rgba(15, 15, 15, 0.08);
  background: #fff;
  flex-shrink: 0;
}

.price-list-header__label {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c2);
}

.price-list-header__sub {
  font-size: 12px;
  font-weight: 600;
  color: #777;
  letter-spacing: 0.01em;
}

.price-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(188px, 1fr));
  gap: 10px;
  padding: 16px;
  overflow-y: auto;
  overscroll-behavior: contain;
  background: #f6f6f6;
}

.price-list-grid::-webkit-scrollbar {
  width: 8px;
}
.price-list-grid::-webkit-scrollbar-thumb {
  background: rgba(17, 17, 17, 0.2);
  border-radius: 999px;
}

.price-list-card {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-width: 0;
  overflow: hidden;
  min-height: 68px;
  padding: 8px 12px 8px 8px;
  border: 1px solid rgba(15, 15, 15, 0.08);
  background: #fff;
  color: #111;
  text-decoration: none;
  transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.price-list-card img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  display: block;
  border-radius: 4px;
  background: #f1f1f1;
  transition: transform 0.18s ease;
}

.price-list-card span {
  display: block;
  min-width: 0;
  overflow-wrap: anywhere;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
}

.price-list-card:hover {
  border-color: var(--c2);
  background: var(--c2);
  color: #fff;
  box-shadow: 0 10px 24px rgba(186, 28, 45, 0.2);
  transform: translateY(-1px);
}

.price-list-card:hover img {
  transform: scale(1.04);
}

.products-dropdown a {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 0 24px;
  background: #fff;
  color: #111;
  font-size: 15px;
  font-weight: 700;
  transition: background 0.18s ease, color 0.18s ease;
}

.products-dropdown a:hover,
.products-dropdown a.is-active {
  background: var(--c1);
  color: #fff;
}

.submenu-group {
  position: relative;
}

.submenu-group > a {
  justify-content: space-between;
}

.submenu-group > a::after {
  content: '\ea6e';
  font-family: remixicon;
  font-size: 16px;
  font-weight: 400;
}

.child-dropdown {
  position: absolute;
  top: 0;
  left: 100%;
  width: 210px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.submenu-group:hover .child-dropdown,
.submenu-group:focus-within .child-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.child-dropdown a {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 0 20px;
  color: #111;
  font-size: 14px;
  font-weight: 700;
}

.mobile-menu-toggle,
.mobile-menu-head,
.mobile-submenu-toggle,
.mobile-menu-overlay {
  display: none;
}

.mobile-products-panel,
.mobile-child-panel,
.mobile-price-list-panel {
  display: none;
}

.mobile-menu-toggle {
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.96);
  color: #172033;
  font-size: 22px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 1001;
  background: rgba(0, 0, 0, 0.46);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

body.mobile-menu-open .mobile-menu-overlay {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 1280px) {
  .garment-header-inner {
    grid-template-columns: 220px minmax(0, 1fr) auto;
    gap: 22px;
  }

  .garment-logo {
    width: 190px;
    height: 62px;
  }

  .garment-nav {
    gap: 20px;
  }

  .garment-nav > a,
  .dropdown-trigger {
    font-size: 14px;
  }
}

@media (max-width: 980px) {
  .garment-header-inner {
    height: 78px;
    grid-template-columns: 190px 1fr auto;
    padding: 0 20px;
  }

  .garment-header.is-scrolled .garment-header-inner {
    height: 72px;
  }

  .garment-logo {
    width: 172px;
    height: 54px;
  }

  .garment-nav {
    justify-content: flex-start;
    gap: 18px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .garment-nav::-webkit-scrollbar {
    display: none;
  }

  .garment-nav > a,
  .dropdown-trigger {
    font-size: 13px;
  }
}

@media (max-width: 640px) {
  .garment-header {
    background: transparent;
    border-bottom-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(0);
  }

  .garment-header.is-scrolled,
  body.mobile-menu-open .garment-header {
    background: rgba(255, 255, 255, 0.96);
    border-bottom-color: rgba(15, 15, 15, 0.08);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(12px);
  }

  .garment-header-inner {
    grid-template-columns: minmax(120px, 1fr) auto auto;
    gap: 12px;
    height: 60px;
    padding: 0 18px;
  }

  .garment-header.is-scrolled .garment-header-inner {
    height: 60px;
  }

  body.mobile-menu-open .garment-header .logo-light,
  .garment-header.is-scrolled .logo-light {
    opacity: 0;
  }

  body.mobile-menu-open .garment-header .logo-dark,
  .garment-header.is-scrolled .logo-dark {
    opacity: 1;
  }

  .garment-logo {
    width: 146px;
    height: 46px;
  }

  .garment-logo img {
    transition: none;
  }

  .garment-nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1002;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
    width: min(82vw, 330px);
    height: 100vh;
    padding: 18px 22px 80px;
    overflow-y: auto;
    overflow-x: hidden;
    background: #fff;
    box-shadow: -18px 0 40px rgba(0, 0, 0, 0.18);
    transform: translateX(105%);
    transition: transform 0.26s ease;
  }

  body.mobile-menu-open .garment-nav {
    transform: translateX(0);
  }

  .mobile-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;
    margin-bottom: 8px;
    border-bottom: 1px solid rgba(15, 15, 15, 0.08);
    color: #111;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
  }

  .mobile-menu-overlay {
    display: block;
  }

  .mobile-menu-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 5px;
    background: #f4f4f4;
    color: #111;
    font-size: 22px;
  }

  .garment-nav > a,
  .dropdown-trigger {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: auto;
    min-height: 48px;
    padding: 0;
    background: #fff;
    color: #111;
    font-size: 15px;
    border-bottom: 1px solid rgba(15, 15, 15, 0.08);
    transform: none;
  }

  .garment-nav > a::after,
  .dropdown-trigger::after {
    display: none;
  }

  .nav-dropdown {
    display: block;
    width: 100%;
    height: auto;
  }

  .dropdown-trigger {
    display: none;
  }

  .mobile-submenu-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 48px;
    border-bottom: 1px solid rgba(15, 15, 15, 0.08);
    color: #111;
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
  }

  .mobile-submenu-toggle.current {
    color: var(--c2);
  }

  .mobile-submenu-toggle i {
    font-size: 18px;
    transition: transform 0.2s ease;
  }

  .mobile-collapsible.is-open > .mobile-submenu-toggle i {
    transform: rotate(180deg);
  }

  .products-dropdown {
    position: static;
    left: auto;
    top: auto;
    width: 100%;
    max-height: 0;
    padding: 0;
    overflow: hidden;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: max-height 0.24s ease, padding 0.24s ease;
  }

  .nav-dropdown.is-open > .products-dropdown {
    display: block;
    max-height: 620px;
    padding: 8px 0 8px 12px;
  }

  .products-dropdown a {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: flex-start;
    min-height: 38px;
    padding: 0 12px;
    background: #fff;
    color: #111;
    font-size: 14px;
    border-radius: 5px;
    transform: none;
  }

  .products-dropdown a.is-active {
    background: #e83343;
    color: #fff;
  }

  .desktop-products-dropdown {
    display: none !important;
  }

  .mobile-products-panel {
    display: block;
    width: 100%;
    max-height: 0;
    padding: 0;
    overflow: hidden;
    transition: max-height 0.24s ease, padding 0.24s ease;
  }

  .nav-dropdown.is-open > .mobile-products-panel {
    max-height: 620px;
    padding: 8px 0 8px 12px;
  }

  .desktop-price-list-dropdown {
    display: none !important;
  }

  .mobile-price-list-panel {
    display: block;
    width: 100%;
    max-height: 0;
    padding: 0;
    overflow: hidden;
    transition: max-height 0.24s ease, padding 0.24s ease;
  }

  .price-list-nav.is-open > .mobile-price-list-panel {
    max-height: min(420px, 58vh);
    padding: 10px 0;
    overflow-x: hidden;
    overflow-y: auto;
    scrollbar-width: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    display: grid;
    grid-gap: 4px 10px;
  }

  .price-list-nav.is-open > .mobile-price-list-panel::-webkit-scrollbar {
    display: none;
  }

  .mobile-price-list-card {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    width: 100%;
    min-height: 58px;
    padding: 6px 10px 6px 6px;
    margin-bottom: 8px;
    overflow: hidden;
    border: 1px solid rgba(15, 15, 15, 0.08);
    border-radius: 5px;
    background: #fff;
    color: #111;
    grid-template-columns: 1fr;
  }

  .mobile-price-list-card img {
    width: 100%;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    background: #f1f1f1;
  }

  .mobile-price-list-card span {
    min-width: 0;
    padding: 0;
    font-size: 12px;
    line-height: 1.2;
    overflow-wrap: anywhere;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-weight: 500;
  }

  .mobile-products-panel > a,
  .mobile-child-panel > a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    min-height: 38px;
    padding: 0 12px;
    border-radius: 5px;
    background: #fff;
    color: #111;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
  }

  .mobile-products-panel a.is-active,
  .mobile-child-panel a.is-active {
    background: #e83343;
    color: #fff;
  }

  .mobile-child-group {
    width: 100%;
  }

  .mobile-child-group .child-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 38px;
    padding: 0 12px;
    border-bottom: 0;
    border-radius: 5px;
    background: #fff;
    color: #111;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: none;
  }

  .mobile-child-panel {
    display: block;
    width: 100%;
    max-height: 0;
    padding-left: 12px;
    overflow: hidden;
    transition: max-height 0.22s ease, padding 0.22s ease;
  }

  .mobile-child-group.is-open > .mobile-child-panel {
    max-height: 180px;
    padding-top: 4px;
    padding-bottom: 6px;
  }

  .mobile-child-panel > a {
    min-height: 34px;
    padding-left: 14px;
    color: #555;
    font-size: 13px;
    font-weight: 600;
  }

  .submenu-group > a {
    display: none;
  }

  .submenu-group {
    position: static;
    width: 100%;
  }

  .submenu-group .child-toggle {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    min-height: 38px;
    padding: 0 12px;
    border-bottom: 0;
    border-radius: 5px;
    background: #fff;
    color: #111;
    font-size: 14px;
    font-weight: 700;
    text-transform: none;
  }

  .child-dropdown {
    position: static;
    top: auto;
    left: auto;
    display: block;
    width: 100%;
    max-height: 0;
    padding-left: 12px;
    overflow: hidden;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: max-height 0.22s ease, padding 0.22s ease;
  }

  .submenu-group > a::after {
    display: none;
  }

  .submenu-group.is-open > .child-dropdown {
    display: block;
    max-height: 180px;
    padding-top: 4px;
    padding-bottom: 6px;
  }

  .child-dropdown a {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: flex-start;
    min-height: 34px;
    padding-left: 14px;
    background: #fff;
    color: #555;
    font-size: 13px;
    font-weight: 600;
  }

  .mobile-menu-toggle {
    display: inline-flex;
  }
}

/* =================== */

/* Hero容器 */
.page-hero {
  position: relative;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  background-position: right center;
}

/* 底部装饰遮罩 */
.page-hero::after {
  content: '';
  position: absolute;
  background: url(../img/mask-bot-subtract.png);
  background-repeat: no-repeat;
  width: 100%;
  height: 100px;
  right: 0;
  bottom: -22px;
  z-index: 99;
}

/* 背景图片 */
.page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

/* 遮罩层 */
.page-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(100deg, rgba(20, 16, 15, 0.92) 0%, rgb(20 16 15 / 16%) 42%, rgba(20, 16, 15, 0.35) 100%), linear-gradient(to top, rgb(20 16 15 / 34%), transparent 60%);
}

/* Hero内容区域 */
div.page-hero-inner {
  position: relative;
  z-index: 2;
  padding: 11rem 1rem 8rem !important;
}

/* Hero文字内容 */
.page-hero-copy {
  width: min(100%, 660px);
}

/* 面包屑导航 */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 26px;
  flex-wrap: wrap;
}

.breadcrumb a {
  transition: color 0.25s var(--ease);
}

.breadcrumb a:hover {
  color: #fff;
}

.breadcrumb i {
  font-size: 0.85rem;
  opacity: 0.55;
}

.breadcrumb .current {
  color: var(--c2);
}

/* Hero标题 */
.page-hero h1 {
  font-size: clamp(2.3rem, 4vw, 3.6rem);
  color: #fff;
  max-width: 100%;
  text-transform: uppercase;
}

.page-hero h1 em {
  font-style: italic;
  color: var(--c2);
}

/* Hero描述文字 */
.page-hero p {
  margin-top: 18px;
  max-width: 100%;
  font-size: 1.02rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.72);
}

/* ============================================================
   RESPONSIVE
============================================================ */

/* ============================================================
   QUOTE CTA BAND
============================================================ */
.quote-cta {
  position: relative;
  width: 100%;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
}
.quote-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 82% 50%, var(--red-glow), transparent 55%);
}
.quote-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 28px;
  padding: 84px 0;
}
.quote-cta .eyebrow {
  margin-bottom: 14px;
}
.quote-cta h2 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  color: #fff;
}
.quote-cta h2 em {
  font-style: italic;
  color: var(--c2);
}
.quote-cta p {
  margin-top: 14px;
  max-width: 480px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.8;
}
.quote-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-primary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 16px 32px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.35s var(--ease);
}
.btn-primary i,
.btn-ghost i {
  font-size: 1rem;
  transition: transform 0.3s var(--ease);
}
.btn-primary:hover i,
.btn-ghost:hover i {
  transform: translate(2px, -2px);
}
.btn-primary {
  background: var(--c1) !important;
  color: #fff !important;
  box-shadow: 0 6px 20px var(--red-glow);
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px var(--red-glow);
}
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}
.btn-ghost:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
  transform: translateY(-2px);
}

/* Shared eyebrow */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-body);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--c2);
}
.eyebrow-line {
  display: inline-block;
  width: 32px;
  height: 1.5px;
  background: var(--c2);
  flex-shrink: 0;
}

/* ============================================================
   PAGINATION
============================================================ */
.m-page {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 44px;
}
.m-page .page-numbers {
  min-width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  color: var(--ink-3);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1;
  transition: all 0.25s var(--ease);
}
.m-page a.page-numbers:hover {
  border-color: var(--c1);
  color: var(--c1);
  transform: translateY(-2px);
}
.m-page .page-numbers.current {
  color: #fff;
  background: var(--c1);
  border-color: var(--c1);
}
.m-page .page-numbers.dots {
  min-width: 26px;
  padding: 0 2px;
  border-color: transparent;
  background: transparent;
}
.m-page .next,
.m-page .prev {
  min-width: 84px;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.m-page a,
.m-page span {
  margin: 0 !important;
}
