/* ============================================================
   PrintBannere.ro — Design System
   Swap your brand values into the :root tokens below.
   No JavaScript. Mobile-first. WCAG AA.
   ============================================================ */

/* ---------- 1. DESIGN TOKENS ---------- */
:root {
  /* Brand color — single confident accent */
  --accent:        #E5481F;   /* vermilion ink */
  --accent-deep:   #C3360F;   /* hover / pressed */
  --accent-soft:   #FBE4DB;   /* tinted surfaces */
  --accent-ink:    #7A2410;   /* accent text on light */

  /* Neutrals — warm "paper" + ink */
  --paper:         #F6F1E8;   /* page background */
  --paper-2:       #EFE8DA;   /* alt sections */
  --surface:       #FFFFFF;   /* cards */
  --ink:           #1A1712;   /* headlines / near-black */
  --ink-2:         #4A4339;   /* body text */
  --ink-3:         #6B6354;   /* muted / captions (AA ≥4.5:1 on paper) */
  --line:          rgba(26, 23, 18, 0.12);
  --line-strong:   rgba(26, 23, 18, 0.22);

  /* Support hue for accents inside media / chips */
  --teal:          #16868E;
  --teal-soft:     #DCEDEE;
  --teal-ink:      #0C5358;

  /* Gradients */
  --grad-accent:   linear-gradient(125deg, #F1592F 0%, #E5481F 48%, #C3360F 100%);
  --grad-ink:      linear-gradient(150deg, #221E18 0%, #14110D 100%);

  /* Typography */
  --font-display: "Bricolage Grotesque", "Hanken Grotesk", system-ui, sans-serif;
  --font-body:    "Hanken Grotesk", system-ui, -apple-system, Segoe UI, sans-serif;

  /* Modular type scale (~1.25, 16px base) */
  --t-xs:   0.75rem;   /* 12 */
  --t-sm:   0.875rem;  /* 14 */
  --t-base: 1rem;      /* 16 */
  --t-md:   1.1875rem; /* 19 */
  --t-lg:   1.5rem;    /* 24 */
  --t-xl:   1.875rem;  /* 30 */
  --t-2xl:  2.375rem;  /* 38 */
  --t-3xl:  3rem;      /* 48 */
  --t-4xl:  3.75rem;   /* 60 */
  --t-5xl:  clamp(2.75rem, 6vw, 5rem);

  /* Spacing — 8px system */
  --s-1: 4px;  --s-2: 8px;  --s-3: 16px; --s-4: 24px;
  --s-5: 32px; --s-6: 48px; --s-7: 64px; --s-8: 96px; --s-9: 128px;

  /* Radius */
  --r-sm: 10px; --r-md: 18px; --r-lg: 28px; --r-xl: 36px; --r-pill: 999px;

  /* Elevation — layered, warm-tinted for depth */
  --shadow-sm: 0 1px 2px rgba(26,23,18,.05), 0 2px 6px rgba(26,23,18,.05);
  --shadow-md: 0 2px 4px rgba(26,23,18,.05), 0 8px 20px rgba(26,23,18,.07), 0 18px 40px rgba(26,23,18,.06);
  --shadow-lg: 0 4px 8px rgba(26,23,18,.06), 0 16px 36px rgba(26,23,18,.10), 0 36px 72px rgba(26,23,18,.13);
  --shadow-accent: 0 10px 24px rgba(229,72,31,.28), 0 4px 8px rgba(229,72,31,.18);

  /* Layout */
  --maxw: 1240px;
  --gutter: clamp(16px, 4vw, 40px);
  --header-h: 72px;
}

/* ---------- 2. RESET / BASE ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: clip; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  font-family: var(--font-body);
  font-size: var(--t-base);
  line-height: 1.65;
  color: var(--ink-2);
  background-color: var(--paper);
  background-image:
    radial-gradient(1100px 520px at 88% -8%, rgba(229,72,31,.07), transparent 60%),
    radial-gradient(900px 480px at 0% 0%, rgba(22,134,142,.05), transparent 55%);
  background-attachment: fixed;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 700;
  text-wrap: balance;
}
p { text-wrap: pretty; }

/* Accessibility: visible focus */
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}
.skip-link {
  position: absolute; left: var(--s-3); top: -100px;
  background: var(--ink); color: #fff; padding: 12px 18px;
  border-radius: var(--r-sm); z-index: 999; font-weight: 600;
  transition: top .2s ease;
}
.skip-link:focus { top: var(--s-3); }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- 3. LAYOUT HELPERS ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(var(--s-7), 9vw, var(--s-9)); }
.section--tight { padding-block: clamp(var(--s-6), 6vw, var(--s-8)); }
.section--paper2 { background: var(--paper-2); }
.section--ink { background: var(--grad-ink); color: #d9d2c6; position: relative; }
.section--ink h2, .section--ink h3 { color: #fff; }
.section--tint {
  background:
    radial-gradient(700px 360px at 12% 0%, rgba(229,72,31,.10), transparent 60%),
    radial-gradient(700px 360px at 100% 100%, rgba(22,134,142,.08), transparent 60%),
    var(--accent-soft);
}
.section--accent { background: var(--grad-accent); color: #fff; }
.section--accent h2, .section--accent h3 { color: #fff; }
.section--accent .eyebrow { color: rgba(255,255,255,.92); }
.section--accent .eyebrow::before { background: #fff; }

.eyebrow {
  display: inline-flex; align-items: center; gap: var(--s-2);
  font-family: var(--font-body); font-weight: 700; font-size: var(--t-sm);
  letter-spacing: .14em; text-transform: uppercase; color: var(--accent-ink);
}
.eyebrow::before {
  content: ""; width: 22px; height: 2px; background: var(--accent); border-radius: 2px;
}
.section--ink .eyebrow { color: #f0b8a6; }
.eyebrow--teal { color: var(--teal-ink); }
.eyebrow--teal::before { background: var(--teal); }

/* global framed media — never renders empty, optional gradient + caption */
.media-frame {
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 1px solid var(--line);
  background: var(--paper-2);
}
.media-frame > img { width: 100%; height: 100%; object-fit: cover; display: block; }
.media-frame--ratio { aspect-ratio: 4 / 3; }
.media-frame--tall { aspect-ratio: 3 / 4; }
.media-frame--cap::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to top, rgba(20,17,13,.34), transparent 46%);
}
.media-frame .media-cap {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: var(--s-5) var(--s-4) var(--s-4); color: #fff;
  display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: var(--t-sm);
}
.media-frame .media-cap svg { width: 18px; height: 18px; color: #fff; flex: none; }

.section-head { max-width: 720px; margin-bottom: var(--s-6); }
.section-head h2 { font-size: var(--t-3xl); margin-top: var(--s-3); }
.section-head p { margin-top: var(--s-3); font-size: var(--t-md); color: var(--ink-3); }
.section--ink .section-head p { color: #b3aa9b; }
.section--ink .link-arrow { color: #fff; }
.section--ink .link-arrow svg { color: #fff; }
.section--ink .step { border-color: transparent; }
.center { text-align: center; margin-inline: auto; }

/* ---------- 4. BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--s-2);
  padding: 14px 24px; border-radius: var(--r-pill); border: 1.5px solid transparent;
  font-family: var(--font-body); font-weight: 700; font-size: var(--t-base);
  line-height: 1; text-align: center; transition: transform .15s ease, background .2s ease, box-shadow .2s ease, color .2s ease;
  min-height: 48px;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--accent); color: #fff; box-shadow: 0 6px 18px rgba(229,72,31,.28); }
.btn--primary:hover { background: var(--accent-deep); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(229,72,31,.34); }
.btn--secondary { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn--secondary:hover { border-color: var(--ink); background: var(--ink); color: #fff; transform: translateY(-2px); }
.btn--ghost { background: var(--surface); color: var(--ink); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn--ghost:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.btn--on-ink { background: #fff; color: var(--ink); }
.btn--on-ink:hover { background: var(--accent); color: #fff; transform: translateY(-2px); }
.btn--on-ink-sec { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn--on-ink-sec:hover { border-color: #fff; background: rgba(255,255,255,.1); }
.btn--sm { padding: 10px 18px; min-height: 40px; font-size: var(--t-sm); }
.btn--block { width: 100%; }
.cta-row { display: flex; flex-wrap: wrap; gap: var(--s-3); }

/* text link with arrow */
.link-arrow {
  display: inline-flex; align-items: center; gap: 6px; font-weight: 700; color: var(--accent-ink);
}
.link-arrow svg { width: 16px; height: 16px; transition: transform .18s ease; }
.link-arrow:hover svg { transform: translateX(4px); }

/* ---------- 5. HEADER / NAV ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid var(--line);
}
.utility-bar {
  background: var(--ink); color: #cfc7b9; font-size: var(--t-sm);
}
.utility-bar .container { display: flex; flex-wrap: wrap; gap: var(--s-2) var(--s-5); align-items: center; justify-content: center; padding-block: 8px; text-align: center; }
.utility-bar strong { color: #fff; }
.utility-bar .dot { width: 5px; height: 5px; background: var(--accent); border-radius: 50%; display: inline-block; }
.utility-bar a { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; white-space: nowrap; }
.utility-bar a:hover { color: #fff; }
.utility-bar svg { width: 16px; height: 16px; flex: none; }
.utility-bar span { white-space: nowrap; }

.nav { display: flex; align-items: center; gap: var(--s-4); height: var(--header-h); }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; color: var(--ink); letter-spacing: -0.02em; }
.brand .mark { width: 34px; height: 34px; flex: none; }
.brand b { color: var(--accent); }

.nav-links { display: none; }
.nav-spacer { flex: 1; }
.nav-actions { display: none; align-items: center; gap: var(--s-3); }
.nav-phone { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--ink); }
.nav-phone svg { width: 18px; height: 18px; color: var(--accent); }

/* mobile menu (CSS-only checkbox hack) */
.nav-toggle { position: absolute; opacity: 0; pointer-events: none; }
.nav-burger {
  margin-left: auto; display: inline-flex; flex-direction: column; gap: 5px;
  width: 48px; height: 48px; align-items: center; justify-content: center;
  border: 1px solid var(--line); border-radius: var(--r-sm); background: var(--surface);
}
.nav-burger span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: .2s; }
.mobile-menu {
  display: none; flex-direction: column; gap: var(--s-1);
  padding: var(--s-3) var(--gutter) var(--s-5);
  border-top: 1px solid var(--line); background: var(--paper);
}
.mobile-menu a { padding: 14px 12px; border-radius: var(--r-sm); font-weight: 600; color: var(--ink); font-size: var(--t-md); }
.mobile-menu a:hover, .mobile-menu a[aria-current="page"] { background: var(--surface); color: var(--accent-ink); }
.mobile-menu .cta-row { margin-top: var(--s-3); }
.nav-toggle:checked ~ .mobile-menu { display: flex; }
.nav-toggle:focus-visible ~ .nav .nav-burger { outline: 3px solid var(--accent); outline-offset: 2px; }

@media (min-width: 1000px) {
  .nav-burger { display: none; }
  .nav-links { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; }
  .nav-links > li { position: relative; display: flex; }
  .nav-links > li > a, .drop-toggle {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 10px 12px; border-radius: var(--r-sm); font-family: var(--font-body);
    font-weight: 600; font-size: var(--t-sm); color: var(--ink-2);
    background: none; border: none; cursor: pointer; transition: background .15s, color .15s;
  }
  .nav-links > li > a:hover, .has-drop:hover .drop-toggle, .has-drop:focus-within .drop-toggle { color: var(--ink); background: rgba(26,23,18,.05); }
  .nav-links > li > a[aria-current="page"], .drop-toggle.is-active { color: var(--accent-ink); background: var(--accent-soft); }
  .drop-toggle svg { width: 14px; height: 14px; transition: transform .2s ease; }
  .has-drop:hover .drop-toggle svg, .has-drop:focus-within .drop-toggle svg { transform: rotate(180deg); }
  .drop-menu {
    position: absolute; top: calc(100% + 6px); left: 0; min-width: 248px;
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md);
    box-shadow: var(--shadow-lg); padding: 8px; display: grid; gap: 2px; z-index: 120;
    opacity: 0; visibility: hidden; transform: translateY(-6px);
    transition: opacity .16s ease, transform .16s ease, visibility .16s;
  }
  .has-drop:hover .drop-menu, .has-drop:focus-within .drop-menu { opacity: 1; visibility: visible; transform: translateY(0); }
  .drop-menu a { padding: 11px 12px; border-radius: var(--r-sm); font-weight: 600; font-size: var(--t-sm); color: var(--ink-2); white-space: nowrap; }
  .drop-menu a:hover, .drop-menu a[aria-current="page"] { background: var(--accent-soft); color: var(--accent-ink); }
  .nav-actions { display: flex; }
  .mobile-menu { display: none !important; }
}

/* ---------- 6. HERO ---------- */
.hero { position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; top: -160px; right: -140px; width: 560px; height: 560px;
  border-radius: 50%; z-index: 0; pointer-events: none;
  background: radial-gradient(circle, rgba(229,72,31,.16), transparent 66%);
}
.hero .container { position: relative; z-index: 1; padding-top: clamp(var(--s-6), 7vw, var(--s-8)); padding-bottom: clamp(var(--s-6), 7vw, var(--s-8)); }
.hero-grid { display: grid; gap: var(--s-5); align-items: center; }
.hero-copy .eyebrow { margin-bottom: var(--s-4); }
.hero-copy h1 { font-size: clamp(1.95rem, 5.2vw, 3.75rem); letter-spacing: -0.02em; overflow-wrap: break-word; }
.hero-copy h1 em { font-style: normal; color: var(--accent); position: relative; white-space: nowrap; }
.hero-copy h1 em::after { content: ""; position: absolute; left: 0; right: 0; bottom: .06em; height: .12em; background: var(--accent); opacity: .22; border-radius: 4px; }
.hero-sub { margin-top: var(--s-4); font-size: var(--t-md); color: var(--ink-2); max-width: 46ch; }
.hero-copy .cta-row { margin-top: var(--s-5); }
.hero-trust { margin-top: var(--s-5); display: flex; flex-wrap: wrap; gap: var(--s-3) var(--s-5); }
.hero-trust li { display: flex; align-items: center; gap: 8px; font-weight: 600; color: var(--ink); font-size: var(--t-sm); }
.hero-trust svg { width: 18px; height: 18px; color: var(--accent); flex: none; }

/* mobile-first: hero media stacks cleanly (image → price chip → label), no overlap */
.hero-media { position: relative; display: flex; flex-direction: column; gap: var(--s-3); }
.hero-media::before { content: ""; display: none; }
.hero-media .media-frame { order: 1; position: relative; z-index: 1; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--line); aspect-ratio: 4/3.1; }
.hero-media .media-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,17,13,.20), transparent 42%); }
.hero-media .media-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  order: 3; align-self: flex-start; z-index: 3;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--teal); color: #fff; font-weight: 700; font-size: var(--t-sm);
  padding: 10px 16px; border-radius: var(--r-pill); box-shadow: var(--shadow-md);
}
.hero-badge svg { width: 16px; height: 16px; }
.price-chip {
  order: 2; z-index: 4; max-width: 280px;
  background: var(--surface); border: 1px solid var(--line); border-left: 5px solid var(--accent);
  box-shadow: var(--shadow-lg); border-radius: var(--r-lg); padding: var(--s-4);
}
.price-chip .label { font-size: var(--t-xs); text-transform: uppercase; letter-spacing: .12em; color: var(--ink-3); font-weight: 700; }
.price-chip .price { font-family: var(--font-display); font-size: var(--t-2xl); color: var(--ink); line-height: 1; margin-top: 6px; }
.price-chip .price b { color: var(--accent); }
.price-chip .meta { font-size: var(--t-sm); color: var(--ink-3); margin-top: 6px; }

@media (min-width: 880px) {
  .hero-grid { grid-template-columns: 1.08fr 0.92fr; gap: var(--s-8); }
  .hero-media { display: block; }
  .hero-media::before { display: block; position: absolute; right: -22px; bottom: 18px; width: 58%; height: 72%; background: var(--accent-soft); border: 1px solid rgba(229,72,31,.4); border-radius: var(--r-xl); z-index: 0; }
  .hero-media .hero-badge { position: absolute; top: 18px; right: -10px; }
  .hero-media .price-chip { position: absolute; left: -10px; bottom: 26px; max-width: 244px; }
}

/* ---------- 7. BENTO GRID ---------- */
.bento {
  display: grid; gap: var(--s-3);
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: minmax(150px, auto);
}
.bento-card {
  position: relative; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: var(--s-5); overflow: hidden;
  display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .2s ease, border-color .2s ease;
}
a.bento-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.bento-card h3 { font-size: var(--t-xl); }
.bento-card p { margin-top: var(--s-2); color: var(--ink-2); }
.bento-card .link-arrow { margin-top: auto; padding-top: var(--s-4); }
.bento-card .card-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--accent-soft); color: var(--accent-deep); display: grid; place-items: center; margin-bottom: var(--s-4); }
.bento-card .card-icon svg { width: 24px; height: 24px; }

/* size spans */
.span-2 { grid-column: span 2; }
.row-2 { grid-row: span 2; }

/* media card */
.bento-media { padding: 0; }
.bento-media img { width: 100%; height: 100%; object-fit: cover; min-height: 200px; }
.bento-card--feature { background: var(--ink); color: #d9d2c6; }
.bento-card--feature h3 { color: #fff; }
.bento-card--feature p { color: #b3aa9b; }
.bento-card--accent { background: var(--accent); color: #fff; border-color: transparent; }
.bento-card--accent h3 { color: #fff; }
.bento-card--accent p { color: rgba(255,255,255,.9); }
.bento-card--accent .card-icon { background: rgba(255,255,255,.18); color: #fff; }

/* photo-overlay bento card — full-bleed image, gradient, text on top */
.bento-card--photo { color: #fff; border: none; justify-content: flex-end; min-height: 240px; }
.bento-card--photo > img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  z-index: 0; transition: transform .55s cubic-bezier(.2,.7,.3,1);
}
.bento-card--photo::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(18,14,10,.9) 2%, rgba(18,14,10,.45) 42%, rgba(18,14,10,.08) 78%);
}
.bento-card--photo > *:not(img) { position: relative; z-index: 2; }
.bento-card--photo h3 { color: #fff; }
.bento-card--photo p { color: rgba(255,255,255,.86); }
.bento-card--photo .link-arrow { color: #fff; }
.bento-card--photo .link-arrow svg { color: #fff; }
a.bento-card--photo:hover { box-shadow: var(--shadow-lg); }
a.bento-card--photo:hover > img { transform: scale(1.05); }
.bento-card--photo.row-2 { min-height: 380px; }

@media (min-width: 760px) {
  .bento { grid-template-columns: repeat(4, 1fr); gap: var(--s-4); }
  .bento-card { padding: var(--s-6); }
}

/* category tile with image */
.cat-tile { padding: 0; }
.cat-tile .cat-media { aspect-ratio: 1/1; overflow: hidden; background: var(--paper-2); }
.cat-tile .cat-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.cat-tile:hover .cat-media img { transform: scale(1.04); }
.cat-tile .cat-body { padding: var(--s-5); display: flex; flex-direction: column; flex: 1; }

/* ---------- 8. PRICE / CONFIGURATOR BLOCK ---------- */
.price-block {
  display: grid; gap: var(--s-5); align-items: center;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-xl);
  padding: clamp(var(--s-5), 4vw, var(--s-7)); box-shadow: var(--shadow-md);
}
.price-block .from-label { font-size: var(--t-sm); text-transform: uppercase; letter-spacing: .12em; font-weight: 700; color: var(--ink-3); }
.price-block .from-price { font-family: var(--font-display); font-size: var(--t-4xl); color: var(--ink); line-height: 1; margin-top: var(--s-2); }
.price-block .from-price b { color: var(--accent); }
.price-block .from-note { color: var(--ink-3); margin-top: var(--s-2); }
.price-block .price-list { margin-top: var(--s-4); display: grid; gap: 10px; }
.price-block .price-list li { display: flex; align-items: center; gap: 10px; font-weight: 600; color: var(--ink); }
.price-block .price-list svg { width: 18px; height: 18px; color: var(--accent); flex: none; }
/* global: keep checklist icons sensibly sized anywhere (e.g. contact aside) */
.price-list svg { width: 18px; height: 18px; flex: none; color: var(--accent); }
.price-list li { display: flex; align-items: center; gap: 10px; font-weight: 600; color: var(--ink); }
.price-block .config-side { background: var(--accent-soft); border-radius: var(--r-lg); padding: var(--s-5); border: 1px solid rgba(229,72,31,.28); }
.price-block .config-side h3 { font-size: var(--t-lg); color: var(--ink); }
.price-block .config-side p { margin-top: var(--s-2); color: var(--accent-ink); font-size: var(--t-sm); }
.price-block .cta-row { margin-top: var(--s-4); }
.config-note { display: inline-flex; align-items: center; gap: 8px; margin-top: var(--s-4); font-size: var(--t-sm); color: var(--ink-3); }
.config-note svg { width: 16px; height: 16px; color: var(--teal); }
@media (min-width: 860px) {
  .price-block { grid-template-columns: 1.15fr 0.85fr; gap: var(--s-7); }
}

/* ---------- 9. PROCESS TIMELINE ---------- */
.steps { display: grid; gap: var(--s-4); counter-reset: step; }
.step {
  position: relative; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: var(--s-6) var(--s-5) var(--s-5); box-shadow: var(--shadow-sm);
}
.step .step-num {
  counter-increment: step; position: absolute; top: calc(-1 * var(--s-4)); left: var(--s-5);
  width: 52px; height: 52px; border-radius: 14px; background: var(--accent); color: #fff;
  display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: var(--t-xl);
  box-shadow: 0 6px 16px rgba(229,72,31,.3);
}
.step .step-num::after { content: counter(step, decimal-leading-zero); }
.step h3 { font-size: var(--t-lg); margin-top: var(--s-3); }
.step p { margin-top: var(--s-2); color: var(--ink-2); }
@media (min-width: 760px) { .steps { grid-template-columns: repeat(3, 1fr); gap: var(--s-5); } }
.steps--4 { }
@media (min-width: 760px) { .steps--4 { grid-template-columns: repeat(4, 1fr); } }

/* ---------- 10. FEATURE / WHY CARDS ---------- */
.feature-grid { display: grid; gap: var(--s-4); grid-template-columns: 1fr; }
@media (min-width: 640px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .feature-grid--4 { grid-template-columns: repeat(4, 1fr); } }
.feature {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: var(--s-5); box-shadow: var(--shadow-sm); transition: transform .18s, box-shadow .2s;
}
.feature:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.feature .f-icon { width: 48px; height: 48px; border-radius: 14px; background: var(--accent-soft); color: var(--accent-deep); display: grid; place-items: center; margin-bottom: var(--s-4); }
.feature .f-icon svg { width: 26px; height: 26px; }
.feature h3 { font-size: var(--t-md); }
.feature p { margin-top: var(--s-2); color: var(--ink-2); font-size: var(--t-base); }
.feature .f-icon svg { transition: transform .2s ease; }
.feature:hover .f-icon svg { transform: scale(1.08); }
/* color-filled feature variants for rhythm */
.feature--ink { background: var(--grad-ink); border-color: transparent; color: #cfc7b9; box-shadow: var(--shadow-md); }
.feature--ink h3 { color: #fff; }
.feature--ink p { color: #b3aa9b; }
.feature--ink .f-icon { background: rgba(255,255,255,.12); color: #fff; }
.feature--accent { background: var(--grad-accent); border-color: transparent; color: #fff; box-shadow: var(--shadow-accent); }
.feature--accent h3 { color: #fff; }
.feature--accent p { color: rgba(255,255,255,.92); }
.feature--accent .f-icon { background: rgba(255,255,255,.22); color: #fff; }

/* ---------- 11. TRUST / DESIGN-CHECK BAND ---------- */
.promise {
  display: grid; gap: var(--s-5); align-items: center;
  background: var(--grad-accent);
  border: none; border-radius: var(--r-xl); padding: clamp(var(--s-5), 4vw, var(--s-7));
  box-shadow: var(--shadow-accent); color: #fff; position: relative; overflow: hidden;
}
.promise::before { content: ""; position: absolute; top: -60px; right: -40px; width: 280px; height: 280px; border-radius: 50%; background: rgba(255,255,255,.12); }
.promise > * { position: relative; z-index: 1; }
.promise .p-badge { width: 64px; height: 64px; border-radius: 18px; background: rgba(255,255,255,.2); color: #fff; display: grid; place-items: center; }
.promise .p-badge svg { width: 34px; height: 34px; }
.promise h2 { font-size: var(--t-2xl); color: #fff; }
.promise p { margin-top: var(--s-3); font-size: var(--t-md); color: rgba(255,255,255,.92); }
@media (min-width: 760px) { .promise { grid-template-columns: auto 1fr auto; gap: var(--s-6); } }

/* ---------- 12. STATS BAND ---------- */
.stats { display: grid; gap: var(--s-5); grid-template-columns: repeat(2, 1fr); text-align: center; }
@media (min-width: 760px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat .num { font-family: var(--font-display); font-size: var(--t-4xl); color: #fff; line-height: 1; }
.stat .num b { color: var(--accent); }
.stat .lbl { margin-top: var(--s-2); color: #b3aa9b; font-weight: 600; }

/* ---------- 13. COMPARISON TABLE ---------- */
.compare { overflow-x: auto; border-radius: var(--r-lg); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.compare table { width: 100%; border-collapse: collapse; background: var(--surface); min-width: 560px; }
.compare th, .compare td { padding: var(--s-4) var(--s-4); text-align: left; border-bottom: 1px solid var(--line); }
.compare thead th { font-family: var(--font-body); font-size: var(--t-sm); text-transform: uppercase; letter-spacing: .08em; color: var(--ink-3); font-weight: 700; }
.compare thead th.us { color: var(--accent-ink); }
.compare tbody th { font-weight: 600; color: var(--ink); }
.compare td { color: var(--ink-2); }
.compare .col-us { background: var(--accent-soft); }
.compare thead .col-us { border-top-left-radius: 0; }
.compare td.col-us { font-weight: 700; color: var(--ink); }
.compare .yes { color: var(--accent-deep); }
.compare .no { color: var(--ink-3); }
.compare svg { width: 18px; height: 18px; vertical-align: -3px; }

/* ---------- 14. TESTIMONIALS ---------- */
.testi-grid { display: grid; gap: var(--s-4); grid-template-columns: 1fr; }
@media (min-width: 700px) { .testi-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .testi-grid { grid-template-columns: repeat(3, 1fr); } }
.testi {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: var(--s-5); box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.testi .stars { display: flex; gap: 2px; color: var(--accent); margin-bottom: var(--s-3); }
.testi .stars svg { width: 18px; height: 18px; }
.testi blockquote { font-size: var(--t-md); color: var(--ink); line-height: 1.5; }
.testi .who { margin-top: var(--s-4); display: flex; align-items: center; gap: 12px; }
.testi .avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--accent-soft); color: var(--accent-deep); display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; }
.testi .who .name { font-weight: 700; color: var(--ink); }
.testi .who .role { font-size: var(--t-sm); color: var(--ink-3); }

/* client logos */
.logos { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s-3); margin-top: var(--s-6); }
@media (min-width: 700px) { .logos { grid-template-columns: repeat(5, 1fr); } }
.logo-ph {
  height: 72px; border: 1px dashed var(--line-strong); border-radius: var(--r-md);
  display: grid; place-items: center; color: var(--ink-3); font-weight: 700; letter-spacing: .04em;
  background: var(--surface);
}

/* ---------- 15. FAQ (CSS-only details) ---------- */
.faq { max-width: 820px; margin-inline: auto; display: grid; gap: var(--s-3); }
.faq details {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md);
  box-shadow: var(--shadow-sm); overflow: hidden;
}
.faq summary {
  list-style: none; cursor: pointer; padding: var(--s-4) var(--s-5);
  display: flex; align-items: center; justify-content: space-between; gap: var(--s-3);
  font-family: var(--font-display); font-weight: 700; font-size: var(--t-md); color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .chev { width: 26px; height: 26px; flex: none; border-radius: 50%; background: var(--accent-soft); color: var(--accent-deep); display: grid; place-items: center; transition: transform .2s ease; }
.faq summary .chev svg { width: 16px; height: 16px; }
.faq details[open] summary .chev { transform: rotate(45deg); }
.faq details > p { padding: 0 var(--s-5) var(--s-5); color: var(--ink-2); }

/* ---------- 16. BREADCRUMB ---------- */
.breadcrumb { padding-top: var(--s-5); }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-size: var(--t-sm); color: var(--ink-3); }
.breadcrumb a { font-weight: 600; }
.breadcrumb a:hover { color: var(--accent-ink); }
.breadcrumb svg { width: 14px; height: 14px; opacity: .5; }
.breadcrumb [aria-current="page"] { color: var(--ink); font-weight: 600; }

/* ---------- 17. CATEGORY PAGE HERO ---------- */
.page-hero .eyebrow { margin-bottom: var(--s-3); }
.page-hero h1 { font-size: var(--t-4xl); }
.page-hero .intro { margin-top: var(--s-4); font-size: var(--t-md); color: var(--ink-2); max-width: 62ch; }
.page-hero .cta-row { margin-top: var(--s-5); }

/* ---------- 18. PRODUCT TYPE CARDS ---------- */
.type-grid { display: grid; gap: var(--s-4); grid-template-columns: 1fr; }
@media (min-width: 620px) { .type-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .type-grid--3 { grid-template-columns: repeat(3, 1fr); } }
.type-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .18s, box-shadow .2s, border-color .2s;
}
.type-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.type-card .t-media { aspect-ratio: 4/3; overflow: hidden; background: var(--paper-2); }
.type-card .t-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.type-card:hover .t-media img { transform: scale(1.05); }
.type-card .t-body { padding: var(--s-5); display: flex; flex-direction: column; flex: 1; }
.type-card h3 { font-size: var(--t-lg); }
.type-card p { margin-top: var(--s-2); color: var(--ink-2); }
.type-card .link-arrow { margin-top: auto; padding-top: var(--s-4); }

/* ---------- 19. GUIDE / CHECKLIST LIST ---------- */
.guide-list { display: grid; gap: var(--s-3); }
.guide-list li {
  display: flex; gap: var(--s-3); align-items: flex-start;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: var(--s-4); box-shadow: var(--shadow-sm);
}
.guide-list .gi { width: 36px; height: 36px; flex: none; border-radius: 10px; background: var(--accent-soft); color: var(--accent-deep); display: grid; place-items: center; }
.guide-list .gi svg { width: 20px; height: 20px; }
.guide-list b { color: var(--ink); display: block; }
.guide-list span { color: var(--ink-2); }

.audience-grid { display: grid; gap: var(--s-4); grid-template-columns: 1fr; }
@media (min-width: 760px) { .audience-grid { grid-template-columns: repeat(3, 1fr); } }
.audience {
  background: var(--paper); border: 1px solid var(--line); border-left: 4px solid var(--accent);
  border-radius: var(--r-md); padding: var(--s-5);
}
.audience h3 { font-size: var(--t-md); }
.audience p { margin-top: var(--s-2); color: var(--ink-2); }

/* ---------- 20. CTA BAND ---------- */
.cta-band { background: var(--ink); border-radius: var(--r-xl); padding: clamp(var(--s-6), 5vw, var(--s-8)); text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 80% 20%, rgba(229,72,31,.35), transparent 55%); }
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; font-size: var(--t-3xl); }
.cta-band p { margin-top: var(--s-3); color: #c9c0b2; font-size: var(--t-md); max-width: 52ch; margin-inline: auto; }
.cta-band .cta-row { margin-top: var(--s-5); justify-content: center; }

/* ---------- 21. PORTFOLIO GALLERY (balanced uniform grid) ---------- */
.gallery { display: grid; gap: var(--s-3); grid-template-columns: repeat(2, 1fr); }
@media (min-width: 760px) { .gallery { grid-template-columns: repeat(3, 1fr); gap: var(--s-4); } }
.gallery figure {
  position: relative; overflow: hidden; border-radius: var(--r-lg); border: 1px solid var(--line);
  box-shadow: var(--shadow-sm); margin: 0; aspect-ratio: 4 / 3;
}
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery figure:hover img { transform: scale(1.06); }
.gallery figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: var(--s-5) var(--s-4) var(--s-4);
  background: linear-gradient(to top, rgba(26,23,18,.85), transparent);
  color: #fff; font-weight: 600; font-size: var(--t-sm);
}
.gallery figcaption b { display: block; font-family: var(--font-display); font-size: var(--t-md); }
.gallery figcaption span { color: #d9d2c6; font-weight: 500; }

/* before/after */
.beforeafter { display: grid; gap: var(--s-4); grid-template-columns: 1fr; }
@media (min-width: 720px) { .beforeafter { grid-template-columns: 1fr 1fr; } }
.ba-card { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); position: relative; box-shadow: var(--shadow-sm); }
.ba-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.ba-tag { position: absolute; top: var(--s-3); left: var(--s-3); background: var(--ink); color: #fff; font-size: var(--t-xs); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 6px 12px; border-radius: var(--r-pill); }
.ba-card.is-after .ba-tag { background: var(--accent); }

/* ---------- 22. CONTACT FORM ---------- */
.contact-grid { display: grid; gap: var(--s-6); grid-template-columns: 1fr; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1.2fr 0.8fr; gap: var(--s-7); } }
.form-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-xl); padding: clamp(var(--s-5), 4vw, var(--s-7)); box-shadow: var(--shadow-md); }
.field { margin-bottom: var(--s-4); }
.field label { display: block; font-weight: 700; color: var(--ink); margin-bottom: 8px; font-size: var(--t-sm); }
.field label .req { color: var(--accent-deep); }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; color: var(--ink); background: var(--paper);
  border: 1.5px solid var(--line-strong); border-radius: var(--r-md); padding: 13px 15px;
  transition: border-color .15s, box-shadow .15s;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-3); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px rgba(229,72,31,.15);
}
.field .hint { font-size: var(--t-xs); color: var(--ink-3); margin-top: 6px; }
.field-row { display: grid; gap: var(--s-4); grid-template-columns: 1fr; }
@media (min-width: 560px) { .field-row { grid-template-columns: 1fr 1fr; } }
.checkbox-field { display: flex; gap: 12px; align-items: flex-start; }
.checkbox-field input { width: auto; margin-top: 4px; accent-color: var(--accent); width: 18px; height: 18px; flex: none; }
.checkbox-field label { font-weight: 500; color: var(--ink-2); margin: 0; font-size: var(--t-sm); }
fieldset { border: none; padding: 0; }
fieldset legend { font-weight: 700; color: var(--ink); margin-bottom: var(--s-3); font-size: var(--t-md); font-family: var(--font-display); }

.contact-aside .info-card { background: var(--ink); color: #d9d2c6; border-radius: var(--r-xl); padding: var(--s-6); }
.contact-aside .info-card h3 { color: #fff; font-size: var(--t-lg); }
.contact-aside .info-list { margin-top: var(--s-4); display: grid; gap: var(--s-4); }
.contact-aside .info-list li { display: flex; gap: 12px; align-items: flex-start; }
.contact-aside .info-list svg { width: 22px; height: 22px; color: var(--accent); flex: none; }
.contact-aside .info-list .k { font-size: var(--t-xs); text-transform: uppercase; letter-spacing: .1em; color: #9a9183; font-weight: 700; }
.contact-aside .info-list .v { color: #fff; font-weight: 600; }
.contact-aside .info-list a.v:hover { color: var(--accent); }

/* ---------- 23. ABOUT / VALUES ---------- */
.about-hero { display: grid; gap: var(--s-6); align-items: center; }
@media (min-width: 880px) { .about-hero { grid-template-columns: 1fr 1fr; gap: var(--s-7); } }
.about-hero .media-frame { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--line); }
.values { display: grid; gap: var(--s-4); grid-template-columns: 1fr; }
@media (min-width: 700px) { .values { grid-template-columns: repeat(3, 1fr); } }

/* ---------- 24. FOOTER ---------- */
.site-footer { background: var(--ink); color: #b3aa9b; padding-top: var(--s-8); margin-top: var(--s-2); }
.footer-grid { display: grid; gap: var(--s-6); grid-template-columns: 1fr; }
@media (min-width: 700px) { .footer-grid { grid-template-columns: 1.4fr repeat(3, 1fr); } }
.site-footer .brand { color: #fff; }
.site-footer .brand b { color: var(--accent); }
.footer-about { color: #9a9183; margin-top: var(--s-3); max-width: 36ch; }
.footer-contact { margin-top: var(--s-4); display: grid; gap: 10px; }
.footer-contact a, .footer-contact span { display: inline-flex; gap: 8px; align-items: center; color: #d9d2c6; font-weight: 600; }
.footer-contact svg { width: 18px; height: 18px; color: var(--accent); }
.footer-contact a:hover { color: #fff; }
.footer-col h4 { color: #fff; font-family: var(--font-body); font-size: var(--t-sm); text-transform: uppercase; letter-spacing: .1em; margin-bottom: var(--s-3); }
.footer-col ul { display: grid; gap: 10px; }
.footer-col a { color: #b3aa9b; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: var(--s-7); padding-block: var(--s-5); }
.footer-bottom .container { display: flex; flex-wrap: wrap; gap: var(--s-3); align-items: center; justify-content: space-between; }
.footer-bottom .copy { font-size: var(--t-sm); color: #8a8173; }
.socials { display: flex; gap: 10px; }
.socials a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,.18); display: grid; place-items: center; color: #d9d2c6; transition: .2s; }
.socials a:hover { background: var(--accent); border-color: var(--accent); color: #fff; transform: translateY(-2px); }
.socials svg { width: 18px; height: 18px; }

/* ---------- 25. UTILITY ---------- */
.mt-0 { margin-top: 0; }
.lead { font-size: var(--t-md); color: var(--ink-2); }
.prose { max-width: 70ch; }
.prose p + p { margin-top: var(--s-3); }
.grid-2 { display: grid; gap: var(--s-5); grid-template-columns: 1fr; }
@media (min-width: 820px) { .grid-2 { grid-template-columns: 1fr 1fr; } }
.note-strip { display: inline-flex; align-items: center; gap: 10px; background: var(--accent-soft); color: var(--accent-ink); padding: 10px 16px; border-radius: var(--r-pill); font-weight: 700; font-size: var(--t-sm); }
.note-strip svg { width: 18px; height: 18px; }
