/* ============================================================
   PG OFFICIAL TVM — Design System
   A refined, permanently-dark identity for a custom printing
   business: near-black surfaces, a single warm brass accent
   (evoking foil-stamped print work), Fraunces + Plus Jakarta Sans.
   Organized: 1. Tokens 2. Reset 3. Utilities 4. Layout primitives
   5. Components 6. Sections 7. Page-specific 8. Motion 9. Media
   ============================================================ */

/* ---------- 1. Design tokens ---------- */
:root{
  /* Ink (dark) surfaces — the only theme, no light mode */
  --ink:            #09090b;
  --ink-soft:       #131316;
  --ink-raised:     #1b1b1f;
  --ink-border:     #2b2b30;

  /* Single signature accent — a warm, muted brass/gold (foil-stamp feel) */
  --accent:         #c9a24d;
  --accent-strong:  #e0bd6e;
  --accent-soft:    #8a7038;
  --accent-ink:     #1a1508;

  --bg:             var(--ink);
  --bg-raised:      var(--ink-soft);
  --bg-card:        var(--ink-raised);
  --border:         var(--ink-border);
  --text:           #f3f2ef;
  --text-muted:     #a3a1a0;
  --text-soft:      #706e6d;

  --success:        #3fb37f;
  --danger:         #ef5959;

  /* Typography */
  --font-display: "Fraunces", "Iowan Old Style", ui-serif, Georgia, serif;
  --font-body: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "Space Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  --fs-xs:   clamp(1.2rem, 1.1rem + 0.2vw, 1.3rem);
  --fs-sm:   clamp(1.4rem, 1.3rem + 0.25vw, 1.5rem);
  --fs-base: clamp(1.6rem, 1.5rem + 0.3vw, 1.7rem);
  --fs-md:   clamp(1.9rem, 1.7rem + 0.5vw, 2.2rem);
  --fs-lg:   clamp(2.6rem, 2.1rem + 1.2vw, 3.6rem);
  --fs-xl:   clamp(3.6rem, 2.7rem + 2.4vw, 5.6rem);
  --fs-2xl:  clamp(4.6rem, 3.2rem + 3.6vw, 7.6rem);

  /* Spacing */
  --space-2xs: .4rem;
  --space-xs:  .8rem;
  --space-sm:  1.2rem;
  --space-md:  2rem;
  --space-lg:  3.2rem;
  --space-xl:  5.2rem;
  --space-2xl: 8.4rem;

  --radius-sm: .8rem;
  --radius-md: 1.6rem;
  --radius-lg: 2.4rem;
  --radius-pill: 100px;

  --shadow-sm: 0 2px 10px rgba(0,0,0,.3);
  --shadow-md: 0 12px 32px rgba(0,0,0,.42);
  --shadow-lg: 0 24px 60px rgba(0,0,0,.55);
  --shadow-glow: 0 0 0 1px rgba(255,255,255,.06), 0 20px 50px rgba(201,162,77,.16);

  --container: 132rem;
  --header-h: 8rem;

  --ease: cubic-bezier(.22,1,.36,1);
  --dur-fast: .2s;
  --dur: .4s;
  --dur-slow: .7s;
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after{ box-sizing: border-box; }
html{
  font-size: 62.5%; /* 1rem = 10px baseline for easy scale math */
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}
body{
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
img, picture, svg{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ list-style: none; margin: 0; padding: 0; }
button, input, textarea, select{ font: inherit; color: inherit; }
button{ background: none; border: none; cursor: pointer; }
h1,h2,h3,h4,h5,h6{ font-family: var(--font-display); line-height: 1.15; margin: 0; font-weight: 600; }
p{ margin: 0; }

::selection{ background: var(--accent); color: var(--ink); }

::-webkit-scrollbar{ width: 1rem; }
::-webkit-scrollbar-track{ background: var(--bg); }
::-webkit-scrollbar-thumb{ background: var(--border); border-radius: var(--radius-pill); }

/* Visible keyboard focus everywhere */
:focus-visible{
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: .3rem;
}

/* Skip link */
.skip-link{
  position: absolute;
  left: 1rem; top: -6rem;
  background: var(--accent);
  color: var(--accent-ink);
  padding: 1rem 1.6rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  z-index: 10000;
  transition: top var(--dur-fast) var(--ease);
}
.skip-link:focus{ top: 1rem; }

/* ---------- 3. Utilities ---------- */
.container{ max-width: var(--container); margin-inline: auto; padding-inline: clamp(2rem, 5vw, 6rem); }
.section{ padding-block: clamp(5rem, 9vw, 10rem); position: relative; }
.section-tight{ padding-block: clamp(3rem, 5vw, 5rem); }
.visually-hidden{
  position: absolute !important; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0; padding: 0; margin: -1px;
}
.eyebrow{
  display: inline-flex; align-items: center; gap: .9rem;
  font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .18em;
  font-size: var(--fs-xs); color: var(--accent); font-weight: 700; margin-bottom: 1.4rem;
}
.eyebrow::before{ content: ""; display: inline-block; width: 1.8rem; height: 2px; background: var(--accent); flex-shrink: 0; }
.section-head{ max-width: 68rem; margin-inline: auto; text-align: center; margin-bottom: clamp(3rem, 6vw, 5.5rem); }
.section-head.left{ margin-inline: 0; text-align: left; }
.section-head .eyebrow{ justify-content: center; }
.section-title{ font-size: var(--fs-lg); letter-spacing: -.01em; }
.section-title em{ font-style: italic; color: var(--accent); }
.section-lede{ margin-top: 1.4rem; color: var(--text-muted); font-size: var(--fs-md); font-weight: 400; }
.text-muted{ color: var(--text-muted); }

/* Buttons */
.btn{
  --btn-bg: var(--accent);
  --btn-fg: var(--accent-ink);
  display: inline-flex; align-items: center; gap: .9rem;
  padding: 1.3rem 2.8rem;
  font-size: var(--fs-sm); font-weight: 700; font-family: var(--font-body);
  background: var(--btn-bg); color: var(--btn-fg);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
  white-space: nowrap;
}
.btn:hover, .btn:focus-visible{ transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active{ transform: translateY(0); }
.btn svg, .btn i{ width: 1.7rem; height: 1.7rem; }
.btn-outline{ --btn-bg: transparent; --btn-fg: var(--text); box-shadow: inset 0 0 0 1.5px var(--border); }
.btn-outline:hover{ box-shadow: inset 0 0 0 1.5px var(--accent); }
.btn-light{ --btn-bg: #fff; --btn-fg: var(--ink); }
.btn-ghost{ --btn-bg: transparent; --btn-fg: var(--accent); padding-inline: 0; box-shadow: none; }
.btn-ghost:hover{ transform: translateX(4px); box-shadow: none; }
.btn-block{ width: 100%; justify-content: center; }
.btn-sm{ padding: 1rem 1.8rem; font-size: var(--fs-xs); }

/* Tag / chip */
.chip{
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-mono); font-size: var(--fs-xs); letter-spacing: .04em;
  padding: .5rem 1.2rem; border-radius: var(--radius-pill);
  background: color-mix(in srgb, var(--accent) 16%, transparent);
  color: var(--accent-strong);
  border: 1px solid color-mix(in srgb, var(--accent) 40%, transparent);
}

/* Card base */
.card{
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

/* Glass */
.glass{
  background: color-mix(in srgb, var(--bg-raised) 65%, transparent);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid color-mix(in srgb, var(--text) 8%, transparent);
}

/* ---------- Reveal-on-scroll (lightweight, complements AOS) ---------- */
[data-reveal]{
  opacity: 0; transform: translateY(2.4rem);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
[data-reveal].is-visible{ opacity: 1; transform: translateY(0); }

/* ============================================================
   4. HEADER
   ============================================================ */
.header{
  position: fixed; inset: 0 0 auto 0; z-index: 1000;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease), height var(--dur) var(--ease), border-color var(--dur) var(--ease);
  border-bottom: 1px solid transparent;
}
.header.is-scrolled{
  height: 7rem;
  background: color-mix(in srgb, var(--ink) 78%, transparent);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid color-mix(in srgb, #fff 8%, transparent);
  box-shadow: var(--shadow-sm);
}
.header .container{ display: flex; align-items: center; justify-content: space-between; gap: 2rem; width: 100%; }

.brand{ display: flex; align-items: center; gap: 1.2rem; }
.brand img{ width: 4.4rem; height: 4.4rem; object-fit: contain; }
.brand-name{ font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: var(--text); letter-spacing: -.01em; }
.brand-name sup{ font-size: 1.1rem; top: -1em; }

.navbar{ display: flex; align-items: center; gap: .4rem; }
.navbar a{
  position: relative;
  font-size: var(--fs-xs); font-weight: 600; text-transform: uppercase; letter-spacing: .05em;
  color: var(--text-muted); padding: 1rem 1.4rem; border-radius: var(--radius-pill);
  transition: color var(--dur-fast) var(--ease);
}
.navbar a:hover, .navbar a:focus-visible{ color: var(--text); }
.navbar a.active{ color: var(--text); }
.navbar a.active::after{
  content: ""; position: absolute; left: 1.4rem; right: 1.4rem; bottom: .3rem; height: 2px;
  background: linear-gradient(90deg, var(--accent-soft), var(--accent-strong));
  border-radius: 2px;
}

.header-actions{ display: flex; align-items: center; gap: .8rem; }

.icon-btn{
  display: inline-flex; align-items: center; justify-content: center;
  width: 4.2rem; height: 4.2rem; border-radius: 50%;
  color: var(--text); border: 1px solid var(--border);
  transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
}
.icon-btn:hover{ background: var(--accent); color: #fff; border-color: var(--accent); transform: translateY(-2px); }
.icon-btn svg{ width: 1.9rem; height: 1.9rem; }
.icon-btn i{ font-size: 1.7rem; }
.btn i{ font-size: 1.5rem; }
.product-share a i{ font-size: 1.6rem; }
.quick-contact .ico i{ font-size: 1.7rem; }
.footer-col a i, .footer-social a i{ font-size: 1.5rem; color: var(--accent); }
.footer-social a i{ color: #fff; }
.about-list i{ color: var(--success); font-size: 1.7rem; margin-top: .2rem; }
.trustbar .trust-item i{ color: var(--accent-strong); font-size: 1.6rem; }
.form-note i{ color: var(--accent); }
.hero-kicker i{ color: var(--accent-strong); }
.float-btn i{ font-size: 2.2rem; }

#menu-btn{ display: none; }
.menu-toggle{
  display: none; flex-direction: column; gap: .45rem; width: 4.2rem; height: 4.2rem;
  align-items: center; justify-content: center; border-radius: 50%; border: 1px solid var(--border);
}
.menu-toggle span{ width: 2rem; height: 2px; background: var(--text); transition: transform var(--dur-fast) var(--ease), opacity var(--dur-fast) var(--ease); }
.menu-toggle[aria-expanded="true"] span:nth-child(1){ transform: translateY(6.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3){ transform: translateY(-6.5px) rotate(-45deg); }

/* Scroll progress bar */
.scroll-progress{
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--accent-soft), var(--accent-strong));
  z-index: 1100; transition: width .1s linear;
}

/* ============================================================
   5. HERO  (no photography — pure CSS ink/halftone graphic)
   ============================================================ */
.hero{
  position: relative; overflow: hidden;
  min-height: 100vh; display: flex; align-items: center;
  padding-block: calc(var(--header-h) + 4rem) 6rem;
  background: var(--ink); color: #fff;
}
.hero-bg{ position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-bg::before{
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.14) 1px, transparent 1px);
  background-size: 15px 15px;
  mask-image: radial-gradient(ellipse 90% 70% at 70% 30%, #000 40%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 70% 30%, #000 40%, transparent 85%);
}
.hero-bg .blob{ position: absolute; border-radius: 50%; filter: blur(90px); opacity: .22; }
.hero-bg .blob-accent{ width: 52rem; height: 52rem; background: var(--accent); top: -16rem; right: -10rem; }

.hero-inner{
  position: relative; z-index: 1; display: grid; gap: 5rem; align-items: center;
  grid-template-columns: 1fr;
}
.hero-kicker{
  display: inline-flex; align-items: center; gap: 1rem;
  font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .2em; font-size: var(--fs-xs);
  color: #fff; background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  padding: .7rem 1.6rem; border-radius: var(--radius-pill); margin-bottom: 2.2rem;
}
.hero-content h1{ font-size: var(--fs-2xl); color: #fff; letter-spacing: -.02em; margin-bottom: 1.8rem; }
.hero-content h1 em{ font-style: italic; color: var(--accent-strong); }
.hero-content > p{ font-size: var(--fs-md); color: rgba(255,255,255,.78); max-width: 56rem; margin-bottom: 3rem; }
.hero-cta{ display: flex; flex-wrap: wrap; gap: 1.4rem; margin-bottom: 3.6rem; }

.hero-highlights{ display: flex; flex-wrap: wrap; gap: 1rem 2.4rem; }
.hero-highlights li{
  display: flex; align-items: center; gap: .9rem;
  font-size: var(--fs-xs); color: rgba(255,255,255,.72);
  font-family: var(--font-mono); letter-spacing: .02em;
}
.hero-highlights i{ color: var(--accent-strong); font-size: 1.6rem; }

/* Decorative "print plate" panel — reused (in different sizes) for the hero and the about section */
.print-plate{
  position: relative; border-radius: var(--radius-lg);
  background: var(--bg-card); border: 1.5px dashed var(--border);
  padding: clamp(2.2rem, 4vw, 3.2rem);
  box-shadow: var(--shadow-lg);
}
.print-plate .corner{ position: absolute; width: 2.2rem; height: 2.2rem; }
.print-plate .corner::before, .print-plate .corner::after{ content: ""; position: absolute; background: var(--accent-strong); }
.print-plate .corner::before{ width: 100%; height: 2px; top: 0; left: 0; }
.print-plate .corner::after{ width: 2px; height: 100%; top: 0; left: 0; }
.print-plate .corner.tl{ top: 1rem; left: 1rem; }
.print-plate .corner.tr{ top: 1rem; right: 1rem; transform: scaleX(-1); }
.print-plate .corner.bl{ bottom: 1rem; left: 1rem; transform: scaleY(-1); }
.print-plate .corner.br{ bottom: 1rem; right: 1rem; transform: scale(-1); }

.print-plate-head{ display: flex; align-items: center; justify-content: space-between; margin-bottom: 2rem; }
.print-plate-head .job{ font-family: var(--font-mono); font-size: 1.15rem; letter-spacing: .06em; color: var(--text-soft); text-transform: uppercase; }
.print-plate-head .status{
  font-family: var(--font-mono); font-size: 1.1rem; letter-spacing: .06em; text-transform: uppercase; font-weight: 700;
  color: var(--success); display: flex; align-items: center; gap: .6rem;
}
.print-plate-head .status i{ font-size: 1.3rem; }

.plate-stats{ display: grid; gap: 1.4rem; margin-bottom: 2.2rem; }
.plate-stats li{ display: flex; align-items: baseline; justify-content: space-between; gap: 1.2rem; padding-bottom: 1.2rem; border-bottom: 1px dashed var(--border); }
.plate-stats li:last-child{ border-bottom: none; padding-bottom: 0; }
.plate-stats .num{ font-family: var(--font-display); font-size: var(--fs-md); font-weight: 700; color: var(--accent); }
.plate-stats .label{ font-family: var(--font-mono); font-size: 1.15rem; letter-spacing: .04em; text-transform: uppercase; color: var(--text-soft); text-align: right; }

.plate-checklist{ display: grid; gap: 1.2rem; margin-bottom: 2.2rem; }
.plate-checklist li{ display: flex; align-items: center; gap: 1rem; font-size: var(--fs-sm); color: var(--text-muted); }
.plate-checklist i{
  width: 2rem; height: 2rem; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: color-mix(in srgb, var(--success) 18%, transparent); color: var(--success); font-size: 1.1rem;
}

.print-plate-lines{ display: grid; gap: 1rem; }
.print-plate-lines .bar{ height: .9rem; border-radius: .5rem; background: var(--border); }
.print-plate-lines .bar.w60{ width: 60%; }
.print-plate-lines .bar.w80{ width: 80%; }
.print-plate-lines .bar.w40{ width: 40%; }

.hero-visual{ display: flex; justify-content: center; }
.hero-visual .print-plate{
  width: 100%; max-width: 40rem;
  background: rgba(255,255,255,.06); backdrop-filter: blur(16px);
  border-color: rgba(255,255,255,.22);
  animation: floaty 7s ease-in-out infinite;
}
.hero-visual .print-plate-head .job, .hero-visual .print-plate-lines .bar{ color: rgba(255,255,255,.5); }
.hero-visual .print-plate-lines .bar{ background: rgba(255,255,255,.12); }
@keyframes floaty{ 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-1.4rem); } }

.hero-scroll-cue{
  position: absolute; left: 50%; bottom: 2.4rem; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: .8rem;
  color: #fff; font-family: var(--font-mono); font-size: 1.1rem; letter-spacing: .16em; text-transform: uppercase;
  opacity: .85;
}
.hero-scroll-cue .line{ width: 1px; height: 3.6rem; background: linear-gradient(#fff, transparent); animation: scrollcue 1.8s var(--ease) infinite; }
@keyframes scrollcue{ 0%{ transform: scaleY(0); transform-origin: top;} 50%{ transform: scaleY(1); transform-origin: top;} 50.01%{ transform-origin: bottom;} 100%{ transform: scaleY(0); transform-origin: bottom;} }

@media (min-width: 992px){
  .hero-inner{ grid-template-columns: 1.15fr .85fr; gap: 4rem; }
}

/* Marquee ticker */
.ticker{ background: var(--accent); overflow: hidden; padding: 1.3rem 0; position: relative; z-index: 2; }
.ticker-track{ display: flex; width: max-content; animation: ticker 32s linear infinite; }
.ticker:hover .ticker-track{ animation-play-state: paused; }
.ticker-item{
  display: flex; align-items: center; gap: 1.2rem;
  font-family: var(--font-mono); font-size: var(--fs-sm); font-weight: 700; color: #fff;
  text-transform: uppercase; letter-spacing: .04em; padding-inline: 2.4rem; white-space: nowrap;
}
.ticker-item .dot{ width: .6rem; height: .6rem; border-radius: 50%; background: var(--accent); }
@keyframes ticker{ from{ transform: translateX(0); } to{ transform: translateX(-50%); } }

/* ============================================================
   6. STATS
   ============================================================ */
.stats{ padding-block: clamp(4rem, 7vw, 6rem); border-bottom: 1px solid var(--border); }
.stats-grid{
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 3rem 2rem;
}
.stat{ text-align: center; }
.stat-num{
  font-family: var(--font-display); font-size: var(--fs-xl); font-weight: 700;
  background: linear-gradient(90deg, var(--accent-strong), var(--accent-soft));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1;
}
.stat-label{ margin-top: .8rem; font-family: var(--font-mono); font-size: var(--fs-xs); letter-spacing: .08em; text-transform: uppercase; color: var(--text-muted); }

/* ============================================================
   7. PRODUCTS
   ============================================================ */
.products-slider{ padding-block: 1rem 2rem; }
.product-card{
  position: relative; height: 100%; overflow: visible;
  display: flex; flex-direction: column;
  border-radius: var(--radius-md); overflow: hidden;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.product-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-media{ position: relative; aspect-ratio: 1/1; overflow: hidden; background: var(--bg-raised); }
.product-media img{ width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.product-card:hover .product-media img{ transform: scale(1.07); }
.product-moq{
  position: absolute; top: 1.4rem; left: 1.4rem; z-index: 2;
  font-family: var(--font-mono); font-size: 1.15rem; letter-spacing: .03em;
  background: color-mix(in srgb, var(--ink) 62%, transparent); color: #fff;
  border: 1px solid rgba(255,255,255,.25); backdrop-filter: blur(6px);
  padding: .55rem 1.2rem; border-radius: var(--radius-pill);
}
.product-share{
  position: absolute; top: 1.4rem; right: 1.4rem; z-index: 2;
  display: flex; flex-direction: column; gap: .8rem;
}
@media (hover: hover) and (pointer: fine){
  .product-share{ opacity: 0; transform: translateX(1rem); transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease); }
  .product-card:hover .product-share, .product-card:focus-within .product-share{ opacity: 1; transform: translateX(0); }
}
.product-share a, .product-share button{
  width: 3.8rem; height: 3.8rem; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: #fff; color: var(--ink); box-shadow: var(--shadow-sm); border: none; padding: 0; cursor: pointer;
  font-size: 1.6rem; line-height: 1;
}
.product-share a:hover, .product-share button:hover,
.product-share a:focus-visible, .product-share button:focus-visible{ background: var(--accent); color: #fff; }
.product-body{
  flex: 1; display: flex; flex-direction: column; gap: 1rem;
  padding: 2rem; background: var(--bg-card); border: 1px solid var(--border); border-top: none;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}
.product-body h3{ font-size: var(--fs-md); font-weight: 600; }
.product-spec{
  font-family: var(--font-mono); font-size: 1.3rem; color: var(--text-soft);
  line-height: 1.6; flex: 1;
}
.product-body .btn{ align-self: flex-start; margin-top: .4rem; }

.products-slider .swiper-button-next, .products-slider .swiper-button-prev{
  color: var(--text); width: 4.6rem; height: 4.6rem;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 50%;
}
.products-slider .swiper-button-next::after, .products-slider .swiper-button-prev::after{ font-size: 1.6rem; }
.products-slider .swiper-button-next:hover, .products-slider .swiper-button-prev:hover{ background: var(--accent); color: #fff; border-color: var(--accent); }
.products-slider .swiper-pagination-bullet{ background: var(--text-soft); opacity: .5; }
.products-slider .swiper-pagination-bullet-active{ background: var(--accent); opacity: 1; }

.products-footnote{ text-align: center; margin-top: var(--space-lg); color: var(--text-muted); }

/* ============================================================
   8. ABOUT
   ============================================================ */
.about{ position: relative; overflow: hidden; }
.about-grid{ display: grid; gap: 4rem; align-items: center; }
.about-visual{ display: flex; justify-content: center; }
.about-visual .print-plate{ width: 100%; max-width: 42rem; transform: rotate(-2deg); }
.about-visual .print-plate:hover{ transform: rotate(0deg); }
.about-visual .print-plate{ transition: transform var(--dur-slow) var(--ease); }
.about-body p{ color: var(--text-muted); margin-bottom: 1.6rem; font-size: var(--fs-base); }
.about-list{ display: grid; gap: 1.2rem; margin: 2.4rem 0; }
.about-list li{ display: flex; gap: 1.2rem; align-items: flex-start; color: var(--text); }
.about-list svg{ width: 2.2rem; height: 2.2rem; flex-shrink: 0; color: var(--success); margin-top: .1rem; }
#readmore[hidden]{ display: none; }

/* ============================================================
   9. TESTIMONIALS wrapper
   ============================================================ */
.reviews-wrap{ border-radius: var(--radius-lg); overflow: hidden; }

/* ============================================================
   10. FAQ
   ============================================================ */
.faq-list{ max-width: 84rem; margin-inline: auto; display: grid; gap: 1.2rem; }
.faq-item{ background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }
.faq-q{
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  padding: 2rem 2.4rem; text-align: left; font-size: var(--fs-base); font-weight: 700; color: var(--text);
}
.faq-q .plus{
  position: relative; width: 2.2rem; height: 2.2rem; flex-shrink: 0;
}
.faq-q .plus::before, .faq-q .plus::after{
  content: ""; position: absolute; background: var(--accent); border-radius: 2px; transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.faq-q .plus::before{ width: 100%; height: 2px; top: 50%; left: 0; transform: translateY(-50%); }
.faq-q .plus::after{ width: 2px; height: 100%; top: 0; left: 50%; transform: translateX(-50%); }
.faq-item[open] .faq-q .plus::after{ transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq-a{ padding: 0 2.4rem 2.2rem; color: var(--text-muted); }
.faq-item summary{ list-style: none; cursor: pointer; }
.faq-item summary::-webkit-details-marker{ display: none; }

/* ============================================================
   11. CONTACT
   ============================================================ */
.contact-grid{ display: grid; gap: 3rem; grid-template-columns: 1fr; }
.contact-map{ border-radius: var(--radius-lg); overflow: hidden; min-height: 40rem; box-shadow: var(--shadow-md); border: 1px solid var(--border); }
.contact-map iframe{ width: 100%; height: 100%; min-height: 40rem; }
.contact-card{ padding: clamp(2.4rem, 4vw, 4rem); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.contact-card h3{ font-size: var(--fs-lg); margin-bottom: .8rem; }
.contact-card > p{ color: var(--text-muted); margin-bottom: 2.4rem; }
.field{ margin-bottom: 1.8rem; }
.field label{ display: block; font-family: var(--font-mono); font-size: 1.2rem; letter-spacing: .05em; text-transform: uppercase; color: var(--text-soft); margin-bottom: .7rem; }
.field .input, .field textarea, .field select{
  width: 100%; padding: 1.4rem 1.6rem; border-radius: var(--radius-sm);
  background: var(--bg); border: 1.5px solid var(--border); color: var(--text); font-size: var(--fs-sm);
  transition: border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}
.field .input:focus, .field textarea:focus, .field select:focus{ border-color: var(--accent); box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 18%, transparent); }
.field textarea{ resize: vertical; min-height: 12rem; }
.field-row{ display: grid; gap: 1.6rem; grid-template-columns: 1fr; }
.field-error{ display: none; color: var(--danger); font-size: 1.25rem; margin-top: .6rem; font-family: var(--font-mono); }
.field.has-error .input, .field.has-error textarea{ border-color: var(--danger); }
.field.has-error .field-error{ display: block; }
.form-note{ display: flex; align-items: center; gap: .8rem; margin-top: 1.6rem; font-size: 1.3rem; color: var(--text-soft); }
.form-note svg{ width: 1.6rem; height: 1.6rem; flex-shrink: 0; }
.form-status{ margin-top: 1.6rem; padding: 1.4rem 1.6rem; border-radius: var(--radius-sm); font-size: var(--fs-sm); display: none; }
.form-status.show{ display: block; }
.form-status.success{ background: color-mix(in srgb, var(--success) 16%, transparent); color: var(--success); border: 1px solid color-mix(in srgb, var(--success) 40%, transparent); }
.form-status.error{ background: color-mix(in srgb, var(--danger) 16%, transparent); color: var(--danger); border: 1px solid color-mix(in srgb, var(--danger) 40%, transparent); }
.honeypot{ position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.quick-contacts{ display: grid; gap: 1.2rem; margin-top: 2.4rem; }
.quick-contact{
  display: flex; align-items: center; gap: 1.4rem; padding: 1.4rem 1.6rem;
  border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--bg-card);
}
.quick-contact:hover{ border-color: var(--accent); }
.quick-contact .ico{ width: 4.2rem; height: 4.2rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: color-mix(in srgb, var(--accent) 16%, transparent); color: var(--accent); flex-shrink: 0; }
.quick-contact .ico svg{ width: 2rem; height: 2rem; }
.quick-contact strong{ display: block; font-size: var(--fs-sm); }
.quick-contact span{ font-size: var(--fs-xs); color: var(--text-muted); }

/* ============================================================
   12. NEWSLETTER
   ============================================================ */
.newsletter{
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--ink-soft), var(--ink));
  border: 1px solid var(--border);
  padding: clamp(3rem, 6vw, 5.5rem);
  display: grid; gap: 2.4rem; align-items: center;
  position: relative; overflow: hidden;
}
.newsletter::before{
  content: ""; position: absolute; inset: -40% -10% auto auto; width: 40rem; height: 40rem; border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 38%, transparent), transparent 70%);
  filter: blur(10px);
}
.newsletter h3{ font-size: var(--fs-lg); color: #fff; position: relative; }
.newsletter p{ color: rgba(255,255,255,.7); margin-top: .8rem; position: relative; }
.newsletter-form{ display: flex; gap: 1rem; flex-wrap: wrap; position: relative; }
.newsletter-form input{
  flex: 1 1 24rem; padding: 1.4rem 1.8rem; border-radius: var(--radius-pill);
  border: 1.5px solid rgba(255,255,255,.2); background: rgba(255,255,255,.06); color: #fff; font-size: var(--fs-sm);
}
.newsletter-form input::placeholder{ color: rgba(255,255,255,.5); }

/* ============================================================
   13. FOOTER (mega)
   ============================================================ */
.footer{ background: var(--ink); color: #fff; padding-top: clamp(5rem, 8vw, 7rem); position: relative; }
.footer-accent-bar{ height: 3px; width: 100%; background: linear-gradient(90deg, transparent, var(--accent-soft), var(--accent-strong), var(--accent-soft), transparent); }
.footer-grid{ display: grid; gap: 4rem; grid-template-columns: 1.4fr repeat(3, 1fr); padding-bottom: 4rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand .brand{ margin-bottom: 1.6rem; }
.footer-brand .brand-name{ color: #fff; }
.footer-brand p{ color: rgba(255,255,255,.6); max-width: 34rem; margin-bottom: 2rem; }
.footer-social{ display: flex; gap: 1rem; }
.footer-social a{
  width: 4rem; height: 4rem; border-radius: 50%; border: 1px solid rgba(255,255,255,.18);
  display: flex; align-items: center; justify-content: center; color: #fff;
}
.footer-social a:hover{ background: var(--accent); border-color: var(--accent); }
.footer-social svg{ width: 1.7rem; height: 1.7rem; }
.footer-col h3{ color: #fff; font-size: var(--fs-sm); font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1.8rem; }
.footer-col a, .footer-col address{ display: flex; align-items: flex-start; gap: 1rem; color: rgba(255,255,255,.62); padding: .8rem 0; font-style: normal; font-size: var(--fs-sm); }
.footer-col a svg{ width: 1.7rem; height: 1.7rem; flex-shrink: 0; margin-top: .1rem; color: var(--accent); }
.footer-col a:hover{ color: #fff; }
.footer-bottom{ display: flex; flex-wrap: wrap; gap: 1.2rem; align-items: center; justify-content: space-between; padding: 2.4rem 0; color: rgba(255,255,255,.5); font-size: var(--fs-xs); }
.footer-bottom .accent{ color: var(--accent-strong); }
.footer-badges{ display: flex; gap: .8rem; flex-wrap: wrap; }

/* ============================================================
   14. FLOATING UI (whatsapp / call / back-to-top)
   ============================================================ */
.float-stack{ position: fixed; right: 2rem; bottom: 2rem; z-index: 900; display: flex; flex-direction: column; gap: 1.2rem; align-items: flex-end; }
.float-btn{
  width: 5.6rem; height: 5.6rem; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: #fff; box-shadow: var(--shadow-md); transition: transform var(--dur-fast) var(--ease);
}
.float-btn:hover{ transform: translateY(-3px) scale(1.05); }
.float-btn svg{ width: 2.4rem; height: 2.4rem; }
.float-whatsapp{ background: #25d366; }
.float-call{ background: var(--accent); }
.float-top{
  background: var(--bg-card); color: var(--text); border: 1px solid var(--border);
  opacity: 0; visibility: hidden; transform: translateY(1rem);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), visibility var(--dur);
}
.float-top.show{ opacity: 1; visibility: visible; transform: translateY(0); }

/* ============================================================
   15. COOKIE CONSENT
   ============================================================ */
.cookie-banner{
  position: fixed; left: 1.6rem; right: 1.6rem; bottom: 1.6rem; z-index: 1200;
  max-width: 52rem; margin-right: auto;
  padding: 2rem 2.2rem; border-radius: var(--radius-md);
  display: flex; flex-wrap: wrap; gap: 1.6rem; align-items: center; justify-content: space-between;
  box-shadow: var(--shadow-lg);
  transform: translateY(120%); transition: transform var(--dur-slow) var(--ease);
}
@media (max-width: 767.98px){
  .cookie-banner{ right: 1.6rem; max-width: none; bottom: 8.6rem; }
}
.cookie-banner.show{ transform: translateY(0); }
.cookie-banner p{ font-size: var(--fs-xs); color: var(--text-muted); flex: 1 1 26rem; }
.cookie-banner .actions{ display: flex; gap: 1rem; }

/* ============================================================
   16. GOOGLE REVIEW / TRUST MARQUEE HEADER
   ============================================================ */
.trustbar{ border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trustbar .container{ display: flex; flex-wrap: wrap; gap: 2.4rem 4rem; align-items: center; justify-content: center; padding-block: var(--space-md); }
.trustbar .trust-item{ display: flex; align-items: center; gap: 1rem; color: var(--text-muted); font-size: var(--fs-xs); font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .05em; }
.trustbar .trust-item svg{ width: 1.9rem; height: 1.9rem; color: var(--accent-strong); }

/* ============================================================
   17. PAGE-SPECIFIC (utility pages: legal / tracking / shipping / 404)
   ============================================================ */
.page-hero{ padding-top: calc(var(--header-h) + 4.5rem); padding-bottom: 4rem; text-align: center; }
.page-hero .eyebrow{ justify-content: center; }
.page-hero h1{ font-size: var(--fs-xl); }
.breadcrumbs{ display: flex; justify-content: center; gap: .8rem; align-items: center; margin-top: 1.6rem; font-size: var(--fs-xs); color: var(--text-soft); }
.breadcrumbs a{ color: var(--text-soft); }
.breadcrumbs a:hover{ color: var(--accent); }

.legal{ max-width: 84rem; margin-inline: auto; padding-bottom: var(--space-2xl); }
.legal h2{ font-size: var(--fs-md); margin-top: var(--space-xl); margin-bottom: 1.2rem; padding-top: 1rem; border-top: 1px solid var(--border); }
.legal h2:first-of-type{ border-top: none; margin-top: var(--space-md); }
.legal h3{ font-size: var(--fs-base); margin-top: var(--space-md); margin-bottom: .8rem; color: var(--accent); }
.legal p{ color: var(--text-muted); margin-bottom: 1.2rem; }
.legal ul{ display: grid; gap: 1rem; margin-bottom: 1.2rem; padding-left: 0; }
.legal ul li{ color: var(--text-muted); padding-left: 2.2rem; position: relative; }
.legal ul li::before{ content: ""; position: absolute; left: 0; top: .7rem; width: .8rem; height: .8rem; border-radius: 50%; background: var(--accent-strong); }
.legal b{ color: var(--text); }
.legal .updated{ font-family: var(--font-mono); font-size: var(--fs-xs); color: var(--text-soft); }

.util-wrap{ min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: clamp(4rem,8vw,8rem) 2rem; }
.util-card{ width: 100%; max-width: 48rem; padding: clamp(2.6rem, 5vw, 3.6rem); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.util-card .brand{ justify-content: center; margin-bottom: 2rem; }
.util-card h1{ text-align: center; font-size: var(--fs-lg); margin-bottom: .8rem; }
.util-card > p.lede{ text-align: center; color: var(--text-muted); margin-bottom: 2.6rem; }
.captcha-box{
  margin-top: .4rem; padding: 1.2rem; border-radius: var(--radius-sm);
  background: var(--bg); border: 1.5px dashed var(--border); text-align: center;
  font-family: var(--font-mono); font-weight: 700; letter-spacing: .5rem; font-size: var(--fs-md); color: var(--accent);
  user-select: none;
}
.result-box{ margin-top: 1.8rem; text-align: center; font-size: var(--fs-sm); }
.result-box.error{ color: var(--danger); }
.result-box a{ color: var(--success); word-break: break-all; text-decoration: underline; }
.back-home{ display: flex; justify-content: center; margin-top: 2rem; }

.error-404{ min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 4rem 2rem; }
.error-404 .code{ font-family: var(--font-display); font-size: clamp(8rem, 20vw, 16rem); line-height: 1; font-weight: 700; background: linear-gradient(90deg, var(--accent-strong), var(--accent-soft)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.error-404 h1{ font-size: var(--fs-lg); margin-top: 1rem; }
.error-404 p{ color: var(--text-muted); margin: 1.6rem 0 2.8rem; max-width: 46rem; margin-inline: auto; }
.error-404 .actions{ display: flex; gap: 1.4rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   18. RESPONSIVE  (mobile-first breakpoints)
   ============================================================ */
@media (max-width: 991.98px){
  .navbar{
    position: fixed; inset: var(--header-h) 0 0 0; margin: 0; flex-direction: column; align-items: stretch;
    padding: 2rem; gap: .4rem; overflow-y: auto;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: clip-path var(--dur-slow) var(--ease);
  }
  .navbar.active{ clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
  .navbar a{ font-size: 1.9rem; padding: 1.6rem 1rem; border-bottom: 1px solid var(--border); border-radius: 0; }
  .navbar a.active::after{ display: none; }
  .menu-toggle{ display: flex; }
  .stats-grid{ grid-template-columns: repeat(2, 1fr); }
  .about-grid{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 992px){
  .contact-grid{ grid-template-columns: 1.1fr 1fr; }
  .about-grid{ grid-template-columns: .9fr 1.1fr; }
  .field-row{ grid-template-columns: 1fr 1fr; }
  .stats-grid{ grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 575.98px){
  html{ font-size: 56%; }
  .float-stack{ right: 1.4rem; bottom: 1.4rem; }
  .float-btn{ width: 5rem; height: 5rem; }
  .footer-grid{ grid-template-columns: 1fr; }
}

@media (min-width: 1600px){
  html{ font-size: 68.75%; }
}

/* ---------- Lightbox ---------- */
.lightbox{
  border: none; border-radius: var(--radius-lg); padding: 0; max-width: min(90vw, 90rem); width: 100%;
  background: var(--bg-card); color: var(--text); box-shadow: var(--shadow-lg);
}
.lightbox::backdrop{ background: rgba(10,9,14,.78); backdrop-filter: blur(4px); }
.lightbox-inner{ position: relative; }
.lightbox img{ width: 100%; max-height: 74vh; object-fit: contain; background: var(--ink); }
.lightbox-title{ padding: 1.8rem 2.4rem; font-size: var(--fs-md); }
.lightbox-close{
  position: absolute; top: 1.2rem; right: 1.2rem; width: 4rem; height: 4rem; border-radius: 50%;
  background: color-mix(in srgb, #000 45%, transparent); color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; backdrop-filter: blur(6px);
}
.lightbox-close:hover{ background: var(--accent); }

.newsletter-msg{ margin-top: 1.2rem; font-size: var(--fs-xs); color: var(--accent-strong); font-family: var(--font-mono); }
.newsletter-msg[hidden]{ display: none; }

/* Print styles */
@media print{
  .header, .float-stack, .cookie-banner, .ticker, .scroll-progress{ display: none !important; }
}
