:root {
     --ink: #111;
     --muted: #9aa0a6;
     --line: #e9e9e9;
     --bg: #fff;
     --wrap: 1280px;
     --pad: clamp(16px, 3vw, 44px);
     --headerH: 96px;
     --ease: cubic-bezier(.2, .8, .2, 1);
 }

 * {
     box-sizing: border-box
 }

 html,
 body {
     height: 100%
 }

 body {
     margin: 0;
     font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
     color: var(--ink);
     background: var(--bg);
 }

 a {
     color: inherit;
     text-decoration: none
 }

 button {
     font: inherit
 }

 /* =========================
       HEADER
    ========================== */
 .eskiz-header {
     position: relative;
     background: #fff;
     z-index: 50;
 }

 .eskiz-header__bar {
     height: var(--headerH);
     display: grid;
     align-items: center;
     border-bottom: 1px solid transparent;
 }

 .eskiz-header__inner {
     width: min(var(--wrap), 100%);
     margin: 0 auto;
     padding: 0 var(--pad);
     display: grid;
     grid-template-columns: auto 1fr auto;
     align-items: center;
     gap: 24px;
 }

 .eskiz-brand {
     display: inline-flex;
     align-items: flex-end;
     gap: 10px;
     line-height: 1;
     padding-top: 4px;
 }

 .eskiz-brand__mark {
     font-weight: 700;
     letter-spacing: .06em;
     font-size: clamp(34px, 3.6vw, 56px);
     color: #6f6f6f;
     text-transform: uppercase;
 }

 .eskiz-brand__tag {
     display: none;
     font-size: 12px;
     letter-spacing: .14em;
     color: var(--muted);
     text-transform: uppercase;
     transform: translateY(-6px);
 }
 
 /* ===== BRAND (LOGO + TEXT) ===== */
.eskiz-brand{
  display:flex;
  align-items:center;
  gap: 12px;
  text-decoration:none;
  color: inherit;
  line-height: 1;
  min-width: 0;
}

/* Logo görseli: headerı bozmasın */
.eskiz-brand__logo{
  display:block;
  height: 88px;        /* masaüstü ideal */
  width: auto;
  max-width: 140px;    /* aşırı geniş logoyu sınırla */
  object-fit: contain;
  flex: 0 0 auto;
}

/* Yazı bloğu */
.eskiz-brand__text{
  display:flex;
  flex-direction:column;
  gap: 6px;
  min-width: 0;
}

.eskiz-brand__mark{
  display:block;
  letter-spacing: .12em;
  font-weight: 600;
  font-size: 26px;
  white-space: nowrap;
}

.eskiz-brand__tag{
  display:block;
  letter-spacing: .14em;
  font-weight: 300;
  font-size: 12px;
  opacity: .85;
  white-space: nowrap;
}


 .eskiz-nav {
     justify-self: end;
     display: flex;
     align-items: center;
     gap: 34px;
     padding-right: 6px;
 }

 .eskiz-nav a {
     font-size: 12px;
     letter-spacing: .22em;
     text-transform: uppercase;
     color: #8d8d8d;
     padding: 10px 0;
     position: relative;
     transition: color .2s var(--ease);
 }

 .eskiz-nav a:hover {
     color: #2b2b2b
 }

 .eskiz-nav a.is-active {
     color: #c2c2c2
 }

 .eskiz-navToggle {
     justify-self: end;
     width: 46px;
     height: 46px;
     border: 1px solid #9c9c9c;
     background: #fff;
     display: none;
     place-items: center;
     cursor: pointer;
 }

 .eskiz-navToggle__icon {
     width: 22px;
     height: 14px;
     position: relative;
 }

 .eskiz-navToggle__icon span {
     position: absolute;
     left: 0;
     right: 0;
     height: 1px;
     background: #4a4a4a;
     transition: transform .24s var(--ease), top .24s var(--ease), opacity .2s var(--ease);
 }

 .eskiz-navToggle__icon span:nth-child(1) {
     top: 0
 }

 .eskiz-navToggle__icon span:nth-child(2) {
     top: 6.5px
 }

 .eskiz-navToggle__icon span:nth-child(3) {
     top: 13px
 }

 .eskiz-header.is-menuOpen .eskiz-navToggle__icon span:nth-child(1) {
     top: 6.5px;
     transform: rotate(45deg)
 }

 .eskiz-header.is-menuOpen .eskiz-navToggle__icon span:nth-child(2) {
     opacity: 0
 }

 .eskiz-header.is-menuOpen .eskiz-navToggle__icon span:nth-child(3) {
     top: 6.5px;
     transform: rotate(-45deg)
 }

 /* Mobile menu panel (PER SE hissi: header altında geniş beyaz panel) */
 .eskiz-mobilePanel {
     position: absolute;
     left: 0;
     right: 0;
     top: var(--headerH);
     background: #fff;
     border-top: 1px solid var(--line);
     border-bottom: 1px solid var(--line);
     transform-origin: top;
     transform: scaleY(.98);
     opacity: 0;
     pointer-events: none;
     transition: opacity .22s var(--ease), transform .22s var(--ease);
 }

 .eskiz-header.is-menuOpen .eskiz-mobilePanel {
     opacity: 1;
     transform: scaleY(1);
     pointer-events: auto;
 }

 .eskiz-mobilePanel__inner {
     width: min(var(--wrap), 100%);
     margin: 0 auto;
     padding: 10px var(--pad) 14px;
 }

 .eskiz-mobileNav {
     display: grid;
     gap: 0;
 }

 .eskiz-mobileNav a {
     font-size: 12px;
     letter-spacing: .22em;
     text-transform: uppercase;
     color: #2c2c2c;
     padding: 12px 0;
     border-bottom: 1px solid #efefef;
 }

 .eskiz-mobileNav a:last-child {
     border-bottom: none
 }

 .eskiz-mobileNav a.is-active {
     color: #c2c2c2
 }


/* FOOTER */
.eskiz-footer {
    --f-bg: #0f0f10;
    --f-panel: #141416;
    --f-border: rgba(255, 255, 255, .10);
    --f-ink: rgba(255, 255, 255, .92);
    --f-muted: rgba(255, 255, 255, .62);
    --f-soft: rgba(255, 255, 255, .08);

    background: radial-gradient(1000px 600px at 10% 0%, rgba(255, 255, 255, .06), transparent 55%),
        radial-gradient(900px 600px at 90% 30%, rgba(255, 255, 255, .05), transparent 60%),
        var(--f-bg);
    color: var(--f-ink);
}

.eskiz-footer__wrap {
    width: min(var(--wrap, 1280px), 100%);
    margin: 0 auto;
    padding: clamp(72px, 7vw, 120px) var(--pad, 44px) clamp(44px, 5vw, 72px);

    display: grid;
    grid-template-columns: 1.3fr .8fr 1fr;
    gap: clamp(26px, 3vw, 44px);
}

/* Brand */
.eskiz-footer__brand {
    max-width: 560px;
}

.eskiz-footer__logo {
    display: inline-flex;
    flex-direction: column;
    gap: 6px;
    padding: 18px 22px;
    border: 1px solid var(--f-border);
    background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
}

.eskiz-footer__logoText {
    font-size: clamp(28px, 2.4vw, 40px);
    letter-spacing: .14em;
    font-weight: 300;
    line-height: 1;
}

.eskiz-footer__logoSub {
    font-size: 12px;
    letter-spacing: .36em;
    text-transform: uppercase;
    color: #ffd919;
}

.eskiz-footer__desc {
    margin: 18px 0 0;
    color: var(--f-muted);
    line-height: 1.9;
    font-size: 14px;
}

.eskiz-footer__contact {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: var(--f-muted);
    font-size: 13px;
}

.eskiz-footer__contact a {
    color: var(--f-muted);
}

.eskiz-footer__contact a:hover {
    color: var(--f-ink);
}

/* Columns */
.eskiz-footer__head {
    margin: 4px 0 14px;
    font-size: 12px;
    letter-spacing: .28em;
    text-transform: uppercase;
    font-weight: 600;
    color: #ffd919;
}

.eskiz-footer__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.eskiz-footer__list a {
    color: var(--f-muted);
    font-size: 14px;
    line-height: 1.6;
}

.eskiz-footer__list a:hover {
    color: var(--f-ink);
}

.eskiz-footer__posts a {
    display: block;
    padding: 10px 12px;
    border: 1px solid transparent;
    background: transparent;
}

.eskiz-footer__posts a:hover {
    border-color: var(--f-border);
    background: rgba(255, 255, 255, .03);
}

/* Bottom bar */
.eskiz-footer__bar {
    border-top: 1px solid var(--f-border);
    background: rgba(0, 0, 0, .25);
}

.eskiz-footer__barWrap {
    width: min(var(--wrap, 1280px), 100%);
    margin: 0 auto;
    padding: 18px var(--pad, 44px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: var(--f-muted);
    font-size: 12px;
}

.eskiz-footer__signature {
    color: #ffd919;
    border: 1px solid var(--f-border);
    padding: 10px 12px;
    letter-spacing: .06em;
    background: rgba(255, 255, 255, .03);
}

.eskiz-footer__signature span {
    color: var(--f-muted);
    letter-spacing: 0;
}

.eskiz-footer__signature:hover {
    background: rgba(255, 255, 255, .06);
}

.eskiz-footer__social {
    margin-top: 18px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.eskiz-footer__soc {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--f-border);
    background: rgba(255, 255, 255, .03);
    color: #ffd919;
}

.eskiz-footer__soc i {
    font-size: 16px;
}

.eskiz-footer__soc:hover {
    background: rgba(255, 255, 255, .06);
    border-color: rgba(255, 255, 255, .22);
}



 /* Header responsive */
 @media (max-width: 980px) {
     :root {
         --headerH: 88px;
     }

     .eskiz-nav {
         display: none
     }

     .eskiz-navToggle {
         display: grid
     }

     .eskiz-brand__tag {
         display: none
     }
     
    .eskiz-footer__wrap {grid-template-columns: 1fr;
                                     padding: 64px 18px 44px;}
                
    .eskiz-footer__barWrap {padding: 16px 18px;
                            flex-direction: column;
                            align-items: flex-start;}
                
  .eskiz-footer__logo {width: 100%;}
                                 
  .eskiz-brand__logo{ height: 32px; max-width: 120px; }
  .eskiz-brand__mark{ font-size: 16px; }
  .eskiz-brand__tag{ font-size: 11px; }
 }