@font-face {
  font-family: cormorantgaramond;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("https://static.parastorage.com/fonts/v2/1ca3c197-aa89-4e46-9e10-6b0e6617534b/v1/cormorantgaramond.woff2") format("woff2");
}

@font-face {
  font-family: cormorantgaramond;
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("https://static.parastorage.com/fonts/v2/4ff5843c-24b1-481d-b1e6-75a00be1b055/v1/cormorantgaramond.woff2") format("woff2");
}

@font-face {
  font-family: cormorantgaramond;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("https://static.parastorage.com/fonts/v2/94060c7d-573a-4cb5-96cd-9b99f3a5b03c/v1/cormorantgaramond.woff2") format("woff2");
}

@font-face {
  font-family: cormorantgaramond;
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url("https://static.parastorage.com/fonts/v2/2b314759-ac8f-48f7-9f7c-e863778ad50d/v1/cormorantgaramond.woff2") format("woff2");
}

@font-face {
  font-family: sora;
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("https://static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/sora/v12/xMQ9uFFYT72X5wkB_18qmnndmSdSnh2BAfO5mnuyOo1lfiQwWa-xo6eeI7fM.woff2") format("woff2");
}

:root {
  --gp-primary: #333333;
  --gp-secondary: #777777;
  --gp-background: #ffffff;
  --gp-foreground: #333333;
  --gp-soft-gold: #bdbdbd;
  --gp-border: rgba(51, 51, 51, 0.12);
  --gp-shell: min(105rem, calc(100vw - 14rem));
  --gp-heading: cormorantgaramond, Georgia, serif;
  --gp-body: sora, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--gp-background);
  color: var(--gp-foreground);
  font-family: var(--gp-body);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

.site-shell {
  width: var(--gp-shell);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--gp-border);
}

.header-inner {
  min-height: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: flex;
  flex-direction: column;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand-logo,
.custom-logo {
  display: block;
  width: clamp(12rem, 18vw, 18.75rem);
  max-height: 4.5rem;
  object-fit: contain;
}

.brand-mark {
  font-size: 1.1rem;
}

.brand-sub {
  color: var(--gp-secondary);
  font-size: 0.75rem;
}

.primary-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.primary-menu ul {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.primary-menu a {
  color: var(--gp-secondary);
}

.primary-menu li {
  position: relative;
}

.primary-menu a:hover,
.primary-menu .current-menu-item > a {
  color: var(--gp-primary);
}

.primary-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 60;
  display: grid;
  min-width: 18rem;
  gap: 0;
  padding: 1.1rem 0 0.8rem;
  background: #fff;
  border: 1px solid var(--gp-border);
  border-radius: 4px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translateY(0.5rem);
  transition: opacity 180ms ease, transform 180ms ease;
}

.primary-menu .menu-item-has-children::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 1.1rem;
}

.primary-menu .menu-item-has-children:hover > .sub-menu,
.primary-menu .menu-item-has-children:focus-within > .sub-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.primary-menu .sub-menu a {
  display: block;
  padding: 0.55rem 1.25rem;
  color: var(--gp-secondary);
  white-space: nowrap;
}

.primary-menu .sub-menu a:hover,
.primary-menu .sub-menu a:focus {
  color: var(--gp-primary);
  background: rgba(51, 51, 51, 0.05);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 700;
}

.button-primary,
.nav-cta {
  background: var(--gp-primary);
  color: #fff;
}

.primary-menu .nav-cta,
.primary-menu .nav-cta:hover,
.primary-menu .nav-cta:focus {
  color: #fff;
}

.menu-toggle {
  display: none;
}

.hero,
.page-hero {
  padding: 7rem 0;
}

.hero-home,
.service-hero {
  color: #fff;
  background: radial-gradient(circle, #4a5a7a 0%, #3a4a6a 30%, #2a3a5a 60%, #1a2a4a 100%);
}

.service-visual-hero {
  min-height: 28rem;
  display: flex;
  align-items: center;
  color: #fff;
  background-position: center;
  background-size: cover;
}

.service-visual-hero .breadcrumbs {
  color: rgba(255, 255, 255, 0.78);
}

.service-visual-hero h1 {
  max-width: 48rem;
  margin: 0 0 1rem;
  font-family: var(--gp-heading);
  font-size: clamp(3rem, 4.2vw, 5rem);
  line-height: 1;
}

.service-visual-hero p {
  max-width: 42rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-home {
  position: relative;
  min-height: clamp(42rem, 50vw, 58rem);
  padding: 0;
  overflow: hidden;
  background: #1e1e1e;
}

.home-slider,
.home-slide,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.home-slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 700ms ease;
}

.home-slide.is-active {
  opacity: 1;
}

.hero-overlay {
  z-index: 1;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.18) 54%, rgba(0, 0, 0, 0.34));
}

.hero-home-inner {
  position: relative;
  z-index: 2;
  min-height: clamp(42rem, 50vw, 58rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-block: 6rem;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 3rem;
  height: 3rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  color: #fff;
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
}

.hero-arrow:hover,
.hero-arrow:focus {
  background: rgba(255, 255, 255, 0.42);
}

.hero-arrow-prev {
  left: 1.5rem;
}

.hero-arrow-next {
  right: 1.5rem;
}

.home-content {
  padding: 0;
}

.home-content > .entry-content {
  max-width: none;
  width: 100%;
}

.home-section {
  padding: 6.5rem 0;
  overflow: hidden;
}

body.home .home-section:not(.home-section-stats) {
  padding: 7.4rem 0;
}

.home-section:nth-child(even),
.home-section-why-choose-gold-printing,
.home-section-production-workflow {
  background: rgba(51, 51, 51, 0.045);
}

.home-section-inner {
  width: min(105rem, calc(100% - 14rem));
  margin-inline: auto;
}

.home-section h2 {
  margin: 0 0 1rem;
  text-align: center;
  font-family: var(--gp-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
}

.home-section-body > p:first-of-type {
  max-width: 42rem;
  margin: 0 auto 1.9rem;
  text-align: center;
  color: var(--gp-secondary);
}

.home-section-body,
.home-section-body > * {
  min-width: 0;
  max-width: 100%;
}

.home-section h2,
.home-section h3,
.home-section p {
  overflow-wrap: anywhere;
}

.home-section-body > div:has(> img),
.home-section-body > div:has(> a > img) {
  margin-block: 0.85rem;
}

.home-section-body img {
  display: block;
  margin-inline: auto;
}

.home-section > .home-section-inner > p {
  max-width: 42rem;
  margin: 0 auto 1.9rem;
  text-align: center;
  color: var(--gp-secondary);
}

.home-wide-image {
  display: block;
  width: 100%;
  max-height: 38rem;
  object-fit: cover;
}

.home-split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  align-items: center;
  gap: 4.5rem;
}

.home-split-image {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.home-split-copy h2 {
  margin: 0 0 1rem;
  text-align: left;
  font-family: var(--gp-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
}

.home-split-copy p,
.home-split-copy li {
  color: var(--gp-foreground);
}

.client-logo-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.4rem 3rem;
}

.client-logo-grid img {
  display: block;
  max-width: 12rem;
  max-height: 3.4rem;
  object-fit: contain;
}

.service-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
  max-width: 70rem;
  margin-inline: auto;
}

.service-tile {
  display: grid;
  align-content: start;
  min-height: 22rem;
  padding: 1.45rem;
  color: #fff;
  border-radius: 2px;
}

.service-tile h3 {
  margin: 0 0 0.55rem;
  font-family: var(--gp-heading);
  font-size: 1.3rem;
  line-height: 1.16;
}

.service-tile p {
  min-height: 3.4rem;
  margin: 0 0 1rem;
  color: #fff;
  font-size: 0.9rem;
  line-height: 1.5;
}

.service-tile img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-tile span {
  display: inline-flex;
  align-self: end;
  justify-self: start;
  margin-top: 0.75rem;
  padding-bottom: 0.15rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.72);
  color: #fff;
  font-size: 0.78rem;
}

.service-blue {
  background: #4f8ff7;
}

.service-green {
  background: #43cc78;
}

.service-purple {
  background: #a55bed;
}

.service-orange {
  background: #ff762f;
}

.service-red {
  background: #f24747;
}

.home-section-our-brand-story .home-section-body > div:has(> img) img {
  width: 100%;
  max-height: 38rem;
  object-fit: cover;
}

.home-section-about-gold-printing .home-section-body,
.home-section-factory-equipment .home-section-body,
.home-section-logistics-delivery .home-section-body {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  align-items: center;
  gap: 4.5rem;
}

.home-section-about-gold-printing .home-section-body > div:has(> img),
.home-section-factory-equipment .home-section-body > div:has(> img),
.home-section-logistics-delivery .home-section-body > div:has(> img) {
  grid-row: 1 / span 12;
  margin: 0;
}

.home-section-about-gold-printing .home-section-body > p:first-of-type,
.home-section-factory-equipment .home-section-body > p:first-of-type,
.home-section-logistics-delivery .home-section-body > p:first-of-type {
  margin: 0;
  text-align: left;
}

.home-section-about-gold-printing h2,
.home-section-factory-equipment h2,
.home-section-logistics-delivery h2 {
  text-align: left;
}

.home-section-our-main-clients .home-section-body {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.4rem 3rem;
}

.home-section-our-main-clients .home-section-body > p {
  flex-basis: 100%;
}

.home-section-our-main-clients img {
  max-width: 12rem;
  max-height: 3.4rem;
  object-fit: contain;
}

.home-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.home-info-card {
  min-height: 10rem;
  padding: 1.5rem;
  background: #fff;
  border: 1px solid rgba(51, 51, 51, 0.08);
  border-radius: 2px;
}

.home-info-card h3 {
  margin: 0 0 0.75rem;
  font-family: var(--gp-heading);
  font-size: 1.2rem;
  line-height: 1.2;
}

.home-info-card p,
.home-info-card li {
  margin-bottom: 0;
  color: var(--gp-secondary);
  font-size: 0.92rem;
  line-height: 1.55;
}

.home-section-our-printing-services .home-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 70rem;
  margin-inline: auto;
}

.home-section-our-printing-services .home-info-card {
  min-height: 22rem;
  display: flex;
  flex-direction: column;
  color: #fff;
  border: 0;
}

.home-section-our-printing-services .home-info-card:nth-child(1) {
  background: #4f8ff7;
}

.home-section-our-printing-services .home-info-card:nth-child(2) {
  background: #43cc78;
}

.home-section-our-printing-services .home-info-card:nth-child(3) {
  background: #a55bed;
}

.home-section-our-printing-services .home-info-card:nth-child(4) {
  background: #ff762f;
}

.home-section-our-printing-services .home-info-card:nth-child(5) {
  background: #f24747;
}

.home-section-our-printing-services .home-info-card h3,
.home-section-our-printing-services .home-info-card p {
  color: #fff;
}

.home-section-our-printing-services .home-info-card div:has(> img) {
  order: 3;
  margin-top: auto;
}

.home-section-our-printing-services .home-info-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.home-section-our-printing-services .home-info-card::after {
  content: "Find More";
  display: inline-flex;
  align-self: flex-start;
  margin-top: 0.8rem;
  padding-bottom: 0.15rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  color: #fff;
  font-size: 0.78rem;
}

.home-section-production-workflow .home-info-card h3::before {
  content: counter(workflow);
  display: inline-grid;
  width: 1.45rem;
  height: 1.45rem;
  margin-right: 0.6rem;
  place-items: center;
  background: var(--gp-primary);
  color: #fff;
  font-family: var(--gp-body);
  font-size: 0.72rem;
}

.home-section-production-workflow .home-card-grid {
  counter-reset: workflow;
}

.home-section-production-workflow .home-info-card {
  counter-increment: workflow;
}

.home-section-support {
  background: rgba(51, 51, 51, 0.045);
}

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

.home-section-stats {
  padding: 5rem 0 6rem;
  background: #303030;
  color: #fff;
  text-align: center;
}

body.home .home-section.home-section-stats {
  background: #303030;
  color: #fff;
}

.home-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
  color: rgba(255, 255, 255, 0.62);
}

.home-stats-grid strong {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--gp-heading);
  font-size: 2.4rem;
  line-height: 1;
}

.home-stats-grid span {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.home-section-stats h2 {
  color: #fff;
}

.button-light {
  min-height: 2.2rem;
  padding: 0.45rem 1rem;
  background: #fff;
  color: #333;
  font-size: 0.82rem;
}

.hero h1,
.page-hero h1 {
  max-width: 980px;
  margin: 0 0 1.5rem;
  font-family: var(--gp-heading);
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1;
}

.hero-home h1 {
  max-width: 32rem;
  font-size: clamp(4rem, 4.8vw, 5.75rem);
}

.hero p,
.page-hero p {
  max-width: 760px;
  color: currentColor;
  font-size: 1.15rem;
}

.content-layout {
  padding-block: 3rem 6rem;
}

.content-layout-wide {
  padding: 0;
}

.visual-hero {
  min-height: 28rem;
  display: flex;
  align-items: center;
  color: #fff;
  background-position: center;
  background-size: cover;
}

.visual-hero h1,
.visual-hero-title {
  max-width: 56rem;
  margin: 0 0 1rem;
  font-family: var(--gp-heading);
  font-size: clamp(3.4rem, 4.8vw, 5.8rem);
  line-height: 1;
}

.visual-hero p {
  max-width: 54rem;
  color: rgba(255, 255, 255, 0.92);
}

.about-hero {
  min-height: 19.2rem;
  display: flex;
  align-items: center;
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, #122142 0%, #203761 52%, #162546 100%);
}

.about-hero .site-shell {
  display: grid;
  justify-items: center;
}

.about-hero h1 {
  margin: 0 0 1rem;
  font-family: var(--gp-heading);
  font-size: clamp(3rem, 4.4vw, 4.8rem);
  line-height: 1;
}

.about-hero p {
  max-width: 41rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1rem;
  line-height: 1.85;
}

.about-hero span {
  margin-top: 1.35rem;
  color: rgba(255, 255, 255, 0.76);
  letter-spacing: 0.25rem;
}

.about-section {
  padding: 7.1rem 0;
}

.about-section h2 {
  margin: 0 0 1rem;
  font-family: var(--gp-heading);
  font-size: clamp(2.4rem, 3.2vw, 3.35rem);
  line-height: 1.05;
}

.about-section h3 {
  margin: 0 0 0.8rem;
  font-family: var(--gp-heading);
  font-size: 1.38rem;
  line-height: 1.15;
}

.about-section p,
.about-section li {
  color: rgba(51, 51, 51, 0.82);
  font-size: 1.02rem;
  line-height: 1.92;
}

.about-overview,
.about-quality {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 1fr);
  gap: 3.8rem;
  align-items: center;
}

.about-overview img,
.about-quality img {
  display: block;
  width: 100%;
  aspect-ratio: 1.24 / 1;
  object-fit: cover;
}

.about-overview > div,
.about-quality > div {
  max-width: 39rem;
}

.about-band {
  background: #f4f4f4;
}

.about-band > .site-shell,
.about-choose,
.about-manufacture > .site-shell {
  display: grid;
  gap: 2.4rem;
}

.about-band > .site-shell > p,
.about-choose > p {
  max-width: 50rem;
  margin-top: -0.8rem;
}

.about-card-row {
  display: grid;
  gap: 1.45rem;
}

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

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

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

.about-card-row article,
.about-equipment,
.about-quality article,
.about-history article {
  background: #fff;
  border: 1px solid rgba(51, 51, 51, 0.06);
}

.about-card-row article {
  min-height: 14.6rem;
  padding: 2.35rem;
}

.about-card-row span {
  display: inline-grid;
  width: 2.35rem;
  height: 2.35rem;
  margin-bottom: 1rem;
  place-items: center;
  color: rgba(51, 51, 51, 0.55);
  border: 1px solid rgba(51, 51, 51, 0.16);
}

.about-equipment {
  padding: 3.2rem 3.4rem;
}

.about-equipment > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
}

.about-equipment ul,
.about-card-row ul {
  margin: 0;
  padding-left: 1.1rem;
}

.about-quality article {
  margin-top: 1.25rem;
  padding: 1.9rem 2rem;
}

.about-quality img {
  aspect-ratio: 1.16 / 1;
}

.about-history article {
  padding: 2.3rem 2.6rem;
}

.about-choose {
  text-align: center;
}

.about-choose > p {
  justify-self: center;
}

.about-choose .about-two {
  text-align: left;
}

.about-manufacture {
  text-align: center;
}

.about-manufacture .button {
  justify-self: center;
  min-height: 2.45rem;
  padding-inline: 1.3rem;
  font-size: 0.82rem;
}

.about-work {
  padding: 6.4rem 0 6.8rem;
  text-align: center;
  color: #fff;
  background: #303030;
}

.about-work .site-shell {
  display: grid;
  justify-items: center;
  gap: 1.15rem;
}

.about-work h2 {
  margin: 0;
  color: #fff;
  font-family: var(--gp-heading);
  font-size: clamp(2.2rem, 3vw, 3rem);
  line-height: 1.05;
}

.about-work p {
  max-width: 42rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.95rem;
  line-height: 1.85;
}

.about-work .button-outline {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.contact-hero {
  min-height: 24rem;
  text-align: center;
  background-position: center 58%;
}

.contact-hero .site-shell {
  display: grid;
  justify-items: center;
}

.contact-hero h1 {
  font-size: clamp(3.3rem, 4.4vw, 5.2rem);
}

.contact-hero p {
  max-width: 40rem;
  font-size: 0.95rem;
}

.contact-intro,
.how-we-work,
.listing-content {
  padding: 6rem 0;
}

.contact-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  align-items: center;
  gap: 6rem;
}

.contact-intro h2,
.contact-panel h2,
.how-we-work h2,
.listing-content h1 {
  margin: 0 0 1rem;
  font-family: var(--gp-heading);
  font-size: clamp(2.4rem, 3.4vw, 3.8rem);
  line-height: 1.05;
}

.contact-intro img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.contact-panel {
  padding: 6rem 0;
  background: rgba(51, 51, 51, 0.045);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 6rem;
}

.contact-info-box,
.contact-form-box {
  background: #fff;
  padding: 2.25rem;
}

.contact-method {
  display: grid;
  gap: 0.35rem;
  margin-top: 1rem;
  padding: 1.1rem 1.2rem;
  background: rgba(51, 51, 51, 0.04);
}

.contact-method strong {
  font-family: var(--gp-heading);
}

.contact-location {
  margin-top: 3rem;
  text-align: center;
  color: var(--gp-secondary);
}

.work-step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.work-step-grid > div {
  padding: 1.5rem;
  text-align: center;
  background: rgba(51, 51, 51, 0.035);
}

.work-step-grid img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  margin-bottom: 1.2rem;
}

.contact-panel .site-shell,
.how-we-work.site-shell,
.contact-intro.site-shell {
  width: min(96rem, calc(100vw - 14rem));
}

.contact-intro.site-shell {
  padding-top: 7.2rem;
  padding-bottom: 7.2rem;
}

.contact-panel {
  padding-top: 7.2rem;
  padding-bottom: 7.2rem;
}

.how-we-work.site-shell {
  padding-top: 7.2rem;
  padding-bottom: 7.2rem;
}

.contact-info-box,
.contact-form-box {
  min-height: 34rem;
}

.contact-panel .inquiry-form {
  max-width: none;
}

.contact-panel .inquiry-form {
  gap: 0.95rem;
}

.contact-panel .inquiry-form label {
  gap: 0.25rem;
  font-size: 0.78rem;
}

.contact-panel .inquiry-form input,
.contact-panel .inquiry-form textarea {
  min-height: 2.75rem;
  padding: 0.7rem 0.8rem;
  border-radius: 0;
  font-size: 0.82rem;
}

.contact-panel .inquiry-form textarea {
  min-height: 7.2rem;
}

.file-upload-field input[type="file"] {
  display: grid;
  place-items: center;
  min-height: 4.3rem;
  border-style: dashed;
  background: rgba(51, 51, 51, 0.02);
}

.contact-panel .inquiry-form .button {
  min-height: 2.65rem;
  width: 100%;
  border: 0;
  border-radius: 0;
  font-size: 0.78rem;
}

.work-step-grid > div {
  border: 1px solid rgba(51, 51, 51, 0.08);
}

.visual-hero-listing {
  min-height: 24rem;
}

.listing-search input {
  width: min(42rem, 100%);
  margin: 3rem 0 4rem;
  border: 1px solid var(--gp-border);
  padding: 0.9rem 1rem;
  font: inherit;
}

.card-grid.visual-post-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.4rem;
}

.visual-post-grid .content-card {
  border: 0;
}

.visual-post-grid .card-media img {
  aspect-ratio: 16 / 8.8;
}

.visual-hero-listing .visual-hero-title {
  max-width: 70rem;
  font-size: clamp(2.8rem, 3.1vw, 4rem);
}

.visual-post-grid .card-body {
  padding: 1rem 0 0;
}

.visual-post-grid .card-body h2 {
  font-size: 1.35rem;
}

.blog-listing-content {
  padding-top: 8rem;
}

.blog-listing-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 28rem);
  gap: 4rem;
  align-items: start;
  margin-bottom: 5rem;
}

.blog-listing-header h1 {
  font-size: clamp(3.4rem, 5vw, 5.5rem);
}

.blog-listing-header .listing-search input {
  margin: 0;
}

.blog-archive-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 18rem;
  gap: 4rem;
  align-items: start;
}

.blog-post-list {
  display: grid;
  gap: 4rem;
}

.blog-post-list .content-card {
  border: 0;
  border-radius: 0;
}

.blog-post-list .card-media img {
  aspect-ratio: 16 / 5.8;
}

.blog-post-list .card-body {
  padding: 1.4rem 0 0;
}

.blog-post-list .card-body h2 {
  font-size: 1.3rem;
}

.blog-sidebar {
  display: grid;
  gap: 0.6rem;
  padding: 1.5rem;
  background: rgba(51, 51, 51, 0.04);
}

.blog-sidebar h2 {
  margin: 1.2rem 0 0.3rem;
  font-family: var(--gp-heading);
  font-size: 1.15rem;
}

.blog-sidebar h2:first-child {
  margin-top: 0;
}

.blog-sidebar a,
.blog-sidebar p {
  display: block;
  margin: 0;
  padding: 0.35rem 0.55rem;
  color: var(--gp-secondary);
  font-size: 0.82rem;
}

.blog-sidebar a:first-of-type {
  background: var(--gp-primary);
  color: #fff;
}

.listing-filter-box {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 4.5rem;
  padding: 1.5rem;
  background: rgba(51, 51, 51, 0.035);
}

.listing-filter-box h2 {
  flex-basis: 100%;
  margin: 0 0 0.5rem;
  font-family: var(--gp-heading);
  font-size: 1.2rem;
}

.listing-filter-box span {
  padding: 0.35rem 0.8rem;
  border: 1px solid rgba(51, 51, 51, 0.12);
  border-radius: 999px;
  color: var(--gp-secondary);
  font-size: 0.82rem;
}

.listing-filter-box span:first-of-type {
  background: var(--gp-primary);
  color: #fff;
}

.listing-cta {
  padding: 6rem 0;
  background: var(--gp-primary);
  color: #fff;
  text-align: center;
}

.listing-cta h2 {
  margin: 0 0 0.8rem;
  font-family: var(--gp-heading);
  font-size: clamp(2.4rem, 3vw, 3.6rem);
}

.listing-cta p {
  margin: 0 auto 1.6rem;
  color: rgba(255, 255, 255, 0.72);
}

.button-outline {
  margin-left: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
}

.entry-content {
  max-width: 960px;
}

.entry-content h2 {
  margin-top: 4rem;
  font-family: var(--gp-heading);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.1;
}

.entry-content h3 {
  margin-top: 2rem;
  font-family: var(--gp-heading);
  font-size: 1.6rem;
}

.entry-content p,
.entry-content li {
  color: var(--gp-foreground);
}

.visual-page-content {
  max-width: none;
  width: min(105rem, calc(100% - 14rem));
}

.visual-page-content > section {
  padding: 5.5rem 0;
}

.visual-page-content > section:nth-child(odd) {
  background: rgba(51, 51, 51, 0.045);
  box-shadow: 50vw 0 0 rgba(51, 51, 51, 0.045), -50vw 0 0 rgba(51, 51, 51, 0.045);
}

.visual-page-content h2 {
  margin: 0 0 1rem;
  font-family: var(--gp-heading);
  font-size: clamp(2.1rem, 3vw, 3rem);
  line-height: 1.08;
}

.visual-page-content h3 {
  margin: 0 0 0.75rem;
  font-family: var(--gp-heading);
  font-size: 1.25rem;
}

.visual-page-content section:has(h3) > div > div:has(> h3),
.visual-page-content section:has(h3) > div > div > div:has(> h3) {
  padding: 1.5rem;
  background: #fff;
  border: 1px solid rgba(51, 51, 51, 0.08);
}

.visual-page-content img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

.visual-page-content section > div > div:has(> img):has(+ div),
.visual-page-content section > div > div:has(> div > img):has(+ div) {
  display: contents;
}

.service-content {
  width: min(105rem, calc(100% - 14rem));
  max-width: none;
  padding: 5rem 0 0;
}

.service-content > section:first-child {
  display: none;
}

.service-content > section {
  padding: 5.5rem 0;
}

.service-content > section:nth-child(odd) {
  background: rgba(51, 51, 51, 0.045);
  box-shadow: 50vw 0 0 rgba(51, 51, 51, 0.045), -50vw 0 0 rgba(51, 51, 51, 0.045);
}

.service-content h2 {
  margin: 0 0 1.1rem;
  font-family: var(--gp-heading);
  font-size: clamp(2.1rem, 3vw, 3rem);
  line-height: 1.08;
}

.service-content section:has(h2) > div > div:first-child > p {
  max-width: 48rem;
  margin-bottom: 2.4rem;
  color: var(--gp-secondary);
}

.service-content section:has(h2):not(:has(h3)) div:has(> span) {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-content section:has(h2):not(:has(h3)) span {
  display: block;
  padding: 0.9rem 1rem;
  background: #fff;
  border: 1px solid rgba(51, 51, 51, 0.08);
  color: var(--gp-secondary);
}

.service-content > section:nth-of-type(2) > div > div:not(:has(> p)) > h2,
.service-content > section:nth-of-type(3):not(:has(h3)) > div > div:not(:has(> p)) > h2 {
  margin-bottom: 1.45rem;
  font-family: var(--gp-body);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.3;
}

.service-content > section:nth-of-type(2) > div > div:not(:has(> p)) > div,
.service-content > section:nth-of-type(3):not(:has(h3)) > div > div:not(:has(> p)) > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem 1.45rem;
  width: 100%;
}

.service-content > section:nth-of-type(2) > div > div:not(:has(> p)) > div > div,
.service-content > section:nth-of-type(3):not(:has(h3)) > div > div:not(:has(> p)) > div > div {
  min-height: 2.15rem;
  display: flex;
  align-items: center;
  padding: 0.45rem 0.85rem;
  background: #fff;
  border: 1px solid rgba(51, 51, 51, 0.07);
  border-radius: 2px;
}

.service-content > section:nth-of-type(2) > div > div:not(:has(> p)) > div > div > span,
.service-content > section:nth-of-type(3):not(:has(h3)) > div > div:not(:has(> p)) > div > div > span {
  position: relative;
  display: block;
  padding: 0 0 0 1.05rem;
  background: transparent;
  border: 0;
  color: var(--gp-secondary);
  font-size: 0.82rem;
  line-height: 1.35;
}

.service-content > section:nth-of-type(2) > div > div:not(:has(> p)) > div > div > span::before,
.service-content > section:nth-of-type(3):not(:has(h3)) > div > div:not(:has(> p)) > div > div > span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.38em;
  width: 0.38rem;
  height: 0.38rem;
  border: 1px solid rgba(51, 51, 51, 0.22);
  border-radius: 50%;
}

.service-content section:has(h3) > div > div:nth-child(2) {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.7rem;
}

.service-content > section:nth-of-type(3) > div > div:nth-child(2) {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.7rem;
}

.service-content section:has(h3) > div > div:nth-child(2) > div {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(51, 51, 51, 0.08);
  border-radius: 2px;
}

.service-content > section:nth-of-type(3) > div > div:nth-child(2) > div {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(51, 51, 51, 0.08);
  border-radius: 2px;
}

.service-content section:has(h3) > div > div:nth-child(2) > div img {
  width: 100%;
  aspect-ratio: 4 / 2.55;
  object-fit: cover;
}

.service-content > section:nth-of-type(3) > div > div:nth-child(2) > div img {
  width: 100%;
  aspect-ratio: 4 / 2.55;
  object-fit: cover;
}

.service-content section:has(h3) > div > div:nth-child(2) > div > div:last-child {
  padding: 1.25rem;
}

.service-content > section:nth-of-type(3) > div > div:nth-child(2) > div > div:last-child {
  padding: 1.25rem;
}

.service-content section:has(h3) h3 {
  margin: 0 0 0.75rem;
  font-family: var(--gp-heading);
  font-size: 1.2rem;
}

.service-content section:has(h3) a[href*="request-a-quote"] {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  padding: 0.55rem 1rem;
  background: #2f2f2f;
  color: #fff;
  font-size: 0.82rem;
}

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

.content-card {
  border: 1px solid var(--gp-border);
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
}

.card-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.card-body {
  padding: 1.5rem;
}

.card-body h2 {
  margin: 0 0 0.8rem;
  font-family: var(--gp-heading);
  font-size: 1.6rem;
  line-height: 1.15;
}

.text-link {
  font-weight: 700;
  color: var(--gp-primary);
}

.latest-section {
  padding: 5rem 0;
  background: rgba(51, 51, 51, 0.04);
}

.article-detail-layout {
  background: #fff;
}

.article-detail .site-shell {
  width: min(94rem, calc(100vw - 14rem));
}

.article-back {
  padding: 2.1rem 0;
  color: var(--gp-secondary);
  font-size: 0.9rem;
}

.article-visual-hero {
  padding: 13rem 0;
  background: #303030;
  color: #fff;
}

.article-visual-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 29rem);
  gap: 7.5rem;
  align-items: center;
}

.article-meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.3rem;
}

.article-meta-line span {
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
}

.article-visual-hero h1 {
  max-width: 62rem;
  margin: 0 0 1.2rem;
  font-family: var(--gp-heading);
  font-size: clamp(2.85rem, 2.9vw, 3.55rem);
  line-height: 1.02;
}

.article-visual-hero p {
  max-width: 45rem;
  color: rgba(255, 255, 255, 0.86);
}

.article-visual-hero figure {
  margin: 0;
}

.article-visual-hero img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 2.55;
  object-fit: cover;
  border-radius: 3px;
}

.article-body-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 18rem;
  gap: 7rem;
  min-height: 68rem;
  padding: 7.4rem 0 10.5rem;
}

.article-main-copy {
  max-width: none;
  display: flex;
  flex-direction: column;
}

.article-main-copy header,
.article-main-copy footer,
.article-main-copy nav {
  display: none;
}

.article-main-copy > div:first-child:has(header) {
  display: none;
}

.article-main-copy p,
.article-main-copy div {
  color: var(--gp-foreground);
}

.article-main-copy img {
  max-width: 100%;
  margin: 1.8rem 0;
}

.share-strip {
  display: grid;
  gap: 0.25rem;
  margin-top: auto;
  padding-top: 2.6rem;
  border-top: 1px solid var(--gp-border);
  color: var(--gp-secondary);
}

.article-sidebar {
  align-self: start;
  padding: 1.5rem;
  background: rgba(51, 51, 51, 0.04);
}

.article-sidebar h2 {
  margin: 0 0 1rem;
  font-family: var(--gp-heading);
  font-size: 1.2rem;
}

.article-sidebar h2:not(:first-child) {
  margin-top: 2rem;
}

.article-sidebar div {
  display: grid;
  gap: 0.2rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(51, 51, 51, 0.08);
}

.article-sidebar span,
.article-sidebar small {
  color: var(--gp-secondary);
  font-size: 0.78rem;
}

.article-side-link {
  display: grid;
  gap: 0.25rem;
  padding: 0.8rem;
  background: rgba(51, 51, 51, 0.05);
  font-size: 0.82rem;
}

.article-side-link + .article-side-link {
  margin-top: 0.7rem;
}

.article-more {
  padding: 8.6rem 0 8.9rem;
  background: rgba(51, 51, 51, 0.045);
}

.article-more h2,
.article-cta h2 {
  margin: 0 0 0.8rem;
  font-family: var(--gp-heading);
  font-size: clamp(2.6rem, 3.4vw, 4rem);
  line-height: 1.05;
}

.article-more > .site-shell > p {
  margin: 0 0 3.1rem;
  color: var(--gp-secondary);
}

.article-related-grid .content-card {
  border: 0;
}

.article-related-grid .card-media img {
  aspect-ratio: 16 / 9;
}

.article-related-grid .card-body h2 {
  font-size: 1.2rem;
}

.article-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  padding: 7.8rem 0 20.9rem;
}

.article-cta p {
  margin: 0;
  color: var(--gp-secondary);
}

.geo-system-page {
  padding: 7.4rem 0 0;
}

.geo-system-hero {
  text-align: center;
}

.geo-system-hero h1 {
  margin: 0 0 1rem;
  font-family: var(--gp-heading);
  font-size: clamp(3.2rem, 4.5vw, 5.1rem);
  line-height: 1.04;
}

.geo-system-hero p {
  max-width: 48rem;
  margin: 0 auto;
  color: var(--gp-secondary);
}

.geo-system-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  padding: 5.7rem 0 5.2rem;
}

.geo-system-card {
  display: grid;
  gap: 1rem;
  min-height: 15rem;
  padding: 2.35rem;
  border: 1px solid rgba(51, 51, 51, 0.08);
  background: #fff;
}

.geo-card-icon {
  display: inline-grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border-radius: 6px;
  color: #fff;
  font-weight: 700;
}

.geo-blue {
  background: #4f8ff7;
}

.geo-green {
  background: #31c97a;
}

.geo-purple {
  background: #9a55eb;
}

.geo-system-card h2,
.geo-system-overview h2,
.geo-system-overview h3 {
  margin: 0;
  font-family: var(--gp-heading);
}

.geo-system-card h2 {
  font-size: 1.25rem;
}

.geo-system-card p,
.geo-system-overview p {
  margin: 0;
  color: var(--gp-secondary);
  font-size: 0.92rem;
}

.geo-system-overview {
  margin-bottom: 7.2rem;
  padding: 2.55rem;
  border: 1px solid rgba(51, 51, 51, 0.08);
  background: #fff;
}

.geo-system-overview h2 {
  margin-bottom: 1.8rem;
  font-size: 1.5rem;
}

.geo-system-overview > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 3rem;
}

.geo-system-overview h3 {
  margin-bottom: 0.55rem;
  font-size: 1.05rem;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1.5rem 0;
  color: var(--gp-secondary);
  font-size: 0.9rem;
}

.inquiry-form {
  display: grid;
  gap: 1rem;
  max-width: 720px;
}

.inquiry-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 700;
}

.inquiry-form input,
.inquiry-form textarea {
  width: 100%;
  border: 1px solid var(--gp-border);
  border-radius: 4px;
  padding: 0.9rem 1rem;
  font: inherit;
}

.site-footer {
  margin-top: 6rem;
  padding: 4rem 0 9.2rem;
  background: var(--gp-primary);
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

.site-footer a,
.site-footer p {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer h2,
.site-footer h3 {
  color: #fff;
  font-family: var(--gp-heading);
}

.copyright {
  margin: 3rem auto 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 900px) {
  :root {
    --gp-shell: min(100vw - 2rem, 100rem);
  }

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

  .primary-menu {
    position: absolute;
    inset: 5rem 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: #fff;
    border-bottom: 1px solid var(--gp-border);
  }

  .primary-menu.is-open {
    display: flex;
  }

  .brand-logo,
  .custom-logo {
    width: 12.5rem;
    max-height: 4rem;
  }

  .primary-menu ul {
    flex-direction: column;
    align-items: stretch;
  }

  .primary-menu .sub-menu {
    position: static;
    min-width: 0;
    margin-top: 0.35rem;
    padding: 0.35rem 0 0.35rem 1rem;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .card-grid,
  .footer-grid,
  .about-overview,
  .about-quality,
  .about-four,
  .about-three,
  .about-two,
  .about-equipment > div,
  .home-split,
  .service-card-grid,
  .contact-intro,
  .contact-grid,
  .work-step-grid,
  .visual-post-grid,
  .home-card-grid,
  .service-content section:has(h3) > div > div:nth-child(2),
  .service-content section:has(h2):not(:has(h3)) div:has(> span),
  .home-section-our-printing-services .home-card-grid,
  .home-section-about-gold-printing .home-section-body,
  .home-section-factory-equipment .home-section-body,
  .home-section-logistics-delivery .home-section-body {
    grid-template-columns: 1fr;
  }

  .blog-listing-header,
  .blog-archive-layout,
  .article-visual-grid,
  .article-body-wrap,
  .article-cta,
  .geo-system-cards,
  .geo-system-overview > div {
    grid-template-columns: 1fr;
  }

  .hero,
  .page-hero {
    padding: 4rem 0;
  }

  .hero-home,
  .hero-home-inner {
    min-height: 23rem;
  }

  .hero-home {
    padding: 0;
  }

  .hero-home-inner {
    width: min(100vw - 2.5rem, 28rem);
    padding-block: 3.5rem;
  }

  .hero h1,
  .page-hero h1 {
    max-width: 17rem;
    font-size: clamp(2rem, 10vw, 3.1rem);
  }

  .home-slide {
    object-position: center center;
  }

  .hero-arrow {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 2rem;
  }

  .hero-arrow-prev {
    left: 0.75rem;
  }

  .hero-arrow-next {
    right: 0.75rem;
  }

  .home-section {
    padding: 3.6rem 0;
  }

  body.home .home-section:not(.home-section-stats) {
    padding: 3.8rem 0;
  }

  .home-section-inner {
    width: min(21rem, calc(100% - 2.4rem));
  }

  .home-section h2,
  .home-split-copy h2,
  .home-section-about-gold-printing h2,
  .home-section-factory-equipment h2,
  .home-section-logistics-delivery h2 {
    text-align: center;
  }

  .home-section-body > p:first-of-type,
  .home-section-about-gold-printing .home-section-body > p:first-of-type,
  .home-section-factory-equipment .home-section-body > p:first-of-type,
  .home-section-logistics-delivery .home-section-body > p:first-of-type {
    text-align: center;
  }

  .home-section-about-gold-printing .home-section-body,
  .home-section-factory-equipment .home-section-body,
  .home-section-logistics-delivery .home-section-body {
    gap: 1.6rem;
  }

  .home-section-our-main-clients img {
    max-width: 9rem;
  }

  .home-wide-image,
  .home-split-image {
    aspect-ratio: auto;
    max-height: none;
  }

  .service-tile {
    min-height: 17rem;
  }

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

  .service-content {
    width: min(100% - 2rem, 40rem);
    padding-top: 3rem;
  }

  .service-content > section {
    padding: 3.5rem 0;
  }

  .service-visual-hero {
    min-height: 20rem;
  }

  .visual-hero {
    min-height: 22rem;
  }

  .visual-hero h1,
  .visual-hero-title {
    font-size: clamp(2.4rem, 10vw, 3.4rem);
  }

  .contact-intro,
  .how-we-work,
  .listing-content {
    padding: 3.5rem 0;
  }

  .contact-panel {
    padding: 3.5rem 0;
  }

  .contact-info-box,
  .contact-form-box {
    padding: 1.5rem;
  }
}
