/* ==========================================================================
   MORE LIFE TATTOO & PIERCING — style.css
   Mobile-first. Paleta: czerń + krwista czerwień.
   Fonty: "Rye" (display, klimat tattoo-flash/wanted poster) + "Archivo" (body).
   ========================================================================== */

:root{
  /* Kolory — OKLCH, tint w stronę czerwieni dla spójności */
  --color-bg:        oklch(13% 0.02 30);
  --color-bg-alt:    oklch(17% 0.025 30);
  --color-surface:   oklch(20% 0.03 30);
  --color-surface-2: oklch(23% 0.03 30);
  --color-text:      oklch(93% 0.015 60);
  --color-text-muted:oklch(68% 0.025 45);
  --color-red:       oklch(42% 0.19 25);
  --color-red-bright:oklch(54% 0.22 25);
  --color-red-dark:  oklch(24% 0.13 25);
  --color-border:    oklch(32% 0.035 30);
  --color-ink:       oklch(8% 0.01 30);

  /* Typografia */
  --font-display: "Anton", sans-serif;
  --font-body: "Archivo", sans-serif;

  /* Skala odstępów 4pt */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 12px;
  --space-lg: 16px;
  --space-xl: 24px;
  --space-2xl: 32px;
  --space-3xl: 48px;
  --space-4xl: 64px;
  --space-5xl: 96px;

  --radius-sm: 2px;
  --radius-md: 4px;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);

  --max-content: 1180px;
}

/* ---------- Reset ---------- */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{ margin:0; }
img,svg,video{ display:block; max-width:100%; }
a{ color: inherit; text-decoration: none; }
button{ font: inherit; color: inherit; background:none; border:none; cursor:pointer; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4,p{ margin:0; }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior:auto !important; }
}

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

.container{
  width: 100%;
  max-width: var(--max-content);
  margin-inline: auto;
  padding-inline: var(--space-lg);
}
@media (min-width: 640px){ .container{ padding-inline: var(--space-2xl); } }

h1, h2, h3, .display{
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.08;
  color: var(--color-text);
}
h1{ font-size: clamp(2.4rem, 8vw + 0.5rem, 5.6rem); }
h2{ font-size: clamp(1.9rem, 5vw + 0.4rem, 3.4rem); }
h3{ font-size: clamp(1.3rem, 2.6vw + 0.4rem, 1.9rem); }

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap: var(--space-sm);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-red-bright);
}
.eyebrow::before{
  content:"";
  width: 24px; height: 2px;
  background: var(--color-red-bright);
}

.lede{
  color: var(--color-text-muted);
  font-size: clamp(1rem, 1.6vw + 0.5rem, 1.2rem);
  max-width: 62ch;
  line-height: 1.7;
}

.visually-hidden{
  position:absolute; width:1px; height:1px; overflow:hidden;
  clip:rect(0 0 0 0); white-space:nowrap;
}

.skip-link{
  position:absolute; left:-999px; top:0; z-index:200;
  background:var(--color-red); color:#fff; padding:12px 20px;
}
.skip-link:focus{ left: var(--space-lg); top: var(--space-lg); }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  gap: var(--space-sm);
  padding: 14px 28px;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: transform .35s var(--ease-out-quint), background-color .3s ease, box-shadow .3s ease;
  white-space: nowrap;
}
.btn-primary{
  background: var(--color-red);
  color: oklch(97% 0.01 60);
  box-shadow: 0 0 0 1px oklch(42% 0.19 25 / .4);
}
.btn-primary:hover{ background: var(--color-red-bright); transform: translateY(-2px); }
.btn-ghost{
  border: 1px solid var(--color-border);
  color: var(--color-text);
}
.btn-ghost:hover{ border-color: var(--color-red-bright); color: var(--color-red-bright); }
.btn .material-symbols-outlined{ font-size: 1.15em; }

/* ---------- Header ---------- */
.site-header{
  position: fixed;
  top:0; left:0; right:0;
  z-index: 100;
  background: color-mix(in oklch, var(--color-bg) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid color-mix(in oklch, var(--color-border) 60%, transparent);
}
.site-header .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height: 72px;
}
.logo{
  font-family: var(--font-display);
  font-size: 1.5rem;
  display:flex;
  align-items:baseline;
  gap: 8px;
}
.logo span{ color: var(--color-red-bright); }

.nav-toggle{
  display:flex;
  flex-direction:column;
  gap:5px;
  padding: 10px;
  z-index: 110;
}
.nav-toggle .bar{
  width: 24px; height: 2px; background: var(--color-text);
  transition: transform .35s var(--ease-out-quint), opacity .25s ease;
}
.nav-toggle[aria-expanded="true"] .bar:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bar:nth-child(2){ opacity:0; }
.nav-toggle[aria-expanded="true"] .bar:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

.main-nav{
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background: var(--color-bg);
  display: none;
  flex-direction:column;
  padding: var(--space-2xl) var(--space-lg);
  overflow-y:auto;
  z-index: 200;
}
.main-nav.is-open{ display:flex; }
.nav-close{
  align-self: flex-end;
  padding: 10px;
  margin-bottom: var(--space-lg);
}
.nav-close .material-symbols-outlined{ font-size: 2rem; color: var(--color-text); }
.main-nav ul{ display:flex; flex-direction:column; gap: var(--space-xs); }
.main-nav a{
  display:block;
  font-family: var(--font-display);
  font-size: 2rem;
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
}
.main-nav a.is-active{ color: var(--color-red-bright); }
.main-nav .nav-cta{ margin-top: var(--space-2xl); }
.main-nav .nav-social{ display:flex; gap: var(--space-lg); margin-top: var(--space-2xl); }
.main-nav .nav-social a{ border:none; padding:0; display:flex; align-items:center; gap:6px; font-family: var(--font-body); font-size:.95rem; }

@media (min-width: 900px){
  .nav-toggle{ display:none; }
  .main-nav{
    display: flex;
    position: static;
    width:auto;
    height:auto;
    flex-direction: row;
    align-items:center;
    padding:0;
    background: transparent;
    overflow: visible;
  }
  .nav-close{ display:none; }
  .main-nav ul{ flex-direction:row; gap: var(--space-xl); }
  .main-nav a{ font-family: var(--font-body); font-size: .92rem; font-weight:600; text-transform:uppercase; letter-spacing:.04em; border:none; padding: var(--space-sm) 0; position:relative; }
  .main-nav a::after{
    content:""; position:absolute; left:0; bottom:0; width:0; height:2px; background: var(--color-red-bright);
    transition: width .3s var(--ease-out-quint);
  }
  .main-nav a:hover::after, .main-nav a.is-active::after{ width:100%; }
  .main-nav .nav-cta{ margin:0 0 0 var(--space-lg); }
  .main-nav .nav-social{ display:none; }
}

/* ---------- Hero / Parallax ---------- */
.hero{
  position:relative;
  min-height: 100svh;
  display:flex;
  align-items:flex-end;
  overflow:hidden;
  background: var(--color-ink);
  padding-top: 72px;
}
.hero-layer{
  position:absolute; top:0; right:0; bottom:0; left:0;
  will-change: transform;
}
.hero-bg{
  background:
    radial-gradient(120% 90% at 50% 0%, oklch(20% 0.03 30) 0%, var(--color-ink) 60%),
    repeating-linear-gradient(115deg, transparent 0 40px, oklch(100% 0 0 / .02) 40px 41px);
}
.hero-ink-splatter{
  position:absolute; top:0; right:0; bottom:0; left:0;
  opacity:.5;
  mix-blend-mode: screen;
}
.hero-content{
  position:relative;
  z-index:2;
  padding: var(--space-4xl) 0 var(--space-4xl);
  width:100%;
}
.hero-cta{ display:flex; flex-wrap:wrap; gap: var(--space-md); margin-top: var(--space-xl); }
.hero-meta{
  display:flex; flex-wrap:wrap; gap: var(--space-xl);
  margin-top: var(--space-3xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--color-border);
}
.hero-meta div{ font-size: .85rem; color: var(--color-text-muted); }
.hero-meta strong{ display:block; font-family: var(--font-display); font-size: 1.8rem; color: var(--color-text); }

/* ---------- Scroll reveal ---------- */
.reveal{ opacity:0; transform: translateY(36px); transition: opacity .8s var(--ease-out-quint), transform .8s var(--ease-out-quint); }
.reveal.is-visible{ opacity:1; transform:none; }
.reveal-stagger > *{ opacity:0; transform: translateY(28px); transition: opacity .7s var(--ease-out-quint), transform .7s var(--ease-out-quint); }
.reveal-stagger.is-visible > *{ opacity:1; transform:none; }
.reveal-stagger.is-visible > *:nth-child(1){ transition-delay: .05s; }
.reveal-stagger.is-visible > *:nth-child(2){ transition-delay: .15s; }
.reveal-stagger.is-visible > *:nth-child(3){ transition-delay: .25s; }
.reveal-stagger.is-visible > *:nth-child(4){ transition-delay: .35s; }
.reveal-stagger.is-visible > *:nth-child(5){ transition-delay: .45s; }

/* ---------- Sections ---------- */
section{ padding: var(--space-4xl) 0; position:relative; }
.section-head{ margin-bottom: var(--space-3xl); max-width: 70ch; }
.section-head.split{ display:flex; flex-wrap:wrap; justify-content:space-between; align-items:flex-end; gap: var(--space-lg); }

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

.divider-ink{
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, transparent, var(--color-red) 20%, var(--color-red) 80%, transparent);
  opacity:.6;
}

/* ---------- USP grid ---------- */
.usp-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}
@media (min-width: 640px){ .usp-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px){ .usp-grid{ grid-template-columns: repeat(4, 1fr); } }

.usp-item{
  padding: var(--space-xl);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  transition: transform .4s var(--ease-out-quint), border-color .3s ease;
}
.usp-item:hover{ transform: translateY(-6px); border-color: var(--color-red); }
.usp-item .material-symbols-outlined{ font-size: 2rem; color: var(--color-red-bright); margin-bottom: var(--space-md); }
.usp-item h3{ font-size: 1.15rem; margin-bottom: var(--space-sm); }
.usp-item p{ color: var(--color-text-muted); font-size: .95rem; }

/* ---------- Services ---------- */
.services-list{ display:flex; flex-direction:column; }
.service-row{
  display:grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  padding: var(--space-2xl) 0;
  border-bottom: 1px solid var(--color-border);
  align-items:center;
}
@media (min-width: 760px){
  .service-row{ grid-template-columns: 90px 1fr; }
}
.service-row:first-child{ border-top: 1px solid var(--color-border); }
.service-num{ font-family: var(--font-display); font-size: 2.2rem; color: var(--color-red-dark); }
.service-body h3{ margin-bottom: var(--space-sm); }
.service-body p{ color: var(--color-text-muted); }
.service-tags{ display:flex; flex-wrap:wrap; gap: var(--space-sm); margin-top: var(--space-md); }
.service-tags span{
  font-size: .75rem; text-transform:uppercase; letter-spacing:.06em;
  padding: 4px 10px; border: 1px solid var(--color-border); color: var(--color-text-muted);
}
.service-price{ text-align: left; }
@media (min-width: 760px){ .service-price{ text-align:right; } }
.service-price .from{ font-size:.8rem; color: var(--color-text-muted); text-transform:uppercase; letter-spacing:.06em; }
.service-price .amount{ font-family: var(--font-display); font-size: 1.7rem; color: var(--color-text); }

/* ---------- Cards / Gallery ---------- */
.card-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-lg);
}

.gallery-filters{
  display:flex; flex-wrap:wrap; gap: var(--space-sm);
  margin-bottom: var(--space-2xl);
}
.filter-btn{
  padding: 10px 18px;
  border: 1px solid var(--color-border);
  font-size: .82rem; text-transform:uppercase; letter-spacing:.05em; font-weight:600;
  transition: background-color .3s ease, border-color .3s ease, color .3s ease;
}
.filter-btn.is-active, .filter-btn:hover{ background: var(--color-red); border-color: var(--color-red); color:#fff; }

.gallery-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
}
@media (min-width: 640px){ .gallery-grid{ grid-template-columns: repeat(3, 1fr); gap: var(--space-md); } }
@media (min-width: 980px){ .gallery-grid{ grid-template-columns: repeat(4, 1fr); } }

.gallery-item{
  position:relative;
  aspect-ratio: 3/4;
  overflow:hidden;
  background: var(--color-surface);
  transition: opacity .4s ease, transform .4s ease;
}
.gallery-item.is-hidden{ display:none; }
.gallery-item.ph-slot{
  display:flex; align-items:center; justify-content:center;
  color: var(--color-border);
  font-size: 2.2rem;
}
.gallery-item img{
  width:100%; height:100%; object-fit:cover;
  transition: transform .6s var(--ease-out-quint), filter .6s ease;
  filter: saturate(.85) contrast(1.05);
}
.gallery-item:hover img{ transform: scale(1.07); filter: saturate(1) contrast(1.1); }
.gallery-item video{
  width:100%; height:100%; object-fit:cover;
  display:block; background:var(--color-ink);
}
.gallery-item .video-badge{
  position:absolute; top:8px; right:8px; z-index:2;
  display:flex; align-items:center; justify-content:center;
  width:28px; height:28px;
  background: color-mix(in oklch, var(--color-ink) 70%, transparent);
  color:#fff; font-size:16px; pointer-events:none;
}
.gallery-item .tag{
  position:absolute; left:8px; bottom:8px;
  font-size:.68rem; text-transform:uppercase; letter-spacing:.06em;
  background: color-mix(in oklch, var(--color-ink) 75%, transparent);
  padding: 4px 8px; color: var(--color-text);
}

/* ---------- Testimonials ---------- */
.testimonial-track{
  display:flex;
  gap: var(--space-lg);
  overflow-x:auto;
  scroll-snap-type: x mandatory;
  padding-bottom: var(--space-lg);
  -webkit-overflow-scrolling: touch;
}
.testimonial-track::-webkit-scrollbar{ height:4px; }
.testimonial-track::-webkit-scrollbar-thumb{ background: var(--color-border); }
.testimonial-card{
  scroll-snap-align:start;
  flex: 0 0 min(340px, 84vw);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: var(--space-xl);
}
.stars{ color: var(--color-red-bright); font-size:1rem; letter-spacing:2px; margin-bottom: var(--space-md); }
.testimonial-card p{ color: var(--color-text-muted); margin-bottom: var(--space-lg); }
.testimonial-author{ display:flex; align-items:center; gap: var(--space-md); font-weight:700; font-size:.9rem; }
.avatar-ph{
  width:40px; height:40px; border-radius:50%;
  background: var(--color-red-dark);
  display:flex; align-items:center; justify-content:center;
  font-family: var(--font-display); color: var(--color-text);
}

.rating-badge{
  display:inline-flex; align-items:center; gap: var(--space-md);
  padding: var(--space-lg) var(--space-xl);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
}
.rating-badge strong{ font-family: var(--font-display); font-size: 2.4rem; }

/* ---------- Artists ---------- */
.artist-card{
  background: var(--color-surface);
  border: 1px solid var(--color-border);
}
.artist-photo{
  aspect-ratio: 3/4;
  background: var(--color-ink);
  overflow:hidden;
  position:relative;
}
.artist-photo img{ width:100%; height:100%; object-fit:cover; filter: grayscale(.15) contrast(1.05); transition: filter .4s ease; }
.artist-card:hover .artist-photo img{ filter: grayscale(0) contrast(1.1); }
.artist-photo .ph-icon{
  position:absolute; top:0; right:0; bottom:0; left:0; display:flex; align-items:center; justify-content:center;
  color: var(--color-border); font-size: 3rem;
}
.artist-info{ padding: var(--space-lg); }
.artist-info h3{ margin-bottom: 2px; }
.artist-role{ color: var(--color-red-bright); font-size:.8rem; text-transform:uppercase; letter-spacing:.06em; margin-bottom: var(--space-sm); display:block; }
.artist-info p{ color: var(--color-text-muted); font-size:.9rem; }
.artist-specialties{ display:flex; flex-wrap:wrap; gap:6px; margin-top: var(--space-md); }
.artist-specialties span{ font-size:.7rem; border:1px solid var(--color-border); padding:3px 8px; color: var(--color-text-muted); }

.team-photo-feature{
  border: 1px solid var(--color-border);
  overflow:hidden;
}
.team-photo-feature img{ width:100%; height:auto; display:block; filter: contrast(1.05) saturate(.9); }

/* ---------- FAQ Accordion ---------- */
.faq-item{ border-bottom: 1px solid var(--color-border); }
.faq-item:first-child{ border-top: 1px solid var(--color-border); }
.faq-q{
  width:100%;
  display:flex; align-items:center; justify-content:space-between; gap: var(--space-lg);
  padding: var(--space-lg) 0;
  text-align:left;
  font-family: var(--font-display);
  font-size: 1.15rem;
}
.faq-q .material-symbols-outlined{ transition: transform .4s var(--ease-out-quint); color: var(--color-red-bright); flex-shrink:0; }
.faq-item.is-open .faq-q .material-symbols-outlined{ transform: rotate(45deg); }
.faq-a{
  display:grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .45s var(--ease-out-quint);
}
.faq-item.is-open .faq-a{ grid-template-rows: 1fr; }
.faq-a-inner{ overflow:hidden; }
.faq-a p{ padding-bottom: var(--space-lg); color: var(--color-text-muted); max-width: 65ch; }

/* ---------- Contact form ---------- */
.contact-layout{
  display:grid;
  grid-template-columns: 1fr;
  gap: var(--space-3xl);
}
@media (min-width: 900px){ .contact-layout{ grid-template-columns: 1fr 1fr; } }

.field{ margin-bottom: var(--space-lg); }
.field label{ display:block; font-size:.82rem; text-transform:uppercase; letter-spacing:.05em; margin-bottom: var(--space-sm); color: var(--color-text-muted); }
.field input, .field select, .field textarea{
  width:100%;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  padding: 13px 14px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color .3s ease;
}
.field input:focus, .field select:focus, .field textarea:focus{ outline:none; border-color: var(--color-red-bright); }
.field textarea{ resize: vertical; min-height: 120px; }
.field-error{ color: var(--color-red-bright); font-size:.8rem; margin-top:4px; display:none; }
.field.has-error input, .field.has-error textarea{ border-color: var(--color-red-bright); }
.field.has-error .field-error{ display:block; }
.form-note{ font-size:.82rem; color: var(--color-text-muted); margin-top: var(--space-lg); }
.form-success{
  display:none;
  padding: var(--space-lg);
  border: 1px solid var(--color-red);
  background: color-mix(in oklch, var(--color-red) 12%, transparent);
  margin-bottom: var(--space-lg);
}
.form-success.is-visible{ display:block; }

.contact-info-item{ display:flex; gap: var(--space-md); padding: var(--space-lg) 0; border-bottom: 1px solid var(--color-border); }
.contact-info-item .material-symbols-outlined{ color: var(--color-red-bright); }
.contact-info-item strong{ display:block; margin-bottom: 2px; }
.contact-info-item span, .contact-info-item p{ color: var(--color-text-muted); font-size:.92rem; }

.map-frame{ border: 1px solid var(--color-border); aspect-ratio: 16/10; margin-top: var(--space-xl); overflow:hidden; }
.map-frame iframe{ width:100%; height:100%; border:0; filter: invert(92%) hue-rotate(180deg) contrast(.9); }

/* ---------- Footer ---------- */
.site-footer{ background: var(--color-ink); border-top: 1px solid var(--color-border); padding-top: var(--space-4xl); }
.footer-grid{
  display:grid; grid-template-columns: 1fr; gap: var(--space-2xl);
  padding-bottom: var(--space-3xl);
}
@media (min-width: 760px){ .footer-grid{ grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer-grid h4{ font-family: var(--font-body); font-size:.82rem; text-transform:uppercase; letter-spacing:.08em; color: var(--color-text-muted); margin-bottom: var(--space-lg); }
.footer-grid ul{ display:flex; flex-direction:column; gap: var(--space-sm); }
.footer-grid a:hover{ color: var(--color-red-bright); }
.footer-social{ display:flex; gap: var(--space-md); margin-top: var(--space-lg); }
.footer-social a{ width:40px; height:40px; border:1px solid var(--color-border); display:flex; align-items:center; justify-content:center; transition: border-color .3s ease, color .3s ease; }
.footer-social a:hover{ border-color: var(--color-red-bright); color: var(--color-red-bright); }
.footer-bottom{
  display:flex; flex-wrap:wrap; gap: var(--space-md); justify-content:space-between;
  padding: var(--space-lg) 0 var(--space-2xl);
  border-top: 1px solid var(--color-border);
  font-size: .8rem; color: var(--color-text-muted);
}
.footer-bottom ul{ display:flex; gap: var(--space-lg); flex-wrap:wrap; }

/* ---------- Cookie banner ---------- */
.cookie-banner{
  position:fixed; left: var(--space-lg); right: var(--space-lg); bottom: var(--space-lg);
  max-width: 640px;
  z-index: 300;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  padding: var(--space-xl);
  box-shadow: 0 20px 60px oklch(0% 0 0 / .5);
  transform: translateY(140%);
  transition: transform .6s var(--ease-out-expo);
}
.cookie-banner.is-visible{ transform: translateY(0); }
.cookie-banner p{ font-size:.9rem; color: var(--color-text-muted); margin-bottom: var(--space-lg); }
.cookie-actions{ display:flex; flex-wrap:wrap; gap: var(--space-md); }

/* ---------- Page hero (subpages) ---------- */
.page-hero{
  padding: calc(72px + var(--space-3xl)) 0 var(--space-3xl);
  background: var(--color-ink);
  border-bottom: 1px solid var(--color-border);
  position:relative;
  overflow:hidden;
}
.page-hero .breadcrumbs{ font-size:.82rem; color: var(--color-text-muted); margin-bottom: var(--space-lg); }
.page-hero .breadcrumbs a:hover{ color: var(--color-red-bright); }

/* ---------- Back to top ---------- */
.back-to-top{
  position: fixed; right: var(--space-lg); bottom: var(--space-lg);
  width:48px; height:48px;
  background: var(--color-red);
  color:#fff;
  display:flex; align-items:center; justify-content:center;
  opacity:0; pointer-events:none; transform: translateY(12px);
  transition: opacity .35s ease, transform .35s ease;
  z-index: 90;
}
.back-to-top.is-visible{ opacity:1; pointer-events:auto; transform:none; }

/* ---------- CTA banner ---------- */
.cta-banner{
  background: linear-gradient(120deg, var(--color-red-dark), var(--color-ink) 70%);
  border: 1px solid var(--color-red);
  padding: var(--space-3xl) var(--space-xl);
  text-align:center;
}
.cta-banner h2{ margin-bottom: var(--space-lg); }
.cta-banner .btn-primary{ margin-inline:auto; }

.lang-switch{
  display:flex; align-items:center; gap:4px;
  font-size:.78rem; font-weight:700; letter-spacing:.03em;
  margin-left: var(--space-md);
}
.lang-switch a{
  padding:6px 9px; border:1px solid var(--color-border); color: var(--color-text-muted);
  transition: border-color .3s ease, color .3s ease;
}
.lang-switch a.is-active{ color: var(--color-text); border-color: var(--color-red-bright); }
.lang-switch a:hover{ color: var(--color-red-bright); }
@media (min-width:900px){
  .lang-switch{ margin-left: var(--space-lg); }
}
.mt-lg{ margin-top: var(--space-lg); }
.mt-xl{ margin-top: var(--space-xl); }
.mt-2xl{ margin-top: var(--space-2xl); }
.text-center{ text-align:center; }
.mx-auto{ margin-inline:auto; }
