/* Günay Sarıkaya — kişisel marka sitesi
   Palet: ink zemin + kırık beyaz metin + altın aksan.
   Not: Century 21 kurumsal varlıkları (logo, amblem, kurumsal renk/yazı tipi) KULLANILMAZ. */

:root {
  --ink:        #0E1116;
  --ink-2:      #131822;
  --ink-3:      #1A2029;
  --line:       #262D38;
  --paper:      #F2EFE9;
  --paper-dim:  #B9BDC4;
  --paper-mute: #868C96;
  --gold:       #B08D42;
  --gold-soft:  #D4B26A;
  --gold-dim:   rgba(176, 141, 66, 0.28);

  --serif: "Playfair Display", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --wrap: 1120px;
  --pad: 24px;
  --radius: 4px;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 84px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--gold-soft); text-decoration: none; }
a:hover { color: var(--paper); }
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--gold-soft);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--gold); color: var(--ink);
  padding: 10px 16px; z-index: 100; font-weight: 500;
}
.skip-link:focus { left: 12px; top: 12px; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--pad); }
.wrap.narrow { max-width: 760px; }
.center { text-align: center; }

/* ---------- Tipografi ---------- */
h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.15; margin: 0; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.9rem, 9vw, 5rem); }
h2 { font-size: clamp(1.9rem, 4.6vw, 2.8rem); margin-bottom: 22px; }
h3 { font-size: 1.28rem; margin-bottom: 10px; }

.eyebrow {
  font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin: 0 0 14px;
}
.eyebrow::after {
  content: ""; display: block; width: 34px; height: 1px;
  background: var(--gold-dim); margin-top: 12px;
}
.center .eyebrow::after { margin-left: auto; margin-right: auto; }

.prose { color: var(--paper-dim); max-width: 62ch; }
.center .prose { margin-left: auto; margin-right: auto; }
.prose p { margin: 0 0 18px; }

/* ---------- Üst bar ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(14, 17, 22, 0.86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 68px; gap: 16px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--paper); }
.brand:hover { color: var(--paper); }
.brand-mark {
  width: 34px; height: 34px; flex: 0 0 34px;
  display: grid; place-items: center;
  border: 1px solid var(--gold-dim); color: var(--gold-soft);
  font-family: var(--serif); font-size: 0.86rem; letter-spacing: 0.06em;
}
.brand-text { font-family: var(--serif); font-size: 1.06rem; letter-spacing: 0.01em; }

.nav { display: flex; gap: 28px; }
.nav a {
  color: var(--paper-dim); font-size: 0.9rem; letter-spacing: 0.02em;
  padding: 6px 0; position: relative;
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 1px; background: var(--gold); transition: right 0.25s ease;
}
.nav a:hover { color: var(--paper); }
.nav a:hover::after { right: 0; }

.nav-toggle {
  display: none;
  width: 42px; height: 42px; padding: 10px;
  background: none; border: 1px solid var(--line); border-radius: var(--radius);
  cursor: pointer;
}
.nav-toggle span {
  display: block; height: 1.5px; background: var(--paper);
  margin: 4px 0; transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(60px, 10vw, 120px) 0 clamp(64px, 9vw, 110px);
  background:
    radial-gradient(900px 480px at 78% 18%, rgba(176, 141, 66, 0.11), transparent 62%),
    linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%);
  border-bottom: 1px solid var(--line);
}
.hero-inner {
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(32px, 6vw, 72px); align-items: center;
}
.hero h1 { margin: 0 0 14px; }
.role {
  font-size: 1.02rem; color: var(--gold-soft); font-weight: 400;
  letter-spacing: 0.02em; margin: 0 0 26px;
}
.lede { color: var(--paper-dim); max-width: 46ch; margin: 0 0 32px; }

.cta-row { display: flex; flex-wrap: wrap; gap: 14px; }
.center .cta-row { justify-content: center; margin-top: 30px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 26px; border-radius: var(--radius);
  font-family: var(--sans); font-size: 0.94rem; font-weight: 500; letter-spacing: 0.02em;
  border: 1px solid transparent; cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.btn-primary { background: var(--gold); color: #14161A; border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-soft); border-color: var(--gold-soft); color: #14161A; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--paper); border-color: var(--line); }
.btn-ghost:hover { color: var(--paper); border-color: var(--gold); background: rgba(176, 141, 66, 0.08); }


/* Hero görseli: monogram plakası (foto gelince .portrait <img> ile değişecek) */
.hero-visual { display: flex; justify-content: center; }
.mark {
  width: 100%; max-width: 320px;
  padding: clamp(38px, 6vw, 58px) 24px;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: linear-gradient(160deg, var(--ink-3) 0%, #0F131A 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 18px; position: relative;
}
.mark::after {
  content: ""; position: absolute; inset: 10px;
  border: 1px solid var(--gold-dim); pointer-events: none;
}
.mark-monogram {
  font-family: var(--serif); font-size: clamp(3.2rem, 9vw, 4.6rem);
  color: var(--gold-soft); letter-spacing: 0.1em; line-height: 1;
  text-indent: 0.1em;
}
.mark-rule { width: 46px; height: 1px; background: var(--gold-dim); }
.mark-line {
  font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--paper-mute); text-align: center;
}
/* Foto gelince kullanılacak */
.portrait {
  margin: 0; width: 100%; max-width: 340px; aspect-ratio: 4 / 5;
  object-fit: cover; border: 1px solid var(--line); border-radius: var(--radius);
}

/* ---------- Bölümler ---------- */
.section { padding: clamp(64px, 9vw, 108px) 0; }
.section--alt { background: var(--ink-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.facts {
  list-style: none; margin: 40px 0 0; padding: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line);
}
.facts li { background: var(--ink); padding: 20px 22px; display: flex; flex-direction: column; gap: 4px; }
.facts strong {
  font-weight: 500; font-size: 0.7rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold);
}
.facts span { font-size: 0.95rem; color: var(--paper-dim); }

/* Kartlar */
.cards {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 20px; margin-top: 40px;
}
.card {
  background: var(--ink); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px 32px; position: relative;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.card:hover { border-color: var(--gold-dim); transform: translateY(-2px); }
.card-num {
  font-family: var(--serif); font-size: 0.8rem; letter-spacing: 0.14em;
  color: var(--gold); display: block; margin-bottom: 14px;
}
.card p { color: var(--paper-dim); font-size: 0.95rem; margin: 0; }

/* İletişim */
.contact-lede { margin-bottom: 40px; }
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: start; }
.contact-list { list-style: none; margin: 0; padding: 0; }
.contact-list li {
  display: flex; flex-direction: column; gap: 4px;
  padding: 16px 0; border-bottom: 1px solid var(--line);
}
.contact-list li:first-child { padding-top: 0; }
.label {
  font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); font-weight: 500;
}
.contact-list a { font-size: 1.02rem; }

.office { border-left: 1px solid var(--line); padding-left: 30px; }
.office-addr { color: var(--paper-dim); margin: 8px 0 14px; line-height: 1.8; }
.office-links { margin: 0; font-size: 0.9rem; display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.office-links span { color: var(--paper-mute); }

/* ---------- Alt bilgi ---------- */
.site-footer { border-top: 1px solid var(--line); padding: 32px 0 40px; background: var(--ink); }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap; }
.site-footer p { margin: 0; font-size: 0.84rem; color: var(--paper-mute); }
.footer-note { color: var(--paper-mute); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  /* Mobilde monogram plakası gizlenir: hero saf tipografi kalır (üst bardaki GS ile tekrar etmesin).
     assets/gunay-sarikaya.jpg gelip <img class="portrait"> konduğunda blok otomatik geri gelir. */
  .hero-visual:not(:has(.portrait)) { display: none; }
  .mark { max-width: 260px; }
  .portrait { max-width: 260px; }
  .contact-grid { grid-template-columns: 1fr; gap: 28px; }
  .office { border-left: 0; border-top: 1px solid var(--line); padding-left: 0; padding-top: 24px; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .nav-toggle { display: block; }
  .nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--ink-2); border-bottom: 1px solid var(--line);
    flex-direction: column; gap: 0; padding: 6px var(--pad) 16px;
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 0.98rem; }
  .nav a:last-child { border-bottom: 0; }
  .nav a::after { display: none; }

  .cards { grid-template-columns: 1fr; }
  .facts { grid-template-columns: 1fr; }
  .cta-row { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
