/* theme.css - site tasarimlari (header.php uzerinden yuklenir) */

/* === Tek :root: tum renk + yardimci degiskenler (style.css ile cakisma yok) === */
:root {
  --site-paper: #ffffff;
  --site-paper-soft: #f4f4f4;
  --site-ink: #111111;
  --site-ink-muted: #555555;
  --site-line: #e1e1e1;
  --site-navy: #3a3a3a;
  --site-navy-mid: #525252;
  --site-gold: #6b6b6b;
  --site-gold-soft: #c4c4c4;
  --site-success: #2d6a4f;
  --site-warning: #7a7a7a;
  --site-danger: #9b2335;
  --shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s ease;
  --nav-height: 72px;
  --bs-primary: var(--site-navy);
  --bs-primary-rgb: 58, 58, 58;
  --bs-link-color: #111111;
  --bs-link-hover-color: #3a3a3a;
  --bs-body-bg: var(--site-paper);
  --bs-body-color: var(--site-ink);
}

body {
  background: var(--site-paper);
  color: var(--site-ink);
  font-family: 'Manrope', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  background-image: none;
}

      .navbar {
        background: rgba(45, 45, 45, 0.97) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        backdrop-filter: blur(8px);
        min-height: var(--nav-height);
      }

      .navbar .container,
      .navbar .navbar-bar {
        width: min(1240px, calc(100% - 1.5rem));
        display: flex;
        flex-wrap: wrap;
        align-items: center;
      }

      .navbar-brand {
        order: 1;
      }

      .navbar-tools {
        order: 2;
        display: flex;
        align-items: center;
        gap: 0.55rem;
        margin-left: auto;
      }

      .navbar-collapse {
        order: 3;
      }

      .nav-consult {
        display: none;
        align-items: center;
        color: #fff;
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.72);
        padding: 0.52rem 1.05rem;
        font-size: 0.68rem;
        font-weight: 700;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        white-space: nowrap;
        transition: background 0.2s ease, color 0.2s ease;
      }

      .nav-consult:hover {
        background: #fff;
        color: #111;
      }

      .navbar-nav .nav-link {
        text-transform: uppercase;
        font-size: 0.74rem;
        letter-spacing: 0.14em;
        font-weight: 600;
      }

      .navbar .nav-link.active {
        color: #fff !important;
      }

      .navbar .nav-link.active::after {
        display: none !important;
      }

      @media (min-width: 992px) {
        .navbar .navbar-bar {
          flex-wrap: nowrap;
        }

        .navbar-collapse {
          order: 2;
          flex: 1 1 auto;
          justify-content: center !important;
        }

        .navbar-tools {
          order: 3;
          margin-left: 0.75rem;
        }

        .navbar-nav {
          justify-content: center;
          width: 100%;
        }

        .nav-consult {
          display: inline-flex;
        }
      }

      .navbar-brand,
      .navbar.navbar-expand-lg .navbar-brand.site-brand {
        display: flex;
        flex-direction: row;
        align-items: center;
        margin-right: 1.5rem;
        padding-top: 0.4rem;
        padding-bottom: 0.4rem;
        font-size: 16px;
        font-weight: 400;
        line-height: 1.2;
        white-space: normal;
        text-decoration: none !important;
      }

      .site-brand-lockup {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.22rem;
      }

      .navbar .site-brand-names,
      .site-brand-names {
        display: block;
        font-family: 'Cormorant Garamond', 'Noto Serif', Georgia, 'Times New Roman', serif;
        font-size: 0.95rem;
        font-weight: 600;
        font-style: normal;
        letter-spacing: 0.18em;
        line-height: 1;
        color: #ffffff;
        text-transform: uppercase;
        white-space: nowrap;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
      }

      .site-brand-sep {
        display: inline-block;
        width: 1px;
        height: 0.72em;
        margin: 0 0.55em;
        background: rgba(255, 255, 255, 0.45);
        vertical-align: -0.05em;
      }

      .navbar .site-brand-sub,
      .site-brand-sub {
        display: block;
        font-family: 'Manrope', sans-serif;
        font-size: 0.5625rem;
        font-weight: 500;
        letter-spacing: 0.28em;
        text-transform: uppercase;
        color: #b5b5b5;
        line-height: 1;
        white-space: nowrap;
        -webkit-font-smoothing: antialiased;
      }

      .navbar-nav {
        gap: 0.35rem;
      }

      .nav-link {
        color: rgba(255, 255, 255, 0.84) !important;
        font-weight: 600;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        font-size: 0.74rem;
        padding: 0.55rem 0.75rem !important;
        position: relative;
      }

      .nav-link:hover {
        color: #fff !important;
      }

      .nav-link.active {
        color: var(--site-gold-soft) !important;
      }

      .nav-link.active::after {
        content: '';
        position: absolute;
        left: 0.75rem;
        right: 0.75rem;
        bottom: 0.25rem;
        width: auto;
        max-width: none;
        margin: 0;
        height: 2px;
        transform: none;
        background: var(--site-gold-soft);
      }

      .language-switcher {
        display: inline-flex;
        gap: 0.35rem;
      }

      .language-switcher .btn {
        border-radius: 2px;
        border-color: rgba(255, 255, 255, 0.45);
        color: #fff;
        font-weight: 700;
        letter-spacing: 0.08em;
        min-width: 42px;
        padding: 0.35rem 0.55rem;
      }

      .language-switcher .btn:hover {
        background: var(--site-gold);
        border-color: var(--site-gold);
      }

      .navbar-toggler {
        border-color: rgba(255, 255, 255, 0.4);
      }

      .navbar-toggler:focus {
        box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.18);
      }

      @media (max-width: 991px) {
        .navbar.navbar-expand-lg {
          align-items: flex-start;
        }

        .navbar.navbar-expand-lg > .container.navbar-bar {
          align-items: center;
          min-height: var(--nav-height);
        }

        .navbar.navbar-expand-lg .navbar-brand {
          flex: 1 1 auto;
          min-width: 0;
          max-width: calc(100% - 7.25rem);
          margin-right: 0.35rem !important;
        }

        .navbar.navbar-expand-lg .site-brand-names {
          font-size: 0.82rem;
          letter-spacing: 0.12em;
        }

        .navbar.navbar-expand-lg .site-brand-sub {
          font-size: 0.5rem;
          letter-spacing: 0.18em;
        }

        .language-switcher {
          gap: 0.35rem;
          margin-right: 0 !important;
          align-items: center;
        }

        /* Dil + menü: aynı kare boyut, aynı çerçeve (mobil) */
        .navbar.navbar-expand-lg .language-switcher .btn.language-switcher-toggle,
        .navbar.navbar-expand-lg .navbar-toggler {
          width: 2.5rem;
          height: 2.5rem;
          min-width: 2.5rem;
          min-height: 2.5rem;
          margin: 0;
          padding: 0 !important;
          display: inline-flex !important;
          align-items: center;
          justify-content: center;
          border-radius: 6px !important;
          border: 1px solid rgba(180, 180, 180, 0.65) !important;
          line-height: 1;
          box-sizing: border-box;
        }

        .navbar.navbar-expand-lg .language-switcher .btn.language-switcher-toggle {
          font-size: 0.72rem;
          font-weight: 700;
          letter-spacing: 0.06em;
          text-decoration: none;
        }

        .navbar.navbar-expand-lg .navbar-toggler {
          color: #fff;
        }

        .navbar.navbar-expand-lg .navbar-toggler-icon {
          display: none;
        }

        .navbar-toggler-bars {
          display: flex;
          flex-direction: column;
          justify-content: center;
          gap: 5px;
          width: 16px;
          height: 14px;
        }

        .navbar-toggler-bars span {
          display: block;
          height: 1.5px;
          width: 100%;
          background: #fff;
          border-radius: 1px;
          transform-origin: center;
          transition: transform 0.22s ease, opacity 0.18s ease;
        }

        .navbar-toggler[aria-expanded="true"] {
          background: rgba(255, 255, 255, 0.08);
        }

        .navbar-toggler[aria-expanded="true"] .navbar-toggler-bars span:nth-child(1) {
          transform: translateY(6.5px) rotate(45deg);
        }

        .navbar-toggler[aria-expanded="true"] .navbar-toggler-bars span:nth-child(2) {
          opacity: 0;
        }

        .navbar-toggler[aria-expanded="true"] .navbar-toggler-bars span:nth-child(3) {
          transform: translateY(-6.5px) rotate(-45deg);
        }

        .navbar-collapse {
          flex-basis: 100%;
          width: 100%;
          margin-top: 0.65rem;
          padding: 0.15rem 0 0.35rem;
          background: transparent;
          border: 0;
          border-top: 1px solid rgba(255, 255, 255, 0.12);
        }

        .navbar-collapse .navbar-nav {
          width: 100%;
          gap: 0;
        }

        .navbar-collapse .nav-link {
          padding: 0.9rem 0.15rem !important;
          border-bottom: 1px solid rgba(255, 255, 255, 0.08);
          font-size: 0.78rem;
          letter-spacing: 0.16em;
        }

        .navbar-collapse .nav-item:last-child .nav-link {
          border-bottom: 0;
        }

        .nav-link.active::after {
          display: none !important;
        }

        .navbar-collapse .nav-link.active {
          color: #fff !important;
        }
      }

/* === Footer === */
.footer {
        background: linear-gradient(145deg, #2c2c2c 0%, #242424 60%, #1f1f1f 100%) !important;
        color: #f2f2f2;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 0.98rem;
      }

      .footer .footer-shell {
        width: min(1240px, calc(100% - 1.5rem));
      }

      .footer-brand {
        color: #fff;
      }

      .footer a.footer-site-brand,
      .footer a.footer-site-brand:hover,
      .footer a.footer-site-brand:focus,
      .footer a.footer-site-brand:visited {
        display: inline-flex;
        align-items: center;
        padding: 0;
        margin: 0;
        color: #fff !important;
        text-decoration: none !important;
        box-shadow: none;
        border: 0;
        background: transparent;
      }

      .footer-brand .site-brand-lockup {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.22rem;
      }

      .footer-brand .site-brand-names {
        display: block;
        font-family: 'Cormorant Garamond', 'Noto Serif', Georgia, 'Times New Roman', serif;
        font-size: 0.95rem;
        font-weight: 600;
        font-style: normal;
        letter-spacing: 0.18em;
        line-height: 1;
        color: #ffffff !important;
        text-transform: uppercase;
        white-space: nowrap;
        text-decoration: none !important;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
      }

      .footer-brand .site-brand-sep {
        display: inline-block;
        width: 1px;
        height: 0.72em;
        margin: 0 0.55em;
        background: rgba(255, 255, 255, 0.45);
        vertical-align: -0.05em;
      }

      .footer-brand .site-brand-sub {
        display: block;
        font-family: 'Manrope', sans-serif;
        font-size: 0.5625rem;
        font-weight: 500;
        letter-spacing: 0.28em;
        text-transform: uppercase;
        color: #b5b5b5 !important;
        line-height: 1;
        white-space: nowrap;
        text-decoration: none !important;
        border: 0;
        -webkit-font-smoothing: antialiased;
      }

      .footer-text {
        color: rgba(255, 255, 255, 0.82);
        max-width: 44ch;
        line-height: 1.7;
      }

      .footer-title {
        color: #c4c4c4;
        font-size: 0.8rem;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        margin: 0 0 1rem;
        font-weight: 700;
      }

      .footer-list li {
        margin-bottom: 0.55rem;
        color: rgba(255, 255, 255, 0.84);
      }

      .footer-link {
        color: rgba(255, 255, 255, 0.84);
        text-decoration: none;
        transition: color 0.2s ease;
      }

      .footer-link:hover {
        color: #c4c4c4;
      }

      .footer-contact li {
        display: flex;
        gap: 0.6rem;
        align-items: flex-start;
        margin-bottom: 0.65rem;
        color: rgba(255, 255, 255, 0.84);
      }

      .footer-contact i {
        color: #c4c4c4;
        margin-top: 0.2rem;
        width: 16px;
      }

      .social-links {
        display: flex;
        align-items: center;
        gap: 0.55rem;
      }

      .social-link {
        width: 34px;
        height: 34px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(180, 180, 180, 0.45);
        color: #c4c4c4;
        border-radius: 50%;
        text-decoration: none;
        transition: all 0.2s ease;
      }

      .social-link:hover {
        color: #1f1f1f;
        background: #d0d0d0;
        border-color: #c4c4c4;
      }

      .footer-divider {
        border-color: rgba(255, 255, 255, 0.14);
        margin-top: 2rem;
        margin-bottom: 1.2rem;
      }

      .footer-bottom p {
        color: rgba(255, 255, 255, 0.72);
      }

      @media (max-width: 768px) {
        .footer {
          padding-top: 2.2rem !important;
        }

        .footer-brand .site-brand-names {
          font-size: 0.95rem;
        }
      }

/* === Ana sayfa === */
.home-redesign {
    --paper: #ffffff;
    --paper-soft: #f4f4f4;
    --ink: #111111;
    --ink-muted: #555555;
    --line: #e1e1e1;
    --navy: #3a3a3a;
    --gold: #6b6b6b;
    --gold-soft: #c4c4c4;
    --container: 1240px;
    margin-top: var(--nav-height);
    background: var(--paper);
    color: var(--ink);
    font-family: 'Manrope', sans-serif;
  }

body.page-home .home-redesign {
  margin-top: 0;
}

body.page-home .navbar {
  background: transparent !important;
  border-bottom-color: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

body.page-home .navbar.is-scrolled {
  background: rgba(28, 28, 28, 0.94) !important;
  border-bottom-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

  .home-redesign .container-modern {
    width: min(var(--container), calc(100% - 2.5rem));
    margin: 0 auto;
  }

  .home-redesign .eyebrow {
    font-size: 11px;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.5rem;
  }

  .home-redesign h1,
  .home-redesign h2,
  .home-redesign h3 {
    font-family: 'Noto Serif', serif;
  }

  .home-redesign .hero-slider {
    position: relative;
    height: 100svh;
    min-height: 640px;
    overflow: hidden;
    background: #1c1c1c;
  }

  .home-redesign .hero-slide {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
    pointer-events: none;
  }

  .home-redesign .hero-slide.active {
    z-index: 1;
    opacity: 1;
    pointer-events: auto;
  }

  .home-redesign .hero-slide img {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.04);
    transition: transform 1.1s ease;
  }

  .home-redesign .hero-slide.active img {
    transform: scale(1);
  }

  .home-redesign .hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
      linear-gradient(180deg, rgba(20, 20, 20, 0.45) 0%, rgba(20, 20, 20, 0.12) 38%, rgba(20, 20, 20, 0.55) 100%),
      linear-gradient(90deg, rgba(18, 18, 18, 0.62) 0%, rgba(18, 18, 18, 0.18) 48%, transparent 70%);
    pointer-events: none;
  }

  .home-redesign .hero-content {
    position: relative;
    z-index: 2;
    width: min(1240px, calc(100% - 2.5rem));
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    box-sizing: border-box;
    padding: calc(var(--nav-height) + 1rem) 0 7rem;
  }

  .home-redesign .hero-panel {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 38rem;
    padding: 0;
    background: none;
    border: none;
    box-shadow: none;
  }

  .home-redesign .hero-kicker {
    margin: 0 0 1.15rem;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
  }

  .home-redesign .hero-kicker::before {
    content: '';
    display: block;
    width: 2.4rem;
    height: 1px;
    margin: 0 auto 0.85rem 0;
    background: rgba(255, 255, 255, 0.7);
  }

  .home-redesign .hero-title {
    color: #fff;
    font-family: 'Cormorant Garamond', 'Noto Serif', serif;
    font-size: clamp(2.4rem, 5.4vw, 4.35rem);
    font-weight: 600;
    line-height: 1.08;
    margin: 0 0 1.1rem;
    max-width: 14ch;
    text-wrap: balance;
    text-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
  }

  .home-redesign .hero-desc {
    color: rgba(255, 255, 255, 0.82);
    max-width: 42ch;
    font-size: 1rem;
    line-height: 1.65;
    margin: 0 0 1.4rem;
  }

  .home-redesign .hero-cta {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.7);
    background: transparent;
  }

  .home-redesign .hero-cta:hover {
    background: #fff;
    color: #111;
    border-color: #fff;
  }

  .home-redesign .btn-gold,
  .home-redesign .btn-outline-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 11px;
    font-weight: 700;
    padding: 0.65rem 1rem;
    border-radius: 2px;
    transition: all 0.25s ease;
  }

  .home-redesign .btn-gold {
    color: #fff;
    background: var(--gold);
    border: 1px solid var(--gold);
  }

  .home-redesign .btn-gold:hover {
    color: #fff;
    background: #4a4a4a;
    border-color: #4a4a4a;
  }

  .home-redesign .btn-outline-gold {
    color: var(--gold);
    border: 1px solid var(--gold);
    background: transparent;
  }

  .home-redesign .btn-outline-gold:hover {
    background: var(--gold);
    color: #fff;
  }

  .home-redesign .hero-controls {
    position: absolute;
    z-index: 3;
    left: max(1.25rem, calc((100% - min(1240px, calc(100% - 2.5rem))) / 2));
    bottom: clamp(1.6rem, 7vh, 3.4rem);
    display: flex;
    align-items: center;
    gap: 1.1rem;
    padding: 0;
    background: none;
    pointer-events: auto;
  }

  .home-redesign .hero-nav {
    width: auto;
    height: auto;
    flex-shrink: 0;
    border: none;
    background: none;
    color: #fff;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0.2rem;
    opacity: 0.88;
    transition: opacity 0.2s ease, transform 0.15s ease;
  }

  .home-redesign .hero-nav:hover {
    opacity: 1;
    background: none;
    border: none;
  }

  .home-redesign .hero-nav:focus-visible {
    outline: 1px solid #fff;
    outline-offset: 4px;
  }

  .home-redesign .hero-nav:active {
    transform: translateX(-1px);
  }

  .home-redesign .hero-nav.next:active {
    transform: translateX(1px);
  }

  .home-redesign .hero-nav-svg {
    display: block;
  }

  .home-redesign .hero-count {
    color: #fff;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-variant-numeric: tabular-nums;
    min-width: 4.6rem;
    text-align: center;
  }

  .home-redesign .hero-dots,
  .home-redesign .hero-progress {
    display: none;
  }

  .home-redesign .hero-controls.is-single .hero-nav {
    visibility: hidden;
  }

  @media (prefers-reduced-motion: reduce) {
    .home-redesign .hero-slide,
    .home-redesign .hero-slide img {
      transition: none !important;
      transform: none !important;
    }

    .home-redesign .team-card-modern:hover .team-photo img {
      transform: none;
    }
  }

  .home-redesign .section-modern {
    padding: clamp(3.5rem, 8vw, 7rem) 0;
  }

  .home-redesign .section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .home-redesign .section-head h2 {
    font-size: clamp(1.7rem, 3.2vw, 3rem);
    margin-bottom: 0.5rem;
  }

  .home-redesign .section-head p {
    color: var(--ink-muted);
    margin: 0;
    max-width: 62ch;
  }

  .home-redesign .practice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(14.5rem, 1fr));
    gap: 0.9rem 1rem;
    align-items: start;
  }

  .home-redesign .practice-card-modern {
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #fff;
    padding: 1.1rem 1.2rem 1.15rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    box-shadow: 0 1px 0 rgba(32, 32, 32, 0.04);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    text-decoration: none;
    color: inherit;
    height: 100%;
  }

  .home-redesign .practice-card-modern:hover {
    border-color: rgba(122, 88, 31, 0.35);
    box-shadow: 0 6px 20px rgba(32, 32, 32, 0.07);
    transform: translateY(-2px);
  }

  .home-redesign .practice-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(122, 88, 31, 0.1);
    background: color-mix(in srgb, var(--gold) 10%, #fff 90%);
    border: 1px solid rgba(180, 180, 180, 0.35);
  }

  .home-redesign .practice-card__icon i {
    color: var(--gold);
    font-size: 1.05rem;
  }

  .home-redesign .practice-card-modern h3 {
    font-size: 1.08rem;
    line-height: 1.3;
    margin: 0;
  }

  .home-redesign .practice-card-modern p {
    color: var(--ink-muted);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .home-redesign .about-wrap {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 1.8rem;
    align-items: stretch;
  }

  .home-redesign .about-photo img {
    width: 100%;
    height: 100%;
    min-height: 460px;
    object-fit: cover;
    border: 1px solid var(--line);
  }

  .home-redesign .about-box {
    border: 1px solid var(--line);
    background: var(--paper-soft);
    padding: clamp(1.3rem, 2.8vw, 2.6rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .home-redesign .about-box p {
    color: var(--ink-muted);
    margin-bottom: 1.4rem;
  }

  .home-redesign .team-section .team-head {
    justify-content: center;
    text-align: center;
    margin-bottom: 2.75rem;
  }

  .home-redesign .team-section .team-head h2 {
    margin-bottom: 0.85rem;
  }

  .home-redesign .team-section .team-head h2::after {
    content: "";
    display: block;
    width: 2.75rem;
    height: 1px;
    margin: 0.9rem auto 0;
    background: #1a1a1a;
  }

  .home-redesign .team-grid-modern {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 22rem));
    justify-content: center;
    gap: clamp(1.75rem, 4vw, 3.5rem);
    max-width: none;
    width: 100%;
  }

  .home-redesign .team-card-modern {
    border: 0;
    background: transparent;
    overflow: visible;
  }

  .home-redesign .team-photo {
    position: relative;
    aspect-ratio: 3 / 4;
    background: #eceae7;
    overflow: hidden;
  }

  .home-redesign .team-photo.is-empty {
    background:
      radial-gradient(120% 80% at 50% 20%, #f7f5f2 0%, #e4e0db 100%);
  }

  .home-redesign .team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.55s ease;
  }

  .home-redesign .team-card-modern:hover .team-photo img {
    transform: scale(1.04);
  }

  .home-redesign .team-initials {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', 'Noto Serif', serif;
    font-size: clamp(3rem, 6vw, 4.25rem);
    font-weight: 600;
    letter-spacing: 0.14em;
    color: rgba(28, 28, 28, 0.28);
    user-select: none;
  }

  .home-redesign .team-identity {
    text-align: center;
    padding: 1.35rem 0.4rem 0;
  }

  .home-redesign .team-identity h3 {
    font-family: 'Cormorant Garamond', 'Noto Serif', serif;
    font-size: clamp(1.45rem, 2.2vw, 1.85rem);
    font-weight: 600;
    letter-spacing: 0.01em;
    margin: 0 0 0.3rem;
    line-height: 1.2;
  }

  .home-redesign .team-title {
    color: #6a6a6a;
    font-weight: 600;
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    margin: 0;
  }

  .home-redesign .team-rule {
    display: block;
    width: 2rem;
    height: 1px;
    margin: 0.95rem auto 0;
    background: #c8c4bf;
  }

  .home-redesign .team-facts {
    margin: 1rem 0 0;
    padding: 0;
    text-align: center;
  }

  .home-redesign .team-facts dt {
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #8a8a8a;
    margin: 0.95rem 0 0.28rem;
  }

  .home-redesign .team-facts dd {
    margin: 0;
    color: #3a3a3a;
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .home-redesign .team-facts dd > span {
    display: block;
  }

  .home-redesign .team-empty {
    text-align: center;
    color: var(--ink-muted);
  }

  .home-redesign .team-specialty {
    color: var(--ink-muted);
    font-size: 0.95rem;
    margin: 0;
  }

  .home-redesign .articles-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
  }

  .home-redesign .article-card-modern {
    background: #fff;
    border: 1px solid var(--line);
    text-decoration: none;
    color: inherit;
  }

  .home-redesign .article-card-modern img {
    width: 100%;
    height: 230px;
    object-fit: cover;
  }

  .home-redesign .article-body-modern {
    padding: 1rem;
  }

  .home-redesign .article-meta-modern {
    color: var(--ink-muted);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
  }

  .home-redesign .article-body-modern h3 {
    font-size: 1.2rem;
    margin: 0;
  }

  .home-redesign .cta-modern {
    background: var(--navy);
    color: #fff;
    border-top: 1px solid rgba(180, 180, 180, 0.25);
    border-bottom: 1px solid rgba(180, 180, 180, 0.25);
  }

  .home-redesign .cta-inner {
    padding: clamp(3rem, 6vw, 5rem) 0;
    text-align: center;
  }

  .home-redesign .cta-inner h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    margin-bottom: 0.9rem;
  }

  .home-redesign .cta-inner p {
    margin: 0 auto 1.4rem;
    max-width: 65ch;
    color: rgba(255, 255, 255, 0.85);
  }

  @media (max-width: 992px) {
    .home-redesign .team-grid-modern {
      grid-template-columns: repeat(2, minmax(0, 20rem));
      justify-content: center;
    }

    .home-redesign .articles-grid-modern {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-redesign .about-wrap {
      grid-template-columns: 1fr;
    }

    .home-redesign .hero-panel {
      max-width: min(34rem, calc(100% - 1.5rem));
    }

    .home-redesign .hero-slide img,
    .home-redesign .hero-slide.active img {
      object-position: 78% 40%;
      transform: none;
    }

    .home-redesign .hero-overlay {
      background:
        linear-gradient(180deg, rgba(18, 18, 18, 0.58) 0%, rgba(18, 18, 18, 0.22) 42%, rgba(18, 18, 18, 0.62) 100%),
        linear-gradient(90deg, rgba(16, 16, 16, 0.78) 0%, rgba(16, 16, 16, 0.38) 46%, rgba(16, 16, 16, 0.12) 100%);
    }
  }

  @media (max-width: 640px) {
    .home-redesign .container-modern {
      width: calc(100% - 1.2rem);
    }

    .home-redesign .hero-slider {
      height: 100svh;
      min-height: 560px;
    }

    .home-redesign .hero-slide img,
    .home-redesign .hero-slide.active img {
      object-position: 82% 38%;
      transform: none;
    }

    .home-redesign .hero-content {
      width: calc(100% - 1.6rem);
      align-items: center;
      padding: calc(var(--nav-height) + 0.5rem) 0 5.5rem;
    }

    .home-redesign .hero-panel {
      padding: 0;
      max-width: 100%;
    }

    .home-redesign .hero-title {
      font-size: clamp(2rem, 9vw, 2.7rem);
      max-width: 12ch;
    }

    .home-redesign .hero-desc {
      font-size: 0.92rem;
    }

    .home-redesign .hero-controls {
      left: 0.85rem;
      bottom: 1.4rem;
      gap: 0.75rem;
    }

    .home-redesign .hero-count {
      font-size: 0.72rem;
      min-width: 4.2rem;
    }

    .home-redesign .section-head {
      flex-direction: column;
      align-items: flex-start;
      margin-bottom: 1.3rem;
    }

    .home-redesign .practice-grid,
    .home-redesign .articles-grid-modern {
      grid-template-columns: 1fr;
    }

    .home-redesign .team-grid-modern {
      grid-template-columns: minmax(0, 22rem);
      justify-content: center;
    }

    .home-redesign .about-photo img {
      min-height: 320px;
    }
  }

/* === Iletisim === */
.contact-redesign {
    --paper: #ffffff;
    --paper-soft: #f4f4f4;
    --ink: #111111;
    --ink-muted: #555555;
    --line: #e1e1e1;
    --navy: #3a3a3a;
    --gold: #6b6b6b;
    --gold-soft: #c4c4c4;
    --container: 1240px;
    margin-top: var(--nav-height);
    background: var(--paper);
    color: var(--ink);
  }

  .contact-redesign .contact-container {
    width: min(var(--container), calc(100% - 2.5rem));
    margin: 0 auto;
  }

  .contact-redesign .contact-hero {
    padding: clamp(2.7rem, 6vw, 5rem) 0;
    border-bottom: 1px solid var(--line);
    background: linear-gradient(180deg, #f5f5f5 0%, #ffffff 100%);
    text-align: center;
  }

  .contact-redesign .contact-eyebrow {
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.12em;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 0.7rem;
  }

  .contact-redesign .contact-hero h1,
  .contact-redesign .contact-block h2 {
    font-family: 'Noto Serif', serif;
  }

  .contact-redesign .contact-hero h1 {
    font-size: clamp(2rem, 4vw, 3.35rem);
    margin-bottom: 0.85rem;
  }

  .contact-redesign .contact-hero p {
    color: var(--ink-muted);
    max-width: 70ch;
    margin: 0 auto;
  }

  .contact-redesign .contact-main {
    padding: clamp(2.2rem, 5vw, 4.7rem) 0;
  }

  .contact-redesign .contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(1rem, 2.2vw, 2rem);
  }

  .contact-redesign .contact-block {
    background: #fff;
    border: 1px solid var(--line);
    padding: clamp(1rem, 2vw, 1.7rem);
  }

  .contact-redesign .contact-block h2 {
    font-size: clamp(1.4rem, 2.3vw, 2rem);
    margin-bottom: 1.2rem;
  }

  .contact-redesign .form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
  }

  .contact-redesign .form-group {
    margin-bottom: 0.95rem;
  }

  .contact-redesign .form-label-modern {
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 11px;
    color: var(--ink-muted);
    font-weight: 700;
    margin-bottom: 0.35rem;
  }

  .contact-redesign .contact-field-hint {
    font-size: 0.8125rem;
    line-height: 1.45;
    color: var(--ink-muted);
    letter-spacing: 0.02em;
  }

  .contact-redesign .contact-field-hint strong {
    color: var(--ink);
    font-weight: 600;
  }

  .contact-redesign .form-input-modern,
  .contact-redesign .form-select-modern,
  .contact-redesign .form-textarea-modern {
    width: 100%;
    border: 0;
    border-bottom: 1px solid #b8b6b0;
    border-radius: 0;
    background: transparent;
    padding: 0.52rem 0;
    color: var(--ink);
  }

  .contact-redesign .form-input-modern:focus,
  .contact-redesign .form-select-modern:focus,
  .contact-redesign .form-textarea-modern:focus {
    outline: none;
    border-bottom-color: var(--gold);
    box-shadow: none;
  }

  .contact-redesign .btn-contact-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--navy);
    background: var(--navy);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 12px;
    font-weight: 700;
    padding: 0.86rem 1.2rem;
    transition: all 0.25s ease;
  }

  .contact-redesign .btn-contact-submit:hover {
    background: #0e1627;
    border-color: #0e1627;
    color: #fff;
  }

  .contact-redesign .contact-hours-note {
    margin: 1rem 0 0;
    color: var(--ink-muted);
    font-size: 0.9rem;
    line-height: 1.65;
  }

  .contact-redesign .contact-details-list {
    display: grid;
    gap: 0.85rem;
    margin-bottom: 1.1rem;
  }

  .contact-redesign .detail-item {
    border: 1px solid var(--line);
    border-left: 3px solid var(--gold-soft);
    background: #fff;
    padding: 0.8rem 0.85rem;
  }

  .contact-redesign .detail-title {
    margin: 0 0 0.25rem;
    color: var(--gold);
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.1em;
    font-weight: 700;
  }

  .contact-redesign .detail-text {
    margin: 0;
    color: var(--ink);
    line-height: 1.6;
  }

  .contact-redesign .detail-text a {
    color: var(--gold);
    font-weight: 600;
  }

  .contact-redesign .detail-text a:hover {
    color: #5c4218;
  }

  /* Bootstrap uyarıları — kurumsal palete yakın tonlar */
  .contact-redesign .alert {
    border-radius: 2px;
    border-width: 1px;
  }

  .contact-redesign .alert-success {
    background: rgba(45, 106, 79, 0.1);
    border-color: rgba(45, 106, 79, 0.35);
    color: #1b4332;
  }

  .contact-redesign .alert-danger {
    background: rgba(155, 35, 53, 0.08);
    border-color: rgba(155, 35, 53, 0.35);
    color: #6a1b2b;
  }

  .contact-redesign .alert-warning {
    background: rgba(176, 137, 0, 0.1);
    border-color: rgba(176, 137, 0, 0.35);
    color: #4d3d00;
  }

  .contact-redesign .map-shell iframe {
    width: 100%;
    min-height: 290px;
    border: 0;
    filter: none;
  }

  .contact-redesign .contact-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1rem;
  }

  .contact-redesign .info-card {
    border: 1px solid var(--line);
    background: #fff;
    padding: 1rem;
  }

  .contact-redesign .info-card h3 {
    font-family: 'Noto Serif', serif;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
  }

  .contact-redesign .info-card p {
    margin: 0;
    color: var(--ink-muted);
  }

  @media (max-width: 992px) {
    .contact-redesign .contact-grid {
      grid-template-columns: 1fr;
    }
  }

  @media (max-width: 640px) {
    .contact-redesign .contact-container {
      width: calc(100% - 1.2rem);
    }

    .contact-redesign .form-grid,
    .contact-redesign .contact-cards {
      grid-template-columns: 1fr;
    }

    .contact-redesign .map-shell iframe {
      min-height: 220px;
    }
  }

/* === Makale listesi === */
.articles-redesign {
        --paper: #ffffff;
        --paper-soft: #f4f4f4;
        --ink: #111111;
        --ink-muted: #555555;
        --line: #e1e1e1;
        --navy: #3a3a3a;
        --gold: #6b6b6b;
        --gold-soft: #c4c4c4;
        --container: 1240px;
        margin-top: var(--nav-height);
        background: var(--paper);
        color: var(--ink);
    }

    .articles-redesign .articles-container {
        width: min(var(--container), calc(100% - 2.5rem));
        margin: 0 auto;
    }

    .articles-redesign .articles-hero {
        padding: clamp(2.7rem, 5.5vw, 4.8rem) 0;
        text-align: center;
        border-bottom: 1px solid var(--line);
        background: linear-gradient(180deg, #f5f5f5 0%, #ffffff 100%);
    }

    .articles-redesign .articles-eyebrow {
        text-transform: uppercase;
        font-size: 12px;
        letter-spacing: 0.12em;
        font-weight: 700;
        color: var(--gold);
        margin-bottom: 0.7rem;
    }

    .articles-redesign .articles-hero h1,
    .articles-redesign .article-title-modern {
        font-family: 'Noto Serif', serif;
    }

    .articles-redesign .articles-hero h1 {
        font-size: clamp(2rem, 4vw, 3.3rem);
        margin-bottom: 0.8rem;
    }

    .articles-redesign .articles-hero p {
        max-width: 70ch;
        margin: 0 auto;
        color: var(--ink-muted);
    }

    .articles-redesign .articles-filter {
        padding: 1.25rem 0 1rem;
        background: var(--paper);
        border-bottom: 1px solid var(--line);
    }

    .articles-redesign .filter-wrap {
        display: flex;
        flex-wrap: wrap;
        gap: 0.55rem;
    }

    .articles-redesign .filter-wrap .btn {
        border-radius: 2px;
        border-color: #b9b5ac;
        color: var(--ink);
        text-transform: uppercase;
        letter-spacing: 0.08em;
        font-size: 11px;
        font-weight: 700;
        padding: 0.48rem 0.72rem;
    }

    .articles-redesign .filter-wrap .btn.active {
        background: var(--navy);
        border-color: var(--navy);
        color: #fff;
    }

    .articles-redesign .articles-grid-section {
        padding: clamp(1.4rem, 3vw, 2.6rem) 0 3.2rem;
    }

    .articles-redesign #articles-container {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.2rem;
    }

    .articles-redesign .article-item {
        display: block;
    }

    .articles-redesign .article-card-modern {
        border: 1px solid var(--line);
        background: #fff;
        height: 100%;
        transition: transform 0.25s ease, border-color 0.25s ease;
    }

    .articles-redesign .article-card-modern:hover {
        transform: translateY(-4px);
        border-color: #baa986;
    }

    .articles-redesign .article-image-modern {
        position: relative;
        overflow: hidden;
    }

    .articles-redesign .article-card-thumb-link {
        display: block;
        text-decoration: none;
        color: inherit;
    }

    .articles-redesign .article-card-thumb-link:focus-visible {
        outline: 2px solid var(--gold-soft);
        outline-offset: 2px;
    }

    .articles-redesign .article-title-modern .article-title-link,
    .articles-redesign .article-title-modern .article-title-link:link,
    .articles-redesign .article-title-modern .article-title-link:visited {
        display: block;
        color: var(--ink) !important;
        text-decoration: none !important;
        transition: color 0.2s ease;
    }

    .articles-redesign .article-title-modern .article-title-link .tr-text,
    .articles-redesign .article-title-modern .article-title-link .en-text {
        color: inherit !important;
        text-decoration: none !important;
    }

    .articles-redesign .article-title-modern .article-title-link:hover,
    .articles-redesign .article-title-modern .article-title-link:hover .tr-text,
    .articles-redesign .article-title-modern .article-title-link:hover .en-text {
        color: var(--gold) !important;
        text-decoration: none !important;
    }

    .articles-redesign .article-title-modern .article-title-link:focus-visible {
        outline: 2px solid var(--gold-soft);
        outline-offset: 2px;
        border-radius: 2px;
    }

    .articles-redesign .article-image-modern img {
        width: 100%;
        height: 230px;
        object-fit: cover;
        transition: transform 0.45s ease;
    }

    .articles-redesign .article-card-modern:hover .article-image-modern img {
        transform: scale(1.04);
    }

    .articles-redesign .article-category-modern {
        position: absolute;
        left: 0.75rem;
        bottom: 0.75rem;
        background: rgba(32, 32, 32, 0.9);
        color: #fff;
        border: 1px solid rgba(180, 180, 180, 0.45);
        text-transform: uppercase;
        letter-spacing: 0.08em;
        font-size: 10px;
        font-weight: 700;
        padding: 0.3rem 0.45rem;
    }

    .articles-redesign .article-content-modern {
        padding: 0.9rem;
    }

    .articles-redesign .article-meta-modern {
        color: var(--ink-muted);
        font-size: 0.82rem;
        margin-bottom: 0.45rem;
    }

    .articles-redesign .article-title-modern {
        font-size: 1.2rem;
        margin-bottom: 0.55rem;
        line-height: 1.35;
    }

    .articles-redesign .article-excerpt-modern {
        color: var(--ink-muted);
        margin-bottom: 0.8rem;
        font-size: 0.95rem;
    }

    .articles-redesign .article-link-modern {
        display: inline-flex;
        align-items: center;
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        font-size: 11px;
        font-weight: 700;
        color: var(--gold);
        border-bottom: 1px solid rgba(122, 88, 31, 0.55);
        padding-bottom: 0.2rem;
    }

    .articles-redesign .article-empty {
        border: 1px solid var(--line);
        background: #fff;
        padding: 1rem;
        color: var(--ink-muted);
        grid-column: 1 / -1;
    }

    @media (max-width: 992px) {
        .articles-redesign #articles-container {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
    }

    @media (max-width: 640px) {
        .articles-redesign .articles-container {
            width: calc(100% - 1.2rem);
        }
        .articles-redesign #articles-container {
            grid-template-columns: 1fr;
        }
        .articles-redesign .article-image-modern img {
            height: 210px;
        }
    }

/* === Makale detay === */
.article-redesign {
        --paper: #ffffff;
        --paper-soft: #f4f4f4;
        --ink: #111111;
        --ink-muted: #555555;
        --line: #e1e1e1;
        --navy: #3a3a3a;
        --gold: #6b6b6b;
        --container: 1080px;
        margin-top: var(--nav-height);
        background: var(--paper);
        color: var(--ink);
    }

    .article-redesign .article-container {
        width: min(var(--container), calc(100% - 2.5rem));
        margin: 0 auto;
    }

    .article-redesign .article-hero {
        padding: clamp(2.2rem, 5vw, 4.2rem) 0 clamp(1.2rem, 2.5vw, 1.8rem);
        border-bottom: 1px solid var(--line);
        background: linear-gradient(180deg, #f5f5f5 0%, #ffffff 100%);
    }

    .article-redesign .article-breadcrumb {
        margin-bottom: 0.95rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        font-size: 11px;
        color: var(--ink-muted);
    }

    .article-redesign .article-title-main {
        font-family: 'Noto Serif', serif;
        font-size: clamp(2rem, 4vw, 3.2rem);
        line-height: 1.2;
        margin-bottom: 0.9rem;
    }

    .article-redesign .article-meta {
        display: flex;
        flex-wrap: wrap;
        gap: 0.55rem;
        align-items: center;
    }

    .article-redesign .article-chip {
        border: 1px solid rgba(122, 88, 31, 0.55);
        color: var(--gold);
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        padding: 0.24rem 0.48rem;
    }

    .article-redesign .article-date {
        font-size: 0.9rem;
        color: var(--ink-muted);
    }

    .article-redesign .article-body-wrap {
        padding: clamp(1.4rem, 3vw, 2.8rem) 0 3rem;
    }

    .article-redesign .article-featured-image {
        width: 100%;
        max-height: 500px;
        object-fit: cover;
        border: 1px solid var(--line);
        margin-bottom: 1.2rem;
    }

    .article-redesign .article-subtitle {
        font-family: 'Noto Serif', serif;
        font-size: clamp(1.4rem, 2.5vw, 2rem);
        margin-bottom: 1rem;
    }

    .article-redesign .article-content-modern {
        border: 1px solid var(--line);
        background: #fff;
        padding: clamp(1rem, 2.3vw, 1.8rem);
        line-height: 1.85;
        color: #262728;
        font-size: 1.04rem;
    }

    .article-redesign .article-content-modern p:last-child {
        margin-bottom: 0;
    }

    .article-redesign .article-actions {
        margin-top: 1.2rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 0.7rem;
        flex-wrap: wrap;
    }

    .article-redesign .btn-article-back {
        display: inline-flex;
        align-items: center;
        text-decoration: none;
        border: 1px solid var(--gold);
        color: var(--gold);
        text-transform: uppercase;
        letter-spacing: 0.1em;
        font-size: 11px;
        font-weight: 700;
        padding: 0.58rem 0.78rem;
        transition: all 0.2s ease;
    }

    .article-redesign .btn-article-back:hover {
        background: var(--gold);
        color: #fff;
    }

    .article-redesign .article-share-note {
        color: var(--ink-muted);
        font-size: 0.9rem;
    }

    @media (max-width: 640px) {
        .article-redesign .article-container {
            width: calc(100% - 1.2rem);
        }
        .article-redesign .article-content-modern {
            font-size: 0.98rem;
            line-height: 1.75;
        }
    }

/* === Hakkimizda === */
.about-redesign {
        --paper: #ffffff;
        --paper-soft: #f4f4f4;
        --ink: #111111;
        --ink-muted: #555555;
        --line: #e1e1e1;
        --navy: #3a3a3a;
        --gold: #6b6b6b;
        --container: 1240px;
        margin-top: var(--nav-height);
        background: var(--paper);
        color: var(--ink);
    }

    .about-redesign .about-container {
        width: min(var(--container), calc(100% - 2.5rem));
        margin: 0 auto;
    }

    .about-redesign .about-hero {
        padding: clamp(3rem, 7vw, 5.2rem) 0 clamp(2.2rem, 4vw, 3.2rem);
        text-align: center;
        border-bottom: 0;
        background: var(--paper);
    }

    .about-redesign .about-kicker {
        text-transform: uppercase;
        letter-spacing: 0.22em;
        font-size: 0.68rem;
        font-weight: 600;
        color: #8a8a8a;
        margin: 0 0 0.85rem;
    }

    .about-redesign .about-eyebrow {
        text-transform: uppercase;
        letter-spacing: 0.12em;
        font-size: 12px;
        color: var(--gold);
        font-weight: 700;
        margin-bottom: 0.65rem;
    }

    .about-redesign .about-hero h1,
    .about-redesign .about-section h2,
    .about-redesign .value-card-modern h3,
    .about-redesign .team-name {
        font-family: 'Noto Serif', serif;
    }

    .about-redesign .about-hero h1 {
        font-family: 'Cormorant Garamond', 'Noto Serif', serif;
        font-size: clamp(2.2rem, 4.5vw, 3.4rem);
        font-weight: 600;
        margin: 0;
        line-height: 1.15;
    }

    .about-redesign .about-hero h1::after {
        content: "";
        display: block;
        width: 2.75rem;
        height: 1px;
        margin: 0.95rem auto 0;
        background: #1a1a1a;
    }

    .about-redesign .about-section {
        padding: 0 0 clamp(3.5rem, 8vw, 6rem);
    }

    .about-redesign .about-layout {
        display: grid;
        grid-template-columns: 8.5rem minmax(0, 42rem);
        justify-content: center;
        gap: clamp(1.5rem, 4vw, 3.5rem);
        align-items: start;
        margin-bottom: clamp(2.2rem, 5vw, 3.5rem);
    }

    .about-redesign .about-year {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding-top: 0.2rem;
    }

    .about-redesign .about-year-num {
        font-family: 'Cormorant Garamond', 'Noto Serif', serif;
        font-size: clamp(2.4rem, 4vw, 3.4rem);
        font-weight: 600;
        line-height: 0.95;
        letter-spacing: 0.04em;
        color: #111;
    }

    .about-redesign .about-year-label {
        margin-top: 0.55rem;
        font-size: 0.64rem;
        font-weight: 700;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: #8a8a8a;
    }

    .about-redesign .about-story {
        border-top: 1px solid var(--line);
    }

    .about-redesign .about-block {
        padding: 1.45rem 0 1.5rem;
        border-bottom: 1px solid var(--line);
    }

    .about-redesign .about-block h2 {
        font-family: 'Manrope', sans-serif;
        font-size: 0.68rem;
        font-weight: 700;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: #8a8a8a;
        margin: 0 0 0.7rem;
    }

    .about-redesign .about-block p {
        font-size: 1.05rem;
        line-height: 1.8;
        color: #2a2a2a;
        margin: 0;
        max-width: 58ch;
    }

    .about-redesign .about-facts {
        list-style: none;
        margin: 0 auto 2.4rem;
        padding: 0;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1px;
        background: var(--line);
        border: 1px solid var(--line);
        max-width: 52rem;
    }

    .about-redesign .about-facts li {
        background: #f7f6f5;
        text-align: center;
        padding: 1.25rem 1rem 1.3rem;
    }

    .about-redesign .about-facts strong {
        display: block;
        font-family: 'Cormorant Garamond', 'Noto Serif', serif;
        font-size: 1.45rem;
        font-weight: 600;
        margin-bottom: 0.25rem;
        color: #111;
    }

    .about-redesign .about-facts span {
        display: block;
        font-size: 0.78rem;
        letter-spacing: 0.04em;
        color: #6a6a6a;
    }

    .about-redesign .about-links {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .about-redesign .about-link {
        display: inline-flex;
        align-items: center;
        text-decoration: none;
        border: 1px solid #111;
        background: #111;
        color: #fff;
        text-transform: uppercase;
        letter-spacing: 0.14em;
        font-size: 0.68rem;
        font-weight: 700;
        padding: 0.72rem 1.15rem;
        transition: background 0.2s ease, color 0.2s ease;
    }

    .about-redesign .about-link:hover {
        background: #fff;
        color: #111;
    }

    .about-redesign .about-link--ghost {
        background: transparent;
        color: #111;
    }

    .about-redesign .about-link--ghost:hover {
        background: #111;
        color: #fff;
    }

    .about-redesign .about-bio {
        max-width: 72ch;
        margin-left: auto;
        margin-right: auto;
    }

    .about-redesign .about-bio p {
        font-size: 1.05rem;
        line-height: 1.85;
        color: var(--ink);
        margin: 0 0 1.15rem;
    }

    .about-redesign .about-bio p:last-child {
        margin-bottom: 0;
    }

    .about-redesign .about-grid {
        display: grid;
        grid-template-columns: 1.05fr 1fr;
        gap: 1.2rem;
        align-items: stretch;
    }

    .about-redesign .about-image-modern {
        width: 100%;
        height: 100%;
        min-height: 460px;
        object-fit: cover;
        border: 1px solid var(--line);
    }

    .about-redesign .about-content-modern {
        background: #fff;
        border: 1px solid var(--line);
        padding: clamp(1rem, 2.3vw, 1.8rem);
        line-height: 1.8;
        color: #2b2c2d;
    }

    .about-redesign .mission-vision-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }

    .about-redesign .mv-card {
        border: 1px solid var(--line);
        background: #fff;
        padding: 1rem;
    }

    .about-redesign .mv-icon {
        color: var(--gold);
        margin-bottom: 0.5rem;
        font-size: 1.1rem;
    }

    .about-redesign .mv-card h3 {
        font-size: 1.35rem;
        margin-bottom: 0.55rem;
    }

    .about-redesign .mv-card p, .about-redesign .mv-card div {
        color: var(--ink-muted);
        line-height: 1.75;
    }

    .about-redesign .values-grid {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1rem;
    }

    .about-redesign .value-card-modern {
        border: 1px solid var(--line);
        background: #fff;
        padding: 1rem;
    }

    .about-redesign .value-icon-modern {
        color: var(--gold);
        margin-bottom: 0.45rem;
    }

    .about-redesign .value-card-modern h3 {
        font-size: 1.15rem;
        margin-bottom: 0.35rem;
    }

    .about-redesign .value-card-modern p {
        color: var(--ink-muted);
        margin: 0;
        line-height: 1.7;
        font-size: 0.95rem;
    }

    .about-redesign .team-grid-modern {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }

    .about-redesign .team-card-modern {
        border: 1px solid var(--line);
        background: #fff;
        display: grid;
        grid-template-columns: 160px 1fr;
        gap: 0.9rem;
        padding: 0.9rem;
    }

    .about-redesign .team-card-modern img {
        width: 100%;
        height: 170px;
        object-fit: cover;
        border: 1px solid var(--line);
    }

    .about-redesign .team-name {
        margin-bottom: 0.3rem;
        font-size: 1.1rem;
    }

    .about-redesign .team-title-modern {
        color: var(--gold);
        font-weight: 700;
        text-transform: uppercase;
        font-size: 11px;
        letter-spacing: 0.08em;
        margin-bottom: 0.25rem;
    }

    .about-redesign .team-specialty-modern {
        color: var(--ink-muted);
        font-size: 0.92rem;
        margin-bottom: 0.45rem;
    }

    .about-redesign .team-bio-modern {
        color: #2d2e2f;
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .about-redesign .empty-team {
        border: 1px solid var(--line);
        background: #fff;
        padding: 1rem;
        color: var(--ink-muted);
        grid-column: 1 / -1;
    }

    @media (max-width: 992px) {
        .about-redesign .about-grid,
        .about-redesign .mission-vision-grid,
        .about-redesign .team-grid-modern {
            grid-template-columns: 1fr;
        }

        .about-redesign .about-layout {
            grid-template-columns: 1fr;
            max-width: 42rem;
            margin-left: auto;
            margin-right: auto;
            gap: 0.5rem;
        }

        .about-redesign .about-year {
            flex-direction: row;
            align-items: baseline;
            gap: 0.85rem;
            margin-bottom: 0.5rem;
        }

        .about-redesign .about-year-num {
            font-size: 2.2rem;
        }

        .about-redesign .values-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
    }

    @media (max-width: 640px) {
        .about-redesign .about-container {
            width: calc(100% - 1.2rem);
        }

        .about-redesign .about-facts {
            grid-template-columns: 1fr;
        }

        .about-redesign .about-block p {
            font-size: 1rem;
        }

        .about-redesign .about-image-modern {
            min-height: 280px;
        }

        .about-redesign .values-grid {
            grid-template-columns: 1fr;
        }

        .about-redesign .team-card-modern {
            grid-template-columns: 1fr;
        }
    }

/* === Sayfa geçişi — kısa yükleme katmanı (header’daki #page-loader) === */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--site-paper);
  opacity: 1;
  visibility: visible;
  transition: opacity 0.38s ease, visibility 0.38s ease;
}

body.page-loader-done .page-loader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader-spinner {
  display: block;
  width: 36px;
  height: 36px;
  border: 3px solid rgba(32, 32, 32, 0.12);
  border-top-color: var(--site-gold);
  border-radius: 50%;
  animation: page-loader-spin 0.7s linear infinite;
}

@keyframes page-loader-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-loader-spinner {
    animation: none;
    border-color: rgba(32, 32, 32, 0.2);
    border-top-color: var(--site-gold);
  }

  body.page-loader-done .page-loader {
    transition-duration: 0.06s;
  }
}

/* === Faaliyet alanları === */
.practice-page,
.practice-detail {
  --paper: #ffffff;
  --paper-soft: #f4f4f4;
  --ink: #111111;
  --ink-muted: #555555;
  --line: #e1e1e1;
  --navy: #3a3a3a;
  --gold: #6b6b6b;
  --gold-soft: #c4c4c4;
  --container: 1180px;
  margin-top: var(--nav-height);
  background: var(--paper);
  color: var(--ink);
}

.practice-wrap {
  width: min(var(--container), calc(100% - 2.4rem));
  margin: 0 auto;
}

.practice-kicker {
  margin: 0 0 0.85rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.practice-hero {
  padding: clamp(2.6rem, 6vw, 4.4rem) 0 2.4rem;
  background:
    linear-gradient(180deg, rgba(32, 32, 32, 0.03), transparent 70%),
    var(--paper);
  border-bottom: 1px solid var(--line);
}

.practice-hero-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
}

.practice-hero h1,
.pd-hero h1 {
  font-family: 'Cormorant Garamond', 'Noto Serif', serif;
  font-weight: 600;
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  line-height: 1.08;
  color: var(--navy);
  margin: 0 0 0.75rem;
  letter-spacing: 0.01em;
}

.practice-lead,
.pd-lead {
  margin: 0;
  max-width: 46ch;
  color: var(--ink-muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.practice-count {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1;
  color: var(--navy);
  flex-shrink: 0;
}

.practice-count span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 600;
}

.practice-count small {
  margin-top: 0.35rem;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.practice-list {
  padding: 2.4rem 0 4.5rem;
}

.practice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.practice-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 16.5rem;
  padding: 1.35rem 1.3rem 1.2rem;
  background: #fff;
  border: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.practice-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gold-soft);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.22s ease;
}

.practice-card:hover,
.practice-card:focus-visible {
  border-color: rgba(122, 88, 31, 0.45);
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(32, 32, 32, 0.08);
  color: inherit;
}

.practice-card:hover::before,
.practice-card:focus-visible::before {
  transform: scaleY(1);
}

.practice-page img,
.practice-detail img {
  max-width: 100%;
  height: auto;
}

.practice-card-photo {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  height: auto;
  margin: -1.35rem -1.3rem 1rem;
  overflow: hidden;
  background: var(--navy);
}

.practice-card-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}

.practice-card:hover .practice-card-photo img {
  transform: scale(1.04);
}

.practice-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
}

.practice-card-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  color: var(--gold);
}

.practice-card-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(122, 88, 31, 0.28);
  color: var(--gold);
  font-size: 0.78rem;
}

.practice-card h2 {
  font-family: 'Cormorant Garamond', 'Noto Serif', serif;
  font-size: 1.42rem;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 0.55rem;
  color: var(--navy);
}

.practice-card p {
  margin: 0 0 1.1rem;
  color: var(--ink-muted);
  font-size: 0.9rem;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.practice-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: auto;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.practice-card-cta svg {
  transition: transform 0.2s ease;
}

.practice-card:hover .practice-card-cta svg {
  transform: translateX(4px);
}

.pd-hero {
  padding: clamp(2.4rem, 5vw, 3.6rem) 0 2.2rem;
  background: var(--navy);
  color: #f2f2f2;
}

.pd-hero h1 {
  color: #fff;
  font-size: clamp(1.85rem, 3.6vw, 2.75rem);
  margin-bottom: 0;
  max-width: 18ch;
}

.pd-crumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  margin-bottom: 0.85rem;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.62);
}

.pd-crumb a {
  color: var(--gold-soft);
  text-decoration: none;
}

.pd-hero .practice-kicker {
  color: var(--gold-soft);
}

.pd-lead {
  color: rgba(244, 239, 230, 0.82);
  max-width: 54ch;
  font-size: 0.98rem;
}

.pd-body {
  padding: 2rem 0 4.2rem;
}

.pd-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 270px;
  gap: 2.4rem;
  align-items: start;
}

.pd-figure {
  position: relative;
  margin: 0 0 1.7rem;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #111827;
  border: 1px solid var(--line);
}

.pd-figure img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  display: block;
}

.pd-intro {
  margin: 0 0 1.25rem;
  max-width: 62ch;
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--ink-muted);
}

.pd-copy {
  max-width: 66ch;
}

.pd-copy p {
  margin: 0 0 1rem;
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--ink);
}

.pd-copy h2 {
  margin: 1.5rem 0 0.75rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--navy);
}

.pd-points {
  list-style: none;
  margin: 0 0 1.2rem;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.45rem;
}

.pd-points li {
  position: relative;
  padding: 0.7rem 0.9rem 0.7rem 1.55rem;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--ink);
}

.pd-points li::before {
  content: '';
  position: absolute;
  left: 0.7rem;
  top: 1.05rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.pd-pager {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-top: 2.2rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
}

.pd-pager-link {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.95rem 1rem;
  border: 1px solid var(--line);
  background: #fff;
  text-decoration: none;
  color: var(--navy);
  min-height: 5.2rem;
}

.pd-pager-link:hover {
  border-color: rgba(122, 88, 31, 0.45);
}

.pd-pager-link small {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.pd-pager-link strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.12rem;
  font-weight: 600;
  line-height: 1.25;
}

.pd-pager-link--next {
  text-align: right;
}

.pd-aside {
  position: sticky;
  top: calc(var(--nav-height) + 1rem);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.pd-aside-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 0.9rem 0.6rem 0.55rem;
  max-height: min(32rem, calc(100vh - var(--nav-height) - 9rem));
  overflow: auto;
}

.pd-aside-card h2 {
  margin: 0 0.35rem 0.7rem;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.pd-toc {
  display: flex;
  flex-direction: column;
}

.pd-toc a {
  display: grid;
  grid-template-columns: 1.5rem 1fr;
  gap: 0.35rem;
  padding: 0.38rem 0.45rem;
  text-decoration: none;
  color: var(--navy);
  border-left: 2px solid transparent;
  font-size: 0.8rem;
  line-height: 1.3;
}

.pd-toc a span:first-child {
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold);
  font-size: 0.86rem;
}

.pd-toc-title {
  min-width: 0;
}

.pd-toc a em {
  font-style: normal;
}

.pd-toc a:hover {
  background: rgba(180, 180, 180, 0.12);
}

.pd-toc a.is-active {
  background: rgba(32, 32, 32, 0.04);
  border-left-color: var(--gold);
  font-weight: 600;
}

.pd-cta {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1.15rem 1.15rem 1.2rem;
  background: var(--navy);
  color: #f2f2f2;
  text-decoration: none;
}

.pd-cta strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.25;
}

.pd-cta span {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.pd-cta:hover {
  color: #fff;
}

@media (max-width: 992px) {
  .practice-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pd-layout,
  .pd-pager,
  .pd-points {
    grid-template-columns: 1fr;
  }

  .pd-aside {
    position: static;
  }

  .pd-pager-link--next {
    text-align: left;
  }
}

@media (max-width: 680px) {
  .practice-wrap {
    width: calc(100% - 1.2rem);
  }

  .practice-hero-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .practice-count {
    align-items: flex-start;
  }

  .practice-grid {
    grid-template-columns: 1fr;
  }
}

.navbar.is-scrolled {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.js-flow,
.js-rise {
  --flow-delay: 0ms;
}

@media (prefers-reduced-motion: no-preference) {
  .js-flow {
    overflow: hidden;
  }

  .js-flow:not(.is-in) {
    opacity: 0;
    transform: translate3d(0, 1.15em, 0);
    filter: blur(4px);
  }

  .js-flow.is-in {
    opacity: 1;
    transform: none;
    filter: none;
    transition:
      opacity 0.95s cubic-bezier(0.16, 1, 0.3, 1) var(--flow-delay),
      transform 0.95s cubic-bezier(0.16, 1, 0.3, 1) var(--flow-delay),
      filter 0.85s ease var(--flow-delay);
  }

  .js-rise:not(.is-in) {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
  }

  .js-rise.is-in {
    opacity: 1;
    transform: none;
    transition:
      opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1) var(--flow-delay),
      transform 0.8s cubic-bezier(0.22, 1, 0.36, 1) var(--flow-delay);
  }
}

