.entry-title {
  margin: 0 0 0.5rem;
}

.entry-meta {
  color: #555;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.search-form {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.search-field {
  min-width: 220px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #ece7df;
}

.site-splash {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  background: #11100f;
  transition: opacity 300ms ease, visibility 300ms ease;
}

.site-splash.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.site-splash__logo {
  color: #f5efe5;
  font-size: clamp(1.2rem, 2.8vw, 2rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

.primary-nav .menu {
  display: flex;
  gap: 1.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-cta,
.hero-button {
  display: inline-block;
  padding: 0.65rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  background: #b0894f;
  color: #fff;
}

.site-branding a {
  text-decoration: none;
  font-weight: 600;
  color: #171513;
}

.hero-video {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  /* Video yüklenene kadar poster/beyaz sıçrama yerine marka koyu zemini */
  background-color: #14110d;
}

.hero-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: #14110d;
}

.hero-overlay {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, 1320px);
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  color: #fff;
}

.hero-overlay h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.hero-kicker {
  margin: 0;
  color: #f2c57c;
}

.hero-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 20, 20, 0.72), rgba(20, 20, 20, 0.2));
}

.showroom-grid,
.premium-grid,
.reviews-grid,
.footer-grid {
  display: grid;
  gap: clamp(0.9rem, 1.4vw, 1.4rem);
}

.showroom-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.showroom-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 8px;
}

.premium-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.premium-item,
.review-item {
  margin: 0;
  padding: 1rem;
  border: 1px solid #d9d0c4;
  border-radius: 8px;
  background: #faf7f2;
}

.reviews-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.site-footer {
  width: 100%;
  margin: 0;
  padding: clamp(2rem, 4vw, 3.5rem) 0 1rem;
  border-top: 1px solid #ddd;
  background: #f6f3ee;
}

.site-footer > * {
  width: min(100% - 2rem, 1320px);
  margin-inline: auto;
}

.footer-grid {
  grid-template-columns: 1.2fr 1fr 1fr;
}

.footer-title,
.footer-subtitle {
  margin-top: 0;
}

.footer-copy {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: #666;
}

.showroom-block {
  background: #ffffff;
  min-height: 72vh;
  display: flex;
  align-items: center;
}

.premium-grid-block {
  background: #f8f5ef;
  min-height: 68vh;
  display: flex;
  align-items: center;
}

.reviews-block {
  background: #ffffff;
  min-height: 62vh;
  display: flex;
  align-items: center;
}

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

  .header-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .showroom-block {
    min-height: 62vh;
  }

  .premium-grid-block {
    min-height: 58vh;
  }

  .reviews-block {
    min-height: 54vh;
  }
}

@media (max-width: 640px) {
  .premium-grid,
  .reviews-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-overlay {
    min-height: 88vh;
  }

  .primary-nav .menu {
    flex-wrap: wrap;
  }

  .showroom-block,
  .premium-grid-block,
  .reviews-block {
    min-height: auto;
    display: block;
  }
}

/* ===== Medya koruması: sürükleme / seçim / dokunmatik uzun-bas menüsü =====
   (Sağ tık ve dragstart JS ile de engellenir — media-guard.js) */
img,
video {
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}
