/* theme.css - site tasarimlari (header.php uzerinden yuklenir) */

/* === Tek :root: tum renk + yardimci degiskenler (style.css ile cakisma yok) === */
:root {
  --site-paper: #faf9f8;
  --site-paper-soft: #f4f3f2;
  --site-ink: #1a1c1c;
  --site-ink-muted: #4c4d54;
  --site-line: #d8d4cb;
  --site-navy: #131b2e;
  --site-navy-mid: #1f2a40;
  --site-gold: #7a581f;
  --site-gold-soft: #fed08b;
  --site-success: #2d6a4f;
  --site-warning: #b08900;
  --site-danger: #9b2335;
  --shadow: 0 2px 10px rgba(19, 27, 46, 0.08);
  --transition: all 0.3s ease;
  --bs-primary: var(--site-navy);
  --bs-primary-rgb: 19, 27, 46;
  --bs-link-color: var(--site-gold);
  --bs-link-hover-color: #5c4218;
  --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(19, 27, 46, 0.97) !important;
        border-bottom: 1px solid rgba(254, 208, 139, 0.28);
        backdrop-filter: blur(8px);
        min-height: 76px;
      }

      .navbar .container {
        width: min(1240px, calc(100% - 1.5rem));
      }

      .navbar-brand {
        display: inline-flex;
        align-items: center;
        gap: 0.55rem;
        margin-right: 1.25rem;
      }

      .brand-wordmark {
        font-family: 'Noto Serif', serif;
        font-weight: 600;
        letter-spacing: 0.02em;
        color: #ffffff;
        font-size: 1.15rem;
      }

      .navbar-nav {
        gap: 0.35rem;
      }

      .nav-link {
        color: rgba(255, 255, 255, 0.84) !important;
        font-weight: 600;
        letter-spacing: 0.02em;
        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(254, 208, 139, 0.62);
        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(254, 208, 139, 0.22);
      }

      @media (max-width: 991px) {
        .navbar.navbar-expand-lg > .container {
          align-items: center;
        }

        .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 .navbar-brand img {
          height: 42px !important;
          max-width: min(11rem, 46vw) !important;
        }

        .navbar.navbar-expand-lg .navbar-brand .brand-wordmark {
          font-size: clamp(0.72rem, 2.8vw, 0.95rem);
        }

        .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(254, 208, 139, 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 {
          width: 1.28rem;
          height: 1.28rem;
          background-size: 1.28rem 1.28rem;
        }

        .navbar-collapse {
          margin-top: 0.8rem;
          padding: 0.8rem;
          background: rgba(13, 19, 34, 0.96);
          border: 1px solid rgba(254, 208, 139, 0.25);
        }

        .nav-link {
          padding: 0.6rem 0.45rem !important;
        }

        .nav-link.active::after {
          left: 0.45rem;
          right: 0.45rem;
        }
      }

/* === Footer === */
.footer {
        background: linear-gradient(145deg, #0f1728 0%, #111d31 60%, #13223a 100%) !important;
        color: #f2f2f2;
        border-top: 1px solid rgba(254, 208, 139, 0.22);
        font-size: 0.98rem;
      }

      .footer .footer-shell {
        width: min(1240px, calc(100% - 1.5rem));
      }

      .footer-brand {
        font-family: 'Noto Serif', serif;
        font-size: 1.35rem;
        font-weight: 600;
        color: #fff;
      }

      .footer-brand i {
        color: #fed08b;
      }

      .footer-text {
        color: rgba(255, 255, 255, 0.82);
        max-width: 44ch;
        line-height: 1.7;
      }

      .footer-title {
        color: #fed08b;
        font-size: 0.8rem;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        margin-bottom: 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: #fed08b;
      }

      .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: #fed08b;
        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(254, 208, 139, 0.45);
        color: #fed08b;
        border-radius: 50%;
        text-decoration: none;
        transition: all 0.2s ease;
      }

      .social-link:hover {
        color: #0f1728;
        background: #fed08b;
        border-color: #fed08b;
      }

      .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 {
          font-size: 1.2rem;
        }
      }

/* === Ana sayfa === */
.home-redesign {
    --paper: #faf9f8;
    --paper-soft: #f4f3f2;
    --ink: #1a1c1c;
    --ink-muted: #4c4d54;
    --line: #d8d4cb;
    --navy: #131b2e;
    --gold: #7a581f;
    --gold-soft: #fed08b;
    --container: 1240px;
    margin-top: 76px;
    background: var(--paper);
    color: var(--ink);
    font-family: 'Manrope', sans-serif;
  }

  .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: clamp(400px, 62vh, 640px);
    overflow: hidden;
    background: var(--navy);
    border-bottom: 1px solid rgba(254, 208, 139, 0.22);
  }

  .home-redesign .hero-slide {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.65s ease;
    pointer-events: none;
  }

  .home-redesign .hero-slide.active {
    z-index: 1;
    opacity: 1;
    pointer-events: auto;
  }

  /* Görsel mutlak konumda olmali; aksi halde akista tum yuksekligi kaplar,
     .hero-content asagi itilir ve overflow:hidden ile metin/buton kaybolur */
  .home-redesign .hero-slide img {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(0.92) contrast(1.02);
    transform: scale(1.04);
    transition: transform 0.8s ease, filter 0.5s 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(19, 27, 46, 0.5) 0%, transparent 40%),
      linear-gradient(0deg, rgba(19, 27, 46, 0.82) 0%, rgba(19, 27, 46, 0.38) 42%, rgba(19, 27, 46, 0.15) 100%),
      linear-gradient(100deg, rgba(19, 27, 46, 0.68) 0%, transparent 52%);
    pointer-events: none;
  }

  /* Slayt metni: tam genişlik + sol alt (container-modern dar kolonunu ezer) */
  .home-redesign .hero-content.container-modern {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }

  .home-redesign .hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: clamp(400px, 62vh, 640px);
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    box-sizing: border-box;
    padding: clamp(0.75rem, 2vw, 1.25rem)
      max(0.75rem, env(safe-area-inset-right, 0px))
      clamp(6.25rem, 14vh, 8.5rem)
      max(0.85rem, env(safe-area-inset-left, 0px));
  }

  .home-redesign .hero-panel {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: min(26rem, calc(100vw - 2rem));
    padding: clamp(0.5rem, 1.2vw, 0.75rem) 0;
    background: none;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .home-redesign .hero-title {
    color: #fff;
    font-size: clamp(1.15rem, 2.4vw, 1.85rem);
    line-height: 1.2;
    margin-bottom: 0.55rem;
    text-wrap: balance;
    text-shadow:
      0 0 1px rgba(0, 0, 0, 0.95),
      0 1px 3px rgba(0, 0, 0, 0.85),
      0 4px 24px rgba(0, 0, 0, 0.65);
  }

  .home-redesign .hero-desc {
    color: rgba(248, 248, 252, 0.96);
    max-width: 38ch;
    font-size: clamp(0.82rem, 1.05vw, 0.95rem);
    line-height: 1.5;
    margin-bottom: 0.85rem;
    text-shadow:
      0 0 1px rgba(0, 0, 0, 0.9),
      0 1px 18px rgba(0, 0, 0, 0.72);
  }

  .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: #674811;
    border-color: #674811;
  }

  .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-nav {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border: 1px solid rgba(254, 208, 139, 0.55);
    background: rgba(13, 19, 34, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    border-radius: 50%;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
  }

  .home-redesign .hero-nav:hover {
    background: rgba(254, 208, 139, 0.16);
    border-color: rgba(254, 208, 139, 0.95);
  }

  .home-redesign .hero-nav:focus-visible {
    outline: 2px solid var(--gold-soft);
    outline-offset: 3px;
  }

  .home-redesign .hero-nav:active {
    transform: scale(0.96);
  }

  .home-redesign .hero-nav-svg {
    display: block;
    opacity: 0.95;
  }

  .home-redesign .hero-controls {
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    bottom: 0;
    padding-bottom: max(0.5rem, env(safe-area-inset-bottom, 0px));
    background: transparent;
    pointer-events: none;
  }

  .home-redesign .hero-controls .hero-progress,
  .home-redesign .hero-controls .hero-controls-row {
    pointer-events: auto;
  }

  .home-redesign .hero-progress {
    height: 3px;
    width: 100%;
    background: rgba(255, 255, 255, 0.12);
    overflow: hidden;
  }

  .home-redesign .hero-progress-bar {
    display: block;
    height: 100%;
    width: 100%;
    transform-origin: left center;
    transform: scaleX(0);
    background: linear-gradient(90deg, #c9a227, var(--gold-soft));
    will-change: transform;
  }

  .home-redesign .hero-controls-row {
    width: min(1240px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 0.65rem 0.75rem 0.45rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    background: rgba(13, 19, 34, 0.92);
    border-top: 1px solid rgba(254, 208, 139, 0.18);
    border-radius: 12px 12px 0 0;
    box-sizing: border-box;
  }

  @supports ((-webkit-backdrop-filter: blur(8px)) or (backdrop-filter: blur(8px))) {
    .home-redesign .hero-controls-row {
      background: rgba(13, 19, 34, 0.82);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
    }
  }

  .home-redesign .hero-controls-center {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.45rem;
  }

  .home-redesign .hero-dots {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.45rem;
  }

  .home-redesign .hero-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.22);
    transition: width 0.25s ease, border-radius 0.25s ease, background 0.2s ease, transform 0.2s ease;
    padding: 0;
    cursor: pointer;
  }

  .home-redesign .hero-dot:hover {
    background: rgba(255, 255, 255, 0.38);
    transform: scale(1.08);
  }

  .home-redesign .hero-dot:focus-visible {
    outline: 2px solid var(--gold-soft);
    outline-offset: 3px;
  }

  .home-redesign .hero-dot.active {
    width: 28px;
    border-radius: 999px;
    background: var(--gold-soft);
    border-color: rgba(254, 208, 139, 0.95);
  }

  .home-redesign .hero-count {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-variant-numeric: tabular-nums;
  }

  @keyframes hero-progress-fill {
    from {
      transform: scaleX(0);
    }
    to {
      transform: scaleX(1);
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .home-redesign .hero-slide {
      transition: none;
    }

    .home-redesign .hero-slide img {
      transform: none !important;
      transition: none !important;
    }

    .home-redesign .hero-progress-bar {
      animation: none !important;
    }
  }

  .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(19, 27, 46, 0.04);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  }

  .home-redesign .practice-card-modern:hover {
    border-color: rgba(122, 88, 31, 0.35);
    box-shadow: 0 6px 20px rgba(19, 27, 46, 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(254, 208, 139, 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-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
  }

  .home-redesign .team-card-modern {
    border: 1px solid var(--line);
    background: #fff;
  }

  .home-redesign .team-card-modern img {
    width: 100%;
    height: 330px;
    object-fit: cover;
  }

  .home-redesign .team-body-modern {
    padding: 1rem;
  }

  .home-redesign .team-body-modern h3 {
    font-size: 1.1rem;
    margin-bottom: 0.35rem;
  }

  .home-redesign .team-title {
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 0.25rem;
  }

  .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(254, 208, 139, 0.25);
    border-bottom: 1px solid rgba(254, 208, 139, 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,
    .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(24rem, calc(100% - 1.5rem));
      padding: 0.95rem 1rem;
    }
  }

  @media (max-width: 640px) {
    .home-redesign .container-modern {
      width: calc(100% - 1.2rem);
    }

    .home-redesign .hero-content.container-modern {
      width: 100%;
      max-width: none;
    }

    .home-redesign .hero-slider,
    .home-redesign .hero-content {
      height: clamp(420px, 62svh, 580px);
    }

    .home-redesign .hero-content {
      align-items: flex-end;
      justify-content: flex-start;
      padding: 0.65rem
        max(0.5rem, env(safe-area-inset-right, 0px))
        clamp(7.5rem, 20vh, 9.5rem)
        max(0.65rem, env(safe-area-inset-left, 0px));
    }

    .home-redesign .hero-panel {
      padding: 0.45rem 0;
      max-width: min(22rem, calc(100vw - 1.3rem));
      background: none;
      border: none;
    }

    .home-redesign .hero-title {
      font-size: clamp(1.05rem, 4.5vw, 1.35rem);
      margin-bottom: 0.45rem;
    }

    .home-redesign .hero-desc {
      font-size: 0.82rem;
      margin-bottom: 0.65rem;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .home-redesign .hero-panel .btn-gold {
      font-size: 10px;
      padding: 0.65rem 0.95rem;
    }

    .home-redesign .hero-nav {
      width: 46px;
      height: 46px;
    }

    .home-redesign .hero-nav-svg {
      width: 20px;
      height: 20px;
    }

    .home-redesign .hero-controls-row {
      width: calc(100% - 1.1rem);
      padding: 0.55rem 0 0.25rem;
      gap: 0.5rem;
    }

    .home-redesign .hero-controls-center {
      gap: 0.35rem;
    }

    .home-redesign .hero-dot {
      width: 8px;
      height: 8px;
    }

    .home-redesign .hero-dot.active {
      width: 24px;
    }

    .home-redesign .hero-count {
      font-size: 0.6rem;
      letter-spacing: 0.12em;
    }

    .home-redesign .section-head {
      flex-direction: column;
      align-items: flex-start;
      margin-bottom: 1.3rem;
    }

    .home-redesign .practice-grid,
    .home-redesign .team-grid-modern,
    .home-redesign .articles-grid-modern {
      grid-template-columns: 1fr;
    }

    .home-redesign .about-photo img {
      min-height: 320px;
    }
  }

/* === Iletisim === */
.contact-redesign {
    --paper: #faf9f8;
    --paper-soft: #f4f3f2;
    --ink: #1a1c1c;
    --ink-muted: #4c4d54;
    --line: #d8d4cb;
    --navy: #131b2e;
    --gold: #7a581f;
    --gold-soft: #fed08b;
    --container: 1240px;
    margin-top: 76px;
    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, #f7f6f4 0%, #faf9f8 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-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: #faf9f8;
        --paper-soft: #f4f3f2;
        --ink: #1a1c1c;
        --ink-muted: #4c4d54;
        --line: #d8d4cb;
        --navy: #131b2e;
        --gold: #7a581f;
        --gold-soft: #fed08b;
        --container: 1240px;
        margin-top: 76px;
        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, #f7f6f4 0%, #faf9f8 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(19, 27, 46, 0.9);
        color: #fff;
        border: 1px solid rgba(254, 208, 139, 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: #faf9f8;
        --paper-soft: #f4f3f2;
        --ink: #1a1c1c;
        --ink-muted: #4c4d54;
        --line: #d8d4cb;
        --navy: #131b2e;
        --gold: #7a581f;
        --container: 1080px;
        margin-top: 76px;
        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, #f7f6f4 0%, #faf9f8 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: #faf9f8;
        --paper-soft: #f4f3f2;
        --ink: #1a1c1c;
        --ink-muted: #4c4d54;
        --line: #d8d4cb;
        --navy: #131b2e;
        --gold: #7a581f;
        --container: 1240px;
        margin-top: 76px;
        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(2.6rem, 5.6vw, 4.7rem) 0;
        text-align: center;
        border-bottom: 1px solid var(--line);
        background: linear-gradient(180deg, #f7f6f4 0%, #faf9f8 100%);
    }

    .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-size: clamp(2rem, 4vw, 3.3rem);
        margin-bottom: 0.8rem;
    }

    .about-redesign .about-hero p {
        max-width: 70ch;
        margin: 0 auto;
        color: var(--ink-muted);
    }

    .about-redesign .about-section {
        padding: clamp(2.1rem, 4.5vw, 4rem) 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 .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-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(19, 27, 46, 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(19, 27, 46, 0.2);
    border-top-color: var(--site-gold);
  }

  body.page-loader-done .page-loader {
    transition-duration: 0.06s;
  }
}
