:root {
  --ink: #241a1e;
  --paper: #fbf6ec;
  --paper-deep: #f2e9da;
  --wine: #3d1420;
  --wine-deep: #2a0d16;
  --wine-soft: #5c2436;
  --brass: #b8874a;
  --brass-light: #d9b98a;
  --rose: #e3cdbd;
  --line: rgba(36, 26, 30, 0.14);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Karla', -apple-system, system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

a { color: inherit; }

:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
}

.wrap {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- Header ---------- */

header.site {
  background: var(--wine-deep);
  color: var(--paper);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
}

.wordmark {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  color: var(--paper);
}

.site-nav nav {
  display: flex;
  gap: 28px;
}

.site-nav nav a {
  text-decoration: none;
  color: var(--rose);
  font-size: 15px;
}

.site-nav nav a:hover { color: var(--paper); }

/* ---------- Hero ---------- */

.hero {
  background: var(--wine-deep);
  color: var(--paper);
  padding: 48px 0 96px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: 44px;
  line-height: 1.15;
  font-weight: 500;
  margin: 0 0 22px;
  max-width: 15ch;
}

.hero p.lede {
  font-size: 18px;
  line-height: 1.65;
  color: var(--rose);
  max-width: 46ch;
  margin: 0 0 34px;
}

.button-row { display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid transparent;
}

.btn-brass {
  background: var(--brass);
  color: var(--wine-deep);
}
.btn-brass:hover { background: var(--brass-light); }

.btn-outline {
  border-color: rgba(251, 246, 236, 0.35);
  color: var(--paper);
}
.btn-outline:hover { border-color: var(--paper); }

/* Abstract vertical video frame motif */
.frame-motif {
  position: relative;
  justify-self: center;
  width: 200px;
  height: 380px;
  border-radius: 22px;
  background: linear-gradient(165deg, var(--wine-soft) 0%, var(--wine-deep) 78%);
  border: 1px solid rgba(216, 174, 130, 0.35);
  box-shadow: 0 30px 70px rgba(0,0,0,0.35);
  overflow: hidden;
}

.frame-motif::before {
  content: "";
  position: absolute;
  top: 22%;
  left: 50%;
  width: 130px;
  height: 130px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217,185,138,0.55) 0%, rgba(217,185,138,0) 70%);
}

.frame-motif::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 26px;
  height: 2px;
  background: rgba(251, 246, 236, 0.25);
}

.frame-lines {
  position: absolute;
  left: 24px;
  bottom: 40px;
  right: 24px;
}
.frame-lines span {
  display: block;
  height: 8px;
  border-radius: 4px;
  background: rgba(251, 246, 236, 0.22);
  margin-bottom: 8px;
}
.frame-lines span:nth-child(1) { width: 72%; }
.frame-lines span:nth-child(2) { width: 48%; }

/* ---------- Sections ---------- */

section { padding: 80px 0; }

.section-head {
  max-width: 46ch;
  margin-bottom: 44px;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 500;
  margin: 0 0 12px;
}

.section-head p {
  color: rgba(36,26,30,0.68);
  margin: 0;
}

/* Nasil calisir */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.step .step-mark {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--brass);
  margin-bottom: 10px;
}

.step h3 {
  font-size: 17px;
  margin: 0 0 8px;
  font-weight: 700;
}

.step p {
  font-size: 15px;
  color: rgba(36,26,30,0.68);
  margin: 0;
}

/* Ozel gunler - index-style list, not cards */
.occasions {
  border-top: 1px solid var(--line);
}

.occasion-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.occasion-row .name {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 500;
}

.occasion-row .desc {
  color: rgba(36,26,30,0.6);
  font-size: 15px;
  text-align: right;
  max-width: 34ch;
}

/* Sicak sozler / testimonial-style pull quote */
.pull {
  background: var(--paper-deep);
}

.pull blockquote {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1.4;
  font-weight: 500;
  margin: 0;
  max-width: 30ch;
}

.pull cite {
  display: block;
  margin-top: 18px;
  font-style: normal;
  font-size: 15px;
  color: rgba(36,26,30,0.6);
}

/* CTA */
.cta {
  background: var(--wine-deep);
  color: var(--paper);
  text-align: center;
}

.cta h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  margin: 0 0 18px;
}

.cta p {
  color: var(--rose);
  margin: 0 0 30px;
}

/* ---------- Footer ---------- */

footer.site {
  background: var(--wine-deep);
  color: rgba(251, 246, 236, 0.55);
  padding: 36px 0;
  font-size: 14px;
  border-top: 1px solid rgba(251,246,236,0.1);
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-row a {
  text-decoration: none;
  color: rgba(251,246,236,0.75);
  margin-left: 20px;
}
.footer-row a:hover { color: var(--paper); }

/* ---------- Simple content pages (gizlilik / destek / sartlar / 404) ---------- */

.page-hero {
  background: var(--wine-deep);
  color: var(--paper);
  padding: 56px 0;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 500;
  margin: 0;
}

.prose {
  max-width: 68ch;
  padding: 56px 28px;
  margin: 0 auto;
}

.prose h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  margin: 40px 0 12px;
}

.prose h2:first-child { margin-top: 0; }

.prose p, .prose li {
  color: rgba(36,26,30,0.82);
  font-size: 16px;
}

.prose a { color: var(--wine); text-decoration: underline; }

.faq-item {
  border-top: 1px solid var(--line);
  padding: 22px 0;
}
.faq-item h3 {
  font-size: 17px;
  margin: 0 0 8px;
}
.faq-item p { margin: 0; }

/* ---------- Payment result page ---------- */

.result-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--paper);
  padding: 24px;
}

.result-card {
  max-width: 360px;
  text-align: center;
}

.result-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  font-size: 28px;
  color: var(--paper);
}

.result-icon.success { background: #3d6b4f; }
.result-icon.fail { background: #8a3b3b; }

.result-card h1 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 10px;
}

.result-card p {
  color: rgba(36,26,30,0.68);
  margin: 0 0 24px;
}

/* ---------- 404 page ---------- */

.notfound-page {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
}

.notfound-page .kod {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 600;
  color: var(--brass);
  margin: 0;
}

.notfound-page h1 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  margin: 8px 0 12px;
}

.notfound-page p {
  color: rgba(36,26,30,0.68);
  margin: 0 0 28px;
}

/* ---------- Responsive ---------- */

@media (max-width: 760px) {
  .hero-grid { grid-template-columns: 1fr; }
  .frame-motif { order: -1; width: 160px; height: 300px; }
  .hero h1 { font-size: 34px; }
  .steps { grid-template-columns: 1fr 1fr; }
  .occasion-row { flex-direction: column; gap: 4px; }
  .occasion-row .desc { text-align: left; }
  .footer-row { flex-direction: column; align-items: flex-start; }
  .footer-row .links a { margin-left: 0; margin-right: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
