/*
 * KiANIT main stylesheet - Phase 12 (Nav + Footer + Sticky + Hero + UTP + Banner).
 * Theme global styles
 * — future sections will append here
 * until the file warrants splitting per-section.
 *
 * Section order:
 *   1. tokens, 2. reset, 3. container + base buttons, 4. .app-main shell,
 *   5. Nav (+ lang-switcher stub for WPML), 6. Hero, 7. Footer,
 *   8. Sticky messengers, 9. UTP carousel, 10. Banner,
 *   11. Responsive bands (Nav 1101-1380 compression, 1100, 900, 860, 768)
 */

/* ─── Tokens ──────────────────────────────────────────────── */

:root {
  --white:       #FFFFFF;
  --cream:       #FAF8F5;
  --cream-2:     #F3EDE3;
  --charcoal:    #1E1E1E;
  --border:      #E8E0D5;
  --muted:       #8A8070;

  --gold:        #B08D57;
  --gold-dk:     #8A6D3F;
  --gold-lt:     #D4B896;
  --gold-pale:   #FAF1E0;
  --gold-soft:   #E8D4A8;
  --gold-bright: #E8C880;
  --gold-deep:   #6E5028;

  --tg:          #229ED9;
  --wa:          #25D366;
  --red:         #C0392B;

  --serif:       "Cormorant Garamond", Georgia, serif;
  --sans:        "Jost", system-ui, sans-serif;

  --max-w: 1280px;
  --nav-h: 76px;
}

/* ─── Reset ───────────────────────────────────────────────── */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  max-width: 100%;
}

html {
  scroll-behavior: smooth;
}

section[id],
article[id] {
  scroll-margin-top: calc(var(--nav-h) + 16px);
}

body {
  font-family: var(--sans);
  color: var(--charcoal);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--serif);
  font-weight: 500;
  margin: 0;
  line-height: 1.2;
  color: var(--charcoal);
}

p { margin: 0; }

a {
  color: inherit;
  text-decoration: none;
}

img,
picture,
video,
svg {
  display: block;
  max-width: 100%;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

/* ─── Container + base button ─────────────────────────────── */

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 80px;
}

.btn {
  display: inline-block;
  padding: 15px 32px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  line-height: 1;
  text-align: center;
  overflow-wrap: normal;
  word-break: normal;
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover { background: var(--gold-dk); }

.btn-ghost {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn-ghost:hover {
  background: var(--charcoal);
  color: var(--white);
}

/* ─── App shell (pushes first section below fixed Nav) ────── */

.app-main {
  padding-top: var(--nav-h);
  min-height: calc(100vh - var(--nav-h));
}

/* ─── Nav ─────────────────────────────────────────────────── */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  z-index: 200;
  display: flex;
  align-items: center;
  padding: 0 80px;
}

.nav-inner {
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  line-height: 0;
  flex-shrink: 0;
}

.nav-logo,
.nav-links a,
.nav-phone,
.nav-cta,
.lang-switcher {
  white-space: nowrap;
}

.nav-right { flex-shrink: 0; }

.nav-logo-img {
  display: block;
  height: 40px;
  width: auto;
  max-width: none;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--charcoal);
  font-weight: 400;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-phone {
  font-size: 13px;
  color: var(--charcoal);
  font-weight: 500;
  letter-spacing: 1px;
}
.nav-phone:hover { color: var(--gold); }

.nav-cta {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 600;
  padding: 11px 20px;
  background: var(--gold);
  color: var(--white);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--gold-dk); }

/* Burger button - shown only on ≤768px (see media query at the end of this block).
   Stays a normal flex item in .nav-right; covered by the overlay when open. */
.nav-burger {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-shrink: 0;
  position: relative;
}

.nav-burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--gold);
  border-radius: 999px;
  transform-origin: center;
  transition:
    transform 320ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 180ms ease;
}

.nav-burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0.35);
}

.nav-burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ─── Mobile burger overlay ───────────────────────────────── */

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  background: var(--cream);
  min-height: 100vh;
  min-height: 100dvh;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-top: max(0px, env(safe-area-inset-top));
  padding-bottom: max(24px, env(safe-area-inset-bottom));
  /* "Silk curtain" reveal - opacity fade + clip-path drop from the top edge.
     Base state = closed (display:flex from above but invisible). JS adds
     .is-open to play forward, removes it to play backward, then sets
     `hidden` after the transition finishes. */
  opacity: 0;
  clip-path: inset(0 0 100% 0);
  transition:
    opacity 320ms cubic-bezier(0.16, 1, 0.3, 1),
    clip-path 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu.is-open {
  opacity: 1;
  clip-path: inset(0 0 0 0);
}

.mobile-menu__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  padding: 0 20px;
  flex-shrink: 0;
}

.mobile-menu__logo {
  display: inline-flex;
  align-items: center;
}

.mobile-menu__logo img {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.mobile-menu__close {
  position: absolute;
  top: 14px;
  right: 20px;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
  z-index: 2;
}

.mobile-menu__close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 1.5px;
  background: var(--gold);
  border-radius: 999px;
  transition: background 200ms ease;
}

.mobile-menu__close span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-menu__close span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-menu__close:hover span,
.mobile-menu__close:focus-visible span {
  background: var(--gold-dk);
}

.mobile-menu__list {
  list-style: none;
  margin: 0;
  padding: 24px 32px 0;
  display: flex;
  flex-direction: column;
}

.mobile-menu__item {
  /* Base entrance state - items start hidden, animated in by .is-open. */
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 360ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu__link {
  display: block;
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 500;
  line-height: 56px;
  letter-spacing: 0.5px;
  color: var(--charcoal);
  text-decoration: none;
}

.mobile-menu__link:hover,
.mobile-menu__link:focus-visible {
  color: var(--gold);
}

/* Chained class for higher specificity than the generic .lang-switcher
   rule lower in this file, which would otherwise set display:inline-flex. */
.mobile-menu__lang.lang-switcher {
  display: flex;
  justify-content: flex-end;
  padding: 12px 32px 0;
  margin-top: 16px;
}

.mobile-menu__divider {
  width: 64px;
  height: 1px;
  margin: 32px 32px 32px;
  background: var(--gold);
  border: 0;
}

.mobile-menu__phone {
  font-family: var(--sans);
  font-size: 18px;
  color: var(--charcoal);
  text-decoration: none;
  padding: 0 32px;
  margin-bottom: 24px;
}

.mobile-menu__phone:hover,
.mobile-menu__phone:focus-visible {
  color: var(--gold);
}

.mobile-menu__cta {
  display: block;
  margin: 0 32px 32px;
  padding: 16px 24px;
  background: var(--gold);
  color: var(--white);
  border: 0;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  transition: background 200ms ease;
}

.mobile-menu__cta:hover,
.mobile-menu__cta:focus-visible {
  background: var(--gold-dk);
}

/* Open state - JS adds .is-open. Items start ~80ms after the curtain begins
   to drop, then stagger by 30ms each. Total entrance feels grouped, not
   "one-by-one". */
.mobile-menu.is-open .mobile-menu__item {
  opacity: 1;
  transform: translateY(0);
  transition-delay: calc(var(--i, 0) * 30ms + 80ms);
}

/* Closing - JS adds .is-closing for the duration of the close animation. */
.mobile-menu.is-closing .mobile-menu__item {
  opacity: 0;
  transform: translateY(0);
  transition-duration: 200ms;
  transition-delay: 0ms;
}

/* WP admin bar offset for logged-in front-end viewers. */
body.admin-bar .mobile-menu { top: 32px; }

@media (max-width: 782px) {
  body.admin-bar .mobile-menu { top: 46px; }
}

/* Hide the overlay markup entirely on desktop - it's only ever shown ≤768px. */
@media (min-width: 769px) {
  .mobile-menu { display: none !important; }
}

/* Reduced motion - kill durations AND delays. */
@media (prefers-reduced-motion: reduce) {
  .mobile-menu,
  .mobile-menu__item,
  .nav-burger span {
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }
}

/* ─── Lang switcher (DOM hook for Phase 15 WPML; unused in Phase 12) ─ */

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--muted);
}
.lang-switcher a {
  padding: 4px 6px;
  color: var(--muted);
  transition: color 0.2s;
}
.lang-switcher a:hover { color: var(--gold); }
.lang-switcher a.is-active {
  color: var(--charcoal);
  font-weight: 600;
}
.lang-sep {
  color: var(--border);
  user-select: none;
}

/* ─── Hero ────────────────────────────────────────────────── */

.hero {
  padding: 64px 0 96px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.hero-h1 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--charcoal);
  font-size: clamp(32px, 4.8vw, 60px);
  line-height: 1.1;
  letter-spacing: 0;
}
.hero-h1 .accent {
  color: var(--gold);
  font-style: italic;
  font-weight: 500;
}

.hero-h2 {
  font-family: var(--sans);
  font-size: clamp(13px, 1.25vw, 15px);
  letter-spacing: 0.5px;
  color: var(--charcoal);
  font-weight: 400;
  line-height: 1.6;
}
.hero-h2 .dot {
  color: var(--gold);
  margin: 0 8px;
}

.hero-h3 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 1.9vw, 24px);
  line-height: 1.4;
  color: var(--gold-deep);
}

.hero-cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 48px;
  border-top: 1px solid var(--border);
  padding-top: 28px;
  margin-top: 8px;
}

.hero-stat-num {
  font-family: var(--serif);
  font-size: 32px;
  color: var(--gold);
  line-height: 1;
  font-weight: 500;
}

.hero-stat-label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}

.hero-photo-frame {
  position: relative;
  border: 1px solid var(--border);
  background: var(--cream-2);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(110, 80, 40, 0.35);
}

.hero-photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(176, 141, 87, 0.12));
  pointer-events: none;
}

.hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-photo-tag {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: rgba(30, 30, 30, 0.7);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 14px;
  z-index: 1;
}

/* ─── Footer ──────────────────────────────────────────────── */

.footer {
  background-color: #0c1830;
  background-image:
    linear-gradient(rgba(8, 14, 28, 0.72), rgba(8, 14, 28, 0.72)),
    url('../images/footer-kyanite.webp'),
    url('data:image/webp;base64,UklGRrQAAABXRUJQVlA4IKgAAACQBQCdASogABIAPu1qqU8ppiOiMBgIATAdiWIAnTNYTZgE+/zpKlClYr4QcT7XZzkqYAwvgAD+nufNPWxIW/V8i5ol4prH3pZtAnObfzfF3NbNdW9esfXJUxilN84h4GePEd4DI336yuV9sSSj/b6cAOfxVo1y0O5uNge0gxWqnte82YJ0IipLAVRk+8Sw0Y1wOxq2bNPDHj4CAbHHuJ6uITwFp/ICAAA=');
  background-size: cover, cover, cover;
  background-position: center, center, center;
  background-repeat: no-repeat, no-repeat, no-repeat;
  border-top: 4px solid var(--gold);
  padding: 80px 80px 40px;
  color: rgba(255, 255, 255, 0.65);
}

.footer-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 220px repeat(4, 1fr);
  gap: 48px;
  margin-bottom: 56px;
}

.ft-logo {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--white);
  letter-spacing: 3px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ft-logo-img {
  height: 40px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.ft-addr {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
  margin-bottom: 14px;
  font-weight: 400;
}

.ft-phone {
  font-size: 14px;
  color: var(--gold);
  font-weight: 500;
}
.ft-phone:hover { color: var(--gold-lt); }

.ft-col-title {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 600;
  margin-bottom: 18px;
}

.ft-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.ft-links a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.68);
  transition: color 0.2s;
  font-weight: 400;
}
.ft-links a:hover { color: var(--gold-soft); }

.ft-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.ft-copy {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 400;
}

.ft-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.ft-legal a {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 400;
  transition: color 0.2s;
}
.ft-legal a:hover { color: var(--gold-soft); }

/* ─── Sticky messenger buttons ────────────────────────────── */

.sticky-stack {
  position: fixed;
  right: 24px;
  bottom: calc(24px + env(safe-area-inset-bottom, 0px));
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 150;
}
.sticky-stack-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sticky-stack.is-collapsible .sticky-stack-buttons {
  max-height: 500px;
  transition: max-height 0.45s ease, gap 0.35s ease;
}
.sticky-stack.is-collapsible.is-collapsed .sticky-stack-buttons,
.sticky-stack.is-collapsible.is-transitioning .sticky-stack-buttons {
  overflow: hidden;
}
.sticky-stack.is-collapsible.is-collapsed .sticky-stack-buttons {
  max-height: 0;
  gap: 0;
  pointer-events: none;
}
.sticky-stack.is-collapsible.is-transitioning .sticky-btn.is-tg::after,
.sticky-stack.is-collapsible.is-transitioning .sticky-btn.is-wa::after {
  animation: none;
  box-shadow: none;
  opacity: 0;
}
.sticky-stack.is-collapsible .sticky-btn {
  transition: transform 0.32s ease, box-shadow 0.2s, opacity 0.3s ease, filter 0.2s;
}
.sticky-stack.is-collapsible.is-collapsed .sticky-btn {
  opacity: 0;
  transform: scale(0.4) translateY(-18px);
}
.sticky-stack.is-collapsible.is-collapsed .sticky-btn:nth-child(1) { transition-delay: 0.16s; }
.sticky-stack.is-collapsible.is-collapsed .sticky-btn:nth-child(2) { transition-delay: 0.08s; }
.sticky-stack.is-collapsible.is-collapsed .sticky-btn:nth-child(3) { transition-delay: 0s; }
.sticky-stack.is-collapsible:not(.is-collapsed) .sticky-btn:nth-child(1) { transition-delay: 0s; }
.sticky-stack.is-collapsible:not(.is-collapsed) .sticky-btn:nth-child(2) { transition-delay: 0.08s; }
.sticky-stack.is-collapsible:not(.is-collapsed) .sticky-btn:nth-child(3) { transition-delay: 0.16s; }
.sticky-toggle {
  display: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold-lt, #d4b896);
  cursor: pointer;
  color: var(--gold-dk, #8a6d3f);
  background: var(--gold-pale, #faf1e0);
  box-shadow: 0 4px 10px rgba(138, 109, 63, 0.14);
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.sticky-stack.is-collapsible .sticky-toggle { display: flex; }
.sticky-toggle:hover {
  transform: translateY(-2px) scale(1.06);
  border-color: var(--gold, #b08d57);
  background: var(--gold-soft, #e8d4a8);
  box-shadow: 0 6px 14px rgba(138, 109, 63, 0.22);
}
.sticky-toggle-chev {
  width: 18px;
  height: 18px;
  transition: transform 0.25s ease;
}
.sticky-stack.is-collapsible.is-collapsed .sticky-toggle-chev {
  transform: rotate(180deg);
}
.sticky-stack.is-collapsible:not(.is-collapsed) .sticky-toggle-chev {
  transform: rotate(0deg);
}

.sticky-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  border: none;
  cursor: pointer;
  position: relative;
  isolation: isolate;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s, filter 0.2s;
}
.sticky-btn:hover {
  transform: translateY(-3px) scale(1.04);
  filter: brightness(1.08);
}
.sticky-btn[aria-disabled="true"],
.sticky-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  pointer-events: none;
}
.sticky-btn[aria-disabled="true"] svg,
.sticky-btn:disabled svg {
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.35));
}

.sticky-btn svg {
  width: 24px;
  height: 24px;
  position: relative;
  z-index: 2;
}

.sticky-btn.is-phone {
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.22), transparent 30%),
    linear-gradient(145deg, var(--gold-bright) 0%, var(--gold) 50%, var(--gold-dk) 100%);
  box-shadow:
    0 10px 22px rgba(176, 141, 87, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.sticky-btn.is-tg {
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.28), transparent 28%),
    linear-gradient(145deg, #2AABEE 0%, #1B98D5 48%, #0B7DB8 100%);
  box-shadow:
    0 10px 24px rgba(11, 125, 184, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.sticky-btn.is-wa {
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.24), transparent 28%),
    linear-gradient(145deg, #2FE878 0%, #20C25C 46%, #0FA855 100%);
  box-shadow:
    0 10px 24px rgba(15, 168, 85, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.sticky-btn.is-tg:not([aria-disabled="true"]):not(:disabled):hover {
  box-shadow:
    0 12px 30px rgba(11, 125, 184, 0.65),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}
.sticky-btn.is-wa:not([aria-disabled="true"]):not(:disabled):hover {
  box-shadow:
    0 12px 30px rgba(15, 168, 85, 0.65),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.sticky-btn.is-tg:not([aria-disabled="true"]):not(:disabled)::after,
.sticky-btn.is-wa:not([aria-disabled="true"]):not(:disabled)::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  animation: sticky-pulse 2.6s ease-out infinite;
}
.sticky-btn.is-tg:not([aria-disabled="true"]):not(:disabled)::after { --pulse-rgb: 34, 158, 217; }
.sticky-btn.is-wa:not([aria-disabled="true"]):not(:disabled)::after { --pulse-rgb: 37, 211, 102; }

@keyframes sticky-pulse {
  0%   { box-shadow: 0 0 0 0  rgba(var(--pulse-rgb), 0.42); opacity: 0.9; }
  72%  { box-shadow: 0 0 0 14px rgba(var(--pulse-rgb), 0);   opacity: 0; }
  100% { box-shadow: 0 0 0 0  rgba(var(--pulse-rgb), 0);     opacity: 0; }
}

/* ─── UTP carousel ────────────────────────────────────────── */

.utp {
  padding: 96px 0;
  background: var(--cream-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.utp-head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 48px;
}

.utp-eyebrow {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.utp-heading {
  font-family: var(--serif);
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.2;
}

.utp .faq-list {
  max-width: none;
}

/* ─── Banner ──────────────────────────────────────────────── */

.banner {
  position: relative;
  aspect-ratio: 1280 / 853;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--charcoal);
}

.banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 22%, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 0.6) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 45%);
  z-index: 1;
  pointer-events: none;
}

.banner-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-end;
  width: 100%;
}

.banner .btn {
  padding: 22px 56px;
  font-size: 13px;
  letter-spacing: 3.5px;
  box-shadow: 0 0 0 6px rgba(15, 18, 28, 0.55), 0 0 28px 14px rgba(0, 0, 0, 0.45);
}

.banner-heading {
  font-family: var(--serif);
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 500;
  color: var(--white);
  line-height: 1.2;
  max-width: 620px;
  font-style: italic;
}

/* ─── Catalog ─────────────────────────────────────────────── */

.catalog {
  padding: 96px 0;
}

.catalog-head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 48px;
}

.catalog-eyebrow {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.catalog-heading {
  font-family: var(--serif);
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.2;
}

.catalog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.cat-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  isolation: isolate;
  border: 1px solid var(--border);
  background: var(--cream-2);
  transition: transform 0.25s ease;
}
.cat-card:hover { transform: translateY(-2px); }

.cat-card--wide {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 7;
}

.cat-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: var(--white);
}

.cat-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.cat-img[data-placeholder="true"] {
  background:
    radial-gradient(60% 70% at 30% 35%, rgba(255, 255, 255, 0.22), transparent 70%),
    linear-gradient(135deg, var(--gold-soft) 0%, var(--gold-lt) 38%, var(--gold) 72%, var(--gold-dk) 100%);
}
.cat-img[data-placeholder="true"]::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.05) 0 2px, transparent 2px 9px);
  mix-blend-mode: overlay;
}

.cat-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.55) 100%);
  pointer-events: none;
}

.cat-link {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: block;
  text-indent: -9999px;
  overflow: hidden;
  cursor: pointer;
}

.cat-body {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 4;
  padding: 36px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}

.cat-body > * {
  pointer-events: auto;
}

.cat-title {
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 500;
  line-height: 1.2;
  color: var(--white);
}

.cat-desc {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 300;
  max-width: 560px;
}

.cat-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

/* ─── About ───────────────────────────────────────────────── */

.about {
  padding: 96px 0;
  background: var(--cream-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-heading {
  font-family: var(--serif);
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 500;
  margin-bottom: 56px;
  color: var(--charcoal);
}

.about-stack {
  display: flex;
  flex-direction: column;
  gap: 96px;
}

.about-block {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-block--reverse .about-photo { order: 2; }

.about-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--border);
  background: var(--cream);
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(110, 80, 40, 0.35);
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-eyebrow {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.about-title {
  font-family: var(--serif);
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 500;
  line-height: 1.25;
  color: var(--charcoal);
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--charcoal);
  font-weight: 300;
}

.about-text p.is-hidden { display: none; }

.about-quote {
  margin: 8px 0 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  line-height: 1.5;
  color: var(--gold-deep);
  border-left: 3px solid var(--gold);
  padding: 4px 0 4px 20px;
}

.about-cta-row {
  margin-top: 8px;
}

/* ─── Reviews carousel ────────────────────────────────────── */

.reviews {
  padding: 96px 0;
}

.reviews-head {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.reviews-head-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1 1 auto;
  min-width: 0;
}

.reviews-rating-badge {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid var(--border);
  background: var(--white);
  text-decoration: none;
  color: var(--charcoal);
  font-family: var(--serif);
  letter-spacing: 0.5px;
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.reviews-rating-badge:hover {
  border-color: var(--gold);
  transform: translateY(-1px);
}

.reviews-rating-star {
  color: var(--gold);
  font-size: 22px;
  line-height: 1;
}

.reviews-rating-value {
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
}

.reviews-rating-dot {
  color: var(--gold);
}

.reviews-rating-count {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.6px;
  color: var(--muted);
}

.reviews-eyebrow {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.reviews-heading {
  font-family: var(--serif);
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.2;
}

.reviews-swiper {
  position: relative;
  padding-bottom: 8px;
}

.swiper-slide.reviews-slide { height: auto; }
.swiper-slide.reviews-slide > * { height: 100%; }

.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 260px;
  transition: border-color 0.2s, transform 0.2s;
}
.review-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.review-stars {
  display: flex;
  gap: 2px;
  font-size: 18px;
  line-height: 1;
}
.review-stars .is-on  { color: var(--gold); }
.review-stars .is-off { color: var(--border); }

.review-body {
  font-size: 15px;
  line-height: 1.65;
  color: var(--charcoal);
  font-weight: 300;
  flex-grow: 1;
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--muted);
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.review-author {
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing: 0.5px;
  color: var(--charcoal);
  font-weight: 500;
}

.review-dot { color: var(--gold); }

.reviews-nav {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 28px;
}

.reviews-nav-btn {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.reviews-nav-btn:hover:not(:disabled):not(.is-disabled) {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--white);
}
.reviews-nav-btn:disabled,
.reviews-nav-btn.is-disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

.reviews-nav-btn svg { width: 16px; height: 16px; }

.reviews-cta-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.reviews-cta-row .btn {
  min-width: 220px;
  text-align: center;
}

/* ─── FAQ ─────────────────────────────────────────────────── */

.faq {
  padding: 96px 0;
  background: var(--cream-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.faq-heading {
  font-family: var(--serif);
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 500;
  margin-bottom: 48px;
  color: var(--charcoal);
}

.faq-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 880px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  background: transparent;
  transition: background 0.2s;
}
.faq-item.is-open {
  background: var(--white);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 4px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  color: var(--charcoal);
  transition: color 0.2s;
  font-family: var(--sans);
}
.faq-q:hover { color: var(--gold); }

.faq-q-text {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.35;
  font-weight: 500;
  flex-grow: 1;
}

.faq-q-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.faq-q-icon svg { width: 18px; height: 18px; }
.faq-item.is-open .faq-q-icon { transform: rotate(180deg); }

.faq-panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}

.faq-panel-inner {
  padding: 0 4px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-a {
  font-size: 15px;
  line-height: 1.7;
  color: var(--charcoal);
  font-weight: 300;
}

.faq-mini-cta {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  padding: 4px 0;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s;
  font-family: var(--sans);
  text-decoration: none;
}
.faq-mini-cta:hover { color: var(--gold-dk); }

.faq-mini-cta-arrow {
  transition: transform 0.2s;
}
.faq-mini-cta:hover .faq-mini-cta-arrow {
  transform: translateX(3px);
}

.faq-footer {
  margin-top: 40px;
  padding-top: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.faq-footer-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  color: var(--gold-deep);
  font-weight: 400;
}

/* ─── Modal (consultation) ────────────────────────────────── */

.modal-over {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: modal-fade 0.18s ease-out;
}

.modal-over[hidden] { display: none; }

@keyframes modal-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.modal-box {
  background: var(--white);
  padding: 52px 48px 40px;
  max-width: 440px;
  width: 100%;
  position: relative;
  border-top: 4px solid var(--gold);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 26px;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
  padding: 4px 8px;
}
.modal-close:hover { color: var(--charcoal); }

.modal-title {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 8px;
  color: var(--charcoal);
}

.modal-sub {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.6;
  font-weight: 300;
}

.m-input,
.m-select {
  width: 100%;
  border: 1px solid var(--border);
  padding: 14px 16px;
  font-size: 13px;
  font-family: var(--sans);
  margin-bottom: 10px;
  outline: none;
  background: var(--cream);
  transition: border-color 0.2s;
  color: var(--charcoal);
}
.m-input:focus,
.m-select:focus { border-color: var(--gold); }

.m-btn {
  width: 100%;
  background: var(--gold);
  color: var(--white);
  border: none;
  padding: 15px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--sans);
  font-weight: 600;
  margin-top: 6px;
  transition: background 0.2s;
}
.m-btn:hover { background: var(--gold-dk); }

.m-note {
  font-size: 10px;
  color: var(--muted);
  text-align: center;
  margin-top: 12px;
  line-height: 1.6;
}

.m-textarea {
  width: 100%;
  border: 1px solid var(--border);
  padding: 14px 16px;
  font-size: 13px;
  font-family: var(--sans);
  margin-bottom: 10px;
  outline: none;
  background: var(--cream);
  transition: border-color 0.2s;
  color: var(--charcoal);
  resize: vertical;
  min-height: 96px;
  line-height: 1.5;
}
.m-textarea:focus { border-color: var(--gold); }

.m-input--error,
.m-input--error:focus {
  border-color: #c0392b;
}

.m-err {
  font-size: 11px;
  color: #c0392b;
  margin: -4px 0 8px;
  letter-spacing: 0.4px;
}

.m-btn:disabled,
.m-btn[aria-disabled="true"] {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}

/* ─── Contact block (section 8) ──────────────────────────── */

.contact {
  padding: 96px 0 120px;
}

.contact-head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 48px;
}

.contact-eyebrow {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.contact-heading {
  font-family: var(--serif);
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.2;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 56px;
  align-items: stretch;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--gold);
  padding: 40px 36px 32px;
  display: flex;
  flex-direction: column;
}

.contact-field {
  display: flex;
  flex-direction: column;
}

.contact-success {
  font-size: 12px;
  color: var(--gold-deep);
  text-align: center;
  margin-top: 12px;
  line-height: 1.6;
}

.contact-thank {
  text-align: center;
  padding: 16px 0 8px;
}

.contact-thank-title {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  color: var(--charcoal);
  margin: 0 0 12px;
}

.contact-thank-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.contact-form.is-thanked > :not([data-contact-thank]) {
  display: none !important;
}

.contact-foot {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}

.contact-addr {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s;
}
.contact-addr:hover { opacity: 0.75; }

.contact-addr-title {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.contact-addr-lines {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--charcoal);
  font-weight: 400;
}

.contact-phone {
  font-size: 24px;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 1px;
  width: max-content;
  text-decoration: none;
  transition: color 0.2s;
}
.contact-phone:hover { color: var(--gold-lt); }

.contact-channels {
  display: grid;
  grid-template-columns: auto auto;
  column-gap: 14px;
  row-gap: 16px;
  margin-right: auto;
  justify-content: end;
  align-items: center;
}

.contact-action.is-tg    { grid-column: 1; grid-row: 1; justify-self: stretch; }
.contact-action.is-email { grid-column: 1; grid-row: 2; justify-self: stretch; }
.contact-action.is-wa    { grid-column: 2; grid-row: 1; justify-self: stretch; }
.contact-channels .contact-socials { grid-column: 2; grid-row: 2; justify-self: start; margin-left: 0; }

.contact-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  font-size: 12px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--white);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.25s ease, filter 0.2s;
  font-family: var(--sans);
  text-align: center;
}
.contact-action svg { width: 18px; height: 18px; display: block; }
.contact-action:hover { transform: translateY(-1px); }
.contact-action:disabled,
.contact-action[aria-disabled="true"] {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.contact-action.is-email {
  background: linear-gradient(120deg, var(--gold-lt) 0%, var(--gold) 55%, var(--gold-dk) 100%);
  box-shadow: 0 6px 18px rgba(176, 141, 87, 0.35);
}
.contact-action.is-tg {
  background: linear-gradient(120deg, #5fc8f0 0%, #229ED9 55%, #1473a8 100%);
  box-shadow: 0 6px 18px rgba(34, 158, 217, 0.35);
}
.contact-action.is-wa {
  background: linear-gradient(120deg, #5ce98d 0%, #25D366 55%, #128c4e 100%);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
}
.contact-action.is-email:not(:disabled):hover { box-shadow: 0 10px 22px rgba(176, 141, 87, 0.5); filter: brightness(1.05); }
.contact-action.is-tg:not(:disabled):hover { box-shadow: 0 10px 22px rgba(34, 158, 217, 0.5); filter: brightness(1.05); }
.contact-action.is-wa:not(:disabled):hover { box-shadow: 0 10px 22px rgba(37, 211, 102, 0.5); filter: brightness(1.05); }

.contact-socials {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style: none;
  justify-content: flex-end;
}

.contact-socials > li { list-style: none; }

.contact-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-social svg {
  width: 22px;
  height: 22px;
  display: block;
}

.contact-social:hover,
.contact-social:focus-visible {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(195, 159, 76, 0.35);
}

.contact-social:focus-visible {
  outline: 2px solid var(--gold-lt);
  outline-offset: 2px;
}

.contact-map {
  position: relative;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--cream-2);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.contact-map-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--white);
  background:
    radial-gradient(60% 70% at 30% 35%, rgba(255, 255, 255, 0.22), transparent 70%),
    linear-gradient(135deg, var(--gold-soft) 0%, var(--gold-lt) 38%, var(--gold) 72%, var(--gold-dk) 100%);
  font-weight: 500;
  text-transform: uppercase;
}

/* ─── Responsive ──────────────────────────────────────────── */

/* Nav compression band - keep full desktop nav on 13" laptops without text wrapping */
@media (min-width: 1101px) and (max-width: 1380px) {
  .nav { padding-inline: clamp(24px, 3vw, 56px); }
  .nav-inner { gap: clamp(14px, 1.8vw, 24px); grid-template-columns: auto minmax(0, 1fr) auto; }
  .nav-logo-img { height: 34px; }
  .nav-links { gap: clamp(12px, 1.5vw, 22px); min-width: 0; }
  .nav-links a { font-size: 11px; letter-spacing: 0.8px; }
  .nav-right { gap: clamp(10px, 1.3vw, 16px); }
  .nav-phone { font-size: 12px; letter-spacing: 0.4px; }
  .lang-switcher { gap: 4px; font-size: 10px; letter-spacing: 0.8px; }
  .lang-switcher a { padding-inline: 4px; }
  .nav-cta { padding: 10px 14px; font-size: 9.5px; letter-spacing: 1.4px; }
}

/* RU/UK have longer labels (ПОМОЛВОЧНЫЕ, ЗАПИСАТЬСЯ НА КОНСУЛЬТАЦИЮ etc.) —
   apply the compression band rules across all desktop widths, not just the
   13" band, to keep КОНТАКТ from running into the language switcher. */
@media (min-width: 1101px) {
  body.lang-ru .nav,
  body.lang-uk .nav { padding-inline: clamp(20px, 2.4vw, 48px); }
  body.lang-ru .nav-inner,
  body.lang-uk .nav-inner { gap: clamp(12px, 1.6vw, 22px); grid-template-columns: auto minmax(0, 1fr) auto; }
  body.lang-ru .nav-logo-img,
  body.lang-uk .nav-logo-img { height: 34px; }
  body.lang-ru .nav-links,
  body.lang-uk .nav-links { gap: clamp(10px, 1.3vw, 20px); min-width: 0; }
  body.lang-ru .nav-links a,
  body.lang-uk .nav-links a { font-size: 10.5px; letter-spacing: 0.6px; }
  body.lang-ru .nav-right,
  body.lang-uk .nav-right { gap: clamp(8px, 1.1vw, 14px); }
  body.lang-ru .nav-phone,
  body.lang-uk .nav-phone { font-size: 11.5px; letter-spacing: 0.3px; }
  body.lang-ru .lang-switcher,
  body.lang-uk .lang-switcher { gap: 3px; font-size: 9.5px; letter-spacing: 0.6px; }
  body.lang-ru .lang-switcher a,
  body.lang-uk .lang-switcher a { padding-inline: 3px; }
  body.lang-ru .nav-cta,
  body.lang-uk .nav-cta { padding: 9px 13px; font-size: 9px; letter-spacing: 1.2px; }
}

@media (max-width: 1100px) {
  .nav { padding: 0 32px; }
  .nav-links { display: none; }
  /* nav-links is removed from grid flow; pin nav-right to the rightmost column
     so the lang-switcher sits at the right edge of nav-inner instead of
     auto-placing into the empty 1fr middle cell. */
  .nav-right { grid-column: 3; }
  .footer { padding: 64px 40px 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .container { padding: 0 32px; }
  .banner-content { padding: 64px 32px; }
}

/* Intermediate stage so the header breathes earlier than the full mobile breakpoint */
@media (max-width: 860px) {
  .nav-phone { display: none; }
  .hero-cta-row .btn { letter-spacing: 2px; padding-inline: 24px; }
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-photo-frame {
    aspect-ratio: 16 / 11;
    order: -1;
  }
  .hero { padding: 40px 0 64px; }

  .about-block,
  .about-block--reverse {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .about-block--reverse .about-photo { order: 0; }
  .about-photo { aspect-ratio: 16 / 11; }
}

@media (max-width: 768px) {
  .nav-phone { display: none; }
  .nav-cta { display: none; }
  /* Burger sits in-flow as the last item of .nav-right, right after the
     lang-switcher. When the overlay opens it gets covered by the cream sheet
     (z-index 1000); close happens via .mobile-menu__close inside the dialog. */
  .nav-burger {
    display: flex;
  }
  .nav { padding: 0 20px; }
  .nav-inner { gap: 16px; }
  .nav-right { gap: 12px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .ft-bottom { flex-direction: column; align-items: flex-start; }

  /* Raise above iOS Safari bottom toolbar (~50-90px) so WA stays visible.
     env(safe-area-inset-bottom) covers iPhone home-indicator on top of that. */
  .sticky-stack {
    right: 14px;
    bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  }
  .sticky-btn { width: 52px; height: 52px; }
  .sticky-btn svg { width: 22px; height: 22px; }

  /* correction #3: hero copy compresses to 3-4 lines on mobile */
  .hero-h1 { font-size: clamp(28px, 8vw, 36px); }
  .hero-h2 { font-size: 13px; }
  .hero-h3 { font-size: 18px; }
  .hero-stats { gap: 24px; padding-top: 22px; }
  .hero-stat-num { font-size: 26px; }
  .hero-cta-row { flex-direction: column; align-items: stretch; }
  .hero-cta-row .btn { width: 100%; padding: 15px 18px; font-size: 11px; letter-spacing: 1.6px; }

  .utp { padding: 64px 0; }
  .utp-head { margin-bottom: 32px; }

  .banner { min-height: 0; aspect-ratio: 3 / 2; }
  .banner-content { padding: 24px 18px; gap: 18px; }
  .banner .btn {
    padding: 13px 28px;
    font-size: 11px;
    letter-spacing: 2.4px;
    box-shadow: 0 0 0 5px rgba(15, 18, 28, 0.55), 0 0 22px 10px rgba(0, 0, 0, 0.45);
  }

  .catalog { padding: 64px 0; }
  .catalog-head { margin-bottom: 32px; }
  .catalog-grid { grid-template-columns: 1fr; gap: 16px; }

  /* Mobile catalog: stack image on top, content below so long titles never clip. */
  .cat-card,
  .cat-card--wide {
    grid-column: auto;
    aspect-ratio: auto;
    display: flex;
    flex-direction: column;
    background: var(--charcoal);
  }
  .cat-img {
    position: relative;
    inset: auto;
    aspect-ratio: 1 / 1;
    height: auto;
    flex-shrink: 0;
    background: #fff;
  }
  .cat-img img { object-fit: contain; }
  .cat-overlay { display: none; }
  .cat-body {
    position: relative;
    inset: auto;
    padding: 22px 22px 24px;
    flex-grow: 1;
  }
  .cat-cta-row { flex-direction: column; align-items: stretch; }
  .cat-cta-row .btn { width: 100%; }

  .about { padding: 64px 0; }
  .about-heading { margin-bottom: 32px; }
  .about-stack { gap: 64px; }
  .about-text { font-size: 16px; line-height: 1.65; }
  .about-quote { font-size: 17px; }

  .reviews { padding: 64px 0; }
  .reviews-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 32px;
  }
  .reviews-rating-badge { padding: 10px 14px; gap: 8px; }
  .reviews-rating-star { font-size: 18px; }
  .reviews-rating-value { font-size: 18px; }
  .reviews-rating-count { font-size: 12px; letter-spacing: 0.6px; }
  .review-card { padding: 26px 22px; min-height: 220px; }
  .reviews-nav { display: none; }
  .reviews-cta-row { gap: 12px; margin-top: 32px; }
  .reviews-cta-row .btn { width: 100%; min-width: 0; }

  .faq { padding: 64px 0; }
  .faq-heading { margin-bottom: 32px; }
  .faq-q-text { font-size: 17px; }
  .faq-a { font-size: 14px; }
  .faq-footer { flex-direction: column; align-items: flex-start; gap: 16px; }
  .faq-footer-text { font-size: 17px; }

  /* contact bottom padding kept tight (120) so the dark footer arrives soon
     after the social icons - previous calc(180+72+32)=284 left a dead band
     between socials and footer. Sticky-stack still floats over the footer
     edge; submit button stays well above the stack because contact-foot
     pushes it up the column. */
  .contact { padding: 64px 0 120px; }
  .contact-head { margin-bottom: 32px; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  /* On mobile: drop horizontal padding + side borders so inputs span the same width as the map iframe below; keep gold top accent + bottom border for card identity. */
  .contact-form { padding: 24px 0 0; border-left: 0; border-right: 0; border-bottom: 0; background: transparent; }
  .contact-foot { flex-direction: column; align-items: flex-start; gap: 32px; padding-top: 24px; }
  .contact-channels { width: 100%; margin-right: 0; grid-template-columns: 1fr; row-gap: 18px; justify-content: stretch; }
  .contact-action.is-tg,
  .contact-action.is-email,
  .contact-action.is-wa { grid-column: auto; grid-row: auto; justify-self: stretch; }
  .contact-channels .contact-socials { grid-column: auto; grid-row: auto; justify-self: start; width: 100%; justify-content: flex-start; gap: 18px; margin-top: 28px; }
  .contact-action { width: 100%; }
  .contact-phone { font-size: 22px; }

  .modal-box { padding: 44px 28px 32px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .sticky-btn::after { animation: none; }
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* ──────────────────────────────────────────────────────────────
 * WooCommerce — Phase 15 catalog (archive + single product)
 * Layout matches RAG "Modern Edge 6 мм" reference card on single,
 * 4-col gold grid on archive. KiANIT is consultation-driven so no
 * "Add to cart" — every CTA either opens single product or modal.
 * ───────────────────────────────────────────────────────────── */

/* — Archive page — */

.catalog-archive {
  padding: 56px 0 120px;
  background: var(--cream);
}
.catalog-archive-inner {
  /* uses .container max-w + side paddings, mobile adjustments via @media */
}

.archive-crumbs {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}
.archive-crumbs a {
  color: var(--gold-dk);
}
.archive-crumbs a:hover { color: var(--gold); }

.archive-head {
  margin-bottom: 40px;
  text-align: center;
}
.archive-title {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--charcoal);
}
.archive-title::after {
  content: "";
  display: block;
  width: 64px;
  height: 1px;
  background: var(--gold);
  margin: 16px auto 0;
}
.archive-desc {
  max-width: 640px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

/* Hide default WC results count + ordering UI for KiANIT review window */
.woocommerce-result-count,
.woocommerce-ordering,
.woocommerce-notices-wrapper {
  display: none !important;
}

/* — Custom sort filter (price asc/desc) — */
.archive-sort {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin: 0 0 28px;
  flex-wrap: wrap;
}
.archive-sort-label {
  font-size: 14px;
  color: var(--muted);
  letter-spacing: 0.3px;
}
.archive-sort-select {
  appearance: none;
  -webkit-appearance: none;
  background: #fff;
  border: 1px solid var(--gold);
  border-radius: 2px;
  padding: 8px 36px 8px 14px;
  font-size: 14px;
  color: var(--charcoal);
  font-family: inherit;
  letter-spacing: 0.3px;
  cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path fill='none' stroke='%23B08D57' stroke-width='1.5' d='M1 1l4 4 4-4'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
}
.archive-sort-select:focus {
  outline: none;
  border-color: var(--charcoal);
}
.archive-sort-submit {
  background: var(--gold);
  color: #fff;
  border: 0;
  padding: 8px 14px;
  font-size: 14px;
  cursor: pointer;
}

/* — Product grid + card — */

.catalog-archive ul.products,
.catalog-archive .products {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid !important; /* zl/css/style.min.css forces .products{display:block!important} */
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.catalog-archive .products > .product,
.catalog-archive .products > .product-card {
  width: auto !important; /* zl woocommerce.min.css forces .products.columns-4>.product{width:25%} + padding */
  float: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.product-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px -22px rgba(110, 80, 40, 0.32);
  border-color: var(--gold-soft);
}

.product-card .pc-img-wrap {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--cream-2);
}
.product-card .pc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .pc-img-wrap img {
  transform: scale(1.06);
}

.product-card .pc-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: var(--red);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 6px 10px;
  border-radius: 2px;
  line-height: 1;
}

.product-card .pc-body {
  padding: 20px 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.product-card .pc-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  margin: 0;
  letter-spacing: 0.3px;
  color: var(--charcoal);
}
.product-card .pc-title a { color: inherit; }
.product-card .pc-title a:hover { color: var(--gold-dk); }

.product-card .pc-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--sans);
}
.product-card .pc-old {
  color: var(--muted);
  text-decoration: line-through;
  font-size: 13px;
}
.product-card .pc-new {
  color: var(--charcoal);
  font-size: 17px;
  font-weight: 600;
}
.product-card .pc-cta {
  margin-top: auto;
  align-self: stretch;
  text-align: center;
  padding: 12px 20px;
}

/* WC pagination — gold pill */
.woocommerce-pagination {
  margin: 56px 0 0;
  text-align: center;
}
.woocommerce-pagination ul.page-numbers {
  display: inline-flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 6px;
}
.woocommerce-pagination ul.page-numbers li { margin: 0; }
.woocommerce-pagination li .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  border: 1px solid var(--border);
  font-family: var(--sans);
  font-size: 14px;
  color: var(--charcoal);
  background: var(--white);
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.woocommerce-pagination li .page-numbers:hover,
.woocommerce-pagination li .page-numbers.current {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

/* — Single product (Modern Edge layout) — */

.product-sect {
  padding: 56px 0 120px;
  background: var(--cream);
}
.product-sect .product-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 80px;
}

.product-sect .p-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 24px;
  padding: 8px 16px;
  font-size: 13px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold-dk);
  background: transparent;
  border: 1px solid rgba(176, 141, 87, 0.35);
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.product-sect .p-back:hover,
.product-sect .p-back:focus-visible {
  background: var(--gold-dk);
  color: #fff;
  border-color: var(--gold-dk);
}

.product-sect .product-head {
  text-align: center;
  margin-bottom: 48px;
}
.product-sect .eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-dk);
  margin-bottom: 12px;
}
.product-sect .p-title {
  font-size: clamp(34px, 4.4vw, 60px);
  font-weight: 500;
  letter-spacing: 0.5px;
}
.product-sect .product-head .p-sub {
  margin-top: 16px;
  margin-bottom: 0;
}

.product-sect .product-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* Gallery */
.product-sect .p-gallery {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}
.product-sect .p-main {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 16px;
}
.product-sect .p-main .p-main-img,
.product-sect .p-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-sect .p-badge--promo {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 2px;
}

.product-sect .p-thumbs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-bottom: 24px;
}
.product-sect .p-thumb {
  aspect-ratio: 1 / 1;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  padding: 0;
  cursor: pointer;
  transition: border-color 0.2s;
}
.product-sect .p-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-sect .p-thumb:hover {
  border-color: var(--gold-lt);
}
.product-sect .p-thumb.act {
  border-color: var(--gold);
}

.product-sect .color-lbl {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.product-sect .swatches {
  display: flex;
  gap: 14px;
}
.product-sect .swatch {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.product-sect .swatch .sw-c {
  display: block;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: border-color 0.2s;
}
.product-sect .swatch.act .sw-c { border-color: var(--charcoal); }
.product-sect .swatch:hover .sw-c { border-color: var(--gold); }
.product-sect .swatch .sw-n {
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--muted);
}

/* Info column */
.product-sect .p-cat {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-dk);
  margin-bottom: 12px;
}
.product-sect .p-name {
  font-family: var(--serif);
  font-size: clamp(32px, 3.4vw, 44px);
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  color: var(--charcoal);
}
.product-sect .p-sub {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 28px;
}

.product-sect .p-specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px 24px;
  margin-bottom: 28px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.product-sect .p-spec {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.product-sect .p-spec-k {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.product-sect .p-spec-v {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--charcoal);
}

.product-sect .price-lbl {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.product-sect .price-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
}
.product-sect .p-old {
  font-family: var(--sans);
  font-size: 20px;
  color: var(--muted);
  text-decoration: line-through;
  text-decoration-color: var(--muted);
}
.product-sect .p-new {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1;
}
.product-sect .p-save {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 6px 10px;
  border-radius: 2px;
  line-height: 1;
}

/* Strip WC default price markup styles (.amount/.woocommerce-Price-amount) */
.product-sect .price-row .woocommerce-Price-amount {
  font-family: inherit;
  color: inherit;
}
.product-card .pc-price .woocommerce-Price-amount {
  font-family: inherit;
  color: inherit;
}
.pc-old .woocommerce-Price-amount { color: var(--muted); }
.pc-new .woocommerce-Price-amount { color: inherit; }

.product-sect .p-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 14px;
}
.product-sect .btn-dark,
.product-sect .btn-gold {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  padding: 17px 24px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  line-height: 1;
  text-align: center;
  border-radius: 2px;
}
.product-sect .btn-dark {
  background: var(--charcoal);
  color: var(--white);
}
.product-sect .btn-dark:hover { background: #000; }
.product-sect .btn-gold {
  background: var(--gold);
  color: var(--white);
}
.product-sect .btn-gold:hover { background: var(--gold-dk); }
.product-sect .btn-full { width: 100%; }

.product-sect .msg-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}
.product-sect .btn-tg,
.product-sect .btn-wa {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 1.5px;
  font-weight: 600;
  padding: 14px 18px;
  border: none;
  cursor: pointer;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 2px;
  transition: filter 0.2s;
}
.product-sect .btn-tg { background: var(--tg); }
.product-sect .btn-wa { background: var(--wa); }
.product-sect .btn-tg:hover,
.product-sect .btn-wa:hover { filter: brightness(0.92); }
.product-sect .msg-ic { flex-shrink: 0; }

.product-sect .trust-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, auto);
  grid-auto-flow: column;
  gap: 12px 24px;
  padding: 18px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 36px;
}
.product-sect .trust-it {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}
.product-sect .trust-ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

.product-sect .faq-h {
  font-family: var(--serif);
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--charcoal);
}
.product-sect .p-faq .faq-item {
  border-bottom: 1px solid var(--border);
}
.product-sect .p-faq .faq-item:first-child {
  border-top: 1px solid var(--border);
}
.product-sect .p-faq .faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.2px;
}
.product-sect .p-faq .faq-q:hover { color: var(--gold-dk); }
.product-sect .p-faq .faq-icon {
  font-size: 22px;
  font-weight: 300;
  color: var(--gold);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.product-sect .p-faq .faq-q.open .faq-icon { transform: rotate(45deg); }
.product-sect .p-faq .faq-ans {
  display: none;
  padding: 0 0 20px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}
.product-sect .p-faq .faq-q.open + .faq-ans { display: block; }
.product-sect .p-faq .faq-ans p { margin: 0 0 14px; }
.product-sect .mini-btn {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold-dk);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  padding: 10px 16px;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}
.product-sect .mini-btn:hover {
  background: var(--gold);
  color: var(--white);
}

.product-sect .p-faq-footer {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.product-sect .p-faq-footer-text {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--gold-deep);
}

.product-sect .p-longdesc {
  margin-top: 80px;
  padding-top: 56px;
  border-top: 1px solid var(--border);
}
.product-sect .p-longdesc-h {
  font-size: clamp(28px, 3vw, 36px);
  text-align: center;
  margin-bottom: 24px;
}
.product-sect .p-longdesc-h::after {
  content: "";
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 12px auto 0;
}
.product-sect .p-longdesc-body {
  max-width: 760px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.7;
  color: var(--charcoal);
}
.product-sect .p-longdesc-body p {
  margin: 0 0 16px;
}

/* — Responsive — */

@media (max-width: 1100px) {
  .catalog-archive ul.products,
  .catalog-archive .products {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .product-sect .product-inner { padding: 0 32px; }
  .product-sect .product-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .product-sect .p-gallery {
    position: static;
  }
}

@media (max-width: 768px) {
  .catalog-archive {
    padding: 32px 0 100px;
  }
  .catalog-archive ul.products,
  .catalog-archive .products {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .product-card .pc-body {
    padding: 14px 14px 16px;
    gap: 8px;
  }
  .product-card .pc-title { font-size: 18px; }
  .product-card .pc-price {
    flex-wrap: wrap;
    gap: 2px 8px;
  }
  .product-card .pc-old { font-size: 12px; }
  .product-card .pc-new { font-size: 15px; }
  .product-card .pc-cta {
    padding: 10px 14px;
    font-size: 10px;
    letter-spacing: 2px;
  }
  .archive-title { font-size: 32px; }

  .product-sect {
    padding: 16px 0 120px;
  }
  .product-sect .product-inner { padding: 0 20px; }
  .product-sect .product-head { margin-bottom: 16px; }
  .product-sect .product-wrap { gap: 20px; }
  .product-sect .p-info .p-cat,
  .product-sect .p-info .p-name { display: none; }
  .product-sect .p-name { font-size: 30px; }
  .product-sect .p-specs {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .product-sect .p-btns,
  .product-sect .msg-row {
    grid-template-columns: 1fr;
  }
  .product-sect .trust-row {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    grid-auto-flow: column;
    gap: 10px 16px;
  }
  .product-sect .p-new { font-size: 30px; }
  .product-sect .p-gallery {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
  }
  .product-sect .p-main {
    flex: 1 1 auto;
    min-width: 0;
    margin-bottom: 0;
  }
  .product-sect .p-thumbs {
    display: flex;
    flex-direction: column;
    flex: 0 0 60px;
    width: 60px;
    gap: 8px;
    margin-bottom: 0;
    grid-template-columns: none;
  }
  .product-sect .p-thumb {
    width: 60px;
  }
}

/* --- 7 kroków page (page-7-krokow.php) ------------------------ */

.seven-steps {
  padding: 120px 0 96px;
}

.seven-steps-head {
  max-width: 820px;
  margin: 0 auto 80px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.seven-steps-heading {
  font-family: var(--sans);
  font-size: clamp(30px, 3.8vw, 46px);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--charcoal);
}

.seven-steps-sub {
  font-family: var(--sans);
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink-soft, #4a4a4a);
}

.seven-steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 88px;
}

.seven-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.seven-step:nth-child(even) .seven-step-media {
  order: 2;
}

.seven-step-media {
  margin: 0;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  aspect-ratio: 16 / 9;
  background: #f5f3ef;
}

.seven-step-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.seven-step-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.seven-step-num {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.seven-step-num-lbl {
  margin-right: 4px;
}

.seven-step-title {
  font-family: var(--sans);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.005em;
  color: var(--charcoal);
}

.seven-step-text {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--ink-soft, #3a3a3a);
}

.seven-steps-cta {
  margin: 96px auto 0;
  text-align: center;
}

.seven-steps-cta .btn {
  min-width: 280px;
}

@media (max-width: 900px) {
  .seven-step {
    gap: 40px;
  }
}

@media (max-width: 760px) {
  .seven-steps {
    padding: 72px 0 64px;
  }
  .seven-steps-head {
    margin-bottom: 48px;
  }
  .seven-steps-list {
    gap: 56px;
  }
  .seven-step {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .seven-step:nth-child(even) .seven-step-media {
    order: 0;
  }
  .seven-steps-cta {
    margin-top: 56px;
  }
  .seven-steps-cta .btn {
    min-width: 0;
    width: 100%;
  }
}

/* ============================================================
   Phase 19: metal-based pricing UI
   ============================================================ */

.p-proba {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin: 16px 0 8px;
}
.p-proba-pills {
	display: flex;
	gap: 6px;
	flex-wrap: wrap;
}
.p-proba-pill {
	min-width: 56px;
	padding: 8px 14px;
	border: 1px solid #cdb98a;
	background: #fff;
	color: #4a3d22;
	font-family: var(--font-jost, 'Jost', sans-serif);
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	border-radius: 999px;
	transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.p-proba-pill:hover {
	border-color: #b08d57;
}
.p-proba-pill.is-active {
	background: linear-gradient(135deg, #d4af6a, #b08d57);
	border-color: #b08d57;
	color: #fff;
}
.p-proba-groups {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 6px;
	align-items: flex-start;
}
.p-proba-group {
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.p-proba-sublbl {
	font-family: var(--font-jost, 'Jost', sans-serif);
	font-size: 12px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--text-muted, #6b6b6b);
	opacity: 0.9;
}

.p-kolor {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin: 12px 0 16px;
}
.p-kolor-lbl {
	font-family: var(--font-jost, 'Jost', sans-serif);
	font-size: 12px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--text-muted, #6b6b6b);
}
.p-kolor-row {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}
.p-kolor[hidden] {
	display: none !important;
}
.p-kolor.is-platinum .swatch:not([data-p-color="biale"]) {
	display: none;
}

/* Phase 21 - Jakość kamienia (Engagement Rings only) */
.p-stones {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin: 0 0 16px;
	padding-top: 20px;
	border-top: 1px solid var(--border);
}
.p-stones-lbl {
	font-family: var(--font-jost, 'Jost', sans-serif);
	font-size: 12px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--text-muted, #6b6b6b);
}
.p-stones-sub {
	margin-top: -4px;
	font-family: var(--font-jost, 'Jost', sans-serif);
	font-size: 12px;
	color: var(--text-muted, #6b6b6b);
	letter-spacing: 0.02em;
}
.stones-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 8px;
}
.p-stone-pill {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 2px;
	padding: 10px 12px;
	border: 1px solid #cdb98a;
	background: #fff;
	color: #4a3d22;
	font-family: var(--font-jost, 'Jost', sans-serif);
	cursor: pointer;
	border-radius: 18px;
	transition: background 0.15s, color 0.15s, border-color 0.15s;
	text-align: center;
}
.p-stone-pill:hover {
	border-color: #b08d57;
}
.p-stone-pill .stone-name {
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.02em;
	line-height: 1.1;
}
.p-stone-pill .stone-spec {
	font-size: 10px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--text-muted, #6b6b6b);
	opacity: 0.85;
	line-height: 1.1;
}
.p-stone-pill.is-active {
	background: linear-gradient(135deg, #d4af6a, #b08d57);
	border-color: #b08d57;
	color: #fff;
}
.p-stone-pill.is-active .stone-spec {
	color: #fff;
	opacity: 0.85;
}
@media (max-width: 640px) {
	.stones-grid {
		grid-template-columns: repeat(3, 1fr);
	}
	.p-stone-pill .stone-name {
		font-size: 12px;
	}
	.p-stone-pill .stone-spec {
		font-size: 9px;
	}
}

.product-sect .p-specs--grid-4 {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 4px 24px;
	justify-items: stretch;
}
.product-sect .p-specs--grid-4 .p-spec:nth-child(2) { justify-self: center; text-align: center; }
.product-sect .p-specs--grid-4 .p-spec:nth-child(3) { justify-self: end;    text-align: right; }
@media (max-width: 480px) {
	.product-sect .p-specs--grid-4 { gap: 8px 12px; }
	.product-sect .p-specs--grid-4 .p-spec-k {
		white-space: normal;
		font-size: 10px;
		letter-spacing: 1px;
		line-height: 1.25;
		min-height: 2.5em;
	}
	.product-sect .p-specs--grid-4 .p-spec-v { font-size: 16px; }
}

.p-badge--placeholder {
	display: inline-flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 2px;
	position: absolute;
	top: 12px;
	right: 12px;
	padding: 8px 12px;
	background: linear-gradient(135deg, #e8c880, #b08d57);
	color: #2d2418;
	font-family: var(--font-jost, 'Jost', sans-serif);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.04em;
	border-radius: 4px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.p-badge--placeholder .sw-dot {
	display: inline-block;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	border: 1px solid rgba(0, 0, 0, 0.15);
	vertical-align: middle;
	margin-right: 4px;
}
.p-badge--placeholder .placeholder-meta {
	font-weight: 700;
	letter-spacing: 0.12em;
	font-size: 11px;
}
.p-badge--placeholder[hidden] {
	display: none;
}

[data-p-mass] {
	font-variant-numeric: tabular-nums;
}
[data-p-price] {
	font-variant-numeric: tabular-nums;
}

/* ─── Content page (footer-linked text pages) ────────────── */

.content-page {
	padding: calc(var(--nav-h) + 72px) 0 96px;
	background: var(--cream);
}

.content-page-inner {
	max-width: 760px;
	margin: 0 auto;
	padding: 0 24px;
}

.content-page-head {
	margin-bottom: 56px;
	text-align: center;
}

.content-page-head::after {
	content: '';
	display: block;
	width: 80px;
	height: 1px;
	background: var(--gold);
	margin: 28px auto 0;
}

.content-page-title {
	font-family: var(--serif);
	font-size: clamp(34px, 4.6vw, 56px);
	font-weight: 500;
	line-height: 1.15;
	color: var(--charcoal);
	margin: 0;
}

.content-page-body {
	font-family: var(--sans);
	font-size: 17px;
	line-height: 1.75;
	color: var(--charcoal);
}

.content-page-body > :first-child {
	margin-top: 0;
}

.content-page-body > :last-child {
	margin-bottom: 0;
}

.content-page-body h2,
.content-page-body h3,
.content-page-body h4,
.content-page-body h5,
.content-page-body h6 {
	font-family: var(--serif);
	font-weight: 600;
	color: var(--charcoal);
	line-height: 1.25;
	margin: 48px 0 18px;
}

.content-page-body h2 { font-size: clamp(26px, 2.6vw, 32px); }
.content-page-body h3 { font-size: clamp(22px, 2.1vw, 26px); }
.content-page-body h4 { font-size: clamp(19px, 1.8vw, 22px); }
.content-page-body h5 { font-size: clamp(18px, 1.6vw, 20px); font-weight: 600; }
.content-page-body h6 { font-size: 17px; font-weight: 600; }

.content-page-body p {
	margin: 0 0 18px;
}

.content-page-body a {
	color: var(--gold-dk);
	text-decoration: underline;
	text-underline-offset: 3px;
	text-decoration-thickness: 1px;
	transition: color 0.2s;
}

.content-page-body a:hover {
	color: var(--gold);
}

.content-page-body strong,
.content-page-body b {
	font-weight: 600;
	color: var(--charcoal);
}

.content-page-body ul,
.content-page-body ol {
	margin: 0 0 22px;
	padding-left: 28px;
}

.content-page-body li {
	margin-bottom: 8px;
}

.content-page-body ul li::marker {
	color: var(--gold);
}

.content-page-body blockquote {
	margin: 28px 0;
	padding: 4px 0 4px 24px;
	border-left: 2px solid var(--gold);
	font-style: italic;
	color: #4a4a4a;
}

.content-page-body img {
	max-width: 100%;
	height: auto;
	display: block;
	margin: 28px auto;
	border-radius: 4px;
}

.content-page-body hr {
	border: 0;
	height: 1px;
	background: var(--border);
	margin: 40px 0;
}

.content-page-body table {
	width: 100%;
	border-collapse: collapse;
	margin: 24px 0;
	font-size: 15px;
}

.content-page-body th,
.content-page-body td {
	padding: 12px 14px;
	border: 1px solid var(--border);
	text-align: left;
	vertical-align: top;
}

.content-page-body th {
	background: var(--cream-2);
	font-weight: 600;
}

/* The old prod uses a long-dash "⸻" between sections inside <p>.
 * Center them and style as a soft divider. */
.content-page-body p:where(:has(:only-child)) {
	/* leave default — selector kept conservative */
}

@media (max-width: 768px) {
	.content-page {
		padding: calc(var(--nav-h) + 40px) 0 64px;
	}

	.content-page-head {
		margin-bottom: 36px;
	}

	.content-page-inner {
		padding: 0 20px;
	}

	.content-page-body {
		font-size: 16px;
		line-height: 1.7;
	}

	.content-page-body h2,
	.content-page-body h3,
	.content-page-body h4,
	.content-page-body h5,
	.content-page-body h6 {
		margin: 36px 0 14px;
	}
}

/* ─── Blog ─────────────────────────────────────────────────
 * Archive: 2-col grid of cards (1-col mobile).
 * Single: hero image + content column + lang switcher.
 * Date format DD.MM.YYYY (locale-free).
 */

.blog-archive {
	padding: calc(var(--nav-h) + 32px) 0 96px;
	background: var(--cream);
}

.blog-archive__head {
	max-width: 760px;
	margin: 0 auto 48px;
	text-align: center;
}

.blog-archive__heading {
	font-family: var(--serif);
	font-size: clamp(34px, 4.6vw, 56px);
	font-weight: 500;
	line-height: 1.15;
	color: var(--charcoal);
	margin: 0;
}

.blog-archive__head::after {
	content: '';
	display: block;
	width: 80px;
	height: 1px;
	background: var(--gold);
	margin: 28px auto 0;
}

.blog-archive__sub {
	font-family: var(--sans);
	font-size: 17px;
	color: var(--muted);
	margin: 18px 0 0;
}

.blog-archive__empty {
	font-family: var(--sans);
	font-size: 17px;
	color: var(--muted);
	text-align: center;
	padding: 48px 0;
}

.blog-grid {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px 32px;
}

.blog-card {
	background: transparent;
	border: 0;
	transition: transform 0.25s ease;
}

.blog-card:hover {
	transform: translateY(-3px);
}

.blog-card__link {
	display: block;
	color: inherit;
	text-decoration: none;
}

.blog-card__media {
	width: 100%;
	max-width: 280px;
	aspect-ratio: 1 / 1;
	margin: 0 auto;
	border-radius: 50%;
	overflow: hidden;
	background: var(--cream-2);
}

.blog-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}

.blog-card:hover .blog-card__img {
	transform: scale(1.04);
}

.blog-card__body {
	padding: 22px 8px 0;
	text-align: center;
}

.blog-card__date {
	font-family: var(--sans);
	font-size: 13px;
	color: var(--muted);
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.blog-card__title {
	font-family: var(--serif);
	font-size: clamp(20px, 1.9vw, 24px);
	font-weight: 600;
	line-height: 1.3;
	color: var(--charcoal);
	margin: 10px 0 12px;
}

.blog-card__excerpt {
	font-family: var(--sans);
	font-size: 15px;
	line-height: 1.6;
	color: var(--muted);
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.blog-single {
	padding-top: var(--nav-h);
	background: var(--cream);
	padding-bottom: 96px;
}

.blog-single__hero {
	width: 100%;
	max-height: 480px;
	overflow: hidden;
	background: var(--cream-2);
}

.blog-single__hero-img {
	width: 100%;
	height: 100%;
	max-height: 480px;
	object-fit: cover;
	display: block;
}

.blog-single__inner {
	max-width: 760px;
	margin: 0 auto;
	padding: 56px 24px 0;
}

.blog-single__back-top,
.blog-single__back-bottom {
	display: inline-block;
	font-family: var(--sans);
	font-size: 14px;
	color: var(--gold-dk);
	text-decoration: none;
	letter-spacing: 0.02em;
	transition: color 0.2s;
}

.blog-single__back-top { margin-bottom: 32px; }
.blog-single__back-bottom { margin-top: 48px; }

.blog-single__back-top:hover,
.blog-single__back-bottom:hover {
	color: var(--gold-deep);
}

.blog-single__title {
	font-family: var(--serif);
	font-size: clamp(30px, 4vw, 48px);
	font-weight: 500;
	line-height: 1.2;
	color: var(--charcoal);
	margin: 0 0 16px;
}

.blog-single__date {
	display: block;
	font-family: var(--sans);
	font-size: 14px;
	color: var(--muted);
	letter-spacing: 0.04em;
	text-transform: uppercase;
	margin: 0 0 28px;
}

.blog-single__langs {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	padding: 16px 0 28px;
	margin: 0 0 36px;
	border-bottom: 1px solid var(--border);
}

.blog-single__langs-label {
	font-family: var(--sans);
	font-size: 13px;
	color: var(--muted);
	margin-right: 6px;
}

.blog-single__lang-chip {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	padding: 6px 12px;
	font-family: var(--sans);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.06em;
	color: var(--gold-dk);
	background: var(--white);
	border: 1px solid var(--gold-soft);
	border-radius: 999px;
	text-decoration: none;
	transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.blog-single__lang-chip:hover {
	background: var(--gold-pale);
	border-color: var(--gold);
}

.blog-single__lang-chip.is-active {
	background: var(--gold);
	color: var(--white);
	border-color: var(--gold);
}

.blog-single__lang-chip.is-disabled {
	color: var(--border);
	background: transparent;
	border-color: var(--border);
	pointer-events: none;
}

.blog-single__content {
	font-family: var(--sans);
	font-size: 17px;
	line-height: 1.75;
	color: var(--charcoal);
}

.blog-single__content > :first-child { margin-top: 0; }
.blog-single__content > :last-child { margin-bottom: 0; }

.blog-single__content h2,
.blog-single__content h3,
.blog-single__content h4 {
	font-family: var(--serif);
	font-weight: 600;
	color: var(--charcoal);
	line-height: 1.25;
	margin: 44px 0 16px;
}

.blog-single__content h2 { font-size: clamp(24px, 2.4vw, 30px); }
.blog-single__content h3 { font-size: clamp(21px, 2vw, 25px); }
.blog-single__content h4 { font-size: clamp(18px, 1.7vw, 21px); }

.blog-single__content p {
	margin: 0 0 18px;
}

.blog-single__content a {
	color: var(--gold-dk);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.blog-single__content a:hover {
	color: var(--gold-deep);
}

.blog-single__content img {
	max-width: 100%;
	height: auto;
	display: block;
	margin: 28px auto;
	border-radius: 8px;
}

.blog-single__content ul,
.blog-single__content ol {
	margin: 0 0 20px;
	padding-left: 26px;
}

.blog-single__content li {
	margin-bottom: 6px;
}

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

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

	.blog-archive {
		padding: calc(var(--nav-h) + 20px) 0 64px;
	}

	.blog-archive__head {
		margin-bottom: 28px;
	}

	.blog-single__inner {
		padding: 40px 20px 0;
	}

	.blog-single__content {
		font-size: 16px;
		line-height: 1.7;
	}

	.blog-single__hero {
		max-height: 300px;
	}

	.blog-single__hero-img {
		max-height: 300px;
	}
}

/* ===== Page: Zamów zestaw mierników ===== */
.mierniki-lead {
  font-size: clamp(17px, 1.6vw, 19px);
}
.mierniki-sep {
  border: 0;
  border-top: 1px solid rgba(186, 158, 116, 0.25);
  margin: 2.5rem 0;
}
.mierniki-set .content-page-h2,
.mierniki-important .content-page-h2 {
  font-family: var(--font-serif, "Cormorant Garamond", serif);
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 500;
  margin: 0 0 1rem;
  letter-spacing: 0.01em;
}
.mierniki-set .mierniki-h3 {
  font-size: clamp(18px, 1.6vw, 20px);
  font-weight: 600;
  margin: 1.5rem 0 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.mierniki-price {
  margin: 0.5rem 0 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(16px, 1.5vw, 18px);
}
.mierniki-price-value {
  font-weight: 700;
  color: var(--color-gold, #ba9e74);
}
.mierniki-list,
.mierniki-order {
  padding-left: 1.4rem;
  margin: 0.5rem 0 1rem;
}
.mierniki-list li,
.mierniki-order li {
  margin: 0.4rem 0;
  line-height: 1.55;
}
.mierniki-important p {
  margin: 0.6rem 0;
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}
.mierniki-pin,
.mierniki-h3-emoji,
.mierniki-important-emoji,
.mierniki-price-emoji {
  flex: 0 0 auto;
  line-height: 1.5;
}
.mierniki-closer {
  margin-top: 1.25rem;
  font-size: clamp(16px, 1.5vw, 18px);
}
.mierniki-cta {
  margin-top: 2.5rem;
  text-align: center;
}
