:root{
  --bg: #FFF8EE;
  --bg-soft: #FCEFDD;
  --panel: #FFFFFF;
  --ink: #2B2118;
  --ink-soft: #6B5B4B;
  --teal: #2F6F5E;
  --teal-deep: #1F4E42;
  --gold: #E8A33D;
  --gold-soft: #F6D9A6;
  --line: #EADFCD;
  --shadow: 0 12px 32px -16px rgba(43,33,24,0.25);
  --radius: 18px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
}
h1,h2,h3{
  font-family: 'Fraunces', serif;
  margin: 0 0 .4em 0;
  letter-spacing: -0.01em;
}
a{ color: inherit; }
.mono{ font-family: 'JetBrains Mono', monospace; }
img{ max-width:100%; display:block; }
.wrap{ max-width: 1080px; margin: 0 auto; padding: 0 28px; }
section{ padding: 96px 0; }
@media (max-width: 700px){ section{ padding: 64px 0; } .wrap{ padding: 0 20px; } }

/* NAV */
header.nav{
  position: sticky; top:0; z-index: 50;
  background: rgba(255,248,238,0.88);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav-inner{
  position: relative;
  max-width: 1080px; margin: 0 auto; padding: 16px 28px;
  display:flex; align-items:center; justify-content:space-between;
}
.logo{ font-family:'Fraunces', serif; font-weight:700; font-size:1.15rem; }
.logo span{ color: var(--teal); }
nav.links{ display:flex; gap: 28px; }
nav.links a{
  text-decoration:none; font-size:.94rem; font-weight:500; color: var(--ink-soft);
  transition: color .2s;
}
nav.links a:hover{ color: var(--teal-deep); }

.nav-toggle{
  display:none; flex-direction:column; justify-content:center; gap:5px;
  width: 40px; height: 40px; background:none; border:none; cursor:pointer;
  padding: 0; flex-shrink: 0;
}
.nav-toggle span{
  display:block; width: 100%; height: 2px; background: var(--ink);
  border-radius: 2px; transition: transform .25s, opacity .2s;
}
.nav-toggle.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2){ opacity: 0; }
.nav-toggle.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 700px){
  .nav-toggle{ display:flex; }
  nav.links{
    position: absolute; top: 100%; left:0; right:0;
    flex-direction: column; gap:0;
    background: var(--panel); border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    max-height: 0; overflow: hidden; opacity: 0;
    transition: max-height .3s ease, opacity .25s ease;
  }
  nav.links.open{ max-height: 320px; opacity: 1; }
  nav.links a{
    font-size: 1rem; padding: 14px 20px; border-bottom: 1px solid var(--line);
  }
  nav.links a:last-child{ border-bottom:none; }
}

/* HERO */
#ana-sayfa{ padding-top: 90px; }
.hero-grid{
  display:grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items:center;
}
@media (max-width: 860px){ .hero-grid{ grid-template-columns: 1fr; } }
.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  background: var(--gold-soft); color:#7A4E10;
  padding: 6px 14px; border-radius: 999px;
  font-size:.8rem; font-weight:600; margin-bottom: 18px;
}
.eyebrow .dot{ width:7px; height:7px; border-radius:50%; background:#2FA372; display:inline-block; }
h1.hero-title{
  font-size: clamp(2.3rem, 4.6vw, 3.4rem);
  line-height: 1.08;
  font-weight: 600;
}
h1.hero-title em{ font-style: italic; color: var(--teal-deep); }
.hero-sub{ color: var(--ink-soft); font-size: 1.08rem; max-width: 46ch; margin: 18px 0 30px; }
.btn-row{ display:flex; gap: 14px; flex-wrap: wrap; }
.btn{
  padding: 13px 24px; border-radius: 999px; font-weight:600; font-size:.95rem;
  text-decoration:none; display:inline-flex; align-items:center; gap:8px;
  border: 1px solid transparent; cursor:pointer; transition: transform .15s, box-shadow .15s;
}
.btn-primary{ background: var(--teal); color:#fff; box-shadow: var(--shadow); }
.btn-primary:hover{ transform: translateY(-2px); }
.btn-ghost{ background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover{ border-color: var(--teal); color: var(--teal-deep); }

.rating-pill{
  margin-top: 34px; display:inline-flex; align-items:center; gap:10px;
  background: var(--panel); border:1px solid var(--line); border-radius: 999px;
  padding: 8px 16px 8px 8px; box-shadow: var(--shadow);
}
.rating-pill .stars{ color: var(--gold); font-size: 1rem; letter-spacing: 1px; }
.rating-pill .num{ font-weight:700; }
.rating-pill .count{ color: var(--ink-soft); font-size:.85rem; }

/* Browser mockup — imza öğesi */
.mockup{
  background: var(--panel); border-radius: var(--radius); box-shadow: var(--shadow);
  border: 1px solid var(--line); overflow:hidden;
}
.mockup-bar{
  display:flex; align-items:center; gap:7px; padding: 12px 16px;
  background: var(--bg-soft); border-bottom: 1px solid var(--line);
}
.mockup-bar .dot{ width:10px; height:10px; border-radius:50%; }
.mockup-bar .r{ background:#E8896E; } .mockup-bar .y{ background:#E8C13D; } .mockup-bar .g{ background:#6FBF8B; }
.mockup-body{ padding: 26px 24px; font-family:'JetBrains Mono', monospace; font-size:.86rem; color: var(--ink); overflow-x:auto; white-space:nowrap; }
.mockup-body .l1{ color:#A98F6B; }
.mockup-body .key{ color: var(--teal-deep); }
.mockup-body .str{ color:#B5641F; }
.mockup-body .bool{ color:#2FA372; font-weight:600; }
.caret{ display:inline-block; width:7px; height:1.1em; background:var(--teal); vertical-align:-2px; animation: blink 1s steps(1) infinite; }
@keyframes blink{ 50%{ opacity:0; } }

/* BÖLÜM BAŞLIKLARI */
.section-head{ max-width: 640px; margin-bottom: 44px; }
.section-head .eyebrow{ background:none; padding:0; color:var(--teal-deep); }
.section-head .eyebrow .dot{ background: var(--gold); }
.section-head p{ color: var(--ink-soft); }

/* HAKKIMDA */
#hakkimda{ background: var(--bg-soft); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.about-grid{ display:grid; grid-template-columns: .8fr 1.2fr; gap:56px; }
@media (max-width: 860px){
  .about-grid{ grid-template-columns: 1fr; }
  .avatar{ max-width: 220px; margin: 0 auto; }
}
.avatar{
  width: 100%; aspect-ratio: 1; border-radius: var(--radius);
  background: linear-gradient(155deg, var(--teal) 0%, var(--teal-deep) 100%);
  display:flex; align-items:center; justify-content:center;
  color:#fff; font-family:'Fraunces', serif; font-size: 3.6rem; font-weight:700;
  box-shadow: var(--shadow);
}
.skills{ display:flex; flex-wrap:wrap; gap:10px; margin-top: 22px; }
.skill{
  background: var(--panel); border:1px solid var(--line); border-radius: 10px;
  padding: 8px 14px; font-family:'JetBrains Mono', monospace; font-size:.82rem;
}

/* HİZMETLER */
.services-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 860px){ .services-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px){ .services-grid{ grid-template-columns: 1fr; } }
.service-card{
  background: var(--panel); border:1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px; transition: transform .2s, box-shadow .2s;
}
.service-card:hover{ transform: translateY(-4px); box-shadow: var(--shadow); }
.service-icon{
  width: 44px; height:44px; border-radius: 12px; background: var(--gold-soft);
  display:flex; align-items:center; justify-content:center; font-size:1.3rem; margin-bottom:16px;
}
.service-card h3{ font-size: 1.08rem; }
.service-card p{ color: var(--ink-soft); font-size:.92rem; margin:0; }

/* YORUMLAR */
#yorumlar{ background: var(--bg-soft); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.yorum-summary{
  display:flex; align-items:center; gap: 24px; background: var(--panel);
  border:1px solid var(--line); border-radius: var(--radius); padding: 24px 28px;
  margin-bottom: 40px; box-shadow: var(--shadow); flex-wrap:wrap;
}
.yorum-summary .big{ font-family:'Fraunces', serif; font-size: 2.6rem; font-weight:700; color: var(--teal-deep); }
.yorum-summary .stars-lg{ color: var(--gold); font-size: 1.2rem; letter-spacing:2px; }
.yorum-summary .meta{ color: var(--ink-soft); font-size:.9rem; }

.yorum-layout{ display:grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items:start; }
@media (max-width: 860px){ .yorum-layout{ grid-template-columns: 1fr; } }

.yorum-list{ display:flex; flex-direction:column; gap:16px; max-height: 620px; overflow-y:auto; padding-right:4px; }
.yorum-card{
  background: var(--panel); border:1px solid var(--line); border-radius: 14px;
  padding: 18px 20px; position:relative;
}
.yorum-card .top{ display:flex; justify-content:space-between; align-items:flex-start; margin-bottom:8px; gap:10px;}
.yorum-card .who{ font-weight:700; font-size:.95rem; }
.yorum-card .stars{ color: var(--gold); font-size:.85rem; white-space:nowrap; }
.yorum-card .txt{ color: var(--ink-soft); font-size:.92rem; margin:0; }
.yorum-card .date{ font-size:.72rem; color:#B3A38C; margin-top:8px; }
.empty-note{ color: var(--ink-soft); font-size:.92rem; background: var(--panel); border:1px dashed var(--line); border-radius:14px; padding:20px; text-align:center; }

.yorum-form{
  background: var(--panel); border:1px solid var(--line); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow); position: sticky; top: 90px;
}
@media (max-width: 860px){ .yorum-form{ position: static; } }
.yorum-form h3{ font-size:1.05rem; margin-bottom: 4px; }
.yorum-form .hint{ color: var(--ink-soft); font-size:.85rem; margin-bottom:18px; }
.field{ margin-bottom: 16px; }
.field label{ display:block; font-size:.82rem; font-weight:600; margin-bottom:6px; }
.field input, .field textarea{
  width:100%; padding: 11px 13px; border-radius:10px; border:1px solid var(--line);
  background: var(--bg); font-family:'Inter', sans-serif; font-size:.92rem; color: var(--ink);
}
.field textarea{ resize: vertical; min-height: 84px; }
.star-picker{ display:flex; gap:6px; font-size:1.5rem; }
.star-picker button{
  background:none; border:none; cursor:pointer; color:#DCD2BE; padding:0; line-height:1;
  transition: color .15s, transform .1s;
}
.star-picker button.active, .star-picker button:hover{ color: var(--gold); transform: scale(1.08); }
.submit-note{ font-size:.8rem; margin-top:10px; min-height: 1.2em; }
.submit-note.ok{ color:#2FA372; }
.submit-note.err{ color:#C24A3D; }
.submit-note.info{ color: var(--ink-soft); }

/* İLETİŞİM */
.contact-grid{ display:flex; gap:16px; flex-wrap:wrap; }
.contact-card{
  flex:1; min-width: 220px; background: var(--panel); border:1px solid var(--line);
  border-radius: var(--radius); padding: 24px; text-decoration:none; color:var(--ink);
  transition: transform .2s;
}
.contact-card:hover{ transform: translateY(-3px); }
.contact-card .label{ font-size:.78rem; color: var(--ink-soft); font-weight:600; text-transform:uppercase; letter-spacing:.04em;}
.contact-card .value{ font-family:'Fraunces', serif; font-size:1.15rem; margin-top:6px; }

footer{ text-align:center; padding: 40px 0; color: var(--ink-soft); font-size:.85rem; }

/* KÜÇÜK TELEFONLAR (≤420px) */
@media (max-width: 420px){
  .logo{ font-size: 1rem; }
  h1.hero-title{ font-size: clamp(1.9rem, 8vw, 2.4rem); }
  .hero-sub{ font-size: 1rem; }
  .btn{ padding: 12px 18px; font-size: .9rem; }
  .btn-row{ flex-direction: column; align-items: stretch; }
  .btn-row .btn{ justify-content: center; }
  .rating-pill{ flex-wrap: wrap; padding: 10px 14px; }
  .avatar{ font-size: 2.6rem; }
  .yorum-summary{ padding: 18px; gap: 16px; }
  .yorum-summary .big{ font-size: 2.1rem; }
  .contact-grid{ flex-direction: column; }
  .contact-card{ min-width: 100%; }
  .mockup-body{ font-size: .78rem; padding: 20px 16px; }
  .star-picker{ font-size: 1.7rem; gap: 4px; }
}

/* Dokunmatik cihazlarda hover yerine daha büyük dokunma alanı */
@media (hover: none) and (pointer: coarse){
  .star-picker button{ padding: 6px; }
  nav.links a{ min-height: 44px; display:flex; align-items:center; }
}
