
/* ─── RESET & VARIABLES ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --cream:   #080715;
  --cream2:  #100E22;
  --dark:    #1E1C3A;
  --dark2:   #0F0D1F;
  --accent:  #BFA06A;
  --accent2: #D4BA85;
  --white:   #0F0D1F;
  --text:    #EAE8F4;
  --text-dim:#9B98C0;
  --border:  rgba(255,255,255,0.08);
  --f: 'Poppins', system-ui, sans-serif;
  --ease: cubic-bezier(0.65, 0, 0.35, 1);
}
html { scroll-behavior: smooth; }
body {
  font-family: var(--f);
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }

/* ─── CUSTOM CURSOR ───────────────────────────────────────────── */
.cursor {
  position: fixed; top: 0; left: 0;
  width: 10px; height: 10px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.08s, width 0.25s var(--ease), height 0.25s var(--ease), background 0.25s;
}
.cursor-ring {
  position: fixed; top: 0; left: 0;
  width: 40px; height: 40px;
  border: 1px solid rgba(184,136,58,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.18s var(--ease), width 0.35s var(--ease), height 0.35s var(--ease), opacity 0.25s;
}
body:has(a:hover) .cursor { width: 16px; height: 16px; }
body:has(a:hover) .cursor-ring { width: 60px; height: 60px; opacity: 0.4; }

/* ─── NAV ─────────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 40px;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.4s, backdrop-filter 0.4s, border-bottom 0.4s;
}
/* Half-transparent gradient under nav for adaptive contrast on light photos */
nav::before {
  content: '';
  position: absolute; inset: 0; bottom: auto; height: 140%;
  background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.18) 55%, transparent 100%);
  pointer-events: none; z-index: -1;
  transition: opacity 0.4s;
}
nav.scrolled::before { opacity: 0; }
nav.scrolled {
  background: rgba(13,11,31,0.98);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-brand {
  display: flex; align-items: center;
  text-decoration: none;
}
.nav-logo {
  display: flex; align-items: center;
  height: 38px;
}
.nav-logo svg {
  height: 100%; width: auto;
  display: block;
}
/* Ukryj stare elementy jeśli gdzieś jeszcze są */
.nav-logo-mark, .nav-brand-text, .nav-brand-name, .nav-brand-sub { display: none; }

/* ── LEGACY (zachowane dla kompatybilności, nieużywane) ── */
.nav-brand-name-UNUSED {
  font-size: 12px; font-weight: 500; letter-spacing: 0.24em;
  text-transform: uppercase; color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.45);
  transition: color 0.3s, text-shadow 0.3s;
}
nav.scrolled .nav-brand-name { color: rgba(255,255,255,0.92); text-shadow: none; }
.nav-brand-sub {
  font-size: 7.5px; font-weight: 300; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--accent); margin-top: 3px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.45);
  transition: text-shadow 0.3s;
}
nav.scrolled .nav-brand-sub { text-shadow: none; }
.nav-links {
  display: flex; align-items: center; gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 10.5px; font-weight: 500; letter-spacing: 0.16em;
  text-transform: uppercase; color: #fff;
  text-decoration: none !important;
  text-shadow: 0 1px 4px rgba(0,0,0,0.45);
  transition: color 0.3s, opacity 0.3s, text-shadow 0.3s;
}
.nav-links a:hover { color: var(--accent2); opacity: 1; }
nav.scrolled .nav-links a { color: rgba(255,255,255,0.75); text-shadow: none; font-weight: 400; }
nav.scrolled .nav-links a:hover { color: var(--accent); opacity: 1; }

/* Dropdown */
.nav-has-children { position: relative; }
.nav-has-children > a { display: inline-flex; align-items: center; gap: 6px; }
.nav-has-children > a::after {
  content: '';
  width: 5px; height: 5px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.3s var(--ease);
  opacity: 0.7;
}
.nav-has-children:hover > a::after,
.nav-has-children:focus-within > a::after {
  transform: translateY(0) rotate(225deg);
}
.nav-dropdown {
  position: absolute;
  top: 100%; left: -22px;
  min-width: 320px;
  padding: 14px 0;
  margin-top: 14px;
  list-style: none;
  background: rgba(13,11,31,0.98);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 0.32s var(--ease), transform 0.32s var(--ease);
  z-index: 200;
}
.nav-dropdown::before {
  content: '';
  position: absolute; left: 0; right: 0; top: -16px; height: 16px;
}
.nav-has-children:hover .nav-dropdown,
.nav-has-children:focus-within .nav-dropdown {
  opacity: 1; pointer-events: auto; transform: translateY(0);
}
.nav-dropdown li { display: block; }
.nav-dropdown a {
  display: block;
  padding: 11px 26px;
  font-size: 10.5px; font-weight: 400; letter-spacing: 0.1em;
  text-transform: none;
  text-decoration: none !important;
  color: rgba(255,255,255,0.78) !important;
  text-shadow: none !important;
  transition: background 0.2s, color 0.2s, padding-left 0.25s var(--ease);
}
.nav-dropdown a:hover {
  background: rgba(191,160,106,0.08);
  color: var(--accent2) !important;
  padding-left: 32px;
}
.nav-cta-btn {
  font-size: 10px; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; padding: 10px 22px;
  background: rgba(0,0,0,0.35); color: #fff;
  border: 1px solid rgba(255,255,255,0.45);
  text-shadow: 0 1px 3px rgba(0,0,0,0.45);
  backdrop-filter: blur(4px);
  transition: background 0.3s, color 0.3s, border-color 0.3s, text-shadow 0.3s;
}
.nav-links .nav-cta-btn:hover { background: var(--accent); color: #fff; border-color: var(--accent); opacity: 1; }
nav.scrolled .nav-cta-btn { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.9); border-color: rgba(255,255,255,0.25); text-shadow: none; }
nav.scrolled .nav-links .nav-cta-btn:hover { background: var(--accent); color: #fff; border-color: var(--accent); }

/* ─── HERO ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
/* Left panel – content */
.hero-left {
  position: relative;
  background: var(--dark);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 72px 60px 56px;
  z-index: 2;
}
/* Subtle texture on dark panel */
.hero-left::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.5; pointer-events: none;
}
/* Thin gold vertical accent line */
.hero-left::after {
  content: '';
  position: absolute; top: 0; bottom: 0; right: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent 0%, var(--accent) 30%, var(--accent) 70%, transparent 100%);
  opacity: 0.3;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 36px; position: relative; z-index: 1;
}
.hero-eyebrow-line { width: 28px; height: 1px; background: var(--accent); }
.hero-eyebrow-text {
  font-size: 9px; font-weight: 400; letter-spacing: 0.30em;
  text-transform: uppercase; color: var(--accent);
}
.hero-h1 {
  font-size: clamp(44px, 5.5vw, 86px);
  font-weight: 200;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 12px;
  position: relative; z-index: 1;
}
.hero-h1 em {
  font-style: normal;
  color: var(--accent2);
}
.hero-p {
  font-size: 13px; font-weight: 300;
  color: rgba(255,255,255,0.45);
  line-height: 1.9; max-width: 380px;
  margin-bottom: 44px; position: relative; z-index: 1;
}
.hero-actions {
  display: flex; align-items: center; gap: 20px;
  position: relative; z-index: 1;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 10px; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 28px;
  background: var(--accent);
  color: #fff;
  transition: background 0.25s, transform 0.2s;
}
.btn-primary:hover { background: var(--accent2); transform: translateX(3px); }
.btn-primary svg { transition: transform 0.2s; }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 10px; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; padding: 15px 32px;
  background: transparent; color: var(--accent);
  border: 1px solid rgba(191,160,106,0.5);
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}
.btn-secondary:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-ghost-light {
  font-size: 10px; font-weight: 400; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost-light:hover { color: #fff; border-color: rgba(255,255,255,0.6); }

/* Stats bar inside hero-left */
.hero-stats {
  display: flex; gap: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 32px; margin-top: 44px;
  position: relative; z-index: 1;
}
.hero-stat {
  flex: 1;
  padding-right: 20px;
  border-right: 1px solid rgba(255,255,255,0.08);
  margin-right: 20px;
}
.hero-stat:last-child { border-right: none; margin-right: 0; }
.hero-stat-n {
  font-size: 28px; font-weight: 200; color: #fff;
  line-height: 1; margin-bottom: 4px;
}
.hero-stat-n span { color: var(--accent); font-size: 16px; }
.hero-stat-l {
  font-size: 8.5px; font-weight: 400; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.35);
  line-height: 1.4;
}

/* Right panel – photo slider */
.hero-right {
  position: relative;
  overflow: hidden;
}
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.4s var(--ease);
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1) translateX(0);
  transition: transform 1.4s var(--ease);
  will-change: transform;
}
/* Scale-in animation on active slide – ends at the same transform as the base
   so when the slide loses .active mid-animation, the transition smoothly
   carries it to scale(1) instead of snapping back to the initial frame. */
.hero-slide.active img {
  animation: zoomPan 7s ease-out forwards;
}
@keyframes zoomPan {
  from { transform: scale(1.06) translateX(6px); }
  to   { transform: scale(1.0) translateX(0); }
}
/* Vignette over the hero photo – matches services page style, ~30% weaker */
.hero-right::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(8,7,21,0.19) 0%, rgba(8,7,21,0.16) 40%, rgba(8,7,21,0.32) 100%),
    linear-gradient(90deg, rgba(30,28,58,0.19) 0%, rgba(8,7,21,0.05) 100%);
  z-index: 2;
  pointer-events: none;
}
/* Hotel name label */
.hero-photo-label {
  position: absolute; bottom: 60px; left: 24px;
  font-size: 9px; font-weight: 400; letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(255,255,255,0.6);
  z-index: 3;
  background: rgba(13,11,31,0.5);
  padding: 6px 12px;
  backdrop-filter: blur(4px);
  transition: opacity 0.5s;
}
/* Dots */
.hero-dots {
  position: absolute; bottom: 32px; right: 28px;
  display: flex; flex-direction: column; gap: 8px;
  z-index: 10;
}
.hero-dot {
  width: 2px; height: 20px;
  background: rgba(255,255,255,0.25);
  border: none; cursor: none;
  transition: background 0.3s, height 0.3s;
}
.hero-dot.active {
  height: 36px;
  background: var(--accent);
}

/* ─── TICKER ──────────────────────────────────────────────────── */
.ticker-wrap {
  overflow: hidden;
  background: var(--dark);
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.ticker-track {
  display: flex; gap: 0;
  animation: ticker 30s linear infinite;
  width: max-content;
}
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  display: flex; align-items: center; gap: 28px;
  padding: 0 28px;
  font-size: 9px; font-weight: 400; letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(255,255,255,0.3);
  white-space: nowrap;
}
.ticker-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--accent); opacity: 0.5; flex-shrink: 0;
}

/* ─── SECTION UTILITY ─────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.section-label {
  font-size: 9px; font-weight: 500; letter-spacing: 0.30em;
  text-transform: uppercase; color: var(--accent);
  display: flex; align-items: center; gap: 14px; margin-bottom: 28px;
}
.section-label::before {
  content: ''; width: 24px; height: 1px; background: var(--accent);
}
h2.section-h {
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 200; line-height: 1.05;
  letter-spacing: -0.025em;
  color: rgba(255,255,255,0.92);
}
h2.section-h em { font-style: normal; color: var(--accent); }

/* ─── ABOUT ───────────────────────────────────────────────────── */
.about {
  padding: 120px 0;
  background: var(--white);
  overflow: hidden;
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-content {}
.about-lead {
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 200; line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin: 24px 0 36px;
}
.about-p {
  font-size: 13px; font-weight: 300;
  color: rgba(255,255,255,0.45); line-height: 1.95;
  margin-bottom: 36px;
}
.about-values {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--border); border: 1px solid var(--border);
}
.about-val {
  background: rgba(255,255,255,0.04); padding: 22px 20px;
}
.about-val-n {
  font-size: 9px; font-weight: 500; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 6px;
}
.about-val-t {
  font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.7);
  line-height: 1.5;
}
/* Big photo with offset accent */
.about-visual {
  position: relative;
}
.about-photo-main {
  position: relative; z-index: 2;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.about-photo-main img { transition: transform 0.8s var(--ease); }
.about-photo-main:hover img { transform: scale(1.04); }
/* Small accent photo overlapping */
.about-photo-accent {
  position: absolute;
  width: 55%;
  aspect-ratio: 4/3;
  bottom: -40px; right: -40px;
  z-index: 3;
  overflow: hidden;
  border: 5px solid var(--white);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.about-photo-accent img { transition: transform 0.8s var(--ease); }
.about-photo-accent:hover img { transform: scale(1.06); }
/* Gold number accent */
.about-accent-num {
  position: absolute;
  top: -30px; left: -24px;
  font-size: 120px; font-weight: 100;
  color: rgba(184,136,58,0.08);
  line-height: 1; z-index: 1;
  pointer-events: none;
  user-select: none;
}

/* ─── PORTFOLIO – THE WOW SECTION ─────────────────────────────── */
.portfolio {
  padding: 100px 0 0;
  background: var(--cream);
}
.portfolio-head {
  max-width: 1200px; margin: 0 auto; padding: 0 40px 64px;
  display: flex; justify-content: space-between; align-items: flex-end;
}
.portfolio-head-right {
  font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.45);
  max-width: 320px; line-height: 1.8; text-align: right;
}
/* Mosaic photo grid – 4+4+3+3 layout (asymmetric, gallery-style) */
.port-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 240px;
  gap: 5px;
}
/* Default: each item spans 3 cols (4 per row) */
.port-item {
  position: relative; overflow: hidden;
  grid-column: span 3;
  grid-row: span 1;
}
/* Bottom rows: items 9-14 span 4 cols (3 per row) and are taller */
.port-item:nth-child(n+9) {
  grid-column: span 4;
  grid-row: span 2;
}
.port-grid > .port-item:nth-child(n+9) img {
  object-position: center;
}
.port-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.port-item:hover img { transform: scale(1.05); }
/* Hover overlay */
.port-overlay {
  position: absolute; inset: 0;
  background: rgba(13,11,31,0); 
  transition: background 0.45s var(--ease);
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}
.port-item:hover .port-overlay {
  background: rgba(13,11,31,0.65);
}
.port-name {
  font-size: 18px; font-weight: 300;
  color: #fff;
  transform: translateY(12px);
  opacity: 0;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
  line-height: 1.2;
}
.port-tag-text {
  font-size: 9px; font-weight: 400; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--accent2);
  transform: translateY(8px); opacity: 0;
  transition: opacity 0.35s 0.05s var(--ease), transform 0.35s 0.05s var(--ease);
  margin-top: 6px;
}
.port-item:hover .port-name { opacity: 1; transform: translateY(0); }
.port-item:hover .port-tag-text { opacity: 1; transform: translateY(0); }

/* Hide service-page case descriptions (per client request 2026-05) */
.cases .case-d { display: none !important; }


/* ─── SERVICES ────────────────────────────────────────────────── */
.services {
  padding: 120px 0;
  background: var(--dark);
  color: #fff;
}
.services .section-label { color: var(--accent2); }
.services .section-label::before { background: var(--accent2); }
.services h2.section-h { color: #fff; }
.services h2.section-h em { color: var(--accent2); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 72px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
}
.svc-card {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--dark2);
  isolation: isolate;
  text-decoration: none;
  color: inherit;
  transition: transform 0.5s var(--ease);
}
.svc-card-img {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden;
}
.svc-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.9s var(--ease), filter 0.6s var(--ease);
  filter: brightness(0.55) saturate(0.92);
}
.svc-card-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,7,21,0) 0%, rgba(8,7,21,0.45) 55%, rgba(8,7,21,0.94) 100%);
  z-index: 1;
  transition: background 0.4s;
  pointer-events: none;
}
.svc-card:hover .svc-card-img img {
  transform: scale(1.06);
  filter: brightness(0.7) saturate(1);
}
.svc-card:hover .svc-card-img::after {
  background: linear-gradient(180deg, rgba(8,7,21,0) 0%, rgba(8,7,21,0.35) 50%, rgba(8,7,21,0.96) 100%);
}
.svc-card-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 32px 28px 30px;
  height: 100%;
}
.svc-card-num {
  font-size: 9px; font-weight: 500; letter-spacing: 0.28em;
  color: var(--accent); text-transform: uppercase;
  margin-bottom: 14px;
}
.svc-card-title {
  font-size: 19px; font-weight: 300;
  color: #fff; line-height: 1.25; margin-bottom: 12px;
  letter-spacing: -0.005em;
}
.svc-card-desc {
  font-size: 11.5px; font-weight: 300;
  color: rgba(255,255,255,0.62); line-height: 1.7;
  margin-bottom: 20px;
}
.svc-card-cta {
  font-size: 9.5px; font-weight: 500; letter-spacing: 0.2em;
  color: var(--accent2); text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 8px;
  transition: color 0.25s, gap 0.3s var(--ease);
}
.svc-card-arrow {
  display: inline-block;
  transition: transform 0.3s var(--ease);
}
.svc-card:hover .svc-card-cta { gap: 14px; color: #fff; }
.svc-card:hover .svc-card-arrow { transform: translateX(4px); }

/* ─── TEAM ────────────────────────────────────────────────────── */
.team {
  padding: 120px 0;
  background: var(--white);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 72px;
  background: var(--cream2);
  border: 2px solid var(--cream2);
}
.team-card {
  background: var(--white);
  overflow: hidden;
}
/* Featured card – subtly taller (suits a standing portrait in the middle slot) */
.team-card.team-card-featured .team-photo { aspect-ratio: 3/4.4; }
.team-card.team-card-featured { transform: translateY(-12px); }
.team-photo {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
}
.team-photo img { transition: transform 0.7s var(--ease); }
.team-card:hover .team-photo img { transform: scale(1.04); }
.team-info { padding: 28px 28px 36px; background: var(--dark2); }
.team-name {
  font-size: 20px; font-weight: 300; line-height: 1.1;
  margin-bottom: 6px; color: rgba(255,255,255,0.9);
}
.team-role {
  font-size: 8.5px; font-weight: 500; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 16px;
}
.team-bio {
  font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.55);
  line-height: 1.85;
}
.team-bio + .team-bio { margin-top: 14px; }
.team-bio strong {
  display: block;
  font-size: 9px; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--accent2);
  margin-bottom: 10px;
}
.team-practice { margin-top: 18px; }
.team-practice ul {
  list-style: none; margin: 0; padding: 0;
}
.team-practice li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
  font-size: 12px; font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}
.team-practice li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 1px;
  background: var(--accent);
}
.team-more { margin-top: 22px; }
.team-more summary {
  cursor: pointer;
  list-style: none;
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 9px; font-weight: 500; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--accent);
  padding: 10px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  width: 100%;
  justify-content: space-between;
  transition: color 0.2s;
}
.team-more summary::-webkit-details-marker { display: none; }
.team-more summary:hover { color: var(--accent2); }
.team-more-icon {
  width: 18px; height: 18px;
  position: relative;
  flex-shrink: 0;
}
.team-more-icon::before,
.team-more-icon::after {
  content: ""; position: absolute;
  background: currentColor;
  transition: transform 0.3s var(--ease);
}
.team-more-icon::before {
  top: 8px; left: 0; right: 0; height: 1px;
}
.team-more-icon::after {
  left: 8px; top: 0; bottom: 0; width: 1px;
}
.team-more[open] .team-more-icon::after { transform: rotate(90deg); }
.team-more-content { padding: 18px 0 6px; }
.team-contact {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; flex-direction: column; gap: 6px;
  font-size: 11px; font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}
.team-contact a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.2s;
}
.team-contact a:hover { color: var(--accent2); }
.team-contact-name {
  font-size: 9px; font-weight: 500; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 6px;
}
.team-contact-socials {
  margin-top: 10px;
  display: flex; align-items: center; gap: 10px;
}
.team-contact-socials a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.team-contact-socials a:hover {
  color: var(--accent2);
  border-color: var(--accent2);
  background: rgba(191,160,106,0.08);
}
.team-contact-socials svg { width: 14px; height: 14px; display: block; }

/* ─── CONTACT ─────────────────────────────────────────────────── */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.contact-left {
  background: var(--dark);
  padding: 90px 70px;
  display: flex; flex-direction: column; justify-content: center;
  color: #fff;
  position: relative; overflow: hidden;
}
/* Big photo behind contact text */
.contact-bg-photo {
  position: absolute; inset: 0; opacity: 0.18;
}
.contact-bg-photo img { object-fit: cover; width: 100%; height: 100%; }
.contact-left .section-label { position: relative; z-index: 1; color: var(--accent2); }
.contact-left .section-label::before { background: var(--accent2); }
.contact-h {
  font-size: clamp(32px, 3.5vw, 52px); font-weight: 200;
  line-height: 1.1; color: #fff; margin: 16px 0 20px;
  position: relative; z-index: 1;
}
.contact-h em { font-style: normal; color: var(--accent2); }
.contact-p {
  font-size: 13px; font-weight: 300;
  color: rgba(255,255,255,0.45); line-height: 1.9;
  max-width: 340px; position: relative; z-index: 1;
  margin-bottom: 40px;
}
.contact-details { position: relative; z-index: 1; }
.contact-detail {
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.contact-detail-label {
  font-size: 8px; font-weight: 500; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 4px;
}
.contact-detail-val {
  font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.75);
}
.contact-right {
  background: var(--dark2);
  padding: 90px 70px;
  display: flex; flex-direction: column; justify-content: center;
}
.contact-right .section-label { margin-bottom: 36px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 8.5px; font-weight: 500; letter-spacing: 0.20em;
  text-transform: uppercase; color: rgba(255,255,255,0.4);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; font-family: var(--f);
  font-size: 13px; font-weight: 300; color: var(--text);
  background: transparent;
  border: none; border-bottom: 1px solid rgba(255,255,255,0.15);
  padding: 10px 0;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
  color: rgba(255,255,255,0.85);
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group textarea { resize: none; height: 90px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.btn-submit {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--f);
  font-size: 10px; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 15px 32px;
  background: var(--dark); color: #fff;
  border: none; cursor: none;
  margin-top: 28px;
  transition: background 0.25s;
}
.btn-submit:hover { background: var(--accent); }

/* ─── FOOTER ──────────────────────────────────────────────────── */
footer {
  background: var(--dark);
  padding: 36px 40px;
  display: flex; flex-direction: column; align-items: center;
  gap: 28px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-top {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%;
}
.footer-copy {
  font-size: 10px; font-weight: 300; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.25);
}
.footer-links {
  display: flex; gap: 28px; list-style: none;
}
.footer-links a {
  font-size: 9px; font-weight: 400; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(255,255,255,0.3);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent); }
.footer-social {
  display: flex; align-items: center; justify-content: center; gap: 14px;
}
.footer-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.6);
  transition: background 0.25s, color 0.25s, transform 0.2s, border-color 0.25s;
}
.footer-social a:hover {
  background: #fff;
  border-color: #fff;
  color: var(--dark);
  transform: translateY(-2px);
}
.footer-social svg { width: 16px; height: 16px; display: block; }

/* ─── SCROLL REVEAL ───────────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ─── HAMBURGER ───────────────────────────────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5.5px;
  width: 40px; height: 40px;
  background: none; border: none;
  cursor: pointer; padding: 8px; z-index: 200;
}
.nav-hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: #fff;
  transition: transform 0.35s cubic-bezier(.77,0,.175,1), opacity 0.2s, background 0.3s;
}
nav.scrolled .nav-hamburger span { background: #fff; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── MOBILE OVERLAY MENU ─────────────────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed; inset: 0; z-index: 500;
  background: var(--dark);
  flex-direction: column; align-items: center; justify-content: center;
  padding: 40px;
  animation: menuFadeIn 0.35s ease forwards;
}
.mobile-menu.open { display: flex; }
@keyframes menuFadeIn { from { opacity: 0; } to { opacity: 1; } }
.mobile-menu-close {
  position: absolute; top: 24px; right: 28px;
  background: none; border: none; color: rgba(255,255,255,0.4);
  font-size: 24px; cursor: pointer; transition: color 0.2s;
}
.mobile-menu-close:hover { color: #fff; }
.mobile-nav { display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 8px; text-align: center; width: 100%; flex: 1; }
.mobile-nav-link {
  font-size: clamp(28px, 8vw, 44px);
  font-weight: 200; letter-spacing: 0.02em;
  color: rgba(255,255,255,0.75);
  padding: 10px 0;
  transition: color 0.2s;
  text-decoration: none; display: block;
  text-align: center; width: 100%;
}
.mobile-nav-link:hover, .mobile-nav-link:active { color: #fff; }
.mobile-nav-group { width: 100%; max-width: 480px; text-align: center; }
.mobile-nav-toggle {
  font-size: clamp(28px, 8vw, 44px);
  font-weight: 200; letter-spacing: 0.02em;
  color: rgba(255,255,255,0.75);
  background: none; border: none;
  padding: 10px 0; margin: 0 auto;
  display: inline-flex; align-items: center; gap: 12px;
  cursor: pointer;
  transition: color 0.2s;
  font-family: inherit;
}
.mobile-nav-toggle:hover { color: #fff; }
.mobile-nav-toggle::after {
  content: '';
  width: 9px; height: 9px;
  border-right: 1.5px solid #fff;
  border-bottom: 1.5px solid #fff;
  transform: translateY(-3px) rotate(45deg);
  opacity: 1;
  transition: transform 0.35s var(--ease);
}
.mobile-nav-toggle.open::after { transform: translateY(2px) rotate(225deg); }
.mobile-nav-children {
  display: flex; flex-direction: column; align-items: center;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease), opacity 0.4s var(--ease);
  opacity: 0;
}
.mobile-nav-children.open { max-height: 800px; opacity: 1; padding-bottom: 22px; }
.mobile-nav-child {
  display: block;
  font-size: 13px; font-weight: 300; letter-spacing: 0.04em;
  color: rgba(255,255,255,0.5);
  padding: 6px 0;
  transition: color 0.2s;
}
.mobile-nav-child:first-of-type { padding-top: 10px; }
.mobile-nav-child:hover { color: var(--accent2); }
.mobile-nav-cta {
  margin-top: 16px;
  font-size: clamp(14px, 4vw, 18px) !important;
  font-weight: 500 !important; letter-spacing: 0.18em !important;
  text-transform: uppercase;
  color: var(--accent) !important;
  border: 1px solid rgba(184,136,58,0.4);
  padding: 13px 36px !important;
}
.mobile-menu-footer {
  position: absolute; bottom: 40px;
  font-size: 11px; font-weight: 300; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.25); text-align: center; line-height: 2;
}

/* ─── RESPONSIVE ──────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .nav-links { display: none !important; }
  .nav-hamburger { display: flex; }

  .hero {
    grid-template-columns: 1fr;
    height: auto; min-height: 100svh;
  }
  .hero-left {
    padding: 96px 32px 52px;
    min-height: 60svh;
    position: relative; z-index: 2;
  }
  .hero-right {
    height: 56vw; min-height: 280px;
    grid-row: 1; /* photo ABOVE text on very small screens – remove to show below */
  }
  .hero-h1 { font-size: clamp(40px, 10vw, 68px); }
  .hero-p { max-width: 100%; }
  .hero-stats { gap: 0; flex-wrap: wrap; margin-top: 32px; padding-top: 24px; }
  .hero-stat { flex: 0 0 50%; margin-bottom: 12px; padding-right: 0; border-right: none; margin-right: 0; }

  .about-inner {
    grid-template-columns: 1fr; gap: 56px;
  }
  .about-visual { padding-bottom: 48px; }
  .about-photo-accent { right: 0; bottom: -32px; }

  .portfolio-head {
    flex-direction: column; gap: 24px;
    padding: 0 24px 48px;
  }
  .portfolio-head-right { text-align: left; max-width: 100%; }

  .port-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .port-item:nth-child(n) {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
  }


  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services .container { padding: 0 24px; }
  .svc-card { aspect-ratio: 4 / 4.4; }
  .svc-card-content { padding: 26px 22px 26px; }
  .svc-card-title { font-size: 17px; }

  .team-grid { grid-template-columns: 1fr; gap: 0; }

  .contact { grid-template-columns: 1fr; }
  .contact-left { padding: 64px 32px; min-height: auto; }
  .contact-right { padding: 52px 32px 72px; }
  .form-row { grid-template-columns: 1fr; }

  footer {
    flex-direction: column; gap: 20px;
    text-align: center; padding: 28px 24px;
  }
  .footer-top { flex-direction: column; align-items: center; gap: 12px; }
  .footer-links { justify-content: center; flex-wrap: wrap; gap: 14px; }
}

@media (max-width: 600px) {
  nav { padding: 0 20px; height: 64px; }
  .container { padding: 0 20px; }
  .about { padding: 72px 0; }
  .portfolio { padding: 72px 0 0; }
  .services { padding: 72px 0; }
  .team { padding: 72px 0; }
  .hero-left { padding: 80px 20px 44px; }
  .hero-h1 { font-size: clamp(34px, 11vw, 54px); }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 16px; }
  .port-grid { grid-auto-rows: 160px; }
  .port-item { grid-column: span 2 !important; }
  .about-photo-accent { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .svc-card { aspect-ratio: 16 / 10; }
}

/* ─── MOBILE CENTERING (added 2026-05-11) ─────────────────────── */
@media (max-width: 768px) {
  .hero-left {
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .hero-eyebrow { justify-content: center; }
  .hero-h1, .hero-p { text-align: center; }
  .hero-p { margin-left: auto; margin-right: auto; }
  .hero-actions {
    flex-direction: column;
    align-items: center !important;
    justify-content: center;
    gap: 16px;
  }
  .hero-stats { justify-content: center; }
  .hero-stat { text-align: center; padding-right: 0; margin-right: 0; }

  .about-inner { text-align: center; }
  .about-content, .about-visual { text-align: center; }
  .section-label { justify-content: center; }
  .about-values { justify-content: center; }
  .about-val { text-align: center; }
  .about-photo-main, .about-photo-accent { margin-left: auto; margin-right: auto; }

  .portfolio-head {
    align-items: center !important;
    text-align: center;
  }
  .portfolio-head-right { text-align: center !important; margin: 0 auto; }

  .services .container, .services-head { text-align: center; }
  .svc-card-content { text-align: center; align-items: center; }
  .svc-card-cta { justify-content: center; }

  .team-head { text-align: center; }
  .team-info { text-align: center; }
  .team-contact { justify-content: center; }

  .contact-left, .contact-right { text-align: center; align-items: center; }
  .contact-details { text-align: center; }
  .contact-detail { text-align: center; }

  footer { justify-content: center; }
  .footer-links { justify-content: center; flex-wrap: wrap; }
}

/* ─── MOBILE MENU NAV OVERRIDE — fix nav fixed inheritance (2026-05-11) ─── */
@media (max-width: 768px) {
  .mobile-menu .mobile-nav {
    position: static !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    height: auto !important;
    width: 100% !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    flex: 1 1 auto !important;
    gap: 8px !important;
  }
  .mobile-menu .mobile-nav-link,
  .mobile-menu .mobile-nav-toggle,
  .mobile-menu .mobile-nav-group,
  .mobile-menu .mobile-nav-children {
    width: 100% !important;
    text-align: center !important;
  }
  .mobile-menu .mobile-nav-group {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
  }
  .mobile-menu .mobile-nav-toggle {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
  }
  .mobile-menu .mobile-nav-children {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
    padding-left: 0 !important;
  }
  .mobile-menu .mobile-nav-children a,
  .mobile-menu .mobile-nav-children li {
    text-align: center !important;
    width: 100% !important;
  }
}

/* ─── PAGE HERO (sub-page) ────────────────────────────────────── */
.page-hero {
  position: relative;
  height: 78vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.04); animation: heroZoom 14s ease-out forwards; }
@keyframes heroZoom { to { transform: scale(1.0); } }
.page-hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,7,21,0.55) 0%, rgba(8,7,21,0.45) 40%, rgba(8,7,21,0.92) 100%);
}
.page-hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(30,28,58,0.55) 0%, rgba(8,7,21,0.15) 100%);
  z-index: 1;
}
.page-hero-content {
  position: relative; z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px 80px;
  width: 100%;
}
.breadcrumb {
  display: flex; align-items: center; gap: 10px;
  font-size: 9.5px; font-weight: 400; letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 28px;
}
.breadcrumb a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--accent2); }
.breadcrumb-sep { color: rgba(255,255,255,0.25); }
.breadcrumb .current { color: var(--accent2); }
.page-hero-eyebrow {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 22px;
}
.page-hero-eyebrow-line { width: 28px; height: 1px; background: var(--accent); }
.page-hero-eyebrow-text {
  font-size: 9.5px; font-weight: 500; letter-spacing: 0.30em;
  text-transform: uppercase; color: var(--accent);
}
.page-hero-h1 {
  font-size: clamp(40px, 5.4vw, 78px);
  font-weight: 200;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 24px;
  max-width: 950px;
}
.page-hero-h1 em { font-style: normal; color: var(--accent2); }
.page-hero-lead {
  font-size: clamp(14px, 1.3vw, 17px);
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  max-width: 620px;
}

/* ─── SECTION UTILITIES ───────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.section-label {
  font-size: 9px; font-weight: 500; letter-spacing: 0.30em;
  text-transform: uppercase; color: var(--accent);
  display: flex; align-items: center; gap: 14px; margin-bottom: 28px;
}
.section-label::before { content: ''; width: 24px; height: 1px; background: var(--accent); }
h2.section-h {
  font-size: clamp(30px, 3.6vw, 50px);
  font-weight: 200; line-height: 1.08;
  letter-spacing: -0.025em;
  color: rgba(255,255,255,0.92);
}
h2.section-h em { font-style: normal; color: var(--accent); }

/* ─── INTRO ───────────────────────────────────────────────────── */
.intro {
  padding: 110px 0;
  background: var(--cream);
  position: relative;
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.intro-aside .section-label { margin-bottom: 22px; }
.intro-h {
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 200; line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 28px;
}
.intro-h em { font-style: normal; color: var(--accent); }
.intro-meta {
  margin-top: 36px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}
.intro-meta-row {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  display: flex; justify-content: space-between; gap: 20px;
}
.intro-meta-row:last-child { border-bottom: none; }
.intro-meta-label {
  font-size: 9px; font-weight: 500; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--accent);
}
.intro-meta-val {
  font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.72);
  text-align: right;
}
.intro-body p {
  font-size: 14px; font-weight: 300;
  color: rgba(255,255,255,0.62);
  line-height: 1.95;
  margin-bottom: 22px;
}
.intro-body p strong {
  color: rgba(255,255,255,0.92); font-weight: 500;
}

/* ─── AUDIENCE ────────────────────────────────────────────────── */
.audience {
  padding: 110px 0;
  background: var(--dark2);
}
.audience-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 64px;
}
.audience-head-right {
  font-size: 13px; font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.85;
}
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.audience-card {
  background: var(--dark);
  padding: 36px 28px 32px;
  position: relative;
  transition: background 0.45s ease;
}
.audience-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  opacity: 0;
  transition: opacity 0.45s ease;
}
.audience-card:hover { background: rgba(191, 160, 106, 0.09); }
.audience-card:hover::before { opacity: 1; }
.audience-num {
  font-size: 9px; font-weight: 500; letter-spacing: 0.22em;
  color: var(--accent);
  margin-bottom: 28px;
}
.audience-icon {
  width: 38px; height: 38px;
  margin-bottom: 22px;
  color: var(--accent);
}
.audience-icon svg { width: 100%; height: 100%; stroke: currentColor; fill: none; }
.audience-title {
  font-size: 17px; font-weight: 300;
  color: rgba(255,255,255,0.92);
  margin-bottom: 14px;
  line-height: 1.25;
}
.audience-text {
  font-size: 12px; font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.85;
}

/* ─── SCOPE / CHECKLIST ──────────────────────────────────────── */
.scope {
  padding: 110px 0;
  background: var(--cream);
  position: relative;
}
.scope-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: start;
}
.scope-visual {
  position: sticky; top: 100px;
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
}
.scope-visual img { transition: transform 0.8s var(--ease); }
.scope-visual:hover img { transform: scale(1.04); }
.scope-visual::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(8,7,21,0.5) 100%);
}
.scope-list {
  list-style: none;
  margin-top: 12px;
  border-top: 1px solid var(--border);
}
.scope-item {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 22px;
  padding: 26px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.scope-item > p {
  display: none; /* ukrywa pusty <p> wstawiany przez wpautop */
}
.scope-item > span {
  grid-column: 1;
  grid-row: 1;
}
.scope-item > div {
  grid-column: 2;
  grid-row: 1;
}
.scope-check {
  width: 22px; height: 22px;
  border: 1px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.scope-check svg { width: 12px; height: 12px; color: var(--accent); stroke: currentColor; fill: none; }
.scope-h3 {
  font-size: 16px; font-weight: 300;
  color: rgba(255,255,255,0.92);
  margin-bottom: 8px;
  line-height: 1.3;
}
.scope-d {
  font-size: 12.5px; font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.85;
}

/* ─── PROCESS ────────────────────────────────────────────────── */
.process {
  padding: 110px 0;
  background: var(--dark);
  position: relative;
}
.process-head {
  text-align: center;
  margin-bottom: 72px;
}
.process-head .section-label { justify-content: center; }
.process-head .section-label::before { display: none; }
.process-head h2 { margin: 0 auto; max-width: 720px; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 27px; left: 5%; right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(184,136,58,0.4) 12%, rgba(184,136,58,0.4) 88%, transparent 100%);
  pointer-events: none;
}
.process-step {
  text-align: center;
  padding: 0 16px;
  position: relative;
}
.process-num {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 13px; font-weight: 400; letter-spacing: 0.05em;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  position: relative; z-index: 1;
  transition: background 0.3s, color 0.3s;
}
.process-step:hover .process-num { background: var(--accent); color: #fff; }
.process-h3 {
  font-size: 15px; font-weight: 400;
  color: rgba(255,255,255,0.92);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.process-d {
  font-size: 11.5px; font-weight: 300;
  color: rgba(255,255,255,0.45);
  line-height: 1.85;
}

/* ─── BENEFITS ────────────────────────────────────────────────── */
.benefits {
  padding: 110px 0;
  background: var(--cream2);
}
.benefits-head {
  margin-bottom: 64px;
  max-width: 720px;
}
.benefits-head .lead {
  margin-top: 24px;
  font-size: 14px; font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.9;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.benefit-card {
  background: var(--cream);
  padding: 40px 30px;
  transition: background 0.3s;
}
.benefit-card:hover { background: rgba(30,28,58,0.45); }
.benefit-icon {
  width: 36px; height: 36px;
  color: var(--accent);
  margin-bottom: 26px;
}
.benefit-icon svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1.4; }
.benefit-h3 {
  font-size: 15px; font-weight: 400;
  color: rgba(255,255,255,0.92);
  margin-bottom: 12px;
  line-height: 1.3;
}
.benefit-d {
  font-size: 12px; font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.85;
}

/* ─── STATS BAND ──────────────────────────────────────────────── */
.stats-band {
  padding: 90px 0;
  background: var(--dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-cell {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid var(--border);
}
.stat-cell:last-child { border-right: none; }
.stat-n {
  font-size: clamp(40px, 4.5vw, 64px);
  font-weight: 100;
  color: #fff;
  line-height: 1;
  margin-bottom: 12px;
}
.stat-n span { color: var(--accent); font-size: 0.6em; }
.stat-l {
  font-size: 9.5px; font-weight: 400; letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(255,255,255,0.4);
  line-height: 1.5;
}

/* ─── MINI CASE STUDY ────────────────────────────────────────── */
.cases {
  padding: 110px 0;
  background: var(--cream);
}
.cases-head {
  display: flex; justify-content: space-between; align-items: end;
  margin-bottom: 56px;
  gap: 40px;
}
.cases-head-right {
  font-size: 12px; font-weight: 300;
  color: rgba(255,255,255,0.45);
  max-width: 320px; line-height: 1.85;
  text-align: right;
}
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.case-card {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.case-photo {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.case-photo img { transition: transform 0.7s var(--ease); }
.case-card:hover .case-photo img { transform: scale(1.05); }
.case-info { padding: 28px 28px 32px; }
.case-tag {
  font-size: 9px; font-weight: 500; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 14px;
}
.case-name {
  font-size: 18px; font-weight: 300;
  color: rgba(255,255,255,0.92);
  margin-bottom: 12px;
  line-height: 1.25;
}
.case-d {
  font-size: 12px; font-weight: 300;
  color: rgba(255,255,255,0.48);
  line-height: 1.85;
}

/* ─── FAQ ─────────────────────────────────────────────────────── */
.faq {
  padding: 110px 0;
  background: var(--cream);
}
.faq-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.faq-aside { position: sticky; top: 100px; }
.faq-list { border-top: 1px solid var(--border); }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 26px 0;
  cursor: pointer;
}
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  gap: 28px;
  font-size: 15px; font-weight: 400;
  color: rgba(255,255,255,0.92);
  line-height: 1.4;
  transition: color 0.25s;
}
.faq-item:hover .faq-q { color: var(--accent2); }
.faq-toggle {
  width: 22px; height: 22px;
  border: 1px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  position: relative;
  transition: background 0.25s, transform 0.3s;
}
.faq-toggle::before, .faq-toggle::after {
  content: '';
  position: absolute;
  background: var(--accent);
  transition: transform 0.3s, background 0.3s;
}
.faq-toggle::before { width: 10px; height: 1px; }
.faq-toggle::after { width: 1px; height: 10px; }
.faq-item.open .faq-toggle { background: var(--accent); }
.faq-item.open .faq-toggle::before { background: #fff; }
.faq-item.open .faq-toggle::after { background: #fff; transform: scaleY(0); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
}
.faq-item.open .faq-a {
  max-height: 600px;
  padding-top: 18px;
}
.faq-a p {
  font-size: 13px; font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.9;
  max-width: 640px;
}

/* ─── CTA SECTION ─────────────────────────────────────────────── */
.cta {
  position: relative;
  padding: 130px 0;
  background: var(--dark);
  overflow: hidden;
}
.cta-bg {
  position: absolute; inset: 0;
  opacity: 0.18;
}
.cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(30,28,58,0.5) 0%, rgba(30,28,58,0.85) 100%);
}
.cta-inner {
  position: relative; z-index: 1;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.cta-inner .section-label { justify-content: center; }
.cta-inner .section-label::before { display: none; }
.cta-h {
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 200;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 12px 0 22px;
}
.cta-h em { font-style: normal; color: var(--accent2); }
.cta-p {
  font-size: 14px; font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.85;
  max-width: 540px;
  margin: 0 auto 40px;
}
.cta-actions {
  display: flex; gap: 20px;
  justify-content: center; align-items: center;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 10px; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 16px 32px;
  background: var(--accent);
  color: #fff;
  transition: background 0.25s, transform 0.2s;
}
.btn-primary:hover { background: var(--accent2); transform: translateX(3px); }
.btn-primary svg { transition: transform 0.2s; }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-ghost-light {
  font-size: 10px; font-weight: 400; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 15px 30px;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.btn-ghost-light:hover { color: #fff; border-color: var(--accent); background: rgba(184,136,58,0.1); }

/* ─── CONTACT (compact) ──────────────────────────────────────── */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.contact-left {
  background: var(--dark);
  padding: 90px 70px;
  display: flex; flex-direction: column; justify-content: center;
  color: #fff;
  position: relative; overflow: hidden;
}
.contact-bg-photo { position: absolute; inset: 0; opacity: 0.16; }
.contact-bg-photo img { object-fit: cover; width: 100%; height: 100%; }
.contact-left .section-label { position: relative; z-index: 1; color: var(--accent2); }
.contact-left .section-label::before { background: var(--accent2); }
.contact-h {
  font-size: clamp(30px, 3.5vw, 48px); font-weight: 200;
  line-height: 1.1; color: #fff; margin: 16px 0 20px;
  position: relative; z-index: 1;
}
.contact-h em { font-style: normal; color: var(--accent2); }
.contact-p {
  font-size: 13px; font-weight: 300;
  color: rgba(255,255,255,0.5); line-height: 1.9;
  max-width: 340px; position: relative; z-index: 1;
  margin-bottom: 36px;
}
.contact-details { position: relative; z-index: 1; }
.contact-detail {
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.contact-detail-label {
  font-size: 8px; font-weight: 500; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 4px;
}
.contact-detail-val {
  font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.78);
}
.contact-right {
  background: var(--dark2);
  padding: 90px 70px;
  display: flex; flex-direction: column; justify-content: center;
}
.contact-right .section-label { margin-bottom: 36px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 8.5px; font-weight: 500; letter-spacing: 0.20em;
  text-transform: uppercase; color: rgba(255,255,255,0.4);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
  width: 100%; font-family: var(--f);
  font-size: 13px; font-weight: 300;
  background: transparent;
  border: none; border-bottom: 1px solid rgba(255,255,255,0.15);
  padding: 10px 0;
  outline: none;
  transition: border-color 0.2s;
  color: rgba(255,255,255,0.85);
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group textarea { resize: none; height: 90px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.btn-submit {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--f);
  font-size: 10px; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 15px 32px;
  background: var(--dark); color: #fff;
  border: none; cursor: none;
  margin-top: 28px;
  transition: background 0.25s;
}
.btn-submit:hover { background: var(--accent); }

/* ─── FOOTER ──────────────────────────────────────────────────── */
footer {
  background: var(--dark);
  padding: 36px 40px;
  display: flex; flex-direction: column; align-items: center;
  gap: 28px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-top { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.footer-copy {
  font-size: 10px; font-weight: 300; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.25);
}
.footer-links { display: flex; gap: 28px; list-style: none; }
.footer-links a {
  font-size: 9px; font-weight: 400; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(255,255,255,0.3);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent); }
.footer-social { display: flex; align-items: center; justify-content: center; gap: 14px; }
.footer-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.6);
  transition: background 0.25s, color 0.25s, transform 0.2s, border-color 0.25s;
}
.footer-social a:hover {
  background: #fff;
  border-color: #fff;
  color: var(--dark);
  transform: translateY(-2px);
}
.footer-social svg { width: 16px; height: 16px; display: block; }

/* ─── REVEAL ──────────────────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* ─── HAMBURGER + MOBILE MENU ─────────────────────────────────── */
.nav-hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5.5px;
  width: 40px; height: 40px; background: none; border: none;
  cursor: pointer; padding: 8px; z-index: 200;
}
.nav-hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: rgba(255,255,255,0.88);
  transition: transform 0.35s cubic-bezier(.77,0,.175,1), opacity 0.2s, background 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 500;
  background: var(--dark);
  flex-direction: column; align-items: center; justify-content: center;
  padding: 40px;
}
.mobile-menu.open { display: flex; }
.mobile-menu-close {
  position: absolute; top: 24px; right: 28px;
  background: none; border: none; color: rgba(255,255,255,0.4);
  font-size: 24px; cursor: pointer;
}
.mobile-nav { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.mobile-nav-link {
  font-size: clamp(28px, 8vw, 44px);
  font-weight: 200;
  color: rgba(255,255,255,0.75);
  padding: 10px 0;
  display: block;
}
.mobile-nav-cta {
  margin-top: 16px;
  font-size: clamp(14px, 4vw, 18px) !important;
  font-weight: 500 !important; letter-spacing: 0.18em !important;
  text-transform: uppercase;
  color: var(--accent) !important;
  border: 1px solid rgba(184,136,58,0.4);
  padding: 13px 36px !important;
}
.mobile-menu-footer {
  position: absolute; bottom: 40px;
  font-size: 11px; font-weight: 300; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.25); text-align: center; line-height: 2;
}

/* ─── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 56px 24px; }
  .process-grid::before { display: none; }
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 32px 0; }
  .stat-cell:nth-child(2) { border-right: none; }
}
@media (max-width: 960px) {
  .nav-links { display: none !important; }
  .nav-hamburger { display: flex; }
  .page-hero { height: auto; min-height: 70vh; padding-top: 100px; }
  .page-hero-content { padding: 60px 24px 60px; }
  .intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .scope-grid { grid-template-columns: 1fr; gap: 40px; }
  .scope-visual { position: relative; top: 0; aspect-ratio: 16/10; }
  .audience-head { grid-template-columns: 1fr; gap: 24px; }
  .faq-grid { grid-template-columns: 1fr; gap: 40px; }
  .faq-aside { position: relative; top: 0; }
  .cases-head { flex-direction: column; align-items: flex-start; }
  .cases-head-right { text-align: left; }
  .cases-grid { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; }
  .contact-left { padding: 64px 32px; }
  .contact-right { padding: 52px 32px 72px; }
  .form-row { grid-template-columns: 1fr; }
  footer { flex-direction: column; gap: 20px; text-align: center; padding: 28px 24px; }
  .footer-top { flex-direction: column; align-items: center; gap: 12px; }
  .footer-links { justify-content: center; flex-wrap: wrap; gap: 14px; }
  .cta-actions { flex-direction: column; }
}
@media (max-width: 600px) {
  nav { padding: 0 20px; height: 64px; }
  .container { padding: 0 20px; }
  .intro, .audience, .scope, .process, .benefits, .cases, .cta, .faq { padding: 70px 0; }
  .stats-band { padding: 60px 0; }
  .audience-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .stat-cell { border-right: none; padding: 16px 0; border-bottom: 1px solid var(--border); }
  .stat-cell:last-child { border-bottom: none; }
}

/* ─── MOBILE CENTERING (added 2026-05-11) ─────────────────────── */
@media (max-width: 768px) {
  .page-hero-content { text-align: center; align-items: center; }
  .breadcrumb { justify-content: center; flex-wrap: wrap; }
  .page-hero-eyebrow { justify-content: center; }
  .page-hero-h1, .page-hero-lead { text-align: center; }
  .page-hero-lead { margin-left: auto; margin-right: auto; }

  .intro-grid, .intro-aside, .intro-body { text-align: center; }
  .section-label { justify-content: center; }
  .intro-h, .section-h { text-align: center; }
  .intro-meta-row { justify-content: center; gap: 8px; flex-wrap: wrap; }

  .audience-head, .cases-head, .benefits-head, .process-head, .scope-head, .faq-head {
    text-align: center;
    align-items: center !important;
  }
  .audience-head-right, .cases-head-right, .benefits-head-right,
  .process-head-right, .scope-head-right, .faq-head-right {
    text-align: center !important;
    margin-left: auto;
    margin-right: auto;
  }

  .audience-card, .benefits-card, .process-card, .cases-card,
  .scope-aside, .scope-body, .faq-aside, .faq-body {
    text-align: center;
    align-items: center;
  }
  .audience-icon, .benefit-icon, .audience-num, .benefit-num, .process-num {
    margin-left: auto;
    margin-right: auto;
  }
  .audience-title, .benefit-title, .process-title, .cases-title,
  .audience-text, .benefit-text, .process-text, .cases-text { text-align: center; }

  .stat-cell { text-align: center; }
  .stats-row { justify-items: center; }

  .cta, .cta-inner { text-align: center; align-items: center; }
  .cta-actions { justify-content: center; align-items: center; }

  .contact-left, .contact-right { text-align: center; align-items: center; }
  .contact-details, .contact-detail { text-align: center; }

  footer { justify-content: center; }
  .footer-links { justify-content: center; flex-wrap: wrap; }
}

/* ─── MOBILE MENU NAV OVERRIDE — fix nav fixed inheritance (2026-05-11) ─── */
@media (max-width: 768px) {
  .mobile-menu .mobile-nav {
    position: static !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    height: auto !important;
    width: 100% !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    flex: 1 1 auto !important;
    gap: 8px !important;
  }
  .mobile-menu .mobile-nav-link,
  .mobile-menu .mobile-nav-toggle,
  .mobile-menu .mobile-nav-group,
  .mobile-menu .mobile-nav-children {
    width: 100% !important;
    text-align: center !important;
  }
  .mobile-menu .mobile-nav-group {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
  }
  .mobile-menu .mobile-nav-toggle {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
  }
  .mobile-menu .mobile-nav-children {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
    padding-left: 0 !important;
  }
  .mobile-menu .mobile-nav-children a,
  .mobile-menu .mobile-nav-children li {
    text-align: center !important;
    width: 100% !important;
  }
}

/* ══════════════════════════════════════════════════════════════
   BLOG — INDEX PAGE
   ══════════════════════════════════════════════════════════════ */

/* BLOG INDEX HERO */
.blog-index-hero { position: relative; padding: 180px 0 80px; background: var(--cream); overflow: hidden; }
.blog-index-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 20% 30%, rgba(191,160,106,0.08) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(30,28,58,0.6) 0%, transparent 50%); pointer-events: none; }
.blog-index-hero-inner { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.blog-index-eyebrow { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.blog-index-eyebrow-line { width: 28px; height: 1px; background: var(--accent); }
.blog-index-eyebrow-text { font-size: 9.5px; font-weight: 500; letter-spacing: 0.30em; text-transform: uppercase; color: var(--accent); }
.blog-index-h1 { font-size: clamp(48px, 7vw, 96px); font-weight: 200; line-height: 1.0; letter-spacing: -0.025em; color: #fff; margin-bottom: 28px; max-width: 1000px; }
.blog-index-h1 em { font-style: italic; color: var(--accent2); font-family: var(--f-serif); font-weight: 400; }
.blog-index-sub { font-size: clamp(14px, 1.3vw, 18px); font-weight: 300; color: rgba(255,255,255,0.55); line-height: 1.8; max-width: 640px; }

/* BLOG CARDS GRID */
.blog-grid-section { padding: 80px 0 110px; background: var(--cream); }
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 5px; background: var(--border); border: 1px solid var(--border); }
.blog-card { display: flex; flex-direction: column; background: var(--dark2); padding: 0; transition: background 0.3s; position: relative; overflow: hidden; min-height: 460px; text-decoration: none !important; color: inherit; }
.blog-card:hover { background: rgba(30,28,58,0.7); }
.blog-card-thumb { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.blog-card-thumb img { transition: transform 0.7s var(--ease); width: 100%; height: 100%; object-fit: cover; }
.blog-card:hover .blog-card-thumb img { transform: scale(1.05); }
.blog-card-thumb::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 0%, rgba(8,7,21,0.4) 100%); }
.blog-card-body { padding: 36px 36px 32px; display: flex; flex-direction: column; flex: 1; }
.blog-card-meta { display: flex; align-items: center; gap: 18px; margin-bottom: 18px; font-size: 9.5px; font-weight: 500; letter-spacing: 0.20em; text-transform: uppercase; }
.blog-card-tag { color: var(--accent2); }
.blog-card-date { color: rgba(255,255,255,0.35); }
.blog-card-title { font-size: clamp(20px, 1.8vw, 26px); font-weight: 300; line-height: 1.25; letter-spacing: -0.015em; color: #fff; margin-bottom: 16px; text-decoration: none !important; }
.blog-card:hover .blog-card-title { color: var(--accent2); }
.blog-card-excerpt { font-size: 13.5px; font-weight: 300; color: rgba(255,255,255,0.55); line-height: 1.85; margin-bottom: 24px; flex: 1; }
.blog-card-cta { display: inline-flex; align-items: center; gap: 10px; font-size: 10px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent); align-self: flex-start; transition: color 0.2s, gap 0.25s var(--ease); }
.blog-card:hover .blog-card-cta { color: var(--accent2); gap: 16px; }
.blog-card-cta::after { content: '→'; font-size: 13px; transition: transform 0.25s var(--ease); }

/* CTA STRIP (blog + other pages) */
.cta-strip { padding: 100px 0; background: var(--cream); position: relative; overflow: hidden; }
.cta-strip::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 50% 50%, rgba(191,160,106,0.06) 0%, transparent 60%); }
.cta-strip-inner { max-width: 900px; margin: 0 auto; padding: 0 40px; text-align: center; position: relative; z-index: 1; }
.cta-strip-eyebrow { font-size: 9.5px; font-weight: 500; letter-spacing: 0.30em; text-transform: uppercase; color: var(--accent); margin-bottom: 18px; }
.cta-strip-h { font-size: clamp(34px, 4vw, 56px); font-weight: 200; line-height: 1.08; letter-spacing: -0.02em; color: #fff; margin-bottom: 32px; }
.cta-strip-h em { font-style: italic; color: var(--accent2); font-family: var(--f-serif); font-weight: 400; }
.cta-strip-actions { display: inline-flex; gap: 18px; flex-wrap: wrap; justify-content: center; }
.cta-btn-primary { display: inline-flex; align-items: center; gap: 12px; font-size: 11px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; padding: 16px 32px; background: var(--accent); color: #fff; border: 1px solid var(--accent); transition: background 0.25s, gap 0.25s var(--ease); text-decoration: none !important; }
.cta-btn-primary:hover { background: var(--accent2); border-color: var(--accent2); gap: 18px; }
.cta-btn-ghost { display: inline-flex; align-items: center; gap: 12px; font-size: 11px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; padding: 16px 32px; color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.2); transition: color 0.25s, border-color 0.25s, gap 0.25s var(--ease); text-decoration: none !important; }
.cta-btn-ghost:hover { color: #fff; border-color: var(--accent); gap: 18px; }

/* ══════════════════════════════════════════════════════════════
   BLOG — ARTICLE PAGE
   ══════════════════════════════════════════════════════════════ */

/* ARTICLE LEAD STRIP */
.article-lead-strip { background: var(--dark2); padding: 50px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.article-lead-inner { max-width: 760px; margin: 0 auto; padding: 0 40px; }
.article-lead-text { font-family: var(--f-serif); font-size: clamp(20px, 1.9vw, 26px); font-weight: 400; font-style: italic; line-height: 1.45; color: var(--accent2); letter-spacing: -0.005em; }

/* ARTICLE BODY */
.article-body { padding: 110px 0 120px; background: var(--cream); }
.article-container { max-width: 760px; margin: 0 auto; padding: 0 40px; }
.article-p { font-size: 17px; font-weight: 300; color: rgba(255,255,255,0.82); line-height: 1.78; margin-bottom: 26px; }
.article-p strong { color: rgba(255,255,255,0.95); font-weight: 500; }
.article-p--first { margin-top: 0; }
.drop-cap { float: left; font-family: var(--f-serif); font-size: 78px; line-height: 0.85; font-weight: 500; color: var(--accent2); padding: 8px 14px 0 0; margin-top: 2px; }
.article-h2 { font-size: clamp(22px, 2.2vw, 30px); font-weight: 300; line-height: 1.25; color: #fff; margin: 56px 0 22px; letter-spacing: -0.015em; position: relative; padding-left: 22px; }
.article-h2::before { content: ''; position: absolute; left: 0; top: 0.6em; width: 12px; height: 1px; background: var(--accent); }
.article-list, .article-ol { margin: 0 0 32px 0; padding-left: 0; list-style: none; }
.article-list li, .article-ol li { font-size: 16.5px; font-weight: 300; color: rgba(255,255,255,0.78); line-height: 1.7; padding: 10px 0 10px 28px; position: relative; border-bottom: 1px solid rgba(255,255,255,0.05); }
.article-list li:last-child, .article-ol li:last-child { border-bottom: none; }
.article-list li::before { content: ''; position: absolute; left: 0; top: 1.05em; width: 14px; height: 1px; background: var(--accent); }
.article-ol { counter-reset: ol-counter; }
.article-ol li { counter-increment: ol-counter; padding-left: 38px; }
.article-ol li::before { content: counter(ol-counter, decimal-leading-zero); position: absolute; left: 0; top: 0.8em; font-size: 11px; font-weight: 500; letter-spacing: 0.1em; color: var(--accent); }
.blog-figure { margin: 48px 0; max-width: 100%; }
.blog-figure img { width: 100%; height: auto; display: block; }
.blog-figure figcaption { font-size: 14px; color: rgba(255,255,255,0.6); margin-top: 12px; text-align: center; font-style: italic; }

/* RELATED ARTICLES */
.related { padding: 100px 0; background: var(--dark2); border-top: 1px solid var(--border); }
.related-head { display: flex; justify-content: space-between; align-items: end; margin-bottom: 56px; gap: 40px; flex-wrap: wrap; }
.related-h { font-size: clamp(28px, 3vw, 42px); font-weight: 200; line-height: 1.1; letter-spacing: -0.02em; color: #fff; }
.related-h em { font-style: normal; color: var(--accent); }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.related-card { background: var(--dark); padding: 32px 28px; transition: background 0.3s; display: flex; flex-direction: column; text-decoration: none !important; color: inherit; }
.related-card:hover { background: rgba(30,28,58,0.7); }
.related-card-kind { font-size: 9px; font-weight: 500; letter-spacing: 0.25em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.related-card-title { font-size: 17px; font-weight: 300; color: #fff; line-height: 1.35; margin-bottom: 18px; flex: 1; }
.related-card:hover .related-card-title { color: var(--accent2); }
.related-card-cta { font-size: 9.5px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent); display: inline-flex; align-items: center; gap: 10px; transition: gap 0.25s var(--ease); }
.related-card:hover .related-card-cta { gap: 16px; }
.related-card-cta::after { content: '→'; }

/* BLOG RESPONSIVE */
@media (max-width: 1024px) {
  .blog-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
}
@media (max-width: 960px) {
  .related-head { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  .blog-grid-section { padding: 50px 0 80px; }
  .blog-index-hero { padding: 130px 0 50px; }
  .blog-card-body { padding: 28px 24px 28px; }
  .drop-cap { font-size: 62px; padding: 6px 12px 0 0; }
  .article-p { font-size: 16px; }
  .article-body { padding: 70px 0 80px; }
}

/* ─── RODO consent under contact form ────────────────────────────── */
.form-rodo {
  margin-top: 36px;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.02em;
  max-width: 720px;
}
.form-rodo a { color: var(--accent, #b8a37a); text-decoration: underline; font-weight: 500; }
.form-rodo a:hover { color: #fff; text-decoration: none; }

/* ─── Legal pages (Polityka prywatnoci) ─────────────────────────── */
.legal-page { background: #0e0e0e; color: #d8d8d8; }
.legal-hero {
  padding: 140px 0 60px;
  background: linear-gradient(180deg, #1a1a1a 0%, #0e0e0e 100%);
  border-bottom: 1px solid #222;
}
.legal-hero .section-label { color: var(--accent, #b8a37a); }
.legal-h1 {
  font-family: var(--ff-serif, 'Cormorant Garamond', serif);
  font-size: clamp(48px, 7vw, 84px);
  font-weight: 300;
  line-height: 1.05;
  margin: 18px 0 18px;
  color: #fff;
}
.legal-h1 em { font-style: italic; color: var(--accent, #b8a37a); }
.legal-sub { color: #888; font-size: 14px; letter-spacing: 0.04em; }
.legal-body { padding: 56px 0 100px; }
.legal-container { max-width: 880px; }
.legal-body h2 {
  font-family: var(--ff-serif, 'Cormorant Garamond', serif);
  font-size: 28px;
  font-weight: 400;
  color: #fff;
  margin: 48px 0 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid #2a2a2a;
}
.legal-body h3 {
  font-size: 17px;
  font-weight: 600;
  color: #f0e6cf;
  margin: 32px 0 12px;
  letter-spacing: 0.01em;
}
.legal-body h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent, #b8a37a);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 22px 0 8px;
}
.legal-body p, .legal-body li {
  font-size: 15px;
  line-height: 1.75;
  color: #c4c4c4;
}
.legal-body p { margin: 0 0 14px; }
.legal-body ul { margin: 0 0 18px; padding-left: 22px; }
.legal-body ul li { margin-bottom: 8px; }
.legal-body a { color: var(--accent, #b8a37a); text-decoration: underline; }
.legal-body a:hover { color: #fff; }
.legal-body strong { color: #ececec; font-weight: 600; }
.legal-version {
  margin-top: 48px !important;
  padding-top: 20px;
  border-top: 1px solid #2a2a2a;
  font-size: 12px !important;
  color: #777 !important;
  letter-spacing: 0.05em;
}
@media (max-width: 700px) {
  .legal-hero { padding: 110px 0 40px; }
  .legal-body { padding: 36px 0 64px; }
  .legal-body h2 { font-size: 22px; margin-top: 36px; }
  .legal-body h3 { font-size: 15px; }
  .legal-body p, .legal-body li { font-size: 14px; }
}

/* ─── CURSOR: ukryj na urządzeniach dotykowych ────────────────── */
@media (hover: none), (pointer: coarse) {
  .cursor, .cursor-ring { display: none !important; }
}
