/* ============================================================
   РОСЕН СИМЕОНОВ — style.css
   Fonts: Syne (headings) + DM Sans (body)
   Theme: dark hero / light sections / mid dark sections
   ============================================================ */

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --navy:        #060f28;
  --navy-800:    #0b1838;
  --navy-700:    #112048;
  --navy-600:    #1a3070;
  --blue:        #2248c8;
  --blue-mid:    #1e3fa8;
  --blue-light:  #3d6bff;
  --accent:      #eef2ff;
  --white:       #ffffff;
  --off:         #f6f8ff;

  --text-dark:   #111827;
  --text-mid:    #374151;
  --text-soft:   #6b7280;
  --text-inv:    rgba(255,255,255,0.85);
  --text-inv-dim:rgba(255,255,255,0.6);

  --line:        rgba(17,37,88,0.1);
  --line-inv:    rgba(255,255,255,0.1);

  --shadow-sm:   0 4px 16px rgba(6,15,40,0.08);
  --shadow-md:   0 12px 36px rgba(6,15,40,0.12);
  --shadow-lg:   0 24px 64px rgba(6,15,40,0.2);

  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 24px;
  --r-xl: 32px;

  --container:   1280px;
  --header-h:    80px;
  --ease:        0.3s cubic-bezier(.4,0,.2,1);
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.drawer-open { overflow: hidden; }

h1,h2,h3,h4,h5,h6 {
  font-family: 'Syne', sans-serif;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--ease); }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
ul, ol { list-style: none; }

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

/* ── SKIP LINK ───────────────────────────────────────────── */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  z-index: 9999;
  background: var(--white);
  color: var(--navy);
  padding: 10px 18px;
  border-radius: var(--r-sm);
  font-weight: 700;
}
.skip-link:focus { left: 8px; }

/* ── DRAWER OVERLAY ──────────────────────────────────────── */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4,9,24,0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  z-index: 1040;
  transition: opacity var(--ease), visibility var(--ease);
}
.drawer-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

/* ── DRAWER ──────────────────────────────────────────────── */
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(72vw, 380px);
  height: 100dvh;
  background: linear-gradient(160deg, var(--navy-700) 0%, var(--navy) 100%);
  border-left: 1px solid var(--line-inv);
  box-shadow: -20px 0 60px rgba(0,0,0,0.4);
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.4,0,.2,1);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  padding: 24px 22px 32px;
  overflow: hidden;
}
.drawer.is-open { transform: translateX(0); }

.drawer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--line-inv);
}

.drawer-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-inv-dim);
  margin-bottom: 4px;
}

.drawer-brand {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  display: block;
}
.drawer-brand:hover { color: rgba(255,255,255,0.8); }

.drawer-close {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border: 1px solid var(--line-inv);
  background: rgba(255,255,255,0.06);
  color: var(--white);
  border-radius: var(--r-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: background var(--ease);
}
.drawer-close:hover { background: rgba(255,255,255,0.12); }

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  overflow-y: auto;
}

.drawer-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  padding: 0 18px;
  border-radius: var(--r-md);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.06);
  color: var(--white);
  font-weight: 600;
  font-size: 0.97rem;
  letter-spacing: 0.01em;
  transition: background var(--ease), transform var(--ease);
}
.drawer-link:hover {
  background: rgba(255,255,255,0.1);
  transform: translateX(3px);
  color: var(--white);
}
.drawer-link i { font-size: 0.75rem; opacity: 0.5; }

.drawer-footer {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid var(--line-inv);
}

.drawer-socials {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}

.drawer-socials a {
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background var(--ease), transform var(--ease);
}
.drawer-socials a:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-2px);
}

.drawer-copy {
  font-size: 0.78rem;
  color: var(--text-inv-dim);
  margin: 0;
}

/* ── HEADER ──────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(6,15,40,0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line-inv);
  transition: background var(--ease), box-shadow var(--ease);
}
.site-header.scrolled {
  background: rgba(6,15,40,0.96);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
  /* brand left, nav center, right-block always rightmost */
}

.brand {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  min-width: 0;
}
.brand-name {
  font-family: 'Syne', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.brand-sub {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-inv-dim);
  margin-top: 1px;
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.desktop-nav a {
  color: rgba(255,255,255,0.88);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  transition: color var(--ease), background var(--ease);
}
.desktop-nav a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  /* On mobile: desktop-nav is hidden so header-right is pushed right by brand's flex */
  margin-left: auto;
}

.header-socials {
  display: flex;
  gap: 8px;
}
.header-socials a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line-inv);
  color: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: background var(--ease), color var(--ease), transform var(--ease);
}
.header-socials a:hover {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  transform: translateY(-1px);
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  border-radius: 14px;
  cursor: pointer;
  transition: background var(--ease);
  padding: 0;
}
.burger:hover { background: rgba(255,255,255,0.1); }
.burger-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}
.burger.is-open .burger-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open .burger-bar:nth-child(2) { opacity: 0; }
.burger.is-open .burger-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  background-image: url('../images/ruse.jpg');
  background-size: cover;
  background-position: center 30%;
  color: var(--white);
  min-height: calc(100svh - var(--header-h));
  display: flex;
  flex-direction: column;
}

/* Основен overlay върху градския фон */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg,
      rgba(6,15,40,0.96) 0%,
      rgba(10,24,64,0.90) 38%,
      rgba(18,40,100,0.58) 66%,
      rgba(18,40,100,0.12) 100%);
}

/* Снимката на Росен — десен ръб, над overlay */
.hero-photo {
  position: absolute;
  top: 0;
  right: 0;
  width: 54%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

/* Плавен син gradient към снимката — без mask и без рязане */
.hero-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    to left,
    rgba(6,15,40,0) 0%,
    rgba(10,24,64,0.16) 18%,
    rgba(18,40,100,0.38) 36%,
    rgba(10,24,64,0.70) 58%,
    rgba(6,15,40,0.95) 78%,
    rgba(6,15,40,1) 100%
  );
}

.hero-photo img,
.hero-photo picture {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-photo img {
  object-fit: cover;
  object-position: center center;
  position: relative;
  z-index: 1;
  filter: saturate(1.02) contrast(1.02);
}

.hero-container {
  position: relative;
  z-index: 3;
  flex: 1;
  display: flex;
  align-items: center;
  padding-block: 80px 60px;
}

.hero-content { max-width: 640px; }

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.pill {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.14);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
}

.hero-title {
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  font-weight: 800;
  line-height: 0.95;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: -0.03em;
}

.hero-tagline {
  font-size: clamp(1.05rem, 2vw, 1.5rem);
  font-weight: 600;
  color: #c5d4ff;
  margin-bottom: 16px;
}

.hero-lead {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-inv);
  padding-left: 16px;
  border-left: 3px solid rgba(255,255,255,0.55);
  margin-bottom: 32px;
  max-width: 580px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 560px;
  margin-top: 8px;
}
.hero-proof-item {
  padding: 16px 18px;
  border-radius: var(--r-md);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
}
.hero-proof-item strong {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 1.35rem;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.hero-proof-item span {
  display: block;
  font-size: 0.78rem;
  line-height: 1.35;
  color: var(--text-inv-dim);
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
}
.hero-scroll-hint span {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
  margin: 0 auto;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease);
  white-space: nowrap;
}
.btn-white {
  background: var(--white);
  color: var(--blue);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.18);
  color: var(--navy);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
}
.btn-white-sm {
  display: inline-flex;
  align-items: center;
  height: 42px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--white);
  color: var(--blue);
  font-size: 0.86rem;
  font-weight: 700;
  transition: transform var(--ease), box-shadow var(--ease);
}
.btn-white-sm:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.14);
  color: var(--navy);
}

/* ── STATEMENT BAND ──────────────────────────────────────── */
.band {
  background: linear-gradient(135deg, var(--navy-700) 0%, var(--blue-mid) 100%);
  color: var(--white);
  padding: 64px 0;
}
.band-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px 48px;
  align-items: center;
}
.band-kicker {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-inv-dim);
  writing-mode: vertical-lr;
  transform: rotate(180deg);
}
.band-text {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
}

/* ── SECTION SHARED ──────────────────────────────────────── */
.section { padding: 100px 0; }
.section-light { background: var(--white); }
.section-mid   { background: linear-gradient(160deg, var(--navy-800) 0%, var(--navy-700) 100%); color: var(--white); }
.section-dark  {
  background:
    radial-gradient(ellipse at top right, rgba(55,90,220,0.18), transparent 50%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-800) 100%);
  color: var(--white);
}
.section-contact {
  background: linear-gradient(140deg, var(--navy-700) 0%, var(--blue-mid) 100%);
  color: var(--white);
}

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blue);
  margin-bottom: 12px;
}
.section-label.light { color: rgba(255,255,255,0.5); }

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.section-title.light { color: var(--white); }

.section-intro {
  font-size: 1.05rem;
  line-height: 1.85;
  max-width: 680px;
  color: var(--text-mid);
  margin-bottom: 56px;
}
.section-intro.light { color: var(--text-inv); }

/* ── ABOUT ───────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
  margin-bottom: 64px;
}

.about-copy p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-mid);
  margin-bottom: 1rem;
}

.visual-split {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 64px;
}
.image-collage {
  position: relative;
  min-height: 520px;
}
.image-card {
  position: absolute;
  overflow: hidden;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  background: var(--off);
  border: 1px solid rgba(255,255,255,0.5);
}
.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.04);
}
.image-card-main { inset: 0 72px 74px 0; }
.image-card-small {
  right: 0;
  bottom: 0;
  width: 52%;
  height: 260px;
  border: 8px solid var(--white);
}
.image-caption {
  position: absolute;
  left: 24px;
  bottom: 98px;
  max-width: 260px;
  padding: 16px 18px;
  border-radius: var(--r-md);
  background: rgba(6,15,40,0.9);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.image-caption strong {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  margin-bottom: 4px;
}
.image-caption span {
  display: block;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--text-inv);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 700;
  font-size: 0.95rem;
}
.link-arrow:hover { gap: 12px; color: var(--blue-mid); }
.link-arrow i { font-size: 0.8rem; }

.about-panel {
  background: var(--off);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 32px;
  position: sticky;
  top: calc(var(--header-h) + 16px);
}
.panel-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: var(--text-mid);
  font-size: 0.96rem;
  line-height: 1.7;
}
.check-list li:last-child { margin-bottom: 0; }
.check-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 3px;
  color: var(--blue);
  font-size: 0.78rem;
}

/* Cards grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.card-icon {
  padding: 28px 24px;
  border-radius: var(--r-lg);
  background: var(--off);
  border: 1px solid var(--line);
  transition: transform var(--ease), box-shadow var(--ease);
  position: relative;
  overflow: hidden;
}
.card-icon::before {
  content: '';
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-mid), var(--blue-light));
}
.card-icon:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--accent);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
}

.card-icon h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.card-icon p {
  font-size: 0.9rem;
  color: var(--text-soft);
  margin: 0;
  line-height: 1.7;
}

/* ── RUSE SHOWCASE ───────────────────────────────────────── */
.ruse-showcase {
  background:
    linear-gradient(180deg, rgba(6,15,40,0.02), rgba(6,15,40,0.06)),
    var(--off);
}
.showcase-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: stretch;
}
.showcase-photo {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
  background: var(--navy);
}
.showcase-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}
.showcase-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(6,15,40,0.72));
}
.showcase-photo-text {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 30px;
  z-index: 1;
  color: var(--white);
}
.showcase-photo-text h2,
.showcase-photo-text h3 {
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  margin-bottom: 8px;
}
.showcase-photo-text p {
  max-width: 560px;
  color: var(--text-inv);
  margin: 0;
}
.showcase-points {
  display: grid;
  gap: 18px;
}
.showcase-point {
  padding: 26px;
  border-radius: var(--r-lg);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.showcase-point i {
  color: var(--blue);
  font-size: 1.25rem;
  margin-bottom: 14px;
}
.showcase-point h3 {
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.showcase-point p {
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.7;
  margin: 0;
}

/* ── VISION ──────────────────────────────────────────────── */
.vision-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}

.vision-card {
  padding: 30px 28px;
  border-radius: var(--r-lg);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  transition: background var(--ease), transform var(--ease);
}
.vision-card:hover {
  background: rgba(255,255,255,0.09);
  transform: translateY(-3px);
}
.vision-card-featured {
  grid-row: span 2;
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.15);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 340px;
}

.vision-card-num {
  font-family: 'Syne', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(255,255,255,0.12);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.04em;
}
.vision-card-featured .vision-card-num { font-size: 5rem; }

.vision-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}
.vision-card p {
  font-size: 0.93rem;
  color: var(--text-inv);
  line-height: 1.75;
  margin: 0;
}

.campaign-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 52px;
}
.campaign-strip figure {
  min-height: 260px;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
}
.campaign-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
}

/* ── PUBLICATIONS ────────────────────────────────────────── */
.pub-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: stretch;
}

.pub-featured {
  border-radius: var(--r-xl);
  overflow: hidden;
  min-height: 400px;
  background:
    linear-gradient(175deg, rgba(6,15,40,0.02), rgba(6,15,40,0.3)),
    linear-gradient(135deg, #d6e3ff 0%, #eef2ff 100%);
  box-shadow: var(--shadow-md);
  position: relative;
}
.pub-featured::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(170deg, rgba(6,15,40,0) 30%, rgba(6,15,40,0.5) 100%);
}

.pub-featured-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px;
}

.pub-featured h3 {
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  color: var(--white);
  margin-bottom: 12px;
}
.pub-featured p {
  color: rgba(255,255,255,0.88);
  margin-bottom: 20px;
  font-size: 0.97rem;
}

.pub-tag {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

.pub-side {
  display: grid;
  gap: 20px;
  align-content: start;
}

.pub-card {
  padding: 24px;
  border-radius: var(--r-lg);
  background: var(--off);
  border: 1px solid var(--line);
  transition: box-shadow var(--ease), transform var(--ease);
}
.pub-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.pub-tag-blue {
  display: inline-block;
  background: var(--accent);
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.pub-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}
.pub-card h3 a { color: inherit; }
.pub-card h3 a:hover { color: var(--blue); }
.pub-card p {
  font-size: 0.9rem;
  color: var(--text-soft);
  margin: 0;
}

/* ── MEDIA ───────────────────────────────────────────────── */
.media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.media-list { display: grid; gap: 14px; margin-bottom: 32px; }

.media-item {
  padding: 18px 20px;
  border-radius: var(--r-md);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  transition: background var(--ease);
}
.media-item:hover { background: rgba(255,255,255,0.11); }

.media-source {
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.media-item p {
  font-size: 0.92rem;
  color: var(--text-inv);
  margin: 0;
}

.media-visual {
  position: relative;
  min-height: 460px;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--navy);
  margin-bottom: 20px;
}
.media-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}
.media-visual-card {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 24px;
  border-radius: var(--r-lg);
  background: rgba(255,255,255,0.92);
  color: var(--text-dark);
  box-shadow: var(--shadow-md);
}
.media-visual-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.media-visual-card p {
  color: var(--text-mid);
  margin: 0;
  font-size: 0.92rem;
}

.media-quote {
  padding: 40px;
  border-radius: var(--r-xl);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
}
.media-quote p {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.3rem, 2.2vw, 1.9rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 16px;
}
.media-quote footer {
  font-size: 0.88rem;
  color: var(--text-inv-dim);
}
.media-quote cite { font-style: italic; }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-container { max-width: 860px; }

.faq-list { display: grid; gap: 12px; }

.faq-item {
  border-radius: var(--r-md);
  background: var(--off);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: box-shadow var(--ease);
}
.faq-item[open] { box-shadow: var(--shadow-sm); }

.faq-item summary {
  list-style: none;
  padding: 20px 24px;
  cursor: pointer;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: color var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--blue);
  flex-shrink: 0;
  line-height: 1;
  transition: transform var(--ease);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--blue); }

.faq-body {
  padding: 0 24px 20px;
  border-top: 1px solid var(--line);
}
.faq-body p {
  font-size: 0.97rem;
  color: var(--text-mid);
  line-height: 1.8;
  padding-top: 16px;
  margin: 0;
}
.faq-body a { color: var(--blue); font-weight: 600; }
.faq-body a:hover { color: var(--blue-mid); }

/* ── CONTACT ─────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: start;
}

.contact-intro p {
  color: var(--text-inv);
  font-size: 1.02rem;
  line-height: 1.85;
  margin-bottom: 28px;
}

.contact-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.contact-socials a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
  transition: background var(--ease);
}
.contact-socials a:hover { background: rgba(255,255,255,0.18); color: var(--white); }

/* Form */
.contact-form-wrap {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--r-xl);
  padding: 36px;
  backdrop-filter: blur(8px);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.field { display: grid; gap: 8px; margin-bottom: 16px; }
.field:last-child { margin-bottom: 0; }

.field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
}
.field label span { color: rgba(255,255,255,0.5); margin-left: 2px; }

.field input,
.field textarea {
  width: 100%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--r-sm);
  padding: 14px 16px;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  transition: border-color var(--ease), background var(--ease);
  outline: none;
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(255,255,255,0.45); }
.field input:focus,
.field textarea:focus {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.14);
}
.field textarea { resize: vertical; min-height: 140px; }

.form-status {
  display: none;
  padding: 14px 16px;
  border-radius: var(--r-sm);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 16px;
}
.form-status.is-visible { display: block; }
.form-status.is-success {
  background: rgba(16,185,129,0.15);
  border: 1px solid rgba(16,185,129,0.3);
  color: #34d399;
}
.form-status.is-error {
  background: rgba(239,68,68,0.12);
  border: 1px solid rgba(239,68,68,0.25);
  color: #f87171;
}
.btn.is-loading { opacity: 0.7; pointer-events: none; cursor: wait; }

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer {
  background: #030912;
  color: rgba(255,255,255,0.65);
  padding: 56px 0 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 32px 48px;
  align-items: start;
  margin-bottom: 40px;
}

.footer-name {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
}
.footer-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  max-width: 380px;
  line-height: 1.6;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  transition: color var(--ease);
}
.footer-nav a:hover { color: var(--white); }

.footer-socials {
  display: flex;
  gap: 10px;
}
.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: background var(--ease), color var(--ease), transform var(--ease);
}
.footer-socials a:hover {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}
.footer-bottom small { font-size: 0.8rem; }

/* ── BACK TO TOP ─────────────────────────────────────────── */
.back-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--white);
  color: var(--blue);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity var(--ease), transform var(--ease);
  z-index: 900;
}
.back-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-top:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,0,0,0.25); }

/* ── FOCUS VISIBLE ───────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--blue-light);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 1100px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-panel { position: static; }
  .vision-grid { grid-template-columns: 1fr 1fr; }
  .vision-card-featured { grid-row: auto; min-height: 260px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
}

@media (min-width: 901px) {
  .hero-photo {
    width: 50%;
  }

  .hero-content {
    max-width: 620px;
  }
}

@media (max-width: 900px) {
  .desktop-nav { display: none; }
  .header-socials { display: none; }
  .burger { display: flex; }

  .hero {
    min-height: auto;
    display: block;
  }

  .hero::before {
    background:
      linear-gradient(180deg,
        rgba(6,15,40,0.10) 0%,
        rgba(6,15,40,0.20) 45%,
        rgba(6,15,40,0.88) 100%);
  }

  .hero-photo {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    height: 430px;
    min-height: 430px;
  }

  .hero-photo::before {
    background: linear-gradient(
      to bottom,
      rgba(6,15,40,0) 0%,
      rgba(6,15,40,0.10) 35%,
      rgba(6,15,40,0.46) 70%,
      rgba(6,15,40,0.86) 100%
    );
  }

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

  .hero-container {
    padding-block: 28px 56px;
    margin-top: 0;
    align-items: flex-start;
  }

  .hero-content { max-width: 100%; }
  .hero-lead { border-left: none; padding-left: 0; }
  .hero-cta { flex-wrap: wrap; }
  .hero-cta .btn { flex: 0 0 auto; }
  .hero-proof { grid-template-columns: 1fr; }

  .visual-split,
  .showcase-grid,
  .campaign-strip { grid-template-columns: 1fr; }
  .image-collage { min-height: 460px; }
  .image-card-main { inset: 0 34px 90px 0; }
  .image-card-small { width: 58%; height: 220px; }
  .media-visual { min-height: 360px; }

  .band-inner { grid-template-columns: 1fr; }
  .band-kicker { writing-mode: horizontal-tb; transform: none; }

  .pub-layout { grid-template-columns: 1fr; }
  .pub-featured { min-height: 320px; }

  .media-grid { grid-template-columns: 1fr; gap: 32px; }

  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  :root { --header-h: 70px; }

  .container { width: min(var(--container), calc(100% - 28px)); }

  .section { padding: 72px 0; }

  .hero-title { font-size: 2.8rem; }
  .hero-proof { gap: 8px; }
  .hero-proof-item { padding: 14px; }

  .cards-grid { grid-template-columns: 1fr; }
  .vision-grid { grid-template-columns: 1fr; }
  .vision-card-featured { min-height: auto; justify-content: flex-start; }

  .pub-featured { min-height: 280px; }
  .pub-featured-inner { padding: 24px; }

  .contact-form-wrap { padding: 24px; }
  .drawer { width: 100%; max-width: 100%; border-left: none; }
  .brand-sub { display: none; }

  .hero-scroll-hint { display: none; }

  .hero-photo {
    height: 500px;
    min-height: 500px;
  }

  .image-collage { min-height: 380px; }
  .image-caption { left: 14px; right: 14px; bottom: 84px; max-width: none; }
  .showcase-photo { min-height: 340px; }
  .showcase-photo-text { left: 22px; right: 22px; }
  .campaign-strip figure { min-height: 220px; }
}

@media (max-width: 420px) {
  .hero-title { font-size: 2.3rem; }
  .hero-pills { gap: 6px; }
  .pill { font-size: 0.72rem; padding: 0 10px; height: 32px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }

  .hero-photo {
    height: 460px;
    min-height: 460px;
  }
}
