/* Galata Kahvesi – Marka renk paleti (Premium / Geleneksel Modern) */
:root {
  /* Ana marka renkleri */
  --primary-dark: #2D2926;       /* Koyu Kahve – header, footer, H1/H2 */
  --espresso: #4A3426;           /* Espresso Kahve – menü, kart başlıkları, hover derinlik */
  --sicak-kahve: #6D4C37;       /* Sıcak Kahve – ikonlar, vurgular */
  /* Zemin ve açık tonlar */
  --bg: #F5F1EA;                 /* Krem Beyaz – ana site arka planı */
  --bg-bej: #E8D6B9;            /* Bej – bölüm ayırıcıları */
  --bg-card: #F3E7D2;            /* Açık Krem – kart iç zeminleri */
  --latte: #D6B97A;              /* Latte – çizgi, border, divider */
  /* Aksiyon ve vurgu */
  --cta: #A06A3B;                /* Bakır Kahve – ana butonlar (CTA) */
  --cta-hover: #8C6A45;          /* Koyu Altın – hover, premium detaylar */
  /* Metin ve nav (uyumluluk için gold = cta) */
  --text: #2D2926;
  --text-muted: #5c5348;
  --bg-dark: var(--primary-dark);
  --nav-active-bg: #2D2926;
  --nav-active-color: #F5F1EA;
  --gold: var(--cta);
  --gold-light: var(--cta-hover);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--text); text-decoration: none; }
a:hover { color: var(--gold); }

/* Üst bilgi çubuğu */
.top-bar {
  background: var(--bg-dark);
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  text-align: center;
  color: rgba(255,255,255,0.9);
}
.top-bar p { margin: 0; }

/* Header & Nav - beyaz arka plan, siyah aktif */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 2px solid var(--latte);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.logo-link {
  display: flex;
  align-items: center;
  min-height: 150px;
  flex-shrink: 0;
  min-width: 0;
}
.logo-link img {
  width: 200px;
  height: 150px;
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
}
/* Galata Kahvesi yazısı – sadece mobilde ortada; tablet ve masaüstünde gizli */
.brand-name {
  display: none;
  text-decoration: none;
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  padding: 0 0.5rem;
  white-space: nowrap;
  transition: color 0.25s ease;
}
.brand-name:hover { color: var(--cta); }
@media (min-width: 769px) {
  .brand-name { display: none !important; }
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  list-style: none;
  flex-wrap: wrap;
  justify-content: flex-end;
  padding-right: 0.5rem;
}
.nav-menu a {
  padding: 0.5rem 0.85rem;
  color: var(--text);
  font-size: 0.9rem;
  transition: all 0.2s;
  border-radius: 4px;
}
.nav-menu a:hover { color: var(--gold); }
.nav-menu a.active {
  background: var(--cta) !important;
  color: #F5F1EA !important;
  border-radius: 6px;
}
.nav-cta {
  background: var(--cta) !important;
  color: #F5F1EA !important;
  border-radius: 6px;
  font-weight: 500;
  transition: background 0.3s;
}
.nav-cta:hover { background: var(--cta-hover) !important; color: #F5F1EA !important; }

/* Hamburger - sadece mobilde görünür */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  gap: 5px;
  z-index: 102;
  position: relative;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--bg-dark);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
body.menu-open .nav-toggle span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
body.menu-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}
body.menu-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 98;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  backdrop-filter: blur(2px);
}

/* Slider - büyük hero (resimdeki gibi ~60–70% ekran) */
.slider-wrap {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 500px;
  max-height: 85vh;
  overflow: hidden;
  background: var(--primary-dark);
}
.slider-track {
  display: flex;
  transition: transform 0.5s ease;
  height: 100%;
}
.slider-slide {
  flex: 0 0 100%;
  width: 100%;
  min-height: 500px;
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1.5rem;
}
.slider-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(45,41,38,0.5), rgba(45,41,38,0.85));
}
.slider-slide .content { position: relative; z-index: 1; max-width: 640px; }
.slider-slide .sub { font-size: 0.95rem; color: rgba(255,255,255,0.8); margin-bottom: 0.5rem; letter-spacing: 0.05em; }
.slider-slide h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5.5vw, 3.5rem);
  color: #fff;
  margin-bottom: 0.75rem;
}
.slider-slide p { color: rgba(255,255,255,0.85); font-size: 1.05rem; margin-bottom: 1.25rem; }
.slider-slide .btn {
  display: inline-block;
  padding: 0.7rem 1.6rem;
  background: var(--cta);
  color: #F5F1EA;
  border-radius: 6px;
  font-weight: 500;
  transition: background 0.3s;
}
.slider-slide .btn:hover { background: var(--cta-hover); color: #F5F1EA; }

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none;
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
  z-index: 2;
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-arrow:hover { background: rgba(255,255,255,0.35); }
.slider-arrow.prev { left: 1rem; }
.slider-arrow.next { right: 1rem; }

.slider-dots {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 2;
}
.slider-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background 0.3s;
}
.slider-dots button.active { background: var(--cta); }

/* Bölüm arka planları – Krem Beyaz / Bej ayrımı */
.section-bg { background: var(--bg); }
.section-bg-alt { background: var(--bg-bej); }
.section.section-bg-alt,
.section.section-bg { padding: 3.5rem 1rem; }

/* Bölüm başlıkları - koyu kahve */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1rem 2rem;
}
.section-footer-tight {
  padding-bottom: 2rem;
}
.section-footer-tight + .site-footer {
  margin-top: 0;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  text-align: center;
  margin-bottom: 0.5rem;
  color: var(--bg-dark);
}
.section-subtitle {
  text-align: center;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* Kahveyle Başlayan Bir Yolculuk - kategori kartları (icodeajans) */
.categories {
  background: var(--bg-card);
  padding: 4rem 1rem;
  border-top: 2px solid var(--latte);
}
.categories .container {
  max-width: 1200px;
  margin: 0 auto;
}
.categories .section-title {
  margin-bottom: 0.35rem;
}
.categories .section-subtitle {
  margin-bottom: 2.5rem;
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.category-card {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border: 2px solid var(--latte);
  border-radius: 12px;
  padding: 1.75rem;
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.3s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.category-card:hover {
  border-color: var(--cta-hover);
  box-shadow: 0 8px 24px rgba(44, 36, 25, 0.08);
  transform: translateY(-2px);
}
.category-card .category-icon {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  line-height: 1;
}
.category-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--bg-dark);
  margin-bottom: 0.5rem;
}
.category-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
  flex-grow: 1;
  margin-bottom: 1rem;
}
.category-card .category-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gold);
  transition: color 0.2s, transform 0.2s;
}
.category-card:hover .category-link {
  color: var(--bg-dark);
}
@media (max-width: 1024px) {
  .category-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .categories { padding: 2.5rem 1rem; }
  .category-grid { grid-template-columns: 1fr; gap: 1rem; }
  .category-card { padding: 1.5rem; }
}

/* Şubeler grid – tüm resimler hizalı, isimler resmin hemen altında */
.branches-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 100%;
  margin: 0 auto;
  align-items: stretch;
}
@media (min-width: 480px) {
  .branches-grid { gap: 1.25rem; }
}
@media (min-width: 768px) {
  .branches-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .branches-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}
.branch-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--text);
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid var(--latte);
  transition: border-color 0.3s, box-shadow 0.2s;
  background: var(--bg-card);
}
.branch-card:hover {
  border-color: var(--cta-hover);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.branch-card:hover .branch-name {
  color: var(--cta-hover);
}
.branch-img-wrap {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg-bej);
  flex-shrink: 0;
}
.branch-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  vertical-align: middle;
}
.branch-name {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  padding: 0.65rem 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
  background: var(--bg-card);
  color: var(--text) !important;
  border-top: 2px solid var(--latte);
  box-sizing: border-box;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .branch-name {
    font-size: 1rem;
    min-height: 52px;
    padding: 0.75rem 0.5rem;
  }
}
.branch-card:visited .branch-name {
  color: var(--text) !important;
}
.branch-card:visited:hover .branch-name {
  color: var(--cta-hover) !important;
}
.branch-card-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: stretch;
}
.branch-card-wrap .branch-card {
  flex: 1;
}
.btn-subdomain {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 0.5rem 0.75rem;
  font-size: 0.9rem;
}
.product-card-link {
  text-decoration: none;
  color: inherit;
}
.product-card-link:hover {
  color: inherit;
}

/* Ürünler kartları – masaüstü 4 yan yana, tablet/mobil responsive */
.products-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .products-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .products-row {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}
.product-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid var(--latte);
  transition: border-color 0.3s, box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
  text-align: center;
}
.product-card:hover {
  border-color: var(--cta-hover);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.product-card img { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; }
.product-card .info { padding: 1rem; flex: 1; display: flex; flex-direction: column; justify-content: center; }
.product-card .info h3 { font-size: 1rem; margin-bottom: 0.25rem; color: var(--bg-dark); }
.product-card .info p { font-size: 0.9rem; color: var(--text-muted); }

/* Video + Bilgi bloğu - video solda, Bilgi sağda, tıklanınca gitmesin */
.video-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
  padding: 2rem 0;
}
.video-about .video-wrap {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid var(--latte);
}
.video-about video, .video-about .video-wrap iframe { width: 100%; border: none; border-radius: 10px; display: block; }
.video-about .video-wrap video { max-height: 320px; object-fit: cover; }
.video-about .bilgi-box {
  background: var(--bg-card);
  padding: 1.5rem;
  border-radius: 10px;
  border-left: 4px solid var(--cta);
}
.video-about .bilgi-box h3 { font-size: 1.25rem; margin-bottom: 0.75rem; color: var(--bg-dark); }
.video-about .bilgi-box p { color: var(--text-muted); font-size: 0.95rem; }
.video-about .text h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.75rem; margin-bottom: 1rem; color: var(--bg-dark); }
.video-about .text p { color: var(--text-muted); margin-bottom: 1rem; }

/* İçerik alanı büyüsün, footer hemen altında boşluk kalmasın */
body > .site-header ~ section {
  flex: 1 0 auto;
}
/* Footer – 1. resim gibi: koyu zemin, alt boşluk yok */
.site-footer {
  background: var(--primary-dark);
  color: #F5F1EA;
  padding: 2rem 1rem;
  margin-top: 0;
  flex-shrink: 0;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}
.site-footer h4 { font-size: 1rem; margin-bottom: 0.75rem; color: var(--latte); }
.site-footer a, .site-footer p { font-size: 0.9rem; color: rgba(245,241,234,0.85); }
.site-footer a:hover { color: var(--cta-hover); }
.footer-bottom { text-align: center; margin-top: 2rem; padding-top: 1rem; border-top: 2px solid var(--latte); font-size: 0.85rem; color: rgba(245,241,234,0.6); }

/* Buton ortak – Birincil CTA (Bakır Kahve / Koyu Altın hover) */
.btn {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  background: var(--cta);
  color: #F5F1EA;
  border-radius: 6px;
  font-weight: 500;
  transition: background 0.3s;
}
.btn:hover { background: var(--cta-hover); color: #F5F1EA; }
.btn-outline {
  background: transparent;
  border: 2px solid var(--cta);
  color: var(--cta);
  margin-left: 0.5rem;
}
.btn-outline:hover { background: var(--cta); color: #F5F1EA; }

/* İletişim formu */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.contact-form label { display: block; margin-bottom: 0.25rem; font-size: 0.9rem; color: var(--text); }
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 0.65rem 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(44,36,25,0.2);
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
}
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form button { cursor: pointer; }
.contact-info h3 { font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--bg-dark); }
.contact-map { border-radius: 10px; overflow: hidden; border: 2px solid var(--latte); margin-top: 1rem; }
.contact-map iframe { width: 100%; height: 280px; border: none; display: block; }

/* Detay sayfaları - resimdeki gibi: sol büyük görsel, sağ metin kutusu (Hakkımızda tarzı) */
.detail-back { display: inline-flex; align-items: center; gap: 0.35rem; margin-bottom: 1rem; color: var(--gold); font-size: 0.9rem; }
.detail-back:hover { color: var(--bg-dark); }
.detail-page .detail-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
}
.detail-page .detail-visual {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(44,36,25,0.1);
}
.detail-page .detail-visual img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
  display: block;
}
.detail-page .detail-text {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 12px;
  border: 2px solid var(--latte);
}
.detail-page .detail-text h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3.2vw, 2.25rem);
  font-weight: 600;
  color: var(--bg-dark);
  line-height: 1.25;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.detail-page .detail-text .sub {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.detail-page .detail-text .sub::before {
  content: '';
  width: 0;
  height: 0;
  border-left: 5px solid var(--gold);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}
.detail-page .detail-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 1rem;
}
.detail-page .detail-text .btn { margin-top: 0.25rem; }
@media (max-width: 900px) {
  .detail-page .detail-wrap { grid-template-columns: 1fr; gap: 1.5rem; }
  .detail-page .detail-visual img { max-height: 360px; }
}
@media (max-width: 600px) {
  .detail-page .detail-text { padding: 1.5rem; }
  .detail-page .detail-visual img { max-height: 280px; }
}

/* Responsive */
@media (max-width: 1024px) {
  .slider-slide { min-height: 440px; }
  .slider-wrap { height: 65vh; min-height: 440px; }
  .video-about { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 1024px) {
  .logo-link { min-height: 100px; max-width: 50vw; }
  .logo-link img { width: 140px; height: 105px; max-width: 100%; max-height: 100%; object-fit: contain; }
  .slider-slide { min-height: 360px; }
}
@media (max-width: 768px) {
  body.menu-open { overflow: hidden; }
  .nav-toggle {
    display: flex;
    border-radius: 8px;
    transition: background 0.2s;
  }
  .nav-toggle:hover { background: rgba(44,36,25,0.06); }
  .nav-toggle:active { background: rgba(44,36,25,0.1); }
  .nav-overlay {
    display: block;
    -webkit-backdrop-filter: blur(2px);
  }
  body.menu-open .nav-overlay {
    opacity: 1;
    pointer-events: auto;
  }
  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 88%;
    max-width: 300px;
    height: 100vh;
    background: var(--bg-card);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 5.5rem 0 1.5rem;
    gap: 0;
    box-shadow: -8px 0 32px rgba(0,0,0,0.12);
    z-index: 101;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    border-left: 2px solid var(--latte);
  }
  body.menu-open .nav-menu {
    transform: translateX(0);
  }
  .nav-menu a {
    display: block;
    padding: 1rem 1.35rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text);
    border-bottom: none;
    border-left: 3px solid transparent;
    margin: 0 0.5rem;
    border-radius: 0 8px 8px 0;
    transition: background 0.3s, color 0.3s, border-color 0.3s;
  }
  .nav-menu a:hover {
    background: rgba(45,41,38,0.06);
    color: var(--cta);
  }
  .nav-menu a.active {
    background: var(--cta) !important;
    color: #F5F1EA !important;
    border-left-color: var(--cta);
  }
  .nav-menu .nav-cta {
    margin: 1rem 1rem 0;
    padding: 1rem 1.35rem;
    text-align: center;
    border-radius: 10px;
    font-weight: 600;
    border-left: none;
    box-shadow: 0 2px 12px rgba(160,106,59,0.25);
  }
  .nav-menu .nav-cta:hover {
    background: var(--cta-hover) !important;
    box-shadow: 0 4px 16px rgba(140,106,69,0.3);
  }
  .nav-menu { justify-content: flex-start; padding-right: 0; }
  .header-inner { justify-content: space-between; align-items: center; padding: 0.6rem 0.75rem; padding-left: 0.75rem; padding-right: 0.75rem; }
  .brand-name { display: block !important; flex: 1; text-align: center; font-size: 1rem; }
  .nav-toggle { margin-left: auto; flex-shrink: 0; }
  .logo-link { min-height: 80px; max-width: 45vw; flex-shrink: 0; }
  .logo-link img { width: 110px; height: 82px; max-width: 100%; max-height: 100%; object-fit: contain; }
  .slider-wrap { height: 60vh; min-height: 400px; }
  .slider-slide { min-height: 400px; padding: 2rem 1rem; }
  .slider-arrow { width: 40px; height: 40px; font-size: 1rem; }
  .slider-arrow.prev { left: 0.5rem; }
  .slider-arrow.next { right: 0.5rem; }
  .contact-map iframe { height: 220px; }
}
@media (max-width: 600px) {
  .logo-link { min-height: 70px; max-width: 42vw; }
  .logo-link img { width: 95px; height: 71px; max-width: 100%; max-height: 100%; object-fit: contain; }
  .nav-menu a { padding: 0.4rem 0.6rem; font-size: 0.85rem; }
  .slider-slide { min-height: 340px; padding: 1.5rem 1rem; }
  .slider-wrap { height: 55vh; min-height: 340px; }
}
@media (max-width: 480px) {
  .header-inner { padding-left: 0.75rem; padding-right: 0.75rem; }
  .brand-name { font-size: 0.9rem; }
  .logo-link { min-height: 60px; max-width: 40vw; }
  .logo-link img { width: 80px; height: 60px; max-width: 100%; max-height: 100%; object-fit: contain; }
}
@media (max-width: 380px) {
  .brand-name { font-size: 0.8rem; }
  .logo-link { min-height: 54px; max-width: 38vw; }
  .logo-link img { width: 72px; height: 54px; max-width: 100%; max-height: 100%; object-fit: contain; }
}

/* Hakkımızda & Hizmet alt sayfaları – sol görsel, sağ metin */
.about-page .about-section,
.hizmet-alt-page .about-section {
  padding: 2rem 1rem;
}
.about-page .about-wrap,
.hizmet-alt-page .about-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 50vh;
}
.about-page .about-visual,
.hizmet-alt-page .about-visual {
  position: relative;
}
.about-page .about-visual img:first-child,
.hizmet-alt-page .about-visual img:first-child {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}
.about-page .about-visual .page-logo {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 72%;
  max-width: 320px;
  height: auto;
  z-index: 1;
}
.hizmet-alt-page .about-visual .page-logo {
  display: none;
}
.about-page .about-text,
.hizmet-alt-page .about-text {
  background: var(--bg-card, #f8f6f3);
  padding: 2rem;
  border-radius: 12px;
}
.about-page .about-text h1,
.hizmet-alt-page .about-text h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 600;
  color: var(--bg-dark, #2c2419);
  line-height: 1.2;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.about-page .about-text .sub,
.hizmet-alt-page .about-text .sub {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: var(--text-muted, #5c5348);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.about-page .about-text .sub::before,
.hizmet-alt-page .about-text .sub::before {
  content: '';
  width: 0;
  height: 0;
  border-left: 5px solid var(--gold, #c9a227);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}
.about-page .about-text p,
.hizmet-alt-page .about-text p {
  color: var(--text-muted, #5c5348);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 1rem;
}
.hizmet-alt-page .detail-back {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--cta);
}
.hizmet-alt-page .detail-back:hover {
  color: var(--cta-hover);
}
@media (max-width: 900px) {
  .about-page .about-wrap,
  .hizmet-alt-page .about-wrap {
    grid-template-columns: 1fr;
  }
  .about-page .about-visual .page-logo,
  .hizmet-alt-page .about-visual .page-logo {
    max-width: 260px;
  }
}
@media (max-width: 600px) {
  .about-page .about-text,
  .hizmet-alt-page .about-text {
    padding: 1.5rem;
  }
  .about-page .about-visual .page-logo {
    width: 80%;
    max-width: 220px;
    bottom: 1rem;
  }
}
