:root {
  --ivory: #fffaf0;
  --cream: #f7efe1;
  --beige: #e8d8bd;
  --gold: #b99155;
  --brown: #6c533d;
  --black: #171412;
  --muted: #74675b;
  --line: rgba(60, 42, 28, .14);
  --shadow: 0 24px 70px rgba(23, 20, 18, .13);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--black);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
img,
.foogallery,
.subcategory-gallery,
.gallery-grid,
.masonry-collage,
.mini-gallery {
  -webkit-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
}
button, input, textarea { font: inherit; }

.announcement {
  position: sticky;
  top: 0;
  z-index: 1001;
  overflow: hidden;
  background: var(--black);
  color: var(--cream);
  white-space: nowrap;
  font-size: 13px;
  letter-spacing: .02em;
}
.announcement-track {
  display: inline-flex;
  gap: 48px;
  padding: 9px 0;
  animation: atlas-marquee 28s linear infinite;
}
.announcement span { padding-left: 48px; }
@keyframes atlas-marquee { to { transform: translateX(-33.333%); } }

.site-header {
  position: sticky;
  top: 34px;
  z-index: 1000;
  margin: 0 auto;
  transition: all .28s ease;
}
.header-shell {
  position: relative;
  width: min(1180px, calc(100% - 28px));
  margin: 12px auto;
  min-height: 74px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 8px;
  background: rgba(var(--hero-overlay-rgb), .76);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 55px rgba(23, 20, 18, .08);
}
.site-header.is-scrolled .header-shell { min-height: 60px; margin-top: 8px; }
.nav { display: flex; align-items: center; gap: 26px; font-size: 14px; font-weight: 600; }
.nav-left { grid-column: 1; grid-row: 1; }
.nav-right { grid-column: 3; grid-row: 1; justify-content: flex-end; padding-right: 52px; }
.brand {
  grid-column: 2;
  grid-row: 1;
  text-align: center;
  line-height: 1;
  width: clamp(178px, 18vw, 280px);
  display: grid;
  place-items: center;
  transition: transform .24s ease, filter .24s ease;
}
.brand:hover {
  transform: translateY(-2px) scale(1.035);
  filter: drop-shadow(0 12px 18px rgba(185, 145, 85, .22));
}
.brand span, .footer-brand {
  display: block;
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 700;
}
.brand small { display: block; margin-top: 4px; font-size: 11px; text-transform: uppercase; letter-spacing: .24em; color: var(--gold); }
.brand-logo {
  width: 100%;
  max-height: 82px;
  object-fit: contain;
}
.custom-logo { max-height: 58px; width: auto; margin: auto; }
.header-action-icons {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-icon-button {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: transparent;
  box-shadow: 0 14px 34px rgba(23, 20, 18, .12);
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}
.header-icon-button:hover {
  transform: translateY(-1px) scale(1.04);
  box-shadow: 0 18px 42px rgba(23, 20, 18, .18);
}
.header-icon-button img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.has-mega { position: relative; padding: 24px 0; }
.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: min(940px, calc(100vw - 32px));
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: .22s ease;
}
.has-mega:hover .mega-menu, .has-mega:focus-within .mega-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(130px, 1fr));
  gap: 48px;
  padding: 28px 32px 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(var(--hero-overlay-rgb), .94);
  box-shadow: 0 24px 70px rgba(23, 20, 18, .1);
  backdrop-filter: blur(12px);
}
.mega-item {
  display: grid;
  gap: 8px;
  align-content: start;
}
.mega-main-link {
  display: block;
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 800;
  color: var(--black);
}
.mega-main-link:hover { color: var(--gold); }
.mega-all-link {
  display: block;
  margin-top: -4px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
}
.mega-all-link:hover { color: var(--black); }
.mega-item small { color: var(--muted); font-weight: 500; }
.mega-item img { display: none; }
.mega-subitems {
  list-style: none;
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
}
.mega-subitems li {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}
.mega-subitems a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-weight: 500;
  color: inherit;
}
.mega-subitems a:hover {
  color: var(--gold);
}
.menu-toggle, .mobile-panel { display: none; }

.hero {
  position: relative;
  min-height: calc(100vh - 34px);
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: -108px;
  padding: 170px max(22px, 7vw) 70px;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(var(--hero-overlay-rgb), .94) 0%, rgba(var(--hero-overlay-rgb), .68) 38%, rgba(var(--hero-overlay-rgb), .18) 72%);
}
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-content { position: relative; z-index: 1; width: min(680px, 100%); padding-top: 44px; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  font-weight: 800;
}
h1, h2, h3 {
  margin: 0;
  font-family: var(--serif);
  line-height: .98;
  letter-spacing: 0;
}
h1 { font-size: clamp(44px, 7vw, 86px); max-width: 780px; }
h2 { font-size: clamp(34px, 4.3vw, 58px); }
h3 { font-size: 30px; }
.hero p:not(.eyebrow), .section-heading p { max-width: 620px; color: var(--muted); font-size: 18px; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid var(--black);
  border-radius: 999px;
  background: transparent;
  color: var(--black);
  font-weight: 700;
  transition: .2s ease;
}
.button:hover { background: var(--black); color: var(--ivory); transform: translateY(-1px); }
.button-dark { background: var(--black); color: var(--ivory); }
.button-dark:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }
.button-small { min-height: 42px; padding: 9px 16px; font-size: 14px; }
.centered { margin: 26px auto 0; width: max-content; }

.section { width: min(1180px, calc(100% - 32px)); margin: 0 auto; padding: 88px 0; }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 28px; margin-bottom: 38px; }
.section-heading h2 { max-width: 760px; }

.masonry-collage {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 74px;
  gap: 16px;
}
.collage-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 8px;
  background: var(--cream);
  box-shadow: var(--shadow);
  transform: translateY(18px);
  opacity: 0;
  transition: transform .7s ease, opacity .7s ease, box-shadow .25s ease;
}
.collage-card.is-visible { transform: translateY(0); opacity: 1; }
.collage-card:hover { box-shadow: 0 32px 90px rgba(23,20,18,.2); }
.collage-card a { display: block; width: 100%; height: 100%; color: inherit; }
.collage-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.collage-card:hover img { transform: scale(1.06); }
.collage-card figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 250, 240, .88);
  color: var(--black);
  font-weight: 700;
  font-size: 12px;
}
.collage-1 { grid-column: 1 / 5; grid-row: span 5; }
.collage-2 { grid-column: 5 / 9; grid-row: span 4; }
.collage-3 { grid-column: 9 / 13; grid-row: span 6; }
.collage-4 { grid-column: 2 / 6; grid-row: span 4; margin-top: -20px; }
.collage-5 { grid-column: 6 / 10; grid-row: span 5; }
.collage-6 { grid-column: 10 / 13; grid-row: span 3; margin-top: -64px; }

.product-grid, .package-grid, .gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.product-card, .package-card, .post-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.42);
  padding: 18px;
  transition: .2s ease;
}
.product-card:hover, .package-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.product-card img { aspect-ratio: 4 / 3; width: 100%; object-fit: cover; border-radius: 6px; margin-bottom: 18px; }
.product-card p, .package-card li, .editorial p { color: var(--muted); }
.product-card a { color: var(--gold); font-weight: 800; }

.split-band, .showcase, .contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 44px;
  align-items: center;
}
.feature-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.feature-list div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}
.feature-list span { width: 9px; height: 9px; border-radius: 50%; background: var(--gold); }
.finishes { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.finish-row { display: flex; flex-wrap: wrap; gap: 12px; }
.finish-row span {
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--cream);
  font-weight: 700;
}
.showcase-images { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: end; }
.showcase-images img { border-radius: 8px; box-shadow: var(--shadow); aspect-ratio: 3 / 4; object-fit: cover; }
.showcase-images img:first-child { aspect-ratio: 4 / 5; margin-top: 70px; }

.package-card strong { display: block; margin: 18px 0; font-size: 26px; color: var(--brown); }
.package-card ul { padding-left: 18px; }
.testimonials { overflow: hidden; }
.testimonial-slider { display: flex; gap: 18px; transition: transform .35s ease; }
blockquote {
  min-width: min(520px, 86vw);
  margin: 0;
  padding: 28px;
  border-left: 3px solid var(--gold);
  background: var(--cream);
  border-radius: 8px;
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.1;
}
cite { display: block; margin-top: 18px; font-family: var(--sans); font-size: 13px; color: var(--muted); font-style: normal; }
.mini-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.mini-gallery img { aspect-ratio: 1; object-fit: cover; border-radius: 8px; }

.whatsapp-cta {
  width: min(1180px, calc(100% - 32px));
  margin: 48px auto 88px;
  padding: 56px;
  border-radius: 8px;
  background: var(--black);
  color: var(--ivory);
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: center;
}
.whatsapp-cta .button { border-color: var(--ivory); }

.site-footer {
  background: #211b16;
  color: var(--cream);
  padding: 64px max(22px, 7vw) 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 36px;
  width: min(1180px, 100%);
  margin: auto;
}
.site-footer h2 { font-family: var(--sans); font-size: 13px; text-transform: uppercase; letter-spacing: .14em; color: var(--gold); }
.site-footer a, .site-footer p { display: block; color: rgba(247,239,225,.78); margin: 9px 0; }
.footer-link-button {
  display: block;
  margin: 9px 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(247,239,225,.78);
  cursor: pointer;
  text-align: left;
}
.footer-bottom {
  width: min(1180px, 100%);
  margin: 44px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  justify-content: space-between;
  color: rgba(247,239,225,.62);
  font-size: 13px;
}

.page-hero.compact {
  width: min(1180px, calc(100% - 32px));
  margin: 42px auto 0;
  padding: 84px 0 36px;
}
.breadcrumbs { width: min(1180px, calc(100% - 32px)); margin: 28px auto 0; color: var(--muted); font-size: 13px; }
.breadcrumbs span, .breadcrumbs a { margin-right: 8px; }
.support-page {
  padding: 84px 0 110px;
}
.support-shell {
  width: min(880px, calc(100% - 32px));
  margin: 0 auto;
}
.support-shell > .eyebrow,
.support-shell > h1,
.support-intro {
  text-align: center;
}
.support-shell > h1 {
  margin-bottom: 34px;
}
.support-accordion {
  border-top: 1px solid var(--line);
}
.support-accordion details {
  border-bottom: 1px solid var(--line);
}
.support-accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 66px;
  list-style: none;
  cursor: pointer;
  color: var(--black);
  font-size: 18px;
}
.support-accordion summary::-webkit-details-marker {
  display: none;
}
.support-accordion summary::after {
  content: "+";
  color: var(--muted);
  font-size: 24px;
  line-height: 1;
}
.support-accordion details[open] summary::after {
  content: "-";
}
.support-accordion details > div {
  padding: 0 0 22px;
  color: var(--muted);
}
.support-accordion p {
  margin: 0 0 14px;
}
.support-contact-card {
  display: grid;
  grid-template-columns: 1fr minmax(240px, .8fr);
  gap: 28px;
  align-items: stretch;
  margin: 42px auto 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.44);
}
.support-contact-card .eyebrow {
  margin-bottom: 12px;
}
.support-contact-card h2 {
  margin-bottom: 16px;
}
.support-contact-card p {
  margin: 9px 0;
  color: var(--muted);
}
.support-contact-card .button {
  margin-top: 14px;
}
.support-enquiry-form {
  margin-top: 42px;
}
.support-intro {
  margin: 70px auto 34px;
}
.support-intro h2 {
  margin-bottom: 14px;
  font-family: var(--sans);
  font-size: 28px;
  font-weight: 500;
}
.support-intro p {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
}
.category-stack { display: grid; gap: 22px; }
.category-card {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 30px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.42);
}
.category-card img { width: 100%; height: 270px; object-fit: cover; border-radius: 6px; }
.subcategory-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 22px;
}
.subcategory-gallery-only {
  margin-top: 0;
}
.subcategory-plugin-gallery {
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 34px 0 72px;
}
.category-plugin-gallery h2 {
  margin: 34px 0 16px;
  font-size: 28px;
}
.category-plugin-gallery h2:first-child {
  margin-top: 0;
}
.category-plugin-gallery h3 {
  margin: 18px 0 12px;
  font-size: 18px;
}
.subcategory-gallery figure {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.42);
  overflow: hidden;
  transition: transform .24s ease, box-shadow .24s ease;
}
.subcategory-gallery figure:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 58px rgba(23,20,18,.18);
}
.subcategory-gallery-button {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: zoom-in;
}
.subcategory-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .35s ease;
  transform-origin: center;
}
.subcategory-gallery figure:hover img {
  transform: scale(1.18);
}
.subcategory-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2300;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(23,20,18,.88);
}
.subcategory-lightbox[hidden] {
  display: none;
}
.subcategory-lightbox img {
  width: auto;
  max-width: min(1120px, 92vw);
  max-height: 84vh;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 34px 90px rgba(0,0,0,.42);
}
.subcategory-lightbox-close {
  position: absolute;
  top: 22px;
  right: 22px;
  min-width: 78px;
  min-height: 42px;
  border: 1px solid rgba(255,255,255,.68);
  border-radius: 999px;
  background: var(--ivory);
  color: var(--black);
  cursor: pointer;
  font-weight: 800;
}
.subcategory-lightbox-close:hover,
.subcategory-lightbox-close:focus-visible {
  background: var(--gold);
  outline: none;
}
.comparison { margin-top: 42px; overflow-x: auto; }
table { width: 100%; border-collapse: collapse; background: rgba(255,255,255,.5); }
th, td { padding: 16px; border: 1px solid var(--line); text-align: left; }
.filter-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }
.filter-row button {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  padding: 10px 14px;
  cursor: pointer;
}
.filter-row button.active { background: var(--black); color: var(--ivory); }
.gallery-item {
  position: relative;
  border: 0;
  padding: 0;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  background: var(--cream);
}
.gallery-item[hidden] { display: none; }
.gallery-item img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; transition: transform .35s ease; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item span { position: absolute; left: 12px; bottom: 12px; background: rgba(255,250,240,.9); border-radius: 999px; padding: 6px 10px; font-weight: 800; font-size: 12px; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  background: rgba(23,20,18,.86);
  padding: 28px;
}
.lightbox img { max-height: 84vh; border-radius: 8px; box-shadow: var(--shadow); }
.lightbox button { position: absolute; top: 22px; right: 22px; width: 44px; height: 44px; border: 0; border-radius: 50%; font-size: 28px; cursor: pointer; }
.editorial { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.contact-grid {
  width: min(880px, calc(100% - 32px));
  grid-template-columns: 1fr;
  align-items: stretch;
}
.contact-form, .contact-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.44);
}
.contact-form { display: grid; gap: 16px; }
.form-status {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgba(31, 143, 85, .28);
  border-radius: 6px;
  background: rgba(31, 143, 85, .08);
  color: #276542;
  font-weight: 700;
}
.form-status-error {
  border-color: rgba(171, 50, 38, .28);
  background: rgba(171, 50, 38, .08);
  color: #8f2e24;
}
.contact-form label { display: grid; gap: 7px; font-weight: 700; }
.contact-form input, .contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 14px;
  background: var(--ivory);
}
.map-placeholder {
  min-height: 220px;
  margin-top: 22px;
  display: grid;
  place-items: center;
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: var(--muted);
}
.printing-tech-page {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 74px 0 96px;
}
.hp-indigo-hero {
  display: grid;
  gap: 30px;
}
.hp-indigo-copy {
  max-width: 760px;
}
.hp-indigo-copy h1 {
  color: var(--black);
  font-family: var(--serif);
  font-size: clamp(46px, 7vw, 86px);
  font-weight: 700;
  line-height: .98;
}
.hp-indigo-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
}
.hp-indigo-hero img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.hp-indigo-intro {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 42px;
  align-items: start;
  margin: 76px 0 34px;
}
.hp-indigo-intro h2 {
  max-width: 760px;
}
.hp-indigo-intro p:not(.eyebrow) {
  max-width: 560px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}
.hp-indigo-samples {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.hp-indigo-sample {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.48);
}
.hp-indigo-sample img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.hp-indigo-sample div {
  padding: 24px 26px 28px;
}
.hp-indigo-sample h3,
.hp-indigo-points h3 {
  color: var(--black);
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 700;
  line-height: .98;
}
.hp-indigo-sample h4 {
  margin: 16px 0 0;
  color: var(--black);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.25;
}
.hp-indigo-note {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}
.hp-indigo-sample p,
.hp-indigo-points p {
  margin: 5px 0 0;
  color: var(--muted);
  line-height: 1.5;
}
.hp-indigo-section-title {
  margin: 42px 0 16px;
  text-align: center;
  font-family: var(--sans);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
}
.hp-indigo-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 0;
}
.hp-indigo-points div {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.42);
}
.printing-tech-hero {
  text-align: center;
  margin: 0 auto 34px;
}
.printing-tech-hero h1 {
  max-width: none;
  color: var(--black);
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 700;
  line-height: .98;
}
.printing-tech-hero p {
  max-width: 720px;
  margin: 18px auto 0;
  color: var(--muted);
  line-height: 1.45;
}
.printing-tech-hero strong {
  display: block;
  color: var(--black);
}
.printing-tech-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.printing-tech-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.72);
}
.printing-tech-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.printing-tech-card-body {
  padding: 26px 28px 30px;
}
.printing-tech-card h2 {
  color: var(--black);
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 700;
  line-height: .98;
}
.printing-tech-subtitle {
  margin: 4px 0 16px;
  color: var(--muted);
}
.printing-tech-list {
  display: grid;
}
.printing-tech-feature {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}
.printing-tech-feature span {
  width: 24px;
  height: 24px;
  margin-top: 3px;
  border: 1px solid var(--muted);
  border-radius: 50%;
}
.printing-tech-feature h3 {
  color: var(--black);
  font-family: var(--sans);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.25;
}
.printing-tech-feature p {
  margin: 4px 0 0;
  color: var(--muted);
  line-height: 1.5;
}
.whatsapp-popup-toggle {
  position: fixed;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.has-popup { overflow: hidden; }
.whatsapp-popup {
  position: fixed;
  inset: 0;
  z-index: 2100;
  display: grid;
  place-items: end;
  padding: 22px;
  background: rgba(23, 20, 18, .42);
}
.whatsapp-popup { display: none; }
.whatsapp-popup-toggle:checked ~ .whatsapp-popup { display: grid; }
.whatsapp-popup-panel {
  position: relative;
  width: min(430px, 100%);
  padding: 28px;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 8px;
  background: rgba(255, 250, 240, .98);
  box-shadow: var(--shadow);
}
.whatsapp-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--cream);
  color: var(--black);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.whatsapp-popup-panel h2 {
  max-width: 330px;
  font-size: 34px;
}
.whatsapp-popup-copy {
  margin: 12px 0 18px;
  color: var(--muted);
}
.whatsapp-contact {
  display: grid;
  gap: 5px;
  margin: 0 0 18px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.52);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}
.whatsapp-contact strong {
  color: var(--black);
}
.whatsapp-contact span {
  display: block;
}
.whatsapp-quick {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}
.whatsapp-quick button {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fffdf8;
  padding: 11px 12px;
  color: var(--black);
  cursor: pointer;
  text-align: left;
  font-weight: 700;
}
.whatsapp-message-label {
  display: block;
  margin-bottom: 7px;
  font-weight: 800;
}
.whatsapp-popup textarea {
  width: 100%;
  resize: vertical;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px;
  background: #fffdf8;
  color: var(--black);
}
.whatsapp-send {
  width: 100%;
  margin-top: 14px;
}
