/* ============ Tokens ============ */
:root {
    --cream: #B5F2EE;
    --cream-soft: #9FE3DE;
    --cream-paper: #C9F5F1;
    --ink: #0E2238;
    --ink-2: #4A5867;
    --ink-3: #7E8694;
    --ink-4: #B4B6BD;
    --accent: #117563;
    --accent-bright: #20A48A;
    --rule: #D9D2C0;
    --dark: #0E2238;
    --on-dark: #F2EDE3;
    --on-dark-2: rgba(242, 237, 227, 0.70);
    --on-dark-3: rgba(242, 237, 227, 0.45);
    --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
}

/* ============ Reset ============ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--cream);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.55;
    font-feature-settings: 'ss01', 'cv11';
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0.35;
    mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.05 0 0 0 0 0.05 0 0 0 0 0.05 0 0 0 0.04 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
body > * { position: relative; z-index: 2; }

img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; background: none; border: 0; padding: 0; color: inherit; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1em; }
ul, ol, dl { margin: 0; padding: 0; }
li { list-style: none; }
dd { margin: 0; }

.wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ============ Typography ============ */
h1, h2, h3 { font-weight: 600; margin: 0; color: var(--ink); letter-spacing: -0.022em; }

.display {
    font-weight: 600;
    font-size: clamp(2rem, 4.4vw, 3.8rem);
    line-height: 1.05;
    letter-spacing: -0.028em;
    margin: 0;
    color: #1A7574;
    text-wrap: balance;
    max-width: 1050px;
}

.kicker {
    font-size: 11.5px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-2);
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.kicker-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    display: inline-block;
}

.lede {
    font-size: clamp(1.05rem, 1.3vw, 1.2rem);
    line-height: 1.55;
    color: var(--ink-2);
    font-weight: 400;
    margin: 0 0 1em;
}

/* ============ Header ============ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    padding: 22px 0;
    transition: padding 0.35s cubic-bezier(0.4, 0, 0.2, 1), background 0.35s ease, border-color 0.35s ease;
    border-bottom: 1px solid transparent;
}
.site-header.scrolled {
    background: rgba(242, 237, 227, 0.88);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom-color: var(--rule);
    padding: 12px 0;
}
.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}
.brand { display: flex; align-items: center; text-decoration: none; }

/* Textual wordmark — adapts to theme colors */
.wordmark {
    display: inline-flex;
    align-items: baseline;
    font-family: var(--sans);
    font-weight: 800;
    font-size: clamp(38px, 5.2vw, 76px);
    letter-spacing: -0.045em;
    line-height: 1;
    color: var(--ink);
    background: transparent;
    text-rendering: optimizeLegibility;
    transition: font-size 0.35s ease;
}
.wordmark-a { color: var(--ink); }
.wordmark-b { color: var(--accent); }
.site-header.scrolled .wordmark { font-size: clamp(30px, 4vw, 58px); }
.site-footer .wordmark { font-size: 32px; }
.site-footer .wordmark-a { color: var(--on-dark); }
.site-footer .wordmark-b { color: var(--accent-bright); }

.primary-nav { display: flex; gap: 4px; }
.primary-nav a {
    font-size: clamp(15px, 1.2vw, 21.5px);
    font-weight: 500;
    color: var(--ink-2);
    padding: 8px 16px;
    border-radius: 100px;
    transition: all 0.25s ease;
}
.primary-nav a:hover { color: var(--ink); background: var(--cream-soft); }

.header-meta { display: flex; align-items: center; gap: 16px; }
.lang {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--ink-4);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 4px;
}
.lang [data-lang] { transition: color 0.2s ease; }
.lang [data-lang].active { color: var(--ink); }
.lang .sep { color: var(--ink-4); }
.lang:hover [data-lang]:not(.active) { color: var(--ink-2); }

.menu-btn { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.menu-btn span { display: block; width: 22px; height: 1.5px; background: var(--ink); transition: 0.3s; }

/* ============ Hero ============ */
.hero {
    padding: clamp(130px, 14vw, 170px) 0 clamp(60px, 8vw, 100px);
    min-height: 88vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.hero-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: clamp(36px, 5vw, 56px);
    gap: 24px;
    flex-wrap: wrap;
}
.kicker.right { color: var(--ink-3); }

.hero-foot {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: end;
    margin-top: clamp(48px, 6vw, 80px);
    padding-top: 28px;
    border-top: 1px solid var(--rule);
}
.hero-foot .lede {
    max-width: 440px;
    color: var(--ink-2);
    margin: 0;
}
.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}
.cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 14.5px;
    color: var(--ink);
    padding: 6px 0;
    position: relative;
    transition: color 0.25s ease;
}
.cta::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: var(--ink-2);
    transform-origin: right;
    transform: scaleX(1);
    transition: transform 0.45s cubic-bezier(0.65, 0, 0.35, 1);
}
.cta:hover::after { transform-origin: left; transform: scaleX(0); animation: redraw 0.6s 0.25s cubic-bezier(0.65, 0, 0.35, 1) forwards; }
@keyframes redraw { from { transform: scaleX(0); transform-origin: left; } to { transform: scaleX(1); transform-origin: left; } }
.cta-arrow {
    color: var(--accent);
    font-weight: 400;
    transition: transform 0.35s cubic-bezier(0.65, 0, 0.35, 1);
    display: inline-block;
}
.cta:hover .cta-arrow { transform: translateX(6px); }

/* ============ Statement ============ */
.statement {
    background: var(--dark);
    color: var(--on-dark);
    padding: clamp(72px, 10vw, 120px) 0;
    position: relative;
    overflow: hidden;
}
.statement::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 15% 25%, rgba(32, 164, 138, 0.12), transparent 55%),
        radial-gradient(ellipse at 85% 80%, rgba(32, 164, 138, 0.07), transparent 55%);
    pointer-events: none;
}
.statement .wrap { position: relative; max-width: 1100px; }
.statement-eyebrow {
    font-size: 11.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent-bright);
    margin: 0 0 28px;
    font-weight: 500;
}
.statement-body {
    font-size: clamp(1.4rem, 3.3vw, 3rem);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin: 0 0 36px;
    color: var(--on-dark);
    font-weight: 700;
    white-space: nowrap;
    max-width: none;
}
.statement-body .rev {
    font-style: italic;
    font-weight: 700;
    color: var(--accent-bright);
    position: relative;
    padding-right: 0.08em;
}
.statement-body .rev::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0.08em;
    bottom: 0.05em;
    height: 0.1em;
    background: var(--accent-bright);
    opacity: 0.5;
    transform-origin: center;
    animation: rev-pulse 3s ease-in-out infinite;
}
@keyframes rev-pulse {
    0%, 100% { transform: scaleX(0.85); opacity: 0.35; }
    50% { transform: scaleX(1); opacity: 0.65; }
}
@media (prefers-reduced-motion: reduce) {
    .statement-body .rev::after { animation: none; opacity: 0.45; transform: scaleX(1); }
}
.statement-sig {
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--on-dark-2);
    margin: 0;
    font-weight: 500;
}

/* ============ Sections ============ */
.section { padding: clamp(80px, 10vw, 120px) 0; }
.section-head {
    margin-bottom: clamp(36px, 4vw, 56px);
    padding-bottom: 24px;
    border-bottom: 1px solid var(--rule);
}
.section-title {
    font-weight: 700;
    font-size: clamp(1.8rem, 3.6vw, 2.8rem);
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin: 0;
    color: var(--ink);
}

/* ============ Bio ============ */
.bio .section-title {
    font-size: clamp(1.3rem, 2.6vw, 1.9rem);
    font-weight: 600;
}
.bio .section-head {
    padding-bottom: 18px;
    margin-bottom: 24px;
}
.bio-content {
    max-width: 780px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.bio-content p {
    color: var(--ink-2);
    font-size: 16.5px;
    line-height: 1.75;
    margin: 0;
}

/* ============ About ============ */
.about-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: clamp(48px, 6vw, 80px);
    align-items: start;
}
.about-text .lede {
    margin-bottom: 22px;
    color: var(--ink);
    font-size: clamp(1.2rem, 1.6vw, 1.5rem);
    line-height: 1.45;
    font-weight: 400;
    letter-spacing: -0.008em;
}
.about-text p {
    color: var(--ink-2);
    font-size: 15.5px;
    line-height: 1.7;
    max-width: 580px;
}

/* Founder card */
.founder-card {
    background: var(--dark);
    color: var(--on-dark);
    padding: clamp(28px, 3vw, 36px);
    position: sticky;
    top: 100px;
    border-radius: 6px;
    overflow: hidden;
}
.founder-card::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(32, 164, 138, 0.18), transparent 65%);
    pointer-events: none;
}
.founder-photo {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 0 24px;
    background: var(--cream-soft);
    border: 3px solid rgba(242, 237, 227, 0.12);
    position: relative;
}
.founder-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
}
.founder-card-eyebrow {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent-bright);
    font-weight: 500;
    margin: 0 0 10px;
}
.founder-card-name {
    font-weight: 600;
    font-size: clamp(1.4rem, 1.8vw, 1.7rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0 0 6px;
    color: var(--on-dark);
}
.founder-card-role {
    font-size: 12.5px;
    letter-spacing: 0.06em;
    color: var(--on-dark-2);
    margin: 0 0 28px;
    font-weight: 500;
}

.founder-meta {
    display: flex;
    flex-direction: column;
    padding: 22px 0;
    border-top: 1px solid rgba(242, 237, 227, 0.12);
    border-bottom: 1px solid rgba(242, 237, 227, 0.12);
    margin-bottom: 22px;
    gap: 14px;
}
.founder-meta > div { display: flex; justify-content: space-between; gap: 16px; align-items: baseline; }
.founder-meta dt {
    font-size: 10.5px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--on-dark-3);
    font-weight: 500;
    flex-shrink: 0;
}
.founder-meta dd {
    font-size: 13.5px;
    color: var(--on-dark);
    text-align: right;
    font-weight: 400;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    color: #48AAB1;
    font-weight: 500;
    transition: gap 0.3s ease;
}
.card-link:hover { gap: 14px; }

/* ============ Practice ============ */
.practice-list {
    border-top: 0;
    margin-top: -22px;
}
.practice-item {
    display: block;
    padding: clamp(32px, 4vw, 48px) 0;
    border-bottom: 1px solid var(--rule);
    position: relative;
    transition: padding-left 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}
.practice-body { display: flex; flex-direction: column; gap: 14px; min-width: 0; }
.practice-items {
    list-style: none;
    padding: 0;
    margin: 4px 0 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    max-width: 520px;
}
.practice-items li {
    font-size: 19px;
    color: var(--ink-2);
    padding-left: 24px;
    position: relative;
    line-height: 1.5;
}
.practice-items li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 12px;
    height: 1px;
    background: var(--ink-4);
}
/* Card-style training items (Eğitim section) */
.practice-cards {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px !important;
    max-width: 760px;
    margin-top: 8px !important;
}
.practice-cards li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 18px 12px 12px !important;
    background: var(--cream-paper);
    border: 1px solid var(--rule);
    border-radius: 10px;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.practice-cards li::before { display: none !important; }
.practice-cards li:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px -14px rgba(14, 34, 56, 0.18);
}
.pc-icon, .pc-icon-img {
    width: 120px;
    height: 80px;
    flex-shrink: 0;
    background: #FFFFFF;
    border: 1px solid var(--rule);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: -0.02em;
    color: var(--ink);
    line-height: 1;
    text-align: center;
}
.pc-icon-img {
    object-fit: contain;
    padding: 8px;
}
.pc-label {
    font-size: 14.5px !important;
    color: var(--ink-2);
    line-height: 1.4;
    padding-left: 0 !important;
    flex: 1;
}
.pc-label::before { display: none !important; }
@media (max-width: 720px) {
    .practice-cards { grid-template-columns: 1fr !important; gap: 8px !important; }
    .practice-cards li { padding: 10px 14px 10px 10px !important; }
    .pc-icon, .pc-icon-img { width: 96px; height: 64px; font-size: 12px; padding: 6px; }
    .pc-label { font-size: 13.5px !important; }
}

.practice-image {
    grid-column: 1 / -1;
    margin: 24px 0 4px;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 24px 48px -28px rgba(14, 34, 56, 0.30);
    background: var(--cream-soft);
    isolation: isolate;
    display: flex;
    align-items: center;
}
.practice-image img {
    display: block;
    width: 100%;
    aspect-ratio: 5 / 1;
    object-fit: cover;
    object-position: center 55%;
    transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.5s ease;
    filter: saturate(0.95) contrast(1.02);
}
.practice-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(14, 34, 56, 0.65) 0%, rgba(14, 34, 56, 0.30) 45%, rgba(14, 34, 56, 0.05) 70%, transparent 100%);
    pointer-events: none;
}
.practice-image figcaption {
    position: absolute;
    left: clamp(22px, 3.5vw, 48px);
    top: 50%;
    transform: translateY(-50%);
    font-size: clamp(1.05rem, 2vw, 1.75rem);
    font-weight: 600;
    letter-spacing: -0.015em;
    color: var(--on-dark);
    z-index: 1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
    line-height: 1.2;
    max-width: 60%;
}
.practice-item:hover .practice-image img {
    transform: scale(1.03);
    filter: saturate(1.05) contrast(1.05);
}
.practice-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--cream-paper);
    z-index: -1;
    opacity: 0;
    transform: scaleX(0.98);
    transform-origin: left;
    transition: opacity 0.45s ease, transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}
.practice-item:hover { padding-left: 20px; }
.practice-item:hover::before { opacity: 1; transform: scaleX(1); }
.practice-item:hover .practice-num { color: var(--accent); }
.practice-item:hover .practice-alt { color: var(--accent); }

.practice-num {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    color: var(--ink-3);
    text-transform: uppercase;
    transition: color 0.3s ease;
    padding-top: 0.65em;
}
.practice-title {
    font-weight: 600;
    font-size: clamp(1.5rem, 3vw, 2.3rem);
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: var(--ink);
    margin: 0;
}
.practice-alt {
    font-size: clamp(0.95rem, 1.1vw, 1.05rem);
    color: var(--ink-3);
    font-weight: 400;
    letter-spacing: 0;
    align-self: start;
    padding-top: 0.7em;
    transition: color 0.3s ease;
}

/* ============ Contact ============ */
.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: clamp(48px, 6vw, 88px);
    align-items: start;
}
.contact-left { display: flex; flex-direction: column; }

/* ============ Contact visual (right column) ============ */
.contact-visual {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 100px;
}
.contact-map {
    position: relative;
    aspect-ratio: 5 / 4;
    border-radius: 8px;
    overflow: hidden;
    background: var(--cream-soft);
    border: 1px solid var(--rule);
    box-shadow: 0 24px 48px -32px rgba(14, 34, 56, 0.18);
}
.contact-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}
.contact-visual-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 20px 0 4px;
}
.cv-label {
    font-size: 11.5px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-3);
    font-weight: 500;
}
.cv-value {
    font-size: 15px;
    color: var(--ink);
    font-weight: 500;
}
.contact-lede {
    color: var(--ink);
    font-size: clamp(1.2rem, 1.8vw, 1.7rem);
    line-height: 1.3;
    max-width: 440px;
    font-weight: 400;
    letter-spacing: -0.012em;
}

.contact-list {
    display: flex;
    flex-direction: column;
}
.contact-list > div {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 32px;
    padding: 22px 0;
    border-top: 1px solid var(--rule);
    align-items: baseline;
}
.contact-list > div:last-child { border-bottom: 1px solid var(--rule); }
.contact-list dt {
    font-size: 11.5px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-3);
    font-weight: 500;
    padding-top: 4px;
}
.contact-list dd {
    font-size: 15px;
    line-height: 1.55;
    color: var(--ink);
    font-weight: 400;
}
.contact-list a {
    color: var(--ink);
    border-bottom: 1px solid var(--rule);
    padding-bottom: 1px;
    transition: color 0.2s ease, border-color 0.2s ease;
    font-weight: 500;
}
.contact-list a:hover { color: var(--accent); border-color: var(--accent); }
.map-link {
    display: inline-flex;
    gap: 6px;
    margin-top: 12px;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--ink-2);
    letter-spacing: 0.04em;
    border: 0;
    padding: 0;
}
.map-link:hover { color: var(--accent); border: 0; }

/* ============ Footer ============ */
.site-footer {
    background: var(--dark);
    color: var(--on-dark-2);
    padding: 44px 0 32px;
}
.footer-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
}
.footer-mark {
    font-weight: 600;
    font-size: 16px;
    margin: 0;
    color: var(--on-dark);
    letter-spacing: -0.015em;
}
.footer-name {
    font-size: 11.5px;
    color: var(--on-dark-2);
    margin: 0;
    text-align: center;
    letter-spacing: 0.02em;
}
.footer-copy {
    font-size: 11.5px;
    color: var(--on-dark-2);
    margin: 0;
    letter-spacing: 0.04em;
}

/* ============ Reveal ============ */
[data-reveal] {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
[data-reveal].revealed { opacity: 1; transform: none; }

/* ============ Responsive ============ */
@media (max-width: 960px) {
    .wrap { padding: 0 28px; }
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .founder-card { position: static; padding: 28px; }
    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .contact-list > div { grid-template-columns: 1fr; gap: 6px; padding: 18px 0; }
    .contact-visual { position: static; }
    .hero-foot { grid-template-columns: 1fr; gap: 24px; align-items: start; padding-top: 24px; }
    .hero-foot .lede { max-width: none; }
    .display { font-size: clamp(1.6rem, 6.5vw, 3rem); line-height: 1.1; }
    .section-title { font-size: clamp(1.6rem, 4.5vw, 2.4rem); }
    .practice-item { padding: 24px 0; }
    .practice-title { font-size: clamp(1.4rem, 4.2vw, 2rem); }
    .practice-body { gap: 10px; }
    .section-head { padding-bottom: 18px; margin-bottom: 28px; }
    .statement { padding: clamp(56px, 9vw, 100px) 0; }
    .statement-body { font-size: clamp(1.4rem, 4.2vw, 2.6rem); line-height: 1.1; white-space: normal; }
    .founder-card-name { font-size: clamp(1.3rem, 3vw, 1.6rem); }
    .founder-meta dd { font-size: 13px; }
}

@media (max-width: 720px) {
    .wrap { padding: 0 20px; }
    .site-header { padding: 14px 0; }
    .header-row { gap: 14px; }
    .wordmark { font-size: clamp(22px, 5.5vw, 28px) !important; }
    .site-header.scrolled .wordmark { font-size: clamp(20px, 5vw, 24px) !important; }
    .primary-nav {
        position: fixed;
        inset: 0;
        background: var(--cream);
        flex-direction: column;
        justify-content: center;
        gap: 8px;
        transform: translateX(100%);
        transition: transform 0.45s cubic-bezier(0.65, 0, 0.35, 1);
        z-index: 49;
    }
    .primary-nav.open { transform: translateX(0); }
    .primary-nav a { font-size: 1.4rem !important; padding: 10px 24px; font-weight: 500; }
    .menu-btn { display: flex; position: relative; z-index: 60; }
    .menu-btn.open span:nth-child(1) { transform: translateY(3px) rotate(45deg); }
    .menu-btn.open span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }
    body.menu-open { overflow: hidden; }
    .lang { font-size: 11.5px; }
    .hero { padding: 96px 0 40px; min-height: auto; }
    .hero-top { margin-bottom: 28px; }
    .hero-top .kicker.right { display: none; }
    .kicker { font-size: 10.5px; }
    .display { font-size: clamp(1.55rem, 7vw, 2.2rem) !important; letter-spacing: -0.02em; line-height: 1.12; word-break: break-word; hyphens: auto; -webkit-hyphens: auto; }
    .hero .lede, .lede { font-size: 1rem; line-height: 1.5; }
    .hero-foot { margin-top: 28px; gap: 20px; }
    .hero-actions { flex-direction: column; gap: 10px; align-items: flex-start; }
    .cta { font-size: 14px; }
    .section { padding: clamp(56px, 10vw, 80px) 0; }
    .section-title { font-size: clamp(1.4rem, 5.5vw, 2rem) !important; letter-spacing: -0.025em; }
    .section-head { padding-bottom: 16px; margin-bottom: 24px; }
    .statement { padding: 56px 0; }
    .statement-eyebrow { font-size: 10.5px; margin-bottom: 18px; }
    .statement-body { font-size: clamp(1.25rem, 5vw, 1.9rem) !important; line-height: 1.15; letter-spacing: -0.025em; white-space: normal !important; }
    .statement-sig { font-size: 10.5px; }
    .about-text p { font-size: 14.5px; line-height: 1.65; }
    .about-text .lede { font-size: 1.1rem !important; line-height: 1.45; }
    .founder-card { padding: 22px; }
    .founder-photo { width: 84px; height: 84px; }
    .founder-card-name { font-size: 1.3rem !important; }
    .founder-card-role { font-size: 11.5px; margin-bottom: 22px; }
    .founder-meta { gap: 12px; }
    .founder-meta > div { flex-direction: column; align-items: flex-start; gap: 2px; }
    .founder-meta dd { text-align: left; }
    .practice-list { margin-top: 0; }
    .practice-item { grid-template-columns: 26px 1fr; gap: 12px; padding: 22px 0; }
    .practice-item:hover { padding-left: 0; }
    .practice-item:hover::before { display: none; }
    .practice-title { font-size: clamp(1.25rem, 5vw, 1.7rem) !important; word-break: break-word; hyphens: auto; -webkit-hyphens: auto; }
    .practice-alt { font-size: 12px; padding-top: 4px; padding-left: 0; }
    .practice-items li { font-size: 16.5px; line-height: 1.5; padding-left: 20px; }
    .practice-items li::before { width: 10px; }
    .practice-image { margin-top: 18px; }
    .practice-image img { aspect-ratio: 3 / 1; }
    .practice-image figcaption { font-size: 0.95rem; left: 18px; max-width: 70%; }
    .practice-num { font-size: 10.5px; padding-top: 0.45em; }
    .contact-grid { gap: 36px; }
    .contact-list > div { padding: 14px 0; }
    .contact-list dt { font-size: 10.5px; }
    .contact-list dd { font-size: 14px; line-height: 1.55; }
    .contact-map { aspect-ratio: 4 / 3; }
    .map-pin::after { font-size: 9px; padding: 3px 8px; top: -28px; }
    .footer-row { grid-template-columns: 1fr; text-align: center; gap: 14px; }
    .footer-name, .footer-mark { text-align: center; }
    .footer-mark { display: flex; justify-content: center; }
}

@media (max-width: 400px) {
    .wrap { padding: 0 16px; }
    .site-header { padding: 12px 0; }
    .wordmark { font-size: 20px !important; }
    .display { font-size: 1.5rem !important; }
    .section-title { font-size: 1.5rem !important; }
    .statement-body { font-size: 1.05rem !important; }
    .founder-card-name { font-size: 1.2rem !important; }
    .practice-title { font-size: 1.2rem !important; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto;
    }
    [data-reveal] { opacity: 1; transform: none; }
}

/* ---- Strateji Tuvalı tool CTA (in the Training section) ---- */
.practice-tool-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    font-weight: 600;
    font-size: 0.95rem;
    color: #fff;
    background: var(--accent);
    padding: 11px 20px;
    border-radius: 999px;
    text-decoration: none;
    transition: background 0.15s ease, transform 0.05s ease;
}
.practice-tool-cta:hover { background: #0d5f55; }
.practice-tool-cta:active { transform: translateY(1px); }
.practice-tool-cta .cta-arrow { transition: transform 0.15s ease; }
.practice-tool-cta:hover .cta-arrow { transform: translateX(3px); }
