:root {
    --paper: #FAFAF7;
    --surface: #FFFFFF;
    --ink: #16181D;
    --ink-soft: #5C6068;
    --line: #E4E3DC;
    --accent: #F7C600;
    --accent-ink: #16181D;
    --accent-soft: #FFF3C2;
    --hatch: repeating-linear-gradient(-45deg, transparent 0 10px, rgba(92,96,104,.10) 10px 11px);
  }
  @media (prefers-color-scheme: dark) {
    :root {
      --paper: #111318;
      --surface: #1A1D23;
      --ink: #F0EFEA;
      --ink-soft: #9BA0A9;
      --line: #2A2E36;
      --accent: #F7C600;
      --accent-ink: #16181D;
      --accent-soft: #3A3110;
      --hatch: repeating-linear-gradient(-45deg, transparent 0 10px, rgba(155,160,169,.14) 10px 11px);
    }
  }
  :root[data-theme="light"] {
    --paper: #FAFAF7; --surface: #FFFFFF; --ink: #16181D; --ink-soft: #5C6068;
    --line: #E4E3DC; --accent: #F7C600; --accent-ink: #16181D; --accent-soft: #FFF3C2;
    --hatch: repeating-linear-gradient(-45deg, transparent 0 10px, rgba(92,96,104,.10) 10px 11px);
  }
  :root[data-theme="dark"] {
    --paper: #111318; --surface: #1A1D23; --ink: #F0EFEA; --ink-soft: #9BA0A9;
    --line: #2A2E36; --accent: #F7C600; --accent-ink: #16181D; --accent-soft: #3A3110;
    --hatch: repeating-linear-gradient(-45deg, transparent 0 10px, rgba(155,160,169,.14) 10px 11px);
  }

  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    * { animation: none !important; transition: none !important; }
  }
  body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: "Charter", "Bitstream Charter", "Iowan Old Style", Georgia, serif;
    font-size: 17px;
    line-height: 1.6;
  }
  .display, h1, h2, h3 {
    font-family: "Avenir Next Condensed", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .01em;
    line-height: 1.04;
    text-wrap: balance;
    margin: 0;
  }
  .ui, nav, button, .btn, .chip, .eyebrow, .tag, footer, input, select, textarea, .banner {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  }
  p { margin: 0 0 1em; max-width: 62ch; }
  a { color: inherit; }

  .wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

  /* ---------- Prototype banner ---------- */
  .banner {
    background: var(--ink); color: var(--paper);
    font-size: 12.5px; letter-spacing: .04em;
    padding: 8px 24px; text-align: center;
  }
  .banner strong { color: var(--accent); font-weight: 700; }

  /* ---------- Header ---------- */
  header.site {
    position: sticky; top: 0; z-index: 50;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }
  .site-inner { display: flex; align-items: center; gap: 28px; padding: 14px 24px; max-width: 1080px; margin: 0 auto; }
  .logo { text-decoration: none; display: flex; flex-direction: column; line-height: 1; }
  .logo .name {
    font-family: "Didot", "Bodoni 72", "Times New Roman", serif;
    font-weight: 400; font-size: 27px; letter-spacing: .04em;
    text-align: center; text-indent: .04em;
  }
  .logo .sub {
    font-family: "Didot", "Bodoni 72", "Times New Roman", serif;
    font-size: 9.5px; letter-spacing: .30em; text-transform: uppercase; color: var(--ink);
    margin-top: 4px; border-top: 1.5px solid var(--ink); padding-top: 4px;
    text-align: center; text-indent: .30em;
  }
  .photo { width: 100%; display: block; object-fit: cover; border-radius: 2px; }
  .photo.portrait { aspect-ratio: 4 / 5; }
  .photo.square { aspect-ratio: 1 / 1; }
  .photo.muted { filter: saturate(.55) contrast(1.05) sepia(.12); }
  .reelcard { position: relative; display: block; aspect-ratio: 9 / 16; border-radius: 2px; overflow: hidden; }
  .reelcard img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .25s ease; }
  .reelcard:hover img { transform: scale(1.05); }
  .reelcard .play {
    position: absolute; inset: 0; margin: auto; width: 52px; height: 52px;
    border-radius: 50%; background: rgba(22,24,29,.72);
    display: flex; align-items: center; justify-content: center;
  }
  .reelcard .play::after {
    content: ""; display: block; margin-left: 5px;
    border-style: solid; border-width: 9px 0 9px 15px;
    border-color: transparent transparent transparent var(--accent);
  }
  nav.main { display: flex; gap: 4px; margin-left: auto; align-items: center; }
  nav.main a {
    text-decoration: none; font-size: 14px; font-weight: 600;
    padding: 8px 12px; border-radius: 2px; color: var(--ink);
  }
  nav.main a:hover { background: var(--accent-soft); }
  nav.main a.active { box-shadow: inset 0 -3px 0 var(--accent); }
  .btn {
    display: inline-block; text-decoration: none; cursor: pointer; border: none;
    background: var(--accent); color: var(--accent-ink);
    font-weight: 700; font-size: 15px; padding: 12px 22px; border-radius: 2px;
  }
  .btn:hover { filter: brightness(1.05); }
  .btn:focus-visible, a:focus-visible, button:focus-visible, .chip:focus-visible {
    outline: 3px solid var(--accent); outline-offset: 2px;
  }
  .btn.ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
  .btn.small { padding: 9px 16px; font-size: 14px; }
  .menu-toggle { display: none; margin-left: auto; background: none; border: 1.5px solid var(--ink); color: var(--ink); padding: 8px 12px; border-radius: 2px; font-size: 14px; font-weight: 600; }

  /* ---------- Sections ---------- */
  .block { padding: 72px 0; }
  .block + .block { border-top: 1px solid var(--line); }
  .block.tight { padding: 48px 0; }

  .eyebrow {
    display: inline-block; font-size: 12px; font-weight: 700;
    letter-spacing: .22em; text-transform: uppercase; color: var(--ink-soft);
    margin-bottom: 18px;
  }
  .mark {
    background: linear-gradient(transparent 62%, var(--accent) 62%, var(--accent) 94%, transparent 94%);
    padding: 0 2px;
  }
  h1 { font-size: clamp(44px, 7vw, 84px); }
  h2 { font-size: clamp(30px, 4.4vw, 48px); margin-bottom: 24px; }
  h3 { font-size: 20px; letter-spacing: .03em; margin-bottom: 10px; }
  .lead { font-size: 20px; line-height: 1.55; color: var(--ink); max-width: 54ch; }
  .muted { color: var(--ink-soft); }

  /* ---------- Hero ---------- */
  .hero { display: grid; grid-template-columns: 7fr 5fr; gap: 48px; align-items: center; padding: 80px 0 72px; }
  .hero .actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
  .hero-note { font-size: 13.5px; color: var(--ink-soft); margin-top: 14px; }

  /* ---------- Placeholders ---------- */
  .ph {
    background: var(--surface); background-image: var(--hatch);
    border: 1.5px dashed var(--ink-soft); border-radius: 2px;
    display: flex; align-items: flex-end; padding: 14px; position: relative;
  }
  .ph .tag {
    background: var(--ink); color: var(--paper);
    font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
    padding: 5px 9px; border-radius: 2px; line-height: 1.4;
  }
  .ph.portrait { aspect-ratio: 4 / 5; }
  .ph.wide { aspect-ratio: 16 / 9; }
  .ph.reel { aspect-ratio: 9 / 16; }

  /* ---------- Proof strip ---------- */
  .proof { display: flex; flex-wrap: wrap; gap: 12px 40px; padding: 22px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .proof div { font-size: 14px; font-weight: 600; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
  .proof div span { color: var(--ink-soft); font-weight: 500; }

  /* ---------- Grids & cards ---------- */
  .grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
  .card {
    background: var(--surface); border: 1px solid var(--line); border-radius: 2px;
    padding: 26px; display: flex; flex-direction: column; gap: 8px;
  }
  .card p { font-size: 15.5px; color: var(--ink-soft); margin: 0; }
  .card .cta { margin-top: auto; padding-top: 14px; font-weight: 700; font-size: 14px; text-decoration: none; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
  .card .cta::after { content: " →"; }

  ul.clean { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
  ul.clean li { padding-left: 26px; position: relative; max-width: 62ch; }
  ul.clean li::before {
    content: ""; position: absolute; left: 0; top: .5em;
    width: 12px; height: 12px; background: var(--accent);
  }

  /* ---------- Honest three ---------- */
  .honest { background: var(--ink); color: var(--paper); }
  .honest .eyebrow { color: var(--accent); }
  .honest .item { border-top: 1px solid rgba(255,255,255,.18); padding: 26px 0; display: grid; grid-template-columns: 80px 1fr; gap: 24px; }
  .honest .num { font-family: "Avenir Next Condensed", "Arial Narrow", sans-serif; font-weight: 800; font-size: 44px; color: var(--accent); line-height: 1; }
  .honest h3 { color: var(--paper); }
  .honest p { color: rgba(255,255,255,.75); margin: 0; }

  /* ---------- Steps ---------- */
  .steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
  .step { border-top: 3px solid var(--accent); padding-top: 16px; }
  .step h3 { font-size: 17px; }
  .step p { font-size: 15px; color: var(--ink-soft); margin: 0; }

  /* ---------- Reels ---------- */
  .reels { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 720px; }
  .social-links { display: flex; gap: 14px; margin-top: 26px; flex-wrap: wrap; }

  /* ---------- Quotes ---------- */
  .quotes { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  blockquote {
    margin: 0; background: var(--surface); border: 1px solid var(--line); border-radius: 2px;
    padding: 26px; font-size: 16.5px; font-style: italic;
  }
  blockquote footer { font-style: normal; font-size: 13.5px; color: var(--ink-soft); margin-top: 14px; }

  /* ---------- CTA band ---------- */
  .cta-band { background: var(--accent); color: var(--accent-ink); }
  .cta-band .inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
  .cta-band h2 { margin: 0; }
  .cta-band .btn { background: var(--accent-ink); color: var(--accent); }

  /* ---------- Widget ---------- */
  .widget { background: var(--surface); border: 1px solid var(--line); border-radius: 2px; padding: 34px; max-width: 640px; }
  .widget .wstep { display: none; }
  .widget .wstep.on { display: block; }
  .widget .qlabel { font-weight: 700; font-size: 17px; margin-bottom: 16px; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
  .chips { display: flex; flex-wrap: wrap; gap: 10px; }
  .chip {
    border: 1.5px solid var(--ink); background: transparent; color: var(--ink);
    font-size: 14.5px; font-weight: 600; padding: 10px 18px; border-radius: 999px; cursor: pointer;
  }
  .chip:hover { background: var(--accent-soft); }
  .chip.sel { background: var(--ink); color: var(--paper); }
  .wnav { display: flex; align-items: center; gap: 16px; margin-top: 26px; }
  .wback { background: none; border: none; color: var(--ink-soft); font-size: 14px; cursor: pointer; padding: 0; }
  .wprogress { margin-left: auto; font-size: 12.5px; color: var(--ink-soft); letter-spacing: .08em; }
  .field { margin-bottom: 16px; }
  .field label { display: block; font-size: 13.5px; font-weight: 600; margin-bottom: 6px; }
  .field input, .field select, .field textarea {
    width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 2px;
    background: var(--paper); color: var(--ink); font-size: 15.5px;
  }
  .field input:focus, .field textarea:focus, .field select:focus { outline: 2px solid var(--accent); border-color: var(--accent); }
  .success {
    display: none; background: var(--accent-soft); border: 1px solid var(--accent);
    padding: 18px 20px; border-radius: 2px; font-size: 15px; margin-top: 20px;
  }
  .success.on { display: block; }

  /* ---------- Stats (Makler) ---------- */
  .stats { display: flex; gap: 48px; flex-wrap: wrap; margin: 32px 0; }
  .stat .n { font-family: "Avenir Next Condensed", "Arial Narrow", sans-serif; font-weight: 800; font-size: 56px; line-height: 1; font-variant-numeric: tabular-nums; }
  .stat .l { font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; margin-top: 6px; }

  /* ---------- Contact ---------- */
  .contact-info { display: flex; flex-direction: column; gap: 6px; font-size: 16px; }
  .contact-info a { font-weight: 600; }

  /* ---------- Footer ---------- */
  footer.site {
    border-top: 1px solid var(--line); padding: 44px 0 60px; margin-top: 72px;
    font-size: 14px; color: var(--ink-soft);
  }
  footer.site .cols { display: flex; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
  footer.site a { color: var(--ink-soft); }
  footer.site nav { display: flex; gap: 18px; flex-wrap: wrap; }

  /* ---------- Responsive ---------- */
  @media (max-width: 860px) {
    .hero { grid-template-columns: 1fr; gap: 36px; padding-top: 48px; }
    .hero .ph.portrait { max-width: 420px; }
    .grid3, .steps, .quotes, .grid2 { grid-template-columns: 1fr; }
    .reels { grid-template-columns: repeat(3, 1fr); gap: 12px; }
    nav.main {
      display: none; position: absolute; top: 100%; left: 0; right: 0;
      background: var(--paper); border-bottom: 1px solid var(--line);
      flex-direction: column; align-items: stretch; padding: 12px 24px 20px;
    }
    nav.main.open { display: flex; }
    .menu-toggle { display: block; }
    .site-inner { position: relative; }
    .honest .item { grid-template-columns: 56px 1fr; }
  }
