*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --p950:#1a0f2e; --p900:#2d1b4e; --p800:#3d2566; --p700:#533580;
  --p600:#6b469a; --p500:#8558b4; --p400:#a67dcc; --p300:#c4a3e0;
  --p200:#ddc8f0; --p100:#f0e6fa; --p50:#f9f4fe;
  --white:#ffffff; --black:#0e0e0d;
  --g50:#f8f8f6; --g100:#f2f1ee; --g200:#e4e3de; --g400:#aaa9a3; --g600:#68675f;
  --gold:#c9a84c;
  --fd:'Cormorant Garamond',Georgia,serif;
  --fb:'DM Sans',system-ui,sans-serif;
  --ease:cubic-bezier(0.16,1,0.3,1);
  --max:1280px;
}
html { scroll-behavior: smooth; }
body { font-family: var(--fb); background: var(--white); color: var(--black); overflow-x: hidden; }

/* ─── TOPBAR ─── */
.topbar { background: var(--p950); padding: 8px 48px; display: flex; align-items: center; justify-content: space-between; font-size: 11px; color: var(--p300); letter-spacing: .5px; }
.topbar a { color: var(--p300); text-decoration: none; transition: color .15s; }
.topbar a:hover { color: var(--white); }
.topbar-sep { display: inline-block; width: 1px; height: 10px; background: var(--p700); margin: 0 12px; vertical-align: middle; }

/* ─── HEADER ─── */
.site-header { position: sticky; top: 0; z-index: 100; background: var(--white); border-bottom: 1px solid rgba(83,53,128,.12); transition: box-shadow .3s; }
.site-header.scrolled { box-shadow: 0 2px 24px rgba(45,27,78,.10); }
.header-progress { position: absolute; bottom: -1px; left: 0; height: 2px; background: var(--p500); width: 0%; opacity: 0; transition: opacity .3s, width .05s linear; }
.site-header.scrolled .header-progress { opacity: 1; }
.header-inner { max-width: var(--max); margin: 0 auto; padding: 0 48px; display: flex; align-items: stretch; height: 64px; transition: height .3s var(--ease); }
.site-header.small .header-inner { height: 50px; }
.h-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; margin-right: 28px; flex-shrink: 0; }
.h-logo:hover { opacity: .85; }
.logo-mark { width: 32px; height: 32px; border-radius: 3px; background: var(--p900); display: flex; align-items: center; justify-content: center; transition: width .3s var(--ease), height .3s var(--ease); }
.site-header.small .logo-mark { width: 28px; height: 28px; }
.logo-name { font-family: var(--fd); font-size: 19px; font-weight: 600; color: var(--p900); letter-spacing: .5px; line-height: 1; transition: font-size .3s; }
.site-header.small .logo-name { font-size: 17px; }
.logo-tagline { font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--g400); font-weight: 300; margin-top: 3px; max-height: 16px; overflow: hidden; transition: opacity .3s, max-height .3s; }
.site-header.small .logo-tagline { opacity: 0; max-height: 0; }

/* desktop nav */
.h-nav { display: flex; align-items: stretch; flex: 1; list-style: none; border-left: 1px solid rgba(83,53,128,.1); }
.h-nav-item { position: relative; border-right: 1px solid rgba(83,53,128,.1); }
.h-nav-btn { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; gap: 2px; padding: 0 20px; height: 100%; cursor: pointer; background: none; border: none; white-space: nowrap; position: relative; overflow: hidden; }
.h-nav-btn::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--p500); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
.h-nav-btn:hover::after, .h-nav-item.open .h-nav-btn::after, .h-nav-item.active .h-nav-btn::after { transform: scaleX(1); }
.h-nav-btn::before { content: ''; position: absolute; inset: 0; background: var(--p50); opacity: 0; transition: opacity .2s; }
.h-nav-btn:hover::before, .h-nav-item.open .h-nav-btn::before { opacity: 1; }
.nav-eyebrow { font-size: 9px; letter-spacing: 1.4px; text-transform: uppercase; color: var(--g400); font-weight: 400; line-height: 1; position: relative; z-index: 1; transition: color .2s; }
.h-nav-item.active .nav-eyebrow { color: var(--p500); }
.nav-label { font-size: 13px; font-weight: 500; color: var(--black); display: flex; align-items: center; gap: 4px; line-height: 1; position: relative; z-index: 1; }
.nav-chevron { width: 10px; height: 10px; stroke: var(--g400); flex-shrink: 0; transition: transform .3s var(--ease), stroke .2s; }
.h-nav-item.open .nav-chevron { transform: rotate(180deg); stroke: var(--p500); }
.h-right { display: flex; align-items: center; margin-left: auto; border-left: 1px solid rgba(83,53,128,.1); }
.h-lang { font-size: 11px; color: var(--g600); padding: 0 18px; height: 100%; display: flex; align-items: center; border-right: 1px solid rgba(83,53,128,.1); cursor: pointer; position: relative; transition: background .15s; white-space: nowrap; }
.h-lang::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--p500); transform: scaleX(0); transition: transform .3s var(--ease); }
.h-lang:hover { background: var(--p50); }
.h-lang:hover::after { transform: scaleX(1); }
.h-cta { display: flex; align-items: center; gap: 7px; padding: 0 24px; height: 100%; background: var(--p900); color: var(--white); font-size: 12px; font-weight: 500; text-decoration: none; white-space: nowrap; position: relative; overflow: hidden; transition: background .2s; }
.h-cta::before { content: ''; position: absolute; top: 0; left: -100%; width: 60%; height: 100%; background: linear-gradient(90deg, transparent, rgba(166,125,204,.2), transparent); transition: left .5s ease; }
.h-cta:hover::before { left: 160%; }
.h-cta:hover { background: var(--p800); }
.h-cta svg { width: 12px; height: 12px; stroke: var(--p300); flex-shrink: 0; transition: transform .2s; }
.h-cta:hover svg { transform: translateX(2px); }

/* dropdown */
.h-dropdown { position: absolute; top: calc(100% + 1px); left: 0; background: var(--white); border: 1px solid rgba(83,53,128,.15); border-top: 2.5px solid var(--p500); box-shadow: 0 12px 40px rgba(45,27,78,.12); min-width: 220px; padding: 6px 0; opacity: 0; transform: translateY(-5px); pointer-events: none; transition: opacity .2s var(--ease), transform .2s var(--ease); }
.h-nav-item:nth-last-child(-n+2) .h-dropdown { left: auto; right: 0; }
.h-nav-item.open .h-dropdown { opacity: 1; transform: translateY(0); pointer-events: all; }
.dd-row { display: flex; align-items: center; justify-content: space-between; padding: 10px 16px; text-decoration: none; cursor: pointer; opacity: 0; transition: background .15s; position: relative; }
.h-nav-item.open .dd-row { animation: ddIn .2s var(--ease) forwards; }
.h-nav-item.open .dd-row:nth-child(1) { animation-delay: .02s; }
.h-nav-item.open .dd-row:nth-child(2) { animation-delay: .05s; }
.h-nav-item.open .dd-row:nth-child(3) { animation-delay: .08s; }
.h-nav-item.open .dd-row:nth-child(4) { animation-delay: .11s; }
.h-nav-item.open .dd-row:nth-child(5) { animation-delay: .14s; }
.h-nav-item.open .dd-row:nth-child(6) { animation-delay: .17s; }
@keyframes ddIn { from { opacity: 0; transform: translateX(-4px); } to { opacity: 1; transform: translateX(0); } }
.dd-row::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: var(--p400); transform: scaleY(0); transform-origin: bottom; transition: transform .2s var(--ease); }
.dd-row:hover { background: var(--p50); }
.dd-row:hover::before { transform: scaleY(1); }
.dd-row-name { font-size: 13px; font-weight: 500; color: var(--black); }
.dd-row svg { width: 10px; height: 10px; stroke: var(--g400); transition: transform .2s, stroke .2s; }
.dd-row:hover svg { transform: translateX(2px); stroke: var(--p500); }
.dd-sub { display: flex; align-items: center; gap: 8px; padding: 7px 16px 7px 28px; text-decoration: none; opacity: 0; transition: background .15s; }
.h-nav-item.open .dd-sub { animation: ddIn .2s var(--ease) forwards; }
.h-nav-item.open .dd-sub:nth-child(2) { animation-delay: .05s; }
.h-nav-item.open .dd-sub:nth-child(3) { animation-delay: .08s; }
.h-nav-item.open .dd-sub:nth-child(4) { animation-delay: .11s; }
.dd-sub:hover { background: var(--p50); }
.dd-sub-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--p300); flex-shrink: 0; transition: background .15s; }
.dd-sub:hover .dd-sub-dot { background: var(--p500); }
.dd-sub-name { font-size: 12px; color: var(--g600); transition: color .15s; }
.dd-sub:hover .dd-sub-name { color: var(--p800); }
.dd-divider { height: 1px; background: rgba(83,53,128,.08); margin: 4px 0; }

/* ─── HAMBURGER ─── */
.mob-trigger { display: none; align-items: center; justify-content: center; margin-left: auto; width: 44px; height: 44px; background: none; border: none; cursor: pointer; flex-shrink: 0; padding: 0; }
.mob-trigger-bars { position: relative; width: 24px; height: 16px; }
.mob-trigger-bar { position: absolute; left: 0; right: 0; height: 1.5px; background: var(--p900); border-radius: 2px; transition: transform .4s var(--ease), opacity .3s, top .4s var(--ease), width .4s var(--ease); }
.mob-trigger-bar:nth-child(1) { top: 0; }
.mob-trigger-bar:nth-child(2) { top: 7px; width: 16px; }
.mob-trigger-bar:nth-child(3) { top: 14px; }
.mob-trigger.active .mob-trigger-bar:nth-child(1) { top: 7px; transform: rotate(45deg); }
.mob-trigger.active .mob-trigger-bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mob-trigger.active .mob-trigger-bar:nth-child(3) { top: 7px; transform: rotate(-45deg); }

/* ─── MOBILE DRAWER ─── */
.mob-drawer { display: none; position: fixed; inset: 0; z-index: 999; }
.mob-drawer__bd { position: absolute; inset: 0; background: rgba(14,5,28,.72); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); opacity: 0; transition: opacity .4s; }
.mob-drawer.open .mob-drawer__bd { opacity: 1; }
.mob-drawer__panel { position: absolute; top: 0; right: 0; bottom: 0; width: min(340px, 92vw); background: var(--p950); display: flex; flex-direction: column; transform: translateX(100%); transition: transform .45s var(--ease); overflow: hidden; }
.mob-drawer.open .mob-drawer__panel { transform: translateX(0); }
.mob-drawer__panel::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--p700), var(--p400), var(--p700)); z-index: 1; }
.mob-drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 22px 24px 18px; border-bottom: 1px solid rgba(255,255,255,.07); flex-shrink: 0; position: relative; z-index: 1; }
.mob-drawer__logo { font-family: var(--fd); font-size: 22px; font-weight: 600; color: var(--white); letter-spacing: 1px; text-decoration: none; }
.mob-drawer__logo span { display: block; font-family: var(--fb); font-size: 9px; font-weight: 300; letter-spacing: 2.5px; text-transform: uppercase; color: var(--p400); margin-top: 2px; }
.mob-drawer__close { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.05); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background .2s, border-color .2s; flex-shrink: 0; }
.mob-drawer__close:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.2); }
.mob-drawer__close svg { width: 13px; height: 13px; stroke: rgba(255,255,255,.6); }
.mob-drawer__body { flex: 1; overflow-y: auto; -webkit-overflow-scrolling: touch; padding: 8px 0; }
.mda { border-bottom: 1px solid rgba(255,255,255,.06); }
.mda__trigger { display: flex; align-items: center; justify-content: space-between; padding: 16px 24px; cursor: pointer; transition: background .15s; user-select: none; -webkit-tap-highlight-color: transparent; }
.mda__trigger:active { background: rgba(255,255,255,.04); }
.mda__eyebrow { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--p500); margin-bottom: 3px; }
.mda__name { font-size: 16px; font-weight: 500; color: var(--white); line-height: 1; }
.mda__chevron { width: 18px; height: 18px; flex-shrink: 0; stroke: var(--p400); transition: transform .35s var(--ease), stroke .2s; }
.mda.open .mda__chevron { transform: rotate(180deg); stroke: var(--p300); }
.mda__sub { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.mda.open .mda__sub { max-height: 500px; }
.mda__link { display: flex; align-items: center; gap: 12px; padding: 12px 24px 12px 40px; text-decoration: none; transition: background .15s; -webkit-tap-highlight-color: transparent; }
.mda__link:active { background: rgba(255,255,255,.04); }
.mda__dot { width: 4px; height: 4px; border-radius: 50%; background: var(--p600); flex-shrink: 0; transition: background .15s; }
.mda__link:hover .mda__dot { background: var(--p300); }
.mda__link-name { font-size: 14px; color: rgba(255,255,255,.55); transition: color .15s; }
.mda__link:hover .mda__link-name { color: rgba(255,255,255,.85); }
.mob-drawer__foot { padding: 20px 24px 32px; border-top: 1px solid rgba(255,255,255,.07); flex-shrink: 0; background: var(--p950); }
.mob-drawer__cta { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 15px 20px; background: var(--p700); color: var(--white); font-size: 13px; font-weight: 500; text-decoration: none; border-radius: 2px; margin-bottom: 20px; transition: background .2s; -webkit-tap-highlight-color: transparent; }
.mob-drawer__cta:active { background: var(--p600); }
.mob-drawer__cta svg { width: 12px; height: 12px; stroke: var(--p300); }
.mob-drawer__contacts { display: flex; flex-direction: column; gap: 6px; }
.mob-drawer__contact { font-size: 12px; color: rgba(255,255,255,.35); }
.mob-drawer__contact a { color: rgba(255,255,255,.35); text-decoration: none; }
.mob-drawer__contact a:hover { color: rgba(255,255,255,.6); }

/* ─── HERO ─── */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; background: var(--p950); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: var(--p950); }
.hero-img { position: absolute; inset: 0; overflow: hidden; }
.hero-img img { width: 100%; height: 100%; object-fit: cover; object-position: center center; filter: brightness(.42) saturate(.75); display: block; }
.hero-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, rgba(26,15,46,.88) 0%, rgba(26,15,46,.6) 50%, rgba(26,15,46,.25) 100%); }
.hero-pattern { position: absolute; inset: 0; background-image: linear-gradient(rgba(107,70,154,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(107,70,154,.06) 1px, transparent 1px); background-size: 64px 64px; }
.hero-glow { position: absolute; top: -20%; right: -10%; width: 60%; height: 80%; background: radial-gradient(ellipse at center, rgba(107,70,154,.3) 0%, transparent 70%); }
.hero-inner { position: relative; z-index: 2; max-width: var(--max); margin: 0 auto; padding: 120px 48px 100px; display: grid; grid-template-columns: 1fr 420px; gap: 80px; align-items: center; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--p300); margin-bottom: 24px; opacity: 0; animation: fadeUp .8s var(--ease) .2s forwards; }
.hero-eyebrow-line { width: 32px; height: 1px; background: var(--p400); }
.hero-title { font-family: var(--fd); font-size: clamp(42px, 5.5vw, 72px); font-weight: 500; line-height: 1.1; letter-spacing: -1px; color: var(--white); margin-bottom: 28px; opacity: 0; animation: fadeUp .8s var(--ease) .35s forwards; }
.hero-title em { font-style: italic; color: var(--p300); }
.hero-desc { font-size: 16px; color: rgba(255,255,255,.65); line-height: 1.75; max-width: 520px; margin-bottom: 40px; opacity: 0; animation: fadeUp .8s var(--ease) .5s forwards; }
.hero-actions { display: flex; gap: 12px; align-items: center; opacity: 0; animation: fadeUp .8s var(--ease) .65s forwards; }
.btn-primary { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; background: var(--white); color: var(--p900); font-size: 13px; font-weight: 500; text-decoration: none; border-radius: 2px; transition: background .2s, transform .2s; }
.btn-primary:hover { background: var(--p100); transform: translateY(-1px); }
.btn-primary svg { width: 13px; height: 13px; stroke: var(--p700); transition: transform .2s; }
.btn-primary:hover svg { transform: translateX(2px); }
.btn-ghost { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.8); font-size: 13px; font-weight: 400; text-decoration: none; border-radius: 2px; transition: border-color .2s, color .2s; }
.btn-ghost:hover { border-color: rgba(255,255,255,.5); color: var(--white); }
.hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08); opacity: 0; animation: fadeUp .8s var(--ease) .8s forwards; }
.stat { padding: 28px 24px; background: rgba(45,27,78,.5); backdrop-filter: blur(8px); }
.stat-num { font-family: var(--fd); font-size: 48px; font-weight: 500; color: var(--white); line-height: 1; margin-bottom: 6px; }
.stat-num span { font-size: 28px; color: var(--p300); }
.stat-label { font-size: 11px; color: rgba(255,255,255,.5); letter-spacing: .5px; line-height: 1.4; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.hero-strip { position: absolute; bottom: 0; left: 0; right: 0; background: rgba(255,255,255,.04); border-top: 1px solid rgba(255,255,255,.06); padding: 16px 48px; display: flex; align-items: center; gap: 48px; overflow-x: auto; }
.strip-item { display: flex; align-items: center; gap: 10px; white-space: nowrap; flex-shrink: 0; }
.strip-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--p400); }
.strip-text { font-size: 12px; color: rgba(255,255,255,.45); letter-spacing: .3px; }
.strip-sep { width: 1px; height: 16px; background: rgba(255,255,255,.1); flex-shrink: 0; }

/* ─── INTRO ─── */
.intro { background: var(--white); padding: 100px 48px; }
.intro-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.intro-eyebrow { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--p500); margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.intro-eyebrow::after { content: ''; flex: 1; height: 1px; background: var(--p200); }
.intro-title { font-family: var(--fd); font-size: clamp(32px, 3.5vw, 48px); font-weight: 500; line-height: 1.2; letter-spacing: -.5px; color: var(--p950); margin-bottom: 24px; }
.intro-title em { font-style: italic; color: var(--p600); }
.intro-body { font-size: 15px; color: var(--g600); line-height: 1.8; }
.intro-body p + p { margin-top: 16px; }
.intro-right { padding-top: 52px; }
.pillar { padding: 24px 0; border-top: 1px solid var(--g200); display: grid; grid-template-columns: 40px 1fr; gap: 16px; align-items: start; transition: border-color .2s; }
.pillar:last-child { border-bottom: 1px solid var(--g200); }
.pillar:hover { border-color: var(--p300); }
.pillar-num { font-family: var(--fd); font-size: 13px; color: var(--p400); padding-top: 3px; }
.pillar-title { font-size: 15px; font-weight: 500; color: var(--p950); margin-bottom: 6px; }
.pillar-desc { font-size: 13px; color: var(--g600); line-height: 1.65; margin-bottom: 10px; }
.pillar-link { font-size: 12px; font-weight: 500; color: var(--p600); text-decoration: none; display: inline-flex; align-items: center; gap: 5px; transition: gap .2s, color .2s; }
.pillar-link:hover { gap: 8px; color: var(--p800); }
.pillar-link svg { width: 11px; height: 11px; stroke: currentColor; }

/* ─── UNITS ─── */
.units { background: var(--p950); padding: 100px 48px; }
.units-inner { max-width: var(--max); margin: 0 auto; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 48px; }
.section-eyebrow { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--p400); margin-bottom: 12px; }
.section-title { font-family: var(--fd); font-size: clamp(28px, 3vw, 40px); font-weight: 500; color: var(--white); line-height: 1.2; letter-spacing: -.3px; }
.section-link { font-size: 12px; color: var(--p300); text-decoration: none; display: flex; align-items: center; gap: 5px; padding-bottom: 4px; border-bottom: 1px solid var(--p700); transition: color .2s, border-color .2s; }
.section-link:hover { color: var(--white); border-color: var(--p400); }
.section-link svg { width: 11px; height: 11px; stroke: currentColor; }
.units-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.06); }
.unit { padding: 32px 24px; background: var(--p950); cursor: pointer; position: relative; overflow: hidden; transition: background .25s; }
.unit::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--p400); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
.unit:hover { background: var(--p900); }
.unit:hover::before { transform: scaleX(1); }
.unit-roman { font-family: var(--fd); font-size: 13px; color: var(--p600); letter-spacing: 1px; margin-bottom: 16px; font-style: italic; }
.unit-title { font-size: 15px; font-weight: 500; color: var(--white); margin-bottom: 10px; line-height: 1.3; }
.unit-desc { font-size: 12px; color: rgba(255,255,255,.45); line-height: 1.6; margin-bottom: 20px; }
.unit-tags { display: flex; flex-wrap: wrap; gap: 5px; }
.unit-tag { font-size: 10px; padding: 2px 8px; border-radius: 100px; border: 1px solid rgba(166,125,204,.2); color: var(--p300); letter-spacing: .3px; }

/* ─── METHODOLOGY ─── */
.method { background: var(--g50); padding: 100px 48px; }
.method-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 480px 1fr; gap: 80px; align-items: center; }
.method-image { position: relative; aspect-ratio: 4/5; border-radius: 2px; overflow: hidden; }
.method-image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.8); }
.method-image-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(45,27,78,.7) 0%, rgba(107,70,154,.3) 100%); }
.method-image-quote { position: absolute; bottom: 32px; left: 32px; right: 32px; font-family: var(--fd); font-size: 22px; font-style: italic; color: var(--white); line-height: 1.35; }
.method-image-quote cite { display: block; font-family: var(--fb); font-size: 11px; font-style: normal; color: rgba(255,255,255,.55); letter-spacing: 1px; text-transform: uppercase; margin-top: 12px; }
.method-title { font-family: var(--fd); font-size: clamp(30px, 3.5vw, 44px); font-weight: 500; line-height: 1.2; letter-spacing: -.5px; color: var(--p950); margin-bottom: 24px; margin-top: 52px; }
.method-title em { font-style: italic; color: var(--p600); }
.method-body { font-size: 15px; color: var(--g600); line-height: 1.8; margin-bottom: 40px; }
.method-points { display: flex; flex-direction: column; gap: 0; }
.method-point { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--g200); }
.method-point:first-child { border-top: 1px solid var(--g200); }
.mp-icon { width: 36px; height: 36px; border-radius: 50%; background: var(--p100); flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.mp-icon svg { width: 16px; height: 16px; stroke: var(--p600); }
.mp-title { font-size: 14px; font-weight: 500; color: var(--p950); margin-bottom: 4px; }
.mp-text { font-size: 13px; color: var(--g600); line-height: 1.6; }

/* ─── TÜRKİYE TEMSİLCİLİĞİ ─── */
.tr-rep { background: var(--p950); padding: 80px 48px; position: relative; overflow: hidden; }
.tr-rep-pattern { position: absolute; inset: 0; background-image: linear-gradient(rgba(107,70,154,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(107,70,154,.06) 1px, transparent 1px); background-size: 56px 56px; pointer-events: none; }
.tr-rep-inner { position: relative; z-index: 2; max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.tr-rep-eyebrow { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--p400); margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.tr-rep-eyebrow::after { content: ''; flex: 1; height: 1px; background: var(--p700); }
.tr-rep-title { font-family: var(--fd); font-size: clamp(30px, 3.5vw, 48px); font-weight: 500; line-height: 1.15; letter-spacing: -.5px; color: var(--white); margin-bottom: 20px; }
.tr-rep-title em { font-style: italic; color: var(--p300); }
.tr-rep-body { font-size: 15px; color: rgba(255,255,255,.55); line-height: 1.85; margin-bottom: 36px; }
.tr-rep-actions { display: flex; gap: 12px; align-items: center; }
.btn-rep-primary { display: inline-flex; align-items: center; gap: 8px; padding: 13px 26px; background: var(--p700); color: var(--white); font-size: 13px; font-weight: 500; text-decoration: none; border-radius: 2px; transition: background .2s; }
.btn-rep-primary:hover { background: var(--p600); }
.btn-rep-primary svg { width: 12px; height: 12px; stroke: var(--p300); transition: transform .2s; }
.btn-rep-primary:hover svg { transform: translateX(2px); }
.btn-rep-ghost { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; border: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.7); font-size: 13px; text-decoration: none; border-radius: 2px; transition: border-color .2s, color .2s; }
.btn-rep-ghost:hover { border-color: rgba(255,255,255,.4); color: var(--white); }
.tr-rep-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-top: 2px solid var(--p400); padding: 36px; }
.tr-rep-card-label { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--p400); margin-bottom: 20px; }
.tr-rep-person { display: flex; align-items: center; gap: 16px; padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,.07); margin-bottom: 24px; }
.tr-rep-avatar { width: 52px; height: 52px; border-radius: 50%; background: var(--p800); border: 2px solid var(--p600); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.tr-rep-avatar svg { width: 22px; height: 22px; stroke: var(--p300); }
.tr-rep-name { font-family: var(--fd); font-size: 20px; font-weight: 500; color: var(--white); line-height: 1.2; }
.tr-rep-title-small { font-size: 11px; color: var(--p400); margin-top: 3px; letter-spacing: .3px; }
.tr-rep-contact { display: flex; align-items: center; gap: 10px; padding: 14px 16px; background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.06); }
.tr-rep-contact svg { width: 14px; height: 14px; stroke: var(--p400); flex-shrink: 0; }
.tr-rep-contact a { font-size: 13px; color: var(--p300); text-decoration: none; transition: color .15s; }
.tr-rep-contact a:hover { color: var(--white); }

/* ─── PUBLICATIONS ─── */
.pubs { background: var(--white); padding: 100px 48px; }
.pubs-inner { max-width: var(--max); margin: 0 auto; }
.pubs-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 48px; }
.pubs-eyebrow { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--p500); margin-bottom: 12px; }
.pubs-title { font-family: var(--fd); font-size: clamp(28px, 3vw, 40px); font-weight: 500; color: var(--p950); line-height: 1.2; letter-spacing: -.3px; }
.pubs-link { font-size: 12px; color: var(--p600); text-decoration: none; display: flex; align-items: center; gap: 5px; padding-bottom: 4px; border-bottom: 1px solid var(--p200); transition: color .2s, border-color .2s; white-space: nowrap; }
.pubs-link:hover { color: var(--p800); border-color: var(--p400); }
.pubs-link svg { width: 11px; height: 11px; stroke: currentColor; }
.pubs-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 1px; background: var(--g200); border: 1px solid var(--g200); }
.pub { background: var(--white); padding: 32px; cursor: pointer; text-decoration: none; display: block; position: relative; overflow: hidden; transition: background .2s; }
.pub:hover { background: var(--p50); }
.pub::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--p400); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
.pub:hover::before { transform: scaleX(1); }
.pub-cat { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--p500); margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.pub-cat::before { content: ''; width: 16px; height: 1px; background: var(--p300); }
.pub-title { font-family: var(--fd); font-size: 20px; font-weight: 500; color: var(--p950); line-height: 1.3; margin-bottom: 12px; letter-spacing: -.2px; }
.pub.featured .pub-title { font-size: 26px; }
.pub-excerpt { font-size: 13px; color: var(--g600); line-height: 1.65; margin-bottom: 20px; }
.pub-meta { font-size: 11px; color: var(--g400); display: flex; align-items: center; gap: 10px; }
.pub-meta-sep { width: 3px; height: 3px; border-radius: 50%; background: var(--g400); }

/* ─── CTA ─── */
.cta-section { background: var(--p900); padding: 100px 48px; position: relative; overflow: hidden; }
.cta-pattern { position: absolute; inset: 0; background-image: linear-gradient(rgba(166,125,204,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(166,125,204,.05) 1px, transparent 1px); background-size: 48px 48px; }
.cta-glow { position: absolute; bottom: -30%; left: 20%; width: 60%; height: 80%; background: radial-gradient(ellipse at center, rgba(107,70,154,.5) 0%, transparent 70%); }
.cta-inner { max-width: 720px; margin: 0 auto; text-align: center; position: relative; z-index: 2; }
.cta-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--p300); margin-bottom: 20px; }
.cta-title { font-family: var(--fd); font-size: clamp(36px, 4.5vw, 56px); font-weight: 500; line-height: 1.15; letter-spacing: -.5px; color: var(--white); margin-bottom: 20px; }
.cta-title em { font-style: italic; color: var(--p300); }
.cta-sub { font-size: 15px; color: rgba(255,255,255,.55); line-height: 1.7; margin-bottom: 40px; }
.cta-actions { display: flex; gap: 12px; align-items: center; justify-content: center; flex-wrap: wrap; }
.cta-contacts { display: flex; gap: 32px; justify-content: center; margin-top: 40px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,.08); }
.cta-contact { text-align: center; }
.cta-contact-label { font-size: 10px; letter-spacing: 1px; text-transform: uppercase; color: var(--p400); margin-bottom: 6px; }
.cta-contact-val { font-size: 13px; color: rgba(255,255,255,.7); }
.cta-contact-val a { color: inherit; text-decoration: none; transition: color .15s; }
.cta-contact-val a:hover { color: var(--white); }

/* ─── FOOTER ─── */
.footer { background: var(--p950); border-top: 1px solid rgba(255,255,255,.05); }
.footer-inner { max-width: var(--max); margin: 0 auto; padding: 0 48px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding: 60px 0 48px; border-bottom: 1px solid rgba(255,255,255,.07); }
.footer-logo { font-family: var(--fd); font-size: 28px; font-weight: 600; color: var(--white); letter-spacing: 1px; margin-bottom: 14px; }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,.4); line-height: 1.7; margin-bottom: 20px; }
.footer-col-title { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--p500); margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link { font-size: 13px; color: rgba(255,255,255,.45); text-decoration: none; transition: color .15s; }
.footer-link:hover { color: rgba(255,255,255,.8); }
.footer-bottom { padding: 20px 0; display: flex; align-items: center; justify-content: space-between; font-size: 11px; color: rgba(255,255,255,.3); }
.footer-bottom a { color: rgba(255,255,255,.3); text-decoration: none; transition: color .15s; }
.footer-bottom a:hover { color: rgba(255,255,255,.6); }

/* ════ RESPONSIVE ≤ 1024px ════ */
@media (max-width: 1024px) {
  .topbar { padding: 8px 24px; }
  .header-inner { padding: 0 24px; }
  .h-nav, .h-right { display: none; }
  .mob-trigger { display: flex; }
  .mob-drawer { display: block; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; padding: 80px 24px 100px; }
  .hero-stats { display: none; }
  .hero-strip { padding: 14px 24px; gap: 24px; }
  .intro { padding: 72px 24px; }
  .intro-inner { grid-template-columns: 1fr; gap: 48px; }
  .intro-right { padding-top: 0; }
  .units { padding: 72px 24px; }
  .units-grid { grid-template-columns: repeat(2, 1fr); }
  .units-grid .unit:last-child { grid-column: 1 / -1; }
  .method { padding: 72px 24px; }
  .method-inner { grid-template-columns: 1fr; gap: 48px; }
  .method-image { aspect-ratio: 16/9; }
  .method-title { margin-top: 0; }
  .tr-rep { padding: 72px 24px; }
  .tr-rep-inner { grid-template-columns: 1fr; gap: 48px; }
  .pubs { padding: 72px 24px; }
  .pubs-grid { grid-template-columns: 1fr; }
  .cta-section { padding: 72px 24px; }
  .cta-contacts { gap: 20px; flex-wrap: wrap; justify-content: center; }
  .footer-inner { padding: 0 24px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* ════ RESPONSIVE ≤ 640px ════ */
@media (max-width: 640px) {
  .topbar { padding: 7px 20px; justify-content: center; font-size: 10px; }
  .topbar > div:last-child { display: none; }
  .header-inner { padding: 0 20px; height: 58px; }
  .site-header.small .header-inner { height: 52px; }
  .logo-name { font-size: 17px; }
  .hero-inner { padding: 64px 20px 80px; }
  .hero-title { font-size: clamp(36px, 10vw, 52px); }
  .hero-desc { font-size: 14px; margin-bottom: 28px; }
  .hero-actions { flex-direction: column; gap: 10px; }
  .hero-actions .btn-primary, .hero-actions .btn-ghost { width: 100%; justify-content: center; padding: 15px 20px; }
  .hero-strip { padding: 12px 20px; gap: 16px; }
  .intro { padding: 56px 20px; }
  .intro-title { font-size: clamp(26px, 8vw, 38px); }
  .units { padding: 56px 20px; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 32px; }
  .units-grid { grid-template-columns: 1fr; }
  .units-grid .unit:last-child { grid-column: auto; }
  .method { padding: 56px 20px; }
  .method-inner { gap: 32px; }
  .method-image { aspect-ratio: 4/3; }
  .method-image-quote { font-size: 18px; bottom: 20px; left: 20px; right: 20px; }
  .tr-rep { padding: 56px 20px; }
  .tr-rep-title { font-size: clamp(26px, 8vw, 36px); }
  .tr-rep-actions { flex-direction: column; gap: 10px; }
  .tr-rep-actions .btn-rep-primary, .tr-rep-actions .btn-rep-ghost { width: 100%; justify-content: center; }
  .pubs { padding: 56px 20px; }
  .pubs-head { flex-direction: column; align-items: flex-start; gap: 14px; margin-bottom: 28px; }
  .pub { padding: 24px 20px; }
  .pub.featured .pub-title { font-size: 20px; }
  .cta-section { padding: 56px 20px; }
  .cta-title { font-size: clamp(28px, 8vw, 40px); }
  .cta-sub { font-size: 14px; }
  .cta-actions { flex-direction: column; gap: 10px; }
  .cta-actions .btn-primary, .cta-actions .btn-ghost { width: 100%; justify-content: center; padding: 15px 20px; }
  .cta-contacts { flex-direction: column; gap: 16px; margin-top: 32px; padding-top: 24px; align-items: center; text-align: center; }
  .footer-inner { padding: 0 20px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; padding: 36px 0 28px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; padding: 16px 0 24px; }
  .footer-bottom > div { gap: 16px; }
}