:root {
  color-scheme: dark;
  --ink: #fff4e6;
  --muted: #cbbba8;
  --paper: #100c09;
  --surface: #1a130f;
  --surface-raised: #241912;
  --line: #47352a;
  --red: #dc5a4e;
  --red-dark: #6e1c18;
  --red-deep: #3c0f0d;
  --green: #174f3e;
  --green-soft: #101f19;
  --blue: #203342;
  --gold: #e0a83d;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  align-items: center;
  background: rgba(16, 12, 9, 0.76);
  color: #fffdf8;
  display: flex;
  justify-content: space-between;
  left: 0;
  padding: 14px 28px;
  position: fixed;
  right: 0;
  top: 0;
  transition: background 180ms ease, box-shadow 180ms ease;
  z-index: 20;
}

.site-header.is-scrolled {
  background: rgba(16, 12, 9, 0.96);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.38);
}

.brand,
.nav {
  align-items: center;
  display: flex;
}

.brand {
  font-size: 0.98rem;
  font-weight: 800;
  gap: 10px;
  text-decoration: none;
}

.brand-mark {
  align-items: center;
  background: var(--red);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  display: inline-flex;
  height: 34px;
  justify-content: center;
  width: 38px;
}

.nav {
  gap: 6px;
}

.nav a {
  border-radius: 6px;
  color: rgba(255, 253, 248, 0.84);
  font-size: 0.92rem;
  padding: 8px 10px;
  text-decoration: none;
}

.nav a:hover,
.nav a:focus-visible,
.nav a.is-active {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  outline: none;
}

.hero {
  align-items: flex-end;
  background:
    linear-gradient(90deg, rgba(15, 14, 12, 0.86) 0%, rgba(25, 23, 20, 0.72) 42%, rgba(25, 23, 20, 0.22) 100%),
    url("assets/sucuk-hanging.jpg") center / cover no-repeat;
  color: #fffdf8;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr);
  min-height: 78svh;
  padding: 112px 28px 34px;
}

.hero-content {
  max-width: 790px;
}

.eyebrow,
.section-kicker {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 0.96;
  margin: 0;
  max-width: 760px;
}

.hero-copy {
  color: rgba(255, 253, 248, 0.86);
  font-size: 1.22rem;
  margin: 24px 0 0;
  max-width: 660px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  align-items: center;
  border-radius: 6px;
  display: inline-flex;
  font-weight: 800;
  min-height: 46px;
  padding: 12px 18px;
  text-decoration: none;
}

.button.primary {
  background: #fffdf8;
  color: var(--red-deep);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fffdf8;
}

.hero-facts {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
  margin: 8px 0 0;
  max-width: 920px;
  padding: 0;
}

.hero-facts li {
  border-left: 3px solid var(--gold);
  min-height: 78px;
  padding: 8px 14px;
}

.hero-facts strong {
  display: block;
  font-size: 1.18rem;
  line-height: 1.2;
}

.hero-facts span {
  color: rgba(255, 253, 248, 0.74);
  display: block;
  font-size: 0.92rem;
  margin-top: 4px;
}

.container {
  margin: 0 auto;
  max-width: 1160px;
  padding: 0 28px;
}

.intro-band {
  background: #0f3f31;
  color: #f6fbf7;
  padding: 30px 0;
}

.intro-grid {
  align-items: start;
  display: grid;
  gap: 30px;
  grid-template-columns: 0.72fr 1.28fr;
}

.intro-grid h2,
.section-heading h2,
.origin-content h2,
.sources-section h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.45rem;
  line-height: 1.08;
  margin: 0;
}

.intro-grid p:last-child {
  color: rgba(246, 251, 247, 0.86);
  font-size: 1.05rem;
  margin: 0;
}

.section {
  padding: 82px 0;
}

.section-heading {
  max-width: 760px;
}

.section-heading.narrow {
  max-width: 520px;
}

.section-heading p:not(.section-kicker),
.origin-content p,
.sources-section p {
  color: var(--muted);
  font-size: 1.03rem;
  margin: 16px 0 0;
}

.feature-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 34px;
}

.feature-card {
  background: var(--surface-raised);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
  min-height: 292px;
  padding: 22px;
}

.feature-number {
  color: #ff8174;
  display: block;
  font-size: 0.86rem;
  font-weight: 900;
  margin-bottom: 18px;
}

.feature-card h3 {
  font-size: 1.18rem;
  line-height: 1.22;
  margin: 0;
}

.feature-card p {
  color: var(--muted);
  font-size: 0.96rem;
  margin: 14px 0 0;
}

.comparison {
  background: var(--surface-raised);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  margin-top: 34px;
  overflow: hidden;
}

.comparison-row {
  display: grid;
  gap: 18px;
  grid-template-columns: 0.7fr 1.15fr 1.15fr;
  padding: 18px 22px;
}

.comparison-row + .comparison-row {
  border-top: 1px solid var(--line);
}

.comparison-row span:first-child {
  color: #ffb0a5;
  font-weight: 900;
}

.comparison-head {
  background: #2d1712;
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 900;
  text-transform: uppercase;
}

.comparison-head span:first-child {
  color: #ffffff;
}

.process-section {
  background: var(--green-soft);
}

.process-layout {
  display: grid;
  gap: 54px;
  grid-template-columns: 0.9fr 1.1fr;
}

.timeline {
  counter-reset: step;
  display: grid;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.timeline li {
  background: var(--surface-raised);
  border-left: 5px solid var(--red);
  border-radius: 8px;
  counter-increment: step;
  min-height: 112px;
  padding: 20px 22px 20px 66px;
  position: relative;
}

.timeline li::before {
  align-items: center;
  background: #0f6a4d;
  border-radius: 50%;
  color: #ffffff;
  content: counter(step);
  display: flex;
  font-weight: 900;
  height: 34px;
  justify-content: center;
  left: 20px;
  position: absolute;
  top: 22px;
  width: 34px;
}

.timeline span {
  display: block;
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.25;
}

.timeline p {
  color: var(--muted);
  margin: 8px 0 0;
}

.origin-band {
  background: var(--red-deep);
  color: #fffdf8;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  min-height: 520px;
}

.origin-media {
  background:
    linear-gradient(180deg, rgba(16, 12, 9, 0.12), rgba(60, 15, 13, 0.48)),
    url("assets/afyon-castle.jpg") center / cover no-repeat;
  min-height: 520px;
}

.origin-content {
  align-self: center;
  max-width: 680px;
  padding: 70px 56px;
}

.origin-content p {
  color: rgba(255, 253, 248, 0.82);
}

.stamp-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 30px;
}

.stamp-grid span {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: rgba(255, 253, 248, 0.9);
  font-weight: 800;
  min-height: 58px;
  padding: 14px;
}

.label-grid {
  align-items: start;
  display: grid;
  gap: 42px;
  grid-template-columns: 0.9fr 1.1fr;
}

.checklist {
  display: grid;
  gap: 14px;
}

.checklist div {
  background: var(--surface-raised);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 94px;
  padding: 18px 20px;
}

.checklist strong {
  display: block;
  font-size: 1.03rem;
  line-height: 1.25;
}

.checklist span {
  color: var(--muted);
  display: block;
  margin-top: 7px;
}

.sources-section {
  background: #15100d;
  padding: 70px 0;
}

.source-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.source-list a {
  background: var(--surface-raised);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #f0c66a;
  font-weight: 800;
  min-height: 52px;
  padding: 14px 16px;
  text-decoration: none;
}

.source-list a:hover,
.source-list a:focus-visible {
  border-color: var(--gold);
  outline: none;
}

.image-credit {
  font-size: 0.9rem;
}

.footer {
  background: #090705;
  color: rgba(255, 253, 248, 0.78);
  padding: 22px 0;
}

.footer-inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.footer a {
  color: #fffdf8;
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 980px) {
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-layout,
  .label-grid,
  .intro-grid,
  .origin-band {
    grid-template-columns: 1fr;
  }

  .origin-media {
    min-height: 340px;
  }

  .origin-content {
    max-width: none;
    padding: 54px 28px;
  }
}

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
    gap: 12px;
    padding: 12px 16px;
  }

  .brand {
    max-width: 190px;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .nav a {
    font-size: 0.84rem;
    padding: 6px 7px;
  }

  .hero {
    background:
      linear-gradient(180deg, rgba(15, 14, 12, 0.78) 0%, rgba(25, 23, 20, 0.84) 72%, rgba(25, 23, 20, 0.94) 100%),
      url("assets/sucuk-hanging.jpg") center / cover no-repeat;
    min-height: 74svh;
    padding: 122px 18px 24px;
  }

  .hero h1 {
    font-size: 2.55rem;
    line-height: 1.02;
  }

  .hero-copy {
    font-size: 1.02rem;
  }

  .hero-actions {
    gap: 10px;
  }

  .button {
    min-height: 44px;
    padding: 10px 13px;
  }

  .hero-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .container {
    padding: 0 18px;
  }

  .section {
    padding: 58px 0;
  }

  .intro-grid h2,
  .section-heading h2,
  .origin-content h2,
  .sources-section h2 {
    font-size: 2rem;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: auto;
  }

  .comparison {
    box-shadow: none;
  }

  .comparison-row {
    gap: 8px;
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .comparison-head {
    display: none;
  }

  .comparison-row span {
    display: block;
  }

  .comparison-row span:nth-child(2)::before,
  .comparison-row span:nth-child(3)::before {
    color: var(--muted);
    display: block;
    font-size: 0.78rem;
    font-weight: 900;
    margin-bottom: 2px;
    text-transform: uppercase;
  }

  .comparison-row span:nth-child(2)::before {
    content: "Afyonkarahisar Sucuğu";
  }

  .comparison-row span:nth-child(3)::before {
    content: "Genel sucuk";
  }

  .stamp-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 420px) {
  .brand {
    font-size: 0.88rem;
    max-width: 150px;
  }

  .brand-mark {
    height: 32px;
    width: 36px;
  }

  .nav {
    max-width: 172px;
  }

  .hero h1 {
    font-size: 2.18rem;
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }

  .hero-facts li {
    min-height: auto;
  }
}
