/* Antikacın — tanıtım sitesi stilleri
   Marka: sıcak kahve / bordo / altın / krem. Tipografi: Fraunces (serif başlık) + DM Sans (gövde). */

:root {
  --primary: #b87c4c;
  --primary-dark: #865530;
  --primary-deep: #6b432a;
  --bordo: #8b1a2b;
  --gold: #d4a940;
  --cream: #faf8f5;
  --cream-2: #f5f0e8;
  --sand: #e8e0d0;
  --ink: #1a1512;
  --muted: #6b5d4a;
  --muted-2: #8c7e6a;
  --white: #fff;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 1px 3px rgba(60, 40, 20, 0.06);
  --shadow: 0 10px 30px rgba(80, 50, 25, 0.10);
  --shadow-lg: 0 30px 70px rgba(80, 50, 25, 0.18);
  --container: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3 {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-dark);
  background: var(--cream-2);
  border: 1px solid var(--sand);
  padding: 6px 14px;
  border-radius: 999px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 26px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn-primary {
  background: var(--primary-dark);
  color: var(--white);
  box-shadow: 0 8px 22px rgba(134, 85, 48, 0.32);
}
.btn-primary:hover { transform: translateY(-2px); background: var(--primary-deep); }
.btn-ghost {
  background: transparent;
  color: var(--primary-dark);
  border: 1.5px solid var(--sand);
}
.btn-ghost:hover { background: var(--cream-2); }

/* ---------- Navbar ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--primary-dark);
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0 2px 12px rgba(80, 50, 25, 0.18);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
/* Logo tipi wordmark — Lobster script, beyaz */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Lobster", "Fraunces", cursive;
  font-weight: 400;
  font-size: 30px;
  line-height: 1;
  color: #fff;
  letter-spacing: 0.5px;
}
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 15px; color: rgba(255, 255, 255, 0.85); font-weight: 500; transition: color 0.15s; }
.nav-links a:hover { color: #fff; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.pill-soon {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-deep);
  background: var(--gold);
  border: none;
  padding: 5px 12px;
  border-radius: 999px;
}
.nav-toggle { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 84px 0 72px;
  background:
    radial-gradient(1100px 480px at 80% -10%, rgba(212, 169, 64, 0.14), transparent 60%),
    radial-gradient(900px 500px at 0% 0%, rgba(184, 124, 76, 0.12), transparent 55%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(38px, 5.4vw, 64px);
  margin: 22px 0 18px;
}
.hero h1 .accent { color: var(--primary-dark); font-style: italic; }
.hero p.lead {
  font-size: 19px;
  color: var(--muted);
  max-width: 520px;
  margin: 0 0 30px;
}
.store-badges { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--ink);
  color: var(--white);
  padding: 11px 20px 11px 18px;
  border-radius: 14px;
  min-width: 190px;
  opacity: 0.96;
  position: relative;
}
.store-badge svg { width: 26px; height: 26px; flex-shrink: 0; }
.store-badge > span:last-child { display: flex; flex-direction: column; line-height: 1.1; }
.store-badge .sb-small { font-size: 11px; opacity: 0.8; line-height: 1.2; }
.store-badge .sb-big { font-size: 17px; font-weight: 600; font-family: "DM Sans", sans-serif; line-height: 1.2; }
.store-badge .sb-tag {
  position: absolute;
  top: -10px; right: 10px;
  font-size: 10px; font-weight: 700;
  background: var(--gold); color: var(--ink);
  padding: 2px 8px; border-radius: 999px;
  letter-spacing: 0.04em;
}

/* Phone mockup */
.phone-wrap { display: flex; justify-content: center; align-items: center; position: relative; }
.phone {
  position: relative;
  width: 280px;
  height: 580px;
  background: linear-gradient(160deg, #3a2a1e, #1f1712);
  border-radius: 44px;
  padding: 12px;
  box-shadow: var(--shadow-lg);
  transform: rotate(-3deg);
}
.phone::before {
  content: "";
  position: absolute;
  top: 18px; left: 50%; transform: translateX(-50%);
  width: 120px; height: 26px;
  background: #1f1712;
  border-radius: 0 0 16px 16px;
  z-index: 2;
}
.phone-screen {
  width: 100%; height: 100%;
  border-radius: 34px;
  overflow: hidden;
  background:
    radial-gradient(400px 200px at 50% 0%, rgba(212, 169, 64, 0.25), transparent 60%),
    linear-gradient(170deg, #fdf5ed, #f5e6d2 60%, #efd9bd);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 28px;
}
.phone-screen img { width: 88px; height: 88px; border-radius: 22px; box-shadow: var(--shadow); }
.phone-screen .ps-title { font-family: "Fraunces", serif; font-size: 26px; color: var(--primary-deep); margin-top: 18px; }
.phone-screen .ps-sub { font-size: 13px; color: var(--muted); margin-top: 6px; }
.phone-float {
  position: absolute;
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 9px;
}
.phone-float.f1 { top: 64px; left: -18px; color: var(--bordo); }
.phone-float.f2 { bottom: 90px; right: -22px; color: var(--primary-dark); }
.phone-float .dot { width: 9px; height: 9px; border-radius: 50%; background: currentColor; box-shadow: 0 0 0 4px rgba(139, 26, 43, 0.12); }
.phone-float.f2 .dot { box-shadow: 0 0 0 4px rgba(184, 124, 76, 0.16); }

/* ---------- Sections ---------- */
section { padding: 84px 0; }
.section-head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: clamp(30px, 4vw, 44px); margin: 16px 0 14px; }
.section-head p { font-size: 18px; color: var(--muted); margin: 0; }

/* Feature rows */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 64px;
}
.feature:last-child { margin-bottom: 0; }
.feature.reverse .feature-media { order: -1; }
.feature-text h3 { font-size: 30px; margin-bottom: 14px; }
.feature-text p { font-size: 17px; color: var(--muted); margin: 0; }
.feature-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  background: var(--cream-2);
  border: 1px solid var(--sand);
  margin-bottom: 20px;
}
.feature-icon svg { width: 28px; height: 28px; stroke: var(--primary-dark); }
.feature-media {
  height: 320px;
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, var(--cream-2), #efe2cf);
  border: 1px solid var(--sand);
  box-shadow: var(--shadow);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.feature-media::after {
  content: "Görsel yakında";
  font-size: 13px; color: var(--muted-2);
  position: absolute; bottom: 16px; right: 18px;
  background: rgba(255,255,255,0.7); padding: 4px 10px; border-radius: 999px;
}
.feature-media .fm-emoji { font-size: 72px; opacity: 0.9; }

/* Elden teslim */
.handover-card {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 36px;
  align-items: center;
  background: linear-gradient(150deg, var(--cream-2), #efe2cf);
  border: 1px solid var(--sand);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow);
}
.handover-text h2 { font-size: clamp(26px, 3.4vw, 36px); margin-bottom: 14px; }
.handover-text > p { font-size: 16px; color: var(--muted); margin: 0 0 22px; line-height: 1.6; }
.handover-tips { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.handover-tips li { display: flex; align-items: center; gap: 12px; font-size: 14.5px; color: var(--ink); }
.handover-tips .ht-ic {
  width: 36px; height: 36px; flex-shrink: 0; border-radius: 10px;
  background: var(--white); border: 1px solid var(--sand);
  display: flex; align-items: center; justify-content: center; color: var(--primary-dark);
}
.handover-tips .ht-ic svg { width: 18px; height: 18px; }
.handover-visual {
  height: 240px; border-radius: var(--radius);
  background: linear-gradient(140deg, var(--primary), var(--primary-dark));
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
}
.handover-visual .hv-emoji { font-size: 88px; }
@media (max-width: 760px) {
  .handover-card { grid-template-columns: 1fr; padding: 30px 24px; gap: 26px; }
  .handover-visual { height: 150px; order: -1; }
  .handover-visual .hv-emoji { font-size: 64px; }
}

/* Categories */
.cats { background: var(--cream-2); }
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
  max-width: 1000px;
  margin: 0 auto;
}
.cat-card {
  display: flex;
  align-items: center;
  gap: 13px;
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s, border-color 0.15s, box-shadow 0.15s;
}
.cat-card:hover { transform: translateY(-2px); border-color: var(--primary); box-shadow: var(--shadow); }
.cat-card .cat-ic {
  width: 42px; height: 42px;
  flex-shrink: 0;
  border-radius: 12px;
  background: var(--cream-2);
  border: 1px solid var(--sand);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary-dark);
}
.cat-card .cat-ic svg { width: 21px; height: 21px; }
.cat-card > span:last-child { font-size: 14px; font-weight: 500; color: var(--ink); line-height: 1.25; }

/* Why cards */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card {
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
}
.why-card .wc-icon {
  width: 50px; height: 50px; border-radius: 14px;
  background: linear-gradient(140deg, var(--primary), var(--primary-dark));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.why-card .wc-icon svg { width: 26px; height: 26px; stroke: #fff; }
.why-card h3 { font-size: 21px; margin-bottom: 10px; }
.why-card p { font-size: 15px; color: var(--muted); margin: 0; }

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--primary-deep), var(--primary-dark) 55%, var(--bordo));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align: center;
  box-shadow: var(--shadow);
}
.cta-band h2 { color: var(--white); font-size: clamp(28px, 4vw, 40px); margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,0.86); font-size: 18px; max-width: 560px; margin: 0 auto 28px; }
.cta-band .store-badge { background: var(--white); color: var(--ink); }
.cta-band .store-badge svg { fill: var(--ink); }
.cta-band .store-badges { justify-content: center; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 48px; align-items: start; }
.contact-info h2 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 16px; }
.contact-info p { color: var(--muted); font-size: 17px; margin: 0 0 28px; }
.contact-item { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.contact-item .ci-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--cream-2); border: 1px solid var(--sand);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-item .ci-icon svg { width: 22px; height: 22px; stroke: var(--primary-dark); }
.contact-item .ci-label { font-size: 13px; color: var(--muted-2); }
.contact-item .ci-value { font-size: 16px; font-weight: 600; color: var(--ink); }
.socials { display: flex; gap: 12px; margin-top: 26px; }
.socials a {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--cream-2); border: 1px solid var(--sand);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.15s, background 0.15s;
}
.socials a:hover { transform: translateY(-2px); background: var(--white); }
.socials svg { width: 20px; height: 20px; fill: var(--primary-dark); }

.contact-form {
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
}
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 7px; color: var(--ink); }
/* Honeypot: ekran dışı, insan görmez/odaklanmaz; bot doldurursa reddedilir */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
/* Güvenlik sorusu yenile butonu */
.cf-refresh {
  border: none; background: none; cursor: pointer; color: var(--primary, #B87C4C);
  font-size: 16px; line-height: 1; padding: 2px 4px; margin-left: 4px;
  vertical-align: middle; border-radius: 6px; transition: transform .2s, background .2s;
}
.cf-refresh:hover { background: rgba(184, 124, 76, .12); transform: rotate(90deg); }
.field input, .field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  background: var(--cream);
  border: 1.5px solid var(--sand);
  border-radius: 12px;
  padding: 13px 15px;
  transition: border-color 0.15s, background 0.15s;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
}
.field textarea { resize: vertical; min-height: 130px; }
.form-msg { font-size: 14px; margin-top: 6px; min-height: 20px; }
.form-msg.ok { color: #2e7d32; }
.form-msg.err { color: var(--bordo); }
.contact-form .btn { width: 100%; margin-top: 6px; }

/* Footer */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 56px 0 32px;
}
.footer-top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; margin-bottom: 36px; }
.footer .brand { color: #fff; }
.footer-tagline { font-size: 14px; max-width: 280px; margin-top: 14px; color: rgba(255,255,255,0.6); }
.footer-cols { display: flex; gap: 64px; flex-wrap: wrap; }
.footer-col h4 { font-family: "DM Sans", sans-serif; font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.5); margin: 0 0 14px; }
.footer-col a { display: block; font-size: 15px; color: rgba(255,255,255,0.78); margin-bottom: 10px; transition: color 0.15s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 22px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 13px; color: rgba(255,255,255,0.5);
}

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Legal pages ---------- */
.legal { padding: 64px 0 80px; }
.legal-inner { max-width: 760px; margin: 0 auto; }
.legal h1 { font-size: clamp(32px, 5vw, 46px); margin-bottom: 10px; }
.legal .updated { color: var(--muted-2); font-size: 14px; margin-bottom: 36px; }
.legal h2 { font-size: 24px; margin: 36px 0 12px; }
.legal p, .legal li { color: var(--muted); font-size: 16px; }
.legal ul { padding-left: 22px; }
.legal li { margin-bottom: 8px; }
.legal a { color: var(--primary-dark); text-decoration: underline; }
.back-link { display: inline-flex; align-items: center; gap: 8px; color: var(--primary-dark); font-weight: 600; margin-bottom: 28px; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .phone-wrap { order: -1; }
  .feature { grid-template-columns: 1fr; gap: 28px; }
  .feature.reverse .feature-media { order: 0; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; gap: 18px;
    position: absolute; top: 72px; left: 0; right: 0;
    background: var(--primary-dark); padding: 24px; border-bottom: 1px solid rgba(0,0,0,0.15);
  }
  .nav-toggle {
    display: inline-flex; background: none; border: none; cursor: pointer; padding: 6px;
  }
  .nav-toggle svg { width: 26px; height: 26px; stroke: #fff; }
}
@media (max-width: 520px) {
  section { padding: 60px 0; }
  .store-badges { flex-direction: column; align-items: stretch; }
  .store-badge { min-width: 0; width: 100%; }
  .cta-band { padding: 44px 24px; }
}
