/* ═══════════════════════════════════════════════════════════════
   site.css — TÜM SAYFALARIN ORTAK STİLLERİ
   39 sayfa CSS dosyasının byte-byte özdeş ortak çekirdeği.
   _Layout.cshtml bunu sayfa CSS'inden ÖNCE yükler.
   SIRA ÖNEMLİDİR:  site.css  →  /css/pages/<sayfa>.css
   Buradaki bir kuralı değiştirmek tüm siteyi etkiler.
   ═══════════════════════════════════════════════════════════════ */

  /* Bu degerler 2026-09-02 oncesinde site.js icindeki TWEAK_DEFAULTS tarafindan
     calisma aninda uygulaniyordu; CSS burada baska (yesil/plum/Cormorant) yaziyordu.
     Sonuc: her sayfa acilisinda once yanlis renk/font boyaniyor, JS calisinca
     dogrusuna donuyordu. Degerler artik burada sabit. Degistirirken dikkat. */
  :root {
    --cream: #F3EDE2;
    --cream-2: #EAE2D2;
    --paper: #FBF8F2;
    --ink: #1B1A16;
    --ink-soft: #3B3A33;
    --muted: #6E6B5E;
    --line: #D8D1BF;
    --forest: #1B1A16;
    --forest-deep: #0E0D0B;
    --forest-soft: #4A473E;
    --terra: oklch(0.68 0.08 40);
    --heading-accent: #B08D45;

    --heading-weight: 700;

    --serif: "DM Serif Display", "Times New Roman", serif;
    --sans: "Figtree", -apple-system, Segoe UI, sans-serif;
    --mono: "JetBrains Mono", ui-monospace, monospace;

    --maxw: 1280px;
    --pad: 40px;
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  html, body { background: var(--paper); color: var(--ink); font-family: var(--sans); font-size: 16px; line-height: 1.55; -webkit-font-smoothing: antialiased; }
  /* Global desktop downscale: HD (1920) shows what 3K did before */
  @media (min-width: 1100px) { body { zoom: 0.8; } }
  img { display: block; max-width: 100%; }
  a { color: inherit; text-decoration: none; }
  button { font: inherit; background: none; border: none; cursor: pointer; color: inherit; }

  ::selection { background: var(--forest); color: var(--paper); }

  .serif { font-family: var(--serif); font-weight: 400; letter-spacing: -0.01em; }
  .mono { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
  .container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }

  /* ─── TOP BAR ─── */
  .topbar {
    background: var(--forest-deep); color: var(--cream);
    font-size: 15.5px; letter-spacing: 0.04em;
  }
  .topbar-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 38px;
  }
  .topbar a { opacity: 0.85; transition: opacity .2s; }
  .topbar a:hover { opacity: 1; }
  .topbar .dot { opacity: 0.4; margin: 0 10px; }
  .topbar-right { display: flex; align-items: center; }
  .topbar-social { display: inline-flex; align-items: center; gap: 12px; }
  .topbar-social a { display: inline-flex; opacity: 0.85; }
  .topbar-social a:hover { opacity: 1; }

  /* ─── NAV ─── */
  .nav {
    background: #252423;
    border-bottom: 1px solid rgba(243,237,226,0.12);
    position: sticky; top: 0; z-index: 40;
  }
  .nav-inner {
    display: flex; align-items: center; gap: 24px;
    height: 124px;
  }
  .nav-left { flex: 1; justify-content: flex-end; }
  .nav-left, .nav-right { display: flex; gap: 22px; align-items: center; }
  .nav-right { justify-content: flex-end; }
  .nav a.navlink {
    font-size: 17.5px; font-weight: 500; color: var(--cream);
    position: relative; padding: 6px 0; transition: color .2s;
  }
  .nav a.navlink:hover { color: #F3D08A; }
  .nav a.navlink::after {
    content: ""; position: absolute; left: 0; right: 100%; bottom: 0;
    height: 1px; background: #F3D08A; transition: right .3s ease;
  }
  .nav a.navlink:hover::after { right: 0; }

  /* Dropdown */
  .navitem { position: relative; }
  .navitem .chev {
    display: inline-block; margin-left: 3px;
    border-left: 4px solid transparent; border-right: 4px solid transparent;
    border-top: 5px solid currentColor; opacity: 0.6;
    vertical-align: middle; transition: transform .25s, opacity .2s;
  }
  .navitem:hover .chev { transform: rotate(180deg); opacity: 1; }
  .nav-right .cta { background: linear-gradient(100deg, #8E7A4F 0%, #C7B183 38%, #E4D2A6 55%, #A8946A 100%); color: var(--forest-deep); }
  .nav-right .cta:hover { background: linear-gradient(100deg, #9C875A 0%, #D3BE8F 38%, #EFDDB2 55%, #B5A176 100%); }
  .dropdown {
    position: absolute; top: 100%; left: -20px;
    background: var(--paper); border: 1px solid var(--line);
    padding: 12px; width: 320px;
    opacity: 0; visibility: hidden;
    transform: translateY(4px);
    transition: opacity .2s, transform .2s, visibility .2s;
    box-shadow: 0 20px 40px -20px rgba(27,26,22,0.15);
    z-index: 50;
  }
  .dropdown.wide { width: 560px; }
  .navitem:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
  .dd-grid { display: grid; grid-template-columns: 1fr; gap: 1px; }
  .dd-grid.two { grid-template-columns: 1fr 1fr; gap: 1px 14px; }
  .dd-item {
    display: flex; align-items: center; gap: 10px;
    padding: 9px 10px; border-radius: 3px;
    transition: background .2s, padding-left .2s;
    font-size: 13.5px; color: var(--ink-soft); line-height: 1.3;
  }
  .dd-item::before {
    content: ""; width: 5px; height: 5px; flex-shrink: 0;
    background: var(--forest); border-radius: 50%; opacity: 0;
    transition: opacity .2s;
  }
  .dd-item:hover { background: var(--cream); color: var(--ink); padding-left: 14px; }
  .dd-item:hover::before { opacity: 1; }
  .dd-item.dd-current { background: var(--cream); color: var(--ink); padding-left: 14px; font-weight: 600; }
  .dd-item.dd-current::before { opacity: 1; }
  .mm-current { color: #C9A961 !important; font-weight: 600 !important; }


  .logo {
    display: flex; align-items: center; gap: 9px; flex-shrink: 0;
  }
  .logo img.logo-mark {
    height: 52px; width: auto;
  }
  .logo .logo-rule {
    width: 1px; height: 40px; background: var(--cream); opacity: 0.35;
  }
  .logo .logo-text { display: flex; flex-direction: column; line-height: 1.1; }
  .logo .mark {
    font-family: var(--serif); font-size: 32px; font-weight: 500;
    letter-spacing: 0.01em; white-space: nowrap; line-height: 1.02;
    display: flex; flex-direction: column;
    background: linear-gradient(100deg, #8E7A4F 0%, #C7B183 38%, #E4D2A6 55%, #A8946A 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
  }
  .logo .mark .pre { font-size: 20px; letter-spacing: 0.04em; }
  .logo .sub {
    font-size: 12.2px; letter-spacing: 0.24em; text-transform: uppercase;
    color: rgba(243,237,226,0.65); margin-top: 4px;
  }
  .logo .sub2 {
    font-size: 8.5px; letter-spacing: 0.28em; text-transform: uppercase;
    color: var(--muted); opacity: 0.7; margin-top: 3px;
  }

  .cta {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--forest); color: var(--paper);
    padding: 11px 20px; border-radius: 999px;
    font-size: 15px; font-weight: 600; letter-spacing: 0.02em;
    transition: background .2s, transform .2s;
  }
  .cta:hover { background: var(--forest-deep); }
  .cta .arrow { transition: transform .2s; }
  .cta:hover .arrow { transform: translateX(3px); }

  .cta-ghost {
    display: inline-flex; align-items: center; gap: 10px;
    color: var(--ink); padding: 11px 20px; border-radius: 999px;
    font-size: 13px; font-weight: 600; letter-spacing: 0.02em;
    border: 1px solid var(--line); transition: all .2s;
  }
  .cta-ghost:hover { border-color: var(--ink); }

  /* ─── HERO ─── */
  .hero {
    background: var(--cream);
    position: relative; overflow: hidden;
  }
  .hero-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 56px;
    padding: 80px var(--pad) 100px;
    max-width: var(--maxw); margin: 0 auto;
    min-height: 680px;
    align-items: center;
    position: relative;
  }

  .hero-slides { position: relative; min-height: 440px; }
  .hero-slide {
    position: absolute; inset: 0;
    opacity: 0; transform: translateY(18px);
    transition: opacity .7s ease, transform .7s ease;
    pointer-events: none;
    display: flex; flex-direction: column; justify-content: center;
  }
  .hero-slide.active { opacity: 1; transform: translateY(0); pointer-events: auto; }

  .hero-eyebrow { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
  .hero-eyebrow .line { display: none; }
  .hero-eyebrow .label {
    font-family: var(--eyebrow-font, var(--mono));
    font-size: 13.5px; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--forest);
  }

  .hero-title {
    font-family: var(--serif);
    font-size: clamp(41px, 5.27vw, 71px);
    line-height: 1.02;
    letter-spacing: -0.015em;
    color: var(--ink);
    font-weight: 400;
  }
  .hero-title em { font-style: italic; color: var(--heading-accent); font-weight: 400; }

  .hero-sub {
    margin-top: 26px;
    font-size: 19px; line-height: 1.6;
    color: var(--ink-soft);
    max-width: 48ch;
  }

  .hero-actions { margin-top: 38px; display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }

  .hero-signature {
    margin-top: 40px;
    display: flex; align-items: center; gap: 14px;
    font-size: 13px; color: var(--muted);
  }
  .hero-signature b { color: var(--ink); font-weight: 600; }
  .hero-signature .chip {
    font-family: var(--serif); font-style: italic;
    color: var(--forest); font-size: 22px; line-height: 1;
  }

  /* ─── PORTRAIT ─── */
  .portrait-wrap {
    position: relative;
    transform: scale(1.1) translateY(20px);
    transform-origin: center;
    aspect-ratio: 706 / 646;
    max-height: 560px;
    justify-self: end;
    width: 100%;
  }
  .portrait {
    position: absolute; inset: 0;
    background: #DED4BE;
    overflow: hidden;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 30px 60px -30px rgba(27, 26, 22, 0.25);
  }
  .portrait img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center 20%;
    display: block;
  }
  .portrait::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(27,26,22,0) 60%, rgba(27,26,22,0.15) 100%);
    pointer-events: none;
  }

  .portrait-caption {
    position: absolute; left: -102px; top: calc(100% - 115px); bottom: auto;
    background: rgba(251, 248, 242, 0.8); backdrop-filter: blur(4px);
    border-left: 3px solid var(--heading-accent);
    padding: 11px 22px;
    box-shadow: 0 10px 30px -10px rgba(27, 26, 22, 0.18);
    display: flex; flex-direction: column; align-items: flex-start; gap: 3px; white-space: nowrap;
  }
  .portrait-caption .name {
    font-family: var(--serif); font-size: 22.8px; font-weight: 500;
    color: var(--ink); letter-spacing: 0.005em;
  }
  .portrait-caption .title {
    font-size: 13.2px; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--muted);
  }

  .portrait-sticker {
    position: absolute; right: -29px; top: -20px;
    width: 132px; height: auto;
    filter: drop-shadow(0 12px 24px rgba(27,26,22,0.22));
    opacity: 0; transform: translateY(-10px);
    animation: stickerIn .7s ease-out .3s forwards;
  }
  @keyframes stickerIn { to { opacity: 1; transform: translateY(0); } }

  /* ─── CAROUSEL CONTROLS ─── */
  .hero-controls {
    position: absolute; left: var(--pad); bottom: 40px;
    display: flex; align-items: center; gap: 20px;
  }
  .hero-dots { display: flex; gap: 10px; }
  .hero-dot {
    width: 28px; height: 2px; background: var(--line);
    cursor: pointer; transition: background .3s;
    border: none; padding: 0;
  }
  .hero-dot.active { background: var(--ink); }

  .hero-arrows { display: flex; gap: 2px; margin-left: 14px; }
  .hero-arrow {
    width: 42px; height: 42px;
    border: 1px solid var(--line);
    border-radius: 50%;
    display: grid; place-items: center;
    transition: all .2s;
  }
  .hero-arrow:hover { border-color: var(--ink); background: var(--paper); }

  .hero-counter {
    font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em;
    color: var(--muted); margin-left: 20px;
  }
  .hero-counter b { color: var(--ink); font-weight: 500; }

  /* ─── TRUST STRIP ─── */
  .trust {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--paper);
  }
  .trust-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: var(--maxw); margin: 0 auto;
    padding: 0 var(--pad);
  }
  .trust-item {
    padding: 36px 28px;
    border-right: 1px solid var(--line);
    display: flex; gap: 20px; align-items: flex-start;
  }
  .trust-item:last-child { border-right: none; }
  .trust-num {
    font-family: var(--serif); font-size: 40px; font-weight: 500;
    line-height: 1; color: var(--forest);
    font-variant-numeric: tabular-nums;
    font-feature-settings: "lnum" "tnum";
    font-variant-numeric: tabular-nums;
    flex-shrink: 0;
  }
  .trust-num .cnt { display: inline-grid; text-align: right; font-variant-numeric: tabular-nums; }
  .trust-num .cnt-sizer { grid-area: 1/1; visibility: hidden; pointer-events: none; }
  .trust-num .cnt-live { grid-area: 1/1; justify-self: end; }
  .trust-num em { font-style: italic; font-size: 28px; }
  .trust-label {
    font-size: 15px; color: var(--ink-soft); line-height: 1.4;
  }
  .trust-label .cap {
    font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em;
    color: var(--muted); margin-bottom: 4px; display: block;
  }

  /* ─── SECTION HEADERS ─── */
  .section { padding: 120px 0; }
  .section-head {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    margin-bottom: 64px;
    align-items: end;
  }
  .section-eyebrow {
    font-family: var(--eyebrow-font, var(--mono)); font-size: 13px;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--forest);
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 24px;
  }
  .section-eyebrow::before { content: none; }
  .section-title {
    font-family: var(--serif); font-size: 54px; line-height: 1.05;
    letter-spacing: -0.01em; font-weight: 400;
    text-wrap: balance;
  }
  .section-title em { font-style: italic; color: var(--heading-accent); }
  .section-intro {
    font-size: 17px; line-height: 1.65; color: var(--ink-soft);
    max-width: 52ch;
  }

  /* ─── TREATMENTS ─── */
  .treatments {
    background: var(--cream);
  }
  .treat-more { display: flex; justify-content: center; margin-top: 44px; }
  .treat-more .cta { font-size: 16px; padding: 13px 24px; }
  .treat-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .treat-card {
    background: var(--paper);
    display: flex; flex-direction: column;
    position: relative;
    transition: transform .3s, box-shadow .3s;
    cursor: pointer;
    border: 1px solid var(--line);
    overflow: hidden;
    min-width: 0;
    width: 100%;
  }
  .treat-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -20px rgba(27,26,22,0.18); }
  .treat-thumb {
    width: 100%;
    aspect-ratio: 3/2;
    background: var(--cream-2);
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
  }
  .treat-thumb img {
    position: absolute; inset: 0;
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .5s ease;
  }
  .treat-card:hover .treat-thumb img { transform: scale(1.05); }
  .treat-body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }
  .treat-card .num {
    display: none;
    font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em;
    color: var(--muted);
  }
  .treat-card .name {
    font-family: var(--serif); font-size: 24px; font-weight: 500;
    line-height: 1.15; margin-top: 10px; letter-spacing: -0.005em;
  }
  .treat-card .desc {
    font-size: 17px; color: var(--ink-soft); line-height: 1.55;
    margin-top: 10px;
  }
  .treat-card .arrow {
    margin-top: auto; padding-top: 18px;
    display: flex; align-items: center; gap: 8px;
    font-size: 12.5px; font-weight: 600; color: var(--forest);
    letter-spacing: 0.02em;
  }
  .treat-card .arrow svg { transition: transform .2s; }
  .treat-card:hover .arrow svg { transform: translateX(4px); }

  /* ─── ABOUT STRIP ─── */
  .about {
    background: var(--paper);
  }
  .about-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
  }
  .about-visual {
    aspect-ratio: 3/4;
    background: linear-gradient(165deg, #E9DFC7 0%, #CFBFA0 100%);
    position: relative; overflow: hidden;
    border-radius: 4px;
  }
  .about-visual svg, .about-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .about-visual::after {
    content: "PROF. DR. HANDE ÇELİKER";
    position: absolute; left: 20px; bottom: 16px;
    font-family: var(--mono); font-size: 10px;
    color: rgba(27,26,22,0.4); letter-spacing: 0.18em;
  }
  .about-title {
    font-family: var(--serif); font-size: 48px; line-height: 1.1;
    font-weight: 400; letter-spacing: -0.01em;
    text-wrap: balance;
  }
  .about-title em { font-style: italic; color: var(--heading-accent); }
  .about-body {
    margin-top: 26px;
    font-size: 18px; line-height: 1.7; color: var(--ink-soft);
  }
  .about-body p + p { margin-top: 16px; }

  .about-creds {
    margin-top: 36px;
    padding-top: 28px; border-top: 1px solid var(--line);
  }
  .about-quote {
    font-family: var(--serif); font-style: italic; font-size: 24px;
    line-height: 1.4; color: var(--ink); text-wrap: balance;
  }
  .about-signature { width: 300px; height: auto; display: block; margin-top: 18px; margin-left: -8px; }
  .cred .cap {
    font-family: var(--mono); font-size: 10px;
    letter-spacing: 0.2em; color: var(--muted); text-transform: uppercase;
  }
  .cred .val {
    font-family: var(--serif); font-size: 20px; margin-top: 6px;
    color: var(--ink); font-weight: 500;
  }

  /* ─── RETINA FOCUS ─── */
  .retina {
    background: var(--forest-deep); color: var(--cream);
    padding: 120px 0;
  }
  .retina .section-eyebrow { color: var(--forest-soft); }
  .retina .section-eyebrow::before { background: var(--forest-soft); }
  .retina .section-title { color: var(--cream); }
  .retina .section-title em { color: #CFB87C; }
  .retina .section-intro { color: rgba(243, 237, 226, 0.8); }

  .retina-list {
    display: grid; grid-template-columns: repeat(5, 1fr);
    gap: 0;
    border-top: 1px solid rgba(243,237,226,0.15);
  }
  .retina-item {
    padding: 24px 20px 32px;
    border-bottom: 1px solid rgba(243,237,226,0.15);
    border-right: 1px solid rgba(243,237,226,0.15);
    transition: background .3s;
    display: flex; flex-direction: column;
  }
  .ri-thumb {
    width: 100%;
    height: 150px;
    background: rgba(243,237,226,0.08);
    overflow: hidden; margin-bottom: 22px;
    position: relative;
  }
  .ri-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
  .retina-item:first-child { padding-left: 20px; }
  .retina-item:last-child { border-right: none; padding-right: 20px; }
  .retina-item:hover { background: rgba(243,237,226,0.04); }
  .retina-item .n {
    display: none;
    font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em;
    color: rgba(243,237,226,0.5);
  }
  .retina-item .t {
    font-family: var(--serif); font-size: 22px;
    margin-top: 16px; line-height: 1.2; font-weight: 500;
    letter-spacing: -0.005em;
  }
  .retina-item .d {
    font-size: 16.5px; color: rgba(243,237,226,0.7);
    margin-top: 12px; line-height: 1.55;
  }

  .retina-cta-row { margin-top: 60px; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
  .retina-cta-row .note {
    font-family: var(--serif); font-style: italic; font-size: 22px;
    color: rgba(243,237,226,0.85); max-width: 48ch;
  }
  .retina-cta {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 14px 26px; border-radius: 999px;
    background: #CFB87C; color: var(--forest-deep);
    font-weight: 600; font-size: 15px; letter-spacing: 0.02em;
    transition: background .2s;
  }
  .retina-cta:hover { background: #E2CB93; }

  /* ─── PUBLICATIONS / BLOG ─── */
  .media-inner {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  }
  .media-col h3 {
    font-family: var(--serif); font-size: 32px; font-weight: 500;
    letter-spacing: -0.005em;
  }
  .media-col .meta {
    font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em;
    color: var(--muted); margin-bottom: 20px;
  }
  .pub-list { border-top: 1px solid var(--line); }
  .pub {
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
    display: grid; grid-template-columns: 50px 1fr auto; gap: 20px;
    align-items: center;
    transition: padding .25s;
    cursor: pointer;
  }
  .pub:hover { padding-left: 8px; }
  .pub .yr {
    font-family: var(--serif); font-style: italic; color: var(--forest);
    font-size: 20px;
  }
  .pub .ttl {
    font-size: 15px; color: var(--ink);
    line-height: 1.4; font-weight: 500;
  }
  .pub .jnl {
    font-size: 12px; color: var(--muted); margin-top: 4px;
  }
  .pub .go {
    font-size: 12px; color: var(--muted); letter-spacing: 0.1em;
  }

  .blog-card {
    background: var(--cream);
    padding: 28px 26px 28px 13px; margin-bottom: 12px;
    display: grid; grid-template-columns: 123px 1fr; gap: 22px;
    align-items: center; cursor: pointer;
    transition: background .25s;
  }
  .blog-card:hover { background: var(--cream-2); }
  .blog-thumb { background: var(--cream-2); overflow: hidden; position: relative; aspect-ratio: 4/3; width: 123px; flex-shrink: 0; }
  .blog-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
  .blog-card .tag {
    font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em;
    color: var(--forest);
  }
  .blog-card .ttl {
    font-family: var(--serif); font-size: 20px; margin-top: 8px;
    line-height: 1.25; font-weight: 500; letter-spacing: -0.005em;
  }
  .blog-card .date {
    font-size: 12px; color: var(--muted); margin-top: 10px;
  }
  .featured-blog { display: block; text-decoration: none; color: inherit; }
  .featured-blog .fb-thumb { width: 565px; max-width: 100%; height: 300px; overflow: hidden; background: var(--cream-2); border-radius: 4px; }
  .featured-blog .fb-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s; }
  .featured-blog:hover .fb-thumb img { transform: scale(1.04); }
  .featured-blog .tag { font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; color: var(--forest); margin-top: 22px; display: block; }
  .featured-blog .fb-ttl { font-family: var(--serif); font-size: 30px; line-height: 1.15; font-weight: 500; letter-spacing: -0.008em; margin-top: 12px; text-wrap: balance; }
  .featured-blog .fb-date { font-size: 12.5px; color: var(--muted); margin-top: 12px; }
  .featured-blog .fb-excerpt { font-size: 16px; line-height: 1.65; color: var(--ink-soft); margin-top: 18px; }
  .featured-blog .fb-more { display: inline-flex; align-items: center; gap: 10px; margin-top: 22px; font-weight: 600; font-size: 14px; letter-spacing: 0.02em; color: var(--forest); }
  .featured-blog:hover .fb-more { gap: 14px; }

  .media { background: var(--cream); }

  /* ─── FAQ ─── */
  .faq {
    background: var(--cream);
  }
  .faq-inner { max-width: 860px; margin: 0 auto; }
  .faq-list { border-top: 1px solid var(--line); }
  .faq-item {
    border-bottom: 1px solid var(--line);
  }
  .faq-q {
    padding: 28px 0;
    display: flex; align-items: center; justify-content: space-between; gap: 20px;
    cursor: pointer;
    font-family: var(--serif); font-size: 22px; font-weight: 500;
    color: var(--ink); letter-spacing: -0.005em;
  }
  .faq-q .plus {
    width: 28px; height: 28px; position: relative; flex-shrink: 0;
    transition: transform .3s;
  }
  .faq-q .plus::before, .faq-q .plus::after {
    content: ""; position: absolute; background: var(--forest);
    left: 50%; top: 50%;
  }
  .faq-q .plus::before { width: 14px; height: 1.5px; transform: translate(-50%, -50%); }
  .faq-q .plus::after { width: 1.5px; height: 14px; transform: translate(-50%, -50%); transition: transform .3s; }
  .faq-item.open .faq-q .plus::after { transform: translate(-50%, -50%) rotate(90deg); }
  .faq-a {
    max-height: 0; overflow: hidden;
    transition: max-height .4s ease, padding .4s ease;
    font-size: 15.5px; line-height: 1.7; color: var(--ink-soft);
  }
  .faq-item.open .faq-a {
    max-height: 400px;
    padding-bottom: 28px; padding-right: 40px;
  }

  /* ─── CONTACT CTA ─── */
  .contact {
    background: var(--paper);
  }
  .contact-inner {
    display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px;
    align-items: center;
  }
  .contact-left h2 {
    font-family: var(--serif); font-size: 44px; line-height: 1.05;
    font-weight: 400; letter-spacing: -0.012em;
  }
  .contact-left h2 em { font-style: italic; color: var(--heading-accent); }
  .contact-left p {
    margin-top: 24px; font-size: 17px; color: var(--ink-soft);
    max-width: 48ch; line-height: 1.65;
  }
  .contact-photos {
    margin-top: 30px;
  }
  .contact-photos img {
    width: 100%; max-width: 590px; aspect-ratio: 590 / 260; object-fit: cover;
    border-radius: 4px; display: block;
  }
  .contact-map { margin-top: 30px; }
  .contact-map iframe {
    width: 100%; max-width: 590px; height: 300px; border: 0;
    border-radius: 4px; display: block; filter: grayscale(0.15);
  }
  .contact-right { display: flex; flex-direction: column; gap: 20px; }
  .form-photo {
    width: 100%; height: 290px; object-fit: cover; object-position: center top;
    border-radius: 4px; display: block;
  }
  .contact-info {
    margin-top: 40px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
  }
  .ci .cap {
    font-family: var(--mono); font-size: 10px;
    letter-spacing: 0.2em; color: var(--muted); text-transform: uppercase;
  }
  .ci .v { margin-top: 8px; font-size: 15.5px; color: var(--ink); line-height: 1.5; }
  .ci .wa-link { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); text-decoration: none; }
  .ci .wa-link svg { flex-shrink: 0; color: #25D366; }
  .ci .wa-link a { color: var(--forest); }
  .ci .wa-link a:hover { text-decoration: underline; }

  .contact-card {
    background: var(--cream);
    padding: 48px 40px;
    border: 1px solid var(--line);
  }
  .contact-card .eyebrow {
    font-family: var(--mono); font-size: 10px;
    letter-spacing: 0.24em; color: var(--forest);
    text-transform: uppercase;
  }
  .contact-card h3 {
    font-family: var(--serif); font-size: 32px; font-weight: 500;
    margin-top: 10px; line-height: 1.15;
  }
  .field { margin-top: 20px; }
  .field label {
    font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.18em;
    color: var(--muted); text-transform: uppercase; display: block;
  }
  .field input, .field select, .field textarea {
    width: 100%; margin-top: 8px; padding: 12px 0;
    background: transparent; border: none;
    border-bottom: 1px solid var(--line);
    font: inherit; font-size: 16.5px; color: var(--ink);
    outline: none; transition: border-color .2s;
  }
  .field input:focus, .field select:focus, .field textarea:focus {
    border-color: var(--forest);
  }
  .field select { appearance: none; cursor: pointer; padding-right: 20px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path d='M1 1l4 4 4-4' stroke='%236E6B5E' stroke-width='1' fill='none'/></svg>");
    background-repeat: no-repeat; background-position: right 4px center;
  }
  .contact-card button.submit {
    margin-top: 32px; width: 100%;
    background: var(--forest); color: var(--paper);
    padding: 16px 22px; border-radius: 999px;
    font-weight: 600; letter-spacing: 0.04em;
    transition: background .2s;
    font-size: 15px;
  }
  .contact-card button.submit:hover { background: var(--forest-deep); }

  /* ─── FOOTER ─── */
  footer {
    background: var(--ink); color: #BBB7A8;
    padding: 80px 0 32px;
    font-size: 13.5px;
  }
  .footer-grid {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(216, 209, 191, 0.15);
  }
  .footer h4 {
    font-family: var(--mono); font-size: 12.5px; letter-spacing: 0.22em;
    color: #FBF8F2; margin-bottom: 26px; text-transform: uppercase;
    font-weight: 500;
  }
  .footer-grid ul { list-style: none; margin-top: 14px; }
  .footer-grid li { margin-bottom: 10px; }
  .footer-grid a:hover { color: #FBF8F2; }
  .footer-logo {
    font-family: var(--serif); font-size: 22px; color: var(--paper);
    font-weight: 500; letter-spacing: -0.005em;
  }
  .footer-tag { margin-top: 12px; max-width: 34ch; color: #8E8B7F; }
  .footer-social { display: flex; gap: 14px; margin-top: 20px; }
  .footer-social a { display: inline-flex; color: #C9C6BC; opacity: 0.85; transition: opacity .2s, color .2s; }
  .footer-social a:hover { opacity: 1; color: #FBF8F2; }
  .footer-wa { display: inline-flex; align-items: center; gap: 10px; margin-top: 18px; color: #C9C6BC; font-size: 14.5px; font-weight: 500; transition: color .2s; }
  .footer-wa:hover { color: #FBF8F2; }
  .footer-wa svg { flex-shrink: 0; color: #25D366; }

  .footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 32px; font-size: 12px; color: #6E6B5E;
  }
  .footer-bottom .right { display: flex; gap: 24px; }
  .footer-bottom .fb-top { display: flex; align-items: center; gap: 24px; }
  .footer-bottom .fb-credit { color: #6E6B5E; }
  .footer-bottom .fb-credit:hover { color: #C9C6BC; }

  .burger { display: none; background: none; border: 0; padding: 10px 4px; cursor: pointer; flex-direction: column; gap: 5px; }
  .burger span { display: block; width: 24px; height: 2px; background: var(--cream); transition: transform .25s, opacity .2s; }
  .burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .burger.open span:nth-child(2) { opacity: 0; }
  .burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .mobmenu { display: none; }
  .mobmenu-scrim { display: none; }

  /* Small screens */
  @media (max-width: 960px) {
    .nav-inner { height: 72px; gap: 16px; }
    .nav-right .cta { display: none; }
    .burger { display: flex; margin-left: auto; padding-right: 0; }
    .burger span { background: linear-gradient(100deg, #8E7A4F 0%, #C7B183 38%, #E4D2A6 55%, #A8946A 100%); }
    .nav-inner { justify-content: space-between; }
    .mobmenu {
      display: flex; flex-direction: column; gap: 2px;
      position: fixed; top: 0; right: -105%; z-index: 60;
      width: min(72vw, 340px); height: 100dvh;
      background: #252423; padding: 88px 22px 28px;
      transition: right .32s cubic-bezier(.4,0,.2,1);
      overflow-y: auto;
    }
    .mobmenu.mobmenu.open { right: 0; }
    .mobmenu a { color: var(--cream); font-size: 16px; font-weight: 500; padding: 13px 0; border-bottom: 1px solid rgba(243,237,226,0.12); }
    .mobmenu .mm-cta {
      margin-top: 22px; border: 0; border-radius: 2px; text-align: center;
      background: linear-gradient(100deg, #8E7A4F 0%, #C7B183 38%, #E4D2A6 55%, #A8946A 100%);
      color: #252423; font-size: 14px; font-weight: 600; padding: 13px 16px;
    }
    .mm-social { display: flex; gap: 20px; padding-top: 18px; justify-content: flex-end; }
    .mm-social a { color: rgba(243,237,226,0.8); padding: 0; border: 0; }
    .mm-close { position: absolute; top: 22px; right: 20px; background: none; border: 0; color: var(--cream); font-size: 32px; line-height: 1; padding: 4px 8px; cursor: pointer; }
    .mobmenu .mm-tel { display: flex; align-items: center; gap: 10px; justify-content: flex-end; margin-top: auto; border: 0; color: var(--cream); font-size: 15px; font-weight: 600; padding: 0; }
    .mobmenu .mm-tel svg { color: #E4D2A6; }
    .mobmenu-scrim { display: block; position: fixed; inset: 0; background: rgba(0,0,0,.45); opacity: 0; pointer-events: none; transition: opacity .3s; z-index: 55; }
    .mobmenu-scrim.open { opacity: 1; pointer-events: auto; }
    body.menu-open { overflow: hidden; }
    .nav-left { display: none; }
    .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 60px 24px 80px; }
    .portrait-wrap { max-height: 380px; }
    .trust-inner { grid-template-columns: 1fr 1fr; }
    .trust-item:nth-child(2) { border-right: none; }
    .section { padding: 80px 0; }
    .section-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 40px; }
    .section-title { font-size: 38px; }
    .treat-grid { grid-template-columns: 1fr 1fr; }
    .retina-list { grid-template-columns: 1fr 1fr; }
    .retina-item { border-right: none !important; }
    .about-inner, .media-inner, .contact-inner { grid-template-columns: 1fr; gap: 40px; }
    .contact-map iframe { width: 100%; max-width: 100%; height: 320px; }
    .contact-left h2 { font-size: 30px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  }

  /* Mobile */
  @media (max-width: 760px) {
    body { overflow-x: hidden; }
    .nav-inner { gap: 10px; padding-left: 16px; padding-right: 16px; }
    .logo { flex-shrink: 1; min-width: 0; gap: 7px; }
    .logo img { max-height: 38px; width: auto; }
    .logo .logo-rule { height: 28px; }
    .logo .logo-text { min-width: 0; overflow: hidden; }
    .logo .mark { font-size: 19px; white-space: normal; }
    .logo .mark .pre { font-size: 11.5px; }
    .logo .sub { font-size: 9.5px; letter-spacing: 0.14em; margin-top: 2px; }
    .nav-right { flex-shrink: 0; }
    .nav-right .cta { padding: 10px 16px; font-size: 13px; gap: 6px; }
    .topbar-social { display: none !important; }
    .topbar { font-size: 11px; letter-spacing: 0.02em; }
    .topbar .dot { margin: 0 6px; }
    .topbar-inner { gap: 10px; }
    .portrait-wrap { transform: none; max-height: none; }
    .portrait-caption {
      left: 12px; right: 12px; top: auto; bottom: 12px;
      padding: 9px 14px; white-space: normal;
    }
    .portrait-caption .name { font-size: 17px; }
    .portrait-caption .title { font-size: 10px; letter-spacing: 0.14em; }
    .portrait-sticker { width: 92px; right: -6px; top: -8px; }
    .trust-inner { grid-template-columns: 1fr 1fr; }
    .trust-item { padding: 24px 16px; gap: 12px; }
    .trust-num { font-size: 34px; }
    .trust-num em { font-size: 20px; }
    .trust-label { font-size: 12.5px; }
    .trust-label .cap { font-size: 9.5px; letter-spacing: 0.1em; }
    .treat-grid { grid-template-columns: 1fr; }
    .retina-list { grid-template-columns: 1fr; }
    .featured-blog .fb-thumb { width: 100%; height: auto; aspect-ratio: 565/300; }
    .footer-grid { grid-template-columns: 1fr; }

    /* 8, dar kenar boşlukları */
    :root, body { --pad: 18px; }
    .hero-inner { padding: 48px var(--pad) 64px; gap: 24px; }
    .hero-slides { order: 2; }
    .portrait-wrap { order: 1; }
    .section { padding: 64px 0; }
    .retina { padding: 64px 0; }

    /* 3 + 4, üst bant */
    .topbar-inner { height: auto; padding-top: 7px; padding-bottom: 7px; align-items: flex-start; gap: 8px; }
    .topbar-inner > div:first-child { display: flex; flex-direction: column; line-height: 1.5; }
    .topbar-inner .dot { display: none; }
    .topbar-right { margin-right: -4px; }

    /* 1, öne çıkan görsel taşmasın */
    .media-col { min-width: 0; }
    .featured-blog .fb-thumb { max-width: 100%; }
    .featured-blog .fb-ttl { font-size: 24px; }

    /* 7, blog kartları: görsel üstte, başlık altta */
    .blog-card { grid-template-columns: 1fr; gap: 14px; padding: 16px 16px 22px; }
    .blog-thumb { width: 100%; aspect-ratio: 16/10; }
    .blog-card .ttl { font-size: 19px; }

    /* 2, mobil menü */
    .nav-right .cta { display: none; }
    .burger { display: flex; margin-left: auto; padding-right: 0; }
    .burger span { background: linear-gradient(100deg, #8E7A4F 0%, #C7B183 38%, #E4D2A6 55%, #A8946A 100%); }
    .nav-inner { justify-content: space-between; height: 88px; }
    .logo img.logo-mark { height: 38px; }
    .contact-map iframe { max-width: 100%; height: 240px; }
    .contact-info { grid-template-columns: 1fr; gap: 20px; }
    .ci .cap { font-size: 9px; letter-spacing: 0.16em; }
    .ci .v { font-size: 13.5px; margin-top: 6px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; gap: 14px; font-size: 10.5px; }
    .footer-bottom .fb-top { display: flex; justify-content: space-between; align-items: center; gap: 8px 12px; width: 100%; flex-wrap: wrap; }
    .footer-bottom .fb-top > div, .footer-bottom .fb-credit { white-space: nowrap; }
    .footer-bottom .right { flex-wrap: wrap; gap: 14px 20px; }
    .mobmenu {
      display: flex; flex-direction: column; gap: 2px;
      position: fixed; top: 0; right: -105%; z-index: 60;
      width: min(72vw, 290px); height: 100dvh;
      background: #252423; padding: 88px 22px 28px;
      transition: right .32s cubic-bezier(.4,0,.2,1);
      overflow-y: auto;
    }
    .mobmenu.mobmenu.open { right: 0; }
    .mobmenu a { color: var(--cream); font-size: 16px; font-weight: 500; padding: 13px 0; border-bottom: 1px solid rgba(243,237,226,0.12); }
    .mobmenu .mm-cta {
      margin-top: 22px; border: 0; border-radius: 2px; text-align: center;
      background: linear-gradient(100deg, #8E7A4F 0%, #C7B183 38%, #E4D2A6 55%, #A8946A 100%);
      color: #252423; font-size: 14px; font-weight: 600; padding: 13px 16px;
    }
    .mm-social { display: flex; gap: 20px; padding-top: 18px; justify-content: flex-end; }
    .mm-social a { color: rgba(243,237,226,0.8); padding: 0; border: 0; }
    .mm-close { position: absolute; top: 22px; right: 20px; background: none; border: 0; color: var(--cream); font-size: 32px; line-height: 1; padding: 4px 8px; cursor: pointer; }
    .mobmenu .mm-tel { display: flex; align-items: center; gap: 10px; justify-content: flex-end; margin-top: auto; border: 0; color: var(--cream); font-size: 15px; font-weight: 600; padding: 0; }
    .mobmenu .mm-tel svg { color: #E4D2A6; }
    .mobmenu-scrim { display: block; position: fixed; inset: 0; background: rgba(0,0,0,.45); opacity: 0; pointer-events: none; transition: opacity .3s; z-index: 55; }
    .mobmenu-scrim.open { opacity: 1; pointer-events: auto; }
    body.menu-open { overflow: hidden; }
  }

  /* Büyük telefonlar (iPhone Air / Pro Max), logo %20 büyük */
  @media (min-width: 415px) and (max-width: 760px) {
    .logo img, .logo img.logo-mark { max-height: 46px; height: 46px; }
    .logo .mark { font-size: 22.8px; }
    .logo .mark .pre { font-size: 13.8px; }
    .logo .sub { font-size: 11.4px; }
    .logo .logo-rule { height: 34px; }
  }

  /* iPhone Air / 16 Pro Max (440px), logo ek %15 */
  @media (min-width: 436px) and (max-width: 760px) {
    .logo img, .logo img.logo-mark { max-height: 53px; height: 53px; }
    .logo .mark { font-size: 26px; }
    .logo .mark .pre { font-size: 15.9px; }
    .logo .sub { font-size: 13px; }
    .logo .logo-rule { height: 39px; }
  }

  /* Gömülü Cognito randevu formu.
     Bu selectorlar yalnızca /, /hakkimda ve /iletisim sayfalarında
     karşılık bulur; diğer sayfalarda etkisizdir. */
  .cognito-lazy h3 { margin-bottom: 28px; }
  .cognito-lazy .cognito-slot { min-height: 520px; }
  .cognito-lazy.cognito-loaded .cognito-slot { min-height: 0; }
  #randevu-formu h3 { margin-bottom: 28px; }
