/* =====================================================================
   WSite Child — "Kurumsal Dosya" (Editorial Institution)
   Fraunces (serif display) + Hanken Grotesk (body) + IBM Plex Mono (utility).
   Guven = editoryal disiplin: ince cetvel cizgiler, bol bosluk, tek koyu renk ani.
   Renk token'dan gelir (--wsite-primary/--wsite-accent) -> 21 sektore uyar.
   ===================================================================== */

:root {
  --wsx-ink: #12171f;
  --wsx-ink-2: #3a4350;
  --wsx-muted: #6b7480;
  --wsx-paper: #f3efe6;              /* letterhead sicak kagit — imza/risk ogesi, az kullanilir */
  --wsx-bg: #ffffff;
  --wsx-line: rgba(18, 23, 31, .14);
  --wsx-line-2: rgba(18, 23, 31, .08);
  --wsx-primary: var(--wsite-primary, #1e3a5f);
  --wsx-accent: var(--wsite-accent, #b07a2c);
  --wsx-serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --wsx-sans: 'Hanken Grotesk', ui-sans-serif, system-ui, sans-serif;
  --wsx-mono: 'IBM Plex Mono', ui-monospace, 'SFMono-Regular', monospace;
  --wsx-maxw: 1160px;
  --wsx-ease: cubic-bezier(.22, .61, .36, 1);
}

.wsx-home * { box-sizing: border-box; }
.wsx-home {
  margin: 0; font-family: var(--wsx-sans); color: var(--wsx-ink); background: var(--wsx-bg);
  -webkit-font-smoothing: antialiased; line-height: 1.6; font-size: 17px;
}
.wsx-home img { max-width: 100%; display: block; }
.wsx-home a { color: inherit; text-decoration: none; }
.wsx-home ::selection { background: var(--wsx-ink); color: #fff; }
.wsx-wrap { width: 100%; max-width: var(--wsx-maxw); margin: 0 auto; padding: 0 32px; }

/* --- tipografi --- */
.wsx-home h1, .wsx-home h2, .wsx-home h3 { font-family: var(--wsx-serif); font-weight: 500; line-height: 1.02; letter-spacing: -.015em; margin: 0; font-optical-sizing: auto; }
.wsx-display { font-size: clamp(2.7rem, 6.4vw, 5.2rem); font-weight: 480; }
.wsx-h2 { font-size: clamp(2rem, 4vw, 3.1rem); }
.wsx-h3 { font-size: 1.5rem; }
.wsx-lead { font-size: clamp(1.06rem, 1.5vw, 1.24rem); color: var(--wsx-ink-2); max-width: 54ch; line-height: 1.55; }

/* mono etiket sistemi (referans-kod vernacular) */
.wsx-kick { font-family: var(--wsx-mono); font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: var(--wsx-muted); display: inline-flex; align-items: center; gap: 12px; }
.wsx-kick::before { content: ""; width: 26px; height: 1px; background: var(--wsx-accent); }
.wsx-label { font-family: var(--wsx-mono); font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; color: var(--wsx-ink); }
.wsx-idx { color: var(--wsx-accent); }

/* --- header (editoryal, floating degil) --- */
.wsx-top { position: sticky; top: 0; z-index: 40; background: rgba(255, 255, 255, .96); border-bottom: 1px solid var(--wsx-line); }
.wsx-top__in { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.wsx-brand { font-family: var(--wsx-serif); font-size: 1.35rem; font-weight: 500; letter-spacing: -.01em; }
.wsx-brand img { max-height: 38px; width: auto; }
.wsx-nav { display: flex; gap: 34px; }
.wsx-nav a { font-size: .95rem; color: var(--wsx-ink-2); position: relative; transition: color .2s; }
.wsx-nav a:hover { color: var(--wsx-ink); }
.wsx-nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 1px; background: var(--wsx-accent); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--wsx-ease); }
.wsx-nav a:hover::after { transform: scaleX(1); }
.wsx-top__cta { font-family: var(--wsx-mono); font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 8px; padding: 11px 18px; border: 1px solid var(--wsx-ink); border-radius: 2px; transition: background .25s var(--wsx-ease), color .25s; }
.wsx-top__cta:hover { background: var(--wsx-ink); color: #fff; }
.wsx-burger { display: none; width: 44px; height: 44px; border: 1px solid var(--wsx-line); background: #fff; cursor: pointer; flex-direction: column; align-items: center; justify-content: center; gap: 4px; border-radius: 2px; }
.wsx-burger span { width: 18px; height: 1.5px; background: var(--wsx-ink); }

/* --- hero --- */
.wsx-hero { padding: clamp(56px, 8vw, 92px) 0 0; }
.wsx-hero__grid { display: grid; grid-template-columns: 1.35fr .95fr; gap: 60px; align-items: end; }
.wsx-hero__grid > * { min-width: 0; }
.wsx-hero .wsx-display { margin: 26px 0 26px; }
.wsx-hero .wsx-lead { margin-bottom: 34px; }
.wsx-hero__cta { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; }

/* butonlar */
.wsx-btn { display: inline-flex; align-items: center; gap: 12px; font-family: var(--wsx-mono); font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; padding: 16px 24px; border-radius: 2px; cursor: pointer; border: 1px solid transparent; transition: transform .3s var(--wsx-ease), background .25s, box-shadow .3s; }
.wsx-btn svg { width: 17px; height: 17px; }
.wsx-btn--ink { background: var(--wsx-ink); color: #fff; }
.wsx-btn--ink:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -14px rgba(18, 23, 31, .5); }
.wsx-btn--wa { background: #128c4b; color: #fff; }
.wsx-btn--wa:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -14px rgba(18, 140, 75, .55); }
.wsx-link { font-family: var(--wsx-mono); font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 8px; border-bottom: 1px solid var(--wsx-line); padding-bottom: 3px; transition: gap .3s var(--wsx-ease), border-color .3s; }
.wsx-link:hover { gap: 14px; border-color: var(--wsx-accent); }

/* --- imza: kurumsal kartvizit --- */
.wsx-card { border: 1px solid var(--wsx-ink); border-radius: 3px; padding: 30px; background: var(--wsx-bg); position: relative; box-shadow: 14px 14px 0 -1px var(--wsx-paper), 14px 14px 0 0 var(--wsx-line); }
.wsx-card__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 34px; }
.wsx-card__seal { width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--wsx-accent); display: flex; align-items: center; justify-content: center; }
.wsx-card__seal::after { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--wsx-accent); }
.wsx-card__name { font-family: var(--wsx-serif); font-size: 1.7rem; line-height: 1.05; margin-bottom: 6px; }
.wsx-card__role { font-family: var(--wsx-mono); font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--wsx-muted); }
.wsx-card__rows { margin-top: 26px; border-top: 1px solid var(--wsx-line); }
.wsx-card__row { display: flex; justify-content: space-between; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--wsx-line-2); font-family: var(--wsx-mono); font-size: .78rem; }
.wsx-card__row span:first-child { color: var(--wsx-muted); letter-spacing: .12em; text-transform: uppercase; font-size: .68rem; }
.wsx-card__row span:last-child { text-align: right; color: var(--wsx-ink); }

/* --- soz seridi (vanity numaralar DEGIL) --- */
.wsx-pledge { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--wsx-line); border-radius: 3px; margin-top: clamp(48px, 7vw, 84px); }
.wsx-pledge__i { padding: 26px 28px; border-right: 1px solid var(--wsx-line); }
.wsx-pledge__i:last-child { border-right: 0; }
.wsx-pledge__k { font-family: var(--wsx-mono); font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--wsx-accent); margin-bottom: 10px; }
.wsx-pledge__t { font-family: var(--wsx-serif); font-size: 1.28rem; margin-bottom: 4px; }
.wsx-pledge__d { font-size: .92rem; color: var(--wsx-muted); }

/* --- section --- */
.wsx-sec { padding: clamp(72px, 11vw, 140px) 0; }
.wsx-sec--paper { background: var(--wsx-paper); }
.wsx-sec__head { display: flex; align-items: baseline; justify-content: space-between; gap: 24px; padding-bottom: 30px; margin-bottom: 52px; border-bottom: 1px solid var(--wsx-line); }
.wsx-sec__head h2 { max-width: 20ch; }

/* --- hizmetler: editoryal grid --- */
.wsx-svc { display: grid; grid-template-columns: repeat(3, 1fr); }
.wsx-svc__i { padding: 38px 30px 44px; border-top: 1px solid var(--wsx-line); border-right: 1px solid var(--wsx-line); transition: background .3s var(--wsx-ease); position: relative; }
.wsx-svc__i:nth-child(3n) { border-right: 0; }
.wsx-svc__i:hover { background: var(--wsx-paper); }
.wsx-svc__n { font-family: var(--wsx-mono); font-size: .72rem; letter-spacing: .14em; color: var(--wsx-accent); }
.wsx-svc__ico { margin: 22px 0 18px; color: var(--wsx-primary); }
.wsx-svc__ico svg { width: 30px; height: 30px; }
.wsx-svc__i h3 { font-size: 1.44rem; margin-bottom: 12px; }
.wsx-svc__i p { margin: 0; color: var(--wsx-ink-2); font-size: .98rem; }

/* --- hakkimizda --- */
.wsx-about { display: grid; grid-template-columns: 1.1fr .9fr; gap: 66px; align-items: start; }
.wsx-about__stmt { font-family: var(--wsx-serif); font-size: clamp(1.5rem, 2.4vw, 2rem); line-height: 1.3; letter-spacing: -.01em; }
.wsx-about__stmt em { font-style: italic; color: var(--wsx-primary); }
.wsx-kunye { border: 1px solid var(--wsx-ink); border-radius: 3px; overflow: hidden; }
.wsx-kunye__h { background: var(--wsx-ink); color: #fff; font-family: var(--wsx-mono); font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; padding: 12px 22px; }
.wsx-kunye__r { display: flex; gap: 16px; padding: 16px 22px; border-bottom: 1px solid var(--wsx-line-2); }
.wsx-kunye__r:last-child { border-bottom: 0; }
.wsx-kunye__r .wsx-num { font-family: var(--wsx-mono); color: var(--wsx-accent); font-size: .82rem; padding-top: 2px; }
.wsx-kunye__r h4 { margin: 0 0 2px; font-family: var(--wsx-sans); font-size: 1rem; font-weight: 600; }
.wsx-kunye__r p { margin: 0; font-size: .9rem; color: var(--wsx-muted); }

/* --- referanslar --- */
.wsx-quotes { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid var(--wsx-line); }
.wsx-quote { padding: 46px 40px; border-right: 1px solid var(--wsx-line); border-bottom: 1px solid var(--wsx-line); }
.wsx-quote:nth-child(2n) { border-right: 0; }
.wsx-quote__mark { font-family: var(--wsx-serif); font-size: 3.4rem; line-height: .6; color: var(--wsx-accent); }
.wsx-quote p { font-family: var(--wsx-serif); font-size: 1.32rem; line-height: 1.4; margin: 14px 0 22px; }
.wsx-quote__who { font-family: var(--wsx-mono); font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--wsx-muted); }

/* --- CTA bandi (tek cesur renk ani) --- */
.wsx-cta { background: var(--wsx-primary); color: #fff; }
.wsx-cta__in { padding: clamp(64px, 9vw, 110px) 0; display: grid; grid-template-columns: 1.2fr auto; gap: 40px; align-items: center; }
.wsx-cta h2 { color: #fff; max-width: 16ch; }
.wsx-cta .wsx-kick { color: rgba(255, 255, 255, .7); margin-bottom: 22px; }
.wsx-cta .wsx-kick::before { background: rgba(255, 255, 255, .6); }
.wsx-cta__side { text-align: right; }
.wsx-cta__side p { color: rgba(255, 255, 255, .8); margin: 0 0 20px; font-size: .98rem; }

/* --- footer --- */
.wsx-foot { background: var(--wsx-ink); color: #aeb6c1; padding: 78px 0 30px; }
.wsx-foot a { color: #aeb6c1; transition: color .2s; }
.wsx-foot a:hover { color: #fff; }
.wsx-foot__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 44px; padding-bottom: 46px; border-bottom: 1px solid rgba(255, 255, 255, .12); }
.wsx-foot__brand { font-family: var(--wsx-serif); font-size: 1.5rem; color: #fff; margin-bottom: 14px; }
.wsx-foot h5 { font-family: var(--wsx-mono); font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: #6b7480; margin: 0 0 16px; }
.wsx-foot ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; font-size: .95rem; }
.wsx-foot__end { padding-top: 26px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-family: var(--wsx-mono); font-size: .74rem; letter-spacing: .06em; color: #6b7480; }

/* --- reveal (progressive enhancement: JS yoksa gorunur) --- */
.wsx-rv { transition: opacity .7s var(--wsx-ease), transform .7s var(--wsx-ease); }
.wsx-js .wsx-rv { opacity: 0; transform: translateY(20px); }
.wsx-js .wsx-rv.is-in { opacity: 1; transform: none; }

/* --- mobil menu (VARSAYILAN GIZLI) --- */
.wsx-mob { display: none; position: fixed; inset: 0; z-index: 60; background: var(--wsx-bg); padding: 88px 32px; flex-direction: column; gap: 4px; }
.wsx-mob.is-open { display: flex; }
.wsx-mob a { font-family: var(--wsx-serif); font-size: 2rem; padding: 14px 0; border-bottom: 1px solid var(--wsx-line); }
.wsx-mob__x { position: absolute; top: 22px; right: 26px; width: 46px; height: 46px; border: 1px solid var(--wsx-line); background: #fff; font-size: 1.5rem; cursor: pointer; border-radius: 2px; }

/* --- responsive --- */
@media (max-width: 900px) {
  .wsx-hero__grid, .wsx-about, .wsx-cta__in { grid-template-columns: 1fr; gap: 44px; }
  .wsx-hero__grid { align-items: start; }
  .wsx-card { max-width: 420px; }
  .wsx-svc { grid-template-columns: 1fr 1fr; }
  .wsx-svc__i:nth-child(3n) { border-right: 1px solid var(--wsx-line); }
  .wsx-svc__i:nth-child(2n) { border-right: 0; }
  .wsx-cta__side { text-align: left; }
  .wsx-foot__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .wsx-nav, .wsx-top__cta { display: none; }
  .wsx-burger { display: flex; }
  .wsx-pledge, .wsx-svc, .wsx-quotes, .wsx-foot__grid { grid-template-columns: 1fr; }
  .wsx-pledge__i { border-right: 0; border-bottom: 1px solid var(--wsx-line); }
  .wsx-pledge__i:last-child { border-bottom: 0; }
  .wsx-svc__i { border-right: 0 !important; }
  .wsx-quote { border-right: 0; padding: 34px 4px; }
  .wsx-wrap { padding: 0 22px; }
}

@media (prefers-reduced-motion: reduce) {
  .wsx-rv { opacity: 1 !important; transform: none !important; transition: none; }
  .wsx-home * { transition-duration: .01ms !important; }
}

/* --- fokus (a11y) --- */
.wsx-home a:focus-visible, .wsx-home button:focus-visible { outline: 2px solid var(--wsx-accent); outline-offset: 3px; }
