:root {
  --black: #050403;
  --ink: #15110b;
  --charcoal: #211b12;
  --gold: #c99a33;
  --gold-strong: #e5bd63;
  --gold-dark: #8c6424;
  --champagne: #d7c9b5;
  --ivory: #f8f4ec;
  --muted: #766a59;
  --line: rgba(201, 154, 51, 0.26);
  --shadow: 0 18px 60px rgba(5, 4, 3, 0.18);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
select {
  font: inherit;
}

button:disabled,
.gold-button[aria-disabled="true"] {
  opacity: 0.58;
  cursor: not-allowed;
}

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  padding: 0 24px;
  color: var(--ink);
  background: #fff;
  border-bottom: 1px solid rgba(5, 4, 3, 0.08);
  box-shadow: 0 8px 24px rgba(5, 4, 3, 0.04);
  transition: min-height 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled {
  min-height: 74px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(5, 4, 3, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 176px;
  line-height: 1;
}

.logo-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.brand .logo-image {
  width: 176px;
  max-height: 82px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 36px;
  padding: 18px 22px;
  background: #fff;
  border-radius: 8px;
}

.footer-logo .logo-image {
  width: min(520px, 100%);
  max-height: 325px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(20px, 2.1vw, 42px);
  margin-left: auto;
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-item.mega {
  position: static;
}

.desktop-nav .nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  white-space: nowrap;
}

.desktop-nav .nav-link::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  content: "";
  background: var(--gold);
  transition: width 180ms ease;
}

.desktop-nav .nav-link:hover::after,
.desktop-nav .nav-link.active::after,
.nav-item:hover .nav-link::after,
.nav-item:focus-within .nav-link::after,
.nav-item.open .nav-link::after {
  width: 100%;
}

.desktop-nav .nav-link.active,
.nav-item:hover .nav-link,
.nav-item:focus-within .nav-link,
.nav-item.open .nav-link {
  color: var(--gold-dark);
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 4px);
  z-index: 35;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(140, 100, 36, 0.12);
  border-radius: 18px;
  box-shadow: 0 18px 52px rgba(5, 4, 3, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.dropdown-panel::before {
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 44px;
  content: "";
}

.nav-item:hover .dropdown-panel,
.nav-item:focus-within .dropdown-panel,
.nav-item.open .dropdown-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.narrow-menu {
  left: 50%;
  width: 282px;
  max-height: min(76vh, 720px);
  padding: 22px;
  overflow-y: auto;
  transform: translate(-50%, 12px);
}

.nav-item:hover .narrow-menu,
.nav-item:focus-within .narrow-menu,
.nav-item.open .narrow-menu {
  transform: translate(-50%, 0);
}

.narrow-menu a,
.mega-column a {
  display: block;
  padding: 14px 16px;
  border-radius: 8px;
  color: #081522;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.15;
  transition: color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.narrow-menu a:hover,
.narrow-menu a.active,
.mega-column a:hover {
  color: var(--gold-dark);
  background: rgba(201, 154, 51, 0.12);
  transform: translateX(4px);
}

.mega-menu {
  right: 24px;
  left: 24px;
  display: grid;
  gap: 40px;
  min-height: 288px;
  padding: 34px 38px;
}

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

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

.details-menu {
  grid-template-columns: minmax(320px, 1fr) minmax(300px, 1fr);
}

.mega-column {
  min-width: 0;
  padding-right: 30px;
}

.mega-column + .mega-column,
.mega-feature + .mega-column {
  padding-left: 30px;
  border-left: 1px solid rgba(140, 100, 36, 0.18);
}

.mega-column h3,
.mega-feature h3 {
  margin: 0 0 20px;
  color: #061422;
  font-size: 20px;
  line-height: 1.2;
}

.mega-feature p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.55;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: 34px;
}

.search-link {
  position: relative;
  display: block;
  width: 28px;
  height: 28px;
}

.search-link::before {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 14px;
  height: 14px;
  content: "";
  border: 3px solid var(--ink);
  border-radius: 50%;
}

.search-link::after {
  position: absolute;
  right: 3px;
  bottom: 3px;
  width: 11px;
  height: 3px;
  content: "";
  background: var(--ink);
  border-radius: 999px;
  transform: rotate(45deg);
}

.gold-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  color: #110d07;
  background: linear-gradient(135deg, var(--gold-strong), var(--gold) 58%, var(--gold-dark));
  border: 0;
  border-radius: 6px;
  box-shadow: 0 14px 30px rgba(201, 154, 51, 0.24);
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.gold-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(201, 154, 51, 0.3);
}

.gold-button.small {
  min-height: 40px;
  padding: 0 18px;
  font-size: 14px;
}

.gold-button.pill {
  min-height: 58px;
  padding: 0 30px;
  border-radius: 999px;
  gap: 14px;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(140, 100, 36, 0.42);
  border-radius: 6px;
  background: rgba(201, 154, 51, 0.06);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--gold-dark);
}

.mobile-nav {
  position: fixed;
  top: 76px;
  right: 16px;
  left: 16px;
  z-index: 19;
  display: none;
  padding: 14px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.mobile-nav.open {
  display: grid;
  gap: 4px;
}

.mobile-nav a {
  padding: 14px;
  color: var(--ink);
  border-radius: 6px;
  font-weight: 700;
}

.mobile-nav a:hover,
.mobile-nav summary:hover {
  background: rgba(201, 154, 51, 0.12);
}

.mobile-nav-group {
  border-radius: 6px;
}

.mobile-nav summary {
  padding: 14px;
  color: var(--ink);
  border-radius: 6px;
  font-weight: 800;
  cursor: pointer;
  list-style-position: outside;
}

.mobile-nav-group a {
  margin-left: 12px;
  padding: 10px 14px;
  color: var(--muted);
  font-size: 14px;
}

.mobile-nav-group[open] {
  background: rgba(201, 154, 51, 0.06);
}

.floating-contact {
  position: fixed;
  right: 0;
  top: 50%;
  z-index: 40;
  display: grid;
  gap: 8px;
  transform: translateY(-50%);
}

.floating-contact a {
  position: relative;
  width: 230px;
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 24px 0 28px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(140, 100, 36, 0.16);
  border-right: 0;
  border-radius: 10px 0 0 10px;
  box-shadow: 0 10px 26px rgba(5, 4, 3, 0.16);
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  overflow: visible;
  transform: translateX(166px);
  transition: transform 220ms ease, background-color 180ms ease, box-shadow 180ms ease;
  will-change: transform;
}

.floating-contact:hover a,
.floating-contact:focus-within a {
  transform: translateX(0);
}

.floating-contact a:hover,
.floating-contact a:focus-visible {
  background: #fff;
  box-shadow: 0 14px 34px rgba(5, 4, 3, 0.2);
}

.contact-label {
  white-space: nowrap;
}

.contact-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.contact-icon.chat {
  background-image: url("assets/contact-wechat.svg?v=2");
}

.contact-icon.whatsapp {
  background-image: url("assets/contact-whatsapp.svg?v=3");
}

.contact-icon.phone {
  background-image: url("assets/contact-phone.svg?v=3");
}

.contact-icon.email {
  background-image: url("assets/contact-email.svg?v=3");
}

.contact-qr {
  position: absolute;
  top: 50%;
  right: calc(100% + 14px);
  display: grid;
  gap: 8px;
  width: 184px;
  padding: 12px;
  color: var(--ink);
  text-align: center;
  background: #fff;
  border: 1px solid rgba(140, 100, 36, 0.2);
  border-radius: 12px;
  box-shadow: 0 18px 44px rgba(5, 4, 3, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translate(10px, -50%);
  transition: opacity 180ms ease, transform 180ms ease;
}

.contact-qr::after {
  position: absolute;
  top: 50%;
  left: 100%;
  width: 12px;
  height: 12px;
  content: "";
  background: #fff;
  border-top: 1px solid rgba(140, 100, 36, 0.2);
  border-right: 1px solid rgba(140, 100, 36, 0.2);
  transform: translate(-6px, -50%) rotate(45deg);
}

.contact-qr img {
  display: block;
  width: 160px;
  height: 160px;
  object-fit: contain;
  background: #fff;
  border-radius: 6px;
}

.contact-qr span {
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--muted);
  white-space: normal;
}

.floating-contact a.has-qr:hover .contact-qr,
.floating-contact a.has-qr:focus-visible .contact-qr,
.floating-contact a.has-qr.qr-open .contact-qr {
  opacity: 1;
  pointer-events: auto;
  transform: translate(0, -50%);
}

.hero {
  position: relative;
  min-height: 850px;
  overflow: hidden;
  background: var(--black);
}

.carousel-track,
.carousel-slide,
.slide-media,
.hero-shade,
.community-bg {
  position: absolute;
  inset: 0;
}

.carousel-slide {
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 650ms ease, visibility 650ms ease;
}

.carousel-slide.active {
  opacity: 1;
  visibility: visible;
}

.slide-media {
  background-image: url("assets/black-gold-reference.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  filter: saturate(1.04) contrast(1.06);
  transform: scale(1.02);
}

.slide-a .slide-media {
  background-position: center;
}

.slide-b .slide-media {
  background-position: 74% 20%;
}

.slide-c .slide-media {
  background-position: 18% 72%;
}

.hero-shade {
  background:
    radial-gradient(circle at 72% 42%, rgba(201, 154, 51, 0.16), rgba(5, 4, 3, 0) 34%),
    linear-gradient(90deg, rgba(5, 4, 3, 0.96) 0%, rgba(5, 4, 3, 0.78) 44%, rgba(5, 4, 3, 0.34) 100%),
    linear-gradient(0deg, rgba(5, 4, 3, 0.92), rgba(5, 4, 3, 0) 36%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding-top: 80px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold-strong);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--gold-dark);
}

.hero h1,
.hero h2,
.section-heading h2,
.weekend-band h2,
.community h2,
.feature-copy h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 690px;
  font-size: clamp(48px, 8vw, 98px);
  line-height: 0.92;
}

.hero h2 {
  max-width: 780px;
  color: #fff;
  font-size: clamp(48px, 7vw, 86px);
  line-height: 0.96;
}

.hero-copy {
  max-width: 580px;
  margin: 24px 0 34px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 19px;
  line-height: 1.7;
}

.white-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  padding: 0 34px;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(229, 189, 99, 0.48);
  border-radius: 999px;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24);
  font-size: 18px;
  font-weight: 800;
}

.carousel-arrow {
  position: absolute;
  top: 52%;
  z-index: 4;
  width: 54px;
  height: 54px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.carousel-arrow::before {
  position: absolute;
  inset: 14px;
  content: "";
  border-top: 3px solid rgba(255, 255, 255, 0.78);
  border-left: 3px solid rgba(255, 255, 255, 0.78);
}

.carousel-arrow.prev {
  left: 24px;
}

.carousel-arrow.next {
  right: 24px;
}

.carousel-arrow.prev::before {
  transform: rotate(-45deg);
}

.carousel-arrow.next::before {
  transform: rotate(135deg);
}

.carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 34px;
  z-index: 4;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.carousel-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 1px solid var(--gold-strong);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

.carousel-dots button.active {
  width: 32px;
  background: var(--gold-strong);
}

.intro-section {
  padding: 78px 0 0;
  overflow: hidden;
  background: #fff;
  color: var(--ink);
}

.intro-heading {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  text-align: center;
}

.intro-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.05;
  font-weight: 800;
}

.intro-heading p {
  width: min(1180px, 100%);
  margin: 28px auto 0;
  color: #1f1b14;
  font-size: 21px;
  line-height: 1.45;
}

.intro-actions {
  display: flex;
  justify-content: center;
  gap: 26px;
  margin-top: 46px;
}

.ornament-divider {
  position: relative;
  width: min(780px, calc(100% - 48px));
  height: 54px;
  margin: 70px auto 62px;
}

.ornament-divider::before {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  content: "";
  background: rgba(140, 100, 36, 0.3);
}

.ornament-divider span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  border: 2px solid var(--gold-strong);
  background: #fff;
  transform: translate(-50%, -50%) rotate(45deg);
}

.ornament-divider span::after {
  position: absolute;
  inset: 4px;
  content: "";
  background: var(--gold);
}

.intro-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 0.95fr);
  gap: 54px;
  align-items: center;
  width: min(1540px, calc(100% - 48px));
  margin-left: auto;
  padding-bottom: 0;
}

.intro-copy {
  padding: 20px 0 82px;
}

.intro-copy h3 {
  max-width: 760px;
  margin: 0 0 44px;
  color: var(--ink);
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.28;
}

.intro-copy ul {
  display: grid;
  gap: 16px;
  margin: 0 0 42px;
  padding: 0;
  list-style: none;
}

.intro-copy li {
  position: relative;
  padding-left: 42px;
  color: #17130d;
  font-size: 22px;
  line-height: 1.35;
}

.intro-copy li::before {
  position: absolute;
  top: 0.38em;
  left: 2px;
  width: 14px;
  height: 14px;
  content: "";
  border: 2px solid var(--gold-strong);
  background: #fff;
  box-shadow: inset 0 0 0 3px #fff, inset 0 0 0 9px var(--gold);
  transform: rotate(45deg);
}

.intro-copy strong {
  font-weight: 900;
}

.video-panel {
  position: relative;
  min-height: 425px;
  align-self: stretch;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5, 4, 3, 0.18), rgba(5, 4, 3, 0.08)),
    url("assets/black-gold-reference.jpg") center/cover no-repeat;
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
}

.video-panel::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(215, 201, 181, 0.28);
}

.play-button {
  position: absolute;
  left: 18%;
  top: 56%;
  z-index: 1;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 26px rgba(5, 4, 3, 0.22), inset 0 0 0 12px rgba(255, 255, 255, 0.36);
  transform: translateY(-50%);
}

.play-button::before {
  position: absolute;
  top: 50%;
  left: 53%;
  width: 0;
  height: 0;
  content: "";
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  border-left: 26px solid var(--gold);
  transform: translate(-50%, -50%);
}

.card-showcase {
  padding: 72px max(24px, calc((100vw - 1200px) / 2)) 76px;
  background: #fff;
  color: var(--ink);
  text-align: center;
}

.card-showcase > h2,
.showcase-summary h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.1;
  font-weight: 800;
}

.product-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  width: min(100%, 1080px);
  margin: 52px auto 34px;
}

.product-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(140, 100, 36, 0.1);
  box-shadow: 0 10px 28px rgba(5, 4, 3, 0.09);
}

.product-card-image {
  min-height: 0;
  aspect-ratio: 370 / 360;
  background-image:
    linear-gradient(180deg, rgba(5, 4, 3, 0.06), rgba(5, 4, 3, 0.12)),
    url("assets/black-gold-reference.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}

.crop-d {
  background-position: 44% 38%;
}

.crop-e {
  background-position: 78% 64%;
}

.crop-f {
  background-position: 23% 55%;
}

.product-card-body {
  display: grid;
  justify-items: center;
  gap: 12px;
  min-height: 178px;
  padding: 18px 18px 24px;
}

.product-category-label {
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-card h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
}

.product-card p {
  max-width: 280px;
  margin: 0;
  color: #17130d;
  font-size: 14px;
  line-height: 1.45;
}

.card-button {
  min-height: 46px;
  margin-top: 8px;
  padding: 0 24px;
  border-radius: 999px;
  gap: 12px;
  font-size: 14px;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}

.product-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  border-radius: 999px;
  padding: 0 10px;
  color: #20180e;
  background: rgba(201, 154, 51, 0.15);
  font-size: 12px;
  font-weight: 800;
}

.product-title-link,
.product-media-link,
.product-detail-link {
  color: inherit;
  text-decoration: none;
}

.product-title-link:hover,
.product-detail-link:hover {
  color: var(--gold);
}

.product-media-link {
  display: block;
}

.product-card-actions,
.search-result-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.ornament-divider.compact {
  width: min(560px, calc(100% - 48px));
  height: 46px;
  margin: 34px auto 24px;
}

.showcase-summary {
  width: min(980px, 100%);
  margin: 0 auto;
}

.showcase-summary p {
  margin: 22px auto 0;
  color: #17130d;
  line-height: 1.55;
}

.wide-video-section {
  padding: 22px max(24px, calc((100vw - 1400px) / 2)) 18px;
  background: #fff;
  color: var(--ink);
  text-align: center;
}

.wide-video-panel {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1920 / 550;
  min-height: 320px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(5, 4, 3, 0.16), rgba(5, 4, 3, 0.28)),
    url("assets/black-gold-reference.jpg") center/cover no-repeat;
}

.wide-video-panel::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(215, 201, 181, 0.18);
}

.play-button.center {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.media-copy-section {
  display: grid;
  grid-template-columns: minmax(320px, 470px) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  width: min(980px, calc(100% - 48px));
  margin: 24px auto 86px;
  padding: 34px;
  background: #fff;
  border: 1px solid rgba(140, 100, 36, 0.12);
}

.media-copy-image {
  width: 100%;
  aspect-ratio: 470 / 445;
  background:
    linear-gradient(180deg, rgba(5, 4, 3, 0.08), rgba(5, 4, 3, 0.16)),
    url("assets/black-gold-reference.jpg") 38% 45% / cover no-repeat;
}

.media-copy-content {
  text-align: left;
}

.media-copy-content h2 {
  max-width: 560px;
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.12;
}

.media-copy-content p {
  margin: 0 0 18px;
  color: #17130d;
}

.media-copy-content ul {
  display: grid;
  gap: 11px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.media-copy-content li {
  position: relative;
  padding-left: 30px;
  color: #17130d;
  line-height: 1.35;
}

.media-copy-content li::before {
  position: absolute;
  top: 0.35em;
  left: 2px;
  width: 11px;
  height: 11px;
  content: "";
  border: 2px solid var(--gold-strong);
  box-shadow: inset 0 0 0 3px #fff, inset 0 0 0 8px var(--gold);
  transform: rotate(45deg);
}

.industry-section {
  padding: 24px max(24px, calc((100vw - 1120px) / 2)) 78px;
  background: #fff;
  color: var(--ink);
}

.industry-heading {
  text-align: center;
}

.industry-heading h2 {
  margin: 0 0 12px;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.1;
  font-weight: 800;
}

.industry-heading p {
  margin: 0;
  color: #17130d;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 44px 30px;
  width: min(100%, 960px);
  margin: 42px auto 44px;
}

.industry-grid article {
  text-align: center;
}

.industry-image {
  width: 100%;
  aspect-ratio: 370 / 320;
  border-radius: 8px;
  background-image:
    linear-gradient(180deg, rgba(5, 4, 3, 0.06), rgba(5, 4, 3, 0.13)),
    url("assets/black-gold-reference.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0 8px 22px rgba(5, 4, 3, 0.08);
}

.industry-a {
  background-position: 25% 28%;
}

.industry-b {
  background-position: 52% 32%;
}

.industry-c {
  background-position: 79% 28%;
}

.industry-d {
  background-position: 18% 70%;
}

.industry-e {
  background-position: 48% 68%;
}

.industry-f {
  background-position: 84% 64%;
}

.industry-grid h3,
.inquiry-grid h3 {
  margin: 14px 0 8px;
  font-size: 20px;
  line-height: 1.2;
}

.industry-grid p,
.inquiry-grid p {
  margin: 0;
  color: #17130d;
  line-height: 1.45;
}

.inquiry-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  width: min(100%, 900px);
  margin: 38px auto 0;
}

.inquiry-grid article {
  display: grid;
  align-content: start;
}

.inquiry-media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 570 / 360;
  overflow: hidden;
  border: 1px solid rgba(140, 100, 36, 0.16);
  background:
    linear-gradient(180deg, rgba(5, 4, 3, 0.12), rgba(5, 4, 3, 0.2)),
    url("assets/black-gold-reference.jpg") 34% 42% / cover no-repeat;
}

.inquiry-media.alt {
  background-position: 72% 42%;
}

.play-button.small {
  width: 64px;
  height: 64px;
}

.play-button.small::before {
  border-top-width: 13px;
  border-bottom-width: 13px;
  border-left-width: 19px;
}

.inquiry-grid .card-button {
  justify-self: start;
  margin-top: 24px;
}

.printing-cta {
  position: relative;
  padding: 58px 24px 66px;
  color: #fff;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(5, 4, 3, 0.76), rgba(5, 4, 3, 0.82)),
    url("assets/black-gold-reference.jpg") center/cover fixed;
}

.printing-cta-content {
  width: min(860px, 100%);
  margin: 0 auto;
}

.printing-cta h2 {
  margin: 0 0 18px;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.12;
  font-weight: 800;
}

.printing-cta p {
  margin: 0 auto 18px;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.45;
}

.printing-cta .gold-text {
  color: var(--gold-strong);
  font-weight: 800;
}

.printing-detail {
  padding: 72px max(24px, calc((100vw - 1100px) / 2)) 80px;
  background: #fff;
  color: var(--ink);
}

.printing-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 470px;
  gap: 68px;
  align-items: center;
}

.printing-detail-copy {
  text-align: left;
}

.printing-detail-copy h2 {
  margin: 0 0 28px;
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1.18;
}

.printing-detail-copy h2 span {
  color: var(--gold-dark);
}

.printing-detail-copy p {
  margin: 0 0 22px;
  color: #17130d;
  line-height: 1.55;
}

.printing-detail-image {
  width: 100%;
  aspect-ratio: 470 / 445;
  background:
    linear-gradient(180deg, rgba(5, 4, 3, 0.08), rgba(5, 4, 3, 0.16)),
    url("assets/black-gold-reference.jpg") 66% 45% / cover no-repeat;
}

.printing-service-heading {
  margin: 0 auto 46px;
  text-align: center;
}

.printing-service-heading h2 {
  margin: 0 0 18px;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.12;
}

.printing-service-heading p {
  margin: 0;
  color: #17130d;
}

.printing-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.printing-service-grid article {
  text-align: center;
}

.service-image {
  width: 100%;
  aspect-ratio: 370 / 260;
  border-radius: 8px;
  background-image:
    linear-gradient(180deg, rgba(5, 4, 3, 0.08), rgba(5, 4, 3, 0.16)),
    url("assets/black-gold-reference.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0 8px 24px rgba(5, 4, 3, 0.1);
}

.service-a {
  background-position: 18% 38%;
}

.service-b {
  background-position: 52% 46%;
}

.service-c {
  background-position: 82% 42%;
}

.printing-service-grid h3 {
  margin: 18px 0 10px;
  font-size: 21px;
}

.printing-service-grid p {
  margin: 0 auto;
  max-width: 310px;
  color: #17130d;
  line-height: 1.45;
}

.category-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--black);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.category-strip a {
  display: grid;
  gap: 6px;
  min-height: 126px;
  place-content: center;
  padding: 18px;
  color: var(--ivory);
  text-align: center;
  background: linear-gradient(180deg, #15110b, #080604);
}

.category-strip strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 27px;
}

.category-strip span {
  color: var(--gold-strong);
  font-size: 13px;
  font-weight: 700;
}

.section {
  padding: 92px max(24px, calc((100vw - 1180px) / 2));
}

.light-section {
  background: var(--ivory);
}

.dark-section {
  color: var(--ivory);
  background:
    linear-gradient(180deg, rgba(5, 4, 3, 0.94), rgba(5, 4, 3, 0.98)),
    url("assets/black-gold-reference.jpg") center/cover fixed;
}

.section-heading {
  margin-bottom: 38px;
}

.section-heading.split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.section-heading.centered {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading h2,
.feature-copy h2,
.weekend-band h2,
.community h2 {
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1;
}

.text-link {
  color: var(--gold-dark);
  font-weight: 800;
  border-bottom: 2px solid currentColor;
}

.listing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.listing-card,
.steps-grid article,
.tab-panel,
.review-grid figure {
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.listing-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(140, 100, 36, 0.16);
}

.listing-image {
  position: relative;
  min-height: 248px;
  background-image: url("assets/black-gold-reference.jpg");
  background-size: 980px auto;
  background-repeat: no-repeat;
}

.crop-a {
  background-position: 36% 15%;
}

.crop-b {
  background-position: 77% 13%;
}

.crop-c {
  background-position: 18% 74%;
}

.badge,
.status {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(5, 4, 3, 0.84);
  color: var(--gold-strong);
  font-size: 12px;
  font-weight: 800;
}

.status {
  right: 16px;
  left: auto;
  color: #fff;
}

.listing-body {
  padding: 22px;
}

.meta,
.location {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.listing-body h3 {
  margin: 8px 0 10px;
  font-size: 23px;
}

.listing-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(140, 100, 36, 0.18);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.listing-foot strong {
  color: var(--ink);
}

.weekend-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  gap: 46px;
  align-items: center;
  padding: 92px max(24px, calc((100vw - 1180px) / 2));
  color: var(--ivory);
  background: var(--black);
  border-block: 1px solid var(--line);
}

.weekend-band p:not(.eyebrow) {
  max-width: 600px;
  margin: 22px 0 30px;
  color: rgba(248, 244, 236, 0.72);
  line-height: 1.8;
}

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

.region-grid span {
  min-height: 112px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 22px;
  background: #15110b;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: rgba(248, 244, 236, 0.7);
}

.region-grid strong {
  display: block;
  color: #fff;
  font-size: 21px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.steps-grid article {
  padding: 34px;
  background: rgba(248, 244, 236, 0.06);
  border: 1px solid var(--line);
}

.steps-grid span {
  display: block;
  margin-bottom: 42px;
  color: var(--gold-strong);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 56px;
  line-height: 0.8;
}

.steps-grid h3 {
  margin: 0 0 12px;
  font-size: 24px;
}

.steps-grid p {
  margin: 0;
  color: rgba(248, 244, 236, 0.7);
  line-height: 1.7;
}

.feature-tabs {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.75fr);
  gap: 46px;
  align-items: center;
}

.feature-copy p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.8;
}

.tab-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.tab-button {
  min-height: 42px;
  padding: 0 16px;
  color: var(--ink);
  background: transparent;
  border: 1px solid rgba(140, 100, 36, 0.3);
  border-radius: 6px;
  font-weight: 800;
  cursor: pointer;
}

.tab-button.active {
  color: #100c06;
  background: var(--gold-strong);
  border-color: var(--gold-strong);
}

.tab-panels {
  position: relative;
}

.tab-panel {
  display: none;
  min-height: 310px;
  padding: 36px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(248, 244, 236, 0.94)),
    url("assets/black-gold-reference.jpg") right top/520px auto no-repeat;
  border: 1px solid rgba(140, 100, 36, 0.18);
}

.tab-panel.active {
  display: grid;
  align-content: end;
  gap: 14px;
}

.tab-panel h3 {
  max-width: 430px;
  margin: 0;
  font-size: 30px;
}

.tab-panel p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.review-section {
  background: #fff;
}

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

.review-grid figure {
  margin: 0;
  padding: 34px;
  background: var(--ivory);
  border: 1px solid rgba(140, 100, 36, 0.16);
}

.review-grid blockquote {
  margin: 0 0 26px;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 30px;
  line-height: 1.16;
}

.review-grid figcaption {
  color: var(--ink);
  font-weight: 800;
}

.review-grid span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
}

.inner-page {
  background: #fff;
}

.inner-header {
  position: sticky;
}

.inner-nav {
  gap: clamp(16px, 1.7vw, 30px);
}

.inner-hero {
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 48px;
  align-items: center;
  padding: 82px max(24px, calc((100vw - 1180px) / 2));
  color: #fff;
  background:
    linear-gradient(90deg, rgba(5, 4, 3, 0.94) 0%, rgba(5, 4, 3, 0.82) 52%, rgba(5, 4, 3, 0.72) 100%),
    url("assets/black-gold-reference.jpg") center/cover no-repeat;
}

.inner-hero h1 {
  max-width: 760px;
  margin: 0 0 22px;
  color: #fff;
  font-size: clamp(46px, 6vw, 78px);
  line-height: 0.98;
}

.inner-hero p {
  max-width: 640px;
  color: rgba(248, 244, 236, 0.88);
  font-size: 18px;
  line-height: 1.6;
}

.inner-hero .gold-button {
  margin-top: 18px;
}

.inner-hero-panel {
  min-height: 360px;
  display: grid;
  place-items: center;
  padding: 34px;
  color: var(--gold-strong);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03)),
    rgba(5, 4, 3, 0.48);
  border: 1px solid rgba(229, 189, 99, 0.32);
  border-radius: 8px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.36);
  text-align: center;
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.05;
}

.inner-section {
  padding: 82px max(24px, calc((100vw - 1180px) / 2));
  background: #fff;
}

.inner-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 34px;
}

.inner-card {
  background: var(--ivory);
  border: 1px solid rgba(140, 100, 36, 0.16);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(5, 4, 3, 0.08);
}

.inner-card .card-media {
  min-height: 220px;
  display: grid;
  place-items: center;
  padding: 24px;
  color: rgba(5, 4, 3, 0.72);
  background:
    linear-gradient(180deg, rgba(215, 201, 181, 0.58), rgba(215, 201, 181, 0.3)),
    url("assets/black-gold-reference.jpg") center/cover no-repeat;
  font-size: 28px;
  font-weight: 900;
  text-align: center;
}

.inner-card h3,
.inner-card p {
  margin-right: 22px;
  margin-left: 22px;
}

.inner-card h3 {
  margin-top: 22px;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 22px;
}

.inner-card p {
  margin-bottom: 24px;
  color: var(--muted);
  line-height: 1.55;
}

.inner-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 58px;
  padding: 82px max(24px, calc((100vw - 1180px) / 2));
  background: var(--ivory);
  border-top: 1px solid rgba(140, 100, 36, 0.12);
}

.inner-split h2 {
  margin: 0 0 22px;
  color: var(--ink);
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.08;
}

.inner-split p {
  max-width: 690px;
  color: var(--muted);
  line-height: 1.62;
}

.inner-list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.inner-list li {
  position: relative;
  margin-bottom: 14px;
  padding-left: 28px;
  color: var(--ink);
  font-weight: 700;
}

.inner-list li::before {
  position: absolute;
  top: 0.45em;
  left: 0;
  width: 10px;
  height: 10px;
  content: "";
  background: var(--gold);
  transform: rotate(45deg);
}

.inner-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.inner-metrics div {
  min-height: 132px;
  display: grid;
  align-content: center;
  padding: 24px;
  background: #fff;
  border: 1px solid rgba(140, 100, 36, 0.16);
  border-radius: 8px;
}

.inner-metrics strong {
  color: var(--gold-dark);
  font-size: 34px;
  line-height: 1;
}

.inner-metrics span {
  margin-top: 10px;
  color: var(--muted);
  font-weight: 700;
}

.inner-footer-bottom a {
  display: inline-block;
  margin: 0;
  color: var(--gold-strong);
  font-weight: 800;
}

.source-banner {
  min-height: 520px;
  display: grid;
  align-items: center;
  padding: 82px max(24px, calc((100vw - 1180px) / 2));
  color: #fff;
  background:
    linear-gradient(90deg, rgba(5, 4, 3, 0.94), rgba(5, 4, 3, 0.72)),
    url("assets/black-gold-reference.jpg") center/cover no-repeat;
}

.source-banner h1 {
  max-width: 720px;
  margin: 0 0 22px;
  color: #fff;
  font-size: clamp(46px, 6vw, 76px);
  line-height: 1;
}

.source-banner p {
  max-width: 640px;
  color: rgba(248, 244, 236, 0.9);
  font-size: 18px;
  line-height: 1.6;
}

.source-banner .gold-button {
  margin-top: 18px;
}

.source-section {
  padding: 78px max(24px, calc((100vw - 1180px) / 2));
  background: #fff;
}

.managed-content-section {
  display: grid;
  gap: 20px;
}

.managed-content-body {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.source-section + .source-section {
  border-top: 1px solid rgba(140, 100, 36, 0.1);
}

.source-image {
  min-height: 260px;
  display: grid;
  place-items: center;
  color: rgba(5, 4, 3, 0.72);
  background:
    linear-gradient(180deg, rgba(215, 201, 181, 0.58), rgba(215, 201, 181, 0.34)),
    url("assets/black-gold-reference.jpg") center/cover no-repeat;
  border: 1px solid rgba(140, 100, 36, 0.14);
  border-radius: 8px;
  font-size: 34px;
  font-weight: 900;
  text-align: center;
  overflow: hidden;
}

.source-image img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  display: block;
}

.source-image.large {
  min-height: 520px;
}

.source-image.thumb {
  min-height: 116px;
  font-size: 16px;
}

.source-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: 56px;
  align-items: center;
}

.source-split.reverse {
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1fr);
}

.source-split h2,
.timeline h2,
.detail-copy h1 {
  margin: 0 0 22px;
  color: var(--ink);
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.08;
}

.source-split p,
.wide-copy,
.detail-copy dd,
.detail-tabs p {
  color: var(--muted);
  line-height: 1.65;
}

.number-grid,
.source-process,
.source-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: 34px;
}

.number-grid article,
.source-process article,
.source-feature-grid article,
.source-product-grid article {
  background: #fff;
  border: 1px solid rgba(140, 100, 36, 0.14);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(5, 4, 3, 0.08);
  overflow: hidden;
}

.number-grid strong {
  display: block;
  padding: 22px 22px 0;
  color: var(--gold-dark);
  font-size: 36px;
}

.number-grid h3,
.source-process h3,
.source-feature-grid h3,
.source-product-grid h3 {
  margin: 20px 22px 10px;
  color: var(--ink);
  font-size: 21px;
}

.number-grid p,
.source-process p,
.source-feature-grid p,
.source-product-grid p {
  margin: 0 22px 24px;
  color: var(--muted);
  line-height: 1.55;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  background: var(--ivory);
}

.metric-row div {
  padding: 30px;
  background: #fff;
  border: 1px solid rgba(140, 100, 36, 0.14);
  border-radius: 8px;
  text-align: center;
}

.metric-row strong {
  display: block;
  color: var(--gold-dark);
  font-size: 42px;
}

.metric-row span {
  color: var(--muted);
  font-weight: 700;
}

.source-product-grid {
  display: grid;
  gap: 24px;
  margin-top: 34px;
}

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

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

.source-product-grid.dynamic {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

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

.source-product-grid .gold-button {
  margin: 0 22px 24px;
}

.source-product-grid .product-meta {
  justify-content: flex-start;
  margin: 0 22px 16px;
}

.product-card-image {
  min-height: 220px;
  overflow: hidden;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.product-loading {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.category-faq-quote {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.72fr);
  gap: 56px;
  align-items: start;
}

.category-faq-panel h2 {
  max-width: 760px;
  margin: 8px 0 0;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(40px, 4.7vw, 62px);
  line-height: 1;
}

.category-faq-list {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.category-faq-list details {
  background: #fff;
  border: 1px solid rgba(140, 100, 36, 0.16);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(5, 4, 3, 0.08);
  overflow: hidden;
}

.category-faq-list summary {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

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

.category-faq-list summary::after {
  content: "+";
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #130f09;
  background: rgba(201, 154, 51, 0.18);
  font-size: 22px;
  line-height: 1;
}

.category-faq-list details[open] summary::after {
  content: "-";
}

.category-faq-list p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
  line-height: 1.65;
}

.category-quote-card {
  position: sticky;
  top: 104px;
  padding: 42px 34px;
  color: #fff;
  background: linear-gradient(135deg, #d7a93b, #9a6c1d);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 24px 46px rgba(5, 4, 3, 0.18);
}

.category-quote-card h2 {
  margin: 0 0 28px;
  color: #fff;
  font-size: clamp(28px, 2.5vw, 38px);
  line-height: 1.1;
  text-align: center;
}

.inline-quote-form {
  grid-template-columns: 1fr;
  gap: 14px;
}

.inline-quote-form label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.inline-quote-form input,
.inline-quote-form textarea {
  min-height: 66px;
  border: 0;
  border-radius: 2px;
  padding: 18px 20px;
  color: #221a10;
  font-size: 18px;
}

.inline-quote-form textarea {
  min-height: 126px;
}

.inline-quote-submit {
  min-height: 62px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.86);
  border-radius: 10px;
  color: #fff;
  background: transparent;
  font: inherit;
  font-size: 18px;
  box-shadow: none;
}

.category-quote-card .quote-success {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
}

.faq-hero {
  min-height: 520px;
  display: grid;
  align-items: start;
  justify-items: center;
  padding: 84px 24px;
  text-align: center;
  color: #080704;
  background:
    linear-gradient(180deg, rgba(247, 247, 244, 0.86), rgba(247, 247, 244, 0.72)),
    url("assets/black-gold-reference.jpg") center 30%/cover no-repeat;
}

.faq-hero-content {
  display: grid;
  justify-items: center;
  gap: 28px;
  width: min(100%, 960px);
}

.faq-hero h1 {
  margin: 0;
  color: #080704;
  font-size: clamp(38px, 4.6vw, 64px);
  line-height: 1.05;
  font-weight: 900;
}

.faq-hero-button {
  min-width: 174px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 0 28px;
  color: #080704;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(5, 4, 3, 0.72);
  border-radius: 999px;
  font-weight: 800;
}

.faq-page-section {
  padding: 62px max(24px, calc((100vw - 1180px) / 2)) 86px;
  background: #fff;
}

.faq-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 270px;
  gap: 34px;
  align-items: start;
}

.faq-page-main {
  min-width: 0;
}

.faq-search {
  position: relative;
  display: block;
  margin-bottom: 26px;
}

.faq-search span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.faq-search input {
  width: 100%;
  min-height: 42px;
  padding: 0 54px 0 14px;
  border: 1px solid rgba(33, 27, 18, 0.2);
  border-radius: 0;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.faq-search::before {
  position: absolute;
  top: 50%;
  right: 18px;
  width: 18px;
  height: 18px;
  content: "";
  border: 4px solid #56524a;
  border-radius: 50%;
  transform: translateY(-55%);
  pointer-events: none;
}

.faq-search::after {
  position: absolute;
  top: 50%;
  right: 13px;
  width: 13px;
  height: 4px;
  content: "";
  background: #56524a;
  border-radius: 999px;
  transform: translateY(8px) rotate(45deg);
  transform-origin: left center;
  pointer-events: none;
}

.faq-no-results {
  margin: 0 0 28px;
  padding: 18px;
  color: var(--muted);
  background: var(--ivory);
  border: 1px solid rgba(140, 100, 36, 0.14);
  font-weight: 800;
}

.faq-group {
  scroll-margin-top: 110px;
  margin-bottom: 30px;
}

.faq-group h2 {
  margin: 0 0 18px;
  color: #172636;
  font-family: Inter, Arial, sans-serif;
  font-size: clamp(24px, 2.4vw, 31px);
  line-height: 1.2;
  font-weight: 900;
}

.faq-accordion {
  border: 1px solid rgba(33, 27, 18, 0.16);
  border-bottom: 0;
}

.faq-item {
  background: #fff;
  border-bottom: 1px solid rgba(33, 27, 18, 0.16);
}

.faq-item summary {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 17px;
  color: #172636;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

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

.faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  color: #172636;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "×";
}

.faq-answer {
  padding: 4px 17px 28px;
  color: #3f4750;
  font-size: 14px;
  line-height: 1.68;
}

.faq-answer p {
  margin: 0;
}

.faq-toc {
  position: sticky;
  top: 112px;
  padding-top: 58px;
  color: #172636;
}

.faq-toc strong {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-weight: 900;
}

.faq-toc strong span {
  width: 24px;
  height: 24px;
  display: inline-block;
  border-radius: 50%;
  background: #2f7ff3;
  position: relative;
}

.faq-toc strong span::before,
.faq-toc strong span::after {
  position: absolute;
  content: "";
  background: #fff;
}

.faq-toc strong span::before {
  top: 7px;
  left: 6px;
  width: 11px;
  height: 7px;
  border-radius: 2px;
}

.faq-toc strong span::after {
  top: 13px;
  left: 9px;
  width: 6px;
  height: 6px;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.faq-toc ol {
  margin: 0;
  padding-left: 24px;
}

.faq-toc li {
  margin: 0 0 10px;
  color: #576779;
  font-size: 14px;
}

.faq-toc a {
  color: #2c6e9f;
}

.blog-card-grid article,
.contact-info-grid article {
  padding-bottom: 24px;
}

.blog-card-grid .text-link {
  margin: 0 22px;
  color: var(--gold-dark);
  font-weight: 900;
}

.contact-page-panel .source-feature-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mini-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.mini-list b {
  padding: 16px 18px;
  background: var(--ivory);
  border-left: 4px solid var(--gold);
}

.dark-band {
  color: #fff;
  background:
    linear-gradient(180deg, rgba(5, 4, 3, 0.95), rgba(5, 4, 3, 0.98)),
    url("assets/black-gold-reference.jpg") center/cover no-repeat;
}

.dark-band h2,
.dark-band h3,
.dark-band .section-heading h2,
.dark-band .source-split h2 {
  color: #fff;
}

.dark-band p,
.dark-band li {
  color: rgba(248, 244, 236, 0.88);
}

.dark-band .source-feature-grid article {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(229, 189, 99, 0.24);
}

.pagination {
  margin-top: 34px;
  color: var(--gold-dark);
  font-weight: 900;
  text-align: center;
}

.pagination span {
  display: inline-block;
  margin-left: 12px;
  color: var(--ink);
}

.product-detail-layout {
  display: grid;
  grid-template-columns: minmax(420px, 0.95fr) minmax(0, 1fr);
  gap: 54px;
  align-items: start;
}

.detail-gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.detail-gallery .large {
  grid-column: 1 / -1;
}

.detail-copy dl {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px 18px;
  margin: 28px 0;
}

.detail-copy dt {
  color: var(--ink);
  font-weight: 900;
}

.detail-copy dd {
  margin: 0;
}

.detail-tabs {
  text-align: center;
}

.tab-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
}

.tab-buttons span {
  padding: 14px 24px;
  color: var(--ink);
  background: var(--ivory);
  border: 1px solid rgba(140, 100, 36, 0.16);
  border-radius: 8px;
  font-weight: 900;
}

.detail-tabs .source-image {
  width: min(820px, 100%);
  margin: 30px auto;
}

.timeline {
  background: var(--ivory);
}

.timeline article {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(140, 100, 36, 0.18);
}

.timeline strong {
  color: var(--gold-dark);
  font-size: 28px;
}

.timeline p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.private-label-visual {
  display: grid;
  gap: 22px;
  text-align: center;
}

.private-label-visual-image {
  min-height: 520px;
  width: min(100%, 1180px);
  margin: 0 auto;
}

.private-label-visual p {
  width: min(100%, 980px);
  margin: 0 auto;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.source-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.source-gallery .section-heading {
  grid-column: 1 / -1;
}

.site-footer {
  color: rgba(248, 244, 236, 0.88);
  background: #000;
}

.standard-section {
  position: relative;
  min-height: 410px;
  display: grid;
  align-items: center;
  padding: 68px max(24px, calc((100vw - 1180px) / 2));
  color: #fff;
  background:
    linear-gradient(90deg, rgba(5, 4, 3, 0.86) 0%, rgba(5, 4, 3, 0.78) 42%, rgba(5, 4, 3, 0.58) 100%),
    url("assets/black-gold-reference.jpg") right center/cover no-repeat;
}

.standard-content {
  width: min(540px, 100%);
}

.standard-content h2 {
  margin: 0 0 26px;
  color: #fff;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.18;
}

.standard-content p {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.42;
}

.brand-strip {
  padding: 58px 24px 60px;
  background: #fff;
  text-align: center;
}

.brand-strip h2 {
  margin: 0 0 32px;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.2;
}

.brand-logo-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  width: min(920px, 100%);
  margin: 0 auto;
}

.brand-logo-row span {
  min-height: 58px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: #eee8dd;
  border: 1px solid rgba(140, 100, 36, 0.16);
  font-weight: 900;
}

.solution-cta {
  min-height: 405px;
  display: grid;
  align-items: center;
  padding: 64px max(24px, calc((100vw - 1180px) / 2));
  color: #fff;
  background:
    linear-gradient(90deg, rgba(5, 4, 3, 0.72) 0%, rgba(5, 4, 3, 0.5) 56%, rgba(5, 4, 3, 0.35) 100%),
    url("assets/black-gold-reference.jpg") center/cover no-repeat;
}

.solution-content {
  width: min(650px, 100%);
}

.solution-content h2 {
  margin: 0 0 24px;
  color: #fff;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.18;
  font-weight: 800;
}

.solution-content p {
  max-width: 620px;
  margin: 0 0 34px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
  line-height: 1.5;
}

.white-button.compact {
  min-height: 52px;
  padding: 0 28px;
  gap: 12px;
  font-size: 15px;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(220px, 1.08fr) minmax(130px, 0.72fr) minmax(210px, 0.92fr) minmax(250px, 1.02fr);
  gap: clamp(34px, 4.2vw, 82px);
  align-items: start;
  padding: clamp(54px, 5.3vw, 92px) clamp(24px, 3.7vw, 66px) clamp(56px, 5vw, 86px);
}

.footer-about h2 {
  margin: 0 0 28px;
  color: #fff;
  font-size: 42px;
  line-height: 1;
}

.site-footer h3 {
  margin: 0 0 30px;
  color: #fff;
  font-size: clamp(22px, 1.45vw, 28px);
  line-height: 1;
  font-weight: 800;
}

.site-footer p,
.site-footer a {
  display: block;
  margin: 0 0 20px;
  color: rgba(248, 244, 236, 0.84);
  line-height: 1.45;
}

.site-footer a:hover {
  color: var(--gold-strong);
}

.site-footer .footer-logo {
  display: inline-block;
  width: min(450px, 100%);
  margin-bottom: 28px;
  color: inherit;
}

.footer-about p {
  max-width: 420px;
  font-size: clamp(18px, 1.35vw, 24px);
  font-weight: 700;
  line-height: 1.38;
}

.footer-about p a {
  display: inline;
  margin: 0;
  color: var(--gold-strong);
}

.footer-links a {
  width: max-content;
  max-width: 100%;
  font-size: clamp(18px, 1.35vw, 24px);
  font-weight: 700;
  line-height: 1.35;
  white-space: nowrap;
}

.footer-contact {
  margin: 0;
  font-style: normal;
}

.footer-contact-item {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  width: max-content;
  max-width: 100%;
  margin: 0 0 18px;
  color: rgba(248, 244, 236, 0.84);
  font-size: clamp(16px, 1.14vw, 21px);
  font-weight: 700;
  line-height: 1.35;
}

.site-footer a.footer-contact-item {
  display: grid;
  margin-bottom: 18px;
}

.footer-contact-icon {
  position: relative;
  width: 18px;
  height: 18px;
  margin-top: 4px;
  flex: 0 0 auto;
  background: center/contain no-repeat;
  filter: brightness(0) invert(1);
}

.footer-contact-icon.phone {
  background-image: url("assets/contact-phone.svg?v=3");
}

.footer-contact-icon.whatsapp {
  background-image: url("assets/contact-whatsapp.svg?v=3");
}

.footer-contact-icon.email {
  background-image: url("assets/contact-email.svg?v=3");
}

.footer-contact-icon.location::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 9px;
  height: 9px;
  border: 1.5px solid currentColor;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.footer-contact-icon.location::after {
  content: "";
  position: absolute;
  left: 3px;
  bottom: 1px;
  width: 12px;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
}

body.quote-modal-open {
  overflow: hidden;
}

.quote-modal,
.search-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  padding: 24px;
  color: var(--ink);
}

.quote-modal[hidden],
.search-modal[hidden] {
  display: none;
}

.quote-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
}

.quote-dialog {
  position: relative;
  width: min(640px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  padding: clamp(28px, 4vw, 46px);
  background: #fffaf1;
  border: 1px solid rgba(201, 154, 51, 0.36);
  border-radius: 18px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
}

.search-dialog {
  position: relative;
  width: min(880px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  padding: clamp(26px, 4vw, 42px);
  background: #fffaf1;
  border: 1px solid rgba(201, 154, 51, 0.36);
  border-radius: 18px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
}

.search-dialog h2 {
  margin: 8px 0 20px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 0.96;
}

.search-input {
  width: 100%;
  min-height: 54px;
  padding: 13px 16px;
  border: 1px solid rgba(33, 27, 18, 0.18);
  border-radius: 12px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-weight: 700;
}

.search-results {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.search-result-card {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  padding: 14px;
  background: #fff;
  border: 1px solid rgba(201, 154, 51, 0.22);
  border-radius: 12px;
}

.search-result-thumb {
  height: 140px;
  min-height: 140px;
  border-radius: 10px;
  overflow: hidden;
  background: #efe7da;
}

.search-result-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.search-result-card h3,
.search-result-card p {
  margin: 8px 0 0;
}

.search-result-card .product-meta {
  justify-content: flex-start;
  margin-top: 10px;
}

.search-result-actions {
  margin-top: 12px;
}

.quote-dialog h2 {
  margin: 8px 0 24px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(38px, 4vw, 56px);
  line-height: 0.96;
}

.quote-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  color: #110d07;
  background: rgba(201, 154, 51, 0.18);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: #2b2419;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid rgba(33, 27, 18, 0.18);
  border-radius: 10px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.quote-form textarea {
  resize: vertical;
}

.quote-form-wide,
.quote-submit {
  grid-column: 1 / -1;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px !important;
  height: 1px !important;
  opacity: 0;
  pointer-events: none;
}

.quote-submit {
  width: 100%;
  border: 0;
  margin-top: 4px;
  cursor: pointer;
}

.quote-success {
  margin: 18px 0 0;
  padding: 14px 16px;
  border-radius: 10px;
  color: #17130d;
  background: rgba(201, 154, 51, 0.16);
  font-weight: 800;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px max(24px, calc((100vw - 1180px) / 2));
  background: #06172b;
  border-top: 1px solid rgba(248, 244, 236, 0.18);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  font-weight: 700;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.social-links a {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin: 0;
  color: #fff;
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  color: var(--gold-strong);
  transform: translateY(-1px);
}

.social-icon {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  color: currentColor;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
}

.social-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: currentColor;
}

@media (max-width: 980px) {
  .site-header {
    min-height: 76px;
    padding: 0 20px;
  }

  .desktop-nav,
  .search-link {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .floating-contact {
    display: none;
  }

  .inner-hero,
  .inner-split {
    grid-template-columns: 1fr;
  }

  .inner-hero-panel {
    min-height: 260px;
  }

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

  .source-split,
  .source-split.reverse,
  .product-detail-layout,
  .category-faq-quote,
  .faq-page-layout {
    grid-template-columns: 1fr;
  }

  .category-quote-card {
    position: static;
  }

  .faq-toc {
    position: static;
    padding-top: 0;
  }

  .number-grid,
  .source-process,
  .source-feature-grid,
  .source-product-grid.three,
  .source-product-grid.four,
  .source-product-grid.six,
  .source-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .hero {
    min-height: 820px;
  }

  .hero-content {
    width: min(100% - 32px, 720px);
  }

  .search-panel,
  .listing-grid,
  .product-card-grid,
  .intro-feature,
  .weekend-band,
  .steps-grid,
  .feature-tabs,
  .review-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

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

  .product-card-grid {
    width: min(100%, 720px);
  }

  .media-copy-section {
    grid-template-columns: 1fr;
    width: min(100% - 32px, 680px);
  }

  .industry-grid,
  .printing-detail-grid,
  .printing-service-grid,
  .inquiry-grid {
    grid-template-columns: 1fr;
    width: min(100%, 680px);
  }

  .printing-detail-grid {
    gap: 30px;
    margin: 0 auto;
  }

  .brand-logo-row,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-main {
    gap: 28px;
  }

  .footer-links a {
    white-space: normal;
  }

  .footer-contact-item {
    width: 100%;
  }

  .intro-feature {
    width: min(100% - 32px, 720px);
    margin: 0 auto;
    gap: 28px;
  }

  .video-panel {
    min-height: 320px;
    clip-path: none;
    border-radius: 8px;
  }
}

@media (max-width: 640px) {
  .brand {
    min-width: 128px;
  }

  .brand .logo-image {
    width: 128px;
    max-height: 80px;
  }

  .hero h1 {
    max-width: 11ch;
    font-size: 42px;
    line-height: 0.98;
  }

  .hero h2 {
    max-width: 11ch;
    font-size: 42px;
    line-height: 0.98;
  }

  .hero-copy {
    font-size: 16px;
  }

  .search-panel {
    padding: 6px;
  }

  .search-panel label {
    padding: 11px 12px;
  }

  .category-strip,
  .region-grid {
    grid-template-columns: 1fr;
  }

  .section,
  .card-showcase,
  .weekend-band {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .product-card-grid {
    gap: 20px;
    margin-top: 34px;
  }

  .product-card-body {
    min-height: 164px;
  }

  .wide-video-panel {
    min-height: 220px;
  }

  .media-copy-section {
    padding: 20px;
    margin-bottom: 56px;
  }

  .media-copy-content {
    text-align: left;
  }

  .industry-section {
    padding-top: 10px;
    padding-bottom: 56px;
  }

  .printing-cta {
    padding-top: 48px;
    padding-bottom: 54px;
    background-attachment: scroll;
  }

  .printing-detail {
    padding-top: 54px;
    padding-bottom: 56px;
  }

  .standard-section,
  .solution-cta {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .brand-strip {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .solution-content h2 {
    font-size: 34px;
  }

  .footer-bottom {
    display: grid;
    justify-items: start;
  }

  .footer-main {
    padding: 48px 22px 56px;
  }

  .site-footer .footer-logo {
    margin-bottom: 22px;
    padding: 10px 12px;
  }

  .footer-logo .logo-image {
    width: min(300px, 100%);
  }

  .footer-about p,
  .footer-links a,
  .footer-contact-item {
    font-size: 18px;
  }

  .site-footer h3 {
    margin-bottom: 18px;
    font-size: 22px;
  }

  .quote-modal,
  .search-modal {
    padding: 14px;
  }

  .quote-dialog,
  .search-dialog {
    max-height: calc(100vh - 28px);
    padding: 26px 18px 22px;
    border-radius: 14px;
  }

  .search-result-card {
    grid-template-columns: 1fr;
  }

  .search-result-thumb {
    height: 180px;
  }

  .quote-form {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .quote-close {
    top: 12px;
    right: 12px;
  }

  .inner-hero,
  .inner-section,
  .inner-split {
    padding-right: 18px;
    padding-left: 18px;
  }

  .inner-hero h1 {
    font-size: 42px;
  }

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

  .source-banner,
  .source-section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .source-banner h1 {
    font-size: 42px;
  }

  .category-faq-quote {
    gap: 34px;
  }

  .category-faq-list summary {
    padding: 16px 18px;
  }

  .category-faq-list p {
    padding: 0 18px 18px;
  }

  .category-quote-card {
    padding: 30px 20px;
  }

  .private-label-visual-image {
    min-height: 260px;
  }

  .private-label-visual p {
    font-size: 16px;
    text-align: left;
  }

  .faq-hero {
    min-height: 380px;
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .faq-page-section {
    padding: 44px 18px 62px;
  }

  .faq-item summary {
    align-items: flex-start;
    padding: 15px 14px;
  }

  .faq-answer {
    padding: 0 14px 22px;
  }

  .contact-page-panel .source-feature-grid {
    grid-template-columns: 1fr;
  }

  .inline-quote-form input,
  .inline-quote-form textarea {
    font-size: 16px;
  }

  .number-grid,
  .source-process,
  .source-feature-grid,
  .source-product-grid.three,
  .source-product-grid.four,
  .source-product-grid.six,
  .source-gallery,
  .metric-row,
  .detail-gallery {
    grid-template-columns: 1fr;
  }

  .timeline article,
  .detail-copy dl {
    grid-template-columns: 1fr;
  }

  .tab-buttons {
    display: grid;
  }

  .industry-grid {
    gap: 28px;
    margin-top: 30px;
  }

  .inquiry-grid .card-button {
    justify-self: center;
  }

  .section-heading.split {
    display: block;
  }

  .intro-section {
    padding-top: 54px;
  }

  .intro-heading {
    width: min(100% - 32px, 560px);
  }

  .intro-heading h2 {
    font-size: 36px;
  }

  .intro-heading p {
    font-size: 16px;
  }

  .intro-actions {
    display: grid;
    gap: 14px;
    margin-top: 28px;
  }

  .ornament-divider {
    margin: 44px auto 36px;
  }

  .intro-copy {
    padding: 0 0 48px;
  }

  .intro-copy h3 {
    margin-bottom: 26px;
    font-size: 30px;
  }

  .intro-copy li {
    padding-left: 34px;
    font-size: 17px;
  }

  .video-panel {
    min-height: 250px;
  }

  .play-button {
    width: 72px;
    height: 72px;
  }

  .text-link {
    display: inline-block;
    margin-top: 18px;
  }

  .listing-image {
    min-height: 220px;
  }

  .steps-grid article,
  .tab-panel,
  .review-grid figure {
    padding: 26px;
  }
}
