    :root {
      --navy:   #0b1929;
      --slate:  linear-gradient(135deg,
            rgba(180, 185, 195, 0.35) 0%,
            rgba(165, 170, 180, 0.28) 50%,
            rgba(175, 180, 192, 0.32) 100%);
      --steel:  #2a4d74;
      --sky:    #4a86c1;
      --silver: #8fa9c4;
      --cloud:  #dae6f2;
      --fog:    #f2f6fa;
      --white:  #ffffff;
      --gold:   #18243a;
      --gold2:  #4a86c1;
      --text:   #18243a;
      --muted:  #566070;
      --radius: 3px;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'DM Sans', sans-serif;
      color: var(--text);
      background: var(--white);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }
    img { max-width: 100%; display: block; }
    a { transition: color .2s; }
    h1,h2,h3,h4,h5,h6 { font-family: 'Cormorant Garamond', serif; }

    .topbar {
      background: var(--navy);
      color: var(--silver);
      font-size: .76rem;
      letter-spacing: .04em;
      padding: 8px 0;
      border-bottom: 1px solid rgba(255,255,255,.04);
    }
    .topbar a { color: var(--silver); text-decoration: none; }
    .topbar a:hover { color: var(--gold2); }
    .topbar .sep { opacity: .25; margin: 0 4px; }

    .navbar {
      background: var(--slate);
      padding: 0;
      border-bottom: 1px solid var(--cloud);
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 2px 24px rgba(11,25,41,.07);
    }
    .navbar-brand {
      display: flex;
      flex-direction: column;
      line-height: 1;
      padding: 16px 0;
      text-decoration: none;
    }
    .nav-link {
      font-size: .78rem;
      font-weight: 500;
      letter-spacing: .07em;
      text-transform: uppercase;
      color: #222;
      padding: 1.5rem .9rem !important;
      position: relative;
    }

    .dropdown-menu {
      border: none;
      border-top: 2px solid var(--sky);
      border-radius: 0 0 var(--radius) var(--radius);
      box-shadow: 0 16px 48px rgba(11,25,41,.13);
      padding: .6rem 0;
      min-width: 210px;
      animation: dropIn .18s ease;
    }
    @keyframes dropIn {
      from { opacity: 0; transform: translateY(-6px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .dropdown-item {
      font-size: .8rem;
      letter-spacing: .04em;
      padding: .6rem 1.4rem;
      color: #222;
      display: flex;
      align-items: center;
      gap: 9px;
      transition: background .15s, padding-left .2s;
    }
    .dropdown-item .di-icon {
      width: 18px;
      height: 18px;
      background: rgba(180,137,95,.12);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .dropdown-item .di-icon i { color: var(--gold); font-size: .6rem; }
    .dropdown-item:hover { background: var(--fog); padding-left: 1.8rem; color: var(--navy); }

    /* SLIDER */
    .hero-wrap { position: relative; }
    #heroCarousel .carousel-item {
      height: 70vh;
      min-height: 480px;
      background-size: cover;
      background-position: center;
      position: relative;
    }
    #heroCarousel .carousel-item::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
        105deg,
        rgba(11,25,41,.85) 0%,
        rgba(11,25,41,.50) 55%,
        rgba(11,25,41,.10) 100%
      );
    }
    /* Subtle bottom vignette */
    #heroCarousel .carousel-item::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 180px;
      background: linear-gradient(to top, rgba(11,25,41,.55), transparent);
    }

    .slide-1 { background-image: url('../images/slide1.jpg'); }
    .slide-2 { background-image: url('../images/slide2.jpg'); }
    .slide-3 { background-image: url('../images/slide3.jpg'); }

    .hero-caption {
      position: absolute;
      top: 50%;
      left: 9%;
      transform: translateY(-55%);
      max-width: 620px;
      color: var(--white);
      z-index: 2;
    }
    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: .68rem;
      font-weight: 600;
      letter-spacing: .28em;
      text-transform: uppercase;
      color: var(--gold2);
      margin-bottom: 18px;
    }
    .hero-eyebrow::before {
      content: '';
      width: 28px;
      height: 1px;
      background: var(--gold2);
      flex-shrink: 0;
    }
    .hero-caption h1 {
      font-size: clamp(2.6rem, 5.2vw, 4.2rem);
      font-weight: 300;
      line-height: 1.12;
      margin-bottom: 20px;
      text-shadow: 0 2px 20px rgba(0,0,0,.3);
    }
    .hero-caption h1 strong { font-weight: 700; }
    .hero-caption h1 em {
      font-style: italic;
      color: var(--gold2);
    }
    .hero-caption p {
      font-size: .96rem;
      line-height: 1.75;
      color: rgba(255,255,255,.78);
      margin-bottom: 32px;
      max-width: 520px;
    }
    .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

    /* Carousel controls */
    .carousel-indicators {
      bottom: 28px;
      gap: 6px;
      margin: 0 0 0 9%;
      justify-content: flex-start;
    }
    .carousel-indicators [data-bs-target] {
      width: 28px; height: 2px;
      background: rgba(255,255,255,.35);
      border: none; border-radius: 2px;
      transition: width .3s, background .3s;
    }
    .carousel-indicators .active { width: 52px; background: var(--gold2); }
    .carousel-control-prev,
    .carousel-control-next {
      width: 48px; height: 48px;
      top: 50%; transform: translateY(-50%);
      border: 1px solid rgba(255,255,255,.25);
      border-radius: 50%;
      background: rgba(11,25,41,.35);
      backdrop-filter: blur(4px);
      opacity: .8;
      transition: opacity .2s, background .2s;
    }
    .carousel-control-prev { left: 2rem; }
    .carousel-control-next { right: 2rem; }
    .carousel-control-prev:hover,
    .carousel-control-next:hover { opacity: 1; background: rgba(180,137,95,.5); }
    .carousel-control-prev-icon,
    .carousel-control-next-icon { width: 16px; height: 16px; }

    /* Slide-in animation */
    .carousel-item.active .hero-eyebrow { animation: fadeUp .6s .1s both; }
    .carousel-item.active h1            { animation: fadeUp .6s .25s both; }
    .carousel-item.active p             { animation: fadeUp .6s .38s both; }
    .carousel-item.active .hero-actions { animation: fadeUp .6s .5s both; }
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(22px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* ════════════════════════════════════════
       BUTTONS
    ════════════════════════════════════════ */
    .btn-gold {
      display: inline-flex; align-items: center; gap: 9px;
      background: var(--gold);
      color: var(--white);
      font-size: .76rem; font-weight: 600;
      letter-spacing: .1em; text-transform: uppercase;
      padding: .82rem 1.9rem;
      border: none; border-radius: var(--radius);
      text-decoration: none;
      transition: background .22s, transform .22s, box-shadow .22s;
    }
    .btn-gold:hover {
      background: #9d7449;
      color: var(--white);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(180,137,95,.35);
    }
    .btn-ghost-white {
      display: inline-flex; align-items: center; gap: 9px;
      background: transparent;
      color: rgba(255,255,255,.88);
      font-size: .76rem; font-weight: 600;
      letter-spacing: .1em; text-transform: uppercase;
      padding: .80rem 1.8rem;
      border: 1.5px solid rgba(255,255,255,.45);
      border-radius: var(--radius);
      text-decoration: none;
      transition: all .22s;
    }
    .btn-ghost-white:hover {
      border-color: var(--gold2);
      color: var(--gold2);
    }
    .btn-outline-gold {
      display: inline-flex; align-items: center; gap: 9px;
      background: transparent;
      color: var(--gold);
      font-size: .76rem; font-weight: 600;
      letter-spacing: .1em; text-transform: uppercase;
      padding: .78rem 1.8rem;
      border: 1.5px solid var(--gold);
      border-radius: var(--radius);
      text-decoration: none;
      transition: all .22s;
    }
    .btn-outline-gold:hover { background: var(--gold); color: var(--white); }
    .btn-outline-navy {
      display: inline-flex; align-items: center; gap: 9px;
      background: transparent;
      color: var(--navy);
      font-size: .76rem; font-weight: 600;
      letter-spacing: .1em; text-transform: uppercase;
      padding: .78rem 1.8rem;
      border: 1.5px solid var(--navy);
      border-radius: var(--radius);
      text-decoration: none;
      transition: all .22s;
    }
    .btn-outline-navy:hover { background: var(--navy); color: var(--white); }

    /* ════════════════════════════════════════
       STATS BAR
    ════════════════════════════════════════ */
    .stats-bar {
      background: var(--navy);
      padding: 32px 0;
      position: relative;
      z-index: 1;
    }
    .stats-bar::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
    }
    .stat-item { text-align: center; padding: 6px 0; }
    .stat-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.6rem;
      font-weight: 700;
      color: var(--gold2);
      line-height: 1;
    }
    .stat-label {
      font-size: .68rem;
      font-weight: 500;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: var(--silver);
      margin-top: 5px;
    }
    .stat-sep {
      width: 1px;
      height: 48px;
      background: rgba(255,255,255,.1);
      margin: auto;
    }

    /* ════════════════════════════════════════
       SECTION HELPERS
    ════════════════════════════════════════ */
    .sec-eyebrow {
      font-size: .68rem;
      font-weight: 600;
      letter-spacing: .26em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 10px;
    }
    .sec-title {
      font-size: clamp(1.9rem, 3vw, 2.7rem);
      font-weight: 300;
      color: var(--navy);
      line-height: 1.2;
    }
    .sec-title strong { font-weight: 700; }
    .sec-line {
      width: 44px; height: 2px;
      background: var(--gold);
      margin: 16px 0 22px;
    }
    .sec-line.mx-auto { margin-left: auto; margin-right: auto; }
    .txt-muted { color: var(--muted); line-height: 1.82; font-size: .91rem; }

    /* ════════════════════════════════════════
       ABOUT
    ════════════════════════════════════════ */
    .about-section { padding: 96px 0; }
    .about-img-outer { position: relative; }
    .about-img-outer img {
      width: 100%; height: 460px;
      object-fit: cover;
      border-radius: var(--radius);
      box-shadow: 0 24px 64px rgba(11,25,41,.14);
    }
    .about-badge {
      position: absolute;
      bottom: -28px; right: -20px;
      background: var(--gold);
      color: var(--white);
      padding: 22px 28px;
      text-align: center;
      border-radius: var(--radius);
      box-shadow: 0 12px 36px rgba(180,137,95,.35);
    }
    .about-badge .big {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.5rem; font-weight: 700; line-height: 1;
    }
    .about-badge .sm {
      font-size: .65rem; letter-spacing: .14em;
      text-transform: uppercase; margin-top: 3px;
    }
    .value-grid { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 8px; }
    .value-chip {
      display: inline-flex; align-items: center; gap: 7px;
      background: var(--fog);
      border-left: 2.5px solid var(--gold);
      padding: 9px 14px;
      width: 157px;
      font-size: .8rem; font-weight: 500;
      color: var(--navy);
      border-radius: 0 var(--radius) var(--radius) 0;
      transition: background .2s;
    }
    .value-chip:hover { background: var(--cloud); }
    .value-chip i { color: var(--gold); font-size: .75rem; }

    /* ════════════════════════════════════════
       PRODUCTS
    ════════════════════════════════════════ */
    .products-section { padding: 96px 0; background: var(--fog); }
    .products-section .container { position: relative; }

    .product-card {
      background: var(--white);
      border-radius: var(--radius);
      overflow: hidden;
      height: 100%;
      transition: transform .32s ease, box-shadow .32s ease;
      position: relative;
    }
    .product-card::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 3px;
      background: var(--gold);
      transform: scaleX(0);
      transition: transform .3s ease;
    }
    .product-card:hover { transform: translateY(-7px); box-shadow: 0 24px 56px rgba(11,25,41,.13); }
    .product-card:hover::after { transform: scaleX(1); }

    .product-card .thumb {
      width: 100%; height: 210px;
      object-fit: cover;
      transition: transform .55s ease;
    }
    .product-card:hover .thumb { transform: scale(1.05); }

    .product-card-body { padding: 22px 20px 26px; }
    .product-card-body h3 {
      font-size: 1.2rem; font-weight: 600;
      color: var(--navy); margin-bottom: 8px;
    }
    .product-card-body p {
      font-size: .82rem; color: var(--muted);
      line-height: 1.65; margin-bottom: 16px;
    }
    .prod-link {
      font-size: .74rem; font-weight: 600;
      letter-spacing: .1em; text-transform: uppercase;
      color: var(--gold); text-decoration: none;
      display: inline-flex; align-items: center; gap: 5px;
      transition: gap .2s, color .2s;
    }
    .prod-link:hover { gap: 9px; color: var(--navy); }

    .prod-tag {
      position: absolute; top: 12px; left: 12px;
      background: var(--gold); color: var(--white);
      font-size: .6rem; font-weight: 700;
      letter-spacing: .12em; text-transform: uppercase;
      padding: 4px 10px; border-radius: 2px;
    }

    /* ════════════════════════════════════════
       OCAK SECTION
    ════════════════════════════════════════ */
    .ocak-section {
      padding: 96px 0;
      background: var(--navy);
      position: relative;
      overflow: hidden;
    }
    /* Decorative marble vein lines */
    .ocak-section::before {
      content: '';
      position: absolute;
      top: -100px; right: -60px;
      width: 500px; height: 500px;
      background: radial-gradient(ellipse at center, rgba(180,137,95,.12) 0%, transparent 65%);
      pointer-events: none;
    }
    .ocak-section::after {
      content: '';
      position: absolute;
      bottom: -80px; left: 5%;
      width: 340px; height: 340px;
      background: radial-gradient(ellipse at center, rgba(74,134,193,.08) 0%, transparent 65%);
      pointer-events: none;
    }
    .ocak-section .sec-title { color: var(--white); }
    .ocak-section .txt-muted { color: rgba(143,169,196,.85); }
    .ocak-section .sec-line { background: var(--gold); }

    .ocak-img {
      width: 100%; height: 440px;
      object-fit: cover;
      border-radius: var(--radius);
      box-shadow: 0 32px 72px rgba(0,0,0,.35);
    }
    .ocak-feat {
      display: flex; gap: 18px; align-items: flex-start;
      margin-bottom: 26px;
    }
    .ocak-feat-icon {
      width: 46px; height: 46px; flex-shrink: 0;
      background: rgba(180,137,95,.12);
      border: 1px solid rgba(180,137,95,.28);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: var(--gold2); font-size: 1.1rem;
    }
    .ocak-feat h4 {
      font-family: 'DM Sans', sans-serif;
      font-size: .88rem; font-weight: 600;
      color: var(--white); margin-bottom: 4px;
    }
    .ocak-feat p { font-size: .82rem; line-height: 1.65; margin: 0; color: rgba(143,169,196,.85); }

    /* ════════════════════════════════════════
       FUARLAR
    ════════════════════════════════════════ */
    .fuarlar-section { padding: 96px 0; }
    .fuar-card {
      border: 1px solid var(--cloud);
      border-radius: var(--radius);
      padding: 28px 24px 26px;
      height: 100%;
      position: relative;
      overflow: hidden;
      transition: border-color .28s, box-shadow .28s, transform .28s;
    }
    .fuar-card a {
      color: #222;
      text-decoration: none;
    }
    .fuar-img {
      width: 100%;
      height: 240px;
      object-fit: cover;
      border-radius: 4px;
    }
    .fuar-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--gold), var(--gold2));
      transform: scaleX(0);
      transition: transform .3s;
    }
    .fuar-card:hover { border-color: rgba(180,137,95,.3); box-shadow: 0 10px 36px rgba(180,137,95,.1); transform: translateY(-4px); }
    .fuar-card:hover::before { transform: scaleX(1); }
    .fuar-year {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.8rem; font-weight: 700;
      color: var(--cloud); line-height: 1;
      position: absolute; top: 14px; right: 18px;
    }
    .fuar-card h3 { font-size: 1.15rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
    .fuar-loc {
      font-size: .74rem; font-weight: 600;
      letter-spacing: .08em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 10px;
      display: flex; align-items: center; gap: 5px;
    }
    .fuar-card p { font-size: .82rem; color: var(--muted); line-height: 1.65; }

    /* ════════════════════════════════════════
       ISTIRAKLER
    ════════════════════════════════════════ */
    .istirakler-section { background: var(--fog); padding: 80px 0; }
    .ist-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 38px 32px;
      text-align: center;
      height: 100%;
      transition: box-shadow .28s, transform .28s;
      border-bottom: 3px solid transparent;
    }
    .ist-card:hover { box-shadow: 0 16px 48px rgba(11,25,41,.1); transform: translateY(-5px); border-bottom-color: var(--gold); }
    .ist-icon {
      width: 68px; height: 68px;
      background: var(--fog); border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 20px;
      font-size: 1.65rem; color: var(--gold);
      border: 1.5px solid var(--cloud);
      transition: background .2s, border-color .2s;
    }
    .ist-card:hover .ist-icon { background: rgba(180,137,95,.1); border-color: rgba(180,137,95,.3); }
    .ist-card h3 { font-size: 1.22rem; color: var(--navy); margin-bottom: 10px; }
    .ist-card p { font-size: .83rem; color: var(--muted); line-height: 1.7; }

    /* ════════════════════════════════════════
       CTA BAND
    ════════════════════════════════════════ */
    .cta-band {
      padding: 88px 0;
      background: linear-gradient(130deg, var(--navy) 0%, var(--slate) 100%);
      position: relative; overflow: hidden;
    }
    .cta-band::before {
      content: '';
      position: absolute;
      top: -80px; right: -80px;
      width: 420px; height: 420px;
      background: radial-gradient(ellipse, rgba(180,137,95,.18) 0%, transparent 65%);
    }
    .cta-band::after {
      content: '';
      position: absolute;
      bottom: -60px; left: 5%;
      width: 280px; height: 280px;
      background: radial-gradient(ellipse, rgba(74,134,193,.1) 0%, transparent 65%);
    }
    .cta-band .sec-eyebrow { color: rgba(203,160,122,.75); }
    .cta-band .sec-title { color: var(--white); }
    .cta-band .sec-line { background: var(--gold); }

    /* ════════════════════════════════════════
       CONTACT PREVIEW
    ════════════════════════════════════════ */
    .contact-section { padding: 96px 0; }
    .contact-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 36px 30px;
      height: 100%;
      border-top: 3px solid var(--gold);
      box-shadow: 0 4px 28px rgba(11,25,41,.07);
      transition: box-shadow .25s, transform .25s;
    }
    .contact-card:hover { box-shadow: 0 12px 44px rgba(11,25,41,.12); transform: translateY(-3px); }
    .contact-card h4 {
      font-size: 1.15rem; color: var(--navy);
      margin-bottom: 22px;
      display: flex; align-items: center; gap: 10px;
    }
    .contact-card h4 i { color: var(--gold); }
    .c-row {
      display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px;
    }
    .c-row i { color: var(--gold); flex-shrink: 0; margin-top: 2px; font-size: .9rem; }
    .c-row span { font-size: .84rem; color: var(--muted); line-height: 1.65; }
    .c-row a { color: var(--steel); text-decoration: none; }
    .c-row a:hover { color: var(--gold); }

    /* ════════════════════════════════════════
       FOOTER
    ════════════════════════════════════════ */
    footer {
      background: var(--white);
      color: var(--text);
      padding: 64px 0 0;
    }
    footer .brand-main { color: var(--steel); }
    footer .brand-sub-text { display: block; }
    footer p { font-size: .83rem; line-height: 1.8;}
    footer h6 {
      font-size: .68rem; font-weight: 700;
      letter-spacing: .22em; text-transform: uppercase;
      margin-bottom: 18px;
    }
    footer ul { list-style: none; padding: 0; margin: 0; }
    footer ul li { margin-bottom: 10px; }
    footer ul li a {
      font-size: .82rem;
      text-decoration: none;
      display: inline-flex; align-items: center; gap: 7px;
      color: var(--text);
    }
    footer ul li a .fi { color: var(--text); font-size: .6rem; flex-shrink: 0; }
    footer ul li a:hover {gap: 11px; }
    .social-btn {
      width: 38px; height: 38px;
      border: 1px solid rgba(255,255,255,.15);
      border-radius: 50%;
      display: inline-flex; align-items: center; justify-content: center;
      color: var(--silver); text-decoration: none;
      font-size: .9rem;
      transition: all .22s;
    }
    .social-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(180,137,95,.1); }
    .footer-divider { border-color: rgba(255,255,255,.06); margin: 40px 0 0; }
    .footer-bottom {
      background: var(--navy);
      padding: 16px 0;
    }
    .footer-bottom p { font-size: .73rem; margin: 0; color: rgba(143,169,196,.5); }
    .footer-bottom a { color: rgba(143,169,196,.45); text-decoration: none; font-size: .73rem; }
    .footer-bottom a:hover { color: var(--white); }

    /* ════════════════════════════════════════
       SCROLL REVEAL
    ════════════════════════════════════════ */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity .65s ease, transform .65s ease;
    }
    .reveal.visible { opacity: 1; transform: none; }

    /* ════════════════════════════════════════
       RESPONSIVE
    ════════════════════════════════════════ */
    @media (max-width: 991px) {
      .hero-caption { left: 5%; max-width: 92%; }
      .about-badge { bottom: -14px; right: -8px; }
      .carousel-control-prev { left: .8rem; }
      .carousel-control-next { right: .8rem; }
    }
    @media (max-width: 767px) {
      #heroCarousel .carousel-item { height: 75vh; }
      .about-section, .products-section, .fuarlar-section,
      .contact-section, .ocak-section, .istirakler-section { padding: 64px 0; }
      .cta-band { padding: 64px 0; }
    }

    /* ── PAGE HERO ── */
    .page-hero {
      position: relative;
      height: 420px;
      background-image: url('../images/slide1.jpg');
      background-size: cover;
      background-position: center;
      display: flex;
      align-items: flex-end;
    }
    .page-hero::before {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(105deg, rgba(11,25,41,.82) 0%, rgba(11,25,41,.45) 55%, rgba(11,25,41,.15) 100%);
    }
    .page-hero::after {
      content: '';
      position: absolute; bottom: 0; left: 0; right: 0; height: 200px;
      background: linear-gradient(to top, rgba(11,25,41,.6), transparent);
    }
    .page-hero-content {
      position: relative; z-index: 1;
      padding-bottom: 44px; color: var(--white);
    }
    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: .68rem; font-weight: 600; letter-spacing: .28em; text-transform: uppercase;
      color: var(--gold2); margin-bottom: 14px;
    }
    .hero-eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--gold2); }
    .page-hero-content h1 {
      font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 300; line-height: 1.15; margin: 0;
    }
    .page-hero-content h1 strong { font-weight: 700; }
    .page-hero-content h1 em { font-style: italic; color: var(--gold2); }



/* ════ BLOG ════ */
.blog-section { padding: 96px 0; background: var(--fog); }

.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .28s ease, box-shadow .28s ease;
  box-shadow: 0 2px 22px rgba(11,25,41,.1);
}
.blog-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .28s ease;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 16px 44px rgba(11,25,41,.11); cursor:pointer; }
.blog-card:hover::after { transform: scaleX(1); }

.blog-card-head {
  padding: 18px;
}
.blog-cat-badge {
  display: inline-block;
  font-size: .58rem; font-weight: 700;
  letter-spacing: .13em; text-transform: uppercase;
  background: var(--gold); color: var(--white);
  padding: 3px 9px; border-radius: 2px;
  margin-bottom: 10px;
}
.blog-card-head h3 {
  font-size: 1.12rem; font-weight: 600;
  line-height: 1.65; flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-thumb-wrap { overflow: hidden; }
.blog-thumb-wrap img {
  width: 100%; height: 160px;
  object-fit: cover; display: block;
  transition: transform .45s ease;
}
.blog-card:hover .blog-thumb-wrap img { transform: scale(1.05); }

.blog-card-body {
  padding: 14px 18px 18px;
  display: flex; flex-direction: column; flex: 1;
}
.blog-card a {
  color: #000;
  text-decoration: none;
}
.blog-card-body p {
  font-size: .81rem; color: var(--muted);
  line-height: 1.65; flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0 0 14px;
}

.blog-card-body h3 {
  font-size: 1.1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0 0 14px;
}

.blog-card-footer {
  display: flex; align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--cloud);
}
.blog-read {
  font-size: .7rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold); text-decoration: none;
  display: inline-flex; align-items: center; gap: 5px;
  transition: gap .2s, color .2s;
}
.blog-read i { transition: transform .2s; }
.blog-read:hover { gap: 9px; color: var(--navy); }
.blog-read:hover i { transform: translateX(3px); }

.blog-date {
  font-size: .71rem; color: var(--silver);
}


/*Video Content*/
.hero-video-section {
  position: relative;
  width: 100%;
  height: calc(100vh - 105px);
  z-index: -1;
}
.hero-video {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: fill;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background:
    linear-gradient(
        180deg,
        rgba(26, 42, 75, 0.25) 0%,
        rgba(15, 23, 42, 0.50) 50%,
        rgba(2, 6, 23, 0.85) 100%
    );
}
@media(max-width:768px){
    .hero-video {
        width: 100%;
        height: 350px !important;
        position: unset;
    }
}

/* Sadece bizim eklediğimiz row'un içindeki kartları etkiler */
.mermer-galeri-row .pcard {
  background: var(--white); 
  border-radius: var(--radius); 
  box-shadow: 0 4px 20px rgba(11,25,41,.03); 
  overflow: hidden; height: 100%;
}

.mermer-galeri-row .pcard-body {
  padding: 14px 16px;
}

/* Slider içindeki resimleri hizala ve boyutlandır */
.mermer-galeri-row .urunun-slideri {
  overflow: hidden; 
  position: relative; 
  cursor: pointer;
}

.mermer-galeri-row .urunun-slideri img {
  transition: transform 0.4s; 
  object-fit: cover; 
  width: 100%;
  height: 280px; 
  transform: scale(1);
}
.mermer-galeri-row .urunun-slideri img:hover {
  transform: scale(1.08);
}

/* Slick kütüphanesinin yön oklarını kartın içine yerleştirme */
.mermer-galeri-row .slick-prev { left: 10px; z-index: 5; }
.mermer-galeri-row .slick-next { right: 10px; z-index: 5; }
.mermer-galeri-row .slick-dots { bottom: 8px; }
.mermer-galeri-row .slick-dots li button:before { color: #b4895f; opacity: 0.5; }
.mermer-galeri-row .slick-dots li.slick-active button:before { color: #b4895f; opacity: 1; }

.pcard-img-wrap {
  position: relative;
  overflow: hidden;
}

.pcard-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s ease;
}

.pcard-img--hover {
  position: absolute;
  inset: 0;
  opacity: 0;
}

/* Masaüstü hover */
.pcard:hover .pcard-img--default {
  opacity: 0;
}
.pcard:hover .pcard-img--hover {
  opacity: 1;
  cursor: pointer;
}

/* Mobil aktif touch durumu JS ile .is-touched class'ı ekler */
.pcard.is-touched .pcard-img--default {
  opacity: 0;
}
.pcard.is-touched .pcard-img--hover {
  opacity: 1;
}

.blog-sidebar-item {
    transition: all 0.3s ease;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 15px;
}
.blog-sidebar-item:last-child { border: 0; }
.blog-sidebar-item:hover img { transform: scale(1.05); }
.sidebar-img-container {
    width: 80px;
    height: 80px;
    overflow: hidden;
    border-radius: 2px;
    flex-shrink: 0;
}
.sidebar-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.sticky-sidebar {
    position: sticky;
    top: 100px;
}
.entry-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.sticky-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 9;
}