:root {
  --color-bg: #f7f3ed;
  --color-bg-warm: #efe6d8;
  --color-surface: #ffffff;
  --color-ink: #1c1612;
  --color-ink-muted: #5c534a;
  --color-accent: #8b4513;
  --color-accent-deep: #5c2e0c;
  --color-gold: #c9a227;
  --color-dark: #0f0c0a;
  --color-dark-elevated: #1a1512;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(28, 22, 18, 0.08);
  --shadow-lg: 0 20px 60px rgba(28, 22, 18, 0.12);
  --header-h: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--color-ink);
  background: var(--color-bg);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--color-accent-deep);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.wrap {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

.wrap--narrow {
  width: min(720px, 100% - 2.5rem);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 200;
  padding: 0.75rem 1rem;
  background: var(--color-ink);
  color: #fff;
  font-weight: 600;
  border-radius: var(--radius);
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 243, 237, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(28, 22, 18, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--color-ink);
  text-decoration: none;
}

.logo:hover {
  text-decoration: none;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-deep));
  color: #fff;
  border-radius: 8px;
  font-size: 1.1rem;
}

.logo-text {
  letter-spacing: -0.02em;
}

.nav {
  display: none;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  row-gap: 0.35rem;
  column-gap: 0.85rem;
}

.nav a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-ink-muted);
  text-decoration: none;
}

.nav a:hover {
  color: var(--color-ink);
  text-decoration: none;
}

.nav a.nav-link.is-active {
  color: var(--color-ink);
  font-weight: 600;
}

.nav a.nav-cta.is-active {
  color: var(--color-bg) !important;
  background: var(--color-accent-deep);
}

.nav-cta {
  padding: 0.5rem 1rem;
  background: var(--color-ink);
  color: var(--color-bg) !important;
  border-radius: 999px;
}

.nav-cta:hover {
  background: var(--color-accent-deep);
  color: #fff !important;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 22px;
  background: var(--color-ink);
  margin-inline: auto;
  transition: transform 0.2s, opacity 0.2s;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 1rem 1.25rem 1.5rem;
  gap: 0.75rem;
  border-bottom: 1px solid rgba(28, 22, 18, 0.08);
  background: var(--color-bg);
}

.mobile-nav a {
  font-weight: 600;
  padding: 0.5rem 0;
  color: var(--color-ink);
}

.mobile-nav a.nav-link.is-active {
  color: var(--color-accent-deep);
}

.mobile-nav[hidden] {
  display: none;
}

@media (min-width: 768px) {
  .nav {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-nav {
    display: none !important;
  }
}

.hero {
  position: relative;
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(4rem, 10vw, 7rem);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 0%, rgba(201, 162, 39, 0.18), transparent 50%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(139, 69, 19, 0.12), transparent 45%),
    linear-gradient(180deg, var(--color-bg-warm), var(--color-bg));
  pointer-events: none;
}

.hero-layout {
  position: relative;
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 960px) {
  .hero-layout {
    grid-template-columns: 1fr min(320px, 32%);
    gap: 3rem;
    align-items: end;
  }
}

.hero-content {
  position: relative;
}

.hero-panel {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.5rem 1.35rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(28, 22, 18, 0.07);
}

.hero-panel-title {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.hero-panel-list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--color-ink-muted);
  font-size: 0.9375rem;
}

.hero-panel-list li {
  margin-bottom: 0.5rem;
}

.hero-panel-list li:last-child {
  margin-bottom: 0;
}

.hero-stats {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: clamp(2rem, 5vw, 3rem);
  padding-top: clamp(1.5rem, 4vw, 2rem);
  border-top: 1px solid rgba(28, 22, 18, 0.1);
}

@media (min-width: 640px) {
  .hero-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat {
  text-align: left;
  padding: 0.75rem 0;
}

@media (min-width: 640px) {
  .stat {
    text-align: center;
    padding: 0.5rem;
  }
}

.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--color-ink);
  line-height: 1.1;
}

.stat-label {
  display: block;
  font-size: 0.8125rem;
  color: var(--color-ink-muted);
  margin-top: 0.25rem;
  line-height: 1.35;
  max-width: 12rem;
}

@media (min-width: 640px) {
  .stat-label {
    margin-inline: auto;
  }
}

.eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin: 0 0 1rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 1.25rem;
  max-width: 20ch;
}

.hero h1 em {
  font-style: italic;
  color: var(--color-accent-deep);
}

.lead {
  font-size: 1.125rem;
  color: var(--color-ink-muted);
  max-width: 36rem;
  margin: 0 0 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.35rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}

.btn:hover {
  text-decoration: none;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--color-ink);
  color: #fff;
}

.btn-primary:hover {
  background: var(--color-accent-deep);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  border-color: rgba(28, 22, 18, 0.2);
  color: var(--color-ink);
}

.btn-ghost:hover {
  border-color: var(--color-ink);
  background: rgba(255, 255, 255, 0.5);
}

.btn-lg {
  padding: 1rem 1.75rem;
  font-size: 1rem;
}

.section {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
}

.section-lead {
  color: var(--color-ink-muted);
  margin: 0;
  max-width: 38rem;
}

.section-head {
  margin-bottom: 2.5rem;
}

.section-head .section-lead {
  margin-top: 0.75rem;
}

.section-head--center {
  text-align: center;
  max-width: 46rem;
  margin-inline: auto;
  margin-bottom: 2.75rem;
}

.section-kicker {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.section-kicker--on-dark {
  color: var(--color-gold);
}

.section-muted {
  background: rgba(255, 255, 255, 0.55);
  border-block: 1px solid rgba(28, 22, 18, 0.06);
}

.section-lead--center {
  margin-inline: auto;
  text-align: center;
}

.grid-2--valign {
  align-items: stretch;
}

.prose p {
  margin: 0 0 1rem;
  color: var(--color-ink-muted);
}

.prose p:last-child {
  margin-bottom: 0;
}

.stack-cards {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0 0 0.75rem;
  color: var(--color-ink);
}

.card-pillars .card-title {
  margin-bottom: 1rem;
}

.card-text {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--color-ink-muted);
  line-height: 1.55;
}

.card-rule {
  border: none;
  border-top: 1px solid rgba(28, 22, 18, 0.1);
  margin: 1.25rem 0;
}

.pillar-dl {
  margin: 0;
}

.pillar-dl > div {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(28, 22, 18, 0.08);
}

.pillar-dl > div:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.pillar-dl dt {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-ink);
  margin-bottom: 0.25rem;
}

.pillar-dl dd {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-ink-muted);
  line-height: 1.5;
}

.feature-list--tight li {
  margin-bottom: 0.65rem;
}

.services-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 720px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

.service-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  border: 1px solid rgba(28, 22, 18, 0.07);
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, transform 0.2s;
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.service-icon {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
  font-family: var(--font-display);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0 0 0.5rem;
}

.service-card > p {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: var(--color-ink-muted);
  line-height: 1.55;
}

.service-bullets {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.875rem;
  color: var(--color-ink-muted);
}

.service-bullets li {
  margin-bottom: 0.35rem;
}

.tech-block {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tech-block-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: #fff;
  margin: 0 0 0.5rem;
}

.tech-block-lead {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  color: rgba(232, 224, 213, 0.75);
  max-width: 40rem;
}

.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  background: var(--color-dark-elevated);
}

.data-table th,
.data-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.data-table th {
  font-weight: 600;
  color: var(--color-gold);
  background: rgba(0, 0, 0, 0.25);
}

.data-table td {
  color: rgba(232, 224, 213, 0.88);
}

.data-table tbody tr:last-child td {
  border-bottom: none;
}

.qc-steps {
  margin: 1.5rem 0 0;
  padding-left: 1.2rem;
  color: var(--color-ink-muted);
}

.qc-steps li {
  margin-bottom: 0.65rem;
  padding-left: 0.25rem;
}

.card-qc {
  height: 100%;
}

.locations-detail {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 700px) {
  .locations-detail {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .locations-detail {
    grid-template-columns: repeat(3, 1fr);
  }

  .locations-detail .loc-detail--featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 1.5rem 2rem;
    align-items: start;
  }

  .locations-detail .loc-detail--featured .loc-detail-head {
    margin-bottom: 0;
  }

  .locations-detail .loc-detail--featured .loc-detail-text {
    grid-column: 2;
    grid-row: 1;
  }

  .locations-detail .loc-detail--featured .loc-tags {
    grid-column: 2;
    grid-row: 2;
  }
}

.loc-detail {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.35rem 1.35rem;
  border: 1px solid rgba(28, 22, 18, 0.07);
  box-shadow: var(--shadow);
}

.loc-detail-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 0.75rem;
  margin-bottom: 0.65rem;
}

.loc-detail h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0;
}

.loc-badge {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  background: var(--color-bg-warm);
  color: var(--color-accent-deep);
}

.loc-detail-text {
  margin: 0 0 1rem;
  font-size: 0.9375rem;
  color: var(--color-ink-muted);
  line-height: 1.55;
}

.loc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.loc-tags li {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  background: rgba(28, 22, 18, 0.06);
  color: var(--color-ink-muted);
}

.loc-detail--featured {
  background: linear-gradient(145deg, #2a221c, var(--color-dark));
  color: #e8e0d5;
  border-color: transparent;
}

.loc-detail--featured .loc-detail-text {
  color: rgba(232, 224, 213, 0.82);
}

.loc-detail--featured h3 {
  color: #fff;
}

.loc-badge--light {
  background: rgba(255, 255, 255, 0.12);
  color: #f0e8dc;
}

.loc-tags--light li {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(232, 224, 213, 0.9);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.faq-item {
  background: var(--color-surface);
  border-radius: var(--radius);
  border: 1px solid rgba(28, 22, 18, 0.08);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-item summary {
  padding: 1rem 1.15rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 2.5rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.15rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--color-accent);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-body {
  padding: 0 1.15rem 1.1rem;
  border-top: 1px solid rgba(28, 22, 18, 0.06);
}

.faq-body p {
  margin: 0.85rem 0 0;
  font-size: 0.9375rem;
  color: var(--color-ink-muted);
  line-height: 1.55;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.cta-note {
  margin: 0;
  font-size: 0.875rem;
  color: var(--color-ink-muted);
  max-width: 32rem;
  margin-inline: auto;
}

.grid-2 {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 900px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }
}

.feature-list {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.85rem;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-gold);
}

.card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.card-accent {
  background: linear-gradient(145deg, var(--color-dark-elevated), var(--color-dark));
  color: #e8e0d5;
  align-self: stretch;
  display: flex;
  align-items: center;
}

.card-accent blockquote {
  margin: 0;
}

.card-accent p {
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.5;
  font-style: italic;
}

.section-dark {
  background: var(--color-dark);
  color: #e8e0d5;
}

.section-dark .section-title {
  color: #fff;
}

.section-lead-muted {
  color: rgba(232, 224, 213, 0.75);
}

.steps {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}

.step {
  background: var(--color-dark-elevated);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.step-num {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-gold);
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0.5rem 0 0.35rem;
  color: #fff;
}

.step p {
  margin: 0;
  font-size: 0.9375rem;
  color: rgba(232, 224, 213, 0.72);
}

.section-cta {
  background: var(--color-bg-warm);
  text-align: center;
}

.cta-inner .section-title {
  margin-bottom: 0.75rem;
}

.cta-inner .section-lead {
  margin-inline: auto;
  margin-bottom: 1.75rem;
  max-width: 40rem;
}

.site-footer {
  background: var(--color-ink);
  color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
  display: grid;
  gap: 2rem;
  padding: 2.75rem 0 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .footer-grid {
    grid-template-columns: 1.35fr repeat(3, 1fr);
    gap: 1.5rem 2rem;
  }
}

.footer-col {
  min-width: 0;
}

.footer-brand-block .footer-brand {
  margin-bottom: 0;
}

.footer-tagline {
  margin: 0.65rem 0 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
  max-width: 22rem;
}

.footer-heading {
  margin: 0 0 0.65rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.4rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-size: 0.9375rem;
}

.footer-links a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.15rem 0 2rem;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: #fff;
}

.footer-brand .logo-mark {
  width: 2rem;
  height: 2rem;
  font-size: 1rem;
}

.footer-copy {
  margin: 0;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ——— Alt sayfalar ——— */
.page-main {
  padding-bottom: 0;
}

.page-hero {
  padding: clamp(2rem, 5vw, 3.5rem) 0 clamp(2rem, 4vw, 3rem);
  background: linear-gradient(180deg, var(--color-bg-warm), var(--color-bg));
  border-bottom: 1px solid rgba(28, 22, 18, 0.08);
}

.page-hero--compact {
  padding-bottom: 2rem;
}

.breadcrumb {
  font-size: 0.8125rem;
  color: var(--color-ink-muted);
  margin-bottom: 1rem;
}

.breadcrumb a {
  color: var(--color-accent-deep);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span[aria-hidden="true"] {
  margin: 0 0.35rem;
  opacity: 0.5;
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
  line-height: 1.15;
}

.page-hero-lead {
  margin: 0;
  font-size: 1.0625rem;
  color: var(--color-ink-muted);
  max-width: 46rem;
  line-height: 1.6;
}

.page-layout {
  display: grid;
  gap: 2.5rem;
  padding: clamp(2rem, 5vw, 3.5rem) 0 clamp(3rem, 6vw, 4.5rem);
  align-items: start;
}

@media (min-width: 960px) {
  .page-layout {
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 3rem;
  }
}

.page-article--wide {
  max-width: 900px;
  margin-inline: auto;
  padding: clamp(2rem, 5vw, 3.5rem) 0 clamp(3rem, 6vw, 4.5rem);
}

.doc-prose {
  font-size: 1.0625rem;
}

.doc-section {
  margin-bottom: 2.5rem;
}

.doc-section:last-child {
  margin-bottom: 0;
}

.doc-prose h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0 0 0.75rem;
}

.doc-prose h3 {
  font-size: 1.05rem;
  margin: 1.5rem 0 0.5rem;
}

.doc-prose p,
.doc-prose li {
  color: var(--color-ink-muted);
  line-height: 1.65;
}

.doc-prose p {
  margin: 0 0 1rem;
}

.doc-list {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
}

.doc-list li {
  margin-bottom: 0.45rem;
}

.doc-list--compact li {
  margin-bottom: 0.3rem;
}

.doc-ol {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
}

.doc-ol li {
  margin-bottom: 0.5rem;
}

.doc-dl dt {
  font-weight: 700;
  margin-top: 1rem;
  color: var(--color-ink);
}

.doc-dl dd {
  margin: 0.25rem 0 0;
  color: var(--color-ink-muted);
}

.doc-cta-inline {
  padding: 1.5rem;
  background: var(--color-bg-warm);
  border-radius: var(--radius);
  border: 1px solid rgba(28, 22, 18, 0.08);
}

.doc-cta-inline h2 {
  font-size: 1.2rem;
  margin-top: 0;
}

.doc-cta-inline p:last-child {
  margin-bottom: 0;
}

.page-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (max-width: 959px) {
  .page-sidebar {
    position: static;
    order: -1;
  }
}

.sidebar-card {
  background: var(--color-surface);
  border-radius: var(--radius);
  padding: 1.25rem 1.15rem;
  border: 1px solid rgba(28, 22, 18, 0.08);
  box-shadow: var(--shadow);
}

.sidebar-card--muted {
  background: rgba(255, 255, 255, 0.7);
}

.sidebar-card--accent {
  background: linear-gradient(145deg, var(--color-dark-elevated), var(--color-dark));
  color: #e8e0d5;
  border-color: transparent;
}

.sidebar-card--accent .sidebar-title {
  color: rgba(255, 255, 255, 0.55);
}

.sidebar-title {
  margin: 0 0 0.65rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-ink-muted);
}

.sidebar-nav {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sidebar-nav a {
  display: block;
  padding: 0.35rem 0;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-ink);
  text-decoration: none;
}

.sidebar-nav a:hover {
  color: var(--color-accent-deep);
  text-decoration: underline;
}

.sidebar-quote {
  margin: 0;
}

.sidebar-quote p {
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.45;
  color: rgba(232, 224, 213, 0.92);
}

.value-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 560px) {
  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.value-card {
  padding: 1.25rem;
  background: var(--color-surface);
  border-radius: var(--radius);
  border: 1px solid rgba(28, 22, 18, 0.08);
}

.value-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.value-card p {
  margin: 0;
  font-size: 0.9375rem;
}

.facility-block {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(28, 22, 18, 0.1);
}

.facility-block:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.facility-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 0.75rem;
  margin-bottom: 0.75rem;
}

.facility-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.65rem;
}

.facility-block--featured {
  padding: 1.75rem 1.5rem;
  background: linear-gradient(145deg, #2a221c, var(--color-dark));
  border-radius: var(--radius-lg);
  color: #e8e0d5;
  border: none;
}

.facility-block--featured p,
.facility-block--featured .doc-list {
  color: rgba(232, 224, 213, 0.88);
}

.facility-block--featured h2 {
  color: #fff;
}

.doc-list--on-dark li {
  color: rgba(232, 224, 213, 0.88);
}

.table-wrap--light {
  border-color: rgba(28, 22, 18, 0.1);
}

.data-table--light {
  background: var(--color-surface);
  font-size: 0.875rem;
}

.data-table--light th {
  background: var(--color-bg-warm);
  color: var(--color-accent-deep);
}

.data-table--light td {
  color: var(--color-ink-muted);
  border-bottom-color: rgba(28, 22, 18, 0.08);
}

.data-table--light th,
.data-table--light td {
  border-bottom: 1px solid rgba(28, 22, 18, 0.08);
}

.faq-list--large .faq-item summary {
  padding: 1.15rem 1.25rem;
  font-size: 1rem;
}

.faq-list--large .faq-body p {
  font-size: 0.95rem;
}

.home-pillars {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}

@media (min-width: 720px) {
  .home-pillars {
    grid-template-columns: repeat(3, 1fr);
  }
}

.home-pillar-card {
  background: var(--color-surface);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(28, 22, 18, 0.08);
  box-shadow: var(--shadow);
}

.home-pillar-card h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.home-pillar-card h3 a {
  color: var(--color-ink);
  text-decoration: none;
}

.home-pillar-card h3 a:hover {
  color: var(--color-accent-deep);
}

.home-pillar-card p {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: var(--color-ink-muted);
  line-height: 1.55;
}

.text-link {
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--color-accent-deep);
}

.text-link:hover {
  text-decoration: underline;
}

.section-head--row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.section-head--row .section-title {
  margin-bottom: 0;
}

.services-grid--home {
  margin-top: 0;
}

.city-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.city-chips a {
  display: inline-block;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #f0e8dc;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.city-chips a:hover {
  background: rgba(255, 255, 255, 0.18);
  text-decoration: none;
}

.page-contact {
  padding: clamp(2rem, 5vw, 3.5rem) 0 clamp(3rem, 6vw, 4.5rem);
}

.contact-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr min(320px, 32%);
  }
}

.contact-form {
  background: var(--color-surface);
  padding: clamp(1.5rem, 4vw, 2rem);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(28, 22, 18, 0.08);
  box-shadow: var(--shadow);
}

.form-row {
  margin-bottom: 1.15rem;
}

.form-row--2 {
  display: grid;
  gap: 1rem;
}

@media (min-width: 520px) {
  .form-row--2 {
    grid-template-columns: 1fr 1fr;
  }
}

.form-row label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.35rem;
}

.req {
  color: var(--color-accent);
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1px solid rgba(28, 22, 18, 0.15);
  border-radius: 8px;
  background: #fff;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--color-gold);
  outline-offset: 1px;
  border-color: transparent;
}

.form-check {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
}

.form-check input {
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.form-check label {
  font-weight: 400;
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.45;
}

.form-actions {
  margin-top: 1.5rem;
}

.form-alert {
  padding: 1rem 1.15rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.form-alert--success {
  background: rgba(34, 139, 34, 0.12);
  border: 1px solid rgba(34, 139, 34, 0.35);
  color: #1a4d1a;
}

.form-alert--error {
  background: rgba(178, 34, 34, 0.1);
  border: 1px solid rgba(178, 34, 34, 0.35);
  color: #5c1010;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.contact-block {
  margin: 0;
  font-size: 1.1rem;
}

.contact-block a {
  font-weight: 600;
}

.contact-note {
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
  color: var(--color-ink-muted);
  line-height: 1.5;
}

.legal-page {
  padding: 2rem 0 4rem;
}

.legal-page .doc-section h2 {
  font-size: 1.25rem;
}

.cert-note {
  font-size: 0.9375rem;
  color: var(--color-ink-muted);
  margin: 0 0 1rem;
  padding: 1rem 1.1rem;
  background: rgba(201, 162, 39, 0.12);
  border-radius: var(--radius);
  border: 1px solid rgba(201, 162, 39, 0.28);
}

.cert-table {
  min-width: 640px;
}

.cert-table td em {
  font-style: normal;
  color: var(--color-ink-muted);
  font-size: 0.8125rem;
}

.cert-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.2rem 0.45rem;
  border-radius: 6px;
  background: var(--color-bg-warm);
  color: var(--color-accent-deep);
  white-space: nowrap;
}

.cert-tag--muted {
  background: rgba(28, 22, 18, 0.08);
  color: var(--color-ink-muted);
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
}

/* RoastOS sayfası */
.page-hero--roastos {
  background: linear-gradient(165deg, #1a1512 0%, #2d241c 42%, var(--color-bg-warm) 100%);
  border-bottom-color: rgba(28, 22, 18, 0.1);
}

.page-hero--roastos .breadcrumb,
.page-hero--roastos .breadcrumb a {
  color: rgba(247, 243, 237, 0.75);
}

.page-hero--roastos .breadcrumb a:hover {
  color: #fff;
}

.page-hero--roastos .page-hero-title {
  color: #fff;
}

.page-hero--roastos .page-hero-lead {
  color: rgba(232, 224, 213, 0.88);
  max-width: 48rem;
}

.roastos-badge {
  display: inline-block;
  margin: 0 0 0.75rem;
  padding: 0.35rem 0.65rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold);
  border: 1px solid rgba(201, 162, 39, 0.45);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.25);
}

.sidebar-card--roastos {
  background: linear-gradient(145deg, #2a221c, var(--color-dark));
  border-color: transparent;
  color: #e8e0d5;
}

.sidebar-card--roastos .sidebar-title {
  color: rgba(255, 255, 255, 0.5);
}

.sidebar-roastos-tagline {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.35;
  color: rgba(232, 224, 213, 0.92);
}

.sidebar-card--roastos .sidebar-nav a {
  color: #fff;
}

.sidebar-card--roastos .sidebar-nav a:hover {
  color: var(--color-gold);
}

.doc-prose code {
  font-size: 0.88em;
  padding: 0.12rem 0.4rem;
  border-radius: 5px;
  background: rgba(28, 22, 18, 0.07);
  color: var(--color-accent-deep);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}
