:root {
  --ink: #141513;
  --muted: #6f655b;
  --line: #ddd1bf;
  --paper: #f8f3ea;
  --warm: #efe4d4;
  --white: #ffffff;
  --gold: #c2974a;
  --green: #173f34;
  --blue: #253d59;
  --red: #74352f;
  --wood: #4b2f1e;
  --shadow: 0 22px 65px rgba(55, 34, 22, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(90deg, rgba(194, 151, 74, 0.045) 1px, transparent 1px),
    var(--paper);
  background-size: 28px 28px;
}

a {
  color: inherit;
}

.gp-site-network {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 38px;
  padding: 6px clamp(12px, 4vw, 44px);
  color: #f8f3ea;
  background: #141513;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.02em;
}

.gp-site-network a,
.gp-site-network-pending {
  padding: 6px 10px;
  border-radius: 999px;
  text-decoration: none;
}

.gp-site-network a:hover,
.gp-site-network a[aria-current="page"] {
  color: #141513;
  background: #f1d79f;
}

.gp-site-network-pending {
  color: rgba(248, 243, 234, 0.62);
  border: 1px dashed rgba(248, 243, 234, 0.28);
}

.subsite-status-note {
  margin: 0;
  padding: 12px 18px;
  color: #fff;
  background: #74352f;
  text-align: center;
  font-size: 14px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 12px clamp(18px, 4vw, 54px);
  background: rgba(255, 252, 245, 0.94);
  border-bottom: 1px solid rgba(221, 209, 191, 0.92);
  backdrop-filter: blur(16px);
}

.brand img {
  display: block;
  width: 170px;
  aspect-ratio: 300 / 116;
  height: auto;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 650;
}

.nav a {
  padding: 10px 12px;
  text-decoration: none;
  color: #322a22;
}

.nav a:hover,
.nav .nav-quote {
  color: var(--white);
  background: var(--ink);
}

.nav .nav-quote {
  margin-left: 6px;
}

.hero {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #15120e;
}

.hero-media,
.hero-img,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: heroFade 12s infinite;
}

.hero-img:nth-child(2) {
  animation-delay: 6s;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(10, 14, 19, 0.94) 0%, rgba(10, 14, 19, 0.72) 38%, rgba(10, 14, 19, 0.28) 100%),
    linear-gradient(0deg, rgba(10, 14, 19, 0.78) 0%, rgba(10, 14, 19, 0.16) 55%);
}

@keyframes heroFade {
  0%, 44% { opacity: 1; }
  50%, 94% { opacity: 0; }
  100% { opacity: 1; }
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, 1080px);
  padding: 0 clamp(20px, 5vw, 72px) 78px;
  color: var(--white);
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 980px;
  margin-bottom: 18px;
  font-size: clamp(44px, 6vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  text-decoration: none;
  font-weight: 800;
}

.button.primary {
  color: var(--ink);
  background: var(--white);
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.62);
}

.business-centers,
.knowledge,
.cases,
.quality,
.quote,
.partner-band,
.visual-direction {
  padding: 86px clamp(18px, 5vw, 72px);
}

.business-centers {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.56), rgba(248, 243, 234, 0.92)),
    var(--paper);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: #fffaf2;
  border-bottom: 1px solid var(--line);
}

.proof-strip article {
  display: grid;
  grid-template-rows: 210px 1fr;
  min-height: 420px;
  border-right: 1px solid var(--line);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.proof-strip article:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(55, 34, 22, 0.18);
  z-index: 1;
}

.proof-strip article:last-child {
  border-right: 0;
}

.proof-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.04) contrast(1.03);
}

.proof-strip div {
  padding: 24px;
  background:
    linear-gradient(180deg, #fffaf4, #f7efe2);
}

.proof-strip span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.proof-strip strong {
  display: block;
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.14;
}

.proof-strip p {
  color: var(--muted);
  line-height: 1.58;
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head::after,
.visual-copy::after,
.quality-copy::after,
.quote-copy::after {
  content: "";
  display: block;
  width: 76px;
  height: 2px;
  margin-top: 22px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.section-head h2,
.quality h2,
.quote h2,
.partner-band h2 {
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: 0;
}

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

.solution-card {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--blue);
  box-shadow: var(--shadow);
}

.solution-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 38%),
    radial-gradient(circle at 85% 18%, rgba(255, 215, 147, 0.18), transparent 28%);
}

.solution-card > * {
  position: relative;
  z-index: 1;
}

.solution-card.featured {
  background:
    linear-gradient(145deg, rgba(28, 86, 70, 0.98), rgba(15, 54, 45, 0.98)),
    var(--green);
}

.solution-card:nth-child(3) {
  background:
    linear-gradient(145deg, rgba(127, 57, 47, 0.98), rgba(80, 34, 30, 0.98)),
    var(--red);
}

.solution-card:nth-child(2) {
  background:
    linear-gradient(145deg, rgba(42, 65, 94, 0.98), rgba(29, 47, 69, 0.98)),
    var(--blue);
}

.solution-card h3 {
  margin: 18px 0 14px;
  font-size: 35px;
  line-height: 1.04;
}

.solution-card p,
.solution-card li {
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.6;
}

.solution-card ul {
  padding-left: 19px;
  margin-bottom: 28px;
}

.solution-card a {
  margin-top: auto;
  color: var(--white);
  font-weight: 800;
}

.visual-direction {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 42px;
  align-items: start;
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.95), rgba(232, 216, 192, 0.92)),
    var(--warm);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.visual-copy {
  position: sticky;
  top: 110px;
}

.visual-copy h2 {
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.05;
}

.visual-copy p {
  color: #56616d;
  font-size: 18px;
  line-height: 1.7;
}

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

.story-grid article {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: var(--white);
  background:
    linear-gradient(0deg, rgba(13, 20, 28, 0.86), rgba(13, 20, 28, 0.28)),
    url("assets/hero-premium-books-packaging-v2.png") center / cover;
}

.story-grid article:nth-child(2) {
  background:
    linear-gradient(0deg, rgba(13, 20, 28, 0.86), rgba(13, 20, 28, 0.28)),
    url("assets/color-control-pantone-style.png") center / cover;
}

.story-grid article:nth-child(3) {
  background:
    linear-gradient(0deg, rgba(13, 20, 28, 0.86), rgba(13, 20, 28, 0.28)),
    url("assets/luxury-packaging-middle-east.png") center / cover;
}

.story-grid article:nth-child(4) {
  background:
    linear-gradient(0deg, rgba(13, 20, 28, 0.86), rgba(13, 20, 28, 0.28)),
    url("assets/color-control-pantone-style.png") center / cover;
}

.story-grid span {
  width: fit-content;
  margin-bottom: 14px;
  padding: 6px 9px;
  color: var(--ink);
  background: rgba(255, 250, 238, 0.9);
  border: 1px solid rgba(194, 151, 74, 0.42);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.story-grid h3 {
  margin-bottom: 0;
  font-size: 25px;
  line-height: 1.15;
}

.tag {
  width: fit-content;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 850;
  color: var(--ink);
  background: rgba(255, 250, 238, 0.9);
  border: 1px solid rgba(194, 151, 74, 0.42);
}

.partner-band {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 44px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(20, 21, 19, 0.96), rgba(55, 34, 22, 0.96)),
    var(--ink);
}

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

.value-grid div {
  padding: 20px;
  border: 1px solid rgba(194, 151, 74, 0.24);
  background: rgba(255, 250, 238, 0.055);
}

.value-grid strong,
.value-grid span {
  display: block;
}

.value-grid strong {
  margin-bottom: 10px;
  font-size: 18px;
}

.value-grid span {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.55;
}

.quality,
.quote {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: start;
  background:
    linear-gradient(180deg, #fffdf9, #f9f1e6);
}

.quality-copy p,
.quality-copy li,
.quote-copy p,
.knowledge p,
.case-card p {
  color: var(--muted);
  line-height: 1.65;
}

.quality-copy ol {
  padding-left: 22px;
}

.quality-panel,
.quote-panel {
  padding: 28px;
  background: #fffaf2;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.asset-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.asset-list span {
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 12px;
  background: #fffdf9;
  border: 1px solid var(--line);
  font-weight: 700;
}

.knowledge-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.knowledge article {
  min-height: 220px;
  padding: 24px;
  background:
    linear-gradient(180deg, #fffdf9, #f8efe2);
  border: 1px solid var(--line);
  box-shadow: 0 14px 38px rgba(55, 34, 22, 0.08);
}

.knowledge h3 {
  font-size: 22px;
  line-height: 1.15;
}

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

.case-card {
  overflow: hidden;
  background: #fffdf9;
  border: 1px solid var(--line);
  box-shadow: 0 14px 42px rgba(55, 34, 22, 0.1);
}

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

.case-card div {
  padding: 22px;
}

.case-card span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.case-card h3 {
  margin: 10px 0;
  font-size: 22px;
  line-height: 1.2;
}

.quote-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  margin-bottom: 18px;
}

.quote-tabs button {
  min-height: 46px;
  color: var(--ink);
  background: #fffdf9;
  border: 1px solid var(--line);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.quote-tabs button.is-selected {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.quote-form {
  display: grid;
  gap: 12px;
}

.quote-form.is-hidden {
  display: none;
}

.quote-form label {
  display: grid;
  gap: 7px;
  color: #3d4852;
  font-weight: 750;
}

.quote-form input {
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  border: 1px solid var(--line);
  background: #fffdf9;
  color: var(--ink);
  font: inherit;
}

.quote-form button {
  min-height: 50px;
  margin-top: 6px;
  color: var(--white);
  background: var(--green);
  border: 0;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 5vw, 72px);
  color: var(--white);
  background:
    linear-gradient(135deg, #131411, #3b281b);
}

.footer p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer a {
  font-weight: 800;
}

.page-hero {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: flex-end;
  padding: 120px clamp(18px, 5vw, 72px) 70px;
  color: var(--white);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(10, 14, 19, 0.92), rgba(10, 14, 19, 0.5)),
    url("assets/hero-library-childrens-books.png") center / cover;
}

.page-hero.books {
  background:
    linear-gradient(90deg, rgba(10, 14, 19, 0.92), rgba(10, 14, 19, 0.48)),
    url("assets/hero-premium-books-packaging-v2.png") center / cover;
}

.page-hero.boxes {
  background:
    linear-gradient(90deg, rgba(10, 14, 19, 0.92), rgba(10, 14, 19, 0.46)),
    url("assets/luxury-packaging-middle-east.png") center / cover;
}

.page-hero.color {
  background:
    linear-gradient(90deg, rgba(10, 14, 19, 0.88), rgba(10, 14, 19, 0.44)),
    url("assets/color-control-pantone-style.png") center / cover;
}

.page-hero.children {
  background:
    linear-gradient(90deg, rgba(10, 14, 19, 0.9), rgba(10, 14, 19, 0.44)),
    url("assets/hero-library-childrens-books.png") center / cover;
}

.page-hero-inner {
  width: min(100%, 900px);
}

.page-hero h1 {
  font-size: clamp(42px, 5vw, 72px);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.content-section,
.split-section,
.directory-section,
.form-section {
  padding: 76px clamp(18px, 5vw, 72px);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 44px;
  align-items: start;
}

.copy-block {
  max-width: 760px;
}

.copy-block h2,
.content-section h2,
.directory-section h2,
.form-section h2 {
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.08;
}

.copy-block p,
.content-section p,
.directory-section p,
.form-section p,
.feature-card p,
.mini-card p,
.article-card p,
.testimonial-card p {
  color: var(--muted);
  line-height: 1.68;
}

.keyword-cloud,
.link-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.keyword-cloud span,
.link-cloud a {
  padding: 9px 11px;
  color: #2f281f;
  background: #fffaf2;
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.feature-grid,
.mini-grid,
.article-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

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

.feature-card,
.mini-card,
.article-card,
.testimonial-card {
  padding: 24px;
  background:
    linear-gradient(180deg, #fffdf9, #f8efe2);
  border: 1px solid var(--line);
  box-shadow: 0 14px 38px rgba(55, 34, 22, 0.08);
}

.feature-card h3,
.mini-card h3,
.article-card h3,
.testimonial-card h3 {
  font-size: 23px;
  line-height: 1.18;
}

.feature-card a,
.article-card a {
  color: var(--green);
  font-weight: 900;
}

.dark-section {
  padding: 76px clamp(18px, 5vw, 72px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(20, 21, 19, 0.96), rgba(55, 34, 22, 0.96)),
    var(--ink);
}

.dark-section p {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.68;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.timeline div {
  padding: 20px;
  border: 1px solid rgba(194, 151, 74, 0.28);
  background: rgba(255, 250, 238, 0.055);
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 34px;
  align-items: start;
}

.full-form {
  display: grid;
  gap: 12px;
  padding: 26px;
  background: #fffaf2;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.full-form label {
  display: grid;
  gap: 7px;
  color: #3d3429;
  font-weight: 800;
}

.full-form input,
.full-form select,
.full-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fffdf9;
  border: 1px solid var(--line);
  font: inherit;
}

.full-form textarea {
  min-height: 120px;
}

.full-form input[type="checkbox"] {
  width: auto;
  min-height: 0;
  margin-right: 8px;
}

.full-form button {
  min-height: 52px;
  color: var(--white);
  background: var(--green);
  border: 0;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.page-footer-cta {
  padding: 64px clamp(18px, 5vw, 72px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(20, 21, 19, 0.94), rgba(20, 21, 19, 0.62)),
    url("assets/hero-library-childrens-books.png") center / cover;
}

.page-footer-cta div {
  max-width: 760px;
}

.page-footer-cta h2 {
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.06;
}

.page-footer-cta p {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.68;
}

.media-tile-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.media-tile {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: var(--white);
  background:
    linear-gradient(0deg, rgba(13, 20, 28, 0.84), rgba(13, 20, 28, 0.22)),
    url("assets/hero-premium-books-packaging-v2.png") center / cover;
}

.media-tile:nth-child(2) {
  background:
    linear-gradient(0deg, rgba(13, 20, 28, 0.84), rgba(13, 20, 28, 0.22)),
    url("assets/color-control-pantone-style.png") center / cover;
}

.media-tile:nth-child(3) {
  background:
    linear-gradient(0deg, rgba(13, 20, 28, 0.84), rgba(13, 20, 28, 0.22)),
    url("assets/luxury-packaging-middle-east.png") center / cover;
}

.media-tile:nth-child(4) {
  background:
    linear-gradient(0deg, rgba(13, 20, 28, 0.84), rgba(13, 20, 28, 0.22)),
    url("assets/color-control-pantone-style.png") center / cover;
}

.media-tile:nth-child(5),
.media-tile:nth-child(6) {
  background:
    linear-gradient(0deg, rgba(13, 20, 28, 0.84), rgba(13, 20, 28, 0.22)),
    url("assets/company-culture-team-meeting.png") center / cover;
}

.media-tile:nth-child(6) {
  background:
    linear-gradient(0deg, rgba(13, 20, 28, 0.84), rgba(13, 20, 28, 0.22)),
    url("assets/international-guests-showroom.png") center / cover;
}

.media-tile span {
  width: fit-content;
  margin-bottom: 12px;
  padding: 6px 9px;
  color: var(--ink);
  background: rgba(255, 250, 238, 0.9);
  border: 1px solid rgba(194, 151, 74, 0.42);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.media-tile h3 {
  margin: 0 0 8px;
  font-size: 25px;
  line-height: 1.12;
}

.media-tile p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.award-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.award {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 15%, rgba(194, 151, 74, 0.18), transparent 45%),
    #fffaf2;
  border: 1px solid var(--line);
}

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

.award span {
  margin-top: 9px;
  color: #40352a;
  font-size: 13px;
  font-weight: 850;
}

.section-tint {
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.88), rgba(239, 228, 212, 0.72)),
    var(--warm);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.content-narrow > * {
  max-width: 900px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.process-grid article {
  min-height: 250px;
  padding: 24px;
  background: #fffaf2;
  border: 1px solid var(--line);
}

.process-grid strong {
  display: block;
  margin-bottom: 36px;
  color: var(--gold);
  font-size: 13px;
  letter-spacing: .12em;
}

.process-grid h3 {
  font-size: 24px;
}

.process-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.faq-section,
.article-body {
  padding: 76px clamp(18px, 5vw, 72px);
}

.faq-section h2,
.article-body h2 {
  max-width: 900px;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.08;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.faq-grid details {
  padding: 22px;
  background: #fffaf2;
  border: 1px solid var(--line);
}

.faq-grid summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 850;
}

.faq-grid p,
.article-body p,
.article-body li {
  color: var(--muted);
  line-height: 1.72;
}

.article-body {
  max-width: 1180px;
  margin: 0 auto;
}

.article-body > h2 {
  margin-top: 58px;
}

.article-body > p,
.article-body > ol {
  max-width: 820px;
  font-size: 17px;
}

.answer-box {
  max-width: 960px !important;
  padding: 24px;
  color: #27342f !important;
  background: #eef3ed;
  border-left: 4px solid var(--green);
  font-size: 18px !important;
}

@media (max-width: 980px) {
  .gp-site-network {
    flex-wrap: wrap;
  }

  .site-header {
    position: static;
    align-items: center;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    overflow: visible;
  }

  .nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 8px;
    text-align: center;
    border: 1px solid var(--line);
  }

  .nav .nav-quote {
    margin-left: 0;
  }

  .center-grid,
  .knowledge-grid,
  .case-grid,
  .partner-band,
  .quality,
  .quote,
  .visual-direction,
  .split-section,
  .quote-layout,
  .feature-grid,
  .mini-grid,
  .mini-grid.four,
  .article-grid,
  .testimonial-grid,
  .timeline,
  .media-tile-grid,
  .award-strip {
    grid-template-columns: 1fr;
  }

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

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

  .proof-strip article {
    min-height: 360px;
  }

  .visual-copy {
    position: static;
  }

  .solution-card {
    min-height: auto;
  }

  .hero {
    min-height: 610px;
  }
}

@media (max-width: 620px) {
  .gp-site-network {
    justify-content: flex-start;
    gap: 4px;
    font-size: 11px;
  }

  .gp-site-network a,
  .gp-site-network-pending {
    padding: 6px 8px;
  }

  .brand img {
    width: 140px;
  }

  .hero-content {
    padding-bottom: 54px;
  }

  .nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    font-size: 13px;
  }

  h1 {
    font-size: 40px;
  }

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

  .business-centers,
  .knowledge,
  .cases,
  .quality,
  .quote,
  .partner-band {
    padding: 58px 18px;
  }

  .asset-list,
  .value-grid,
  .quote-tabs,
  .story-grid,
  .proof-strip {
    grid-template-columns: 1fr;
  }

  .process-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .proof-strip article {
    grid-template-rows: 185px 1fr;
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

/* Gold Printing publisher homepage — extends the approved early black/gold/paper system. */
.publisher-home {
  --publisher-black: #101110;
  --publisher-paper: #f3ecdf;
  --publisher-gold: #b98a40;
  --publisher-wood: #3b2619;
  --publisher-green: #17372f;
  background: var(--publisher-paper);
}

.nav-toggle {
  display: none;
  min-height: 42px;
  padding: 0 16px;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  font: inherit;
  font-weight: 800;
}

.publisher-home .site-header {
  min-height: 88px;
  background: rgba(249, 244, 234, 0.96);
}

.publisher-home .brand img {
  width: 178px;
  max-height: 62px;
  aspect-ratio: auto;
}

.publisher-home .publisher-hero {
  min-height: min(780px, calc(100vh - 88px));
}

.publisher-hero .hero-img {
  animation: publisherHero 18s infinite;
}

.publisher-hero .hero-img:nth-child(2) {
  animation-delay: 6s;
}

.publisher-hero .hero-img:nth-child(3) {
  animation-delay: 12s;
}

@keyframes publisherHero {
  0%, 28% { opacity: 1; transform: scale(1); }
  33%, 94% { opacity: 0; transform: scale(1.025); }
  100% { opacity: 1; transform: scale(1); }
}

.publisher-hero .hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 9, 8, 0.98) 0%, rgba(8, 9, 8, 0.82) 42%, rgba(8, 9, 8, 0.12) 76%),
    linear-gradient(0deg, rgba(8, 9, 8, 0.84) 0%, rgba(8, 9, 8, 0.06) 62%);
}

.publisher-hero .hero-content {
  width: min(100%, 1200px);
  padding-bottom: clamp(72px, 9vw, 118px);
}

.publisher-hero h1 {
  max-width: 960px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 7vw, 102px);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -0.035em;
}

.publisher-hero .hero-copy {
  max-width: 740px;
}

.hero-index {
  position: absolute;
  right: clamp(22px, 4vw, 58px);
  bottom: 36px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.82);
  font-size: 11px;
  letter-spacing: .12em;
}

.hero-index i {
  width: 82px;
  height: 1px;
  background: linear-gradient(90deg, var(--publisher-gold) 34%, rgba(255,255,255,.35) 34%);
}

.publisher-proof article {
  grid-template-rows: 250px 1fr;
  min-height: 460px;
}

.publisher-proof div {
  background: linear-gradient(180deg, #f8f1e5, #ece0ce);
}

.publisher-proof strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 600;
}

.book-collection,
.craft-showcase,
.project-path,
.visitor-experience,
.publisher-knowledge {
  padding: clamp(78px, 8vw, 124px) clamp(20px, 5vw, 72px);
}

.book-collection {
  background:
    linear-gradient(90deg, rgba(185,138,64,.055) 1px, transparent 1px),
    var(--publisher-paper);
  background-size: 32px 32px;
}

.collection-intro {
  display: grid;
  grid-template-columns: minmax(260px, .9fr) minmax(360px, 1.35fr);
  column-gap: clamp(36px, 8vw, 120px);
  max-width: 1240px;
  margin: 0 auto 54px;
}

.collection-intro .eyebrow {
  grid-column: 1;
}

.collection-intro h2 {
  grid-column: 1;
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 500;
  line-height: 1.02;
}

.collection-intro > p:last-child {
  grid-column: 2;
  align-self: end;
  max-width: 590px;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.75;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 390px;
  gap: 14px;
  max-width: 1380px;
  margin: 0 auto;
}

.book-card {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  color: #fff;
  background: #171715;
  text-decoration: none;
}

.book-card-wide {
  grid-column: span 2;
}

.book-card img,
.craft-grid img,
.partner-image img,
.strength-images img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(.2,.7,.2,1);
}

.book-card:hover img,
.craft-grid article:hover img {
  transform: scale(1.035);
}

.book-card-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8,9,8,.92) 0%, rgba(8,9,8,.1) 68%);
}

.book-card > div {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 28px;
}

.book-card small,
.craft-grid span,
.knowledge-grid span {
  color: #e3bd75;
  font-weight: 850;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.book-card h3 {
  margin: 8px 0 7px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(23px, 2.2vw, 34px);
  font-weight: 500;
  line-height: 1.06;
}

.book-card p {
  max-width: 500px;
  margin: 0;
  color: rgba(255,255,255,.78);
  line-height: 1.52;
}

.publisher-partner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 800px;
  background: #132c26;
}

.partner-image {
  min-height: 760px;
}

.partner-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(56px, 7vw, 112px);
  color: #fff;
}

.partner-copy h2,
.craft-head h2,
.strength-copy h2,
.project-path h2,
.visitor-head h2,
.publisher-cta h2,
.publisher-knowledge h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 500;
  line-height: 1.02;
}

.partner-lead {
  color: rgba(255,255,255,.76);
  font-size: 18px;
  line-height: 1.72;
}

.publisher-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 30px 0 34px;
  border-top: 1px solid rgba(255,255,255,.18);
  border-left: 1px solid rgba(255,255,255,.18);
}

.publisher-services > div {
  padding: 22px;
  border-right: 1px solid rgba(255,255,255,.18);
  border-bottom: 1px solid rgba(255,255,255,.18);
}

.publisher-services span {
  color: var(--gold);
  font-size: 12px;
}

.publisher-services strong {
  display: block;
  margin: 7px 0;
  font-size: 17px;
}

.publisher-services p {
  margin: 0;
  color: rgba(255,255,255,.64);
  line-height: 1.5;
}

.text-link {
  width: fit-content;
  color: #f0d7a3;
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid rgba(240,215,163,.55);
}

.craft-showcase {
  background: #e8dcc9;
}

.craft-head {
  display: grid;
  grid-template-columns: 1.45fr .55fr;
  gap: 54px;
  align-items: end;
  max-width: 1280px;
  margin: 0 auto 48px;
}

.craft-head > p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.craft-grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr .7fr;
  grid-template-rows: 310px 310px;
  gap: 14px;
  max-width: 1380px;
  margin: 0 auto;
}

.craft-grid article {
  position: relative;
  overflow: hidden;
  background: #171715;
}

.craft-feature {
  grid-row: 1 / span 2;
}

.craft-grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5,6,5,.88), transparent 64%);
}

.craft-grid article > div {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 24px;
  color: #fff;
}

.craft-grid h3 {
  margin: 7px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.15;
}

.strength-section {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  min-height: 760px;
  background: #111210;
}

.strength-copy {
  padding: clamp(60px, 7vw, 112px);
  color: #fff;
}

.strength-copy > p:not(.eyebrow) {
  color: rgba(255,255,255,.7);
  font-size: 18px;
  line-height: 1.75;
}

.strength-numbers {
  margin: 34px 0;
  border-top: 1px solid rgba(255,255,255,.18);
}

.strength-numbers > div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,.18);
}

.strength-numbers strong {
  color: var(--gold);
}

.strength-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1.35fr .65fr;
  gap: 4px;
  min-height: 760px;
}

.strength-images figure {
  margin: 0;
  min-height: 0;
  overflow: hidden;
}

.strength-main {
  grid-column: 1 / span 2;
}

.project-path {
  background: var(--publisher-paper);
}

.project-path .section-head {
  max-width: 900px;
}

.visitor-experience {
  background: #efe4d2;
}

.visitor-head {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(320px, .7fr);
  gap: clamp(36px, 6vw, 100px);
  align-items: end;
}

.visitor-head h2 {
  margin: 14px 0 0;
}

.visitor-head > p {
  max-width: 680px;
  margin: 0;
  color: #5d5142;
  font-size: 18px;
  line-height: 1.76;
}

.visitor-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5px;
  margin-top: clamp(38px, 5vw, 68px);
}

.visitor-gallery figure {
  position: relative;
  min-height: 480px;
  margin: 0;
  overflow: hidden;
  background: #17140f;
}

.visitor-gallery img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.visitor-gallery figure::after {
  content: "";
  position: absolute;
  inset: 38% 0 0;
  background: linear-gradient(180deg, transparent, rgba(12,9,6,.82));
  pointer-events: none;
}

.visitor-gallery figcaption {
  position: absolute;
  z-index: 1;
  right: clamp(22px, 3vw, 42px);
  bottom: clamp(22px, 3vw, 38px);
  left: clamp(22px, 3vw, 42px);
  color: #fff;
}

.visitor-gallery figcaption span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
}

.visitor-gallery figcaption strong {
  display: block;
  max-width: 560px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 500;
  line-height: 1.28;
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin: 54px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #cdbda6;
  border-bottom: 1px solid #cdbda6;
}

.path-grid li {
  min-height: 260px;
  padding: 28px;
  border-right: 1px solid #cdbda6;
}

.path-grid li:last-child {
  border-right: 0;
}

.path-grid span {
  color: var(--gold);
  font-weight: 900;
}

.path-grid h3 {
  margin: 42px 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 500;
}

.path-grid p {
  color: var(--muted);
  line-height: 1.62;
}

.publisher-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: end;
  padding: clamp(72px, 8vw, 120px) clamp(24px, 7vw, 110px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(18,14,10,.96), rgba(18,14,10,.72)),
    url("assets/home-publisher/fine-art-photography-books-v1.png") center/cover;
}

.publisher-cta > div {
  max-width: 900px;
}

.publisher-cta p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255,255,255,.72);
  font-size: 18px;
  line-height: 1.68;
}

.publisher-knowledge {
  background: #f7f1e6;
}

.publisher-knowledge .knowledge-grid a {
  min-height: 280px;
  padding: 28px;
  color: inherit;
  background: transparent;
  border: 1px solid #d4c4ab;
  text-decoration: none;
}

.publisher-knowledge .knowledge-grid h3 {
  margin-top: 38px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 500;
}

.publisher-footer {
  align-items: center;
}

.publisher-footer img {
  width: 150px;
}

.publisher-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.publisher-footer nav a {
  color: rgba(255,255,255,.75);
  text-decoration: none;
}

@media (max-width: 1100px) {
  .collection-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .publisher-partner,
  .strength-section {
    grid-template-columns: 1fr;
  }

  .partner-image {
    min-height: 560px;
  }

  .craft-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 460px 280px 280px;
  }

  .craft-feature {
    grid-column: 1 / span 2;
    grid-row: auto;
  }

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

  .path-grid li {
    border-bottom: 1px solid #cdbda6;
  }
}

@media (max-width: 980px) {
  .publisher-home .site-header {
    position: sticky;
    top: 0;
    flex-direction: row;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .publisher-home .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    grid-template-columns: 1fr 1fr;
    padding: 12px 18px 18px;
    background: #f8f2e7;
    border-bottom: 1px solid var(--line);
  }

  .publisher-home .nav.is-open {
    display: grid;
  }

  .collection-intro,
  .craft-head,
  .visitor-head {
    grid-template-columns: 1fr;
  }

  .collection-intro > p:last-child {
    grid-column: 1;
    margin-top: 26px;
  }

  .publisher-proof article {
    grid-template-rows: 230px 1fr;
  }

  .publisher-cta {
    grid-template-columns: 1fr;
  }

  .visitor-gallery figure {
    min-height: 420px;
  }
}

@media (max-width: 680px) {
  .publisher-home .site-header {
    min-height: 72px;
    padding: 10px 16px;
  }

  .publisher-home .brand img {
    width: 132px;
  }

  .publisher-home .publisher-hero {
    min-height: 690px;
  }

  .publisher-hero .hero-media img {
    object-position: 63% center;
  }

  .publisher-hero .hero-shade {
    background:
      linear-gradient(0deg, rgba(8,9,8,.98) 0%, rgba(8,9,8,.78) 55%, rgba(8,9,8,.28) 100%),
      linear-gradient(90deg, rgba(8,9,8,.68), transparent);
  }

  .publisher-hero .hero-content {
    padding: 0 20px 72px;
  }

  .publisher-hero h1 {
    font-size: clamp(44px, 12vw, 58px);
  }

  .hero-index {
    display: none;
  }

  .publisher-proof {
    grid-template-columns: 1fr;
  }

  .publisher-proof article {
    grid-template-rows: 250px 1fr;
  }

  .collection-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 420px;
  }

  .book-card-wide {
    grid-column: auto;
  }

  .partner-image {
    min-height: 420px;
  }

  .partner-copy,
  .strength-copy {
    padding: 58px 20px;
  }

  .publisher-services {
    grid-template-columns: 1fr;
  }

  .craft-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 340px);
  }

  .craft-feature {
    grid-column: auto;
  }

  .strength-images {
    grid-template-columns: 1fr;
    grid-template-rows: 360px 260px 260px;
    min-height: 0;
  }

  .strength-main {
    grid-column: auto;
  }

  .visitor-head > p {
    font-size: 16px;
  }

  .visitor-gallery {
    grid-template-columns: 1fr;
  }

  .visitor-gallery figure {
    min-height: 340px;
  }

  .path-grid {
    grid-template-columns: 1fr;
  }

  .path-grid li,
  .path-grid li:last-child {
    min-height: auto;
    border-right: 0;
  }

  .path-grid h3 {
    margin-top: 22px;
  }

  .publisher-cta {
    padding: 70px 20px;
  }

  .publisher-footer {
    align-items: flex-start;
    gap: 28px;
  }

  .publisher-footer nav {
    flex-direction: column;
    gap: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .publisher-hero .hero-img {
    animation: none;
  }

  .publisher-hero .hero-img:not(:first-child) {
    display: none;
  }
}
