/* ============================================================
   LOCAL FONTS — DM Sans (variable, v17)
   Files: assets/fonts/
============================================================ */

/* latin-ext — weights 300–800 normal */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url('./assets/fonts/dm-sans-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* latin — weights 300–800 normal */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url('./assets/fonts/dm-sans-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* latin-ext — italic weight 400 */
@font-face {
  font-family: 'DM Sans';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('./assets/fonts/dm-sans-italic-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* latin — italic weight 400 */
@font-face {
  font-family: 'DM Sans';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('./assets/fonts/dm-sans-italic-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ============================================================
   RESET & CUSTOM PROPERTIES
============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg:            #fdfdfd;
  --bg-alt:        #f2f2f2;
  --text:          #232323;
  --text-muted:    #717171;
  --dark:          #03071e;
  --accent-a:      #e85d04;
  --accent-b:      #ffba08;
  --border:        rgba(35, 35, 35, 0.09);
  --radius:        12px;
  --ease:          cubic-bezier(0.4, 0, 0.2, 1);
  --dur:           0.3s;
  --max:           1760px;
  --font:          'PP Mori', 'DM Sans', 'Inter', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { font-family: inherit; }

/* ============================================================
   LAYOUT UTILITIES
============================================================ */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 2rem;
}

.section-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.accent-text {
  background: linear-gradient(90deg, var(--accent-a), var(--accent-b));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: 99px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all var(--dur) var(--ease);
  line-height: 1;
  white-space: nowrap;
  font-family: var(--font);
  letter-spacing: -0.01em;
}

.btn-dark {
  background: var(--text);
  color: var(--bg);
}

.btn-dark:hover {
  background: #111;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(35, 35, 35, 0.2);
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent-a), var(--accent-b));
  color: #fff;
  font-weight: 700;
}

.btn-accent:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(232, 93, 4, 0.35);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.18);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}

.btn-outline:hover {
  background: var(--bg-alt);
}

/* ============================================================
   HEADER
============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  border-bottom: 1px solid transparent;
  transition: background var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              backdrop-filter var(--dur) var(--ease);
}

.site-header.scrolled {
  background: rgba(253, 253, 253, 0.8);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom-color: var(--border);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 3rem;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.header-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header-logo img {
  height: 34px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter var(--dur) var(--ease);
}

.site-header.scrolled .header-logo img {
  filter: brightness(0);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}

.header-nav a {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  padding: 0.5rem 1rem;
  border-radius: 99px;
  white-space: nowrap;
  transition: background var(--dur) var(--ease),
              color var(--dur) var(--ease);
}

.header-nav a:hover {
  background: rgba(255, 255, 255, 0.12);
}

.site-header.scrolled .header-nav a {
  color: var(--text);
}

.site-header.scrolled .header-nav a:hover {
  background: rgba(35, 35, 35, 0.06);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.header-right .btn-accent {
  background: rgba(255, 255, 255, 0.95);
  color: var(--text);
}

.header-right .btn-accent:hover {
  background: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.site-header.scrolled .header-right .btn-accent {
  background: var(--text);
  color: var(--bg);
}

.site-header.scrolled .header-right .btn-accent:hover {
  background: #111;
  box-shadow: 0 8px 20px rgba(35, 35, 35, 0.2);
}

/* ----------------------------------------------------------
   HEADER — dark variant (light-bg pages without hero)
   Used on: medale-na-zamowienie and similar category pages
---------------------------------------------------------- */
.site-header--dark,
.site-header--dark.scrolled {
  background: var(--dark);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom-color: rgba(255, 255, 255, 0.07);
}

.site-header--dark .header-logo img,
.site-header--dark.scrolled .header-logo img {
  filter: brightness(0) invert(1);
}

.site-header--dark .header-nav a,
.site-header--dark.scrolled .header-nav a {
  color: rgba(255, 255, 255, 0.9);
}

.site-header--dark .header-nav a:hover,
.site-header--dark.scrolled .header-nav a:hover {
  background: rgba(255, 255, 255, 0.10);
  color: #fff;
}

.site-header--dark .nav-accent,
.site-header--dark.scrolled .nav-accent {
  color: var(--accent-b);
}

.site-header--dark .header-right .btn-accent,
.site-header--dark.scrolled .header-right .btn-accent {
  background: rgba(255, 255, 255, 0.95);
  color: var(--dark);
}

.site-header--dark .header-right .btn-accent:hover,
.site-header--dark.scrolled .header-right .btn-accent:hover {
  background: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* nav-dropdown on dark header */
.site-header--dark .nav-dropdown,
.site-header--dark.scrolled .nav-dropdown {
  background: var(--dark);
  border-color: rgba(255, 255, 255, 0.09);
}

.site-header--dark .nav-dropdown li a,
.site-header--dark.scrolled .nav-dropdown li a {
  color: rgba(255, 255, 255, 0.8) !important;
}

.site-header--dark .nav-dropdown li a:hover,
.site-header--dark.scrolled .nav-dropdown li a:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  color: #fff !important;
}

/* ----------------------------------------------------------
   HEADER — light variant (pages without dark hero: /free-quote etc.)
   Always shows scrolled-state appearance regardless of scroll
---------------------------------------------------------- */
.site-header--light,
.site-header--light.scrolled {
  background: rgba(253, 253, 253, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom-color: var(--border);
}

.site-header--light .header-logo img,
.site-header--light.scrolled .header-logo img {
  filter: brightness(0);
}

.site-header--light .header-nav a,
.site-header--light.scrolled .header-nav a {
  color: var(--text);
}

.site-header--light .header-nav a:hover,
.site-header--light.scrolled .header-nav a:hover {
  background: rgba(35, 35, 35, 0.06);
}

.site-header--light .header-right .btn-accent,
.site-header--light.scrolled .header-right .btn-accent {
  background: var(--text);
  color: var(--bg);
}

.site-header--light .header-right .btn-accent:hover,
.site-header--light.scrolled .header-right .btn-accent:hover {
  background: #111;
  box-shadow: 0 8px 20px rgba(35, 35, 35, 0.2);
}

.site-header--light .hamburger span,
.site-header--light.scrolled .hamburger span {
  background: var(--text);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.25rem;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--dur) var(--ease);
  transform-origin: center;
}

.site-header.scrolled .hamburger span {
  background: var(--text);
}

.site-header--dark .hamburger span,
.site-header--dark.scrolled .hamburger span {
  background: #fff;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: 76px;
  left: 0;
  right: 0;
  background: rgba(253, 253, 253, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 2rem 2rem;
  z-index: 199;
  flex-direction: column;
  gap: 0;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  display: block;
  font-size: 1.05rem;
  font-weight: 500;
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  transition: color var(--dur);
}

.mobile-nav a:last-of-type {
  border-bottom: none;
}

.mobile-nav a:hover {
  color: var(--accent-a);
}

.mobile-nav .mobile-cta {
  margin-top: 1.25rem;
  border-radius: 8px;
  width: 100%;
  font-size: 1rem;
  padding: 0.875rem 1.5rem;
}

/* ============================================================
   HEADER DROPDOWN MENUS
============================================================ */
.header-nav li {
  position: relative;
}

.header-nav li > a {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.header-nav li > a.nav-accent,
.header-nav li > a.nav-accent:hover {
  background: linear-gradient(90deg, var(--accent-a), var(--accent-b)) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  text-decoration: none;
  font-weight: 600;
  position: relative;
}

.header-nav li > a.nav-accent::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.12);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}

.site-header.scrolled .header-nav li > a.nav-accent::before {
  background: rgba(35, 35, 35, 0.06);
}

.header-nav li > a.nav-accent:hover::before {
  opacity: 1;
}

.header-nav li > a.nav-accent::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 1rem;
  right: 1rem;
  height: 2px;
  border-radius: 1px;
  background: linear-gradient(90deg, var(--accent-a), var(--accent-b));
}

.nav-chevron {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  transition: transform var(--dur) var(--ease);
}

.header-nav li:hover .nav-chevron,
.header-nav li:focus-within .nav-chevron {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 215px;
  list-style: none;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 0.4rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
  z-index: 300;
}

.nav-dropdown::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: -20px;
  right: -20px;
  height: 14px;
}

.header-nav li:hover .nav-dropdown,
.header-nav li:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown li a {
  display: block;
  padding: 0.55rem 0.875rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text) !important;
  border-radius: 10px;
  white-space: nowrap;
  transition: background var(--dur) var(--ease) !important;
}

.nav-dropdown li a:hover {
  background: var(--bg-alt) !important;
  color: var(--text) !important;
}

/* Mobile accordion groups */
.mobile-group {
  border-bottom: 1px solid var(--border);
}

.mobile-group-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.875rem 0;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font);
  transition: color var(--dur);
}

.mobile-group-toggle:hover {
  color: var(--accent-a);
}

.mobile-group-chevron {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform var(--dur) var(--ease);
}

.mobile-group-toggle[aria-expanded="true"] .mobile-group-chevron {
  transform: rotate(180deg);
}

.mobile-sub {
  display: none;
  flex-direction: column;
  padding-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.mobile-sub.open {
  display: flex;
}

.mobile-sub a {
  font-size: 0.92rem !important;
  color: var(--text-muted) !important;
  padding: 0.5rem 0.5rem !important;
  border-bottom: none !important;
  border-radius: 8px;
}

.mobile-sub a:hover {
  color: var(--accent-a) !important;
  background: var(--bg-alt) !important;
}

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  height: 88vh;
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('./assets/slider-desktop.webp');
  background-size: cover;
  background-position: center center;
}

@media (max-width: 768px) {
  .hero-bg {
    background-image: url('./assets/slider-mobile.webp');
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(3, 7, 30, 0.9) 0%,
    rgba(3, 7, 30, 0.55) 40%,
    rgba(3, 7, 30, 0.18) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 3rem 6rem;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-size: clamp(2.75rem, 5.5vw, 5.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.04;
  letter-spacing: -0.025em;
  max-width: 860px;
  margin-bottom: 1.5rem;
}

.hero h1 .accent-text {
  background: linear-gradient(90deg, var(--accent-a), var(--accent-b));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.2rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.72);
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  flex-wrap: wrap;
}

/* ============================================================
   TICKER STRIP
============================================================ */
.ticker-section {
  background: var(--dark);
  padding: 1.1rem 0;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 36s linear infinite;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 1.75rem;
  padding: 0 1.75rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  white-space: nowrap;
}

.ticker-sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--accent-a);
  flex-shrink: 0;
}

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   PRODUCT PANELS
============================================================ */
.products-section {
  padding: 6rem 0 0;
}

.products-header {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 3rem 3rem;
}

.products-header h2 {
  font-size: clamp(2.25rem, 4vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 0.875rem;
}

.products-header p {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 500px;
}

.panels-wrap {
  display: flex;
  overflow: hidden;
}

.panel {
  position: relative;
  flex: 1;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  cursor: pointer;
}

.panel picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.panel-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--ease);
}

.panel:hover .panel-img {
  transform: scale(1.08);
}

.panel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(3, 7, 30, 0.45) 0%,
    rgba(3, 7, 30, 0.10) 50%,
    transparent 100%
  );
}

.panel-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.25rem 2rem;
}

.panel-content h3 {
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
  opacity: 1;
  transform: translateY(0);
}

.panel-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s var(--ease),
              transform 0.3s var(--ease);
}

.panel:hover .panel-link {
  opacity: 1;
  transform: translateY(0);
}

.panel-link svg {
  width: 15px;
  height: 15px;
  transition: transform var(--dur) var(--ease);
}

.panel-link:hover svg {
  transform: translateX(4px);
}

/* ============================================================
   STATS BENTO
============================================================ */
.stats-section {
  background: var(--bg-alt);
  padding: 6rem 0;
}

.stats-bento-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 3rem;
}

.stats-bento {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}

.stat-hero {
  grid-column: 1;
  grid-row: 1 / 3;
  background: var(--dark);
  border-radius: 20px;
  padding: 2.75rem;
  display: flex;
  flex-direction: column;
  min-height: 460px;
  overflow: hidden;
  position: relative;
}

.stat-hero::after {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 93, 4, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 2.5rem;
}

.stat-icon-dark {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}

.stat-icon-light {
  background: rgba(232, 93, 4, 0.07);
  border: 1px solid rgba(232, 93, 4, 0.15);
  color: var(--accent-a);
}

.stat-hero-num {
  font-size: clamp(5rem, 8vw, 9rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(135deg, var(--accent-a), var(--accent-b));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.stat-hero-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.stat-hero-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.65;
  flex: 1;
}

.stat-hero-chart-wrap {
  margin-top: auto;
  padding-top: 2rem;
}

.stat-hero-chart {
  width: 100%;
  height: 84px;
  display: block;
}

.stat-hero-bar-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 0.6rem;
}

.stat-hero-bar-labels span {
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.48);
}

.stat-card {
  background: var(--bg);
  border-radius: 20px;
  padding: 2rem 2.25rem;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.stat-card-sub {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.stat-card-num {
  font-size: clamp(2.75rem, 4vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.stat-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 0.35rem;
  line-height: 1.3;
}

.stat-card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.stat-card-wide {
  grid-column: 2 / 4;
  flex-direction: row;
  align-items: flex-start;
  gap: 2.5rem;
}

.stat-wide-left {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  min-width: 160px;
}

.stat-wide-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-wide-steps {
  display: flex;
  gap: 5px;
  margin-top: 1.5rem;
}

.step-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 0.5rem;
}

.step-labels span {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.step-seg {
  height: 8px;
  border-radius: 4px;
  flex: 1;
}

.step-seg:nth-child(1)  { background: #370617; }
.step-seg:nth-child(2)  { background: #6a040f; }
.step-seg:nth-child(3)  { background: #9d0208; }
.step-seg:nth-child(4)  { background: #d00000; }
.step-seg:nth-child(5)  { background: #dc2f02; }
.step-seg:nth-child(6)  { background: #e85d04; }
.step-seg:nth-child(7)  { background: #f48c06; }
.step-seg:nth-child(8)  { background: #faa307; }
.step-seg:nth-child(9)  { background: #ffba08; }
.step-seg:nth-child(10) { background: #ffba08; }

/* ============================================================
   ABOUT / COMPANY TEXT
============================================================ */
.about-section {
  padding: 7rem 0;
}

.about-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.about-left h2 {
  font-size: clamp(2.25rem, 3.8vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1.75rem;
}

.about-left p {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.about-left p:last-of-type {
  margin-bottom: 2rem;
}

.about-right {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding-top: 3rem;
}

.about-card {
  padding: 1.5rem 1.75rem;
  background: var(--bg-alt);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: border-color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}

.about-card:hover {
  border-color: rgba(232, 93, 4, 0.25);
  box-shadow: 0 4px 20px rgba(232, 93, 4, 0.07);
}

.about-card strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.about-card span {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   COLLAB LOGOS
============================================================ */
.collab-section {
  background: var(--bg-alt);
  padding: 4rem 0 5rem;
  border-bottom: 1px solid var(--border);
}

.collab-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 3rem;
  text-align: center;
}

.collab-inner .section-label {
  margin-bottom: 3rem;
}

.collab-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5rem;
  flex-wrap: wrap;
}

.collab-row img {
  height: 68px;
  width: auto;
  filter: brightness(0);
  opacity: 0.8;
  transition: opacity var(--dur) var(--ease),
              filter var(--dur) var(--ease);
}

.collab-row img:hover {
  opacity: 0.4;
  filter: brightness(0);
}

/* ============================================================
   FAQ
============================================================ */
.faq-section {
  padding: 7rem 0;
}

.faq-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 3rem;
}

.faq-heading {
  text-align: left;
  margin-bottom: 3.5rem;
}

.faq-heading h2 {
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

.faq-heading p {
  font-size: 1.15rem;
  color: var(--text-muted);
}

.faq-heading p a {
  color: var(--accent-a);
  font-weight: 600;
  transition: opacity var(--dur);
}

.faq-heading p a:hover {
  opacity: 0.8;
}

.faq-list {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  padding: 1.6rem 1.75rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  transition: background var(--dur) var(--ease);
}

.faq-question:hover {
  background: var(--bg-alt);
}

.faq-icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1.5px solid rgba(35, 35, 35, 0.2);
  transition: background var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
}

.faq-icon svg {
  width: 12px;
  height: 12px;
  transition: transform var(--dur) var(--ease),
              stroke var(--dur) var(--ease);
  stroke: var(--text-muted);
}

.faq-item.open .faq-icon {
  background: var(--text);
  border-color: var(--text);
}

.faq-item.open .faq-icon svg {
  stroke: #fff;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.42s var(--ease);
}

.faq-item.open .faq-answer {
  max-height: 320px;
}

.faq-answer-body {
  padding: 0 1.75rem 1.75rem;
  font-size: 1.075rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ============================================================
   FOOTER
============================================================ */
.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.65);
  padding: 5rem 0 2.5rem;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 3rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand-logo {
  margin-bottom: 1.25rem;
}

.footer-brand-logo img {
  height: 30px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-brand p {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.75rem;
  max-width: 280px;
  word-break: break-word;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  transition: background var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              color var(--dur) var(--ease);
}

.footer-socials a:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.5rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-col ul a {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color var(--dur) var(--ease);
  word-break: break-word;
  overflow-wrap: break-word;
}

.footer-col ul a:hover {
  color: #fff;
}

.footer-col ul a.nav-accent {
  background: linear-gradient(90deg, var(--accent-a), var(--accent-b));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 400;
}

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
  margin-bottom: 2rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.3);
  transition: color var(--dur) var(--ease);
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.65);
}

/* ============================================================
   SCROLL REVEAL ANIMATION
   .js-reveal is added by JS after pre-marking in-viewport elements visible,
   so above-the-fold content (hero, first sections) is never opacity:0 during LCP.
============================================================ */
.reveal {
  transition: opacity 0.7s var(--ease),
              transform 0.7s var(--ease);
}

.js-reveal .reveal:not(.visible) {
  opacity: 0;
  transform: translateY(22px);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1280px) {
  .header-nav a {
    font-size: 0.88rem;
    padding: 0.45rem 0.65rem;
  }

  .header-inner {
    padding: 0 2rem;
  }
}

@media (max-width: 1100px) {
  .header-nav { display: none; }
  .header-right .btn-outline { display: none; }
  .hamburger { display: flex; }

  .hero h1 {
    font-size: clamp(2.25rem, 8vw, 3rem);
  }

  .panels-wrap {
    flex-direction: column;
  }

  .panel {
    aspect-ratio: 4 / 5;
    width: 100%;
  }

  .panel-content h3 {
    opacity: 1;
    transform: none;
    font-size: 1.5rem;
  }

  .panel-link {
    opacity: 1;
    transform: none;
  }

  .stats-bento {
    grid-template-columns: 1fr;
  }

  .stat-hero {
    min-height: 320px;
    grid-column: auto;
    grid-row: auto;
  }

  .stat-card-wide {
    grid-column: auto;
    flex-direction: column;
    gap: 1.5rem;
  }

  .stat-wide-right {
    width: 100%;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 0 2rem;
  }

  .about-right {
    padding-top: 0;
  }

  .collab-row {
    gap: 2.5rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .container,
  .header-inner,
  .products-header,
  .stats-bento-wrap,
  .about-grid,
  .collab-inner,
  .faq-inner,
  .footer-inner {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .hero-content {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-bottom: 4rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .footer-col ul {
    gap: 0.75rem;
  }

  .footer-col ul a {
    font-size: 0.95rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .footer-legal a {
    font-size: 0.78rem;
  }
}

/* ============================================================
   REVIEWS / TESTIMONIALS — Google 5-star reviews
============================================================ */

.reviews-section {
  background: var(--bg-alt);
  padding: 7rem 0;
  overflow: hidden;
}

.reviews-header {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 3rem 4rem;
}

.reviews-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.reviews-header-row h2 {
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.google-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1rem 1.5rem;
  flex-shrink: 0;
}

.google-badge-g {
  flex-shrink: 0;
}

.google-badge-body {
  display: flex;
  flex-direction: column;
}

.google-badge-score {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
  line-height: 1;
}

.google-badge-stars {
  display: flex;
  gap: 2px;
  margin: 5px 0 4px;
}

.google-badge-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ---- 3-column masonry-scroll grid ---- */
.reviews-columns {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.25rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 3rem;
}

.reviews-col {
  position: relative;
  height: 620px;
  overflow: hidden;
}

.reviews-col::before,
.reviews-col::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 130px;
  z-index: 2;
  pointer-events: none;
}

.reviews-col::before {
  top: 0;
  background: linear-gradient(to bottom, var(--bg-alt) 0%, transparent 100%);
}

.reviews-col::after {
  bottom: 0;
  background: linear-gradient(to top, var(--bg-alt) 0%, transparent 100%);
}

.reviews-track {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  animation: reviews-scroll 32s linear infinite;
}

.reviews-col:nth-child(2) .reviews-track { animation-duration: 44s; }
.reviews-col:nth-child(3) .reviews-track { animation-duration: 37s; }

@keyframes reviews-scroll {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

/* ---- Single card ---- */
.review-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.75rem;
  transition: border-color 0.3s var(--ease),
              box-shadow 0.3s var(--ease);
}

.review-card:hover {
  border-color: rgba(232, 93, 4, 0.22);
  box-shadow: 0 6px 24px rgba(232, 93, 4, 0.07);
}

.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 0.875rem;
}

.review-text {
  font-size: 0.97rem;
  line-height: 1.72;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text);
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

.review-name {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
}

.review-date {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.35;
  margin-top: 1px;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .reviews-columns {
    grid-template-columns: 1fr 1fr;
  }
  .reviews-col:nth-child(3) {
    display: none;
  }
}

@media (max-width: 768px) {
  .reviews-columns {
    grid-template-columns: 1fr;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .reviews-col:nth-child(2),
  .reviews-col:nth-child(3) {
    display: none;
  }
  .reviews-header {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-bottom: 3rem;
  }
  .reviews-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .reviews-section {
    padding: 5rem 0;
  }
  .reviews-col {
    height: 560px;
  }
}

/* ============================================================
   PAGE HEADER BAND (medale / product category pages)
============================================================ */
.page-header-band {
  padding-top: 76px;
  background: var(--bg);
}

.page-header-content {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.75rem 2rem 1rem;
  text-align: center;
}

.page-header-content h1 {
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 0.6rem;
}

.page-header-content p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

/* ============================================================
   BREADCRUMB
============================================================ */
.breadcrumb-nav {
  padding-top: 0;
  padding-bottom: 0;
  background: transparent;
}

.breadcrumb-list {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.75rem 2rem 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.breadcrumb-list li + li::before {
  content: '/';
  margin-right: 0.4rem;
  opacity: 0.4;
}

.breadcrumb-list a {
  color: var(--text-muted);
  transition: color var(--dur) var(--ease);
}

.breadcrumb-list a:hover {
  color: var(--text);
}

.breadcrumb-list [aria-current="page"] {
  color: var(--text);
  font-weight: 500;
}

/* ============================================================
   HERO VARIANTS
============================================================ */
.hero-short {
  min-height: 68vh;
}

.hero-bg--medale {
  background-image: url('./assets/new-assets/medale_desktop.webp');
}
.hero-bg--statuetki {
  background-image: url('./assets/new-assets/statuetki_desktop.webp');
}
.hero-bg--pinsy {
  background-image: url('./assets/new-assets/pinsy_desktop.webp');
}
.hero-bg--breloki {
  background-image: url('./assets/new-assets/breloki_desktop.webp');
}

@media (max-width: 768px) {
  .hero-bg--medale,
  .hero-bg--statuetki,
  .hero-bg--pinsy,
  .hero-bg--breloki {
    background-image: url('./assets/slider-mobile.webp');
  }
}

/* ============================================================
   MEDAL CATEGORY CARDS
============================================================ */
.medal-categories-section {
  padding: 1.5rem 0 2rem;
  background: var(--bg);
}

.medal-cat-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.medal-cat-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  border: 1px solid rgba(3, 7, 30, 0.10);
  background: #fff;
  color: var(--dark);
  overflow: hidden;
  text-decoration: none;
  transition: box-shadow 0.35s var(--ease), transform 0.35s var(--ease);
}

.medal-cat-card:hover {
  box-shadow: 0 12px 40px rgba(3, 7, 30, 0.12);
  transform: translateY(-3px);
}

/* image area */
.medal-cat-img {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #f2f0ec;
}

.medal-cat-img picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.medal-cat-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.55s var(--ease);
}

.medal-cat-card:hover .medal-cat-img img {
  transform: scale(1.06);
}

/* text block below image */
.medal-cat-body {
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}

.medal-cat-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin: 0;
  color: var(--dark);
}

.medal-cat-body p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

.medal-cat-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--dark);
  margin-top: auto;
  padding-top: 0.6rem;
  transition: gap var(--dur) var(--ease);
}

.medal-cat-btn svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  transition: transform var(--dur) var(--ease);
}

.medal-cat-card:hover .medal-cat-btn svg {
  transform: translateX(4px);
}

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

@media (max-width: 560px) {
  .medal-cat-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .medal-categories-section {
    padding: 3rem 0 4rem;
  }
}

/* ============================================================
   MEDAL PANELS (legacy — dark hover style)
============================================================ */
.panel--medal .panel-img-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--dark) 0%, #1a0a00 100%);
  transition: transform var(--dur) var(--ease);
}

.panel--medal:hover .panel-img-placeholder {
  transform: scale(1.04);
}

.panel-type-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.5rem;
}

.panel-desc {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
  margin-top: 0.5rem;
  margin-bottom: 1.25rem;
  max-width: 28ch;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}

.panel:hover .panel-desc {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   PROCESS SECTION
============================================================ */
.process-section {
  padding: 7rem 0;
  background: var(--bg);
}

.process-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.process-heading {
  position: sticky;
  top: calc(120px + var(--tb, 0px));
}

.process-heading h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.process-heading p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 42ch;
}

.process-cta-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--accent-a);
  transition: color var(--dur) var(--ease);
}

.btn-link:hover {
  color: var(--accent-a);
}

.process-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  counter-reset: steps;
}

.process-step {
  display: flex;
  gap: 1.75rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}

.process-step:last-child {
  border-bottom: none;
}

.process-step-num {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  flex-shrink: 0;
  padding-top: 0.2rem;
  min-width: 2rem;
}

.process-step-body strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.process-step-body p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 900px) {
  .process-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .process-heading {
    position: static;
  }
}

@media (max-width: 600px) {
  .process-section {
    padding: 5rem 0;
  }

  .process-step {
    gap: 1.25rem;
  }
}

/* ============================================================
   CLIENTS SLIDER SECTION
============================================================ */
.clients-section {
  padding: 7rem 0;
  background: var(--dark);
  color: #fff;
  overflow: hidden;
}

.clients-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 3rem;
}

.cs-grid {
  display: grid;
  grid-template-columns: 3fr 4fr 5fr;
  gap: 3rem;
  align-items: center;
}

/* --- Left column --- */
.cs-col-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2.5rem;
}

.cs-col-left-top {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.cs-counter {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.4);
  font-variant-numeric: tabular-nums;
}

.cs-vert-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  align-self: flex-start;
}

.cs-thumbs {
  display: flex;
  gap: 0.65rem;
}

.cs-thumb {
  width: 72px;
  height: 88px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: opacity var(--dur) var(--ease), border-color var(--dur) var(--ease);
  overflow: hidden;
  padding: 0;
}

.cs-thumb:hover {
  opacity: 0.85;
  border-color: rgba(255, 255, 255, 0.3);
}

.cs-thumb-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cs-thumb-placeholder {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

/* --- Center column --- */
.cs-col-center { position: relative; }

.cs-main-wrap {
  width: 100%;
  height: 480px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.cs-main-img {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.38s var(--ease);
}

.cs-img-placeholder {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.09);
}

.cs-main-img.cs-fade-out { opacity: 0; }

/* --- Right column --- */
.cs-col-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 3.5rem;
  min-height: 480px;
}

.cs-text-wrap {
  transition: opacity 0.38s var(--ease), transform 0.38s var(--ease);
}

.cs-text-wrap.cs-fade-out {
  opacity: 0;
  transform: translateX(18px);
}

.cs-affiliation {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.04em;
}

.cs-name {
  font-size: 1.25rem;
  font-weight: 650;
  color: #fff;
  margin-top: 0.4rem;
}

.cs-quote {
  margin-top: 2rem;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
  font-style: normal;
}

.cs-nav {
  display: flex;
  gap: 0.75rem;
  margin-top: 3rem;
}

.cs-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease), background var(--dur) var(--ease);
}

.cs-btn:hover {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.cs-btn--primary {
  background: var(--accent-a);
  border-color: var(--accent-a);
  color: #fff;
}

.cs-btn--primary:hover {
  background: #c94e00;
  border-color: #c94e00;
}

.cs-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .cs-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .cs-col-left  { grid-column: 1 / 2; grid-row: 1; }
  .cs-col-center { grid-column: 2 / 3; grid-row: 1 / 3; }
  .cs-col-right  { grid-column: 1 / 2; grid-row: 2; padding-top: 0; min-height: auto; }
  .cs-main-wrap  { height: 420px; }
}

@media (max-width: 680px) {
  .clients-section { padding: 5rem 0; }
  .clients-inner { padding: 0 1.5rem; }
  .cs-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 2rem;
  }
  .cs-col-left  { grid-column: 1; grid-row: 1; flex-direction: row; align-items: center; gap: 1.5rem; }
  .cs-vert-label { display: none; }
  .cs-thumbs { flex: 1; justify-content: flex-end; }
  .cs-col-center { grid-column: 1; grid-row: 2; }
  .cs-col-right  { grid-column: 1; grid-row: 3; padding-top: 0; min-height: auto; }
  .cs-main-wrap  { height: 280px; }
  .cs-quote { font-size: 1.15rem; }
  .cs-col-left-top { flex-direction: row; align-items: center; gap: 1.5rem; }
}

/* ============================================================
   PRODUCTION TECHNIQUES SECTION
============================================================ */
.production-section {
  padding: 7rem 0;
  background: var(--bg-alt);
}

.production-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 2rem;
}

.production-heading {
  max-width: 52ch;
  margin-bottom: 4rem;
}

.production-heading h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.production-heading p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.production-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.production-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.production-card:hover {
  box-shadow: 0 8px 28px rgba(35, 35, 35, 0.07);
  transform: translateY(-2px);
}

.production-card-num {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent-a);
  opacity: 0.8;
}

.production-card-content strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.production-card-content p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

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

@media (max-width: 600px) {
  .production-section {
    padding: 5rem 0;
  }

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

/* ============================================================
   PAGE HEADER — LEFT VARIANT
   Used on: /custom-medals/sports-medals and subpages
============================================================ */

.page-header-band--left .page-header-content {
  text-align: left;
}

.page-header-band--left .page-header-content h1 {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  letter-spacing: -0.05em;
}

.page-header-band--left .page-header-content p {
  margin-left: 0;
  margin-right: 0;
}

/* ============================================================
   MEDALE SPORTOWE — MATERIAL SECTIONS
   Used on: /custom-medals/sports-medals
============================================================ */

.ms-material-section {
  padding: 0;
  overflow: hidden;
}

.ms-material-section--light {
  background: var(--bg);
}

.ms-material-section--dark {
  background: var(--bg-alt);
}

.ms-material-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
}

.ms-material-inner--reversed {
  direction: rtl;
}

.ms-material-inner--reversed > * {
  direction: ltr;
}

/* Image column */
.ms-material-img-col {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
}

.ms-material-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  border: 1px solid #e0e0e0;
}

.ms-material-img picture,
.ms-material-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ms-material-img--cast {
  background: linear-gradient(135deg, #1a1206 0%, #3d2b0a 30%, #7a5418 60%, #c49a35 100%);
}

.ms-material-img--steel {
  background: linear-gradient(135deg, #0a0e14 0%, #131926 35%, #1e2840 65%, #2c3a58 100%);
}

/* Body / text column */
.ms-material-body {
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
}

.ms-material-body h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.15;
  color: var(--text);
}

.ms-heading--light {
  color: #fff !important;
}

.ms-material-body p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 52ch;
}

.ms-text--light {
  color: rgba(255, 255, 255, 0.65) !important;
}

.ms-label--light {
  color: rgba(255, 255, 255, 0.5) !important;
}

.ms-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 0;
  margin: 0.25rem 0;
}

.ms-feature-list li {
  font-size: 0.95rem;
  color: var(--text);
  padding-left: 1.4rem;
  position: relative;
  line-height: 1.5;
}

.ms-feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-a), var(--accent-b));
}

.ms-feature-list--light li {
  color: rgba(255, 255, 255, 0.8);
}

.ms-material-btn {
  align-self: flex-start;
  margin-top: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.ms-material-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform var(--dur) var(--ease);
}

.ms-material-btn:hover svg {
  transform: translateX(4px);
}

.ms-material-btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-top: 0.5rem;
}

.ms-gallery-cta {
  display: flex;
  justify-content: center;
  padding: 2.5rem 0 0.5rem;
}

.ms-gallery-cta .btn {
  min-width: 220px;
}

@media (max-width: 1024px) {
  .ms-material-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .ms-material-inner--reversed {
    direction: ltr;
  }

  .ms-material-img-col {
    padding: 1.5rem 2rem 0;
  }

  .ms-material-body {
    padding: 2rem 2.5rem 3rem;
  }
}

@media (max-width: 600px) {
  .ms-material-img-col {
    padding: 1.25rem 1.5rem 0;
  }

  .ms-material-body {
    padding: 1.5rem 1.5rem 2.5rem;
  }

  .ms-material-body h2 {
    font-size: 1.9rem;
  }
}


/* ============================================================
   MEDALE SPORTOWE — FORM PLACEHOLDER SECTION
============================================================ */

.ms-form-section {
  padding: 7rem 0;
  background: var(--bg-alt);
}

.ms-form-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.ms-form-heading h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.ms-form-heading p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.ms-form-placeholder {
  background: var(--bg);
  border: 1.5px dashed var(--border);
  border-radius: var(--radius);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ms-form-placeholder-text {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.6;
}

@media (max-width: 900px) {
  .ms-form-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 600px) {
  .ms-form-section {
    padding: 5rem 0;
  }
}


/* ============================================================
   MEDALE SPORTOWE — ADVISOR SECTION
============================================================ */

.ms-advisor-section {
  padding: 7rem 0;
  background: var(--bg);
}

.ms-advisor-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.ms-advisor-text h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.ms-advisor-text p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
  max-width: 54ch;
}

.ms-advisor-cta-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}

.ms-advisor-cards {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.ms-advisor-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  position: relative;
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.ms-advisor-card:hover {
  box-shadow: 0 8px 28px rgba(35, 35, 35, 0.07);
  transform: translateY(-2px);
}

.ms-advisor-card-num {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--accent-a);
  margin-bottom: 0.4rem;
}

.ms-advisor-card strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.ms-advisor-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 1024px) {
  .ms-advisor-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 600px) {
  .ms-advisor-section {
    padding: 5rem 0;
  }
}


/* ============================================================
   MEDALE SPORTOWE — GALLERY SECTIONS
============================================================ */

.ms-gallery-section {
  padding: 5.5rem 0;
}

.ms-gallery-section--light {
  background: var(--bg-alt);
}

.ms-gallery-section--alt {
  background: var(--bg);
}

.ms-gallery-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 2rem;
}

.ms-gallery-heading {
  max-width: 52ch;
  margin-bottom: 3.5rem;
}

.ms-gallery-heading h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.ms-gallery-heading p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.ms-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.875rem;
}

.ms-gallery-item {
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--bg);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.ms-gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(35, 35, 35, 0.10);
}

.ms-gallery-item--dark {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

.ms-gallery-item--dark:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.ms-gallery-img-placeholder {
  width: 100%;
  height: 100%;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ms-gallery-item picture,
.ms-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ms-gallery-img-placeholder--dark {
  background: rgba(255, 255, 255, 0.06);
}

@media (max-width: 1024px) {
  .ms-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.875rem;
  }
}

@media (max-width: 600px) {
  .ms-gallery-section {
    padding: 4rem 0;
  }

  .ms-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .ms-gallery-item {
    border-radius: 16px;
  }

  .ms-gallery-heading h2 {
    font-size: 1.8rem;
  }
}

/* ============================================================
   PAGE HEADER — CENTER VARIANT
   Used on: /custom-medals/commemorative-medals
============================================================ */

.page-header-band--center .page-header-content {
  text-align: center;
}

.page-header-band--center .page-header-content h1 {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  letter-spacing: -0.05em;
}

/* ============================================================
   MEDALE OKOLICZNOŚCIOWE — DUAL CARD SECTION
   Two equal cards side-by-side: image on top, text below
============================================================ */

.mo-dual-section {
  padding: 0;
  overflow: hidden;
}

.mo-dual-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.mo-dual-card {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 2.5rem 2.75rem 3rem;
}

.mo-dual-card--light {
  background: var(--bg);
  color: var(--text);
}

.mo-dual-card--dark {
  background: var(--bg);
}

.mo-dual-card-img {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: var(--bg);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  flex-shrink: 0;
  margin-bottom: 1.75rem;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.mo-dual-card-img:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(35, 35, 35, 0.10);
}

.mo-dual-card-img--cast {
  background-color: var(--bg);
}

.mo-dual-card-img--steel {
  background-color: #1e2025;
}

.mo-dual-card-img--coin {
  background-color: var(--bg);
}

.mo-dual-card-img picture,
.mo-dual-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ms-gallery-grid--row {
  grid-template-columns: repeat(4, 1fr);
}

.mo-dual-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mo-dual-card-body .ms-material-btn-row,
.mo-dual-card-body > .ms-material-btn {
  margin-top: auto;
  align-self: flex-start;
}

.mo-dual-card-body h2 {
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.15;
  margin: 0;
  color: var(--text);
}

.mo-dual-card-body p {
  font-size: 0.975rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
}

@media (max-width: 900px) {
  .mo-dual-inner {
    grid-template-columns: 1fr;
  }

  .mo-dual-card-img {
    aspect-ratio: 1 / 1;
    max-width: 100%;
  }

  .mo-dual-card-body {
    padding: 2rem 1.5rem 2.5rem;
  }
}

@media (max-width: 600px) {
  .mo-dual-card-body {
    padding: 1.75rem 1.25rem 2rem;
  }

  .mo-dual-card-body h2 {
    font-size: 1.5rem;
  }
}

/* ============================================================
   PAGE-LEVEL HERO (product sub-pages — 3D odlewane, stalowe…)
============================================================ */
.page-hero-breadcrumb {
  position: absolute;
  top: calc(76px + 1.25rem);
  left: 0;
  right: 0;
  z-index: 3;
}

.page-hero-breadcrumb .breadcrumb-list {
  padding-top: 0;
}

.page-hero-breadcrumb .breadcrumb-list a,
.page-hero-breadcrumb .breadcrumb-list li {
  color: rgba(255, 255, 255, 0.6);
}

.page-hero-breadcrumb .breadcrumb-list a:hover {
  color: #fff;
}

.page-hero-breadcrumb .breadcrumb-list [aria-current="page"] {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.page-hero-bg--3d-odlewane {
  background-color: #180e05;
}

.page-hero-bg--stalowe {
  background-color: #0c1018;
}

.page-hero-bg--statuetki-3d {
  background-color: #0e0e0e;
}

.page-hero-bg--statuetki-stalowe {
  background-color: #0c1018;
}

/* ============================================================
   Q&A PRODUCTION SECTION
============================================================ */
.ms-qa-section {
  padding: 5rem 0;
  background: var(--bg-alt);
}

.ms-qa-section--dark {
  background: var(--ink-black);
}

.ms-qa-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 2rem;
}

.ms-qa-heading {
  max-width: 640px;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.ms-qa-heading h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.15;
  margin: 0.5rem 0 1rem;
}

.ms-qa-heading p {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.ms-qa-section--dark .ms-qa-heading .section-label {
  color: rgba(255, 255, 255, 0.5);
}

.ms-qa-section--dark .ms-qa-heading h2 {
  color: #fff;
}

.ms-qa-section--dark .ms-qa-heading p {
  color: rgba(255, 255, 255, 0.55);
}

.ms-qa-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
}

.ms-qa-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 2rem 2.25rem;
}

.ms-qa-section--dark .ms-qa-item {
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(255, 255, 255, 0.08);
}

.ms-qa-q {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin-bottom: 0.85rem;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.ms-qa-section--dark .ms-qa-q {
  color: #fff;
}

.ms-qa-q-dot {
  flex-shrink: 0;
  width: 0.55rem;
  height: 0.55rem;
  margin-top: 0.38rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-a), var(--accent-b));
}

.ms-qa-a {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.ms-qa-section--dark .ms-qa-a {
  color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 900px) {
  .ms-qa-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .ms-qa-section {
    padding: 3.5rem 0;
  }

  .ms-qa-item {
    padding: 1.5rem 1.25rem 1.75rem;
  }
}

/* ============================================================
   HERO — SPLIT (white background, text left, image right)
============================================================ */
.hero--split {
  height: auto;
  min-height: 700px;
  align-items: stretch;
  background: var(--bg);
}

.hero--split .hero-bg,
.hero--split .hero-overlay {
  display: none;
}

.hero-split-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  min-height: 700px;
}

.hero-split-text {
  padding: 7.5rem 0 5rem;
}

.hero--split .page-hero-breadcrumb {
  position: static;
  margin-bottom: 2rem;
}

.hero--split .page-hero-breadcrumb .breadcrumb-list {
  padding: 0;
}

.hero--split .page-hero-breadcrumb .breadcrumb-list a,
.hero--split .page-hero-breadcrumb .breadcrumb-list li {
  color: var(--text-muted);
}

.hero--split .page-hero-breadcrumb .breadcrumb-list a:hover {
  color: var(--text);
}

.hero--split .page-hero-breadcrumb .breadcrumb-list [aria-current="page"] {
  color: var(--text);
  font-weight: 500;
}

.hero--split .hero-eyebrow {
  color: var(--text-muted);
}

.hero--split h1 {
  color: var(--text);
}

.hero--split .hero-sub {
  color: var(--text-muted);
}

.hero--split .btn-outline-white {
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(35, 35, 35, 0.25);
}

.hero--split .btn-outline-white:hover {
  background: var(--bg-alt);
  border-color: var(--text);
}

.hero-split-media {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 0;
}

.hero-split-img-box {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 1.5rem;
  background: var(--bg-alt);
  box-shadow:
    0 2px 8px rgba(3, 7, 30, 0.04),
    0 16px 56px rgba(3, 7, 30, 0.09);
  overflow: hidden;
  position: relative;
}

@media (max-width: 1024px) {
  .hero-split-inner {
    grid-template-columns: 1fr;
    gap: 0;
    min-height: auto;
    padding: 0 1.5rem;
  }

  .hero-split-text {
    padding: 7rem 0 2rem;
  }

  .hero-split-media {
    padding: 0 0 4rem;
  }

  .hero-split-img-box {
    aspect-ratio: 16 / 9;
  }

}

/* ============================================================
   HERO — SPLIT (white bg, text left, image right)
   Used on: /custom-medals/3d-cast-medals
============================================================ */
.hero--dark-split {
  background: #ffffff;
  min-height: 680px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.hero-dark-split-inner {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-left: 3rem;
  display: flex;
  gap: 0;
}

.hero-dark-split-text {
  flex: 1;
  padding: 7.5rem 3rem 5rem 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.hero-dark-split-breadcrumb {
  margin-bottom: 0;
}

.hero-dark-split-body {
  margin-top: auto;
  margin-bottom: auto;
}

.hero-dark-split-breadcrumb .breadcrumb-list {
  padding: 0;
}

.hero-dark-split-breadcrumb .breadcrumb-list a,
.hero-dark-split-breadcrumb .breadcrumb-list li {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.hero-dark-split-breadcrumb .breadcrumb-list a:hover {
  color: var(--text);
}

.hero-dark-split-breadcrumb .breadcrumb-list [aria-current="page"] {
  color: var(--text);
  font-weight: 500;
}

.hero--dark-split .hero-eyebrow {
  color: var(--text-muted);
}

.hero--dark-split h1 {
  color: var(--text);
}

.hero--dark-split .hero-sub {
  color: var(--text-muted);
}

.hero--dark-split .btn-outline-white {
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(35, 35, 35, 0.25);
}

.hero--dark-split .btn-outline-white:hover {
  background: var(--bg-alt);
  border-color: var(--text);
}

.hero-dark-split-media {
  flex: 0 0 50%;
  overflow: hidden;
}

.hero-dark-split-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-dark-split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 1024px) {
  .hero--dark-split {
    display: block;
    height: auto;
    min-height: auto;
    overflow: hidden;
  }

  .hero-dark-split-inner {
    display: block;
    padding: 0;
  }

  .hero-dark-split-text {
    padding: 6rem 1.5rem 0;
  }

  .hero-dark-split-media {
    display: block;
    width: 100%;
    position: relative;
    padding-top: 100%;
    overflow: hidden;
  }

  .hero-dark-split-media picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
  }

  .hero-dark-split-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
}

@media (max-width: 600px) {
  .hero-dark-split-media {
    padding-top: 85%;
  }
}

.hero--dark-split--sm .hero-dark-split-media {
  flex: 0 0 42%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 0;
}

.hero--dark-split--sm .hero-dark-split-media picture {
  width: 90%;
  height: auto;
}

.hero--dark-split--sm .hero-dark-split-media img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* ============================================================
   QUOTE FORM — /free-quote
============================================================ */

.quote-section {
  padding: 5rem 0 7rem;
}

.quote-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 4rem;
  align-items: start;
}

/* ── Notice banners ─────────────────────────────────────── */
.quote-notice {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  border-radius: var(--radius);
  margin-bottom: 2rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.quote-notice svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 1px;
}

.quote-notice div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.quote-notice strong {
  font-weight: 700;
}

.quote-notice--success {
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.quote-notice--error {
  background: #fff1f2;
  color: #9f1239;
  border: 1px solid #fecdd3;
}

/* ── Form elements ──────────────────────────────────────── */
.quote-form {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}

.form-required {
  color: var(--accent-a);
  margin-left: 2px;
}

.form-input {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 1rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
  outline: none;
}

.form-input::placeholder {
  color: #b0b0b0;
}

.form-input:focus {
  border-color: var(--accent-a);
  box-shadow: 0 0 0 3px rgba(232, 93, 4, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}

/* ── Product checkboxes ─────────────────────────────────── */
.form-fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

.product-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.3rem;
}

.product-check {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.6rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 99px;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--dur) var(--ease),
              background var(--dur) var(--ease),
              color var(--dur) var(--ease);
  user-select: none;
}

.product-check input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}

.product-check-box {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1.5px solid var(--border);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
}

.product-check-box svg {
  width: 11px;
  height: 11px;
  stroke: #fff;
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}

.product-check.checked,
.product-check:has(input:checked),
.product-check:hover {
  border-color: var(--accent-a);
  color: var(--accent-a);
}

.product-check.checked .product-check-box,
.product-check:has(input:checked) .product-check-box {
  background: var(--accent-a);
  border-color: var(--accent-a);
}

.product-check.checked .product-check-box svg,
.product-check:has(input:checked) .product-check-box svg {
  opacity: 1;
}

/* ── RODO text & submit ─────────────────────────────────── */
.form-rodo {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.form-submit-btn {
  align-self: flex-start;
  gap: 0.6rem;
}

.form-submit-btn svg {
  width: 17px;
  height: 17px;
}

/* ── Right info panel ───────────────────────────────────── */
.quote-info {
  position: sticky;
  top: calc(var(--header-h, 80px) + var(--tb, 0px) + 2rem);
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  border: 1px solid var(--border);
}

.quote-info-block {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.quote-info-value {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  background: linear-gradient(90deg, var(--accent-a), var(--accent-b));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.quote-info-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.quote-info-divider {
  height: 1px;
  background: var(--border);
}

.quote-info-link {
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 500;
  transition: color var(--dur) var(--ease);
  text-decoration: none;
}

.quote-info-link:hover {
  color: var(--accent-a);
}

.quote-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 0;
  margin: 0;
}

.quote-info-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text);
}

.quote-info-list li svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  stroke: var(--accent-a);
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .quote-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .quote-info {
    position: static;
  }
}

@media (max-width: 600px) {
  .quote-section {
    padding: 3rem 0 5rem;
  }

  .product-checks {
    gap: 0.5rem;
  }

  .product-check {
    font-size: 0.85rem;
    padding: 0.55rem 0.85rem;
  }

  .form-submit-btn {
    width: 100%;
    justify-content: center;
  }
}


/* ============================================================
   PAGE HERO — shared for /about-us, /contact and similar pages
============================================================ */
.page-hero {
  padding: 9rem 2rem 6rem;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.page-hero-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 2rem;
  letter-spacing: 0.01em;
}

.breadcrumb a {
  color: var(--text-muted);
  transition: color var(--dur) var(--ease);
}

.breadcrumb a:hover {
  color: var(--text);
}

.breadcrumb span[aria-hidden] {
  opacity: 0.35;
}

.page-hero h1 {
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.page-hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 60ch;
}

@media (max-width: 768px) {
  .page-hero {
    padding: 8rem 1.5rem 4rem;
  }
}


/* ============================================================
   ABOUT — STORY SECTION (/about-us)
============================================================ */
.about-story-section {
  padding: 7rem 0;
  background: var(--bg);
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.about-story-text h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  margin-top: 0.75rem;
}

.about-story-text p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.1rem;
  max-width: 56ch;
}

/* Timeline */
.about-story-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 2.5rem;
}

.timeline-item {
  display: flex;
  gap: 1.5rem;
  padding-bottom: 2.5rem;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 3rem;
  top: 2rem;
  bottom: 0;
  width: 1px;
  background: var(--border);
}

.timeline-item:last-child::before {
  display: none;
}

.timeline-year {
  flex-shrink: 0;
  width: 6rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--accent-a);
  padding-top: 0.2rem;
  text-align: right;
}

.timeline-content {
  padding-left: 1.5rem;
  border-left: 2px solid var(--border);
}

.timeline-content strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.timeline-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
  max-width: 100%;
}

@media (max-width: 900px) {
  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .about-story-text p {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .about-story-section {
    padding: 5rem 0;
  }
}


/* ============================================================
   VALUES SECTION (/about-us)
============================================================ */
.values-section {
  padding: 7rem 0;
  background: var(--bg-alt);
}

.values-heading {
  margin-bottom: 3.5rem;
}

.values-heading h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.15;
  margin-top: 0.5rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.value-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.value-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(35, 35, 35, 0.07);
}

.value-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--accent-a);
}

.value-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

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

@media (max-width: 600px) {
  .values-section {
    padding: 5rem 0;
  }

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


/* ============================================================
   ABOUT STATS — 4-column variant (/about-us)
============================================================ */
.about-stats {
  padding: 6rem 0;
}

.stats-bento--4col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 2rem;
}

.stat-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  transition: transform var(--dur) var(--ease);
}

.stat-card:hover {
  transform: translateY(-2px);
}

.stat-card-num {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
  margin-bottom: 0.4rem;
  background: linear-gradient(90deg, var(--accent-a), var(--accent-b));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-card-num span {
  font-size: 0.7em;
}

.stat-card-label {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-card-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
}

@media (max-width: 1024px) {
  .stats-bento--4col {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .stats-bento--4col {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .about-stats {
    padding: 4rem 0;
  }
}


/* ============================================================
   PAGE CTA SECTION (/about-us bottom)
============================================================ */
.page-cta-section {
  padding: 8rem 0;
  background: var(--bg-alt);
}

.page-cta-inner {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.page-cta-inner h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.15;
  margin: 0.75rem 0 1rem;
}

.page-cta-inner p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.page-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 600px) {
  .page-cta-section {
    padding: 5rem 0;
  }

  .page-cta-actions .btn {
    width: 100%;
    justify-content: center;
  }
}


/* ============================================================
   CONTACT SECTION (/contact)
============================================================ */
.contact-section {
  padding: 7rem 0 8rem;
  background: var(--bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 5rem;
  align-items: start;
}

/* Form wrap */
.contact-form-wrap h2 {
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 0.75rem;
}

.contact-form-note {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 54ch;
}

/* Form fields */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.form-row {
  margin-bottom: 1.25rem;
}

.form-row--2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 0;
}

.form-row--2col + .form-row--2col {
  margin-top: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.01em;
}

.form-req {
  color: var(--accent-a);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%23717171' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent-a);
  box-shadow: 0 0 0 3px rgba(232, 93, 4, 0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

/* Consent checkbox */
.form-row--consent {
  margin-bottom: 0.5rem;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.form-checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.form-checkbox-mark {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  background: var(--bg);
  margin-top: 1px;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease);
  position: relative;
}

.form-checkbox input:checked + .form-checkbox-mark {
  background: var(--accent-a);
  border-color: var(--accent-a);
}

.form-checkbox input:checked + .form-checkbox-mark::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 5px;
  width: 5px;
  height: 9px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

.form-checkbox a {
  color: var(--accent-a);
}

/* Submit button row */
.form-actions {
  margin-top: 1.75rem;
}

.form-actions .btn {
  gap: 0.75rem;
}

/* Feedback message */
.form-feedback {
  margin-top: 1rem;
  font-size: 0.9rem;
  line-height: 1.6;
  min-height: 0;
  transition: all var(--dur) var(--ease);
}

.form-feedback--success {
  color: #16a34a;
  padding: 0.75rem 1rem;
  background: rgba(22, 163, 74, 0.08);
  border-radius: 8px;
  border: 1px solid rgba(22, 163, 74, 0.2);
}

/* Contact details sidebar */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: sticky;
  top: calc(5.5rem + var(--tb, 0px));
}

.contact-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-card--accent {
  background: var(--dark);
  border-color: transparent;
  display: block;
}

.contact-card-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-a);
}

.contact-card-body h3 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.contact-card--accent .contact-card-body h3 {
  color: rgba(255, 255, 255, 0.55);
}

.contact-card-body a,
.contact-card-body span {
  display: block;
  font-size: 0.95rem;
  color: var(--text);
  transition: color var(--dur) var(--ease);
  line-height: 1.6;
}

.contact-card-body a:hover {
  color: var(--accent-a);
}

.contact-card--accent .contact-card-body p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.contact-card--accent .contact-card-body .btn-accent {
  background: linear-gradient(135deg, var(--accent-a), var(--accent-b));
  color: #fff;
}

@media (max-width: 1100px) {
  .contact-grid {
    grid-template-columns: 1fr 340px;
    gap: 3.5rem;
  }
}

@media (max-width: 860px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-details {
    position: static;
  }

  .form-row--2col {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .contact-section {
    padding: 4rem 0 5rem;
  }
}


/* ============================================================
   PROCESS STEPS (/contact — how it works)
============================================================ */
.page-kontakt .process-section {
  padding: 7rem 0;
  background: var(--bg-alt);
}

.page-kontakt .process-heading {
  margin-bottom: 4rem;
}

.page-kontakt .process-heading h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.15;
  margin-top: 0.5rem;
}

.page-kontakt .process-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  counter-reset: steps;
}

.page-kontakt .process-step {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem 1.75rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform var(--dur) var(--ease);
}

.page-kontakt .process-step:hover {
  transform: translateY(-3px);
}

.page-kontakt .process-step-num {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
  background: linear-gradient(90deg, var(--accent-a), var(--accent-b));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-kontakt .process-step-body h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.page-kontakt .process-step-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .page-kontakt .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .page-kontakt .process-section {
    padding: 5rem 0;
  }

  .page-kontakt .process-steps {
    grid-template-columns: 1fr;
  }
}


/* ============================================================
   KONTAKT — persons + address cards
============================================================ */
.kontakt-info-section {
  padding: 1.5rem 0 3rem;
  background: var(--bg);
}

.kontakt-persons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.kontakt-person-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.kontakt-person-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(35, 35, 35, 0.07);
}

.kontakt-person-avatar {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-a), var(--accent-b));
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kontakt-person-avatar--addr {
  border-radius: 12px;
  background: var(--dark);
}

.kontakt-person-body {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-width: 0;
}

.kontakt-person-name {
  font-size: 1rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.2rem;
}

.kontakt-person-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--dur) var(--ease);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.kontakt-person-link:hover {
  color: var(--accent-a);
}

.kontakt-person-link svg {
  flex-shrink: 0;
  color: var(--accent-a);
}

.kontakt-address-line {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .kontakt-persons-grid {
    grid-template-columns: 1fr 1fr;
  }

  .kontakt-address-card {
    grid-column: 1 / -1;
  }
}

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

  .kontakt-address-card {
    grid-column: auto;
  }

  .kontakt-info-section {
    padding: 3.5rem 0 2.5rem;
  }
}


/* ============================================================
   KONTAKT — map
============================================================ */
.kontakt-map-section {
  padding: 0 0 4rem;
  background: var(--bg);
}

.kontakt-map-wrap {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  line-height: 0;
}

.kontakt-map-wrap iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: none;
  filter: grayscale(15%);
}

@media (max-width: 600px) {
  .kontakt-map-wrap iframe {
    height: 260px;
  }
}

/* ============================================================
   NASZE REALIZACJE — listing page
============================================================ */

.realizacje-section {
  padding: 5rem 2rem 7rem;
}

.realizacje-head {
  max-width: var(--max);
  margin: 0 auto 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.realizacje-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.realizacje-filter-btn {
  padding: 0.45rem 1.1rem;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.realizacje-filter-btn:hover {
  color: var(--text);
  border-color: var(--text);
}

.realizacje-filter-btn.active {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}

.realizacje-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.real-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg);
  border: 1px solid var(--border);
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.real-card:hover {
  box-shadow: 0 8px 40px rgba(35, 35, 35, 0.1);
  transform: translateY(-3px);
}

.real-card__img-wrap {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.real-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.real-card:hover .real-card__img-wrap img {
  transform: scale(1.04);
}

.real-card__img-placeholder {
  width: 100%;
  height: 100%;
  background: var(--bg-alt);
}

.real-card__body {
  padding: 1.75rem;
}

.real-card__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--accent-a), var(--accent-b));
  color: #fff;
  margin-bottom: 0.75rem;
}

.real-card__date {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.real-card__title {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

.real-card__title a {
  color: var(--text);
  text-decoration: none;
  transition: color var(--dur) var(--ease);
}

.real-card__title a:hover {
  color: var(--accent-a);
}

.real-card__excerpt {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.real-card .btn-link {
  font-size: 0.875rem;
}

/* Skeleton loaders */
@keyframes shimmer {
  0%   { background-position: -600px 0; }
  100% { background-position:  600px 0; }
}

.real-skeleton {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg);
  border: 1px solid var(--border);
}

.real-skeleton__img {
  aspect-ratio: 4 / 3;
  background: linear-gradient(90deg, var(--bg-alt) 25%, #e4e4e4 50%, var(--bg-alt) 75%);
  background-size: 600px 100%;
  animation: shimmer 1.5s infinite;
}

.real-skeleton__body {
  padding: 1.75rem;
}

.real-skeleton__line {
  height: 0.85rem;
  border-radius: 100px;
  margin-bottom: 0.65rem;
  background: linear-gradient(90deg, var(--bg-alt) 25%, #e4e4e4 50%, var(--bg-alt) 75%);
  background-size: 600px 100%;
  animation: shimmer 1.5s infinite;
}

.real-skeleton__line--tag   { width: 5rem;  height: 1.5rem; margin-bottom: 1rem; }
.real-skeleton__line--title { width: 80%;   height: 1.2rem; }
.real-skeleton__line--title2{ width: 55%;   height: 1.2rem; margin-bottom: 1rem; }
.real-skeleton__line--text  { width: 100%; }
.real-skeleton__line--text2 { width: 90%; }
.real-skeleton__line--text3 { width: 70%;   margin-bottom: 1.25rem; }
.real-skeleton__line--link  { width: 7rem;  height: 0.9rem; }

.realizacje-wip {
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
  padding: 6rem 2rem;
  color: var(--text-muted);
}

.realizacje-wip h2 {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1rem;
}

.realizacje-wip p {
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
}

.realizacje-wip__links a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

.realizacje-wip__links a:hover {
  text-decoration: underline;
}

.realizacje-empty {
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
  padding: 5rem 2rem;
  color: var(--text-muted);
}

.realizacje-empty h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text);
}

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

@media (max-width: 640px) {
  .realizacje-section {
    padding: 4rem 1.25rem 5rem;
  }
  .realizacje-grid {
    grid-template-columns: 1fr;
  }
  .realizacje-head {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* ============================================================
   ARTICLE — single realizacja page
============================================================ */

.article-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.article-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.article-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3,7,30,0.85) 0%, rgba(3,7,30,0.3) 60%, transparent 100%);
}

.article-hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  padding: 0 2rem 4rem;
}

.article-hero-inner .breadcrumb {
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.5rem;
}

.article-hero-inner .breadcrumb a {
  color: rgba(255,255,255,0.6);
}

.article-hero-inner .breadcrumb a:hover {
  color: rgba(255,255,255,1);
}

.article-hero-inner .breadcrumb span[aria-hidden] {
  opacity: 0.4;
}

.article-hero-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--accent-a), var(--accent-b));
  color: #fff;
  margin-bottom: 1.25rem;
}

.article-hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.1;
  color: #fff;
  max-width: 20ch;
  margin-bottom: 1.5rem;
}

.article-hero-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
}

.article-section {
  padding: 5rem 2rem 7rem;
}

.article-wrap {
  max-width: 820px;
  margin: 0 auto;
}

.article-lead {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

.article-body p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 1.75rem;
}

.article-body h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.2;
  margin-top: 3.5rem;
  margin-bottom: 1.25rem;
}

.article-body h3 {
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.article-figure {
  margin: 2.5rem 0;
}

.article-figure img {
  width: 100%;
  border-radius: var(--radius);
  display: block;
}

.article-figure figcaption {
  margin-top: 0.75rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
}

.article-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 2.5rem 0;
}

.article-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}

.article-info-box {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 2rem 2.25rem;
  margin: 3rem 0;
  border-left: 3px solid var(--accent-a);
}

.article-info-box h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-a);
  margin-bottom: 1.25rem;
}

.article-info-box ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem 2rem;
}

.article-info-box ul li {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.5;
}

.article-info-box ul li strong {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

@media (max-width: 768px) {
  .article-hero {
    min-height: 55vh;
  }
  .article-hero-inner {
    padding: 0 1.5rem 3rem;
  }
  .article-section {
    padding: 3.5rem 1.5rem 5rem;
  }
  .article-gallery {
    grid-template-columns: 1fr;
  }
  .article-info-box ul {
    grid-template-columns: 1fr;
  }
}


/* ============================================================
   BRELOKI TYPES SHOWCASE SECTION
============================================================ */

.breloki-types-section {
  padding: 7rem 0 0;
  background: var(--bg);
}

.breloki-types-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 3rem;
}


/* Split layout — text left, photos right */
.breloki-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  margin-bottom: 1.25rem;
}

.breloki-split-text h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin-bottom: 1rem;
  margin-top: 0.75rem;
}

.breloki-split-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 46ch;
  margin-bottom: 2.5rem;
}

.breloki-types-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--border);
}

.breloki-type-item {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--border);
}

.breloki-type-num {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  flex-shrink: 0;
  width: 18px;
  padding-top: 0.15rem;
}

.breloki-type-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.breloki-type-name {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--dark, #232323);
  font-style: normal;
  display: block;
}

.breloki-type-desc {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Two compact photos side by side */
.breloki-split-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  align-items: start;
}

.breloki-split-photo {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  border: 2px solid var(--border);
  overflow: hidden;
}

.breloki-split-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.6s var(--ease);
}

.breloki-split-photo:hover img {
  transform: scale(1.04);
}

/* Świecące w nocy — full-width dark feature strip */
.breloki-glow-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink-black, #03071e);
  border: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 0;
}

.breloki-glow-img {
  position: relative;
  overflow: hidden;
}

.breloki-glow-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 400px;
}

.breloki-glow-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 4.5rem;
  color: #fff;
}

.breloki-glow-content .section-label {
  color: var(--accent-a);
  margin-bottom: 1.25rem;
}

.breloki-glow-content h3 {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 1.1rem;
  color: #fff;
}

.breloki-glow-content p {
  font-size: 1rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.75;
  max-width: 46ch;
  margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 1100px) {
  .breloki-glow-strip {
    grid-template-columns: 1fr;
  }

  .breloki-glow-img img {
    min-height: 340px;
    max-height: 420px;
  }

  .breloki-glow-content {
    padding: 3rem 2.5rem;
  }
}

@media (max-width: 900px) {
  .breloki-split {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .breloki-split-photos {
    order: -1;
  }
}

@media (max-width: 640px) {
  .breloki-types-section {
    padding: 5rem 0 0;
  }

  .breloki-types-inner {
    padding: 0 1.25rem;
  }

  .breloki-split {
    gap: 2rem;
  }

  .breloki-glow-content {
    padding: 2rem 1.5rem 2.5rem;
  }
}

/* Statuetki glow section — identical visual baseline to .process-section */
.statuetki-glow-section {
  padding: 7rem 0;
  background: var(--bg);
}

.statuetki-glow-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 2rem;
}

/* Strip all card styling from the light variant */
.breloki-glow-strip--light {
  background: transparent;
  grid-template-columns: 1fr 1fr;
  border-radius: 0;
  overflow: visible;
  border: none;
  box-shadow: none;
  gap: 5rem;
  align-items: center;
}

.statuetki-glow-img--small {
  border-left: none;
  overflow: hidden;
  border-radius: var(--radius);
}

.statuetki-glow-img--small img {
  display: block;
  width: 100%;
  height: auto;
  min-height: unset;
  max-height: 400px;
  object-fit: contain;
  border-radius: var(--radius);
}

/* Text — match process section exactly */
.breloki-glow-content--light {
  padding: 0;
  color: var(--text);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.breloki-glow-content--light h3 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.breloki-glow-content--light p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
  max-width: 48ch;
}

.breloki-glow-content--light .btn {
  align-self: flex-start;
  margin-top: 0.5rem;
}

@media (max-width: 900px) {
  .breloki-glow-strip--light {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .statuetki-glow-img--small {
    order: -1;
  }
}

@media (max-width: 600px) {
  .statuetki-glow-section {
    padding: 5rem 0;
  }
}


/* ============================================================
   PUDEŁKA DREWNIANE PAGE
============================================================ */

/* Large square hero photo in the offer split */
.pudelka-hero-photo {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  border: 2px solid var(--border);
  overflow: hidden;
  background: var(--bg);
}

.pudelka-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.6s var(--ease);
}

.pudelka-hero-photo:hover img {
  transform: scale(1.04);
}

/* Product pairing — link cards */
.pudelka-uses-section {
  padding: 7rem 0 0;
  background: var(--bg);
}

.pudelka-uses-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 2rem;
}

.pudelka-uses-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.pudelka-use-card {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-alt);
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.pudelka-use-card:hover {
  box-shadow: 0 8px 28px rgba(35, 35, 35, 0.07);
  transform: translateY(-2px);
  border-color: rgba(232, 93, 4, 0.35);
}

.pudelka-use-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-a);
}

.pudelka-use-card strong {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--text);
}

.pudelka-use-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex-grow: 1;
}

.pudelka-use-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  transition: color var(--dur) var(--ease);
}

.pudelka-use-link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--dur) var(--ease);
}

.pudelka-use-card:hover .pudelka-use-link {
  color: var(--accent-a);
}

.pudelka-use-card:hover .pudelka-use-link svg {
  transform: translateX(4px);
}

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

@media (max-width: 600px) {
  .pudelka-uses-section {
    padding: 5rem 0 0;
  }

  .pudelka-uses-inner {
    padding: 0 1.25rem;
  }

  .pudelka-uses-grid {
    grid-template-columns: 1fr;
  }

  .pudelka-use-card {
    padding: 1.5rem;
  }
}


/* ============================================================
   BOX PROMO — wzmianka o pudełkach na stronach produktów
============================================================ */

.box-promo-section {
  padding: 7rem 0 0;
  background: var(--bg);
}

.box-promo-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 2rem;
}

.box-promo {
  display: grid;
  grid-template-columns: minmax(220px, 360px) 1fr;
  gap: 4rem;
  align-items: center;
  padding: 2.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-alt);
}

.box-promo-photo {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg);
}

.box-promo-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.6s var(--ease);
}

.box-promo:hover .box-promo-photo img {
  transform: scale(1.04);
}

.box-promo-content h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.box-promo-content p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 58ch;
  margin-bottom: 1.75rem;
}

.box-promo-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
}

@media (max-width: 900px) {
  .box-promo {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .box-promo-photo {
    max-width: 360px;
  }
}

@media (max-width: 600px) {
  .box-promo-section {
    padding: 5rem 0 0;
  }

  .box-promo-inner {
    padding: 0 1.25rem;
  }

  .box-promo {
    padding: 1.5rem;
  }
}


/* ============================================================
   GALLERY LIGHTBOX
   Photo preview overlay for .ms-gallery-inner items
============================================================ */

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(3, 7, 30, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.gallery-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.gallery-lightbox-img {
  max-width: min(92vw, 900px);
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 16px;
  display: block;
  transition: opacity 0.15s ease;
  user-select: none;
}

.gallery-lightbox-img--fade {
  opacity: 0;
}

.gallery-lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  z-index: 2;
}

.gallery-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.24);
}

.gallery-lightbox-close svg {
  width: 20px;
  height: 20px;
}

.gallery-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  z-index: 2;
}

.gallery-lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.24);
}

.gallery-lightbox-nav svg {
  width: 22px;
  height: 22px;
}

.gallery-lightbox-nav--prev { left: 1.25rem; }
.gallery-lightbox-nav--next { right: 1.25rem; }

.gallery-lightbox-trigger {
  cursor: pointer;
}

body.lightbox-active {
  overflow: hidden;
}

@media (max-width: 600px) {
  .gallery-lightbox-nav {
    display: none;
  }

  .gallery-lightbox-img {
    max-width: 96vw;
    max-height: 84vh;
    border-radius: 10px;
  }
}

/* ============================================================
   LEGAL PAGES — polityka-prywatnosci / regulamin
============================================================ */
.legal-hero {
  padding: 10rem 0 5rem;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}

.legal-hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 3rem;
}

.legal-hero-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-a);
  margin-bottom: 1rem;
}

.legal-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 1rem;
}

.legal-hero p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.75;
}

.legal-updated-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 1.5rem;
}

.legal-updated-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-a);
  flex-shrink: 0;
}

/* Layout */
.legal-body {
  padding: 5rem 0 7rem;
}

.legal-body-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 3rem;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 5rem;
  align-items: start;
}

/* Sidebar TOC */
.legal-toc {
  position: sticky;
  top: calc(6rem + var(--tb, 0px));
}

.legal-toc-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.legal-toc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.legal-toc-list a {
  display: block;
  padding: 6px 12px;
  font-size: 0.85rem;
  color: var(--text-muted);
  border-radius: 6px;
  border-left: 2px solid transparent;
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease), border-color var(--dur) var(--ease);
  text-decoration: none;
}

.legal-toc-list a:hover {
  color: var(--accent-a);
  background: rgba(232, 93, 4, 0.06);
  border-left-color: var(--accent-a);
}

/* Document */
.legal-doc {
  max-width: 760px;
}

.legal-doc-date {
  display: inline-block;
  font-size: 0.78rem;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px 12px;
  margin-bottom: 3.5rem;
}

.legal-block {
  margin-bottom: 3.5rem;
  scroll-margin-top: calc(7rem + var(--tb, 0px));
}

.legal-block-num {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-a);
  margin-bottom: 0.6rem;
}

.legal-block h2 {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.legal-block p {
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 0.9rem;
}

.legal-block p:last-child { margin-bottom: 0; }

.legal-block ul {
  list-style: none;
  margin: 0.75rem 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.legal-block ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.72;
}

.legal-block ul li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-a);
  flex-shrink: 0;
  margin-top: 8px;
  opacity: 0.7;
}

.legal-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 3.5rem;
}

.legal-contact-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 2.25rem;
  margin-top: 3rem;
}

.legal-contact-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.legal-contact-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.legal-contact-card a {
  color: var(--accent-a);
  text-decoration: none;
  transition: opacity var(--dur) var(--ease);
}

.legal-contact-card a:hover { opacity: 0.75; }

/* Responsive */
@media (max-width: 1024px) {
  .legal-body-inner {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .legal-toc { display: none; }
}

@media (max-width: 768px) {
  .legal-hero { padding: 8rem 0 3.5rem; }
  .legal-hero-inner,
  .legal-body-inner { padding: 0 1.5rem; }
  .legal-body { padding: 3rem 0 5rem; }
  .legal-contact-card { padding: 1.5rem; }
}

/* ============================================================
   404 – NOT FOUND PAGE
============================================================ */
.not-found-section {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 6rem;
}

.not-found-inner {
  max-width: 600px;
  width: 100%;
  text-align: center;
}

.not-found-code {
  font-size: clamp(5rem, 18vw, 10rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
}

.not-found-heading {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.not-found-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.not-found-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.not-found-links {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
}

.not-found-links .section-label {
  display: block;
  margin-bottom: 1.25rem;
}

.not-found-links ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: center;
}

.not-found-links ul a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--dur) var(--ease);
}

.not-found-links ul a:hover {
  color: var(--accent-a);
}

@media (max-width: 480px) {
  .not-found-section { padding: 7rem 1.5rem 5rem; }
  .not-found-actions { flex-direction: column; align-items: center; }
}

/* ============================================================
   MEDAL TYPES DETAIL SECTION
============================================================ */
.medal-types-section {
  padding: 6rem 2rem;
  background: var(--bg);
}

.medal-types-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.medal-types-heading {
  text-align: center;
  margin-bottom: 5rem;
}

.medal-types-heading h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0.75rem 0 1rem;
  color: var(--text);
}

.medal-types-heading p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.medal-type-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
  padding-bottom: 6rem;
  border-bottom: 1px solid var(--border);
}

.medal-type-block:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.medal-type-block--reverse {
  direction: rtl;
}

.medal-type-block--reverse > * {
  direction: ltr;
}

.medal-type-img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--bg-alt);
}

.medal-type-img a {
  display: block;
  width: 100%;
  height: 100%;
}

.medal-type-img picture {
  display: block;
  width: 100%;
  height: 100%;
}

.medal-type-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s var(--ease);
}

.medal-type-block:hover .medal-type-img img {
  transform: scale(1.03);
}

.medal-type-content h3 {
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.25;
}

.medal-type-content p {
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.medal-type-content p:last-of-type {
  margin-bottom: 1.5rem;
}

.medal-type-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.medal-type-list li {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.65;
  padding-left: 1rem;
  position: relative;
}

.medal-type-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent-a);
}

.medal-type-list li strong {
  color: var(--text);
  font-weight: 600;
}

.medal-type-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-a);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: gap var(--dur) var(--ease), color var(--dur) var(--ease);
}

.medal-type-link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--dur) var(--ease);
}

.medal-type-link:hover {
  color: var(--accent-b);
}

.medal-type-link:hover svg {
  transform: translateX(4px);
}

@media (max-width: 900px) {
  .medal-type-block {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
    padding-bottom: 4rem;
  }

  .medal-type-block--reverse {
    direction: ltr;
  }

  .medal-type-img {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 600px) {
  .medal-types-section {
    padding: 4rem 1.25rem;
  }

  .medal-types-heading {
    margin-bottom: 3rem;
  }

  .medal-type-block {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
  }
}


/* ============================================================
   COOKIE CONSENT (panel z tanzanew, kolory Spinfactory)
============================================================ */
.cc-overlay {
  position: fixed;
  inset: 0;
  z-index: 900;
  background: rgba(3, 7, 30, 0.32);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}

.cc-overlay.cc-visible {
  opacity: 1;
  pointer-events: auto;
}

.cc-panel {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 901;
  width: min(680px, calc(100% - 32px));
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  background: #ffffff;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 24px 64px rgba(3, 7, 30, 0.22);
  font-family: var(--font);
  transform: translate(-50%, 24px) scale(0.98);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.32s var(--ease), opacity 0.32s var(--ease);
}

.cc-panel.cc-visible {
  transform: translate(-50%, 0) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.cc-tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}

.cc-tab {
  flex: none;
  padding: 18px 4px;
  margin-right: 28px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.cc-tab:hover {
  color: var(--text);
}

.cc-tab.cc-active {
  color: var(--accent-a);
  border-bottom-color: var(--accent-a);
}

.cc-body {
  padding: 22px 24px 6px;
}

.cc-panel-view {
  display: none;
}

.cc-panel-view.cc-active {
  display: block;
}

.cc-title {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--text);
}

.cc-text {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
}

.cc-text--spaced {
  margin-top: 10px;
}

.cc-text a,
.cc-category-desc a {
  color: var(--accent-a);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cc-category {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 12px;
}

.cc-category-title {
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 6px;
}

.cc-category-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

.cc-switch {
  position: relative;
  flex-shrink: 0;
  width: 40px;
  height: 24px;
  margin-top: 2px;
}

.cc-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cc-switch-track {
  position: absolute;
  inset: 0;
  background: #d9d9d9;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s var(--ease);
}

.cc-switch-track::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ffffff;
  transition: transform 0.2s var(--ease);
}

.cc-switch input:checked + .cc-switch-track {
  background: var(--accent-a);
}

.cc-switch input:checked + .cc-switch-track::before {
  transform: translateX(16px);
}

.cc-switch input:focus-visible + .cc-switch-track {
  outline: 2px solid var(--accent-a);
  outline-offset: 2px;
}

.cc-switch input:disabled + .cc-switch-track {
  background: #d9d9d9;
  cursor: not-allowed;
}

.cc-switch input:disabled + .cc-switch-track::before {
  transform: translateX(16px);
  background: var(--bg-alt);
}

.cc-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 18px 24px 22px;
}

.cc-btn {
  flex: 1;
  min-width: 140px;
  padding: 13px 18px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s var(--ease), opacity 0.15s var(--ease), border-color var(--dur) var(--ease);
}

.cc-btn:hover {
  opacity: 0.88;
}

.cc-btn:focus-visible {
  outline: 2px solid var(--accent-a);
  outline-offset: 2px;
}

/* Przyciski drugorzędne: ta sama wielkość co główny, żeby odrzucenie zgody
   było równie łatwe jak jej udzielenie. Ramka odróżnia je od tła panelu. */
.cc-btn-ghost,
.cc-btn-outline {
  background: #ffffff;
  color: var(--text);
  border-color: rgba(35, 35, 35, 0.16);
}

.cc-btn-primary {
  background: var(--text);
  color: #ffffff;
}

.cc-settings-trigger {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 850;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #ffffff;
  color: var(--text);
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(3, 7, 30, 0.18);
  display: none;
  align-items: center;
  justify-content: center;
  transition: color var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.cc-settings-trigger:hover {
  color: var(--accent-a);
  transform: translateY(-2px);
}

.cc-settings-trigger.cc-visible {
  display: flex;
}

@media (max-width: 640px) {
  .cc-panel { bottom: 12px; }
  .cc-tabs { padding: 0 16px; overflow-x: auto; }
  .cc-tab { margin-right: 20px; }
  .cc-body { padding: 18px 16px 4px; }
  .cc-actions { padding: 14px 16px 18px; }
  .cc-btn { min-width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .cc-overlay,
  .cc-panel,
  .cc-btn,
  .cc-settings-trigger {
    transition: none;
  }
}

/* ============================================================
   TOP BAR (contact + language / domain selector)
============================================================ */
:root {
  --tb: 36px;
}

body {
  padding-top: var(--tb);
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 201;
  height: var(--tb);
  background: var(--dark);
  color: rgba(253, 253, 253, 0.82);
  font-size: 0.8125rem;
  letter-spacing: 0.01em;
}

.topbar-inner {
  max-width: var(--max);
  height: 100%;
  margin: 0 auto;
  padding: 0 3rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.75rem;
}

.topbar-contact {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  min-width: 0;
}

.topbar a {
  color: inherit;
  text-decoration: none;
  transition: color var(--dur) var(--ease), opacity var(--dur) var(--ease);
}

.topbar-contact a:hover {
  color: var(--accent-b);
}

.topbar-sep {
  opacity: 0.35;
}

.topbar-lang {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.topbar-lang a {
  display: flex;
  padding: 3px;
  border-radius: 3px;
  opacity: 0.5;
}

.topbar-lang a:hover,
.topbar-lang a.is-current {
  opacity: 1;
}

.topbar-lang a.is-current {
  box-shadow: inset 0 0 0 1px rgba(253, 253, 253, 0.35);
}

.topbar-lang img {
  display: block;
  width: 21px;
  height: 14px;
  object-fit: cover;
  border-radius: 2px;
}

.topbar a:focus-visible {
  outline: 2px solid var(--accent-b);
  outline-offset: 2px;
}

.site-header {
  top: var(--tb, 0px);
}

.mobile-nav {
  top: calc(76px + var(--tb, 0px));
}

@media (max-width: 1280px) {
  .topbar-inner { padding: 0 2rem; }
}

@media (max-width: 640px) {
  .topbar-inner {
    padding: 0 1.5rem;
    justify-content: space-between;
    gap: 1rem;
  }
  .topbar-sep,
  .topbar-mail { display: none; }
}
