/* ============================================================
   NEKOV.COM — Global Styles
   Premium personal brand · DM Serif Display + Inter · Gold accent
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Inter:wght@400;500;600;700&display=swap');

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

:root {
  --bg:          #1C1A17;
  --bg-card:     rgba(255,255,255,0.045);
  --bg-section:  #201E1A;
  --text:        #F2F0EB;
  --text-sec:    #9A9690;
  --text-muted:  #5C5A57;
  --accent:      #D4A017;
  --accent-dim:  rgba(212,160,23,0.12);
  --accent-border: rgba(212,160,23,0.3);
  --border:      rgba(255,255,255,0.08);
  --radius:      6px;
  --max-w:       1200px;
  --font:        'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif:  'DM Serif Display', Georgia, serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Prevent layout shift before JS loads */
.fade-in { opacity: 1; transform: none; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

h1 {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.02em;
}

h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.75rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h3 {
  font-family: var(--font);
  font-size: clamp(1.1rem, 2vw, 1.375rem);
  font-weight: 600;
  line-height: 1.3;
}

h4 {
  font-family: var(--font);
  font-weight: 600;
}

p { color: var(--text-sec); }

.accent { color: var(--accent); }

/* ============================================================
   LAYOUT
   ============================================================ */

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

.section      { padding: 120px 0; }
.section-sm   { padding: 72px 0; }
.section-alt  { background: var(--bg-section); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--accent);
  margin-right: 10px;
  flex-shrink: 0;
  vertical-align: middle;
}

.section-header {
  margin-bottom: 64px;
}
.section-header h2 { margin-bottom: 14px; }
.section-header p  { max-width: 560px; }

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  border: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s, opacity 0.2s;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #0D0C0B;
}
.btn-primary:hover { opacity: 0.88; }

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.0625rem;
}

/* ============================================================
   NAVIGATION
   ============================================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background 0.3s, padding 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(13,12,11,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 0;
  border-bottom-color: var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--text);
  white-space: nowrap;
  margin-right: auto;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-sec);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

.nav-lang {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.nav-lang a {
  color: var(--text-muted);
  transition: color 0.2s;
  text-transform: uppercase;
}

.nav-lang a:hover { color: var(--text); }
.nav-lang a.active { color: var(--text); }

.nav-lang span {
  color: var(--text-muted);
  user-select: none;
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px 24px;
  background: rgba(13,12,11,0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
}

.nav-mobile a {
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-sec);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.nav-mobile a:hover { color: var(--text); }
.nav-mobile .btn { margin-top: 12px; justify-content: center; }

.nav-mobile .nav-lang {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.nav-mobile.open { display: flex; }

/* ============================================================
   MINIMAL NAV (workshop page)
   ============================================================ */

.nav-minimal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background 0.3s, padding 0.3s;
  border-bottom: 1px solid transparent;
}

.nav-minimal.scrolled {
  background: rgba(13,12,11,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 0;
  border-bottom-color: var(--border);
}

.nav-minimal-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-minimal-inner .nav-lang {
  margin-left: auto;
  margin-right: 20px;
}

/* ============================================================
   HERO (main page)
   ============================================================ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 160px 0 100px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 48px;
  align-items: center;
  width: 100%;
}

.hero-line {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin-bottom: 32px;
}

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

.hero-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  align-items: end;
}

.hero-photos img {
  width: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius);
  display: block;
}

.hero-photos img:first-child {
  aspect-ratio: 3/4;
}

.hero-photos img:last-child {
  aspect-ratio: 3/5;
  margin-bottom: 24px;
}

.hero h1 { margin-bottom: 24px; }

.hero-sub {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--text-sec);
  margin-bottom: 40px;
  max-width: 520px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 52px;
}

.hero-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-social a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-sec);
  padding: 8px 14px;
  border-radius: 100px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  transition: color 0.2s, border-color 0.2s;
}

.hero-social a:hover {
  color: var(--text);
  border-color: rgba(255,255,255,0.25);
}

/* ============================================================
   MEDIA BAR
   ============================================================ */

.media-bar {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.media-bar-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
  text-align: center;
}

.media-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.media-logo {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  opacity: 0.3;
}

/* ============================================================
   CARDS (service cards)
   ============================================================ */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: border-color 0.2s;
}

.card:hover {
  border-color: rgba(255,255,255,0.16);
}

.card-icon {
  font-size: 1.75rem;
  margin-bottom: 20px;
}

.card h3 { margin-bottom: 8px; color: var(--text); }
.card p  { font-size: 0.95rem; line-height: 1.7; }

.card-tagline {
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 12px;
  line-height: 1.3;
}

.cards-grid--2col {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 768px) {
  .cards-grid--2col { grid-template-columns: 1fr; }
}

/* ============================================================
   EVENT BANNER
   ============================================================ */

/* Event teaser — minimal strip on main page */
.event-teaser {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 40px 48px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
}

.event-teaser h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin-bottom: 8px;
}

.event-date {
  font-size: 0.9rem;
  color: var(--text-sec);
  margin: 0;
}

.event-teaser-cta { flex-shrink: 0; }

/* ============================================================
   TRAININGS SECTION
   ============================================================ */

.trainings-sub-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.trainings-sub-label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--text-muted);
  flex-shrink: 0;
}

.trainings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.training-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s;
}

.training-card:hover { border-color: rgba(255,255,255,0.16); }
.training-card .section-label { margin-bottom: 12px; }
.training-card h3 { margin-bottom: 12px; color: var(--text); }
.training-card p  { font-size: 0.95rem; line-height: 1.7; flex: 1; }

.training-card-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.1;
}

.price-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.consultation-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  transition: border-color 0.2s;
}

.consultation-card:hover { border-color: rgba(255,255,255,0.16); }

.consultation-inner {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  justify-content: space-between;
}

.consultation-inner h3 { margin-bottom: 12px; color: var(--text); }
.consultation-inner p  { font-size: 0.95rem; margin-bottom: 20px; }

.perks {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.perk {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-sec);
}

.perk-check {
  color: var(--accent);
  font-weight: 700;
}

.consultation-cta {
  flex-shrink: 0;
  text-align: right;
}

.consultation-cta .price { margin-bottom: 4px; }
.consultation-cta .btn { margin-top: 16px; white-space: nowrap; }

/* ============================================================
   CONSULTATION / CONTACT FORM SECTION
   ============================================================ */

.consult-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.consult-info h2 { margin-bottom: 20px; }
.consult-info > p { color: var(--text-sec); margin-bottom: 28px; line-height: 1.7; }

.consult-perks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.consult-price {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--accent);
}

.consult-price span {
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--text-sec);
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-sec);
}

.form-group input,
.form-group textarea {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color 0.2s;
  width: 100%;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-border);
}

/* ============================================================
   PROJECTS
   ============================================================ */

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.project-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--text);
  transition: border-color 0.2s;
}

.project-card:hover { border-color: rgba(255,255,255,0.16); }

.project-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(232,197,71,0.1);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.project-logo-img {
  width: auto;
  max-width: 140px;
  height: 44px;
  background: #fff;
  border-radius: 8px;
  padding: 7px 12px;
}

.project-logo-img img {
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

.project-card h3 { color: var(--text); }
.project-card p  { font-size: 0.9rem; color: var(--text-sec); }

/* ============================================================
   CASE STUDY
   ============================================================ */

.case-study-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 48px;
}

.case-study-client { margin-bottom: 24px; }

.case-study-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--accent);
}

.case-study-challenge {
  color: var(--text-sec);
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.case-study-content > p {
  color: var(--text-sec);
  line-height: 1.7;
  margin-bottom: 32px;
  font-size: 0.95rem;
}

.case-services-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.case-services-list li {
  font-size: 0.9rem;
  color: var(--text-sec);
  padding-left: 16px;
  position: relative;
}

.case-services-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
}

.case-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.case-metric-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--text);
  margin-bottom: 4px;
}

.case-metric-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.case-testimonial {
  border-top: 1px solid var(--border);
  padding-top: 32px;
}

.case-quote {
  font-style: italic;
  color: var(--text-sec);
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 1rem;
}

.case-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.case-author strong { color: var(--text); font-size: 0.9rem; }
.case-author span { color: var(--text-muted); font-size: 0.8rem; }

/* ============================================================
   SERVICES PAGE — capabilities grid
   ============================================================ */

.services-capabilities {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  margin-top: 64px;
}

.service-category {
  border-top: 2px solid var(--accent);
  padding-top: 24px;
}

.service-category h3 {
  font-family: var(--font);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 20px;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-list li {
  font-size: 0.9rem;
  color: var(--text-sec);
  padding-left: 0;
  line-height: 1.5;
}

/* ============================================================
   TESTIMONIALS — open style, no boxes
   ============================================================ */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 72px;
}

.testimonial-open {
  display: flex;
  flex-direction: column;
}

.testimonial-open::before {
  content: '\201C';
  font-family: var(--font-serif);
  font-size: 4.5rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.5;
  margin-bottom: 8px;
}

.testimonial-quote {
  font-style: italic;
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text-sec);
  flex: 1;
  margin-bottom: 24px;
}

.testimonial-divider {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(232,197,71,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Legacy card style (used in workshop page inline) */
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}

.testimonial-card .testimonial-quote {
  font-size: 0.95rem;
  margin-bottom: 20px;
}

/* ============================================================
   CLIENT LOGOS
   ============================================================ */

.client-logos-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
  text-align: center;
}

.client-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.client-logo {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  opacity: 0.3;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

.about-photo-placeholder {
  aspect-ratio: 3/4;
  background: var(--bg-card);
  border-left: 4px solid var(--accent);
  border-top: 1px solid var(--border);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.875rem;
}

.about-photo img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  border-left: 4px solid var(--accent);
  border-top: 1px solid var(--border);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  border-radius: var(--radius);
  display: block;
}

.about-content .section-label { margin-bottom: 12px; }
.about-content h2 { margin-bottom: 24px; }
.about-content p  { margin-bottom: 16px; font-size: 0.975rem; line-height: 1.75; }

/* ============================================================
   STATS ROW
   ============================================================ */

.stats-row {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin: 40px 0;
}

.stat {
  flex: 1;
  padding: 0 32px;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.stat:first-child { padding-left: 0; }
.stat:last-child  { border-right: none; }

.stat-number {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  line-height: 1;
  color: var(--text);
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

/* stat-divider is now handled by border-right on .stat */
.stat-divider { display: none; }

/* ============================================================
   FOOTER
   ============================================================ */

footer {
  padding: 56px 0;
  border-top: 1px solid;
  border-image: linear-gradient(90deg, transparent, rgba(232,197,71,0.3), transparent) 1;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 8px;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-social {
  display: flex;
  gap: 24px;
}

.footer-social a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-social a:hover { color: var(--text); }

.footer-contact a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-contact a:hover { color: var(--text); }

/* ============================================================
   WORKSHOP HERO
   ============================================================ */

.w-hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 160px 0 100px;
}

.w-hero .container { max-width: 1200px; }

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

.w-hero-photo {
  border-radius: var(--radius);
  overflow: hidden;
  height: 560px;
}

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

.w-hero-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.hero-line {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin-bottom: 32px;
}

.w-meta-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(232,197,71,0.1);
  border: 1px solid rgba(232,197,71,0.25);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
}

.w-meta-item {
  font-size: 0.875rem;
  color: var(--text-sec);
}

.w-hero h1 { margin-bottom: 24px; }

.w-hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: var(--text-sec);
  max-width: 580px;
  margin: 0 0 40px;
  line-height: 1.7;
}

/* ============================================================
   WORKSHOP — PROBLEM
   ============================================================ */

.w-problem-text p {
  font-size: 1.05rem;
  line-height: 1.85;
  max-width: 740px;
  margin-bottom: 20px;
}

.w-problem-text p:last-child { margin-bottom: 0; }

/* ============================================================
   WORKSHOP — SOLUTION
   ============================================================ */

.solution-intro {
  font-size: 1.05rem;
  line-height: 1.85;
  max-width: 740px;
  margin-bottom: 48px;
}

.solution-points {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}

.solution-point {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}

.sp-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--accent);
  opacity: 0.4;
  line-height: 1;
  width: 52px;
  flex-shrink: 0;
  padding-top: 4px;
}

.sp-content h4 { margin-bottom: 8px; font-size: 1.05rem; color: var(--text); }
.sp-content p  { font-size: 0.95rem; }

.solution-footer {
  margin-top: 40px;
  font-size: 0.975rem;
  color: var(--text-sec);
  max-width: 640px;
  line-height: 1.7;
  font-style: italic;
}

/* ============================================================
   WORKSHOP — FOR WHOM
   ============================================================ */

.for-whom-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.for-whom-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  transition: border-color 0.2s;
}

.for-whom-card:hover { border-color: rgba(255,255,255,0.16); }
.for-whom-card h3 { color: var(--text); margin-bottom: 20px; }

.for-whom-card .section-label {
  display: block;
  margin-bottom: 16px;
}

.for-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.for-list li {
  font-size: 0.925rem;
  color: var(--text-sec);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.for-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  opacity: 0.6;
}

.antitarget {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 8px;
}

/* ============================================================
   HOMEPAGE — SPEAKING STRIP
   ============================================================ */

.speaking-strip {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.speaking-strip img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================================
   WORKSHOP — CREDIBILITY PHOTO
   ============================================================ */

.w-credibility-top {
  width: 100%;
  height: 420px;
  overflow: hidden;
}
.w-credibility-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}

.w-credibility-photo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 480px;
  overflow: hidden;
}
.w-credibility-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

/* ============================================================
   WORKSHOP — SPEAKER
   ============================================================ */

.w-speaker-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 64px;
  align-items: start;
}

.w-speaker-photo-placeholder {
  aspect-ratio: 3/4;
  background: var(--bg-card);
  border-left: 4px solid var(--accent);
  border-top: 1px solid var(--border);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.875rem;
}

.w-speaker-photo img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  border-left: 4px solid var(--accent);
  border-top: 1px solid var(--border);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  border-radius: var(--radius);
  display: block;
}

.w-speaker-content p { margin-bottom: 16px; font-size: 0.975rem; line-height: 1.75; }

/* ============================================================
   WORKSHOP — TICKETS
   ============================================================ */

.tickets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.ticket-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  transition: border-color 0.2s;
}

.ticket-card:hover { border-color: rgba(255,255,255,0.16); }

.ticket-card.featured {
  background: linear-gradient(160deg, rgba(232,197,71,0.08) 0%, transparent 60%);
  border-color: rgba(232,197,71,0.25);
}

.ticket-card.featured:hover { border-color: rgba(232,197,71,0.45); }

.ticket-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #0D0C0B;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.ticket-type {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.ticket-price-block { line-height: 1.2; }

.ticket-price-old {
  font-size: 1rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-bottom: 4px;
}

.ticket-price-current {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--text);
  font-weight: 400;
}

.ticket-price-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.ticket-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.ticket-features li {
  font-size: 0.9rem;
  color: var(--text-sec);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}

.ticket-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.8rem;
}

.ticket-card .btn { width: 100%; justify-content: center; margin-top: auto; }

.tickets-footer {
  text-align: center;
  margin-top: 24px;
}

.tickets-footer p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

/* ============================================================
   WORKSHOP — DETAILS
   ============================================================ */

.details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.detail-item {
  padding: 32px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.detail-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.detail-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.detail-note {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ============================================================
   FAQ
   ============================================================ */

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s;
}

.faq-question:hover { color: var(--accent); }

.faq-icon {
  font-size: 1.25rem;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.3s;
  font-weight: 300;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding-bottom: 24px;
}

.faq-answer.open { display: block; }

.faq-answer p {
  font-size: 0.95rem;
  line-height: 1.75;
  max-width: 640px;
}

/* ============================================================
   FINAL CTA
   ============================================================ */

.final-cta {
  padding: 120px 0;
  text-align: center;
  background: var(--bg-section);
  border-top: 1px solid var(--border);
}

.final-cta h2 { margin-bottom: 16px; }
.final-cta p  { font-size: 1rem; color: var(--text-sec); margin-bottom: 40px; }

/* ============================================================
   STICKY CTA (mobile)
   ============================================================ */

.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: rgba(13,12,11,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  z-index: 90;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */

@media (prefers-reduced-motion: no-preference) {
  .fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .fade-in.visible {
    opacity: 1;
    transform: none;
  }

  .fade-delay-1 { transition-delay: 0.1s; }
  .fade-delay-2 { transition-delay: 0.2s; }
  .fade-delay-3 { transition-delay: 0.3s; }
  .fade-delay-4 { transition-delay: 0.4s; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-photos {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-photo-placeholder {
    aspect-ratio: 16/9;
    max-width: 480px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .w-speaker-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .w-speaker-photo-placeholder {
    aspect-ratio: 16/9;
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  .section     { padding: 80px 0; }
  .section-sm  { padding: 48px 0; }

  .nav-links, .nav-right { display: none; }
  .nav-toggle { display: flex; }

  .nav-right .nav-lang { display: none; }

  .cards-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr 1fr; }

  .testimonials-grid { grid-template-columns: 1fr; gap: 40px; }

  .case-study-grid { grid-template-columns: 1fr; gap: 48px; }
  .case-metrics { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .case-metric-number { font-size: 1.5rem; }

  .consult-grid { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }

  .event-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px;
    gap: 24px;
  }

  .consultation-inner {
    flex-direction: column;
    gap: 32px;
  }

  .consultation-cta { text-align: left; }

  .tickets-grid { grid-template-columns: 1fr; }

  .for-whom-grid { grid-template-columns: 1fr; }

  .details-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats-row {
    gap: 0;
  }

  .sticky-cta { display: block; }

  .w-hero { padding-top: 130px; }
  .w-hero-grid { grid-template-columns: 1fr; }
  .w-hero-photo { display: none; }
}

@media (max-width: 480px) {
  .projects-grid { grid-template-columns: 1fr; }
  .details-grid  { grid-template-columns: 1fr; }
  .media-logos   { gap: 24px; }
  .client-logos  { gap: 24px; }

  .stats-row {
    flex-direction: column;
    gap: 24px;
  }

  .stat {
    padding: 0;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 24px;
  }

  .stat:last-child { border-bottom: none; }

  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { justify-content: center; }
}

/* ============================================================
   PAST TALKS & EVENTS
   ============================================================ */

.talks-with-photo {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  align-items: start;
}

.talks-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.talks-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.talks-photo {
  position: sticky;
  top: 100px;
  border-radius: var(--radius);
  overflow: hidden;
  height: 520px;
}

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

.talk-card {
  background: var(--bg-card);
  padding: 12px 20px;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}

.talk-card.hidden {
  display: none;
}

.talks-show-more {
  margin-top: 12px;
  background: none;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.8rem;
  padding: 8px 20px;
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}

.talks-show-more:hover {
  color: var(--text);
  border-color: var(--text-muted);
}

.talk-card:hover {
  background: rgba(255,255,255,0.04);
}

.talk-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.talk-title {
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text);
}

.talk-meta {
  font-size: 0.72rem;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1.4;
}

@media (max-width: 1024px) {
  .talks-with-photo { grid-template-columns: 1fr; }
  .talks-photo { display: none; }
}

@media (max-width: 480px) {
  .talks-list { grid-template-columns: 1fr; }
}
