/* dorytay.com — tarz.css — Matrix #13 Art Deco */

/* ════════════════════════════════════════
   RESET & TOKENS
════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --zumrut:    #0d3b2e;
  --zumrut-2:  #0f4a3a;
  --zumrut-3:  #1a6b52;
  --altin:     #ffd166;
  --altin-dim: rgba(255,209,102,0.18);
  --altin-mid: rgba(255,209,102,0.45);
  --gri:       #f8f9fa;
  --gri-2:     #e9ecef;
  --gri-3:     #6c757d;
  --beyaz:     #ffffff;
  --koyu:      #0a1e18;
  --yazi:      #1a2e27;

  --font-serif: Georgia, 'Times New Roman', serif;
  --font-sans: 'Arial', Helvetica, sans-serif;

  --sidebar-w: 56px;
  --geçiş: 0.25s ease;
  --gold-border: 1px solid rgba(255,209,102,0.35);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--gri);
  color: var(--yazi);
  font-family: var(--font-sans);
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: var(--zumrut); text-decoration: none; }
a:hover { color: var(--zumrut-3); }
img { max-width: 100%; display: block; }

/* ════════════════════════════════════════
   ART DECO ORNAMENT — CSS
════════════════════════════════════════ */
.n3k-ornament {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  color: var(--altin);
  margin: 8px 0;
  user-select: none;
}
.n3k-ornament::before,
.n3k-ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--altin), transparent);
}
.n3k-ornament span { font-size: 18px; letter-spacing: 4px; }

/* ════════════════════════════════════════
   SIDEBAR HOVER — .n3k
════════════════════════════════════════ */
.n3k {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: var(--sidebar-w);
  background: var(--koyu);
  border-right: 2px solid rgba(255,209,102,0.25);
  z-index: 900;
  transition: width 0.35s cubic-bezier(.4,0,.2,1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.n3k:hover {
  width: 240px;
  box-shadow: 4px 0 32px rgba(0,0,0,0.35);
}

/* Art-deco top accent */
.n3k::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--altin), #ff9f0a, var(--altin));
}

.n3k__logo-wrap {
  padding: 20px 0 12px;
  display: flex;
  align-items: center;
  min-height: 72px;
  border-bottom: 1px solid rgba(255,209,102,0.15);
  flex-shrink: 0;
}

.n3k__logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  margin-left: 8px;
  flex-shrink: 0;
}

.n3k__brand {
  margin-left: 12px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.2s 0.1s;
}

.n3k:hover .n3k__brand { opacity: 1; }

.n3k__brand-name {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 700;
  color: var(--altin);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.n3k__brand-sub {
  font-size: 10px;
  color: rgba(255,209,102,0.55);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 2px;
}

.n3k__list {
  list-style: none;
  padding: 16px 0;
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
}

.n3k__item { position: relative; }

.n3k__link {
  display: flex;
  align-items: center;
  height: 48px;
  padding: 0 0 0 14px;
  color: rgba(248,249,250,0.75);
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--geçiş), background var(--geçiş);
  font-size: 13px;
  letter-spacing: 0.04em;
}

.n3k__link:hover, .n3k__link.aktif {
  color: var(--altin);
  background: rgba(255,209,102,0.08);
  text-decoration: none;
}

.n3k__link.aktif::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 24px;
  background: var(--altin);
}

.n3k__icon {
  width: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.n3k__text {
  margin-left: 10px;
  opacity: 0;
  transition: opacity 0.18s 0.08s;
  font-family: var(--font-serif);
}

.n3k:hover .n3k__text { opacity: 1; }

.n3k__footer {
  padding: 16px 0 20px;
  border-top: 1px solid rgba(255,209,102,0.15);
  flex-shrink: 0;
}

.n3k__contact {
  display: flex;
  align-items: center;
  padding: 8px 0 8px 14px;
  font-size: 11px;
  color: rgba(255,209,102,0.5);
  white-space: nowrap;
  letter-spacing: 0.04em;
}

.n3k__contact-text {
  margin-left: 10px;
  opacity: 0;
  transition: opacity 0.18s;
}

.n3k:hover .n3k__contact-text { opacity: 1; }

/* ════════════════════════════════════════
   PAGE WRAPPER
════════════════════════════════════════ */
.s7m {
  margin-left: var(--sidebar-w);
  min-height: 100vh;
}

/* ════════════════════════════════════════
   HERO — .b2p (narrow header + masonry below)
════════════════════════════════════════ */
.b2p {
  background: var(--zumrut);
  padding: 56px 64px 48px;
  border-bottom: 3px solid var(--altin);
  position: relative;
  overflow: hidden;
}

/* Art-deco geometric corner ornaments */
.b2p::before, .b2p::after {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  border: 2px solid rgba(255,209,102,0.2);
}

.b2p::before { top: 16px; right: 24px; border-right: none; border-bottom: none; }
.b2p::after  { bottom: 16px; right: 144px; border-left: none; border-top: none; }

.b2p__eyebrow {
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--altin);
  margin-bottom: 20px;
  font-family: var(--font-sans);
}

.b2p__title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4.5vw, 64px);
  color: var(--beyaz);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  max-width: 680px;
}

.b2p__title em {
  color: var(--altin);
  font-style: italic;
}

.b2p__sub {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 36px;
  font-family: var(--font-sans);
}

.b2p__cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Typewriter cursor */
.b2p__typewriter { display: inline-block; }
.b2p__cursor {
  display: inline-block;
  width: 3px;
  height: 0.85em;
  background: var(--altin);
  vertical-align: middle;
  margin-left: 4px;
  animation: blink 0.9s step-end infinite;
}
@keyframes blink { 50% { opacity: 0; } }

/* ════════════════════════════════════════
   BUTTONS
════════════════════════════════════════ */
.e9r-btn {
  display: inline-block;
  padding: 13px 32px;
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid var(--altin);
  transition: var(--geçiş);
  text-decoration: none;
}

.e9r-btn--dolu {
  background: var(--altin);
  color: var(--zumrut);
}

.e9r-btn--dolu:hover {
  background: transparent;
  color: var(--altin);
  text-decoration: none;
}

.e9r-btn--bos {
  background: transparent;
  color: var(--altin);
}

.e9r-btn--bos:hover {
  background: var(--altin-dim);
  text-decoration: none;
  color: var(--altin);
}

/* ════════════════════════════════════════
   MASONRY GRID — .w4t
════════════════════════════════════════ */
.w4t {
  padding: 64px;
  columns: 3;
  column-gap: 24px;
}

.w4t__kart {
  break-inside: avoid;
  margin-bottom: 24px;
  background: var(--beyaz);
  border: 1px solid var(--gri-2);
  border-top: 3px solid var(--altin);
  padding: 32px 28px;
  position: relative;
}

/* Art deco corner pip */
.w4t__kart::after {
  content: '◆';
  position: absolute;
  bottom: 12px;
  right: 16px;
  font-size: 10px;
  color: var(--altin-mid);
}

.w4t__kart--featured {
  background: var(--zumrut);
  color: var(--beyaz);
  border-color: var(--altin);
  border-top-width: 4px;
}

.w4t__kart-icon {
  font-size: 28px;
  margin-bottom: 14px;
}

.w4t__kart-baslik {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--zumrut);
  margin-bottom: 10px;
  line-height: 1.3;
}

.w4t__kart--featured .w4t__kart-baslik {
  color: var(--altin);
}

.w4t__kart-metin {
  font-size: 13px;
  line-height: 1.8;
  color: var(--gri-3);
}

.w4t__kart--featured .w4t__kart-metin {
  color: rgba(255,255,255,0.75);
}

.w4t__kart-fiyat {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,209,102,0.3);
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--altin);
}

.w4t__kart-fiyat small {
  font-size: 11px;
  font-family: var(--font-sans);
  color: rgba(255,209,102,0.7);
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ════════════════════════════════════════
   SERVICES STRIPES — .e9r (горизонтальные полосы)
════════════════════════════════════════ */
.e9r {
  background: var(--beyaz);
  border-top: 1px solid var(--gri-2);
  border-bottom: 1px solid var(--gri-2);
}

.e9r__polosa {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 0 32px;
  align-items: center;
  padding: 28px 64px;
  border-bottom: 1px solid var(--gri-2);
  transition: background var(--geçiş);
}

.e9r__polosa:last-child { border-bottom: none; }

.e9r__polosa:hover { background: rgba(255,209,102,0.05); }

.e9r__ikon {
  width: 56px;
  height: 56px;
  background: var(--zumrut);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  border: 2px solid rgba(255,209,102,0.3);
}

.e9r__govde { }

.e9r__govde h3 {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--zumrut);
  margin-bottom: 5px;
}

.e9r__govde p {
  font-size: 13px;
  color: var(--gri-3);
  line-height: 1.65;
  max-width: 520px;
}

.e9r__fiyat {
  text-align: right;
  flex-shrink: 0;
}

.e9r__fiyat-rakam {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--zumrut);
  white-space: nowrap;
}

.e9r__fiyat-not {
  font-size: 10px;
  color: var(--gri-3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* ════════════════════════════════════════
   COUNTERS — .w4t-sayac
════════════════════════════════════════ */
.w4t-sayac {
  background: var(--zumrut);
  padding: 64px;
  position: relative;
  overflow: hidden;
}

.w4t-sayac::before {
  content: '';
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255,209,102,0.15);
  pointer-events: none;
}

.w4t-sayac__ust {
  text-align: center;
  margin-bottom: 48px;
}

.w4t-sayac__etiket {
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--altin);
  margin-bottom: 8px;
}

.w4t-sayac__baslik {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--beyaz);
  font-weight: 700;
}

.w4t-sayac__izgarasi {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.w4t-sayac__kalem {
  text-align: center;
  border: 1px solid rgba(255,209,102,0.2);
  padding: 32px 16px;
  position: relative;
}

/* deco corners */
.w4t-sayac__kalem::before,
.w4t-sayac__kalem::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  border-color: var(--altin);
  border-style: solid;
  opacity: 0.5;
}
.w4t-sayac__kalem::before { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
.w4t-sayac__kalem::after  { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }

.w4t-sayac__rakam {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 700;
  color: var(--altin);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}

.w4t-sayac__aciklama {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.5;
}

/* ════════════════════════════════════════
   FAQ ACCORDION — .b2p-sss
════════════════════════════════════════ */
.b2p-sss {
  padding: 80px 64px;
  max-width: 860px;
  margin: 0 auto;
}

.b2p-sss__ust {
  text-align: center;
  margin-bottom: 48px;
}

.b2p-sss__baslik {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--zumrut);
  margin-bottom: 12px;
}

.b2p-sss__item {
  border-bottom: 1px solid var(--gri-2);
  overflow: hidden;
}

.b2p-sss__soru {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--zumrut);
  gap: 16px;
  transition: color var(--geçiş);
}

.b2p-sss__soru:hover { color: var(--zumrut-3); }

.b2p-sss__soru[aria-expanded="true"] { color: var(--zumrut-3); }

.b2p-sss__ok {
  width: 24px;
  height: 24px;
  border: 1px solid var(--altin);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--altin);
  flex-shrink: 0;
  transition: transform var(--geçiş);
}

.b2p-sss__soru[aria-expanded="true"] .b2p-sss__ok {
  transform: rotate(45deg);
}

.b2p-sss__cevap {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s ease, padding 0.3s;
}

.b2p-sss__cevap.acik {
  max-height: 400px;
}

.b2p-sss__cevap-ic {
  padding: 0 0 24px;
  font-size: 14px;
  line-height: 1.85;
  color: var(--gri-3);
}

/* ════════════════════════════════════════
   FORM — .e9r-form
════════════════════════════════════════ */
.e9r-form__wrap {
  background: var(--beyaz);
  border: 1px solid var(--gri-2);
  border-top: 4px solid var(--altin);
  padding: 40px;
  max-width: 680px;
}

.e9r-form__baslik {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--zumrut);
  margin-bottom: 6px;
}

.e9r-form__alt {
  font-size: 12px;
  color: var(--gri-3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.e9r-form__alan {
  margin-bottom: 18px;
}

.e9r-form__alan label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--zumrut);
  margin-bottom: 7px;
  font-family: var(--font-sans);
}

.e9r-form__alan input,
.e9r-form__alan select,
.e9r-form__alan textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--gri-2);
  border-bottom: 2px solid var(--zumrut);
  background: var(--gri);
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--yazi);
  outline: none;
  transition: border-color var(--geçiş);
  appearance: none;
}

.e9r-form__alan input:focus,
.e9r-form__alan select:focus,
.e9r-form__alan textarea:focus {
  border-color: var(--altin);
  border-bottom-color: var(--altin);
  background: var(--beyaz);
}

.e9r-form__alan input.hata,
.e9r-form__alan textarea.hata {
  border-bottom-color: #c0392b;
}

.e9r-form__alan textarea { resize: vertical; min-height: 90px; }

.e9r-form__hata {
  font-size: 11px;
  color: #c0392b;
  margin-top: 4px;
  display: none;
}
.e9r-form__hata.goster { display: block; }

.e9r-form__gonder {
  width: 100%;
  padding: 15px;
  background: var(--zumrut);
  border: 2px solid var(--zumrut);
  color: var(--altin);
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--geçiş);
  margin-top: 8px;
}

.e9r-form__gonder:hover {
  background: var(--altin);
  border-color: var(--altin);
  color: var(--zumrut);
}

/* ════════════════════════════════════════
   FOOTER — .w4t-footer
════════════════════════════════════════ */
.w4t-footer {
  background: var(--koyu);
  padding: 64px;
  border-top: 3px solid var(--altin);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
}

.w4t-footer__marka-logo {
  width: 56px;
  margin-bottom: 16px;
}

.w4t-footer__marka-acik {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  margin-bottom: 20px;
  font-family: var(--font-serif);
  font-style: italic;
}

.w4t-footer__iletisim {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  line-height: 2.2;
}

.w4t-footer__iletisim a { color: var(--altin); }

.w4t-footer h4 {
  font-family: var(--font-serif);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--altin);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,209,102,0.2);
}

.w4t-footer__nav { list-style: none; display: grid; gap: 10px; }

.w4t-footer__nav a {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  font-family: var(--font-serif);
  transition: color var(--geçiş);
}

.w4t-footer__nav a:hover { color: var(--altin); }

.w4t-footer__alt {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255,209,102,0.15);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.06em;
}

/* ════════════════════════════════════════
   TOAST
════════════════════════════════════════ */
.bildirim {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--zumrut);
  border: 2px solid var(--altin);
  border-top-width: 4px;
  color: var(--beyaz);
  padding: 16px 24px;
  font-family: var(--font-serif);
  font-size: 14px;
  z-index: 9999;
  transform: translateY(80px);
  opacity: 0;
  transition: all 0.35s ease;
  max-width: 340px;
}

.bildirim.goster { transform: translateY(0); opacity: 1; }
.bildirim--hata { border-color: #c0392b; }

/* ════════════════════════════════════════
   COOKIE BANNER
════════════════════════════════════════ */
.cerez-katman {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 9000;
  display: flex;
  align-items: flex-end;
  padding: 32px;
}

.cerez-kutu {
  background: var(--koyu);
  border: 2px solid var(--altin);
  border-top-width: 4px;
  padding: 36px;
  max-width: 620px;
  width: 100%;
}

.cerez-kutu__baslik {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--altin);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.cerez-kutu__metin {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  margin-bottom: 24px;
}

.cerez-kutu__metin a { color: var(--altin); text-decoration: underline; }

.cerez-dügmeler { display: flex; gap: 12px; }

.cerez-btn {
  padding: 11px 28px;
  font-family: var(--font-serif);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid var(--altin);
  transition: var(--geçiş);
}

.cerez-btn--kabul { background: var(--altin); color: var(--zumrut); }
.cerez-btn--kabul:hover { background: transparent; color: var(--altin); }
.cerez-btn--reddet { background: transparent; color: rgba(255,255,255,0.5); border-color: rgba(255,255,255,0.25); }
.cerez-btn--reddet:hover { border-color: var(--beyaz); color: var(--beyaz); }

/* ════════════════════════════════════════
   INNER PAGE COMMON — .s7m-sayfa
════════════════════════════════════════ */
.s7m-sayfa {
  padding: 64px;
  max-width: 920px;
}

.s7m-sayfa h1 {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 700;
  color: var(--zumrut);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.s7m-sayfa h2 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--zumrut);
  margin: 36px 0 14px;
  padding-left: 16px;
  border-left: 3px solid var(--altin);
}

.s7m-sayfa h3 {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--zumrut-3);
  margin: 24px 0 8px;
}

.s7m-sayfa p {
  font-size: 14px;
  line-height: 1.9;
  color: var(--gri-3);
  margin-bottom: 16px;
}

.s7m-sayfa ul {
  margin: 12px 0 20px 20px;
  color: var(--gri-3);
  font-size: 14px;
  line-height: 1.85;
}

.s7m-sayfa table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 13px;
}

.s7m-sayfa table th {
  background: var(--zumrut);
  color: var(--altin);
  padding: 10px 14px;
  text-align: left;
  font-family: var(--font-serif);
  letter-spacing: 0.06em;
  font-size: 12px;
  text-transform: uppercase;
}

.s7m-sayfa table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--gri-2);
  color: var(--gri-3);
}

.s7m-sayfa table tr:nth-child(even) td { background: rgba(255,209,102,0.04); }

/* ════════════════════════════════════════
   PAGE BANNER
════════════════════════════════════════ */
.s7m-banner {
  background: var(--zumrut);
  padding: 48px 64px 36px;
  border-bottom: 3px solid var(--altin);
}

.s7m-banner__geri {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  margin-bottom: 20px;
  transition: color var(--geçiş);
  font-family: var(--font-sans);
}

.s7m-banner__geri:hover { color: var(--altin); text-decoration: none; }

.s7m-banner h1 {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 700;
  color: var(--beyaz);
  line-height: 1.15;
}

.s7m-banner h1 em { color: var(--altin); font-style: italic; }

/* ════════════════════════════════════════
   404
════════════════════════════════════════ */
.hata-sayfa {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 64px;
  background: var(--zumrut);
}

.hata-sayfa__kod {
  font-family: var(--font-serif);
  font-size: 120px;
  font-weight: 700;
  color: var(--altin);
  line-height: 1;
  margin-bottom: 16px;
}

.hata-sayfa__mesaj {
  font-family: var(--font-serif);
  font-size: 20px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 32px;
}

/* ════════════════════════════════════════
   CONTACT GRID
════════════════════════════════════════ */
.iletisim-izgara {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding: 64px;
}

.iletisim-bilgi h2 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--zumrut);
  margin-bottom: 32px;
}

.iletisim-kalem { margin-bottom: 28px; }

.iletisim-kalem dt {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--zumrut);
  margin-bottom: 6px;
  font-family: var(--font-sans);
}

.iletisim-kalem dd {
  font-size: 14px;
  color: var(--gri-3);
  font-family: var(--font-serif);
  line-height: 1.6;
}

.iletisim-kalem dd a { color: var(--zumrut); }

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 960px) {
  :root { --sidebar-w: 0px; }
  .n3k { display: none; }
  .s7m { margin-left: 0; }

  .b2p { padding: 40px 24px; }
  .w4t { columns: 1; padding: 40px 24px; }
  .e9r__polosa { grid-template-columns: 56px 1fr; padding: 20px 24px; }
  .e9r__fiyat { display: none; }
  .w4t-sayac { padding: 48px 24px; }
  .w4t-sayac__izgarasi { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .b2p-sss { padding: 48px 24px; }
  .w4t-footer { grid-template-columns: 1fr; padding: 48px 24px; gap: 32px; }
  .iletisim-izgara { grid-template-columns: 1fr; padding: 40px 24px; gap: 40px; }
  .s7m-sayfa { padding: 40px 24px; }
  .s7m-banner { padding: 32px 24px; }
  .e9r-form__wrap { padding: 28px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
