/* ═══════════════════════════════════════════════════════════
   OYA ARTS — style.css
   Renkler: #e1e1df (açık) · #1c1e1d (koyu) · gümüş tonlar
   Fontlar: Cormorant Garamond (display) · Jost (body/ui)
═══════════════════════════════════════════════════════════ */

:root {
  --light: #e1e1df;
  --dark: #1c1e1d;
  --silver: #a8a8a4;
  --silver-light: #d0d0cc;
  --silver-dark: #7a7a76;
  --white: #f7f7f5;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', sans-serif;
  --header-h: 96px;
  --ann-h: 38px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ─── RESET ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--light);
  color: var(--dark);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; transition: opacity var(--transition); }
a:hover { opacity: 0.75; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── INTRO ANIMATION ───────────────────────────────────── */
#intro-overlay {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: introFadeOut 0.7s ease 3.2s forwards;
}
@keyframes introFadeOut {
  to { opacity: 0; pointer-events: none; }
}
.intro-logo {
  display: flex;
  align-items: baseline;
  gap: 0;
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 300;
  color: var(--light);
  letter-spacing: 0.02em;
  line-height: 1;
}
.intro-letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
}
.intro-o  { animation: introLetterIn 0.5s ease 0.2s forwards; }
.intro-y  { animation: introLetterIn 0.5s ease 0.55s forwards; }
.intro-a  { animation: introLetterIn 0.5s ease 0.9s forwards; }
.intro-arts {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  font-size: 0.44em;
  font-family: var(--font-body);
  font-weight: 300;
  letter-spacing: 0.35em;
  text-transform: lowercase;
  margin-left: 0.18em;
  padding-bottom: 0.08em;
  color: var(--silver);
  animation: introLetterIn 0.6s ease 1.35s forwards;
}
@keyframes introLetterIn {
  to { opacity: 1; transform: translateY(0); }
}

/* ─── ANNOUNCEMENT BAR ──────────────────────────────────── */
.announcement-bar {
  background: var(--dark);
  color: var(--silver-light);
  height: var(--ann-h);
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
  display: flex;
  align-items: center;
}
.announcement-track {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: announceTicker 28s linear infinite;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.ann-item { padding: 0 2.5rem; }
.ann-sep {
  color: var(--silver);
  font-size: 0.55rem;
  opacity: 0.7;
  flex-shrink: 0;
}
@keyframes announceTicker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── HEADER ────────────────────────────────────────────── */
body { padding-top: calc(var(--ann-h) + var(--header-h)); }

#main-header {
  position: fixed;
  top: var(--ann-h);
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--light);
  border-bottom: 1px solid var(--silver-light);
  height: var(--header-h);
  transition: box-shadow 0.3s;
}
#main-header.scrolled {
  box-shadow: 0 2px 20px rgba(28,30,29,0.10);
}
.header-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 4rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 0;
}
.header-logo {
  flex-shrink: 0;
  padding: 0 3rem 0 2rem;
}
#header-logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
}
.header-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  flex: 1;
}
.nav-link {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark);
  padding: 0.5rem 0.75rem;
  position: relative;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0.75rem; right: 0.75rem;
  height: 1px;
  background: var(--dark);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.nav-link:hover { opacity: 1; color: var(--dark); }
.nav-link:hover::after { transform: scaleX(1); }

.nav-dropdown { position: relative; }
.nav-sub {
  display: none;
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  background: var(--light);
  border: 1px solid var(--silver-light);
  border-top: 2px solid var(--dark);
  min-width: 180px;
  padding: 0.5rem 0;
  z-index: 200;
  box-shadow: 0 8px 24px rgba(28,30,29,0.08);
}
.nav-dropdown:hover .nav-sub { display: block; }
.nav-sub-link {
  display: block;
  padding: 0.55rem 1.2rem;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--dark);
  transition: background 0.2s;
}
.nav-sub-link:hover { background: var(--silver-light); opacity: 1; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
.btn-satis {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--dark);
  color: var(--light);
  padding: 0.6rem 1.4rem;
  border: 1px solid var(--dark);
  transition: background var(--transition), color var(--transition);
}
.btn-satis:hover {
  background: transparent;
  color: var(--dark);
  opacity: 1;
}
.btn-text {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark);
  padding: 0.5rem 0.5rem;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.btn-text:hover { border-bottom-color: var(--dark); opacity: 1; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--dark);
  transition: transform 0.3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--light);
  border-top: 1px solid var(--silver-light);
  padding: 1.5rem 2rem;
  gap: 1rem;
}
.mobile-menu a {
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--silver-light);
}
.mobile-menu hr { border: none; border-top: 1px solid var(--silver); margin: 0.5rem 0; }

/* ─── PAGE SYSTEM ───────────────────────────────────────── */
.page { display: none; }
.page.active { display: block; }

/* ─── BUTTONS ───────────────────────────────────────────── */
.btn-outline {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dark);
  border: 1px solid var(--dark);
  padding: 0.75rem 2rem;
  margin-top: 2rem;
  transition: background var(--transition), color var(--transition);
}
.btn-outline:hover { background: var(--dark); color: var(--light); opacity: 1; }
.btn-outline.light-btn { color: var(--light); border-color: var(--light); }
.btn-outline.light-btn:hover { background: var(--light); color: var(--dark); opacity: 1; }
.btn-outline.small { padding: 0.5rem 1.2rem; margin-top: 1rem; font-size: 0.75rem; }

.btn-solid {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--light);
  background: var(--dark);
  border: 1px solid var(--dark);
  padding: 0.75rem 2rem;
  margin-top: 1.5rem;
  transition: background var(--transition), color var(--transition);
}
.btn-solid:hover { background: transparent; color: var(--light); opacity: 1; }

/* ─── TYPOGRAPHY HELPERS ─────────────────────────────────── */
.section-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--silver-dark);
  margin-bottom: 0.75rem;
}
.section-eyebrow.light { color: var(--silver); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 4.2rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--dark);
  margin-bottom: 1.5rem;
}
.section-title.light { color: var(--light); }
.section-body {
  font-family: var(--font-body);
  font-size: 0.97rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--dark);
  max-width: 52ch;
}
.section-body.light { color: var(--silver-light); }

/* ─── SLIDER ────────────────────────────────────────────── */
.slider-section {
  width: 100%;
  height: calc(100vh - var(--ann-h) - var(--header-h));
  height: calc(100svh - var(--ann-h) - var(--header-h));
  max-height: calc(1080px - var(--ann-h) - var(--header-h));
  min-height: 500px;
  overflow: hidden;
  position: relative;
}
.slider-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}
.slider-track {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
}
.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 5rem 6rem;
  opacity: 0;
  z-index: 1;
  transition: opacity 1.8s ease;
  animation: none;
}

/* Each slide gets alternating zoom direction */
.slide:first-child {
  opacity: 1;
  z-index: 2;
}

@keyframes kenBurnsIn {
  0%   { transform: scale(1.0); }
  100% { transform: scale(1.08); }
}
@keyframes kenBurnsOut {
  0%   { transform: scale(1.08); }
  100% { transform: scale(1.0); }
}
.slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(to top, rgba(28,30,29,0.75) 0%, rgba(28,30,29,0.35) 45%, rgba(28,30,29,0.15) 100%),
    linear-gradient(to right, rgba(28,30,29,0.4) 0%, transparent 60%);
}
.slide-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.slide-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 5.5rem);
  font-weight: 300;
  color: var(--light);
  line-height: 1.05;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 24px rgba(28,30,29,0.5);
}
.slide-sub {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  color: var(--silver-light);
  letter-spacing: 0.06em;
  text-shadow: 0 1px 12px rgba(28,30,29,0.6);
}
.slider-dots {
  position: absolute;
  bottom: 2rem;
  right: 4rem;
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}
.slider-dot {
  width: 28px;
  height: 2px;
  background: rgba(225,225,223,0.4);
  border: none;
  cursor: pointer;
  transition: background 0.3s, width 0.3s;
}
.slider-dot.active { background: var(--light); width: 48px; }
.slider-arrow { display: none; }

/* ─── HIKAYEMIZ HOME ─────────────────────────────────────── */
.hikaye-home {
  padding: 8rem 0;
  background: var(--light);
}
.hikaye-home-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4rem;
}
.hikaye-row {
  display: grid;
  align-items: center;
  gap: 5rem;
  margin-bottom: 6rem;
}
.hikaye-row-1 { grid-template-columns: 1fr 1fr; }
.hikaye-row-2 { grid-template-columns: 1fr 1fr; }
.hikaye-img-wrap {
  overflow: hidden;
}
.hikaye-img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
  transition: transform 8s ease;
}
.hikaye-img-wrap:hover .hikaye-img { transform: scale(1.04); }
.hikaye-text-right { padding-left: 2rem; }
.hikaye-text-left { padding-right: 2rem; }

/* ─── ARA BANTLAR (CSS BACKGROUND) ──────────────────────── */
.ara-band-1 {
  width: 100%;
  height: 640px;
  background-image: url('assets/araband1.jpg'); /* Görsel: 1920 × 640 px */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.ara-band-2 {
  width: 100%;
  height: 560px;
  background-image: url('assets/araband2.jpg'); /* Görsel: 1920 × 560 px */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.ara-band-3 {
  width: 100%;
  height: 560px;
  background-image: url('assets/araband3.jpg'); /* Görsel: 1920 × 560 px */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.ara-band-4 {
  width: 100%;
  height: 500px;
  background-image: url('assets/araband4.jpg'); /* Görsel: 1920 × 500 px */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.ara-band-5 {
  width: 100%;
  height: 560px;
  background-image: url('assets/araband5.jpg'); /* Görsel: 1920 × 560 px */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.ara-band-6 {
  width: 100%;
  height: 560px;
  background-image: url('assets/araband6.jpg'); /* Görsel: 1920 × 560 px */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.ara-band-7 {
  width: 100%;
  height: 320px;
  background-image: url('assets/araband7.jpg'); /* Görsel: 1920 × 320 px */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* ─── OYA SECTION ───────────────────────────────────────── */
.oya-section {
  background: var(--light);
  padding: 8rem 4rem;
  position: relative;
  overflow: hidden;
}
.oya-bg-text {
  position: absolute;
  top: 50%;
  right: -3%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(6rem, 16vw, 18rem);
  font-weight: 300;
  color: rgba(28,30,29,0.09);
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.02em;
}
.oya-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 6rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
.oya-img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

/* ─── OYA DİVIDER ───────────────────────────────────────── */
.oya-divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  height: 280px;
  background: var(--light);
  overflow: hidden;
}
.oya-divider-left,
.oya-divider-right {
  overflow: hidden;
  position: relative;
}
.oya-divider-left img,
.oya-divider-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 8s ease;
  filter: saturate(0.85);
}
.oya-divider-left { mask-image: linear-gradient(to right, black 60%, transparent 100%); -webkit-mask-image: linear-gradient(to right, black 60%, transparent 100%); }
.oya-divider-right { mask-image: linear-gradient(to left, black 60%, transparent 100%); -webkit-mask-image: linear-gradient(to left, black 60%, transparent 100%); }
.oya-divider-left:hover img,
.oya-divider-right:hover img { transform: scale(1.04); }
.oya-divider-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 3rem;
  gap: 1rem;
  position: relative;
  z-index: 2;
  white-space: nowrap;
}
.oya-divider-center::before,
.oya-divider-center::after {
  content: '';
  display: block;
  width: 1px;
  flex: 1;
  background: linear-gradient(to bottom, transparent, var(--silver-dark), transparent);
}
.oya-divider-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--silver-dark);
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

/* ─── OYA'LAN SECTION ───────────────────────────────────── */
.oyalan-section {
  background: var(--dark);
  padding: 8rem 4rem;
}
.oyalan-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.oyalan-intro {
  margin-bottom: 4rem;
  max-width: 64ch;
}
.oyalan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.oyalan-card {
  background: rgba(225,225,223,0.04);
  border: 1px solid rgba(225,225,223,0.08);
  cursor: pointer;
  transition: transform 0.3s, border-color 0.3s;
  overflow: hidden;
}
.oyalan-card:hover {
  transform: translateY(-6px);
  border-color: rgba(225,225,223,0.25);
}
.oyalan-card-img {
  overflow: hidden;
  aspect-ratio: 4/3;
}
.oyalan-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.oyalan-card:hover .oyalan-card-img img { transform: scale(1.05); }
.oyalan-card-body {
  padding: 1.5rem 1.75rem 2rem;
}
.oyalan-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--light);
  margin-bottom: 0.6rem;
  letter-spacing: 0.01em;
}
.oyalan-card-body p {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--silver);
  line-height: 1.7;
}

/* ─── KURUCU SÖZ ─────────────────────────────────────────── */
.kurucu-soz {
  background: var(--dark);
  background-image: url('assets/kurucu-bg.jpg'); /* Görsel ölçüsü: 1920 × 560 px */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.kurucu-soz::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(28,30,29,0.72);
}
.kurucu-soz-inner {
  max-width: 860px;
  width: 100%;
  padding: 0 4rem;
  text-align: center;
  position: relative;
  z-index: 2;
}
.quote-mark {
  display: block;
  font-family: var(--font-display);
  font-size: 7rem;
  line-height: 1;
  color: var(--silver-dark);
  opacity: 0.45;
  user-select: none;
}
.quote-open {
  margin-bottom: -1.5rem;
}
.quote-close {
  display: inline-block;
  transform: rotate(180deg) translateY(-0.15em);
  margin-top: -1.5rem;
}
blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 300;
  font-style: italic;
  color: var(--light);
  line-height: 1.5;
  margin-bottom: 2rem;
}
cite {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver);
  font-style: normal;
}

/* ─── MÜZE SECTION ──────────────────────────────────────── */
.muze-section {
  min-height: 800px;
  background: var(--light);
  background-image: url('assets/muze-bg.jpg'); /* Görsel: 1920 × 800 px */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  display: flex;
  align-items: center;
  padding: 7rem 4rem;
}
.muze-overlay {
  position: absolute;
  inset: 0;
  background: rgba(225,225,223,0.88);
}
.muze-inner {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
.muze-visual-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border: 1px solid var(--silver-light);
}
.muze-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.muze-btns .btn-solid { margin-top: 0; }
.muze-btns .btn-outline { margin-top: 0; }

/* ─── MÜZE ALTI SÖZ ─────────────────────────────────────── */
.muze-soz {
  background: var(--light);
  background-image: url('assets/muze-soz-bg.jpg'); /* Görsel: 1920 × 560 px */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  height: 560px;
  padding: 0 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.muze-soz::before {
  content: '';
  position: absolute;
  inset: 0;
  /* background: rgb(231, 223, 186); 0.72 → 0.45 */
}

.muze-soz-inner {
  max-width: 860px;
  width: 100%;
  margin: 0 auto;
  padding: 0 4rem;
  position: relative;
  z-index: 2;
}
.featured-quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 300;
  font-style: italic;
  color: var(--dark);
  line-height: 1.5;
}
.featured-quote.dark { color: var(--light); }

/* ─── KOLEKSİYON ────────────────────────────────────────── */
.koleksiyon-section {
  background: var(--dark);
  padding: 8rem 4rem;
}
.koleksiyon-inner { max-width: 1400px; margin: 0 auto; }
.koleksiyon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

/* ─── KOLEKSİYON SÖZ ────────────────────────────────────── */
.koleksiyon-soz {
  background: var(--dark);
  background-image: url('assets/koleksiyon-soz-bg.jpg'); /* Görsel: 1920 × 560 px */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  height: 560px;
  padding: 0 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.koleksiyon-soz::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(28,30,29,0.45); /* 0.72 → 0.45 */
}
.koleksiyon-soz-inner {
  max-width: 860px;
  width: 100%;
  margin: 0 auto;
  padding: 0 4rem;
  position: relative;
  z-index: 2;
}

/* ─── HAREKETLİ BAR ─────────────────────────────────────── */
.moving-bar {
  background: var(--dark);
  border-top: 1px solid rgba(225,225,223,0.1);
  border-bottom: 1px solid rgba(225,225,223,0.1);
  padding: 1.2rem 0;
  overflow: hidden;
  width: 100%;
}
.moving-track {
  display: flex;
  width: max-content;
  animation: movingBar 30s linear infinite;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 300;
  font-style: italic;
  color: var(--silver);
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.moving-item {
  display: inline-block;
  padding-right: 0;
}
@keyframes movingBar {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── DUYURULAR ─────────────────────────────────────────── */
.duyurular-section {
  background: var(--light);
  padding: 8rem 4rem;
  position: relative;
  overflow: hidden;
}
.duyuru-bg-text {
  position: absolute;
  top: 40%;           /* bottom: -5% → top: 40% */
  right: -2%;
  transform: translateY(-50%); /* dikey ortalama */
  font-family: var(--font-display);
  font-size: clamp(5rem, 14vw, 16rem);
  font-weight: 300;
  color: rgba(28,30,29,0.08);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.02em;
}
.duyurular-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.duyuru-list {
  margin: 3rem 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.duyuru-item {
  display: grid;
  grid-template-columns: 140px 1fr 40px;
  gap: 2rem;
  align-items: start;
  padding: 2rem 0;
  border-bottom: 1px solid var(--silver-light);
  cursor: pointer;
  transition: background 0.2s;
}
.duyuru-item:hover { background: rgba(28,30,29,0.02); }
.duyuru-item:first-child { border-top: 1px solid var(--silver-light); }
.duyuru-tarih {
  display: flex;
  flex-direction: column;
}
.duyuru-gun {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--dark);
  line-height: 1;
}
.duyuru-ay {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--silver-dark);
  margin-top: 0.3rem;
}
.duyuru-content h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.duyuru-content p {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--silver-dark);
  line-height: 1.7;
}
.duyuru-arrow {
  color: var(--silver);
  font-size: 1.2rem;
  padding-top: 0.3rem;
  transition: transform 0.2s;
}
.duyuru-item:hover .duyuru-arrow { transform: translateX(4px); color: var(--dark); }

/* ─── SSS ───────────────────────────────────────────────── */
.sss-section {
  background: var(--dark);
  background-image: url('assets/sss-bg.jpg'); /* Görsel: 1920 × 760 px */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  padding: 7rem 4rem;
  min-height: 760px;
}
.sss-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28,30,29,0.80);
}
.sss-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 6rem;
  align-items: start;
  position: relative;
  z-index: 2;
}
.sss-left { padding-top: 0.5rem; }

.sss-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0 2.5rem;
  padding: 1.75rem;
  border: 1px solid rgba(225,225,223,0.1);
  background: rgba(225,225,223,0.04);
}
.sss-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}
.sss-contact-item svg {
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: var(--silver);
}
.sss-contact-item a,
.sss-contact-item span {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--silver-light);
  line-height: 1.5;
  transition: color 0.2s;
}
.sss-contact-item a:hover { color: var(--light); opacity: 1; }
.sss-right {}
.sss-list {}
.sss-item {
  border-bottom: 1px solid rgba(225,225,223,0.1);
}
.sss-item:first-child { border-top: 1px solid rgba(225,225,223,0.1); }
.sss-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--silver-light);
  text-align: left;
  gap: 1rem;
  transition: color 0.2s;
}
.sss-q:hover { color: var(--light); }
.sss-q.open { color: var(--light); }
.sss-icon {
  flex-shrink: 0;
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--silver);
  transition: transform 0.3s;
}
.sss-q.open .sss-icon { transform: rotate(45deg); color: var(--light); }
.sss-a {
  display: none;
  padding: 0 0 1.2rem;
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--silver);
  line-height: 1.8;
}
.sss-a.open { display: block; }

.sss-list.standalone .sss-item { border-bottom: 1px solid rgba(225,225,223,0.12); }
.sss-list.standalone .sss-item:first-child { border-top: 1px solid rgba(225,225,223,0.12); }

/* ─── SATIŞ SECTION ─────────────────────────────────────── */
.satis-section {
  background: var(--light);
  padding: 8rem 4rem;
}
.satis-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.satis-img img {
  width: 100%;
  height: 640px;
  object-fit: cover;
}

/* ─── OYAARTS BG WORD ───────────────────────────────────── */
/* ─── OYAARTS BG WORD ───────────────────────────────────── */
.oyaarts-bg-section {
  padding: 5rem 4rem;
  background: var(--light);
  overflow: hidden;
  text-align: center;
  width: 100%;
  position: relative;
}

/* Dekoratif köşe süsleri */
.oyaarts-bg-section::before,
.oyaarts-bg-section::after {
  content: '✦ oya ✦ arts ✦ gelenek ✦ el emeği ✦ zanaat ✦';
  position: absolute;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--silver);
  white-space: nowrap;
}
.oyaarts-bg-section::before {
  top: 1.8rem;
  left: 50%;
  transform: translateX(-50%);
}
.oyaarts-bg-section::after {
  bottom: 1.8rem;
  left: 50%;
  transform: translateX(-50%);
}

.oyaarts-bg-word {
  font-family: var(--font-display);
  font-size: clamp(5rem, 18vw, 20rem);
  font-weight: 300;
  color: rgba(28,30,29,0.13);
  line-height: 1;
  letter-spacing: 0.05em;
  white-space: nowrap;
  display: inline-block;
  position: relative;
}

/* Ortadaki yazı katmanı */
.oyaarts-center-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  pointer-events: none;
  white-space: nowrap;
}
.oyaarts-center-tagline {
  display: block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--silver-dark);
  margin-bottom: 0.3rem;
}
.oyaarts-center-quote {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--dark);
  letter-spacing: 0.02em;
}
/* ─── SON SÖZ ────────────────────────────────────────────── */
.son-soz {
  background: var(--light);
  background-image: url('assets/son-soz-bg.jpg'); /* Görsel: 1920 × 560 px */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  height: 560px;
  padding: 0 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.son-soz::before {
  content: '';
  position: absolute;
  inset: 0;
  /* background: rgba(28,30,29,0.45); 0.72 → 0.45 */
}

.son-soz-inner {
  max-width: 860px;
  width: 100%;
  margin: 0 auto;
  padding: 0 4rem;
  position: relative;
  z-index: 2;
}

/* ─── INNER PAGE HERO ───────────────────────────────────── */
.inner-page-hero {
  height: 100vh;
  min-height: 380px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 4rem;
  overflow: hidden;
}
.inner-page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.inner-page-hero:hover .inner-page-hero-bg { transform: scale(1.0); }
.inner-page-hero-overlay {
  position: absolute;
  inset: 0;
  background: none;
}
.inner-page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 7rem);
  font-weight: 300;
  color: var(--silver-dark);
  line-height: 1;
  letter-spacing: -0.01em;
}

/* ─── INNER PAGE CONTENT ────────────────────────────────── */
.inner-page-content {
  padding: 7rem 4rem;
}
.light-bg { background: var(--light); }
.dark-bg { background: var(--dark); }

.inner-content-wrap {
  max-width: 1400px;
  margin: 0 auto;
}
.inner-content-wrap.narrow { max-width: 900px; }

.inner-text-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}
.inner-text-col p {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--dark);
  margin-bottom: 1rem;
}
.dark-bg .inner-text-col p { color: var(--silver-light); }

.inner-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.dark-bg .inner-section-title { color: var(--light); }
.inner-section-title.centered { text-align: center; }

.inner-intro { text-align: center; margin-bottom: 4rem; }
.inner-intro-text {
  font-size: 1rem;
  font-weight: 300;
  color: var(--silver-dark);
  max-width: 68ch;
  margin: 0 auto;
  line-height: 1.85;
}
.dark-bg .inner-intro-text { color: var(--silver); }

.inner-full-img {
  margin: 4rem 0;
  overflow: hidden;
}
.inner-full-img img {
  width: 100%;
  height: 100%;   /* 16:9 oranı = 1920×1080 */
  /* max-height: 1080px; */
  object-fit: cover;
}

/* ─── OYA TYPES PAGE GRID ───────────────────────────────── */
.oya-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}
.oya-type-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  margin-bottom: 1rem;
}
.oya-type-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.oya-type-card p {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--silver-dark);
  line-height: 1.7;
}

/* ─── OYA'LAN ACCORDION ─────────────────────────────────── */
.oyalan-archive {
  padding: 7rem 4rem;
}
.oyalan-archive-inner { max-width: 900px; margin: 0 auto; }
.oyalan-accordion {}
.acc-item {
  border-bottom: 1px solid rgba(225,225,223,0.12);
}
.acc-item:first-child { border-top: 1px solid rgba(225,225,223,0.12); }
.acc-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--light);
  text-align: left;
  transition: color 0.2s;
}
.acc-header:hover { color: var(--silver-light); }
.acc-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--silver);
  transition: transform 0.3s;
}
.acc-header.open .acc-icon { transform: rotate(45deg); }
.acc-body {
  display: none;
  padding: 0 0 1.5rem;
}
.acc-body.open { display: block; }
.acc-body p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--silver);
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* ─── DUYURU PAGE ───────────────────────────────────────── */
.duyuru-page-list { display: flex; flex-direction: column; gap: 0; }
.duyuru-item.page-version {
  grid-template-columns: 140px 1fr;
  padding: 2.5rem 0;
}
.duyuru-item.page-version .duyuru-content h3 { font-size: 1.5rem; }
.duyuru-item.page-version .duyuru-content p {
  font-size: 0.92rem;
  color: var(--silver-dark);
}

/* ─── KOLEKSİYON PAGE ──────────────────────────────────── */
.koleksiyon-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

/* ─── FOOTER ────────────────────────────────────────────── */
#main-footer {
  background: var(--dark);
  color: var(--silver-light);
  padding: 5rem 4rem 2rem;
  border-top: 1px solid rgba(225,225,223,0.08);
}
.footer-inner { max-width: 1400px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(225,225,223,0.08);
}
.footer-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1.5rem;
  filter: brightness(0) invert(1) opacity(0.85);
}
.footer-tagline {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--silver);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(225,225,223,0.12);
  color: var(--silver);
  transition: border-color 0.2s, color 0.2s;
}
.social-link:hover { border-color: var(--silver); color: var(--light); opacity: 1; }
.footer-heading {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--silver-dark);
  margin-bottom: 1.5rem;
}
.footer-col.footer-links,
.footer-col.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.footer-col.footer-links a {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--silver-light);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.footer-col.footer-links a:hover { color: var(--light); opacity: 1; }
.footer-contact p {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--silver-light);
  line-height: 1.6;
}
.footer-contact a { color: var(--silver-light); }
.footer-contact a:hover { color: var(--light); opacity: 1; }
.footer-partner-imgs {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.footer-partner {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-partner img {
  width: 140px;
  height: 90px;
  object-fit: contain;
  filter: grayscale(20%);
  display: block;  /* ekle */
  margin: 0 auto; /* ekle */
}

.partner-label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver-dark);
  text-align: center;
  display: block; /* ekle */
  width: 140px;   /* img genişliğiyle eşleştir */
  transition: color 0.2s;
}
.partner-label:hover { color: var(--light); opacity: 1; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--silver-dark);
  letter-spacing: 0.06em;
}
.footer-bottom-links {
  display: flex;
  gap: 2rem;
}
.footer-bottom-links a {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silver-dark);
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: var(--silver-light); opacity: 1; }

/* ─── BAND PLACEHOLDER (GEÇİCİ — GÖRSEL YÜKLENİNCE SİLİNECEK) ── */
.band-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: repeating-linear-gradient(
    45deg,
    rgba(28,30,29,0.06),
    rgba(28,30,29,0.06) 10px,
    rgba(28,30,29,0.03) 10px,
    rgba(28,30,29,0.03) 20px
  );
  border: 2px dashed var(--silver-light);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--silver-dark);
  text-align: center;
  padding: 1rem;
}
.band-placeholder-dark {
  background: repeating-linear-gradient(
    45deg,
    rgba(225,225,223,0.05),
    rgba(225,225,223,0.05) 10px,
    rgba(225,225,223,0.02) 10px,
    rgba(225,225,223,0.02) 20px
  );
  border-color: rgba(225,225,223,0.2);
  color: var(--silver-light);
}

/* ─── AUTH PAGES (KAYIT / GİRİŞ) ───────────────────────── */
.auth-page-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}
.auth-visual {
  position: relative;
  overflow: hidden;
}
.auth-visual-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 12s ease;
}
.auth-visual:hover .auth-visual-bg { transform: scale(1.0); }
.auth-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(28,30,29,0.72) 0%, rgba(28,30,29,0.45) 100%);
}
.auth-visual-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 3.5rem 4rem;
}
.auth-logo-link { display: inline-block; }
.auth-logo {
  height: 48px;
  width: auto;
  filter: brightness(0) invert(1) opacity(0.9);
}
.auth-quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--light);
  line-height: 1.45;
  letter-spacing: 0.01em;
  max-width: 480px;
}

.auth-form-side {
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 3rem;
}
.auth-form-wrap {
  width: 100%;
  max-width: 440px;
}
.auth-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}
.auth-subtitle {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--silver-dark);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.auth-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.auth-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.auth-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.auth-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--silver-dark);
}
.auth-input {
  width: 100%;
  padding: 0.85rem 1rem;
  background: transparent;
  border: 1px solid var(--silver-light);
  border-radius: 0;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--dark);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.auth-input::placeholder { color: var(--silver); }
.auth-input:focus { border-color: var(--dark); }

.auth-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 0.25rem;
}
.auth-checkbox {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--dark);
  cursor: pointer;
}
.auth-check-label {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--silver-dark);
  line-height: 1.6;
  cursor: pointer;
}
.auth-check-label a { color: var(--dark); border-bottom: 1px solid var(--silver-light); }
.auth-check-label a:hover { opacity: 0.7; }

.auth-forgot {
  display: flex;
  justify-content: flex-end;
  margin-top: -0.5rem;
}
.auth-forgot a {
  font-size: 0.78rem;
  color: var(--silver-dark);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}
.auth-forgot a:hover { color: var(--dark); border-bottom-color: var(--dark); opacity: 1; }

.auth-btn {
  width: 100%;
  padding: 1rem;
  background: var(--dark);
  color: var(--light);
  border: 1px solid var(--dark);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  margin-top: 0.5rem;
}
.auth-btn:hover { background: transparent; color: var(--dark); }

.auth-switch {
  text-align: center;
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--silver-dark);
}
.auth-switch a { color: var(--dark); border-bottom: 1px solid var(--dark); }
.auth-switch a:hover { opacity: 0.6; }

/* ─── İLETİŞİM SAYFASI ──────────────────────────────────── */
.iletisim-section {
  padding: 7rem 4rem;
  background: var(--light);
}
.iletisim-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  align-items: start;
}
.iletisim-intro {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--silver-dark);
  line-height: 1.8;
  margin: 1.5rem 0 2.5rem;
  max-width: 42ch;
}
.iletisim-card-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.iletisim-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--silver-light);
}
.iletisim-card:first-child { border-top: 1px solid var(--silver-light); }
.iletisim-card-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  background: var(--dark);
  color: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.iletisim-card-label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver-dark);
  margin-bottom: 0.35rem;
}
.iletisim-card-val {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--dark);
  line-height: 1.6;
}
a.iletisim-card-val.link {
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
a.iletisim-card-val.link:hover { border-bottom-color: var(--dark); opacity: 1; }

.iletisim-form-side {}
.iletisim-form-header { margin-bottom: 2rem; }
.iletisim-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.iletisim-input {
  width: 100%;
  padding: 0.85rem 1rem;
  background: transparent;
  border: 1px solid var(--silver-light);
  border-radius: 0;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--dark);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.iletisim-input::placeholder { color: var(--silver); }
.iletisim-input:focus { border-color: var(--dark); }
.iletisim-select { cursor: pointer; background: transparent; }
.iletisim-textarea { resize: vertical; min-height: 130px; line-height: 1.6; }
.iletisim-btn { margin-top: 0.5rem; }

/* ─── SATIŞ SAYFASI ─────────────────────────────────────── */
.satis-page-intro {
  padding: 7rem 4rem;
}
.satis-page-intro-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.satis-page-intro-visual img {
  width: 100%;
  height: 580px;
  object-fit: cover;
}

.satis-features {
  padding: 5rem 4rem;
}
.satis-features-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}
.satis-feature {
  text-align: center;
  padding: 2rem 1rem;
  border: 1px solid rgba(225,225,223,0.08);
  transition: border-color 0.3s;
}
.satis-feature:hover { border-color: rgba(225,225,223,0.2); }
.satis-feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--silver);
  border: 1px solid rgba(225,225,223,0.12);
}
.satis-feature h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--light);
  margin-bottom: 0.6rem;
}
.satis-feature p {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--silver);
  line-height: 1.7;
}

.satis-redirect {
  padding: 8rem 4rem;
  background: var(--light);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.satis-redirect-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(5rem, 16vw, 18rem);
  font-weight: 300;
  color: rgba(28,30,29,0.06);
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: -0.02em;
}
.satis-redirect-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}
.satis-redirect-inner .section-body { margin: 0 auto 0.5rem; }

.ozel-siparis { padding: 7rem 4rem; }
.ozel-siparis-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}
.ozel-siparis-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 1rem;
}
.ozel-siparis-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(225,225,223,0.08);
}
.ozel-siparis-item:first-child { border-top: 1px solid rgba(225,225,223,0.08); }
.ozel-no {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  color: rgba(225,225,223,0.15);
  line-height: 1;
  flex-shrink: 0;
  width: 52px;
}
.ozel-siparis-item h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--light);
  margin-bottom: 0.4rem;
}
.ozel-siparis-item p {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--silver);
  line-height: 1.7;
}

/* ─── FOOTER PARTNER SINGLE ─────────────────────────────── */
.footer-partner a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
}
.footer-partner a:hover { opacity: 0.8; }

/* ─── SCROLL REVEAL ─────────────────────────────────────── */
.scroll-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.scroll-reveal:nth-child(2) { transition-delay: 0.1s; }
.scroll-reveal:nth-child(3) { transition-delay: 0.2s; }
.scroll-reveal:nth-child(4) { transition-delay: 0.3s; }

/* ─── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 1100px) {
  .header-nav { display: none; }
  .header-actions { display: none; }
  .hamburger { display: flex; }
  .mobile-menu.open { display: flex; }
  .hikaye-row-1,
  .hikaye-row-2 { grid-template-columns: 1fr; gap: 2rem; }
  .hikaye-text-right,
  .hikaye-text-left { padding: 0; }
  .hikaye-img { height: 380px; }
  .oya-inner { grid-template-columns: 1fr; gap: 3rem; }
  .oya-img { height: 380px; }
  .oyalan-grid { grid-template-columns: repeat(2, 1fr); }
  .koleksiyon-grid { grid-template-columns: repeat(2, 1fr); }
  .muze-inner { grid-template-columns: 1fr; }
  .sss-inner { grid-template-columns: 1fr; }
  .satis-inner { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 3rem; }
}
@media (max-width: 768px) {
  :root { --header-h: 72px; }
  .hikaye-home { padding: 5rem 0; }
  .hikaye-home-inner { padding: 0 1.5rem; }
  .oya-section,
  .oyalan-section,
  .muze-section,
  .sss-section,
  .satis-section,
  .duyurular-section,
  .koleksiyon-section { padding: 5rem 1.5rem; }
  .inner-page-content { padding: 4rem 1.5rem; }
  .inner-page-hero { padding: 2rem 1.5rem; }
  .oyalan-grid { grid-template-columns: 1fr; }
  .koleksiyon-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .header-inner { padding: 0 1.5rem; }
  .duyuru-item { grid-template-columns: 100px 1fr; }
  .inner-text-cols { grid-template-columns: 1fr; gap: 2rem; }
  .oya-types-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .slide { padding: 2rem 1.5rem; }
  .slider-section { min-height: 500px; }
  .oya-types-grid { grid-template-columns: 1fr; }
  .duyuru-item { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .auth-page-wrap { grid-template-columns: 1fr; }
  .auth-visual { display: none; }
  .auth-form-side { padding: 5rem 2rem; min-height: 100vh; }
  .auth-row { grid-template-columns: 1fr; }
  .iletisim-inner { grid-template-columns: 1fr; gap: 3rem; }
  .satis-page-intro-inner { grid-template-columns: 1fr; gap: 3rem; }
  .satis-features-inner { grid-template-columns: repeat(2, 1fr); }
  .ozel-siparis-inner { grid-template-columns: 1fr; gap: 3rem; }
}

/* ─── SÖZ ALANLARI RESPONSIVE ───────────────────────────── */
@media (max-width: 768px) {
  .muze-soz,
  .koleksiyon-soz,
  .son-soz {
    height: 420px;
    padding: 0 1.5rem;
    background-attachment: scroll;
  }
  .muze-soz-inner,
  .koleksiyon-soz-inner,
  .son-soz-inner {
    padding: 0;
  }
}

/* ─── MOBİL: background-attachment:fixed KALDIRILDI ─────────
   iOS Safari ve Android Chrome'da fixed background-attachment
   kırılır; görseller görünmez veya yanlış konumlanır.
   Touch cihazlarda tüm parallax efektleri scroll'a alınır.
─────────────────────────────────────────────────────────── */
@media (hover: none), (max-width: 1024px) {
  /* Tüm ara bantlar */
  .ara-band-1,
  .ara-band-2,
  .ara-band-3,
  .ara-band-4,
  .ara-band-5,
  .ara-band-6,
  .ara-band-7 {
    background-attachment: scroll;
  }

  /* Kurucu söz, müze, koleksiyon söz, müze-soz benzeri alanlar */
  .kurucu-soz,
  .muze-section,
  .muze-soz,
  .koleksiyon-soz,
  .son-soz {
    background-attachment: scroll;
  }
}

/* ─── TABLET + MOBİL: SLIDER DÜZELTMELERİ (≤900px) ─────── */
@media (max-width: 900px) {
  /* Slider: padding azalt, tam genişlik koru */
  .slider-section {
    height: 75svh;
    height: 75vh; /* fallback */
    min-height: 440px;
    max-height: 680px;
  }

  .slide {
    padding: 2.5rem 2.5rem 5rem;
    background-position: center center;
    background-size: cover;
  }

  .slide-title {
    font-size: clamp(1.8rem, 5vw, 3.2rem);
    margin-bottom: 0.75rem;
  }

  .slide-sub {
    font-size: 0.92rem;
  }

  .slider-dots {
    right: 50%;
    transform: translateX(50%);
    bottom: 1.5rem;
  }
}

@media (max-width: 768px) {
  .slider-section {
    height: 82svh;
    height: 82vh;
    min-height: 400px;
    max-height: 620px;
  }

  .slide {
    padding: 2rem 1.5rem 4.5rem;
  }

  .slide-title {
    font-size: clamp(1.7rem, 7vw, 2.8rem);
  }
}

@media (max-width: 480px) {
  .slider-section {
    min-height: 360px;
    height: 80svh;
    height: 80vh;
  }

  .slide {
    padding: 1.5rem 1.25rem 3.5rem;
  }
}

/* ─── TABLET + MOBİL: ARA BANT YÜKSEKLİKLERİ (≤900px) ─── */
/* Sabit px yerine min-height + auto yükseklik kullan;
   bu sayede görsel ne kadar dar ekranda olursa olsun
   background-size:cover düzgün kesiyor, içerik sığıyor.  */
@media (max-width: 900px) {
  .ara-band-1,
  .ara-band-2,
  .ara-band-3,
  .ara-band-4,
  .ara-band-5,
  .ara-band-6 {
    height: auto;
    min-height: 320px;
    background-position: center center;
  }
  .ara-band-7 {
    height: auto;
    min-height: 200px;
    background-position: center center;
  }
  .kurucu-soz {
    height: auto;
    min-height: 420px;
    background-position: center center;
  }
  .muze-soz {
    height: auto;
    min-height: 360px;
    background-position: center center;
  }
}

@media (max-width: 768px) {
  .ara-band-1,
  .ara-band-2,
  .ara-band-3,
  .ara-band-4,
  .ara-band-5,
  .ara-band-6 {
    min-height: 260px;
  }
  .ara-band-7        { min-height: 160px; }
  .kurucu-soz        { min-height: 360px; }
  .muze-soz          { min-height: 300px; }

  /* Müze section sabit yükseklik yerine min-height */
  .muze-section {
    min-height: auto;
    padding: 5rem 1.5rem;
  }
  .muze-visual-img { height: 280px; }
}

@media (max-width: 480px) {
  .ara-band-1,
  .ara-band-2,
  .ara-band-3,
  .ara-band-4,
  .ara-band-5,
  .ara-band-6 {
    min-height: 200px;
  }
  .ara-band-7  { min-height: 130px; }
  .kurucu-soz  { min-height: 300px; }
  .muze-soz    { min-height: 260px; }
}
/* ── style.css SONUNA EKLEYİN ─────────────────────────── */

.magaza-section {
  background: var(--light);
  padding: 5rem 4rem 7rem;
}
.magaza-inner { max-width: 1400px; margin: 0 auto; }
.magaza-header { margin-bottom: 3rem; }

/* FİLTRELEME */
.magaza-filters {
  margin-bottom: 3.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--silver-light);
}
.filter-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 0.85rem;
}
.filter-label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver-dark);
  min-width: 72px;
  flex-shrink: 0;
}
.filter-btns { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.filter-btn {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--silver-dark);
  border: 1px solid var(--silver-light);
  padding: 0.4rem 0.9rem;
  background: transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.filter-btn:hover { border-color: var(--dark); color: var(--dark); }
.filter-btn.active { background: var(--dark); color: var(--light); border-color: var(--dark); }
.filter-result-info { margin-top: 0.75rem; }
#filter-count {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--silver-dark);
  letter-spacing: 0.06em;
}

/* ÜRÜN GRID */
.magaza-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.magaza-card {
  cursor: pointer;
  background: var(--white);
  border: 1px solid var(--silver-light);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.3s;
}
.magaza-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(28,30,29,0.10);
  border-color: var(--silver);
}
.magaza-card.hidden { display: none; }

.magaza-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.magaza-card-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.6s ease;
}
.magaza-card:hover .magaza-card-img img { transform: scale(1.05); }

.magaza-card-badge {
  position: absolute; top: 0.85rem; left: 0.85rem;
  background: var(--dark); color: var(--light);
  font-family: var(--font-body); font-size: 0.62rem;
  font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; padding: 0.28rem 0.7rem; z-index: 2;
}
.magaza-card-overlay {
  position: absolute; inset: 0;
  background: rgba(28,30,29,0.45);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s ease; z-index: 3;
}
.magaza-card:hover .magaza-card-overlay { opacity: 1; }
.magaza-card-overlay span {
  font-family: var(--font-body); font-size: 0.75rem;
  font-weight: 500; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--light);
  border: 1px solid rgba(225,225,223,0.6);
  padding: 0.55rem 1.4rem;
}

.magaza-card-body { padding: 1.3rem 1.5rem 1.6rem; }
.magaza-card-meta {
  display: flex; justify-content: space-between;
  align-items: center; margin-bottom: 0.6rem;
}
.magaza-cert {
  font-family: var(--font-body); font-size: 0.64rem;
  font-weight: 400; letter-spacing: 0.1em; color: var(--silver-dark);
}
.magaza-yore {
  font-family: var(--font-body); font-size: 0.62rem;
  font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--silver-dark);
  border: 1px solid var(--silver-light); padding: 0.18rem 0.55rem;
}
.magaza-card-title {
  font-family: var(--font-display); font-size: 1.3rem;
  font-weight: 400; color: var(--dark);
  line-height: 1.2; margin-bottom: 0.3rem;
}
.magaza-card-artist {
  font-family: var(--font-body); font-size: 0.78rem;
  font-weight: 300; color: var(--silver-dark); font-style: italic;
}

.magaza-empty { text-align: center; padding: 4rem 2rem; }
.magaza-empty p {
  font-family: var(--font-display); font-size: 1.2rem;
  font-weight: 300; color: var(--silver-dark); margin-bottom: 2rem;
}

/* MODAL */
.magaza-modal-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(28,30,29,0.72); z-index: 1000;
  align-items: center; justify-content: center;
  padding: 2rem; backdrop-filter: blur(4px);
}
.magaza-modal-overlay.open {
  display: flex;
  animation: modalFadeIn 0.3s ease forwards;
}
@keyframes modalFadeIn { from { opacity:0; } to { opacity:1; } }

.magaza-modal-box {
  background: var(--light); max-width: 880px; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr;
  position: relative; max-height: 90vh; overflow-y: auto;
  animation: modalSlideUp 0.32s cubic-bezier(0.25,0.46,0.45,0.94) forwards;
}
@keyframes modalSlideUp {
  from { transform: translateY(20px); opacity:0; }
  to   { transform: translateY(0);    opacity:1; }
}
.magaza-modal-close {
  position: absolute; top: 1rem; right: 1rem;
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  background: var(--dark); color: var(--light);
  border: none; cursor: pointer; z-index: 10;
  transition: background 0.2s;
}
.magaza-modal-close:hover { background: var(--silver-dark); }

.magaza-modal-img-side { position: relative; overflow: hidden; }
.magaza-modal-img-side img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; min-height: 360px;
}
.modal-cert-badge {
  position: absolute; bottom: 1rem; left: 1rem;
  background: var(--dark); color: var(--light);
  display: flex; align-items: center; gap: 0.45rem;
  padding: 0.4rem 0.8rem;
  font-family: var(--font-body); font-size: 0.62rem;
  font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
}

.magaza-modal-info { padding: 2.5rem 2rem; display: flex; flex-direction: column; }
.magaza-modal-tur {
  font-family: var(--font-body); font-size: 0.62rem;
  font-weight: 500; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--silver-dark);
  display: block; margin-bottom: 0.5rem;
}
.magaza-modal-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 300; color: var(--dark);
  line-height: 1.1; margin-bottom: 1.5rem;
}
.magaza-modal-table {
  display: flex; flex-direction: column;
  margin-bottom: 1.25rem;
  border-top: 1px solid var(--silver-light);
}
.modal-row {
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: 0.75rem; padding: 0.65rem 0;
  border-bottom: 1px solid var(--silver-light);
  align-items: start;
}
.modal-key {
  font-family: var(--font-body); font-size: 0.65rem;
  font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--silver-dark);
}
.modal-val {
  font-family: var(--font-body); font-size: 0.85rem;
  font-weight: 300; color: var(--dark);
}
.magaza-modal-desc {
  font-family: var(--font-body); font-size: 0.85rem;
  font-weight: 300; color: var(--silver-dark);
  line-height: 1.8; flex: 1; margin-bottom: 1.5rem;
}
.magaza-modal-actions { margin-top: auto; }
.magaza-modal-actions .btn-solid {
  margin-top: 0; display: block;
  width: 100%; text-align: center;
}

/* Responsive */
@media (max-width: 900px) {
  .magaza-modal-box { grid-template-columns: 1fr; }
  .magaza-modal-img-side img { min-height: 260px; max-height: 300px; }
}
@media (max-width: 768px) {
  .magaza-section { padding: 4rem 1.5rem 5rem; }
  .magaza-grid { grid-template-columns: 1fr 1fr; gap: 1.2rem; }
  .filter-group { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .magaza-grid { grid-template-columns: 1fr; }
}
/* ─── ARA BAND İÇERİK ───────────────────────────────────── */
.ara-band-5,
.ara-band-6,
.ara-band-7 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ara-band-5::before,
.ara-band-6::before,
.ara-band-7::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(28,30,29,0.55);
}
.ara-band-content-wrap {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem;
  max-width: 700px;
}
.ara-band-content-compact {
  max-width: 500px;
}
.ara-band-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--light);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}
.ara-band-title-sm {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
}
.ara-band-body {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  color: var(--silver-light);
  line-height: 1.75;
  margin-bottom: 0.5rem;
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
}
/* ─── OYA'LAN SAYFA GİRİŞ ───────────────────────────────── */
.oyalan-intro-section {
  padding: 4rem 4rem 2rem;
}
.oyalan-intro-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.oyalan-intro-lead {
  font-family: var(--font-body);
  font-size: 0.97rem;
  font-weight: 300;
  color: var(--silver);
  line-height: 1.85;
  max-width: 64ch;
  margin-top: 0.75rem;
}

/* ─── OYA'LAN TİP KARTLARI ──────────────────────────────── */
.oyalan-types-section {
  padding: 2rem 4rem 5rem;
}
.oyalan-types-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.oyalan-type-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.oyalan-type-card {
  border: 1px solid rgba(225,225,223,0.08);
  background: rgba(225,225,223,0.03);
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.3s;
}
.oyalan-type-card:hover {
  transform: translateY(-6px);
  border-color: rgba(225,225,223,0.22);
}

.oyalan-type-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.oyalan-type-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.oyalan-type-card:hover .oyalan-type-card-img img {
  transform: scale(1.05);
}
.oyalan-type-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28,30,29,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}
.oyalan-type-card:hover .oyalan-type-card-overlay { opacity: 1; }
.oyalan-type-card-overlay span {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--light);
  border: 1px solid rgba(225,225,223,0.55);
  padding: 0.5rem 1.3rem;
}

.oyalan-type-card-body {
  padding: 1.4rem 1.6rem 1.8rem;
}
.oyalan-type-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  color: rgba(225,225,223,0.1);
  line-height: 1;
  margin-bottom: 0.2rem;
}
.oyalan-type-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--light);
  margin-bottom: 0.55rem;
  line-height: 1.2;
}
.oyalan-type-desc {
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 300;
  color: var(--silver);
  line-height: 1.75;
  margin-bottom: 0;
}
.oyalan-type-cta {
  display: inline-block;
  margin-top: 1rem;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver);
  border-bottom: 1px solid rgba(168,168,164,0.35);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.oyalan-type-card:hover .oyalan-type-cta {
  color: var(--light);
  border-color: rgba(225,225,223,0.6);
}

/* ─── OYA'LAN ARŞİV BAŞLIĞI ─────────────────────────────── */
.oyalan-archive-heading {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 300;
  color: var(--light);
  margin-bottom: 2rem;
  letter-spacing: 0.01em;
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .oyalan-type-grid { grid-template-columns: repeat(2, 1fr); }
  .oyalan-intro-section,
  .oyalan-types-section { padding-left: 1.5rem; padding-right: 1.5rem; }
}
@media (max-width: 560px) {
  .oyalan-type-grid { grid-template-columns: 1fr; }
}