/*
Theme Name: BAJ Theme
Theme URI: https://brandarchitectsjapan.com
Author: Brand Architects Japan
Author URI: https://brandarchitectsjapan.com
Description: BRAND ARCHITECTS JAPAN
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: Proprietary
Text Domain: baj-theme
*/

/* ─── CSS Variables ──────────────────────────────────────────────────────── */
:root {
  --bg:     #171516;
  --bg2:    #1E1D1C;
  --bg3:    #272524;
  --bg-dk:  #121011;
  --og:     #E8510A;
  --og-lt:  rgba(232,81,10,.12);
  --og-dk:  #C44008;
  --wh:     #FFFFFF;
  --gr:     #D0D0D0;
  --gr-dk:  #999999;
  --rule:   #333130;
  --rule2:  #4A4846;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Noto Sans JP', sans-serif;
  font-size: 15px;
  background: var(--bg);
  color: var(--gr);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Film grain texture */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: .028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; }
ul { list-style: none; }

/* ─── Navigation ─────────────────────────────────────────────────────────── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 60px;
  background: rgba(23,21,22,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
  padding: 0 40px;
}
.nav-inner {
  max-width: 1100px; margin: 0 auto; width: 100%; height: 100%;
  display: flex; align-items: center; gap: 40px;
}
.nav-logo {
  display: flex; align-items: center;
  flex-shrink: 0; text-decoration: none;
}
.nav-logo img {
  height: 36px; width: auto;
  max-width: 180px;
  filter: brightness(0) invert(1);
}
/* WP nav menu */
.nav-links {
  display: flex; gap: 28px; margin-left: auto;
  list-style: none; align-items: center;
}
.nav-links li a {
  font-size: 15px; font-weight: 500; letter-spacing: .06em;
  color: var(--gr); transition: color .2s; white-space: nowrap;
}
.nav-links li a:hover,
.nav-links li.current-menu-item a { color: var(--wh); }
.nav-links li.nav-link-diag a {
  color: var(--og); letter-spacing: .10em;
}
.nav-links li.nav-link-diag a::before {
  content: '·'; color: var(--og); margin-right: 6px;
}
.nav-cta {
  background: var(--og); color: var(--wh);
  font-size: 15px; font-weight: 700; letter-spacing: .06em;
  padding: 10px 22px; flex-shrink: 0;
  transition: background .2s; white-space: nowrap;
}
.nav-cta:hover { background: var(--og-dk); }

/* ─── Mobile Nav ─────────────────────────────────────────────────────────── */
.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; cursor: pointer;
  background: none; border: none; padding: 4px;
}
.nav-toggle span {
  display: block; width: 24px; height: 1.5px; background: var(--wh);
  transition: transform .3s, opacity .3s; border-radius: 1px;
}
.nav-overlay {
  position: fixed; inset: 0; background: rgba(18,16,17,.75);
  z-index: 200; opacity: 0; pointer-events: none; transition: opacity .3s;
}
.nav-overlay.open { opacity: 1; pointer-events: all; }
.nav-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: 280px;
  background: var(--bg2); border-left: 1px solid var(--rule);
  z-index: 300; padding: 28px 28px 40px;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.16,1,.3,1);
}
.nav-drawer.open { transform: translateX(0); }
.nav-drawer-top {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 36px; padding-bottom: 20px; border-bottom: 1px solid var(--rule);
}
.nav-drawer-close {
  background: none; border: none; color: var(--gr-dk); font-size: 20px;
  cursor: pointer; padding: 0; transition: color .2s; line-height: 1;
}
.nav-drawer-close:hover { color: var(--wh); }
.nav-drawer ul { list-style: none; display: flex; flex-direction: column; flex: 1; }
.nav-drawer ul li a {
  display: block; font-size: 18px; font-weight: 600; color: var(--gr);
  padding: 14px 0; border-bottom: 1px solid var(--rule);
  transition: color .2s; letter-spacing: .04em;
}
.nav-drawer ul li a:hover { color: var(--wh); }
.nav-drawer-cta {
  display: block; background: var(--og); color: var(--wh); text-align: center;
  padding: 14px; font-size: 15px; font-weight: 700;
  margin-top: 28px; transition: background .2s;
}
.nav-drawer-cta:hover { background: var(--og-dk); }

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none !important; }
  .nav-toggle { display: flex; }
}
@media (min-width: 769px) {
  .nav-overlay, .nav-drawer { display: none !important; }
  .nav-toggle { display: none !important; }
}

/* ─── Page Padding (nav offset) ─────────────────────────────────────────── */
.page-wrap { padding-top: 60px; }

/* ─── Buttons ────────────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-block; background: var(--og); color: var(--wh);
  font-size: 18px; font-weight: 700; letter-spacing: .08em;
  padding: 18px 40px; transition: background .2s;
}
.btn-primary:hover { background: var(--og-dk); }
.btn-secondary {
  display: inline-block; background: transparent; color: var(--wh);
  font-size: 18px; font-weight: 500; letter-spacing: .06em;
  padding: 17px 32px; border: 1px solid var(--rule2);
  transition: border-color .2s, color .2s;
}
.btn-secondary:hover { border-color: var(--gr); color: var(--wh); }

/* ─── Section Common ─────────────────────────────────────────────────────── */
.section-header {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 48px; gap: 20px;
  border-bottom: 1px solid var(--rule); padding-bottom: 20px;
}
.section-label {
  font-size: 15px; font-weight: 700; letter-spacing: .16em;
  color: var(--og); text-transform: uppercase;
}
.section-title {
  font-size: clamp(28px, 3.5vw, 44px); font-weight: 700;
  color: var(--wh); line-height: 1.2; letter-spacing: -.01em;
}
.section-title em { color: var(--og); font-style: normal; }
.see-all {
  font-size: 15px; color: var(--gr-dk); transition: color .2s; white-space: nowrap;
}
.see-all:hover { color: var(--og); }

/* ─── Hero Section ───────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh; padding: 140px 40px 100px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; border-bottom: 1px solid var(--rule); overflow: hidden;
  background-image:
    linear-gradient(135deg, rgba(18,16,17,.82) 0%, rgba(18,16,17,.68) 50%, rgba(23,21,22,.76) 100%),
    url('https://images.unsplash.com/photo-1734818217382-a0318e11ea62?w=1920&q=75&auto=format&fit=crop');
  background-size: cover; background-position: center right;
}
.hero-inner { max-width: 1100px; margin: 0 auto; width: 100%; }
.hero-eyebrow {
  font-size: 15px; font-weight: 700; letter-spacing: .16em;
  color: var(--og); text-transform: uppercase; margin-bottom: 24px;
}
.hero-headline {
  font-size: clamp(48px, 7vw, 96px); font-weight: 800; color: var(--wh);
  line-height: 1.1; letter-spacing: -.02em; margin-bottom: 32px;
}
.hero-headline em { color: var(--og); font-style: normal; display: block; }
.hero-sub {
  font-size: 18px; color: var(--gr); line-height: 1.8;
  max-width: 540px; margin-bottom: 48px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.hero-trust {
  display: flex; align-items: center; gap: 0;
  margin-top: 56px; flex-wrap: wrap;
}
.hero-trust-item { display: flex; flex-direction: column; padding: 0 28px 0 0; }
.hero-trust-item:first-child { padding-left: 0; }
.hero-trust-val { font-size: 24px; font-weight: 800; color: var(--og); line-height: 1.2; }
.hero-trust-label { font-size: 15px; color: var(--gr-dk); margin-top: 2px; }
.hero-trust-sep { width: 1px; height: 32px; background: var(--rule2); margin-right: 28px; }

/* ─── Numbers Section ────────────────────────────────────────────────────── */
.section-numbers {
  padding: 100px 40px; background: var(--bg-dk);
  border-bottom: 1px solid var(--rule);
}
.numbers-inner { max-width: 1100px; margin: 0 auto; }
.numbers-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--rule); margin-top: 48px;
}
.number-card {
  background: var(--bg-dk); padding: 40px 32px;
  border-top: 2px solid var(--og);
}
.number-card-val {
  font-size: 72px; font-weight: 800; color: var(--og); line-height: 1;
  text-shadow: 0 0 32px rgba(232,81,10,.35);
}
.number-card-unit { font-size: 22px; color: var(--gr); font-weight: 400; }
.number-card-title {
  font-size: 18px; font-weight: 700; color: var(--wh);
  margin: 16px 0 8px; border-top: 1px solid var(--rule); padding-top: 16px;
}
.number-card-desc { font-size: 15px; color: var(--gr); line-height: 1.7; }

/* ─── Services Section ───────────────────────────────────────────────────── */
.section-services {
  padding: 100px 40px; background: var(--bg);
  border-bottom: 1px solid var(--rule);
}
.services-inner { max-width: 1100px; margin: 0 auto; }
.services-issues {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--rule); margin-bottom: 60px;
}
.issue-card {
  background: var(--bg2); padding: 36px 32px;
}
.issue-card-num {
  font-size: 48px; font-weight: 800; color: var(--og);
  opacity: .3; line-height: 1; margin-bottom: 16px;
}
.issue-card-title { font-size: 19px; font-weight: 700; color: var(--wh); margin-bottom: 12px; }
.issue-card-desc { font-size: 15px; color: var(--gr); line-height: 1.75; }
.services-approach {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--rule);
}
.approach-card {
  background: var(--bg); padding: 36px 32px;
}
.approach-card-step {
  font-size: 15px; font-weight: 700; letter-spacing: .12em;
  color: var(--og); margin-bottom: 12px;
}
.approach-card-title { font-size: 19px; font-weight: 700; color: var(--wh); margin-bottom: 12px; }
.approach-card-desc { font-size: 15px; color: var(--gr); line-height: 1.75; }
.section-cta-row {
  display: flex; justify-content: center; align-items: center; gap: 16px;
  padding: 48px 0 0; border-top: 1px solid var(--rule); margin-top: 48px;
}

/* ─── Works Section ──────────────────────────────────────────────────────── */
.section-works {
  padding: 100px 40px; background: var(--bg-dk);
  border-bottom: 1px solid var(--rule);
}
.works-inner { max-width: 1100px; margin: 0 auto; }
.works-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--rule);
}
.work-card {
  background: var(--bg2); padding: 0; overflow: hidden;
  display: flex; flex-direction: column;
  transition: background .2s;
}
.work-card:hover { background: var(--bg3); }
.work-card-img {
  width: 100%; aspect-ratio: 16/9; object-fit: cover; opacity: .7;
  transition: opacity .3s;
}
.work-card:hover .work-card-img { opacity: .85; }
.work-card-body { padding: 28px 28px 32px; flex: 1; display: flex; flex-direction: column; }
.work-card-cat {
  font-size: 15px; color: var(--og); letter-spacing: .12em;
  text-transform: uppercase; margin-bottom: 10px;
}
.work-card-title { font-size: 19px; font-weight: 700; color: var(--wh); margin-bottom: 10px; }
.work-card-desc { font-size: 15px; color: var(--gr); line-height: 1.75; flex: 1; }
.work-card-meta {
  display: flex; gap: 8px; flex-wrap: wrap; margin-top: 20px;
}
.work-tag {
  font-size: 15px; color: var(--gr-dk);
  background: var(--bg3); padding: 4px 10px;
}

/* ─── Testimonials Section ───────────────────────────────────────────────── */
.section-testimonials {
  padding: 100px 40px; background: var(--bg2);
  border-bottom: 1px solid var(--rule);
}
.testimonials-inner { max-width: 1100px; margin: 0 auto; }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px; background: var(--rule); margin-top: 48px;
}
.t-card {
  background: var(--bg); padding: 48px 40px;
  border-top: 2px solid var(--og);
  display: flex; flex-direction: column; gap: 24px;
}
.t-quote {
  font-size: 17px; color: var(--wh); line-height: 1.8;
  font-weight: 500;
}
.t-meta { border-top: 1px solid var(--rule); padding-top: 20px; }
.t-name { font-size: 15px; font-weight: 700; color: var(--wh); }
.t-role { font-size: 15px; color: var(--gr-dk); margin-top: 2px; }

/* ─── Why BAJ Section ────────────────────────────────────────────────────── */
.section-why {
  padding: 100px 40px; background: var(--bg);
  border-bottom: 1px solid var(--rule);
}
.why-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start;
}
.why-hl {
  position: sticky; top: 80px;
}
.why-statement {
  font-size: clamp(24px, 3vw, 36px); font-weight: 800;
  line-height: 1.25; color: var(--wh); margin-top: 16px; margin-bottom: 20px;
}
.why-statement em { color: var(--og); font-style: normal; }
.why-sub { font-size: 15px; color: var(--gr); line-height: 1.8; }
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th, .compare-table td {
  padding: 16px 20px; font-size: 15px; text-align: left;
  border-bottom: 1px solid var(--rule);
}
.compare-table thead th {
  font-size: 15px; font-weight: 700; letter-spacing: .08em;
  color: var(--wh); background: var(--bg2); padding: 18px 20px;
}
.compare-table thead th:first-child { width: 28%; }
.compare-table tbody td { color: var(--gr); vertical-align: top; line-height: 1.7; }
.compare-table tbody td:nth-child(2) { color: var(--og); font-weight: 500; }
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table tbody tr:hover td { background: var(--bg2); }

/* ─── Founder Brief Section ──────────────────────────────────────────────── */
.section-founder {
  padding: 100px 40px; background-size: cover; background-position: center;
  background-image:
    linear-gradient(to right, rgba(18,16,17,.95) 40%, rgba(18,16,17,.75) 100%),
    url('https://images.unsplash.com/photo-1763365697097-0ea9fbe65cec?w=1920&q=75&auto=format&fit=crop');
  border-bottom: 1px solid var(--rule);
}
.founder-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: start;
}
.founder-hl { position: sticky; top: 80px; }
.founder-eyebrow {
  font-size: 15px; font-weight: 700; letter-spacing: .16em;
  color: var(--og); text-transform: uppercase; margin-bottom: 16px;
}
.founder-name {
  font-size: clamp(28px, 3vw, 40px); font-weight: 800;
  color: var(--wh); line-height: 1.2; margin-bottom: 8px;
}
.founder-role { font-size: 15px; color: var(--gr-dk); letter-spacing: .08em; }
.founder-story { font-size: 15px; color: var(--gr); line-height: 1.9; margin-bottom: 40px; }
.founder-beliefs {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--rule);
}
.belief-item { background: rgba(30,29,28,.7); padding: 24px; }
.belief-item strong { display: block; font-size: 17px; color: var(--wh); margin-bottom: 6px; }
.belief-item p { font-size: 15px; color: var(--gr); line-height: 1.7; }

/* ─── Knowledge / Note Section ───────────────────────────────────────────── */
.section-knowledge {
  padding: 100px 40px; background: var(--bg);
  border-bottom: 1px solid var(--rule);
}
.knowledge-inner { max-width: 1100px; margin: 0 auto; }
.articles-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--rule);
}
.article-card {
  background: var(--bg2); padding: 32px 28px;
  display: flex; flex-direction: column;
  transition: background .2s;
}
.article-card:hover { background: var(--bg3); }
.article-card-cat {
  font-size: 15px; color: var(--og); letter-spacing: .12em;
  margin-bottom: 12px;
}
.article-card-title {
  font-size: 19px; font-weight: 700; color: var(--wh);
  line-height: 1.4; margin-bottom: 12px; flex: 1;
}
.article-card-desc { font-size: 15px; color: var(--gr); line-height: 1.75; }
.article-card-meta {
  font-size: 15px; color: var(--gr-dk); margin-top: 16px;
  padding-top: 16px; border-top: 1px solid var(--rule);
}

/* ─── CTA Section ────────────────────────────────────────────────────────── */
.section-cta {
  padding: 140px 40px;
  background-image:
    linear-gradient(135deg, rgba(18,16,17,.82) 0%, rgba(232,81,10,.06) 60%, rgba(18,16,17,.9) 100%),
    url('https://images.unsplash.com/photo-1602475063211-3d98d60e3b1f?w=1920&q=75&auto=format&fit=crop');
  background-size: cover; background-position: center;
  border-bottom: 1px solid var(--rule);
}
.cta-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.cta-headline {
  font-size: clamp(28px, 3.5vw, 44px); font-weight: 800;
  color: var(--wh); line-height: 1.2;
}
.cta-headline em { color: var(--og); font-style: normal; display: block; margin-top: 4px; }
.cta-body { font-size: 15px; color: var(--gr); line-height: 1.8; margin-top: 16px; }
.cta-actions { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.cta-note { font-size: 15px; color: var(--gr-dk); margin-top: 16px; }

/* ─── Footer ─────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--bg); border-top: 1px solid var(--rule);
  padding: 60px 40px 40px;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: flex-start;
  flex-wrap: wrap; gap: 40px;
}
.footer-brand {}
.footer-logo {
  display: flex; align-items: center; margin-bottom: 8px;
}
.footer-logo img {
  height: 18px; width: auto; opacity: .55;
  filter: brightness(0) invert(1);
  transition: opacity .2s;
}
.footer-logo:hover img { opacity: .85; }
.footer-tagline { font-size: 15px; color: var(--gr-dk); }
.footer-nav { display: flex; gap: 24px; flex-wrap: wrap; margin-bottom: 8px; }
.footer-nav a { font-size: 15px; color: var(--gr-dk); transition: color .2s; }
.footer-nav a:hover { color: var(--wh); }
.footer-sns { display: flex; gap: 20px; margin-top: 16px; }
.footer-sns a { color: var(--gr-dk); transition: color .2s; }
.footer-sns a:hover { color: var(--wh); }
.footer-bottom {
  max-width: 1100px; margin: 40px auto 0;
  padding-top: 24px; border-top: 1px solid var(--rule);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.footer-copy { font-size: 13px; color: var(--gr-dk); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 13px; color: var(--gr-dk); transition: color .2s; }
.footer-legal a:hover { color: var(--gr); }

/* ─── Floating Widget ────────────────────────────────────────────────────── */
.diag-float {
  position: fixed; bottom: 32px; right: 32px; z-index: 500;
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--og); overflow: hidden;
  box-shadow: 0 4px 24px rgba(232,81,10,.45);
  transition: transform .3s, box-shadow .3s;
  display: flex; align-items: center; justify-content: center;
}
.diag-float:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 32px rgba(232,81,10,.55);
}
.diag-float img { width: 54px; height: 54px; object-fit: contain; filter: brightness(0) invert(1); }
.diag-float-tooltip {
  position: absolute; bottom: 88px; right: 0;
  background: var(--bg2); border: 1px solid var(--rule);
  padding: 10px 14px; white-space: nowrap; font-size: 13px; color: var(--wh);
  opacity: 0; transform: translateY(8px); pointer-events: none;
  transition: opacity .2s, transform .2s;
}
.diag-float:hover .diag-float-tooltip { opacity: 1; transform: translateY(0); }

/* ─── Scroll-to-top ──────────────────────────────────────────────────────── */
.scroll-top {
  position: fixed; bottom: 28px; left: 28px; z-index: 400;
  width: 44px; height: 44px; background: var(--bg2);
  border: 1px solid var(--rule2);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; opacity: 0; transform: translateY(8px);
  transition: opacity .3s, transform .3s, background .2s;
  pointer-events: none;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.scroll-top:hover { background: var(--bg3); border-color: var(--gr-dk); }
.scroll-top svg { width: 18px; height: 18px; stroke: var(--gr); }

/* ─── Page Hero (inner pages) ────────────────────────────────────────────── */
.page-hero {
  position: relative; padding: 120px 40px 80px;
  overflow: hidden; border-bottom: 1px solid var(--rule);
  background: var(--bg-dk);
}
.page-hero-bg {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-size: clamp(80px, 12vw, 160px); font-weight: 900; color: var(--wh);
  opacity: .03; letter-spacing: .06em; white-space: nowrap; pointer-events: none;
}
.page-hero-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }
.page-hero-eyebrow {
  font-size: 15px; font-weight: 700; letter-spacing: .16em;
  color: var(--og); text-transform: uppercase; margin-bottom: 20px;
}
.page-hero-title {
  font-size: clamp(36px, 5vw, 64px); font-weight: 800;
  color: var(--wh); line-height: 1.1; letter-spacing: -.01em;
}
.page-hero-title em { color: var(--og); font-style: normal; }
.page-hero-sub {
  font-size: 18px; color: var(--gr); max-width: 580px;
  line-height: 1.8; margin-top: 24px;
}

/* ─── Ticker ─────────────────────────────────────────────────────────────── */
.ticker { overflow: hidden; background: var(--bg2); border-bottom: 1px solid var(--rule); padding: 16px 0; }
.ticker-inner { display: flex; gap: 0; animation: ticker-scroll 24s linear infinite; white-space: nowrap; }
.ticker-inner span {
  font-size: 15px; font-weight: 700; letter-spacing: .16em;
  color: var(--gr-dk); text-transform: uppercase; padding: 0 32px;
}
.ticker-inner em {
  font-style: normal; color: var(--og);
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .services-issues, .services-approach, .works-grid { grid-template-columns: repeat(2, 1fr); }
  .why-inner, .founder-inner, .cta-inner { grid-template-columns: 1fr; gap: 48px; }
  .why-hl, .founder-hl { position: static; }
  .testimonials-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .site-nav { padding: 0 20px; }
  .hero { padding: 100px 20px 60px; }
  .hero-trust { gap: 16px 0; }
  .hero-trust-sep { height: 20px; }
  .section-numbers, .section-services, .section-works,
  .section-testimonials, .section-why, .section-knowledge,
  .section-cta, .section-founder { padding: 60px 20px; }
  .numbers-grid, .services-issues, .services-approach,
  .works-grid, .articles-grid { grid-template-columns: 1fr; }
  .founder-beliefs { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-inner { flex-direction: column; gap: 24px; }
  .page-hero { padding: 80px 20px 48px; }
}
