:root{
  /* Brandbook: warm black + gold (website) */
  --arcte-black: #333333;  /* website version shown in brandbook */
  --arcte-gold:  #d2ae6d;  /* website version shown in brandbook #ccca6b */
  --arcte-white: #ffffff;
  --arcte-gray:  #e6e6e6;
  --arcte-muted: #f6f6f6;

  --radius: 18px;
  --shadow: 0 14px 40px rgba(0,0,0,.10);
}

html,body{height:100%}
body{
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--arcte-black);
  background: var(--arcte-white);
}

/* ===== Poppins Local ===== */

@font-face {
  font-family: 'Poppins';
  src: url('/assets/fonts/poppins/Poppins-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Poppins';
  src: url('/assets/fonts/poppins/Poppins-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Poppins';
  src: url('/assets/fonts/poppins/Poppins-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Poppins';
  src: url('/assets/fonts/poppins/Poppins-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}

/* ===== Researcher (Logo Font) ===== */

@font-face {
  font-family: 'Researcher';
  src: url('/assets/fonts/researcher/researcher/ttf/researcher-researcher-regular-400.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Researcher";
  src: 
    url("/assets/fonts/researcher/researcher/subset-ResearcherRegular.woff2") format("woff2"),
    url("/assets/fonts/researcher/researcher/subset-ResearcherRegular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Researcher";
  src: 
    url("/assets/fonts/researcher/researcher/subset-ResearcherBold.woff2") format("woff2"),
    url("/assets/fonts/researcher/researcher/subset-ResearcherBold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}


/* Header */
.arcte-header{
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.arcte-nav{
  display:flex; align-items:center; justify-content:space-between;
  padding: 14px 0;
  gap: 18px;
}
.arcte-brand{
  text-decoration:none; color: var(--arcte-black);
  display:flex; flex-direction:column; line-height:1.1;
}
.arcte-wordmark{
  font-family: 'Researcher', serif;
  letter-spacing: .18em;
  font-weight: 400;
  font-size: 22px;
}
.arcte-claim{ font-weight: 300; font-size: 12px; color: rgba(51,51,51,.75); }

.arcte-menu{ display:flex; gap: 14px; flex-wrap:wrap; }
.arcte-menu a{
  text-decoration:none;
  color: rgba(51,51,51,.85);
  font-size: 13px;
  padding: 8px 10px;
  border-radius: 999px;
}
.arcte-menu a:hover{
  background: rgba(204,202,107,.18);
  color: var(--arcte-black);
}

.arcte-actions{ display:flex; gap: 10px; align-items:center; }

/* Buttons OLD */
/*.btn-arcte{
  background: var(--arcte-black);
  color: var(--arcte-white);
  border: 1px solid var(--arcte-black);
  border-radius: 999px;
  padding: 10px 16px;
}
.btn-arcte:hover{ opacity:.92; color: var(--arcte-white); }
.btn-arcte-outline{
  background: transparent;
  color: var(--arcte-black);
  border: 1px solid rgba(51,51,51,.22);
  border-radius: 999px;
  padding: 10px 16px;
}
.btn-arcte-outline:hover{
  border-color: rgba(51,51,51,.40);
  background: rgba(0,0,0,.02);
}
.btn-sm{
  padding: 8px 12px;
  font-size: 12px;
  border-radius: 999px;
} */

/* Buttons */
/* ===== Buttons (Bootstrap-friendly, no hover fights) ===== */

.btn-arcte{
  /* Bootstrap variables */
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--arcte-black);
  --bs-btn-border-color: var(--arcte-black);

  --bs-btn-hover-color: #111;
  --bs-btn-hover-bg: var(--arcte-gold);
  --bs-btn-hover-border-color: var(--arcte-gold);

  --bs-btn-focus-shadow-rgb: 210,174,109;
  --bs-btn-active-color: #111;
  --bs-btn-active-bg: var(--arcte-gold);
  --bs-btn-active-border-color: var(--arcte-gold);

  border-radius: 999px;
  padding: 10px 16px;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}

.btn-arcte:hover{ transform: translateY(-1px); }
.btn-arcte:active{ transform: translateY(0); }

.btn-arcte-outline{
  --bs-btn-color: var(--arcte-black);
  --bs-btn-bg: transparent;
  --bs-btn-border-color: rgba(51,51,51,.22);

  --bs-btn-hover-color: var(--arcte-black);
  --bs-btn-hover-bg: rgba(210,174,109,.16);
  --bs-btn-hover-border-color: var(--arcte-gold);

  --bs-btn-focus-shadow-rgb: 210,174,109;
  --bs-btn-active-color: var(--arcte-black);
  --bs-btn-active-bg: rgba(210,174,109,.22);
  --bs-btn-active-border-color: var(--arcte-gold);

  border-radius: 999px;
  padding: 10px 16px;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease;
}

/* Hero */
.arcte-hero{
  padding: 56px 0 28px;
  background:
    radial-gradient(900px 380px at 15% 10%, rgba(204,202,107,.20), transparent 60%),
    radial-gradient(700px 320px at 90% 30%, rgba(0,0,0,.06), transparent 55%),
    linear-gradient(180deg, #fff, #fff);
}
.arcte-kicker{
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(51,51,51,.70);
  margin: 0 0 10px;
}
.arcte-h1{
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 500;
  margin: 0 0 12px;
}
.arcte-lead{
  font-size: 15px;
  color: rgba(51,51,51,.80);
  max-width: 56ch;
}
.arcte-cta{ display:flex; gap: 12px; flex-wrap:wrap; margin-top: 18px; }

.arcte-note{
  display:flex; align-items:center; gap:10px;
  margin-top: 18px;
  font-size: 13px;
  color: rgba(51,51,51,.72);
}
.arcte-dot{
  width:10px; height:10px; border-radius: 999px;
  background: var(--arcte-gold);
  box-shadow: 0 0 0 6px rgba(204,202,107,.18);
}

/* Cards / slider */
.arcte-card{
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,.06);
  overflow:hidden;
}
.arcte-slider{ padding: 14px; }
.arcte-slide{ display:none; }
.arcte-slide.is-active{ display:block; }

.arcte-slide-media{
  height: 280px;
  border-radius: 14px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.arcte-slide-media.alt{
  background:
    linear-gradient(135deg, rgba(204,202,107,.18), rgba(51,51,51,.10)),
    radial-gradient(500px 200px at 20% 30%, rgba(0,0,0,.08), transparent 60%);
}
.arcte-slide-media.alt2{
  background:
    linear-gradient(135deg, rgba(51,51,51,.12), rgba(51,51,51,.04)),
    radial-gradient(520px 200px at 35% 35%, rgba(204,202,107,.22), transparent 60%);
}
.arcte-slide-caption{
  padding: 12px 6px 4px;
  font-size: 14px;
  color: rgba(51,51,51,.86);
}
.arcte-slider-hint{
  font-size: 12px;
  color: rgba(51,51,51,.60);
  padding: 8px 6px 2px;
}

/* Slider Premium */
.arcte-hero-visual {
  position: relative;
  height: 360px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(0,0,0,.12);
}

.arcte-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.arcte-hero-bg.is-active { opacity: 1; }

.arcte-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.2), rgba(0,0,0,0.4));
}

.arcte-hero-caption {
  position: absolute;
  bottom: 24px;
  left: 24px;
  color: #fff;
  font-size: 15px;
  letter-spacing: .05em;
}

/* Sections */
.arcte-section{ padding: 42px 0; }
.arcte-section-muted{
  background: var(--arcte-muted);
  border-top: 1px solid rgba(0,0,0,.04);
  border-bottom: 1px solid rgba(0,0,0,.04);
}
.arcte-h2{ font-size: 22px; font-weight: 500; margin: 0 0 14px; }
.arcte-h3{ font-size: 18px; font-weight: 500; margin: 0 0 8px; }

.arcte-tile{
  display:block;
  text-decoration:none;
  color: var(--arcte-black);
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 10px 28px rgba(0,0,0,.08);
  padding: 18px 18px;
  min-height: 110px;
}
.arcte-tile:hover{
  transform: translateY(-1px);
  transition: .15s ease;
  border-color: rgba(204,202,107,.55);
}
.arcte-tile-title{ font-weight: 600; }
.arcte-tile-desc{ font-size: 13px; color: rgba(51,51,51,.72); margin-top: 6px; }

.arcte-panel{
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  padding: 18px;
}

/* Pills */
.arcte-logos{ display:flex; flex-wrap:wrap; gap: 10px; }
.arcte-pill{
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(51,51,51,.14);
  background: rgba(255,255,255,.75);
  font-size: 13px;
}

/* Footer */
.arcte-footer{
  padding: 26px 0;
  background: #111;
  color: rgba(255,255,255,.80);
}
.arcte-footer-grid{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 18px;
  flex-wrap:wrap;
}
.arcte-footer-brand{
  font-family: 'Researcher', serif;
  letter-spacing:.22em;
  font-weight:400;
  font-size: 22px;
}
.arcte-footer-claim{ font-weight:300; font-size:12px; opacity:.85; }
.arcte-footer-links{ display:flex; gap: 14px; flex-wrap:wrap; }
.arcte-footer-links a{ color: rgba(255,255,255,.78); text-decoration:none; font-size: 13px; }
.arcte-footer-links a:hover{ color: #fff; }
.arcte-footer-meta{ font-size: 12px; opacity: .85; }
.arcte-gold{ color: var(--arcte-gold); }

/* Responsive */
@media (max-width: 991px){
  .arcte-menu{ display:none; } /* prosto na start — możesz dodać burger później */
}

/* Legal pages */
.arcte-breadcrumbs { font-size: 12px; opacity: .75; margin-bottom: 10px; }
.arcte-breadcrumbs a { color: inherit; text-decoration: none; }
.arcte-breadcrumbs a:hover { text-decoration: underline; }

.arcte-legal-doc{
  margin-top: 18px;
  max-width: 85ch;
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(0,0,0,.06);
  padding: 22px 22px;
}
.arcte-legal-doc h2{
  font-size: 18px;
  font-weight: 500;
  margin: 18px 0 10px;
}
.arcte-legal-doc p, .arcte-legal-doc li{
  font-size: 14px;
  line-height: 1.7;
  color: rgba(51,51,51,.86);
}
.arcte-legal-doc ul{ padding-left: 18px; }
.arcte-legal-note{
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,.08);
  font-size: 13px;
  opacity: .85;
}

/* ========================================
   CONTACT – SINGLE SOURCE OF TRUTH (INLINE)
   - subtle gold background (#D2AE6D requested)
   - not a dominant section
======================================== */

#contact{
  background: linear-gradient(
    180deg,
    rgba(210,174,109,0.10) 0%,
    rgba(210,174,109,0.06) 100%
  );
  border-top: 1px solid rgba(210,174,109,.35);
  border-bottom: 1px solid rgba(210,174,109,.35);
  padding: 26px 0;
}

/* make Contact heading smaller so it doesn't look "most important" */
#contact .arcte-h2{
  font-size: 16px;
  font-weight: 500;
  opacity: .80;
  margin-bottom: 10px;
}

.arcte-contact-title{
  font-size: 16px;
  opacity: .8;
  margin-bottom: 8px;
}

.arcte-contact-inline{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  line-height: 1.5;
  color: rgba(40,40,40,.82);
}

.arcte-contact-name{
  font-weight: 600;
  letter-spacing: .02em;
  color: rgba(20,20,20,.88);
}

.arcte-contact-item{
  display: inline-flex;
  gap: 6px;
  white-space: nowrap; /* keeps "NIP: 896..." together */
}

.arcte-contact-court{
  white-space: normal; /* court can wrap nicely */
}

.arcte-contact-court .arcte-value{
  opacity: .75;
}

.arcte-label{
  font-size: 11px;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: rgba(40,40,40,.60);
}

.arcte-value{
  color: rgba(40,40,40,.88);
}

.arcte-contact-inline a.arcte-value{
  text-decoration: none;
  border-bottom: 1px solid rgba(210,174,109,.60);
}
.arcte-contact-inline a.arcte-value:hover{
  border-bottom-color: rgba(210,174,109,1);
}

.arcte-sep{
  opacity: .35;
  margin: 0 4px;
}

.arcte-contact-actions{
  margin-left: auto;
}

@media (max-width: 700px){
  .arcte-contact-actions{
    margin-left: 0;
    width: 100%;
    padding-top: 6px;
  }
}

/* Arcte links inside Bootstrap form-check labels (B2B registration, forms) */
.form-check-label a{
  color: rgba(51,51,51,.86) !important;
  text-decoration: none !important;
  border-bottom: 1px solid rgba(210,174,109,.60) !important;
  transition: border-color .15s ease, opacity .15s ease;
}

.form-check-label a:hover{
  border-bottom-color: rgba(210,174,109,1) !important;
}

.form-check-label a:visited{
  color: rgba(51,51,51,.86) !important;
}

/* Arcte checkbox color */
.form-check-input{
  accent-color: var(--arcte-gold);
  cursor: pointer;
}

/* delikatny focus w stylu Arcte */
.form-check-input:focus{
  box-shadow: 0 0 0 .2rem rgba(210,174,109,.35);
}

/* Bootstrap checkbox – Arcte override */
.form-check-input:checked {
  background-color: var(--arcte-gold) !important;
  border-color: var(--arcte-gold) !important;
}

.form-check-input:focus {
  box-shadow: 0 0 0 .25rem rgba(210,174,109,.35) !important;
}

.form-check-input {
  border-color: rgba(0,0,0,.25);
}

/* Arcte – remove blue focus on unchecked checkbox */
.form-check-input:focus,
.form-check-input:focus-visible {
  border-color: var(--arcte-gold) !important;
  box-shadow: 0 0 0 .25rem rgba(210,174,109,.35) !important;
}

/* Arcte links inside legal documents (e.g., privacy policy, regulations) */
.arcte-legal-doc a{
  color: rgba(51,51,51,.86)  !important;
  text-decoration: none  !important;
  border-bottom: 1px solid rgba(210,174,109,.60) !important;
  transition: border-color .15s ease, opacity .15s ease;
}

.arcte-legal-doc a:hover{
  border-bottom-color: rgba(210,174,109,1) !important;
}

.arcte-legal-doc a:visited{
  color: rgba(51,51,51,.86) !important;
}

/* Footer brand link – remove any underline, force gold */
.arcte-footer-home,
.arcte-footer-home:visited,
.arcte-footer-home:hover,
.arcte-footer-home:active {
  text-decoration: none !important;
  color: inherit !important;
}

.arcte-footer-home .arcte-footer-brand,
.arcte-footer-home .arcte-footer-claim{
  color: var(--arcte-gold) !important;
  margin-top: 2px;
  opacity: .9;
}

.arcte-footer-home{
  display: inline-flex;
  flex-direction: column;
  line-height: 1.1;
}