* {
  box-sizing: border-box;
}

body.print-page {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  background: #080808;
  color: #ffffff;
}

.print-page a {
  color: inherit;
  text-decoration: none;
}

.print-header {
  width: 100%;
  padding: 22px 6%;
  background: rgba(5, 5, 5, 0.96);
  border-bottom: 1px solid rgba(212, 175, 55, 0.22);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: sticky;
  top: 0;
  z-index: 50;
}

.print-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.print-logo span {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.08em;
}

.print-logo small {
  color: #d4af37;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.print-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.print-nav a {
  opacity: 0.85;
  transition: 0.2s ease;
}

.print-nav a:hover,
.print-nav .active {
  color: #d4af37;
  opacity: 1;
}

.print-nav .active {
  border: 1px solid rgba(212, 175, 55, 0.6);
  padding: 12px 18px;
}

.nav-cta {
  background: #d4af37;
  color: #080808 !important;
  padding: 13px 20px;
  opacity: 1 !important;
}

.print-hero {
  min-height: 620px;
  padding: 80px 6%;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 48px;
  background:
    radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.16), transparent 30%),
    linear-gradient(135deg, #050505 0%, #111111 45%, #030303 100%);
  overflow: hidden;
}

.eyebrow {
  margin: 0 0 14px;
  color: #d4af37;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.print-hero h1 {
  margin: 0;
  font-size: clamp(4rem, 8vw, 8rem);
  line-height: 0.9;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.08em;
}

.print-hero h1 span {
  display: block;
  color: #d4af37;
}

.hero-copy {
  max-width: 560px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  line-height: 1.7;
}

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

.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 24px;
  font-weight: 800;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.primary-btn {
  background: #d4af37;
  color: #080808;
}

.secondary-btn {
  border: 1px solid rgba(212, 175, 55, 0.65);
  color: #d4af37;
}

.print-hero-visual {
  position: relative;
  min-height: 430px;
}

.shirt-card {
  position: absolute;
  width: 330px;
  height: 380px;
  background:
    linear-gradient(145deg, #181818, #050505),
    #111;
  border-radius: 34px 34px 48px 48px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-7deg);
}

.shirt-card::before,
.shirt-card::after {
  content: "";
  position: absolute;
  top: 64px;
  width: 105px;
  height: 170px;
  background: linear-gradient(145deg, #151515, #050505);
  border-radius: 30px;
  z-index: -1;
}

.shirt-card::before {
  left: -72px;
  transform: rotate(20deg);
}

.shirt-card::after {
  right: -72px;
  transform: rotate(-20deg);
}

.shirt-neck {
  position: absolute;
  top: 16px;
  width: 92px;
  height: 42px;
  border-radius: 0 0 60px 60px;
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-top: none;
}

.shirt-main {
  right: 300px;
  top: 40px;
}

.shirt-side {
  right: 20px;
  top: 0;
  transform: rotate(8deg);
}

.shirt-logo {
  text-align: center;
  color: #ffffff;
  font-size: 2.1rem;
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.shirt-logo span {
  color: #d4af37;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
}

.shirt-logo.large {
  font-size: 2.7rem;
}

.print-services {
  background: #ffffff;
  color: #080808;
  padding: 56px 6%;
}

.section-heading {
  max-width: 760px;
}

.section-heading.center {
  text-align: center;
  margin: 0 auto;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.05;
  letter-spacing: -0.06em;
}

.section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.print-services .section-heading p:not(.eyebrow) {
  color: rgba(0, 0, 0, 0.65);
}

.service-row {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.service-row article {
  padding: 24px;
  border-left: 1px solid rgba(0, 0, 0, 0.16);
}

.service-row span {
  color: #d4af37;
  font-size: 0.8rem;
  font-weight: 800;
}

.service-row h3 {
  margin: 12px 0 8px;
  font-size: 1rem;
  text-transform: uppercase;
}

.service-row p {
  margin: 0;
  color: rgba(0, 0, 0, 0.68);
  font-size: 0.9rem;
  line-height: 1.55;
}

.print-work {
  padding: 72px 6%;
  background:
    linear-gradient(180deg, #090909, #111111);
}

.work-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.work-card {
  background: #161616;
  border: 1px solid rgba(212, 175, 55, 0.18);
  padding: 16px;
}

.mock-shirt {
  height: 230px;
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.08), transparent 34%),
    linear-gradient(145deg, #222, #050505);
  border-radius: 18px 18px 30px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d4af37;
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: -0.08em;
}

.work-card h3 {
  margin: 18px 0 4px;
}

.work-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.why-print {
  padding: 70px 6%;
  background: #ffffff;
  color: #080808;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
}

.why-card {
  background: #080808;
  color: #ffffff;
  padding: 42px;
  border-left: 6px solid #d4af37;
}

.why-card h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.06em;
}

.why-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
}

.why-list {
  display: grid;
  gap: 18px;
}

.why-list div {
  padding: 28px;
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.why-list h3 {
  margin: 0 0 8px;
}

.why-list p {
  margin: 0;
  color: rgba(0, 0, 0, 0.68);
  line-height: 1.6;
}

.process-section {
  padding: 72px 6%;
  background: #0b0b0b;
}

.process-grid {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-grid article {
  background: #151515;
  border: 1px solid rgba(212, 175, 55, 0.16);
  padding: 28px;
}

.process-grid span {
  width: 44px;
  height: 44px;
  background: #d4af37;
  color: #080808;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.process-grid h3 {
  margin: 18px 0 8px;
}

.process-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.6;
}

.print-order {
  padding: 76px 6%;
  background:
    linear-gradient(135deg, rgba(212, 175, 55, 0.14), transparent 36%),
    #ffffff;
  color: #080808;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.print-order h2 {
  margin: 0 0 16px;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -0.07em;
}

.print-order p:not(.eyebrow) {
  color: rgba(0, 0, 0, 0.68);
  line-height: 1.7;
}

.print-form {
  background: #080808;
  color: #ffffff;
  padding: 34px;
  display: grid;
  gap: 18px;
  border: 1px solid rgba(212, 175, 55, 0.25);
}

.print-form label {
  display: grid;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.print-form input,
.print-form select,
.print-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #141414;
  color: #ffffff;
  padding: 14px 14px;
  font: inherit;
  outline: none;
}

.print-form input:focus,
.print-form select:focus,
.print-form textarea:focus {
  border-color: #d4af37;
}

.print-form button {
  border: 0;
  background: #d4af37;
  color: #080808;
  min-height: 52px;
  padding: 14px 22px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.print-footer {
  padding: 42px 6%;
  background: #050505;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  display: flex;
  justify-content: space-between;
  gap: 28px;
}

.print-footer h2 {
  margin: 0;
  font-size: 2.6rem;
  letter-spacing: -0.08em;
}

.print-footer h3 {
  color: #d4af37;
  margin: 0 0 10px;
}

.print-footer p {
  max-width: 420px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.6;
}

@media (max-width: 1050px) {
  .print-header {
    align-items: flex-start;
  }

  .print-nav {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 14px;
  }

  .print-hero,
  .why-print,
  .print-order {
    grid-template-columns: 1fr;
  }

  .print-hero-visual {
    min-height: 380px;
  }

  .shirt-main {
    left: 70px;
    right: auto;
  }

  .shirt-side {
    right: 70px;
  }

  .service-row,
  .work-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .print-header {
    position: static;
    flex-direction: column;
  }

  .print-nav {
    justify-content: flex-start;
  }

  .print-nav a {
    font-size: 0.72rem;
  }

  .print-hero {
    padding: 58px 6%;
    min-height: auto;
  }

  .print-hero h1 {
    font-size: 4.2rem;
  }

  .print-hero-visual {
    min-height: 300px;
  }

  .shirt-card {
    width: 210px;
    height: 260px;
  }

  .shirt-card::before,
  .shirt-card::after {
    width: 70px;
    height: 120px;
  }

  .shirt-card::before {
    left: -44px;
  }

  .shirt-card::after {
    right: -44px;
  }

  .shirt-main {
    left: 35px;
    top: 30px;
  }

  .shirt-side {
    right: 35px;
    top: 10px;
  }

  .shirt-logo {
    font-size: 1.35rem;
  }

  .shirt-logo.large {
    font-size: 1.7rem;
  }

  .service-row,
  .work-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .service-row article {
    border-left: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.14);
  }

  .print-footer {
    flex-direction: column;
  }
}
/* Switch back to House of Visuals button */
.print-nav .hov-switch {
  border: 1px solid rgba(212, 175, 55, 0.65);
  color: #d4af37;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.08);
  opacity: 1;
  white-space: nowrap;
}

.print-nav .hov-switch:hover {
  background: #d4af37;
  color: #080808;
}

/* Division line under hero copy */
.division-line {
  max-width: 560px;
  margin: 18px 0 0;
  padding-left: 16px;
  border-left: 3px solid #d4af37;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
  line-height: 1.6;
}

/* Upgraded hero merch mockup details */
.print-mockup-badge {
  position: absolute;
  top: 18px;
  right: 34px;
  z-index: 4;
  padding: 10px 16px;
  border: 1px solid rgba(212, 175, 55, 0.55);
  border-radius: 999px;
  background: rgba(8, 8, 8, 0.72);
  color: #d4af37;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  backdrop-filter: blur(10px);
}

.shirt-logo {
  display: grid;
  justify-items: center;
  gap: 8px;
}

.shirt-logo small {
  display: inline-flex;
  margin-top: 10px;
  padding: 7px 12px;
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mini-print-card {
  position: absolute;
  left: 28px;
  bottom: 22px;
  z-index: 5;
  width: 260px;
  padding: 18px 20px;
  background: rgba(8, 8, 8, 0.82);
  border: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
}

.mini-print-card strong {
  display: block;
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 5px;
}

.mini-print-card span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  line-height: 1.45;
}

@media (max-width: 720px) {
  .print-mockup-badge {
    right: 18px;
    top: 0;
    font-size: 0.62rem;
  }

  .mini-print-card {
    left: 0;
    bottom: -10px;
    width: 220px;
  }
}

/* Popular Orders section */
.popular-orders {
  padding: 64px 6%;
  background: #0b0b0b;
  color: #ffffff;
  border-top: 1px solid rgba(212, 175, 55, 0.16);
  border-bottom: 1px solid rgba(212, 175, 55, 0.16);
}

.popular-orders .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
}

.popular-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.popular-grid article {
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(212, 175, 55, 0.22);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
  text-align: center;
}

@media (max-width: 900px) {
  .popular-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .popular-grid {
    grid-template-columns: 1fr;
  }
}

/* Pricing note section */
.pricing-note {
  padding: 68px 6%;
  background: #f7f4ec;
  color: #080808;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: stretch;
}

.pricing-note-card {
  background: #080808;
  color: #ffffff;
  padding: 38px;
  border-left: 6px solid #d4af37;
}

.pricing-note-card h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.06em;
}

.pricing-note-card p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.75;
  margin: 0;
}

.pricing-factors {
  display: grid;
  gap: 16px;
}

.pricing-factors article {
  padding: 26px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.pricing-factors strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.pricing-factors span {
  color: rgba(0, 0, 0, 0.68);
  line-height: 1.6;
}

@media (max-width: 820px) {
  .pricing-note {
    grid-template-columns: 1fr;
  }
}

/* Artwork and design help section */
.artwork-note {
  padding: 70px 6%;
  background: #ffffff;
  color: #080808;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 38px;
  align-items: center;
}

.artwork-copy h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.06em;
}

.artwork-copy p:not(.eyebrow) {
  color: rgba(0, 0, 0, 0.68);
  line-height: 1.75;
  margin: 0;
}

.artwork-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.artwork-cards article {
  min-height: 210px;
  padding: 30px;
  background: #080808;
  color: #ffffff;
  border-top: 5px solid #d4af37;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.artwork-cards strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.artwork-cards span {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

@media (max-width: 820px) {
  .artwork-note {
    grid-template-columns: 1fr;
  }

  .artwork-cards {
    grid-template-columns: 1fr;
  }
}

/* Minimum order note */
.minimum-note {
  padding: 24px 26px;
  background: #080808;
  color: #ffffff;
  border-left: 5px solid #d4af37;
}

.minimum-note strong {
  display: block;
  margin-bottom: 8px;
  color: #d4af37;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.minimum-note span {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.6;
}

/* Trust and quality points */
.print-trust {
  padding: 72px 6%;
  background: #0b0b0b;
  color: #ffffff;
  border-top: 1px solid rgba(212, 175, 55, 0.16);
}

.trust-grid {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.trust-grid article {
  background: #151515;
  border: 1px solid rgba(212, 175, 55, 0.18);
  padding: 28px;
  min-height: 230px;
}

.trust-grid span {
  color: #d4af37;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.trust-grid h3 {
  margin: 18px 0 10px;
  font-size: 1.1rem;
}

.trust-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.6;
}

@media (max-width: 950px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
}

/* Trust and quality points */
.print-trust {
  padding: 72px 6%;
  background: #0b0b0b;
  color: #ffffff;
  border-top: 1px solid rgba(212, 175, 55, 0.16);
}

.trust-grid {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.trust-grid article {
  background: #151515;
  border: 1px solid rgba(212, 175, 55, 0.18);
  padding: 28px;
  min-height: 230px;
}

.trust-grid span {
  color: #d4af37;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.trust-grid h3 {
  margin: 18px 0 10px;
  font-size: 1.1rem;
}

.trust-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.6;
}

@media (max-width: 950px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile hamburger menu for Print by HOV */
.print-menu-toggle {
  display: none;
  border: 1px solid rgba(212, 175, 55, 0.65);
  background: rgba(212, 175, 55, 0.08);
  color: #d4af37;
  padding: 11px 16px;
  border-radius: 999px;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
}

@media (max-width: 720px) {
  .print-header {
    position: sticky;
    top: 0;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }

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

  .print-nav {
    display: none;
    width: 100%;
    padding-top: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .print-nav.is-open {
    display: flex;
  }

  .print-nav a,
  .print-nav .nav-cta,
  .print-nav .hov-switch {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

/* Clean mobile hero mockup layout */
@media (max-width: 720px) {
  .print-hero {
    gap: 28px;
  }

  .print-hero-visual {
    min-height: 360px;
    margin-top: 10px;
    overflow: visible;
  }

  .print-hero-visual .shirt-main {
    display: none;
  }

  .print-hero-visual .shirt-side {
    left: 50%;
    right: auto;
    top: 58px;
    transform: translateX(-50%) rotate(4deg);
    width: 240px;
    height: 285px;
  }

  .print-hero-visual .shirt-side::before,
  .print-hero-visual .shirt-side::after {
    width: 70px;
    height: 120px;
    top: 58px;
  }

  .print-hero-visual .shirt-side::before {
    left: -44px;
  }

  .print-hero-visual .shirt-side::after {
    right: -44px;
  }

  .print-mockup-badge {
    left: 50%;
    right: auto;
    top: 0;
    transform: translateX(-50%);
    width: max-content;
    max-width: 90%;
    text-align: center;
  }

  .mini-print-card {
    display: none;
  }

  .shirt-logo.large {
    font-size: 1.9rem;
  }

  .shirt-logo small {
    font-size: 0.55rem;
    padding: 6px 10px;
  }
}

/* Print Work carousel upgrade */
.work-carousel {
  margin-top: 36px;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 340px);
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  padding: 0 0 18px;
}

.work-carousel::-webkit-scrollbar {
  height: 10px;
}

.work-carousel::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.08);
}

.work-carousel::-webkit-scrollbar-thumb {
  background: rgba(212, 175, 55, 0.65);
  border-radius: 999px;
}

.work-carousel .work-card {
  scroll-snap-align: start;
  min-height: 420px;
}

.work-carousel .work-card span {
  display: inline-flex;
  margin-top: 16px;
  color: #d4af37;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.work-carousel .work-card h3 {
  margin-top: 10px;
}

.carousel-hint {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
}

@media (min-width: 1150px) {
  .work-carousel {
    grid-auto-columns: minmax(300px, 1fr);
  }
}

@media (max-width: 720px) {
  .work-carousel {
    grid-auto-columns: 82%;
    padding-bottom: 22px;
  }

  .work-carousel .work-card {
    min-height: 390px;
  }

  .carousel-hint {
    text-align: center;
  }
}

/* Mobile-only swipe carousels for shorter mobile page */
@media (max-width: 720px) {
  .popular-grid,
  .service-row,
  .trust-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 82%;
    grid-template-columns: none;
    gap: 16px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    padding-bottom: 20px;
  }

  .popular-grid article,
  .service-row article,
  .trust-grid article {
    scroll-snap-align: start;
  }

  .popular-grid::-webkit-scrollbar,
  .service-row::-webkit-scrollbar,
  .trust-grid::-webkit-scrollbar {
    height: 8px;
  }

  .popular-grid::-webkit-scrollbar-track,
  .service-row::-webkit-scrollbar-track,
  .trust-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.08);
  }

  .popular-grid::-webkit-scrollbar-thumb,
  .service-row::-webkit-scrollbar-thumb,
  .trust-grid::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.65);
    border-radius: 999px;
  }

  .service-row article {
    min-height: 210px;
    border-left: 1px solid rgba(0, 0, 0, 0.16);
    border-top: 0;
    background: #ffffff;
  }

  .popular-grid article {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .trust-grid article {
    min-height: 260px;
  }
}

/* Mobile swipe hints */
.mobile-swipe-hint {
  display: none;
}

@media (max-width: 720px) {
  .mobile-swipe-hint {
    display: block;
    margin: 10px 0 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.85rem;
    text-align: center;
  }

  .mobile-swipe-hint.light {
    color: rgba(0, 0, 0, 0.55);
  }
}

/* Mobile-only carousel for How It Works process */
@media (max-width: 720px) {
  .process-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 82%;
    grid-template-columns: none;
    gap: 16px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    padding-bottom: 20px;
  }

  .process-grid article {
    scroll-snap-align: start;
    min-height: 260px;
  }

  .process-grid::-webkit-scrollbar {
    height: 8px;
  }

  .process-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.08);
  }

  .process-grid::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.65);
    border-radius: 999px;
  }
}

/* Fix How It Works mobile carousel card width */
@media (max-width: 720px) {
  .process-grid {
    grid-auto-columns: 92%;
  }

  .process-grid article {
    min-height: 280px;
    padding: 30px;
  }

  .process-grid h3 {
    font-size: 1.25rem;
    line-height: 1.25;
  }

  .process-grid p {
    font-size: 1rem;
    line-height: 1.55;
  }
}

@media (max-width: 720px) {
  .process-grid {
    grid-auto-columns: 100%;
  }
}

/* Strong fix: How It Works mobile carousel */
@media (max-width: 720px) {
  .process-grid {
    display: flex !important;
    overflow-x: auto;
    gap: 16px;
    scroll-snap-type: x mandatory;
    padding-bottom: 20px;
  }

  .process-grid article {
    flex: 0 0 86% !important;
    min-width: 86% !important;
    max-width: 86% !important;
    scroll-snap-align: start;
    min-height: 280px;
    padding: 30px;
  }

  .process-grid h3 {
    font-size: 1.25rem;
    line-height: 1.25;
    white-space: normal;
    word-break: normal;
    overflow-wrap: normal;
  }

  .process-grid p {
    font-size: 1rem;
    line-height: 1.55;
    white-space: normal;
    word-break: normal;
    overflow-wrap: normal;
  }
}

/* Real mockup images inside Print Work carousel */
.work-image {
  height: 260px;
  background: #050505;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.22);
}

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

.featured-work-card {
  border-color: rgba(212, 175, 55, 0.38);
}

@media (max-width: 720px) {
  .work-image {
    height: 230px;
  }
}

/* Real shirt mockups in hero section */
.real-shirt-hero {
  position: relative;
  min-height: 470px;
}

.hero-shirt-card {
  position: absolute;
  background: #050505;
  border: 1px solid rgba(212, 175, 55, 0.26);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.58);
  overflow: hidden;
}

.hero-shirt-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.96;
}

.hero-shirt-primary {
  width: 320px;
  height: 390px;
  left: 40px;
  top: 58px;
  transform: rotate(-5deg);
  z-index: 2;
}

.hero-shirt-secondary {
  width: 360px;
  height: 430px;
  right: 20px;
  top: 12px;
  transform: rotate(5deg);
  z-index: 3;
}

.hero-shirt-label {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 14px 16px;
  background: rgba(5, 5, 5, 0.78);
  border: 1px solid rgba(212, 175, 55, 0.35);
  backdrop-filter: blur(10px);
}

.hero-shirt-label strong {
  display: block;
  color: #ffffff;
  font-size: 0.95rem;
  margin-bottom: 3px;
}

.hero-shirt-label span {
  color: #d4af37;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

@media (max-width: 1050px) {
  .hero-shirt-primary {
    left: 30px;
  }

  .hero-shirt-secondary {
    right: 30px;
  }
}

@media (max-width: 720px) {
  .real-shirt-hero {
    min-height: 430px;
    margin-top: 18px;
  }

  .hero-shirt-primary {
    width: 220px;
    height: 280px;
    left: 0;
    top: 88px;
    transform: rotate(-4deg);
  }

  .hero-shirt-secondary {
    width: 235px;
    height: 300px;
    right: 0;
    top: 52px;
    transform: rotate(4deg);
  }

  .hero-shirt-label {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 10px 12px;
  }

  .hero-shirt-label strong {
    font-size: 0.78rem;
  }

  .hero-shirt-label span {
    font-size: 0.58rem;
  }
}

/* Cleaned-up hero mockup layout */
.real-shirt-hero {
  min-height: 470px;
  display: block;
}

.real-shirt-hero .print-mockup-badge {
  top: 34px;
  right: 42px;
  z-index: 8;
  background: rgba(8, 8, 8, 0.82);
}

.hero-shirt-card {
  border-radius: 18px;
  background: #050505;
  border: 1px solid rgba(212, 175, 55, 0.28);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.52);
}

.hero-shirt-primary {
  width: 280px;
  height: 350px;
  left: 85px;
  top: 84px;
  transform: rotate(-3deg);
  z-index: 2;
  opacity: 0.88;
}

.hero-shirt-secondary {
  width: 360px;
  height: 405px;
  right: 46px;
  top: 42px;
  transform: rotate(3deg);
  z-index: 4;
}

.hero-shirt-card img {
  object-fit: cover;
  object-position: center;
}

.hero-shirt-primary img {
  object-position: center 45%;
}

.hero-shirt-secondary img {
  object-position: center 42%;
}

.hero-shirt-label {
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 12px 14px;
  background: rgba(5, 5, 5, 0.82);
  border: 1px solid rgba(212, 175, 55, 0.34);
}

.hero-shirt-label strong {
  font-size: 0.88rem;
}

.hero-shirt-label span {
  font-size: 0.66rem;
}

/* Mobile clean-up for real mockups */
@media (max-width: 720px) {
  .real-shirt-hero {
    min-height: 390px;
  }

  .hero-shirt-primary {
    width: 190px;
    height: 245px;
    left: 0;
    top: 104px;
    transform: rotate(-3deg);
    opacity: 0.78;
  }

  .hero-shirt-secondary {
    width: 235px;
    height: 290px;
    right: 0;
    top: 62px;
    transform: rotate(3deg);
  }

  .real-shirt-hero .print-mockup-badge {
    top: 10px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

  .hero-shirt-label {
    display: none;
  }
}

/* Final hero mockup layout: show both cards clearly */
.hero-shirt-primary {
  width: 300px;
  height: 360px;
  left: 28px;
  top: 72px;
  transform: rotate(-2deg);
  z-index: 3;
  opacity: 1;
}

.hero-shirt-secondary {
  width: 330px;
  height: 390px;
  right: 28px;
  top: 46px;
  transform: rotate(2deg);
  z-index: 4;
}

.hero-shirt-primary .hero-shirt-label,
.hero-shirt-secondary .hero-shirt-label {
  left: 14px;
  right: 14px;
  bottom: 14px;
}

/* Make the images fit better inside the cards */
.hero-shirt-card img {
  object-fit: cover;
  object-position: center center;
}

@media (max-width: 1150px) {
  .hero-shirt-primary {
    width: 270px;
    height: 330px;
    left: 10px;
  }

  .hero-shirt-secondary {
    width: 300px;
    height: 360px;
    right: 10px;
  }
}

@media (max-width: 720px) {
  .real-shirt-hero {
    min-height: 560px;
  }

  .hero-shirt-primary,
  .hero-shirt-secondary {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    width: 100%;
    max-width: 320px;
    height: 260px;
    margin: 0 auto 18px;
    transform: none;
  }

  .hero-shirt-primary {
    margin-top: 54px;
  }

  .hero-shirt-label {
    display: block;
  }
}

/* Clean hero showcase layout */
.showcase-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.showcase-shell {
  width: 100%;
  max-width: 620px;
  padding: 22px;
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.16), transparent 35%),
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.46);
}

.showcase-topbar {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 18px;
}

.showcase-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border: 1px solid rgba(212, 175, 55, 0.55);
  border-radius: 999px;
  color: #d4af37;
  background: rgba(8, 8, 8, 0.72);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

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

.showcase-card {
  background: rgba(5, 5, 5, 0.86);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}

.showcase-image {
  height: 320px;
  background: #050505;
}

.showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.showcase-copy {
  padding: 16px 16px 18px;
  background: rgba(0, 0, 0, 0.75);
  border-top: 1px solid rgba(212, 175, 55, 0.16);
}

.showcase-copy strong {
  display: block;
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 4px;
}

.showcase-copy span {
  display: block;
  color: #d4af37;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

@media (max-width: 1050px) {
  .showcase-shell {
    max-width: 560px;
  }

  .showcase-image {
    height: 290px;
  }
}

@media (max-width: 720px) {
  .showcase-hero {
    min-height: auto;
    margin-top: 10px;
  }

  .showcase-shell {
    padding: 16px;
    border-radius: 22px;
  }

  .showcase-topbar {
    justify-content: center;
    margin-bottom: 14px;
  }

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

  .showcase-image {
    height: 300px;
  }

  .showcase-copy {
    padding: 14px 14px 16px;
  }
}

/* Click-to-enlarge lightbox */
.showcase-image {
  width: 100%;
  border: 0;
  padding: 0;
  cursor: zoom-in;
}

.showcase-image:hover img {
  transform: scale(1.03);
}

.showcase-image img {
  transition: transform 0.25s ease;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  padding: 32px;
  background: rgba(0, 0, 0, 0.88);
  display: none;
  align-items: center;
  justify-content: center;
}

.image-lightbox.is-open {
  display: flex;
}

.lightbox-content {
  max-width: min(920px, 92vw);
  max-height: 88vh;
  text-align: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.65);
}

.lightbox-content p {
  margin: 14px 0 0;
  color: #d4af37;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.lightbox-close {
  position: fixed;
  top: 22px;
  right: 26px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(212, 175, 55, 0.55);
  border-radius: 50%;
  background: rgba(8, 8, 8, 0.8);
  color: #ffffff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox-close:hover {
  background: #d4af37;
  color: #080808;
}

@media (max-width: 720px) {
  .image-lightbox {
    padding: 18px;
  }

  .lightbox-close {
    top: 14px;
    right: 14px;
  }
}

/* Make Print Work image cards clickable and consistent */
.work-card .work-image {
  width: 100%;
  border: 0;
  padding: 0;
  cursor: zoom-in;
}

.work-card .work-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.work-card .work-image:hover img {
  transform: scale(1.03);
}

/* Updated Print by HOV luxury brand palette */
:root {
  --print-black: #090806;
  --print-soft-black: #16130f;
  --print-bronze: #4b3215;
  --print-gold: #d6a63b;
  --print-light-gold: #f0d487;
  --print-ivory: #f6f0e4;
  --print-muted-cream: #d8ccb8;
}

/* Updated logo in header */
.print-logo-image {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.print-logo-image img {
  width: 76px;
  height: 76px;
  object-fit: contain;
  display: block;
  border-radius: 50%;
  filter:
    drop-shadow(0 0 10px rgba(214, 166, 59, 0.18))
    drop-shadow(0 8px 18px rgba(0, 0, 0, 0.45));
}

/* Refined luxury header */
.print-header {
  background:
    linear-gradient(180deg, rgba(22, 19, 15, 0.98), rgba(9, 8, 6, 0.98));
  border-bottom: 1px solid rgba(214, 166, 59, 0.34);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.28);
}

.print-nav a {
  color: var(--print-muted-cream);
}

.print-nav a:hover,
.print-nav .active {
  color: var(--print-light-gold);
}

.print-nav .nav-cta {
  background:
    linear-gradient(135deg, #f0d487 0%, #d6a63b 52%, #9e6e1f 100%);
  color: var(--print-black) !important;
  border: 1px solid rgba(240, 212, 135, 0.7);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 12px 28px rgba(214, 166, 59, 0.2);
}

.print-nav .hov-switch {
  border-color: rgba(214, 166, 59, 0.62);
  color: var(--print-light-gold);
  background:
    linear-gradient(135deg, rgba(75, 50, 21, 0.35), rgba(9, 8, 6, 0.82));
}

/* Updated premium hero */
.print-hero {
  background:
    radial-gradient(circle at 82% 18%, rgba(214, 166, 59, 0.18), transparent 34%),
    radial-gradient(circle at 16% 88%, rgba(75, 50, 21, 0.18), transparent 34%),
    linear-gradient(135deg, #090806 0%, #16130f 52%, #090806 100%);
  border-bottom: 1px solid rgba(214, 166, 59, 0.18);
}

.print-hero .eyebrow {
  color: var(--print-light-gold);
}

.print-hero h1 {
  color: var(--print-ivory);
  text-shadow: 0 5px 24px rgba(0, 0, 0, 0.42);
}

.print-hero h1 span {
  background: linear-gradient(
    180deg,
    #fff1ba 0%,
    #f0d487 32%,
    #d6a63b 62%,
    #9e6e1f 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy {
  color: rgba(246, 240, 228, 0.78);
}

.division-line {
  border-left-color: var(--print-gold);
  color: rgba(246, 240, 228, 0.9);
}

.primary-btn {
  background:
    linear-gradient(135deg, #f0d487 0%, #d6a63b 52%, #9e6e1f 100%);
  color: var(--print-black);
  border: 1px solid rgba(240, 212, 135, 0.75);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 14px 32px rgba(214, 166, 59, 0.2);
}

.secondary-btn {
  border-color: rgba(214, 166, 59, 0.64);
  color: var(--print-light-gold);
  background: rgba(75, 50, 21, 0.12);
}

/* Updated hero showcase panel */
.showcase-shell {
  background:
    radial-gradient(circle at top right, rgba(214, 166, 59, 0.18), transparent 38%),
    linear-gradient(145deg, rgba(38, 29, 18, 0.95), rgba(9, 8, 6, 0.97));
  border-color: rgba(214, 166, 59, 0.32);
  box-shadow:
    inset 0 1px 0 rgba(240, 212, 135, 0.08),
    0 32px 85px rgba(0, 0, 0, 0.52);
}

.showcase-tag {
  color: var(--print-light-gold);
  border-color: rgba(214, 166, 59, 0.62);
  background:
    linear-gradient(135deg, rgba(75, 50, 21, 0.58), rgba(9, 8, 6, 0.9));
}

.showcase-card {
  background: var(--print-black);
  border-color: rgba(214, 166, 59, 0.26);
}

.showcase-copy {
  background:
    linear-gradient(180deg, rgba(22, 19, 15, 0.96), rgba(9, 8, 6, 0.98));
  border-top-color: rgba(214, 166, 59, 0.24);
}

.showcase-copy strong {
  color: var(--print-ivory);
}

.showcase-copy span {
  color: var(--print-light-gold);
}

@media (max-width: 720px) {
  .print-logo-image img {
    width: 58px;
    height: 58px;
  }
}

/* Cleaner Print by HOV header logo */
.print-logo-image {
  width: 86px;
  height: 86px;
  padding: 5px;
  border-radius: 50%;
  overflow: hidden;
  background:
    radial-gradient(circle, #20170d 0%, #090806 72%);
  border: 1px solid rgba(214, 166, 59, 0.65);
  box-shadow:
    inset 0 0 0 3px rgba(9, 8, 6, 0.9),
    0 8px 24px rgba(0, 0, 0, 0.42),
    0 0 18px rgba(214, 166, 59, 0.12);
}

.print-logo-image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  transform: scale(1.16);
  filter: none;
}

/* Keep the logo balanced inside the header */
.print-header {
  min-height: 104px;
}

@media (max-width: 720px) {
  .print-logo-image {
    width: 62px;
    height: 62px;
    padding: 4px;
  }

  .print-logo-image img {
    transform: scale(1.18);
  }

  .print-header {
    min-height: auto;
  }
}


/* =========================================================
   FINAL LUXURY PRINT BY HOV HERO
   Added after earlier rules so these styles take priority.
   ========================================================= */

.luxury-print-hero {
  position: relative;
  isolation: isolate;
  min-height: 680px;
  padding: 88px clamp(28px, 6vw, 96px);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(380px, 0.98fr);
  gap: clamp(48px, 7vw, 110px);
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 82% 42%,
      rgba(240, 193, 83, 0.22),
      transparent 27%
    ),
    radial-gradient(
      circle at 14% 88%,
      rgba(111, 67, 20, 0.22),
      transparent 34%
    ),
    linear-gradient(
      115deg,
      #060504 0%,
      #100b07 43%,
      #241407 74%,
      #0a0704 100%
    );
  border-bottom: 1px solid rgba(214, 166, 59, 0.42);
}

.luxury-print-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.32;
  background-image:
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.018) 0,
      rgba(255, 255, 255, 0.018) 1px,
      transparent 1px,
      transparent 4px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.05) 0,
      rgba(0, 0, 0, 0.05) 1px,
      transparent 1px,
      transparent 5px
    );
  pointer-events: none;
}

.luxury-print-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(240, 212, 135, 0.7),
    transparent
  );
}

.luxury-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.luxury-hero-copy .eyebrow {
  margin-bottom: 20px;
  color: #f0d487;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.luxury-hero-copy h1 {
  max-width: 760px;
  margin: 0;
  color: #f8f1e6;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(3rem, 6.2vw, 6.6rem);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.055em;
  text-transform: none;
}

.luxury-hero-copy h1 span {
  display: block;
  margin-top: 8px;
  background: linear-gradient(
    180deg,
    #fff3bd 0%,
    #efce75 31%,
    #cf932c 67%,
    #855012 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.luxury-hero-copy .hero-copy {
  max-width: 670px;
  margin: 28px 0 0;
  color: rgba(246, 240, 228, 0.78);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.78;
}

.luxury-hero-copy .division-line {
  max-width: 620px;
  margin-top: 22px;
  padding: 13px 0 13px 18px;
  border-left: 2px solid #d6a63b;
  color: rgba(246, 240, 228, 0.9);
  font-weight: 700;
}

.luxury-print-hero .hero-actions {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.luxury-print-hero .primary-btn,
.luxury-print-hero .secondary-btn {
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.luxury-print-hero .primary-btn {
  color: #110b04;
  border: 1px solid rgba(255, 233, 171, 0.82);
  background:
    linear-gradient(
      135deg,
      #f8dda0 0%,
      #dca43b 52%,
      #9d6517 100%
    );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    0 14px 34px rgba(214, 166, 59, 0.22);
}

.luxury-print-hero .secondary-btn {
  color: #f0d487;
  border: 1px solid rgba(214, 166, 59, 0.62);
  background: rgba(9, 8, 6, 0.52);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.luxury-print-hero .primary-btn:hover,
.luxury-print-hero .secondary-btn:hover {
  transform: translateY(-2px);
}

.luxury-hero-points {
  margin-top: 32px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.luxury-hero-points span {
  padding: 9px 13px;
  border: 1px solid rgba(214, 166, 59, 0.22);
  border-radius: 999px;
  color: rgba(246, 240, 228, 0.68);
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.luxury-hero-emblem {
  position: relative;
  z-index: 2;
  min-height: 510px;
  display: grid;
  place-items: center;
  align-content: center;
}

.emblem-glow {
  position: absolute;
  width: min(500px, 90%);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(
      circle,
      rgba(240, 193, 83, 0.24) 0%,
      rgba(214, 166, 59, 0.11) 34%,
      transparent 70%
    );
  filter: blur(14px);
  pointer-events: none;
}

.hero-logo-button {
  position: relative;
  z-index: 2;
  width: min(470px, 92%);
  aspect-ratio: 1;
  padding: 0;
  border: 0;
  border-radius: 50%;
  overflow: hidden;
  background: transparent;
  cursor: zoom-in;
  filter:
    drop-shadow(0 34px 42px rgba(0, 0, 0, 0.64))
    drop-shadow(0 0 26px rgba(214, 166, 59, 0.2));
  transition:
    transform 220ms ease,
    filter 220ms ease;
}

.hero-logo-button:hover {
  transform: translateY(-5px) scale(1.012);
  filter:
    drop-shadow(0 38px 48px rgba(0, 0, 0, 0.68))
    drop-shadow(0 0 34px rgba(214, 166, 59, 0.3));
}

.hero-logo-button img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 50%;
  transform: scale(1.14);
}

.luxury-hero-emblem > p {
  position: relative;
  z-index: 2;
  margin: 18px 0 0;
  color: rgba(240, 212, 135, 0.8);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

@media (max-width: 1050px) {
  .luxury-print-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .luxury-hero-emblem {
    min-height: 430px;
  }

  .hero-logo-button {
    width: min(420px, 78vw);
  }
}

@media (max-width: 720px) {
  .luxury-print-hero {
    padding: 54px 22px 58px;
    gap: 34px;
  }

  .luxury-hero-copy h1 {
    font-size: clamp(2.75rem, 15vw, 4.5rem);
    line-height: 0.98;
  }

  .luxury-hero-copy .hero-copy {
    margin-top: 22px;
    font-size: 1rem;
  }

  .luxury-print-hero .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .luxury-print-hero .primary-btn,
  .luxury-print-hero .secondary-btn {
    width: 100%;
  }

  .luxury-hero-points {
    justify-content: center;
  }

  .luxury-hero-emblem {
    min-height: 330px;
  }

  .hero-logo-button {
    width: min(310px, 86vw);
  }

  .luxury-hero-emblem > p {
    text-align: center;
    line-height: 1.6;
  }
}

/* Remove extra circle behind the header logo */
.print-logo-image {
  width: 92px;
  height: 92px;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.print-logo-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0;
  transform: none;
  filter:
    drop-shadow(0 8px 18px rgba(0, 0, 0, 0.45))
    drop-shadow(0 0 10px rgba(214, 166, 59, 0.16));
}

@media (max-width: 720px) {
  .print-logo-image {
    width: 66px;
    height: 66px;
  }

  .print-logo-image img {
    transform: none;
  }
}

/* Header wordmark replacing duplicate logo */
.print-wordmark {
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
  color: #f6f0e4;
  text-decoration: none;
  flex-shrink: 0;
}

.print-wordmark span {
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1;
}

.print-wordmark small {
  color: #d6a63b;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.print-wordmark:hover span {
  color: #f0d487;
}

@media (max-width: 720px) {
  .print-wordmark span {
    font-size: 1.05rem;
  }

  .print-wordmark small {
    font-size: 0.52rem;
    letter-spacing: 0.12em;
  }
}

/* Print by HOV testimonials */
.print-testimonials {
  padding: clamp(70px, 9vw, 120px) 6%;
  background:
    radial-gradient(circle at 15% 20%, rgba(202, 157, 63, 0.12), transparent 30%),
    linear-gradient(180deg, #0d0c0a, #15110b);
  border-top: 1px solid rgba(211, 169, 78, 0.2);
  border-bottom: 1px solid rgba(211, 169, 78, 0.2);
}

.print-testimonials-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  align-items: center;
  gap: clamp(34px, 6vw, 80px);
}

.print-testimonials-copy h2 {
  margin: 0;
  color: #fff8e8;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.08;
}

.print-testimonials-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 20px 0 0;
  color: #bbb1a1;
  line-height: 1.75;
}

.print-testimonial-coming-soon {
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(211, 169, 78, 0.42);
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(211, 169, 78, 0.15), transparent 38%),
    rgba(18, 16, 12, 0.92);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
}

.print-testimonial-stars {
  color: #e1bb65;
  font-size: 1.15rem;
  letter-spacing: 0.18em;
}

.print-testimonial-coming-soon h3 {
  margin: 15px 0 0;
  color: #fff7e7;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
}

.print-testimonial-coming-soon p {
  margin: 15px 0 0;
  color: #aaa092;
  line-height: 1.7;
}

.print-testimonial-button {
  min-height: 48px;
  margin-top: 25px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d3a94e;
  border-radius: 999px;
  color: #171006;
  background: linear-gradient(135deg, #efd98f, #c89232);
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.print-testimonial-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 34px rgba(211, 169, 78, 0.2);
}

@media (max-width: 800px) {
  .print-testimonials-inner {
    grid-template-columns: 1fr;
  }

  .print-testimonial-button {
    width: 100%;
    text-align: center;
  }
}

/* Compact Print testimonial card */
.print-testimonial-card {
  max-width: 680px;
  padding: clamp(24px, 3vw, 34px);
}

.print-testimonial-quote {
  margin: 18px 0 0;
}

.print-testimonial-quote p {
  margin: 0 0 12px;
  color: #b9b0a3;
  line-height: 1.65;
}

.print-testimonial-full[hidden] {
  display: none;
}

.print-testimonial-full:not([hidden]) {
  margin-top: 12px;
}

.print-testimonial-toggle {
  margin-top: 8px;
  padding: 0;
  border: 0;
  color: #e1bb65;
  background: transparent;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.print-testimonial-toggle:hover {
  color: #f3d98e;
}

.print-testimonial-author {
  margin-top: 24px;
}

.print-testimonial-service {
  margin: 10px 0 0;
  color: #d7b461;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Print testimonial author */
.print-testimonial-author {
  padding-top: 20px;
  border-top: 1px solid rgba(211, 169, 78, 0.22);
}

.print-testimonial-author strong,
.print-testimonial-author span {
  display: block;
}

.print-testimonial-author strong {
  color: #efd28b;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 800;
  line-height: 1.15;
}

.print-testimonial-author span {
  margin-top: 10px;
  color: #c6c0b6;
  font-size: clamp(0.95rem, 1.5vw, 1.12rem);
  line-height: 1.5;
}
