/* ============================================================
   AKGÜN ELEKTRİK — Custom Design System (ak- prefix)
   No third-party CSS libraries. Self-contained.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Hanken+Grotesk:ital,wght@0,100..900;1,100..900&family=Geist:wght@100..900&family=JetBrains+Mono:wght@300..700&display=swap');

/* ---------- Design Tokens ---------- */
:root {
    /* Color */
    --ak-bg: #F5F2EC;
    --ak-bg-warm: #EFEAE0;
    --ak-bg-paper: #FAF8F3;
    --ak-ink: #0A0A0A;
    --ak-ink-soft: #1A1A1A;
    --ak-ink-muted: #6B6B6B;
    --ak-ink-faint: #B5B0A6;
    --ak-line: #1A1A1A;
    --ak-line-soft: #D9D4C7;
    --ak-line-faint: #E8E3D7;
    --ak-accent: #BE1824;
    --ak-accent-deep: #8E1019;
    --ak-accent-soft: #F0D2D5;
    --ak-signal: #FACC15;

    --ak-dark-bg: #0A0A0A;
    --ak-dark-bg-2: #141414;
    --ak-dark-line: #2A2A2A;
    --ak-dark-text: #EDEAE0;

    /* Typography */
    --ak-font-display: 'Hanken Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --ak-font-sans: 'Geist', 'Hanken Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --ak-font-mono: 'JetBrains Mono', 'Menlo', monospace;

    /* Layout */
    --ak-max-w: 1480px;
    --ak-gutter: clamp(20px, 4vw, 64px);
    --ak-rule: 1.5px;

    /* Motion */
    --ak-ease: cubic-bezier(0.2, 0.6, 0.2, 1);
    --ak-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    scroll-behavior: smooth;
    overflow-x: hidden;
    overflow-x: clip;
}

body {
    font-family: var(--ak-font-sans);
    font-size: 16px;
    line-height: 1.5;
    color: var(--ak-ink);
    background: var(--ak-bg);
    background-image: radial-gradient(circle at 1px 1px, rgba(10,10,10,0.045) 1px, transparent 0);
    background-size: 28px 28px;
    overflow-x: hidden;
    overflow-x: clip;
    width: 100%;
    max-width: 100vw;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }
input, textarea, select { font: inherit; color: inherit; }

::selection { background: var(--ak-accent); color: #fff; }

/* ---------- Custom Scrollbar ---------- */
html { scrollbar-color: var(--ak-ink) var(--ak-bg-warm); scrollbar-width: thin; }
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}
::-webkit-scrollbar-track {
    background: var(--ak-bg-warm);
    border-left: 1px solid var(--ak-line-soft);
}
::-webkit-scrollbar-thumb {
    background: var(--ak-ink);
    border: 3px solid var(--ak-bg-warm);
    background-clip: padding-box;
    transition: background .2s var(--ak-ease);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--ak-accent);
    border: 3px solid var(--ak-bg-warm);
    background-clip: padding-box;
}
::-webkit-scrollbar-corner { background: var(--ak-bg-warm); }

/* ---------- Typography utilities ---------- */
.ak-eyebrow {
    font-family: var(--ak-font-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ak-ink);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.ak-eyebrow::before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 1px;
    background: var(--ak-accent);
}
.ak-eyebrow--dark { color: var(--ak-dark-text); }

.ak-label-mono {
    font-family: var(--ak-font-mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ak-ink-muted);
}

.ak-display {
    font-family: var(--ak-font-display);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.025em;
}
.ak-display em {
    font-style: italic;
    font-weight: 400;
    color: var(--ak-accent);
}

.ak-display--xl { font-size: clamp(48px, 7vw, 116px); }
.ak-display--lg { font-size: clamp(34px, 4.6vw, 72px); }
.ak-display--md { font-size: clamp(24px, 2.8vw, 40px); }

.ak-stroke {
    -webkit-text-stroke: 1.5px currentColor;
    color: transparent;
    font-style: italic;
    font-weight: 400;
    letter-spacing: -0.015em;
}

.ak-lead {
    font-size: clamp(17px, 1.4vw, 21px);
    line-height: 1.5;
    color: var(--ak-ink-soft);
    max-width: 56ch;
}

/* ---------- Layout helpers ---------- */
.ak-wrap {
    max-width: var(--ak-max-w);
    margin-inline: auto;
    padding-inline: var(--ak-gutter);
}
.ak-wrap--narrow {
    max-width: 1120px;
    margin-inline: auto;
    padding-inline: var(--ak-gutter);
}

.ak-rule { height: var(--ak-rule); background: var(--ak-ink); width: 100%; }
.ak-rule--soft { height: 1px; background: var(--ak-line-soft); width: 100%; }

.ak-section-num {
    font-family: var(--ak-font-mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ak-ink-muted);
    display: flex;
    align-items: baseline;
    gap: 14px;
}
.ak-section-num strong {
    font-weight: 500;
    color: var(--ak-ink);
}

/* ---------- Top utility bar ---------- */
.ak-topbar {
    background: var(--ak-ink);
    color: var(--ak-dark-text);
    font-family: var(--ak-font-mono);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.ak-topbar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 36px;
    padding-inline: var(--ak-gutter);
    max-width: var(--ak-max-w);
    margin-inline: auto;
}
.ak-topbar__group {
    display: flex;
    align-items: center;
    gap: 22px;
}
.ak-topbar a {
    color: var(--ak-dark-text);
    opacity: 0.85;
    transition: opacity .2s var(--ak-ease);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.ak-topbar a:hover { opacity: 1; color: #fff; }
.ak-topbar__dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--ak-accent);
    display: inline-block;
    box-shadow: 0 0 0 0 var(--ak-accent);
    animation: ak-pulse 2.4s infinite;
}
@keyframes ak-pulse {
    0% { box-shadow: 0 0 0 0 rgba(190,24,36,.5); }
    70% { box-shadow: 0 0 0 8px rgba(190,24,36,0); }
    100% { box-shadow: 0 0 0 0 rgba(190,24,36,0); }
}
@media (max-width: 720px) {
    .ak-topbar__group--right { display: none; }
}

/* ---------- Header / Nav ---------- */
.ak-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #FFFFFF;
    border-bottom: var(--ak-rule) solid var(--ak-ink);
}
.ak-header__inner {
    max-width: var(--ak-max-w);
    margin-inline: auto;
    padding-inline: var(--ak-gutter);
    height: 80px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 40px;
}

.ak-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--ak-ink);
    line-height: 1;
}
.ak-brand__logo {
    height: 44px;
    width: auto;
    display: block;
    transition: transform .3s var(--ak-ease);
}
.ak-brand:hover .ak-brand__logo { transform: scale(1.02); }
/* On dark backgrounds: place logo on a light cream card so it stays readable */
.ak-brand__logo--invert {
    height: 88px;
    background: var(--ak-bg-paper);
    padding: 14px 22px;
    border: 1px solid var(--ak-dark-line);
    box-sizing: content-box;
    max-width: 100%;
    object-fit: contain;
}
.ak-brand__tag {
    font-family: var(--ak-font-mono);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ak-ink-muted);
}
@media (max-width: 600px) {
    .ak-brand__logo { height: 36px; }
    .ak-brand__logo--invert { height: 56px; padding: 10px 16px; }
}

.ak-nav {
    display: flex;
    justify-content: center;
    gap: 4px;
}
.ak-nav__link {
    position: relative;
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.005em;
    color: var(--ak-ink-soft);
    transition: color .2s var(--ak-ease);
}
.ak-nav__link::after {
    content: "";
    position: absolute;
    left: 14px; right: 14px;
    bottom: 4px;
    height: 1.5px;
    background: var(--ak-accent);
    transform-origin: left;
    transform: scaleX(0);
    transition: transform .35s var(--ak-ease);
}
.ak-nav__link:hover, .ak-nav__link.ak-is-active { color: var(--ak-ink); }
.ak-nav__link:hover::after, .ak-nav__link.ak-is-active::after { transform: scaleX(1); }

.ak-nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    background: var(--ak-ink);
    color: var(--ak-bg);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
    border: var(--ak-rule) solid var(--ak-ink);
    transition: all .25s var(--ak-ease);
    position: relative;
    overflow: hidden;
}
.ak-nav-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--ak-accent);
    transform: translateY(100%);
    transition: transform .3s var(--ak-ease);
    z-index: -1;
}
.ak-nav-cta:hover { border-color: var(--ak-accent); }
.ak-nav-cta:hover::before { transform: translateY(0); }
.ak-nav-cta__arrow { transition: transform .3s var(--ak-ease); }
.ak-nav-cta:hover .ak-nav-cta__arrow { transform: translateX(4px); }

.ak-nav-toggle {
    display: none;
    width: 44px; height: 44px;
    border: var(--ak-rule) solid var(--ak-ink);
    place-items: center;
    background: transparent;
}
.ak-nav-toggle__bars,
.ak-nav-toggle__bars::before,
.ak-nav-toggle__bars::after {
    width: 22px; height: 2px;
    background: var(--ak-ink);
    display: block;
    position: relative;
}
.ak-nav-toggle__bars::before, .ak-nav-toggle__bars::after {
    content: ""; position: absolute; left: 0;
}
.ak-nav-toggle__bars::before { top: -7px; }
.ak-nav-toggle__bars::after { top: 7px; }

@media (max-width: 980px) {
    .ak-nav { display: none; }
    .ak-nav-toggle { display: grid; }
    .ak-nav-cta { display: none; }
}

/* ---------- Mobile menu ---------- */
.ak-mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--ak-ink);
    color: var(--ak-dark-text);
    z-index: 200;
    display: flex;
    flex-direction: column;
    padding: 24px var(--ak-gutter);
    transform: translateY(-100%);
    transition: transform .4s var(--ak-ease);
    overflow-y: auto;
}
.ak-mobile-menu.ak-is-open { transform: translateY(0); }
.ak-mobile-menu__top {
    display: flex; justify-content: space-between; align-items: center;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--ak-dark-line);
}
.ak-mobile-menu__close {
    width: 44px; height: 44px;
    border: 1px solid var(--ak-dark-line);
    color: var(--ak-dark-text);
    display: grid; place-items: center;
    font-size: 20px;
}
.ak-mobile-menu__nav {
    display: flex;
    flex-direction: column;
    padding-top: 24px;
    gap: 4px;
}
.ak-mobile-menu__nav a {
    font-family: var(--ak-font-display);
    font-size: 36px;
    line-height: 1.1;
    padding: 14px 0;
    border-bottom: 1px solid var(--ak-dark-line);
    color: var(--ak-dark-text);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.ak-mobile-menu__nav a small {
    font-family: var(--ak-font-mono);
    font-size: 12px;
    color: var(--ak-ink-faint);
}

/* ---------- Buttons ---------- */
.ak-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 16px 22px;
    border: var(--ak-rule) solid var(--ak-ink);
    background: transparent;
    font-family: var(--ak-font-sans);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: all .25s var(--ak-ease);
    position: relative;
    overflow: hidden;
    color: var(--ak-ink);
}
.ak-btn__arrow { transition: transform .35s var(--ak-ease); }
.ak-btn:hover { background: var(--ak-ink); color: var(--ak-bg); }
.ak-btn:hover .ak-btn__arrow { transform: translateX(6px); }
.ak-btn--primary {
    background: var(--ak-accent);
    border-color: var(--ak-accent);
    color: #fff;
}
.ak-btn--primary:hover { background: var(--ak-ink); border-color: var(--ak-ink); }
.ak-btn--light {
    border-color: rgba(255,255,255,.4);
    color: var(--ak-dark-text);
}
.ak-btn--light:hover { background: var(--ak-accent); border-color: var(--ak-accent); color: #fff; }
.ak-btn--block { width: 100%; }

/* ---------- Hero ---------- */
.ak-hero {
    position: relative;
    border-bottom: var(--ak-rule) solid var(--ak-ink);
    overflow: hidden;
}

/* Split layout: cream typography left, dark image right */
.ak-hero__split {
    max-width: var(--ak-max-w);
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 0;
    align-items: stretch;
    border-bottom: 1px solid var(--ak-line-soft);
}
.ak-hero__main {
    padding: clamp(48px, 6vw, 96px) clamp(24px, 3vw, 48px) clamp(48px, 5vw, 72px) var(--ak-gutter);
    display: flex;
    flex-direction: column;
    gap: 40px;
    border-right: 1.5px solid var(--ak-ink);
    position: relative;
    z-index: 1;
}
.ak-hero__visual {
    position: relative;
    background: var(--ak-ink);
    overflow: hidden;
    min-height: 540px;
}
.ak-hero__visual-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: contrast(1.05) saturate(1.05);
    animation: ak-hero-intro 2.1s cubic-bezier(.2, .6, .2, 1) both;
    transform-origin: center;
    will-change: transform, opacity;
}
@keyframes ak-hero-intro {
    0%   { transform: scale(1); opacity: 0; }
    100% { transform: scale(1.05); opacity: 1; }
}
/* Animations forced on — ignore OS reduce-motion setting (demo) */
.ak-hero__visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(10,10,10,.45) 0%, transparent 40%, rgba(10,10,10,.5) 100%),
        radial-gradient(ellipse at 70% 30%, transparent 0%, rgba(10,10,10,.3) 80%);
    pointer-events: none;
}
.ak-hero__visual-corners {
    position: absolute;
    inset: 16px;
    pointer-events: none;
    z-index: 2;
}
.ak-hero__visual-corner {
    position: absolute;
    width: 22px;
    height: 22px;
}
.ak-hero__visual-corner--tl { top: 0; left: 0; border-top: 1.5px solid var(--ak-accent); border-left: 1.5px solid var(--ak-accent); }
.ak-hero__visual-corner--tr { top: 0; right: 0; border-top: 1.5px solid var(--ak-accent); border-right: 1.5px solid var(--ak-accent); }
.ak-hero__visual-corner--bl { bottom: 0; left: 0; border-bottom: 1.5px solid var(--ak-accent); border-left: 1.5px solid var(--ak-accent); }
.ak-hero__visual-corner--br { bottom: 0; right: 0; border-bottom: 1.5px solid var(--ak-accent); border-right: 1.5px solid var(--ak-accent); }
.ak-hero__visual-tag {
    position: absolute;
    bottom: 28px;
    left: 28px;
    right: 28px;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,.18);
    font-family: var(--ak-font-mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,.85);
}
@media (max-width: 980px) {
    .ak-hero__split { grid-template-columns: 1fr; }
    .ak-hero__main { border-right: none; border-bottom: 1.5px solid var(--ak-ink); }
    .ak-hero__visual { min-height: 360px; }
}
.ak-hero__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--ak-line-soft);
}
.ak-hero__meta-group {
    display: flex; align-items: center; gap: 24px;
    font-family: var(--ak-font-mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ak-ink-muted);
}
.ak-hero__meta-group strong { color: var(--ak-ink); font-weight: 500; }

.ak-hero__title {
    font-family: var(--ak-font-display);
    font-weight: 600;
    line-height: 0.98;
    letter-spacing: -0.035em;
    font-size: clamp(44px, 6.4vw, 104px);
    margin-block: 12px 0;
}
.ak-hero__title em {
    font-style: italic;
    font-weight: 400;
    color: var(--ak-accent);
}
.ak-hero__line { display: block; }
.ak-hero__line--indent { padding-left: 0; }

/* Favicon-as-letter (replaces "a" in "Uzman") */
.ak-letter-a {
    display: inline-block;
    height: 0.78em;
    width: auto;
    vertical-align: -0.04em;
    margin-inline: 0.02em;
    transform: translateY(0.03em);
    -webkit-user-drag: none;
    user-select: none;
}

.ak-hero__bottom {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--ak-line-soft);
}
.ak-hero__lead {
    font-family: var(--ak-font-sans);
    font-size: clamp(18px, 1.6vw, 24px);
    line-height: 1.55;
    font-weight: 400;
    color: var(--ak-ink-soft);
    max-width: 48ch;
}
.ak-hero__lead em { font-style: normal; font-weight: 600; color: var(--ak-accent); }

.ak-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.ak-hero__actions .ak-btn { flex: 1; min-width: 200px; }

/* Voltage indicator - now overlay inside the dark hero visual */
.ak-voltage {
    position: absolute;
    top: 28px;
    right: 28px;
    width: 220px;
    z-index: 2;
    font-family: var(--ak-font-mono);
    pointer-events: none;
}
.ak-voltage__frame {
    border: 1px solid rgba(255,255,255,.4);
    background: rgba(10,10,10,.65);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 14px 16px;
    position: relative;
    color: var(--ak-dark-text);
}
.ak-voltage__tag {
    color: #fff;
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    line-height: 18px;
    margin: -14px -16px 14px;
    padding-inline: 16px;
    background: var(--ak-accent);
    display: flex;
    justify-content: space-between;
}
.ak-voltage__value {
    font-size: 32px;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1;
}
.ak-voltage__value sup { font-size: 14px; color: var(--ak-accent); }
.ak-voltage__meta {
    margin-top: 8px;
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ak-ink-muted);
    display: flex;
    justify-content: space-between;
}
.ak-voltage__bars {
    display: flex; gap: 3px; margin-top: 12px; height: 6px;
}
.ak-voltage__bars span {
    flex: 1; background: #fff; opacity: .15;
}
.ak-voltage__bars span.ak-on { opacity: 1; background: var(--ak-accent); }
.ak-voltage__meta { color: rgba(255,255,255,.7); }
@media (max-width: 600px) { .ak-voltage { width: 180px; top: 16px; right: 16px; } }

/* Hero stats strip */
.ak-strip {
    border-top: var(--ak-rule) solid var(--ak-ink);
    background: var(--ak-ink);
    color: var(--ak-dark-text);
}
.ak-strip__inner {
    max-width: var(--ak-max-w);
    margin-inline: auto;
    padding-inline: var(--ak-gutter);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.ak-strip__cell {
    padding: 28px 24px;
    border-right: 1px solid var(--ak-dark-line);
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
}
.ak-strip__cell:last-child { border-right: none; }
.ak-strip__num {
    font-family: var(--ak-font-display);
    font-size: clamp(28px, 3.4vw, 48px);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1;
}
.ak-strip__num em { color: var(--ak-accent); font-style: italic; font-weight: 400; }
.ak-strip__label {
    font-family: var(--ak-font-mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ak-ink-faint);
}
@media (max-width: 720px) {
    .ak-strip__inner { grid-template-columns: repeat(2, 1fr); }
    .ak-strip__cell { border-right: 1px solid var(--ak-dark-line); border-bottom: 1px solid var(--ak-dark-line); }
    .ak-strip__cell:nth-child(2n) { border-right: none; }
    .ak-strip__cell:nth-last-child(-n+2) { border-bottom: none; }
}

/* Marquee tape */
.ak-tape {
    background: var(--ak-accent);
    color: #fff;
    overflow: hidden;
    border-block: var(--ak-rule) solid var(--ak-ink);
    padding: 14px 0;
}
.ak-tape__track {
    display: flex;
    gap: 44px;
    width: max-content;
    animation: ak-marquee 40s linear infinite;
    font-family: var(--ak-font-display);
    font-size: 19px;
    font-weight: 500;
    letter-spacing: -0.015em;
    font-style: italic;
    align-items: center;
    white-space: nowrap;
}
.ak-tape__track > span {
    display: inline-flex;
    align-items: center;
    gap: 44px;
}
.ak-tape__track > span::after {
    content: "✦";
    color: rgba(255,255,255,.6);
    font-size: 14px;
}
@keyframes ak-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
.ak-tape--brands {
    background: var(--ak-ink);
    color: #fff;
}
.ak-tape--brands .ak-tape__track {
    font-style: normal;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: -0.005em;
    animation-duration: 60s;
}
.ak-tape--brands .ak-tape__track > span::after {
    content: "·";
    color: var(--ak-accent);
    font-size: 22px;
    line-height: 0;
}

/* ---------- Section ---------- */
.ak-section {
    padding-block: clamp(64px, 9vw, 140px);
    position: relative;
}
.ak-section--dark {
    background: var(--ak-ink);
    color: var(--ak-dark-text);
}
.ak-section--dark .ak-lead { color: #FFFFFF; }
.ak-values .ak-lead { color: #FFFFFF; }
.ak-values .ak-section-num { color: rgba(255,255,255,.7); }
.ak-values .ak-section-num strong { color: #FFFFFF; }

.ak-section-head {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 64px;
    align-items: end;
    padding-bottom: clamp(40px, 5vw, 72px);
    margin-bottom: clamp(48px, 6vw, 80px);
    border-bottom: var(--ak-rule) solid currentColor;
}
.ak-section-head__left { display: flex; flex-direction: column; gap: 18px; }
.ak-section-head__title { max-width: 14ch; }
.ak-section-head__right { display: flex; flex-direction: column; gap: 24px; align-items: start; }
@media (max-width: 800px) {
    .ak-section-head { grid-template-columns: 1fr; gap: 32px; }
}

/* ---------- Services ---------- */
.ak-services {
    background: var(--ak-bg-paper);
    border-block: var(--ak-rule) solid var(--ak-ink);
}
.ak-services__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
}
.ak-service {
    grid-column: span 4;
    padding: 36px 32px;
    border-right: 1px solid var(--ak-line-soft);
    border-bottom: 1px solid var(--ak-line-soft);
    position: relative;
    background: var(--ak-bg-paper);
    transition: color .35s var(--ak-ease);
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    isolation: isolate;
    color: var(--ak-ink);
}
.ak-service:nth-child(3n) { border-right: none; }
.ak-service::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--ak-ink);
    transform: translateY(101%);
    transition: transform .55s var(--ak-ease-out);
    z-index: -1;
}
.ak-service:hover { color: var(--ak-dark-text); }
.ak-service:hover::before { transform: translateY(0); }
.ak-service:hover .ak-service__num { color: var(--ak-accent); }
.ak-service:hover .ak-service__icon path { stroke: var(--ak-dark-text); }
.ak-service:hover .ak-service__icon .ak-accent-stroke { stroke: var(--ak-accent); }

.ak-service__top {
    display: flex; justify-content: space-between; align-items: flex-start;
    gap: 16px;
    margin-bottom: 32px;
}
.ak-service__num {
    font-family: var(--ak-font-mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ak-ink-muted);
    transition: color .3s var(--ak-ease);
}
.ak-service__icon { width: 48px; height: 48px; }
.ak-service__icon path { stroke: var(--ak-ink); stroke-width: 1.5; fill: none; transition: stroke .3s var(--ak-ease); }
.ak-service__icon .ak-accent-stroke { stroke: var(--ak-accent); }

.ak-service__title {
    font-family: var(--ak-font-display);
    font-size: clamp(20px, 1.6vw, 24px);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
}
.ak-service__desc {
    font-size: 14px;
    line-height: 1.55;
    color: var(--ak-ink-muted);
    transition: color .3s var(--ak-ease);
}
.ak-service:hover .ak-service__desc { color: var(--ak-ink-faint); }
.ak-service__arrow {
    margin-top: 24px;
    width: 40px; height: 40px;
    border: 1px solid currentColor;
    display: grid; place-items: center;
    transition: transform .3s var(--ak-ease), background .3s var(--ak-ease), color .3s var(--ak-ease);
}
.ak-service:hover .ak-service__arrow { background: var(--ak-accent); border-color: var(--ak-accent); transform: rotate(-45deg); }
.ak-service:hover .ak-service__arrow svg { stroke: #fff; }

@media (max-width: 980px) {
    .ak-service { grid-column: span 6; }
    .ak-service:nth-child(3n) { border-right: 1px solid var(--ak-line-soft); }
    .ak-service:nth-child(2n) { border-right: none; }
}
@media (max-width: 600px) {
    .ak-service { padding: 24px 18px; min-height: 0; }
    .ak-service__top { margin-bottom: 20px; gap: 12px; }
    .ak-service__icon { width: 36px; height: 36px; }
    .ak-service__title { font-size: 16px; margin-bottom: 10px; letter-spacing: -0.015em; }
    .ak-service__desc { font-size: 12.5px; line-height: 1.5; }
    .ak-service__arrow { width: 32px; height: 32px; margin-top: 16px; }
}

/* ---------- Story / About ---------- */
.ak-story { background: var(--ak-bg); position: relative; }
.ak-story__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(48px, 8vw, 120px);
    align-items: center;
}
@media (max-width: 980px) {
    .ak-story__grid { grid-template-columns: 1fr; }
}
.ak-story__visual {
    position: relative;
    aspect-ratio: 4 / 5;
    background: var(--ak-ink);
    color: var(--ak-dark-text);
    overflow: hidden;
    border: var(--ak-rule) solid var(--ak-ink);
}
.ak-story__visual-num {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-family: var(--ak-font-display);
    font-size: clamp(160px, 24vw, 320px);
    font-weight: 700;
    line-height: 1;
    color: var(--ak-accent);
    letter-spacing: -0.05em;
}
.ak-story__visual-num em { font-style: italic; font-weight: 400; }
.ak-story__visual-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(to right, rgba(255,255,255,0.08) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255,255,255,0.08) 1px, transparent 1px);
    background-size: 48px 48px;
}
.ak-story__visual-tag {
    position: absolute;
    top: 24px;
    left: 24px;
    right: 24px;
    display: flex;
    justify-content: space-between;
    font-family: var(--ak-font-mono);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ak-ink-faint);
}
.ak-story__corner {
    width: 16px; height: 16px;
    border-top: 1.5px solid var(--ak-accent);
    border-left: 1.5px solid var(--ak-accent);
}
.ak-story__corner--tr { border-left: none; border-right: 1.5px solid var(--ak-accent); }
.ak-story__visual-bottom {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 24px;
    border-top: 1px solid rgba(255,255,255,.1);
    backdrop-filter: blur(8px);
    background: rgba(10,10,10,.7);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--ak-font-mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
.ak-story__visual-bottom strong { color: #fff; }

.ak-story__visual--photo {
    aspect-ratio: auto;
    background: #0a0a0a;
}
.ak-story__visual-img {
    display: block;
    width: 100%;
    height: auto;
}

.ak-story__content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.ak-story__content h2 { margin-block: 6px 12px; }
.ak-story__content p {
    font-size: 17px;
    line-height: 1.65;
    color: var(--ak-ink-soft);
    max-width: 56ch;
}
.ak-story__content p strong { color: var(--ak-ink); font-weight: 500; }
.ak-story__points {
    margin-top: 16px;
    border-top: 1px solid var(--ak-line-soft);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.ak-story__points li {
    border-bottom: 1px solid var(--ak-line-soft);
    border-right: 1px solid var(--ak-line-soft);
    padding: 18px 4px 18px 22px;
    position: relative;
    font-size: 14px;
    font-weight: 500;
}
.ak-story__points li:nth-child(2n) { border-right: none; }
.ak-story__points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 8px;
    height: 8px;
    background: var(--ak-accent);
    transform: translateY(-50%) rotate(45deg);
}
@media (max-width: 600px) {
    .ak-story__points { grid-template-columns: 1fr; }
    .ak-story__points li { border-right: none; padding: 14px 4px 14px 20px; }
}

/* ---------- Values ---------- */
.ak-values {
    background: var(--ak-ink);
    color: var(--ak-dark-text);
    border-block: var(--ak-rule) solid var(--ak-ink);
    overflow: hidden;
}
.ak-values__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--ak-dark-line);
}
.ak-value {
    padding: 44px 32px;
    border-right: 1px solid var(--ak-dark-line);
    border-bottom: 1px solid var(--ak-dark-line);
    position: relative;
    overflow: hidden;
    transition: background .4s var(--ak-ease);
}
.ak-value:nth-child(3n) { border-right: none; }
.ak-value:hover { background: rgba(190,24,36,.08); }
.ak-value__top {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 36px;
}
.ak-value__num {
    font-family: var(--ak-font-mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    color: var(--ak-ink-faint);
}
.ak-value__icon {
    width: 56px; height: 56px;
    border: 1px solid var(--ak-dark-line);
    display: grid; place-items: center;
    color: var(--ak-accent);
}
.ak-value__icon svg { width: 28px; height: 28px; }
.ak-value__title {
    font-family: var(--ak-font-display);
    font-size: 28px;
    font-weight: 400;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    line-height: 1.05;
}
.ak-value__desc {
    font-size: 14px;
    line-height: 1.6;
    color: var(--ak-ink-faint);
    max-width: 38ch;
}
@media (max-width: 900px) {
    .ak-values__grid { grid-template-columns: 1fr 1fr; }
    .ak-value:nth-child(3n) { border-right: 1px solid var(--ak-dark-line); }
    .ak-value:nth-child(2n) { border-right: none; }
}
@media (max-width: 600px) {
    .ak-values__grid { grid-template-columns: 1fr; }
    .ak-value, .ak-value:nth-child(3n) { border-right: none; }
}

/* ---------- Partners ---------- */
.ak-partners { background: var(--ak-bg-paper); position: relative; }
.ak-partners__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border-top: var(--ak-rule) solid var(--ak-ink);
    border-bottom: var(--ak-rule) solid var(--ak-ink);
}
.ak-partner {
    padding: 48px 24px;
    border-right: 1px solid var(--ak-line-soft);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-align: center;
    aspect-ratio: 1.2 / 1;
    transition: background .3s var(--ak-ease);
    position: relative;
}
.ak-partner:last-child { border-right: none; }
.ak-partner:hover { background: var(--ak-bg); }
.ak-partner__name {
    font-family: var(--ak-font-display);
    font-size: 30px;
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1;
    color: var(--ak-ink);
}
.ak-partner__name em { color: var(--ak-accent); font-style: italic; font-weight: 400; }
.ak-partner__tag {
    font-family: var(--ak-font-mono);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ak-ink-muted);
}
@media (max-width: 900px) {
    .ak-partners__grid { grid-template-columns: repeat(2, 1fr); }
    .ak-partner { border-right: 1px solid var(--ak-line-soft); border-bottom: 1px solid var(--ak-line-soft); }
    .ak-partner:nth-child(2n) { border-right: none; }
    .ak-partner:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 600px) {
    .ak-partner { padding: 36px 14px; }
    .ak-partner__name { font-size: clamp(20px, 6vw, 26px); word-break: break-word; }
}

/* ---------- Projects ---------- */
.ak-projects { background: var(--ak-bg); }
.ak-projects__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    grid-template-rows: 320px 320px;
    gap: 1px;
    background: var(--ak-ink);
    border: var(--ak-rule) solid var(--ak-ink);
}
.ak-project {
    background: var(--ak-ink);
    color: var(--ak-dark-text);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.ak-project:nth-child(1) { grid-row: span 2; }

.ak-project__bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    background-color: #0a0a0a;
    transition: transform .8s var(--ak-ease-out);
}
.ak-project:hover .ak-project__bg { transform: scale(1.05); }

/* Real photography backgrounds */
.ak-bg-1 {
    background-image: url('/images/pano.png');
    background-size: cover;
    background-position: center;
    background-color: #0a0a0a;
}
.ak-bg-2 {
    background-image: url('/images/high-voltage.png');
    background-size: cover;
    background-position: center;
    background-color: #0a0a0a;
}
.ak-bg-3 {
    background-image: url('/images/abstract_technical_power_infrastructure_background_2.png');
    background-size: cover;
    background-position: center;
    background-color: #0a0a0a;
}
.ak-bg-4 {
    background-image: url('/images/abstract_industrial_energy_flow_background_2.png');
    background-size: cover;
    background-position: center;
    background-color: #0a0a0a;
}
.ak-bg-5 {
    background-image: url('/images/pano2.png');
    background-size: cover;
    background-position: center;
    background-color: #0a0a0a;
}
.ak-bg-tesis-drone {
    background-image: url('/images/banner/tesis-drone.png');
    background-size: cover;
    background-position: center;
    background-color: #0a0a0a;
}
.ak-bg-tesis-1 {
    background-image: url('/images/banner/tesis-karsidan.png');
    background-size: cover;
    background-position: center;
    background-color: #0a0a0a;
}
.ak-bg-tesis-2 {
    background-image: url('/images/banner/tesis-karsidan-2.png');
    background-size: cover;
    background-position: center;
    background-color: #0a0a0a;
}
.ak-bg-tesis-3 {
    background-image: url('/images/banner/tesis-karsidan-3.png');
    background-size: cover;
    background-position: center;
    background-color: #0a0a0a;
}

/* Real gallery photographs */
[class*="ak-photo-"] {
    background-size: cover;
    background-position: center;
    background-color: #0a0a0a;
}
.ak-photo-pano-montaj { background-image: url('/images/gallery/pano-montaj.jpeg'); background-position: center 35%; }
.ak-photo-pano-1 { background-image: url('/images/gallery/pano.jpeg'); background-position: center 40%; }
.ak-photo-pano-2 { background-image: url('/images/gallery/pano1.jpeg'); }
.ak-photo-pano-3 { background-image: url('/images/gallery/pano2.jpeg'); }
.ak-photo-pano-4 { background-image: url('/images/gallery/pano3.jpeg'); }
.ak-photo-pano-5 { background-image: url('/images/gallery/pano4.jpeg'); }
.ak-photo-calisma-1 { background-image: url('/images/gallery/calisma.jpeg'); background-position: center 40%; }
.ak-photo-calisma-2 { background-image: url('/images/gallery/calisma2.jpeg'); background-position: center 35%; }
.ak-photo-yg-trafo { background-image: url('/images/gallery/jenerator-transfer.jpeg'); }
.ak-photo-marka-himel { background-image: url('/images/gallery/himel-brand.jpeg'); }
.ak-photo-marka-europower { background-image: url('/images/gallery/europower-ad.jpeg'); }
.ak-photo-marka-koc { background-image: url('/images/gallery/cable-ad.jpeg'); }
.ak-photo-marka-erse { background-image: url('/images/gallery/cable-ad-2.jpeg'); }

.ak-project__overlay {
    position: absolute;
    inset: 0;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 1;
    background: linear-gradient(to bottom, rgba(0,0,0,.15) 0%, transparent 30%, transparent 55%, rgba(0,0,0,.7) 100%);
}
.ak-project__tag {
    align-self: flex-start;
    font-family: var(--ak-font-mono);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ak-dark-text);
    border: 1px solid rgba(255,255,255,.4);
    padding: 4px 10px;
    backdrop-filter: blur(4px);
    background: rgba(0,0,0,.3);
}
.ak-project__info {
    display: flex; justify-content: space-between; align-items: end;
    gap: 16px;
}
.ak-project__title {
    font-family: var(--ak-font-display);
    font-size: clamp(22px, 2vw, 32px);
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1;
    max-width: 14ch;
}
.ak-project__arrow {
    width: 44px; height: 44px;
    border: 1px solid rgba(255,255,255,.3);
    display: grid; place-items: center;
    background: rgba(0,0,0,.3);
    backdrop-filter: blur(4px);
    transition: all .3s var(--ak-ease);
}
.ak-project:hover .ak-project__arrow {
    background: var(--ak-accent);
    border-color: var(--ak-accent);
    transform: rotate(-45deg);
}

@media (max-width: 800px) {
    .ak-projects__grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 240px);
    }
    .ak-project:nth-child(1) { grid-row: span 1; grid-column: span 2; }
}

/* ---------- CTA ---------- */
.ak-cta {
    background: var(--ak-accent);
    color: #fff;
    border-block: var(--ak-rule) solid var(--ak-ink);
    overflow: hidden;
    position: relative;
}
.ak-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 80% 30%, rgba(255,255,255,.15), transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(0,0,0,.25), transparent 50%);
}
.ak-cta__grid {
    max-width: var(--ak-max-w);
    margin-inline: auto;
    padding: clamp(72px, 10vw, 140px) var(--ak-gutter);
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 80px;
    align-items: end;
    position: relative;
    z-index: 1;
}
.ak-cta__title {
    font-family: var(--ak-font-display);
    font-size: clamp(40px, 5.4vw, 84px);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1;
    max-width: 14ch;
}
.ak-cta__title em { font-style: italic; font-weight: 400; }
.ak-cta__title .ak-stroke { -webkit-text-stroke: 1.5px #fff; }
.ak-cta__side { display: flex; flex-direction: column; gap: 24px; }
.ak-cta__side p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.95;
    max-width: 36ch;
}
@media (max-width: 800px) {
    .ak-cta__grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ---------- Footer ---------- */
.ak-footer {
    background: var(--ak-ink);
    color: var(--ak-dark-text);
    padding-top: 64px;
}
.ak-footer__top {
    max-width: var(--ak-max-w);
    margin-inline: auto;
    padding-inline: var(--ak-gutter);
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 64px;
    border-bottom: 1px solid var(--ak-dark-line);
}
.ak-footer__brand {
    display: flex; flex-direction: column; gap: 24px;
}
.ak-footer__brand .ak-brand__name { color: #fff; font-size: 36px; }
.ak-footer__brand p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--ak-ink-faint);
    max-width: 38ch;
}
.ak-footer__col h4 {
    font-family: var(--ak-font-mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ak-ink-faint);
    margin-bottom: 20px;
    font-weight: 500;
}
.ak-footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.ak-footer__col a {
    font-size: 14px;
    color: var(--ak-dark-text);
    opacity: 0.85;
    transition: all .2s var(--ak-ease);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.ak-footer__col a:hover { opacity: 1; color: var(--ak-accent); }
.ak-footer__col p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--ak-ink-faint);
}
.ak-footer__col p strong { color: #fff; font-weight: 500; }

.ak-footer__mega {
    max-width: var(--ak-max-w);
    margin-inline: auto;
    padding-inline: var(--ak-gutter);
    padding-block: 60px 32px;
}
.ak-footer__mega-text {
    font-family: var(--ak-font-display);
    font-size: clamp(60px, 14vw, 220px);
    font-weight: 300;
    line-height: 0.85;
    letter-spacing: -0.04em;
    color: transparent;
    -webkit-text-stroke: 1px var(--ak-dark-line);
    user-select: none;
    overflow: hidden;
    white-space: nowrap;
}

.ak-footer__bottom { border-top: 1px solid var(--ak-dark-line); }
.ak-footer__bottom-inner {
    max-width: var(--ak-max-w);
    margin-inline: auto;
    padding: 22px var(--ak-gutter);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    font-family: var(--ak-font-mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ak-ink-faint);
}
.ak-footer__bottom-inner a:hover { color: var(--ak-accent); }
.ak-footer__credit {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border: 1px solid var(--ak-dark-line);
    transition: border-color .25s var(--ak-ease), color .25s var(--ak-ease);
}
.ak-footer__credit:hover { border-color: var(--ak-accent); color: var(--ak-accent); }
.ak-footer__credit strong { font-weight: 500; color: #fff; }
.ak-footer__credit:hover strong { color: var(--ak-accent); }

@media (max-width: 900px) {
    .ak-footer__top { grid-template-columns: 1fr 1fr; }
    .ak-footer__brand { grid-column: span 2; }
}
@media (max-width: 600px) {
    .ak-footer__top { grid-template-columns: 1fr; }
    .ak-footer__brand { grid-column: span 1; }
    .ak-footer__bottom-inner { justify-content: flex-start; row-gap: 10px; }
    .ak-footer__credit { margin-left: 0; }
}

/* ---------- Page hero ---------- */
.ak-page-hero {
    background: var(--ak-ink);
    background-image:
        linear-gradient(to right, rgba(10,10,10,.78), rgba(10,10,10,.55) 50%, rgba(10,10,10,.85)),
        url('/images/abstract_technical_power_infrastructure_background_2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--ak-dark-text);
    padding-block: clamp(80px, 12vw, 180px) clamp(48px, 7vw, 100px);
    border-bottom: var(--ak-rule) solid var(--ak-ink);
    position: relative;
    overflow: hidden;
}
.ak-page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 56px 56px;
    pointer-events: none;
    opacity: 0.5;
}
.ak-page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, var(--ak-ink) 100%);
    pointer-events: none;
}
.ak-page-hero__inner {
    max-width: var(--ak-max-w);
    margin-inline: auto;
    padding-inline: var(--ak-gutter);
    position: relative;
}
.ak-breadcrumbs {
    font-family: var(--ak-font-mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ak-ink-faint);
    margin-bottom: 32px;
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}
.ak-breadcrumbs__sep { color: var(--ak-accent); }
.ak-breadcrumbs strong { color: #fff; font-weight: 500; }
.ak-breadcrumbs a:hover { color: var(--ak-accent); }

.ak-page-hero__title {
    font-family: var(--ak-font-display);
    font-size: clamp(44px, 6.5vw, 100px);
    font-weight: 600;
    line-height: 0.98;
    letter-spacing: -0.03em;
    color: #fff;
    margin-bottom: 24px;
    max-width: 16ch;
}
.ak-page-hero__title em { font-style: italic; color: var(--ak-accent); font-weight: 400; }
.ak-page-hero__sub {
    font-family: var(--ak-font-display);
    font-size: clamp(18px, 1.6vw, 22px);
    font-weight: 300;
    line-height: 1.5;
    color: var(--ak-ink-faint);
    max-width: 56ch;
}

/* ---------- Timeline ---------- */
.ak-timeline {
    background: var(--ak-bg-paper);
    border-block: var(--ak-rule) solid var(--ak-ink);
}
.ak-timeline__list { display: grid; grid-template-columns: 1fr; }
.ak-timeline__item {
    display: grid;
    grid-template-columns: 200px 1fr 1fr;
    gap: 48px;
    padding: 40px var(--ak-gutter);
    border-bottom: 1px solid var(--ak-line-soft);
    align-items: start;
    max-width: var(--ak-max-w);
    margin-inline: auto;
    width: 100%;
    transition: background .3s var(--ak-ease);
}
.ak-timeline__item:hover { background: var(--ak-bg); }
.ak-timeline__item:hover .ak-timeline__year em { color: var(--ak-accent); }
.ak-timeline__item:last-child { border-bottom: none; }
.ak-timeline__year {
    font-family: var(--ak-font-display);
    font-size: clamp(48px, 5vw, 80px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.03em;
}
.ak-timeline__year em { font-style: italic; color: var(--ak-ink); font-weight: 400; transition: color .3s var(--ak-ease); }
.ak-timeline__title {
    font-family: var(--ak-font-display);
    font-size: clamp(22px, 1.8vw, 28px);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.02em;
}
.ak-timeline__desc {
    font-size: 15px;
    line-height: 1.6;
    color: var(--ak-ink-muted);
    max-width: 50ch;
}
@media (max-width: 800px) {
    .ak-timeline__item { grid-template-columns: 1fr; gap: 12px; padding: 32px var(--ak-gutter); }
    .ak-timeline__year { font-size: 56px; }
}

/* ---------- Contact ---------- */
.ak-contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-block: var(--ak-rule) solid var(--ak-ink);
}
@media (max-width: 900px) { .ak-contact-wrap { grid-template-columns: 1fr; } }

.ak-contact-info {
    background: var(--ak-ink);
    color: var(--ak-dark-text);
    padding: clamp(48px, 6vw, 80px) var(--ak-gutter);
    display: flex;
    flex-direction: column;
    gap: 36px;
    position: relative;
    overflow: hidden;
}
.ak-contact-info::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}
.ak-contact-info > * { position: relative; }
.ak-contact-info h2 {
    font-family: var(--ak-font-display);
    font-size: clamp(32px, 3.8vw, 52px);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: #fff;
    margin-bottom: 8px;
}
.ak-contact-info h2 em { font-style: italic; color: var(--ak-accent); font-weight: 400; }

.ak-contact-detail {
    border-top: 1px solid var(--ak-dark-line);
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.ak-contact-detail__label {
    font-family: var(--ak-font-mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ak-ink-faint);
}
.ak-contact-detail__value {
    font-family: var(--ak-font-display);
    font-size: clamp(20px, 1.8vw, 28px);
    font-weight: 400;
    color: #fff;
    line-height: 1.2;
    letter-spacing: -0.01em;
}
.ak-contact-detail__value:hover { color: var(--ak-accent); }
.ak-contact-detail__meta {
    font-size: 13px;
    color: var(--ak-ink-faint);
    line-height: 1.5;
}

.ak-contact-form {
    background: var(--ak-bg-paper);
    padding: clamp(48px, 6vw, 80px) var(--ak-gutter);
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.ak-contact-form__title {
    font-family: var(--ak-font-display);
    font-size: clamp(28px, 3vw, 44px);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin-bottom: 16px;
}

.ak-field {
    display: flex; flex-direction: column; gap: 6px;
    border-bottom: 1.5px solid var(--ak-ink);
    padding-bottom: 8px;
}
.ak-field label {
    font-family: var(--ak-font-mono);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ak-ink-muted);
}
.ak-field input, .ak-field textarea, .ak-field select {
    border: none;
    background: transparent;
    padding: 6px 0;
    font-size: 16px;
    color: var(--ak-ink);
    outline: none;
    width: 100%;
    font-family: var(--ak-font-sans);
}
.ak-field textarea { resize: vertical; min-height: 100px; }
.ak-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
@media (max-width: 600px) { .ak-field-row { grid-template-columns: 1fr; } }

/* ---------- Blog ---------- */
.ak-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: var(--ak-rule) solid var(--ak-ink);
}
.ak-blog-item {
    border-right: 1px solid var(--ak-line-soft);
    border-bottom: 1px solid var(--ak-line-soft);
    background: var(--ak-bg-paper);
    display: flex;
    flex-direction: column;
    transition: background .3s var(--ak-ease);
}
.ak-blog-item:nth-child(3n) { border-right: none; }
.ak-blog-item:hover { background: var(--ak-bg); }
.ak-blog-item:hover .ak-blog-item__img { filter: grayscale(0%); }
.ak-blog-item__img {
    aspect-ratio: 4 / 3;
    border-bottom: 1px solid var(--ak-line-soft);
    transition: filter .5s var(--ak-ease);
    filter: grayscale(35%);
    position: relative;
    overflow: hidden;
}
.ak-blog-item__img-num {
    position: absolute;
    bottom: 16px; right: 16px;
    font-family: var(--ak-font-mono);
    font-size: 12px;
    letter-spacing: 0.14em;
    color: #fff;
    background: rgba(0,0,0,.6);
    padding: 4px 10px;
    backdrop-filter: blur(4px);
}
.ak-blog-item__content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
}
.ak-blog-meta {
    font-family: var(--ak-font-mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ak-ink-muted);
    display: flex;
    gap: 14px;
    align-items: center;
}
.ak-blog-meta .ak-cat { color: var(--ak-accent); font-weight: 500; }
.ak-blog-item__title {
    font-family: var(--ak-font-display);
    font-size: clamp(22px, 1.8vw, 28px);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.02em;
}
.ak-blog-item__excerpt {
    font-size: 14px;
    line-height: 1.55;
    color: var(--ak-ink-muted);
    flex: 1;
}
.ak-blog-readmore {
    margin-top: 16px;
    font-family: var(--ak-font-mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ak-ink);
    display: flex;
    gap: 8px;
    align-items: center;
    border-top: 1px solid var(--ak-line-soft);
    padding-top: 16px;
}
.ak-blog-readmore .ak-arrow { transition: transform .3s var(--ak-ease); }
.ak-blog-item:hover .ak-blog-readmore { color: var(--ak-accent); }
.ak-blog-item:hover .ak-blog-readmore .ak-arrow { transform: translateX(4px); }
@media (max-width: 900px) {
    .ak-blog-grid { grid-template-columns: 1fr 1fr; }
    .ak-blog-item:nth-child(3n) { border-right: 1px solid var(--ak-line-soft); }
    .ak-blog-item:nth-child(2n) { border-right: none; }
}
@media (max-width: 600px) {
    .ak-blog-grid { grid-template-columns: 1fr; }
    .ak-blog-item, .ak-blog-item:nth-child(3n), .ak-blog-item:nth-child(2n) { border-right: none; }
}

.ak-blog-feature {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    border-block: var(--ak-rule) solid var(--ak-ink);
    background: var(--ak-bg-paper);
    min-height: 480px;
}
.ak-blog-feature__img {
    position: relative;
    overflow: hidden;
    border-right: var(--ak-rule) solid var(--ak-ink);
}
.ak-blog-feature__content {
    padding: clamp(40px, 5vw, 64px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
}
.ak-blog-feature__title {
    font-family: var(--ak-font-display);
    font-size: clamp(28px, 3.2vw, 44px);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.025em;
}
.ak-blog-feature__content p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--ak-ink-soft);
    max-width: 50ch;
}
@media (max-width: 800px) {
    .ak-blog-feature { grid-template-columns: 1fr; }
    .ak-blog-feature__img { min-height: 320px; border-right: none; border-bottom: var(--ak-rule) solid var(--ak-ink); }
}

/* ---------- Gallery ---------- */
.ak-gallery-filters {
    display: flex;
    border-block: var(--ak-rule) solid var(--ak-ink);
    background: var(--ak-bg-paper);
    overflow-x: auto;
}
.ak-gallery-filter {
    padding: 18px 28px;
    font-family: var(--ak-font-mono);
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ak-ink-muted);
    border-right: 1px solid var(--ak-line-soft);
    transition: all .25s var(--ak-ease);
    cursor: pointer;
    white-space: nowrap;
}
.ak-gallery-filter:hover { background: var(--ak-ink); color: #fff; }
.ak-gallery-filter.ak-is-active { background: var(--ak-accent); color: #fff; }

.ak-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(16px, 2vw, 28px);
    background: var(--ak-bg-paper);
    padding: clamp(40px, 5vw, 72px) var(--ak-gutter);
    border-bottom: var(--ak-rule) solid var(--ak-ink);
}
.ak-gallery-item {
    aspect-ratio: 1 / 1;
    background: var(--ak-bg-warm);
    position: relative;
    overflow: hidden;
    cursor: zoom-in;
    border: 1px solid var(--ak-ink);
    box-shadow: 6px 6px 0 0 var(--ak-ink);
    transition: transform .35s var(--ak-ease), box-shadow .35s var(--ak-ease);
    padding: 0;
    font: inherit;
    color: inherit;
    text-align: left;
    width: 100%;
    display: block;
}
.ak-gallery-item:hover {
    transform: translate(-2px, -2px);
    box-shadow: 10px 10px 0 0 var(--ak-ink);
}
.ak-gallery-item:focus-visible {
    outline: 3px solid var(--ak-accent);
    outline-offset: 4px;
}
.ak-gallery-item:nth-child(7n+1) { aspect-ratio: 1 / 1.4; grid-row: span 2; }
.ak-gallery-item__bg {
    position: absolute; inset: 0;
    transition: transform .8s var(--ak-ease-out);
}
.ak-gallery-item:hover .ak-gallery-item__bg { transform: scale(1.06); }
.ak-gallery-item__overlay {
    position: absolute; inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(10, 10, 10, .35);
    opacity: 0;
    transition: opacity .3s var(--ak-ease);
}
.ak-gallery-item:hover .ak-gallery-item__overlay { opacity: 1; }
.ak-gallery-item__zoom {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border: 1.5px solid #fff;
    border-radius: 50%;
    background: rgba(10, 10, 10, .25);
    transform: scale(.85);
    transition: transform .3s var(--ak-ease);
}
.ak-gallery-item:hover .ak-gallery-item__zoom { transform: scale(1); }
@media (max-width: 800px) {
    .ak-gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .ak-gallery-item:nth-child(7n+1) { grid-row: auto; aspect-ratio: 1 / 1; }
    .ak-gallery-item { box-shadow: 4px 4px 0 0 var(--ak-ink); }
    .ak-gallery-item:hover { box-shadow: 6px 6px 0 0 var(--ak-ink); }
}

/* ---------- Lightbox ---------- */
.ak-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: clamp(16px, 4vw, 48px);
}
.ak-lightbox.ak-is-open {
    display: flex;
    animation: akLightboxIn .25s var(--ak-ease-out);
}
@keyframes akLightboxIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
.ak-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, .92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 0;
    padding: 0;
    cursor: zoom-out;
}
.ak-lightbox__close,
.ak-lightbox__nav {
    position: absolute;
    z-index: 2;
    width: 56px;
    height: 56px;
    border: 1.5px solid #fff;
    background: transparent;
    color: #fff;
    font-family: var(--ak-font-mono);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    transition: background .2s var(--ak-ease), color .2s var(--ak-ease), transform .2s var(--ak-ease);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.ak-lightbox__close:hover,
.ak-lightbox__nav:hover {
    background: #fff;
    color: var(--ak-ink);
}
.ak-lightbox__close {
    top: clamp(16px, 3vw, 32px);
    right: clamp(16px, 3vw, 32px);
}
.ak-lightbox__nav { top: 50%; transform: translateY(-50%); }
.ak-lightbox__nav--prev { left: clamp(12px, 2vw, 28px); }
.ak-lightbox__nav--next { right: clamp(12px, 2vw, 28px); }
.ak-lightbox__nav:hover { transform: translateY(-50%) scale(1.05); }
.ak-lightbox__stage {
    position: relative;
    z-index: 1;
    max-width: min(1200px, 100%);
    max-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    margin: 0;
}
.ak-lightbox__frame {
    border: 1.5px solid #fff;
    background: var(--ak-ink);
    overflow: hidden;
    max-width: 100%;
    max-height: calc(100vh - 180px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: zoom-in;
}
.ak-lightbox__frame.ak-is-zoomed { cursor: zoom-out; }
.ak-lightbox__img {
    display: block;
    max-width: 100%;
    max-height: calc(100vh - 180px);
    object-fit: contain;
    transition: transform .35s var(--ak-ease-out);
    transform-origin: center center;
    user-select: none;
    -webkit-user-drag: none;
}
.ak-lightbox__frame.ak-is-zoomed .ak-lightbox__img { transform: scale(2); }
.ak-lightbox__meta {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #fff;
    flex-wrap: wrap;
    justify-content: center;
}
.ak-lightbox__tag {
    font-family: var(--ak-font-mono);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    background: var(--ak-accent);
    color: #fff;
    padding: 4px 10px;
}
.ak-lightbox__title {
    font-family: var(--ak-font-display);
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 400;
}
.ak-lightbox__counter {
    font-family: var(--ak-font-mono);
    font-size: 11px;
    letter-spacing: 0.12em;
    color: var(--ak-ink-faint);
    padding-left: 12px;
    border-left: 1px solid rgba(255,255,255,.2);
}
body.ak-no-scroll { overflow: hidden; }
@media (max-width: 600px) {
    .ak-lightbox { padding: 16px 16px 96px; align-items: flex-start; }
    .ak-lightbox__close,
    .ak-lightbox__nav { width: 44px; height: 44px; font-size: 20px; }
    .ak-lightbox__nav {
        top: auto;
        bottom: 20px;
        transform: none;
    }
    .ak-lightbox__nav--prev { left: clamp(16px, 6vw, 28px); }
    .ak-lightbox__nav--next { right: clamp(16px, 6vw, 28px); }
    .ak-lightbox__nav:hover { transform: scale(1.05); }
    .ak-lightbox__stage { max-height: calc(100vh - 140px); }
    .ak-lightbox__frame { max-height: calc(100vh - 240px); }
    .ak-lightbox__img { max-height: calc(100vh - 240px); }
    .ak-lightbox__meta { flex-direction: column; gap: 8px; text-align: center; }
    .ak-lightbox__counter { padding-left: 0; border-left: 0; }
}

/* ---------- Partner detail rows ---------- */
.ak-partner-detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    border-top: var(--ak-rule) solid var(--ak-ink);
}
.ak-partner-detail {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 48px;
    padding: 48px var(--ak-gutter);
    border-bottom: 1px solid var(--ak-line-soft);
    align-items: center;
    max-width: var(--ak-max-w);
    margin-inline: auto;
    width: 100%;
    transition: background .3s var(--ak-ease);
}
.ak-partner-detail:hover { background: var(--ak-bg-paper); }
.ak-partner-detail:last-child { border-bottom: none; }
.ak-partner-detail__logo {
    font-family: var(--ak-font-display);
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 500;
    letter-spacing: -0.025em;
    line-height: 1;
}
.ak-partner-detail__logo em { color: var(--ak-accent); font-style: italic; font-weight: 400; }
.ak-partner-detail__info h3 {
    font-family: var(--ak-font-display);
    font-size: clamp(20px, 1.6vw, 24px);
    font-weight: 500;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}
.ak-partner-detail__info p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--ak-ink-muted);
    max-width: 56ch;
}
.ak-partner-detail__meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-family: var(--ak-font-mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ak-ink-muted);
}
.ak-partner-detail__meta strong {
    color: var(--ak-ink);
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.04em;
    text-transform: none;
    font-family: var(--ak-font-sans);
}
@media (max-width: 800px) {
    .ak-partner-detail { grid-template-columns: 1fr; gap: 16px; }
}

/* ---------- Reveal animations (forced on regardless of OS reduce-motion) ----------
   Initial hidden state is gated behind `.ak-js` on <html>. If JS fails to load,
   the gate never applies and content stays visible — never permanently hidden. */
.ak-reveal {
    transition: opacity .8s var(--ak-ease-out), transform .8s var(--ak-ease-out);
}
.ak-js .ak-reveal:not(.ak-is-visible) {
    opacity: 0;
    transform: translateY(28px);
}
.ak-reveal.ak-is-visible { opacity: 1; transform: translateY(0); }
.ak-reveal.ak-delay-1 { transition-delay: .1s; }
.ak-reveal.ak-delay-2 { transition-delay: .2s; }
.ak-reveal.ak-delay-3 { transition-delay: .3s; }
.ak-reveal.ak-delay-4 { transition-delay: .4s; }

/* Text sweep — left-to-right reveal without layout shift.
   Pair with <em> to paint the italic in the section's default color first,
   then transition to the accent color after the sweep finishes. */
.ak-text-sweep {
    transition: clip-path 1.05s cubic-bezier(.65, 0, .35, 1);
}
.ak-js .ak-text-sweep:not(.ak-is-visible) {
    clip-path: inset(-0.18em 100% -0.25em 0);
}
.ak-text-sweep.ak-is-visible {
    clip-path: inset(-0.18em -0.05em -0.25em 0);
}
.ak-text-sweep em {
    transition: color .55s ease-out 1s;
}
.ak-js .ak-text-sweep:not(.ak-is-visible) em {
    color: inherit;
}
.ak-text-sweep.ak-is-visible em {
    color: var(--ak-accent);
}

/* ---------- Back-to-top ---------- */
.ak-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 56px;
    height: 56px;
    background: var(--ak-ink);
    color: #fff;
    border: 1.5px solid var(--ak-ink);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    z-index: 90;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity .35s var(--ak-ease), transform .35s var(--ak-ease), background .25s var(--ak-ease), color .25s var(--ak-ease);
    box-shadow: 4px 4px 0 0 var(--ak-accent);
}
.ak-to-top.ak-is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.ak-to-top:hover {
    background: var(--ak-accent);
    border-color: var(--ak-accent);
    box-shadow: 4px 4px 0 0 var(--ak-ink);
}
.ak-to-top:active {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 0 var(--ak-accent);
}
.ak-to-top:hover:active {
    box-shadow: 2px 2px 0 0 var(--ak-ink);
}
.ak-to-top__label {
    font-family: var(--ak-font-mono);
    font-size: 9px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    line-height: 1;
}
@media (max-width: 600px) {
    .ak-to-top {
        right: 16px;
        bottom: 16px;
        width: 48px;
        height: 48px;
    }
    .ak-to-top__label { display: none; }
}

/* ---------- Cookie consent ---------- */
.ak-cookie {
    position: fixed;
    left: 24px;
    bottom: 24px;
    width: min(420px, calc(100vw - 48px));
    background: #FFFFFF;
    border: 1.5px solid var(--ak-ink);
    box-shadow: 6px 6px 0 0 var(--ak-accent);
    padding: 22px 24px 20px;
    z-index: 95;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: opacity .45s var(--ak-ease), transform .45s var(--ak-ease);
}
.ak-cookie.ak-is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.ak-cookie__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--ak-line-soft);
}
.ak-cookie__label {
    font-family: var(--ak-font-mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ak-ink);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.ak-cookie__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--ak-accent);
    box-shadow: 0 0 0 0 rgba(190,24,36,.6);
    animation: ak-pulse 2.4s infinite;
}
.ak-cookie__close {
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border: 1px solid var(--ak-line-soft);
    color: var(--ak-ink-muted);
    font-size: 16px;
    line-height: 1;
    transition: all .2s var(--ak-ease);
}
.ak-cookie__close:hover {
    background: var(--ak-ink);
    color: #fff;
    border-color: var(--ak-ink);
}
.ak-cookie__title {
    font-family: var(--ak-font-display);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.015em;
    margin-bottom: 8px;
    color: var(--ak-ink);
}
.ak-cookie__desc {
    font-size: 13px;
    line-height: 1.6;
    color: var(--ak-ink-muted);
    margin-bottom: 18px;
}
.ak-cookie__desc a {
    color: var(--ak-accent);
    border-bottom: 1px solid currentColor;
}
.ak-cookie__desc a:hover { color: var(--ak-ink); }
.ak-cookie__actions {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 10px;
}
.ak-cookie__btn {
    padding: 11px 14px;
    border: 1.5px solid var(--ak-ink);
    background: transparent;
    color: var(--ak-ink);
    font-family: var(--ak-font-sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: all .25s var(--ak-ease);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.ak-cookie__btn:hover { background: var(--ak-ink); color: #fff; }
.ak-cookie__btn--accept {
    background: var(--ak-accent);
    border-color: var(--ak-accent);
    color: #fff;
}
.ak-cookie__btn--accept:hover {
    background: var(--ak-ink);
    border-color: var(--ak-ink);
}
.ak-cookie__btn-arrow { transition: transform .25s var(--ak-ease); }
.ak-cookie__btn--accept:hover .ak-cookie__btn-arrow { transform: translateX(4px); }
@media (max-width: 600px) {
    .ak-cookie {
        left: 12px;
        right: 12px;
        bottom: 12px;
        width: auto;
        padding: 18px 18px 16px;
    }
}

/* Decorative fixed corner indicators */
.ak-corner {
    position: fixed;
    width: 24px;
    height: 24px;
    pointer-events: none;
    z-index: 50;
}
.ak-corner--tl { top: 130px; left: 12px; border-top: 1.5px solid var(--ak-accent); border-left: 1.5px solid var(--ak-accent); }
.ak-corner--tr { top: 130px; right: 12px; border-top: 1.5px solid var(--ak-accent); border-right: 1.5px solid var(--ak-accent); }
.ak-corner--bl { bottom: 12px; left: 12px; border-bottom: 1.5px solid var(--ak-accent); border-left: 1.5px solid var(--ak-accent); }
.ak-corner--br { bottom: 12px; right: 12px; border-bottom: 1.5px solid var(--ak-accent); border-right: 1.5px solid var(--ak-accent); }
@media (max-width: 980px) { .ak-corner { display: none; } }

/* ============================================================
   BIO / İsmail Akgün — Hikâye anlatımı
   ============================================================ */
.ak-bio {
    background: var(--ak-bg-paper);
    border-top: 1px solid var(--ak-line-soft);
    border-bottom: 1px solid var(--ak-line-soft);
    position: relative;
}

.ak-bio__intro {
    padding: clamp(56px, 8vw, 110px) var(--ak-gutter);
    max-width: var(--ak-max-w);
    margin: 0 auto;
    border-bottom: 1px solid var(--ak-line-soft);
}
.ak-bio__intro-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: clamp(40px, 6vw, 90px);
    align-items: end;
}
.ak-bio__intro-text { max-width: 60ch; }
.ak-bio__intro-eyebrow {
    font-family: var(--ak-font-mono);
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--ak-accent);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.ak-bio__intro-eyebrow::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--ak-accent);
}
.ak-bio__intro-lead {
    font-family: var(--ak-font-display);
    font-size: clamp(22px, 2.4vw, 34px);
    line-height: 1.35;
    color: var(--ak-ink);
    font-weight: 300;
    letter-spacing: -0.01em;
}
.ak-bio__intro-lead em {
    font-style: italic;
    color: var(--ak-accent);
    font-weight: 400;
}
.ak-bio__intro-byline {
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid var(--ak-line-soft);
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.ak-bio__intro-byline strong {
    font-family: var(--ak-font-display);
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.02em;
}
.ak-bio__intro-byline span {
    font-family: var(--ak-font-mono);
    font-size: 11px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--ak-ink-muted);
}
.ak-bio__intro-portrait {
    position: relative;
    aspect-ratio: 4 / 5;
    background: var(--ak-bg-warm);
    border: 1px solid var(--ak-line-soft);
    overflow: hidden;
}
.ak-bio__intro-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1) contrast(1.05);
}
.ak-bio__intro-portrait::after {
    content: 'İSMAİL AKGÜN · KURUCU';
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    font-family: var(--ak-font-mono);
    font-size: 10px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 1px 6px rgba(0,0,0,.6);
}
.ak-bio__intro-portrait--empty {
    background:
        repeating-linear-gradient(135deg, transparent 0 14px, rgba(10,10,10,.04) 14px 15px),
        var(--ak-bg-warm);
    display: flex;
    align-items: center;
    justify-content: center;
}
.ak-bio__intro-portrait--empty span {
    font-family: var(--ak-font-mono);
    font-size: 10px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--ak-ink-muted);
}

@media (max-width: 900px) {
    .ak-bio__intro-grid { grid-template-columns: 1fr; }
    .ak-bio__intro-portrait { aspect-ratio: 4 / 3; }
}

/* ---------- Chapters ---------- */
.ak-chapter {
    border-top: 1px solid var(--ak-line-soft);
    padding: clamp(56px, 7vw, 96px) var(--ak-gutter);
    max-width: var(--ak-max-w);
    margin: 0 auto;
}
.ak-chapter:first-of-type { border-top: none; }

.ak-chapter__grid {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) 3fr;
    gap: clamp(32px, 5vw, 80px);
    align-items: start;
}
.ak-chapter__meta {
    position: sticky;
    top: 120px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.ak-chapter__num {
    font-family: var(--ak-font-mono);
    font-size: 11px;
    letter-spacing: .18em;
    color: var(--ak-ink-muted);
    text-transform: uppercase;
}
.ak-chapter__num strong {
    color: var(--ak-accent);
    font-weight: 500;
    margin-right: 8px;
}
.ak-chapter__year {
    font-family: var(--ak-font-display);
    font-size: clamp(54px, 6vw, 96px);
    font-weight: 200;
    line-height: 0.95;
    letter-spacing: -0.02em;
    color: var(--ak-ink);
}
.ak-chapter__year em {
    font-style: italic;
    color: var(--ak-accent);
    font-weight: 300;
}
.ak-chapter__place {
    font-family: var(--ak-font-mono);
    font-size: 11px;
    letter-spacing: .14em;
    color: var(--ak-ink-muted);
    text-transform: uppercase;
    padding-top: 12px;
    border-top: 1px solid var(--ak-line-soft);
    max-width: 24ch;
}

.ak-chapter__body {
    max-width: 64ch;
}
.ak-chapter__title {
    font-family: var(--ak-font-display);
    font-size: clamp(26px, 3vw, 42px);
    line-height: 1.15;
    letter-spacing: -0.015em;
    font-weight: 400;
    margin-bottom: 28px;
    color: var(--ak-ink);
}
.ak-chapter__title em {
    font-style: italic;
    color: var(--ak-accent);
    font-weight: 400;
}
.ak-chapter__body p {
    font-family: var(--ak-font-sans);
    font-size: 17px;
    line-height: 1.72;
    color: var(--ak-ink-soft);
    margin-bottom: 20px;
}
.ak-chapter__body p:last-child { margin-bottom: 0; }
.ak-chapter__body p strong {
    color: var(--ak-ink);
    font-weight: 500;
}
.ak-chapter__body p em {
    font-style: italic;
    color: var(--ak-accent-deep);
}

/* Pull quote inside chapter */
.ak-pullquote {
    margin: 36px 0;
    padding: 24px 0 24px 28px;
    border-left: 2px solid var(--ak-accent);
    font-family: var(--ak-font-display);
    font-size: clamp(22px, 2.4vw, 32px);
    line-height: 1.35;
    font-style: italic;
    font-weight: 300;
    color: var(--ak-ink);
    letter-spacing: -0.01em;
    max-width: 28ch;
}
.ak-pullquote--right {
    margin-left: auto;
    margin-right: 0;
    border-left: none;
    border-right: 2px solid var(--ak-accent);
    padding-left: 0;
    padding-right: 28px;
    text-align: right;
}
.ak-pullquote__attr {
    display: block;
    margin-top: 14px;
    font-family: var(--ak-font-mono);
    font-size: 11px;
    letter-spacing: .16em;
    text-transform: uppercase;
    font-style: normal;
    color: var(--ak-ink-muted);
}

/* Chapter photo */
.ak-chapter__photo {
    margin: 36px 0 8px;
    position: relative;
}
.ak-chapter__photo-frame {
    position: relative;
    aspect-ratio: 16 / 10;
    background: var(--ak-bg-warm);
    border: 1px solid var(--ak-line-soft);
    overflow: hidden;
}
.ak-chapter__photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.85) contrast(1.05);
    transition: filter .6s var(--ak-ease);
}
.ak-chapter__photo:hover .ak-chapter__photo-frame img {
    filter: grayscale(0) contrast(1);
}
.ak-chapter__photo-frame--empty {
    background:
        repeating-linear-gradient(135deg, transparent 0 14px, rgba(10,10,10,.04) 14px 15px),
        var(--ak-bg-warm);
    display: flex;
    align-items: center;
    justify-content: center;
}
.ak-chapter__photo-frame--empty span {
    font-family: var(--ak-font-mono);
    font-size: 10px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--ak-ink-muted);
    padding: 0 24px;
    text-align: center;
}
.ak-chapter__caption {
    margin-top: 14px;
    font-family: var(--ak-font-mono);
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--ak-ink-muted);
    display: flex;
    align-items: center;
    gap: 12px;
}
.ak-chapter__caption::before {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--ak-accent);
    flex-shrink: 0;
}

/* Sign-off — closing of the story */
.ak-bio__signoff {
    padding: clamp(56px, 7vw, 96px) var(--ak-gutter);
    max-width: var(--ak-max-w);
    margin: 0 auto;
    border-top: 1px solid var(--ak-line-soft);
    text-align: center;
}
.ak-bio__signoff-text {
    font-family: var(--ak-font-display);
    font-size: clamp(22px, 2.4vw, 32px);
    line-height: 1.4;
    font-style: italic;
    font-weight: 300;
    color: var(--ak-ink);
    max-width: 28ch;
    margin: 0 auto 32px;
}
.ak-bio__signoff-name {
    font-family: var(--ak-font-display);
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--ak-ink);
}
.ak-bio__signoff-role {
    display: block;
    margin-top: 8px;
    font-family: var(--ak-font-mono);
    font-size: 11px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--ak-ink-muted);
    font-weight: 400;
}

/* ---------- Arşivden — Saha Albümü ---------- */
.ak-archive {
    background: var(--ak-bg-paper);
    padding: clamp(64px, 8vw, 120px) 0 clamp(48px, 6vw, 96px);
    border-top: 1px solid var(--ak-line-soft);
    border-bottom: 1px solid var(--ak-line-soft);
}
.ak-archive__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 2.5vw, 36px);
    margin-top: clamp(40px, 5vw, 64px);
}
.ak-archive__item {
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform .5s var(--ak-ease-out);
}
.ak-archive__item:hover { transform: translateY(-4px); }
.ak-archive__frame {
    position: relative;
    aspect-ratio: 4 / 3;
    background: var(--ak-bg-warm);
    border: 1px solid var(--ak-line-soft);
    overflow: hidden;
}
.ak-archive__frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(0.18) contrast(1.02) saturate(0.85);
    transition: filter .6s var(--ak-ease), transform .8s var(--ak-ease-out);
}
.ak-archive__item:hover .ak-archive__frame img {
    filter: sepia(0) contrast(1.05) saturate(1);
    transform: scale(1.04);
}
.ak-archive__item figcaption {
    font-family: var(--ak-font-mono);
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--ak-ink-muted);
    display: flex;
    align-items: center;
    gap: 12px;
}
.ak-archive__item figcaption::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--ak-accent);
    flex-shrink: 0;
}
@media (max-width: 900px) {
    .ak-archive__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .ak-archive__grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
    .ak-chapter__grid { grid-template-columns: 1fr; gap: 24px; }
    .ak-chapter__meta { position: static; flex-direction: row; align-items: baseline; flex-wrap: wrap; gap: 16px; }
    .ak-chapter__year { font-size: 56px; }
    .ak-chapter__place { padding-top: 0; border-top: none; max-width: none; }
    .ak-pullquote { margin: 24px 0; padding-left: 18px; font-size: 22px; }
    .ak-pullquote--right { padding-right: 18px; }
}

/* ============================================================
   MOTTO STRIP — anasayfa
   ============================================================ */
.ak-motto-strip {
    background: var(--ak-ink);
    color: #fff;
    border-top: 1px solid var(--ak-dark-line);
    border-bottom: 1px solid var(--ak-dark-line);
    overflow: hidden;
}
.ak-motto-strip__inner {
    max-width: var(--ak-max-w);
    margin: 0 auto;
    padding: 28px var(--ak-gutter);
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: clamp(20px, 3vw, 48px);
    align-items: center;
}
.ak-motto-strip__tag {
    font-family: var(--ak-font-mono);
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--ak-accent);
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}
.ak-motto-strip__tag::before {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--ak-accent);
}
.ak-motto-strip__text {
    font-family: var(--ak-font-display);
    font-size: clamp(18px, 2vw, 26px);
    font-weight: 300;
    letter-spacing: -0.01em;
    line-height: 1.3;
    color: #fff;
}
.ak-motto-strip__text em {
    font-style: italic;
    color: var(--ak-accent);
    font-weight: 400;
}
.ak-motto-strip__cta {
    font-family: var(--ak-font-mono);
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    transition: color .25s var(--ak-ease);
}
.ak-motto-strip__cta:hover { color: var(--ak-accent); }
.ak-motto-strip__cta-arrow { transition: transform .25s var(--ak-ease); }
.ak-motto-strip__cta:hover .ak-motto-strip__cta-arrow { transform: translateX(4px); }

@media (max-width: 900px) {
    .ak-motto-strip__inner { grid-template-columns: 1fr; gap: 16px; padding: 24px var(--ak-gutter); }
    .ak-motto-strip__tag, .ak-motto-strip__cta { font-size: 10px; }
}

/* ============================================================
   SHOP / Mağaza — anasayfa, toptan & perakende
   ============================================================ */
.ak-shop {
    background: var(--ak-bg-paper);
    border-top: 1px solid var(--ak-line-soft);
    border-bottom: 1px solid var(--ak-line-soft);
}
.ak-shop__inner {
    max-width: var(--ak-max-w);
    margin: 0 auto;
    padding: clamp(64px, 8vw, 120px) var(--ak-gutter);
}
.ak-shop__grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: clamp(40px, 6vw, 90px);
    align-items: stretch;
}
.ak-shop__lead {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.ak-shop__lead .ak-eyebrow { margin-bottom: 0; }
.ak-shop__lead p {
    font-size: 17px;
    line-height: 1.65;
    color: var(--ak-ink-soft);
    max-width: 52ch;
}
.ak-shop__modes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 8px;
}
.ak-shop__mode {
    border: 1px solid var(--ak-line-soft);
    padding: 18px 20px;
    background: var(--ak-bg);
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.ak-shop__mode strong {
    font-family: var(--ak-font-display);
    font-size: 22px;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: var(--ak-ink);
}
.ak-shop__mode span {
    font-family: var(--ak-font-mono);
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--ak-ink-muted);
}

.ak-shop__cats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border: 1px solid var(--ak-line-soft);
    background: var(--ak-bg);
}
.ak-shop__cat {
    padding: 22px 24px;
    border-right: 1px solid var(--ak-line-soft);
    border-bottom: 1px solid var(--ak-line-soft);
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: background .25s var(--ak-ease);
    position: relative;
}
.ak-shop__cat:nth-child(2n) { border-right: none; }
.ak-shop__cat:nth-last-child(-n+2) { border-bottom: none; }
.ak-shop__cat:hover { background: var(--ak-bg-warm); }
.ak-shop__cat-num {
    font-family: var(--ak-font-mono);
    font-size: 10px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--ak-accent);
}
.ak-shop__cat-name {
    font-family: var(--ak-font-display);
    font-size: 18px;
    font-weight: 500;
    color: var(--ak-ink);
    letter-spacing: -0.01em;
}
.ak-shop__cat-desc {
    font-family: var(--ak-font-mono);
    font-size: 11px;
    letter-spacing: .06em;
    color: var(--ak-ink-muted);
    line-height: 1.5;
}

@media (max-width: 900px) {
    .ak-shop__grid { grid-template-columns: 1fr; }
    .ak-shop__modes { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .ak-shop__cats { grid-template-columns: 1fr; }
    .ak-shop__cat { border-right: none; border-bottom: 1px solid var(--ak-line-soft); }
    .ak-shop__cat:last-child { border-bottom: none; }
}

/* ---------- New gallery photo backgrounds (dikey / yatay / satis ofisi) ---------- */
.ak-photo-pano-dk-1  { background-image: url('/images/dikey/1.png'); background-position: center; }
.ak-photo-pano-dk-4  { background-image: url('/images/dikey/4.png');  background-position: center; }
.ak-photo-pano-dk-5  { background-image: url('/images/dikey/5.png');  background-position: center; }
.ak-photo-pano-dk-7  { background-image: url('/images/dikey/7.png');  background-position: center; }
.ak-photo-pano-dk-15 { background-image: url('/images/dikey/15.png'); background-position: center; }
.ak-photo-pano-dk-16 { background-image: url('/images/dikey/16.png'); background-position: center; }
.ak-photo-pano-yt-20 { background-image: url('/images/yatay/20.png'); background-position: center; }
.ak-photo-pano-yt-23 { background-image: url('/images/yatay/23.png'); background-position: center; }

.ak-photo-uretim-kaynak { background-image: url('/images/dikey/3.png');  background-position: center 30%; }
.ak-photo-uretim-vinc   { background-image: url('/images/dikey/13.png'); background-position: center; }
.ak-photo-uretim-salon  { background-image: url('/images/yatay/17.png'); background-position: center 40%; }
.ak-photo-uretim-asansor { background-image: url('/images/dikey/14.png'); background-position: center; }

.ak-photo-magaza-ofis      { background-image: url('/images/dikey/satis-ofisi-dikey.png'); background-position: center 40%; }
.ak-photo-magaza-ofis-yt   { background-image: url('/images/yatay/satis-ofisi-yatay.png'); background-position: center; }
.ak-photo-magaza-himel     { background-image: url('/images/yatay/8.png'); background-position: center; }
.ak-photo-magaza-aydinlatma{ background-image: url('/images/dikey/12.png'); background-position: center; }
.ak-photo-magaza-tabela    { background-image: url('/images/yatay/11.png'); background-position: center; }
.ak-photo-magaza-stok      { background-image: url('/images/yatay/13.png'); background-position: center; }

.ak-photo-urun-kablo  { background-image: url('/images/yatay/16.png'); background-position: center; }
.ak-photo-urun-uyari  { background-image: url('/images/dikey/2.png');  background-position: center; }
.ak-photo-urun-audio  { background-image: url('/images/dikey/10.png'); background-position: center; }

/* Explicit aspect-ratio modifiers for gallery items.
   Stronger specificity overrides the legacy :nth-child(7n+1) tall rule. */
.ak-gallery-grid > .ak-gallery-item.ak-gallery-item--tall {
    aspect-ratio: 1 / 1.4;
    grid-row: span 2;
}
.ak-gallery-grid > .ak-gallery-item.ak-gallery-item--square {
    aspect-ratio: 1 / 1;
    grid-row: auto;
}
.ak-gallery-grid > .ak-gallery-item.ak-gallery-item--wide {
    aspect-ratio: 16 / 10;
    grid-column: span 2;
    grid-row: auto;
}
@media (max-width: 800px) {
    .ak-gallery-grid > .ak-gallery-item.ak-gallery-item--wide { grid-column: span 2; aspect-ratio: 4 / 3; }
    .ak-gallery-grid > .ak-gallery-item.ak-gallery-item--tall { aspect-ratio: 1 / 1; grid-row: auto; }
}

/* ---------- Pano İmalat — Üretim Yolculuğu (process journey) ---------- */
.ak-pano-journey {
    background: var(--ak-bg);
    border-top: var(--ak-rule) solid var(--ak-ink);
    border-bottom: var(--ak-rule) solid var(--ak-ink);
}
.ak-pano-journey__head {
    padding: clamp(64px,8vw,120px) var(--ak-gutter) clamp(24px,3vw,40px);
    max-width: var(--ak-max-w);
    margin-inline: auto;
}
.ak-pano-journey__list {
    display: grid;
    grid-template-columns: 1fr;
}
.ak-pano-journey__step {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: clamp(28px, 4vw, 64px);
    align-items: stretch;
    padding: clamp(48px, 6vw, 96px) var(--ak-gutter);
    border-top: 1px solid var(--ak-line-soft);
    background: var(--ak-bg);
    max-width: var(--ak-max-w);
    margin-inline: auto;
    width: 100%;
    transition: background .3s var(--ak-ease);
}
.ak-pano-journey__step:hover { background: var(--ak-bg-paper); }

.ak-pano-journey__step:nth-child(even) .ak-pano-journey__visual { order: 2; }
.ak-pano-journey__step:nth-child(even) .ak-pano-journey__body   { order: 1; }

.ak-pano-journey__visual {
    min-height: clamp(360px, 38vw, 540px);
    background: var(--ak-ink);
    overflow: hidden;
    position: relative;
    border: 1px solid var(--ak-ink);
    box-shadow: 8px 8px 0 0 var(--ak-ink);
}
.ak-pano-journey__visual-bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform .8s var(--ak-ease-out);
}
.ak-pano-journey__step:hover .ak-pano-journey__visual-bg { transform: scale(1.04); }
.ak-pano-journey__visual-tag {
    position: absolute; top: 16px; left: 16px;
    font-family: var(--ak-font-mono);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    background: var(--ak-accent);
    color: #fff;
    padding: 4px 10px;
    z-index: 2;
}
.ak-pano-journey__visual-corner {
    position: absolute; right: 16px; bottom: 16px;
    font-family: var(--ak-font-mono);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    background: rgba(10,10,10,.7);
    backdrop-filter: blur(6px);
    color: #fff;
    padding: 6px 10px;
    z-index: 2;
}
.ak-pano-journey__body {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-self: stretch;
    justify-content: center;
    min-width: 0;
}
.ak-pano-journey__num {
    display: flex;
    align-items: baseline;
    gap: 16px;
    border-bottom: 1px solid var(--ak-line-soft);
    padding-bottom: 14px;
}
.ak-pano-journey__num-big {
    font-family: var(--ak-font-display);
    font-size: clamp(72px, 7vw, 132px);
    font-weight: 600;
    line-height: 0.9;
    letter-spacing: -0.05em;
    color: var(--ak-ink);
}
.ak-pano-journey__num-big em { font-style: italic; font-weight: 400; color: var(--ak-accent); }
.ak-pano-journey__num-label {
    font-family: var(--ak-font-mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ak-ink-muted);
}
.ak-pano-journey__title {
    font-family: var(--ak-font-display);
    font-size: clamp(28px, 3.2vw, 44px);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: var(--ak-ink);
}
.ak-pano-journey__title em { font-style: italic; color: var(--ak-accent); font-weight: 400; }
.ak-pano-journey__desc {
    font-size: 16px;
    line-height: 1.7;
    color: var(--ak-ink-muted);
    max-width: 56ch;
}
.ak-pano-journey__meta {
    display: flex; gap: 28px; flex-wrap: wrap;
    margin-top: 8px;
    padding-top: 16px;
    border-top: 1px solid var(--ak-line-soft);
    font-family: var(--ak-font-mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ak-ink-muted);
}
.ak-pano-journey__meta-item { display: flex; flex-direction: column; gap: 4px; }
.ak-pano-journey__meta-item strong {
    color: var(--ak-ink);
    font-size: 18px;
    font-family: var(--ak-font-display);
    font-weight: 500;
    letter-spacing: -0.01em;
    text-transform: none;
}
.ak-pano-journey__inset {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 12px;
}
.ak-pano-journey__inset-cell {
    aspect-ratio: 4 / 3;
    background-color: var(--ak-ink);
    background-size: cover;
    background-position: center;
    border: 1px solid var(--ak-ink);
    position: relative;
}
.ak-pano-journey__inset-cell-tag {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 8px 10px;
    background: linear-gradient(to top, rgba(0,0,0,.8), transparent);
    color: #fff;
    font-family: var(--ak-font-mono);
    font-size: 9px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

@media (max-width: 900px) {
    .ak-pano-journey__step { grid-template-columns: 1fr; }
    .ak-pano-journey__step:nth-child(even) .ak-pano-journey__visual { order: 0; }
    .ak-pano-journey__step:nth-child(even) .ak-pano-journey__body   { order: 0; }
}

/* Pano içi glimpse strip — pano-imalati / dikey inside shots */
.ak-pano-glimpse {
    background: var(--ak-bg-paper);
    border-bottom: var(--ak-rule) solid var(--ak-ink);
    padding: clamp(64px, 8vw, 120px) var(--ak-gutter);
}
.ak-pano-glimpse__inner { max-width: var(--ak-max-w); margin-inline: auto; }
.ak-pano-glimpse__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(12px, 1.5vw, 20px);
    margin-top: clamp(40px, 5vw, 64px);
}
.ak-pano-glimpse__cell {
    aspect-ratio: 1 / 1.35;
    background-color: var(--ak-ink);
    background-size: cover;
    background-position: center;
    border: 1px solid var(--ak-ink);
    box-shadow: 4px 4px 0 0 var(--ak-ink);
    position: relative;
    transition: transform .35s var(--ak-ease), box-shadow .35s var(--ak-ease);
    overflow: hidden;
}
.ak-pano-glimpse__cell:hover {
    transform: translate(-2px, -2px);
    box-shadow: 7px 7px 0 0 var(--ak-ink);
}
.ak-pano-glimpse__cell-num {
    position: absolute; top: 12px; left: 12px;
    font-family: var(--ak-font-mono);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    background: rgba(10,10,10,.78);
    backdrop-filter: blur(4px);
    color: #fff;
    padding: 4px 8px;
}
.ak-pano-glimpse__cell-label {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 16px 14px 14px;
    background: linear-gradient(to top, rgba(0,0,0,.85), transparent);
    color: #fff;
    font-family: var(--ak-font-display);
    font-size: 14px;
    line-height: 1.2;
    font-weight: 500;
}
@media (max-width: 900px) { .ak-pano-glimpse__grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Hero visual: stacked AKGÜN sales-office variant ---------- */
.ak-hero__visual--portrait .ak-hero__visual-img {
    aspect-ratio: 9 / 16;
    object-fit: cover;
    object-position: center 30%;
}
@media (max-width: 980px) {
    .ak-hero__visual--portrait .ak-hero__visual-img { aspect-ratio: 4 / 5; }
}

/* ---------- Hero swiper (multi-slide cross-fade with Ken Burns) ---------- */
.ak-hero__visual--swiper .ak-hero__slide {
    animation: none;
    opacity: 0;
    transform: scale(1);
    transition: opacity 1.1s var(--ak-ease);
    z-index: 0;
    will-change: opacity, transform;
}
.ak-hero__visual--swiper .ak-hero__slide.ak-is-active {
    opacity: 1;
    z-index: 1;
    animation: ak-hero-kenburns 7s ease-out forwards;
}
@keyframes ak-hero-kenburns {
    0%   { transform: scale(1.0); }
    100% { transform: scale(1.07); }
}

.ak-hero__dots {
    position: absolute;
    bottom: 74px;
    right: 28px;
    z-index: 3;
    display: flex;
    gap: 6px;
}
.ak-hero__dot {
    width: 22px;
    height: 3px;
    background: rgba(255,255,255,.28);
    border: 0;
    padding: 0;
    cursor: pointer;
    transition: background .35s var(--ak-ease), width .35s var(--ak-ease);
}
.ak-hero__dot:hover { background: rgba(255,255,255,.55); }
.ak-hero__dot.ak-is-active {
    background: var(--ak-accent);
    width: 36px;
}
.ak-hero__dot:focus-visible {
    outline: 2px solid var(--ak-accent);
    outline-offset: 3px;
}
@media (max-width: 600px) {
    .ak-hero__dots { bottom: 62px; right: 20px; }
    .ak-hero__dot { width: 18px; }
    .ak-hero__dot.ak-is-active { width: 28px; }
}

/* ---------- Index — Panonun Hikayesini Keşfet (pano teaser) ---------- */
.ak-pano-teaser {
    background: var(--ak-ink);
    color: var(--ak-dark-text);
    border-top: var(--ak-rule) solid var(--ak-ink);
    border-bottom: var(--ak-rule) solid var(--ak-ink);
    overflow: hidden;
    position: relative;
}
.ak-pano-teaser::before {
    content: "";
    position: absolute; inset: 0;
    background-image:
        linear-gradient(to right, rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255,255,255,0.035) 1px, transparent 1px);
    background-size: 56px 56px;
    pointer-events: none;
}
.ak-pano-teaser__inner {
    position: relative;
    z-index: 1;
    max-width: var(--ak-max-w);
    margin-inline: auto;
    padding: clamp(64px, 8vw, 120px) var(--ak-gutter);
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: clamp(40px, 5vw, 80px);
    align-items: center;
}
.ak-pano-teaser__head { display: flex; flex-direction: column; gap: 22px; }
.ak-pano-teaser__head .ak-eyebrow {
    color: var(--ak-accent);
    font-family: var(--ak-font-mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}
.ak-pano-teaser__title {
    font-family: var(--ak-font-display);
    font-size: clamp(36px, 4.2vw, 64px);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: #fff;
}
.ak-pano-teaser__title em { font-style: italic; color: var(--ak-accent); font-weight: 400; }
.ak-pano-teaser__lead {
    font-size: 17px;
    line-height: 1.7;
    color: var(--ak-ink-faint);
    max-width: 52ch;
}
.ak-pano-teaser__stats {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    padding: 18px 0;
    border-top: 1px solid rgba(255,255,255,.12);
    border-bottom: 1px solid rgba(255,255,255,.12);
    margin-top: 4px;
}
.ak-pano-teaser__stat {
    display: flex; flex-direction: column; gap: 4px;
    font-family: var(--ak-font-mono);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ak-ink-faint);
}
.ak-pano-teaser__stat strong {
    font-family: var(--ak-font-display);
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    letter-spacing: -0.01em;
    text-transform: none;
}
.ak-pano-teaser__cta {
    align-self: flex-start;
    background: var(--ak-accent);
    border-color: var(--ak-accent);
    color: #fff;
}
.ak-pano-teaser__cta:hover { background: #fff; color: var(--ak-ink); border-color: #fff; }

.ak-pano-teaser__strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}
.ak-pano-teaser__cell {
    aspect-ratio: 3 / 4;
    background: #000;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.14);
    transition: transform .4s var(--ak-ease);
}
.ak-pano-teaser__cell:nth-child(2),
.ak-pano-teaser__cell:nth-child(4) { transform: translateY(28px); }
.ak-pano-teaser__cell:hover { transform: translateY(-6px); }
.ak-pano-teaser__cell:nth-child(2):hover,
.ak-pano-teaser__cell:nth-child(4):hover { transform: translateY(22px); }

.ak-pano-teaser__cell-bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform .8s var(--ak-ease-out), opacity .4s var(--ak-ease);
    opacity: .9;
}
.ak-pano-teaser__cell:hover .ak-pano-teaser__cell-bg { transform: scale(1.05); opacity: 1; }

.ak-pano-teaser__cell-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,.45) 0%, transparent 30%, transparent 55%, rgba(0,0,0,.85) 100%);
    z-index: 1;
}
.ak-pano-teaser__cell-num {
    position: absolute; top: 14px; left: 14px;
    z-index: 2;
    font-family: var(--ak-font-display);
    font-size: clamp(28px, 2.6vw, 40px);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.03em;
    color: #fff;
}
.ak-pano-teaser__cell-num em { font-style: italic; font-weight: 400; color: var(--ak-accent); }
.ak-pano-teaser__cell-label {
    position: absolute; bottom: 0; left: 0; right: 0;
    z-index: 2;
    padding: 16px 14px;
    color: #fff;
    font-family: var(--ak-font-mono);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    border-top: 1px solid rgba(255,255,255,.12);
}

@media (max-width: 980px) {
    .ak-pano-teaser__inner { grid-template-columns: 1fr; gap: 48px; }
    .ak-pano-teaser__strip { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .ak-pano-teaser__cell:nth-child(2),
    .ak-pano-teaser__cell:nth-child(4) { transform: none; }
    .ak-pano-teaser__cell:nth-child(2):hover,
    .ak-pano-teaser__cell:nth-child(4):hover { transform: translateY(-4px); }
}

/* ---------- Navbar dropdown (Hizmetler) ---------- */
.ak-nav__item {
    position: relative;
    display: inline-flex;
    align-items: center;
}
.ak-nav__item--has-menu > .ak-nav__trigger {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.ak-nav__caret {
    transition: transform .3s var(--ak-ease);
    opacity: .7;
}
.ak-nav__item--has-menu:hover > .ak-nav__trigger,
.ak-nav__item--has-menu:focus-within > .ak-nav__trigger {
    color: var(--ak-ink);
}
.ak-nav__item--has-menu:hover > .ak-nav__trigger::after,
.ak-nav__item--has-menu:focus-within > .ak-nav__trigger::after {
    transform: scaleX(1);
}
.ak-nav__item--has-menu:hover .ak-nav__caret,
.ak-nav__item--has-menu:focus-within .ak-nav__caret {
    transform: translateY(2px) rotate(-180deg);
    opacity: 1;
    color: var(--ak-accent);
}

.ak-nav__dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: 50%;
    transform: translate(-50%, -6px);
    width: 380px;
    max-width: calc(100vw - 32px);
    background: var(--ak-bg-paper);
    border: var(--ak-rule) solid var(--ak-ink);
    box-shadow: 0 28px 56px -24px rgba(10,10,10,.28), 0 2px 0 var(--ak-line-soft);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .25s var(--ak-ease), transform .3s var(--ak-ease), visibility .25s linear;
    z-index: 120;
}
.ak-nav__item--has-menu:hover .ak-nav__dropdown,
.ak-nav__item--has-menu:focus-within .ak-nav__dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
}
/* invisible hover bridge so the menu doesn't close between trigger and panel */
.ak-nav__dropdown::before {
    content: "";
    position: absolute;
    left: 0; right: 0;
    top: -12px;
    height: 12px;
}
.ak-nav__dropdown-inner {
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    position: relative;
}
.ak-nav__dropdown-head {
    font-family: var(--ak-font-mono);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ak-ink-muted);
    padding: 6px 10px 12px;
    border-bottom: 1px solid var(--ak-line-soft);
    margin-bottom: 6px;
}
.ak-nav__dropdown-link {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 10px 10px;
    border: 1px solid transparent;
    transition: background .2s var(--ak-ease), border-color .2s var(--ak-ease), transform .2s var(--ak-ease);
}
.ak-nav__dropdown-link:hover {
    background: var(--ak-bg);
    border-color: var(--ak-line-soft);
}
.ak-nav__dropdown-num {
    font-family: var(--ak-font-mono);
    font-size: 11px;
    letter-spacing: 0.12em;
    color: var(--ak-accent);
    padding-top: 3px;
    min-width: 22px;
}
.ak-nav__dropdown-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}
.ak-nav__dropdown-text strong {
    font-family: var(--ak-font-display);
    font-size: 15px;
    font-weight: 500;
    color: var(--ak-ink);
    letter-spacing: -0.01em;
    line-height: 1.25;
}
.ak-nav__dropdown-text small {
    font-size: 12px;
    color: var(--ak-ink-muted);
    line-height: 1.35;
}
.ak-nav__dropdown-all {
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 12px;
    background: var(--ak-ink);
    color: var(--ak-bg);
    font-family: var(--ak-font-mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: background .2s var(--ak-ease);
}
.ak-nav__dropdown-all:hover { background: var(--ak-accent); }
.ak-nav__dropdown-all-arrow { transition: transform .25s var(--ak-ease); }
.ak-nav__dropdown-all:hover .ak-nav__dropdown-all-arrow { transform: translateX(4px); }

/* ---------- Mobile sub-menu (Hizmetler) ---------- */
.ak-mobile-menu__group-head {
    /* main "Hizmetler" link */
    padding-bottom: 8px !important;
    border-bottom: none !important;
}
.ak-mobile-menu__sub {
    display: flex;
    flex-direction: column;
    padding: 4px 0 18px 14px;
    margin-left: 2px;
    border-left: 1px solid var(--ak-dark-line);
    border-bottom: 1px solid var(--ak-dark-line);
    gap: 2px;
}
.ak-mobile-menu__sub a {
    font-family: var(--ak-font-display);
    font-size: 18px !important;
    line-height: 1.2;
    font-weight: 400;
    padding: 10px 0 !important;
    border-bottom: none !important;
    color: var(--ak-ink-faint) !important;
    display: block;
}
.ak-mobile-menu__sub a:hover {
    color: var(--ak-dark-text) !important;
}

/* ---------- Story visual swiper (Pano İmalatı vb.) ---------- */
.ak-story__visual--swiper {
    position: relative;
    isolation: isolate;
}
.ak-story__slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.1s var(--ak-ease);
    z-index: 0;
    will-change: opacity, transform;
}
.ak-story__slide.ak-is-active {
    opacity: 1;
    z-index: 1;
    animation: ak-hero-kenburns 7s ease-out forwards;
}
.ak-story__visual--swiper .ak-story__visual-tag,
.ak-story__visual--swiper .ak-story__visual-bottom {
    z-index: 3;
    position: absolute;
}
.ak-story__visual--swiper .ak-story__visual-tag {
    top: 24px; left: 24px; right: 24px;
}
.ak-story__visual--swiper .ak-story__visual-bottom {
    bottom: 0; left: 0; right: 0;
}
/* faint vignette over slides so the chip text stays legible on any photo */
.ak-story__visual--swiper::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(10,10,10,.35) 0%, rgba(10,10,10,0) 28%, rgba(10,10,10,0) 68%, rgba(10,10,10,.55) 100%);
    z-index: 2;
    pointer-events: none;
}

/* progress strip — quietly counts the active slide */
.ak-story__visual-progress {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 78px;
    display: flex;
    gap: 4px;
    z-index: 3;
    pointer-events: none;
}
.ak-story__visual-progress span {
    flex: 1;
    height: 2px;
    background: rgba(255,255,255,.18);
    transition: background .35s var(--ak-ease);
}
.ak-story__visual-progress span.ak-is-active {
    background: var(--ak-accent);
}

/* ---------- "Hikayeyi keşfet" inline scroll button ---------- */
.ak-story__cta-row {
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}
.ak-story__cta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 14px 22px;
    background: var(--ak-ink);
    color: var(--ak-bg);
    border: var(--ak-rule) solid var(--ak-ink);
    font-family: var(--ak-font-sans);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: background .25s var(--ak-ease), border-color .25s var(--ak-ease), color .25s var(--ak-ease);
}
.ak-story__cta:hover {
    background: var(--ak-accent);
    border-color: var(--ak-accent);
    color: #fff;
}
.ak-story__cta-arrow {
    display: inline-block;
    transition: transform .35s var(--ak-ease);
    line-height: 1;
}
.ak-story__cta:hover .ak-story__cta-arrow { transform: translateY(4px); }
.ak-story__cta-note {
    font-family: var(--ak-font-mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ak-ink-muted);
}

/* ---------- Hizmetler landing (index page) ---------- */
.ak-hiz-index {
    background: var(--ak-bg-paper);
    border-bottom: var(--ak-rule) solid var(--ak-ink);
}
.ak-hiz-index__head {
    max-width: var(--ak-max-w);
    margin-inline: auto;
    padding: clamp(64px, 8vw, 120px) var(--ak-gutter) clamp(40px, 5vw, 72px);
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: clamp(40px, 6vw, 88px);
    align-items: end;
    border-bottom: 1px solid var(--ak-line-soft);
}
.ak-hiz-index__head h2 { margin-block: 8px 0; }
.ak-hiz-index__intro p {
    font-size: 17px;
    line-height: 1.65;
    color: var(--ak-ink-soft);
    margin-bottom: 18px;
    max-width: 52ch;
}
.ak-hiz-index__intro p strong { color: var(--ak-ink); font-weight: 500; }
@media (max-width: 980px) {
    .ak-hiz-index__head { grid-template-columns: 1fr; gap: 36px; }
}

.ak-hiz-index__list {
    max-width: var(--ak-max-w);
    margin-inline: auto;
    padding-inline: var(--ak-gutter);
}
.ak-hiz-row {
    display: grid;
    grid-template-columns: 80px 1fr 1.1fr 220px;
    align-items: stretch;
    border-bottom: 1px solid var(--ak-line-soft);
    transition: background .3s var(--ak-ease);
    position: relative;
}
.ak-hiz-row:first-of-type { border-top: 1px solid var(--ak-line-soft); }
.ak-hiz-row:hover { background: var(--ak-bg); }
.ak-hiz-row__num {
    padding: 32px 0 32px 4px;
    font-family: var(--ak-font-mono);
    font-size: 12px;
    letter-spacing: 0.14em;
    color: var(--ak-accent);
    align-self: start;
}
.ak-hiz-row__title {
    padding: 32px 24px 32px 0;
    align-self: center;
}
.ak-hiz-row__title h3 {
    font-family: var(--ak-font-display);
    font-size: clamp(28px, 3.2vw, 44px);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--ak-ink);
    transition: color .25s var(--ak-ease);
}
.ak-hiz-row:hover .ak-hiz-row__title h3 { color: var(--ak-accent); }
.ak-hiz-row__title em { font-style: italic; color: var(--ak-accent); font-weight: 400; }
.ak-hiz-row__desc {
    padding: 32px 24px;
    font-size: 15px;
    line-height: 1.55;
    color: var(--ak-ink-muted);
    align-self: center;
}
.ak-hiz-row__cta {
    align-self: center;
    padding: 32px 0 32px 24px;
    border-left: 1px solid var(--ak-line-soft);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-family: var(--ak-font-mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ak-ink);
    transition: color .25s var(--ak-ease), padding .25s var(--ak-ease);
}
.ak-hiz-row__cta-arrow {
    display: inline-block;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border: 1.5px solid var(--ak-ink);
    transition: background .25s var(--ak-ease), border-color .25s var(--ak-ease), color .25s var(--ak-ease), transform .25s var(--ak-ease);
}
.ak-hiz-row:hover .ak-hiz-row__cta-arrow {
    background: var(--ak-accent);
    border-color: var(--ak-accent);
    color: #fff;
    transform: translateX(6px);
}
@media (max-width: 980px) {
    .ak-hiz-row { grid-template-columns: 60px 1fr; row-gap: 0; padding: 20px 0; }
    .ak-hiz-row__num { padding: 20px 0 8px 4px; }
    .ak-hiz-row__title { padding: 0 0 12px; grid-column: 2; }
    .ak-hiz-row__desc { padding: 0 0 18px; grid-column: 2; }
    .ak-hiz-row__cta {
        grid-column: 1 / -1;
        border-left: none;
        border-top: 1px solid var(--ak-line-soft);
        padding: 18px 0 0;
    }
}

/* responsive: collapse dropdown on small viewports (already hidden via .ak-nav display:none) */
@media (max-width: 980px) {
    .ak-nav__dropdown { display: none; }
}

/* ---------- Sub-nav (Hakkımızda alt sekmeler) ---------- */
.ak-subnav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: clamp(28px, 4vw, 44px);
}
.ak-subnav__link {
    font-family: var(--ak-font-mono);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ak-ink-faint);
    padding: 10px 18px;
    border: 1px solid var(--ak-dark-line);
    transition: color .25s var(--ak-ease), border-color .25s var(--ak-ease), background .25s var(--ak-ease);
}
.ak-subnav__link:hover { color: #fff; border-color: var(--ak-ink-faint); }
.ak-subnav__link.ak-is-active {
    color: #fff;
    background: var(--ak-accent);
    border-color: var(--ak-accent);
}

/* ---------- Placeholder (içeriği hazırlanan bölümler) ---------- */
.ak-placeholder {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: clamp(48px, 8vw, 96px) 0;
    border-top: 1px dashed var(--ak-line-soft);
}
.ak-placeholder__tag {
    font-family: var(--ak-font-mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ak-accent);
}
.ak-placeholder__text {
    font-family: var(--ak-font-display);
    font-size: clamp(18px, 1.6vw, 22px);
    font-weight: 300;
    color: var(--ak-ink);
}

/* ---------- Marka duvarı (Çözüm Ortakları & Bayilikler) ---------- */
.ak-logo-wall {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--ak-line-soft);
    border: var(--ak-rule) solid var(--ak-ink);
}
@media (max-width: 900px) { .ak-logo-wall { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .ak-logo-wall { grid-template-columns: repeat(2, 1fr); } }
.ak-logo-card {
    background: var(--ak-bg-paper);
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    min-height: 180px;
    text-align: center;
    transition: background .25s var(--ak-ease);
}
.ak-logo-card:hover { background: var(--ak-bg); }
.ak-logo-card__logo {
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ak-logo-card__logo img {
    max-height: 64px;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(1);
    opacity: .85;
    transition: filter .25s var(--ak-ease), opacity .25s var(--ak-ease);
}
.ak-logo-card:hover .ak-logo-card__logo img { filter: grayscale(0); opacity: 1; }
/* İsim etiketsiz logo kartı (dosya tabanlı duvar):
   beyaz zemin, tam renkli logo (soldurma yok), daha büyük. */
.ak-logo-card--nolabel { background: #fff; padding: 24px; }
.ak-logo-card--nolabel:hover { background: #fff; }
.ak-logo-card--nolabel .ak-logo-card__logo { height: auto; width: 100%; }
.ak-logo-card--nolabel .ak-logo-card__logo img {
    max-height: 120px;
    max-width: 100%;
    filter: none;
    opacity: 1;
}
.ak-logo-card__mark {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--ak-ink);
    border-radius: 50%;
    font-family: var(--ak-font-display);
    font-size: 28px;
    font-weight: 500;
    color: var(--ak-ink);
}
.ak-logo-card__name {
    font-family: var(--ak-font-display);
    font-size: clamp(18px, 1.6vw, 22px);
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: var(--ak-ink);
}

/* ---------- Boş durum (içerik hazırlanıyor) ---------- */
.ak-wall-empty {
    border: var(--ak-rule) solid var(--ak-ink);
    background: var(--ak-bg-paper);
    padding: clamp(48px, 8vw, 88px) clamp(24px, 5vw, 56px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}
.ak-wall-empty__badge {
    font-family: var(--ak-font-mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #fff;
    background: var(--ak-accent);
    padding: 5px 12px;
}
.ak-wall-empty__title {
    font-family: var(--ak-font-display);
    font-size: clamp(26px, 3.2vw, 40px);
    font-weight: 500;
    letter-spacing: -0.02em;
    color: var(--ak-ink);
}
.ak-wall-empty__desc {
    max-width: 52ch;
    color: var(--ak-ink-soft);
    line-height: 1.65;
}

/* ---------- Doküman listesi (Bayilik fiyat listeleri) ---------- */
.ak-doc-list {
    display: grid;
    gap: 1px;
    background: var(--ak-line-soft);
    border: var(--ak-rule) solid var(--ak-ink);
}
.ak-doc {
    background: var(--ak-bg-paper);
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 28px;
    text-decoration: none;
    color: var(--ak-ink);
    transition: background .2s var(--ak-ease);
}
.ak-doc:hover { background: var(--ak-bg); }
.ak-doc__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--ak-ink);
    color: var(--ak-accent);
}
.ak-doc__body { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.ak-doc__title {
    font-family: var(--ak-font-display);
    font-size: clamp(18px, 1.6vw, 22px);
    font-weight: 500;
    letter-spacing: -0.015em;
}
.ak-doc__meta {
    font-family: var(--ak-font-mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ak-ink-muted);
}
.ak-doc__action {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--ak-font-mono);
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ak-accent);
}
.ak-doc__arrow { transition: transform .2s var(--ak-ease); }
.ak-doc:hover .ak-doc__arrow { transform: translateY(3px); }

/* Aksiyon grubu: kopyala + indir/aç */
.ak-doc__tools { flex-shrink: 0; display: inline-flex; align-items: center; gap: 14px; }
.ak-doc__copy {
    display: inline-flex; align-items: center; gap: 7px;
    background: none; border: 1px solid var(--ak-line-soft); color: var(--ak-ink-soft);
    font-family: var(--ak-font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
    padding: 8px 12px; cursor: pointer; transition: border-color .2s var(--ak-ease), color .2s var(--ak-ease), background .2s var(--ak-ease);
}
.ak-doc__copy:hover { border-color: var(--ak-ink); color: var(--ak-ink); }
.ak-doc__copy.is-copied { border-color: var(--ak-accent); color: var(--ak-accent); }
.ak-doc__copy svg { flex-shrink: 0; }
.ak-doc__action { text-decoration: none; cursor: pointer; }
.ak-doc:hover .ak-doc__arrow--out { transform: translate(2px, -2px); }
@media (max-width: 640px) {
    .ak-doc { flex-wrap: wrap; }
    .ak-doc__tools { width: 100%; justify-content: flex-end; }
}

/* ---------- Hizmetler · Yetkili Bayilik (Jeneratör) ---------- */
.ak-bayilik {
    background: var(--ak-bg-paper);
    border-top: 1px solid var(--ak-line-faint);
}
.ak-bayilik__inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    align-items: center;
    gap: clamp(32px, 6vw, 80px);
    padding-top: clamp(56px, 7vw, 100px);
    padding-bottom: clamp(56px, 7vw, 100px);
}
.ak-bayilik__title {
    margin: 14px 0 18px;
}
.ak-bayilik__desc {
    max-width: 46ch;
    color: var(--ak-ink-soft);
    line-height: 1.6;
}
.ak-bayilik__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(24px, 3vw, 40px);
    border: 1px solid var(--ak-line-soft);
    background: #fff;
    border-radius: 4px;
}
.ak-bayilik__logo img {
    max-width: 100%;
    max-height: 140px;
    height: auto;
    object-fit: contain;
}
@media (max-width: 820px) {
    .ak-bayilik__inner { grid-template-columns: 1fr; }
}
