@import url('fonts.css');

:root {
  --bg: #F9F6F0;
  --paper: #FFFFFF;
  --muted: #F0EBE1;
  --fg: #2D241E;
  --fg-muted: #63584F;
  --fg-soft: #9B918A;
  --primary: #8C5E45;
  --primary-hover: #734A35;
  --accent-terracotta: #B35A34;
  --border: #E5DEC7;
  --cream: #E5DEC7;
  --dark: #2D241E;
  /* WCAG AA: beyaz metin için koyu yeşil (#25D366 yetersiz kontrast) */
  --whatsapp: #117a48;
  --whatsapp-hover: #0d6239;
  --radius: 0.75rem;
  --max: 80rem;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  background-color: var(--bg);
  color: var(--fg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
}

a { color: inherit; text-decoration: none; }

/* Erişilebilirlik: klavye ile “içeriğe geç” */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10001;
  padding: 0.6rem 1rem;
  background: var(--primary);
  color: #fff !important;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 0 0 0.5rem 0.5rem;
}
.skip-link:focus {
  left: 1rem;
  outline: 2px solid var(--cream);
  outline-offset: 2px;
}

img { max-width: 100%; height: auto; display: block; }

/* Layout */
.wrap { max-width: var(--max); margin-left: auto; margin-right: auto; padding-left: 1rem; padding-right: 1rem; }
/* Ürün sayfası: galeri metin sütunundan geniş, tam genişliğe yakın */
.wrap.wrap--product-gallery {
  max-width: min(92rem, 100%);
}
@media (min-width: 640px) { .wrap { padding-left: 1.5rem; padding-right: 1.5rem; } }
@media (min-width: 1024px) { .wrap { padding-left: 2rem; padding-right: 2rem; } }

main { flex: 1; }

/* Nav */
.nav {
  background: rgba(249, 246, 240, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}
@media (min-width: 768px) { .nav-inner { height: 5rem; } }

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.logo svg { width: 1.75rem; height: 1.75rem; color: var(--primary); flex-shrink: 0; }
.logo span {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: -0.02em;
}
@media (min-width: 768px) { .logo span { font-size: 1.875rem; } }

.nav-links { display: none; align-items: center; gap: 0.25rem; }
@media (min-width: 768px) { .nav-links { display: flex; } }

.nav-link {
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fg-muted);
  transition: background 0.3s, color 0.3s;
}
.nav-link:hover { color: var(--fg); background: var(--muted); }
.nav-link.active { background: var(--primary); color: #fff; }

.nav-toggle {
  display: flex;
  padding: 0.5rem;
  border-radius: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--fg);
}
@media (min-width: 768px) { .nav-toggle { display: none; } }

.mobile-menu {
  display: none;
  border-top: 1px solid var(--border);
  background: var(--bg);
  padding: 1rem;
}
.mobile-menu.open { display: block; }
@media (min-width: 768px) { .mobile-menu { display: none !important; } }

.mobile-menu a {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
  color: var(--fg-muted);
}
.mobile-menu a:hover { background: var(--muted); }
.mobile-menu a.active { background: var(--primary); color: #fff; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 500;
  border-radius: 9999px;
  padding: 1rem 2rem;
  transition: background 0.3s, box-shadow 0.3s, transform 0.2s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-family: inherit;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-hover); }
.btn-outline {
  border: 1px solid var(--primary);
  color: var(--primary);
  background: transparent;
}
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-whatsapp { background: var(--whatsapp); color: #fff; font-weight: 600; }
.btn-whatsapp:hover { background: var(--whatsapp-hover); }
.btn-whatsapp:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}
.btn-lg { font-size: 1.125rem; padding: 1rem 2rem; }
.btn svg { width: 1rem; height: 1rem; flex-shrink: 0; }
.btn-whatsapp svg { width: 1.25rem; height: 1.25rem; }

/* Hero */
.hero {
  position: relative;
  min-height: 600px;
  height: 85vh;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(45, 36, 30, 0.55) 0%,
    rgba(45, 36, 30, 0.35) 50%,
    rgba(45, 36, 30, 0.65) 100%
  );
}
.hero-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  min-height: 600px;
  height: 85vh;
}
.hero-content { max-width: 42rem; }
.hero-kicker {
  color: var(--cream);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: #fff;
  line-height: 1.1;
  margin: 0 0 1.5rem;
}
.hero h1 .accent { color: var(--cream); }
.hero p {
  color: #d4cfc7;
  font-size: 1rem;
  line-height: 1.7;
  max-width: 32rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) { .hero p { font-size: 1.125rem; } }
.hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; }

/* Dark band */
.band-dark {
  background: var(--dark);
  padding: 2rem 0;
}
.band-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  text-align: center;
}
@media (min-width: 768px) {
  .band-grid { grid-template-columns: repeat(3, 1fr); }
}
.band-item svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
  margin: 0 auto 0.5rem;
}
.band-item h2 {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  margin: 0 0 0.25rem;
  font-family: inherit;
  line-height: 1.3;
}
.band-item p { color: var(--fg-soft); font-size: 0.75rem; margin: 0; }

/* Sections */
.section { padding: 5rem 0; }
@media (min-width: 768px) { .section { padding: 8rem 0; } }
.section-muted { background: var(--muted); }
.section-title-wrap { text-align: center; margin-bottom: 4rem; }
.kicker {
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(1.875rem, 4vw, 3rem);
  color: var(--fg);
  margin: 0;
}
.section-divider {
  width: 60px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  margin-top: 1rem;
}
.section-divider.center { margin-left: auto; margin-right: auto; }

/* Grid cards */
.grid-products {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 640px) { .grid-products { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-products.cols-4 { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1024px) { .grid-products.cols-3 { grid-template-columns: repeat(3, 1fr); } }

.product-card {
  display: block;
  background: var(--paper);
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.product-card:hover { box-shadow: 0 20px 40px rgba(45, 36, 30, 0.08); }
.product-card .img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.product-card:hover img { transform: scale(1.05); }
.product-card .body { padding: 1.25rem; }
.product-card .cat {
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.product-card h3 {
  font-size: 1.25rem;
  margin: 0.25rem 0 0.5rem;
  color: var(--fg);
  transition: color 0.3s;
}
.product-card:hover h3 { color: var(--primary); }
.product-card .excerpt {
  color: var(--fg-muted);
  font-size: 0.875rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Two column */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .split { grid-template-columns: 1fr 1fr; gap: 5rem; }
}
.split .order-1 { order: 1; }
.split .order-2 { order: 2; }
@media (min-width: 1024px) {
  .split.rev .col-text { order: 2; }
  .split.rev .col-img { order: 1; }
}

.rounded-img {
  border-radius: 1rem;
  overflow: hidden;
}
.rounded-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
@media (min-width: 1024px) {
  .rounded-img img.lg-tall { height: 500px; }
}

.text-body { color: var(--fg-muted); line-height: 1.75; }
.text-body p { margin: 0 0 1rem; }

/* Reviews */
.review-card {
  background: var(--paper);
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid var(--border);
}
.stars { display: flex; gap: 0.25rem; margin-bottom: 1rem; }
.stars svg { width: 1rem; height: 1rem; color: var(--accent-terracotta); fill: currentColor; }
.stars svg.empty { color: var(--border); fill: none; stroke: var(--border); }
.review-quote { font-style: italic; font-size: 0.875rem; color: var(--fg-muted); line-height: 1.6; margin-bottom: 1rem; }
.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.avatar {
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  background: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.875rem;
}

/* CTA dark */
.cta-dark {
  background: var(--dark);
  padding: 5rem 0;
  position: relative;
  text-align: center;
}
.cta-dark::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.cta-dark .wrap { position: relative; z-index: 1; }
.cta-dark h2 {
  color: #fff;
  font-size: clamp(1.875rem, 4vw, 3rem);
  margin: 0 0 1.5rem;
  line-height: 1.2;
}
.cta-dark > .wrap > div > p {
  color: var(--fg-soft);
  max-width: 36rem;
  margin: 0 auto 2rem;
  font-size: 1.125rem;
}

/* Page header */
.page-header {
  background: var(--dark);
  padding: 5rem 0 7rem;
  text-align: center;
}
.page-header h1 {
  color: #fff;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  margin: 0.5rem 0 0;
}
.page-header .sub {
  color: var(--fg-soft);
  font-size: 1rem;
  max-width: 36rem;
  margin: 1rem auto 0;
  line-height: 1.6;
}
@media (min-width: 768px) { .page-header .sub { font-size: 1.125rem; } }

/* Breadcrumb */
.breadcrumb {
  background: var(--muted);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}
.breadcrumb nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  font-size: 0.875rem;
  color: var(--fg-muted);
}
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span.current { color: var(--fg); font-weight: 500; }
.breadcrumb svg { width: 0.75rem; height: 0.75rem; flex-shrink: 0; }

/* Product detail */
.detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding: 3rem 0 5rem;
}
@media (min-width: 1024px) {
  .detail-grid { grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
}
.detail-img {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border);
}
.detail-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
@media (min-width: 1024px) {
  .detail-img img { height: 500px; }
}
.detail-img.photo-zoom,
.rounded-img.photo-zoom {
  cursor: zoom-in;
}
.detail-img.photo-zoom:focus-visible,
.rounded-img.photo-zoom:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}
.tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1.5rem 0; }
.tag {
  font-size: 0.875rem;
  background: var(--muted);
  color: var(--fg-muted);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
}

.content-block {
  max-width: 48rem;
  margin: 0 auto;
  padding: 4rem 0;
}
/* İçerikte hem dar metin hem geniş galeri: bölüm genişler, sütunlar kendi wrap ile sınırlanır */
.content-block.content-block--wide {
  max-width: none;
  width: 100%;
}
.content-block h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin: 0 0 1.5rem;
}
.content-block h3 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  margin: 0 0 0.75rem;
}
.icon-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.icon-circle {
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  background: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.icon-circle svg { width: 1.25rem; height: 1.25rem; color: var(--primary); }
.icon-row .text p { margin: 0 0 0.75rem; padding-left: 0; }
.icon-row .text { flex: 1; }
.icon-row .text p.pl { padding-left: 0; }
@media (min-width: 768px) {
  .icon-row.indent .text p { padding-left: 3.25rem; margin-left: -3.25rem; }
}

.callout {
  background: var(--muted);
  border-radius: 1rem;
  padding: 2rem;
  margin-top: 4rem;
  font-size: 1.125rem;
  font-style: italic;
  font-weight: 500;
  color: var(--fg);
  line-height: 1.7;
}

.seo-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 2rem; }
.seo-tags span {
  font-size: 0.75rem;
  color: var(--fg-muted);
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
}

/* Blog */
.blog-card {
  display: block;
  background: var(--paper);
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.blog-card:hover { box-shadow: 0 20px 40px rgba(45, 36, 30, 0.08); }
.blog-card .thumb { aspect-ratio: 16/9; overflow: hidden; }
.blog-card .thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s;
}
.blog-card:hover .thumb img { transform: scale(1.05); }
.blog-card .body { padding: 1.5rem; }
.meta { display: flex; flex-wrap: wrap; gap: 1rem; font-size: 0.75rem; color: var(--fg-muted); margin-bottom: 0.75rem; }
.meta span { display: inline-flex; align-items: center; gap: 0.25rem; }
.meta svg { width: 0.75rem; height: 0.75rem; }
.blog-card h2 {
  font-size: 1.5rem;
  margin: 0 0 0.5rem;
  color: var(--fg);
  transition: color 0.3s;
}
.blog-card:hover h2 { color: var(--primary); }
.article-body p {
  color: var(--fg-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .article-body p { font-size: 1.125rem; }
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 5rem; }
}
.info-card {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 1rem;
  transition: box-shadow 0.3s;
}
.info-card:hover { box-shadow: 0 10px 30px rgba(45, 36, 30, 0.06); }
.info-card .ico {
  width: 3rem; height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-card h3 { margin: 0 0 0.25rem; font-size: 1rem; font-family: inherit; font-weight: 500; }
.info-card p { margin: 0; font-size: 0.875rem; color: var(--fg-muted); }
.info-card a { display: block; }

.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.375rem;
  color: var(--fg);
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--fg);
  font-family: inherit;
  font-size: 1rem;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(140, 94, 69, 0.2);
}
.form-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
}
.btn-block { width: 100%; }

.map-embed {
  margin-top: 2rem;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--paper);
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  max-height: 420px;
  box-shadow: 0 4px 24px rgba(45, 36, 30, 0.06);
}
.map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.map-embed-caption {
  font-size: 0.75rem;
  color: var(--fg-muted);
  margin-top: 0.625rem;
  line-height: 1.5;
  max-width: 42rem;
}

/* YouTube / video embed (ürün sayfaları) */
.video-embed {
  margin-top: 2rem;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #0f0f0f;
  aspect-ratio: 16 / 9;
  max-width: 100%;
}
.video-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
/* YouTube Shorts (dikey) */
.video-embed.video-embed--short {
  aspect-ratio: 9 / 16;
  max-width: min(380px, 100%);
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  box-shadow: 0 20px 48px rgba(45, 36, 30, 0.14);
}

/* Galeri: JS yokken ızgara; gallery--scroll ile yatay kaydırma + lightbox */
.gallery:not(.gallery--scroll) {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .gallery:not(.gallery--scroll) {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }
}
@media (min-width: 1024px) {
  .gallery:not(.gallery--scroll).cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.gallery:not(.gallery--scroll) .gallery-thumb {
  width: 100%;
  max-width: none;
  flex: none;
  display: block;
  padding: 0;
  margin: 0;
  background: var(--paper);
  border-radius: 0.75rem;
  overflow: hidden;
  cursor: zoom-in;
  line-height: 0;
  border: 1px solid var(--border);
  transition: box-shadow 0.2s, transform 0.2s;
}
.gallery:not(.gallery--scroll) .gallery-thumb:hover {
  box-shadow: 0 8px 24px rgba(45, 36, 30, 0.12);
}
.gallery:not(.gallery--scroll) .gallery-thumb:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}
.gallery:not(.gallery--scroll) .gallery-thumb img {
  border: 0;
  border-radius: 0;
}
.gallery:not(.gallery--scroll) img {
  width: 100%;
  height: auto;
  min-height: 11rem;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  display: block;
}
@media (min-width: 768px) {
  .gallery:not(.gallery--scroll) img {
    min-height: 13rem;
  }
}

.gallery.gallery--scroll {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
  padding-bottom: 0.5rem;
  margin-left: -1rem;
  margin-right: -1rem;
  padding-left: 1rem;
  padding-right: 1rem;
  scrollbar-color: var(--border) transparent;
  scrollbar-width: thin;
}
.gallery.gallery--scroll::-webkit-scrollbar {
  height: 6px;
}
.gallery.gallery--scroll::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 3px;
}
.gallery.gallery--scroll.gallery--dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  user-select: none;
}
.gallery.gallery--scroll:not(.gallery--dragging) {
  cursor: grab;
}
.gallery-thumb {
  flex: 0 0 calc(50% - 0.375rem);
  max-width: calc(50% - 0.375rem);
  scroll-snap-align: start;
  border: none;
  padding: 0;
  margin: 0;
  background: var(--paper);
  border-radius: 0.75rem;
  overflow: hidden;
  cursor: zoom-in;
  display: block;
  line-height: 0;
  border: 1px solid var(--border);
  transition: box-shadow 0.2s, transform 0.2s;
}
.gallery-thumb:hover {
  box-shadow: 0 8px 24px rgba(45, 36, 30, 0.12);
}
.gallery-thumb:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}
@media (min-width: 768px) {
  .gallery.gallery--scroll .gallery-thumb {
    flex: 0 0 calc(33.333% - 0.5rem);
    max-width: calc(33.333% - 0.5rem);
  }
}
@media (min-width: 1024px) {
  .gallery.gallery--scroll.cols-4 .gallery-thumb {
    flex: 0 0 calc(25% - 0.5625rem);
    max-width: calc(25% - 0.5625rem);
  }
}
.gallery.gallery--scroll img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
@media (min-width: 768px) {
  .gallery.gallery--scroll img {
    height: 220px;
  }
}

/* Tam ekran fotoğraf önizleme */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(1rem, env(safe-area-inset-top)) max(1rem, env(safe-area-inset-right)) max(1rem, env(safe-area-inset-bottom)) max(1rem, env(safe-area-inset-left));
  background: rgba(15, 12, 10, 0.94);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
.gallery-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}
body.gallery-lightbox-open {
  overflow: hidden;
  touch-action: none;
}
.gallery-lightbox-inner {
  position: relative;
  max-width: min(96vw, 1400px);
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-lightbox-img {
  max-width: 100%;
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 0.35rem;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}
.gallery-lightbox-close,
.gallery-lightbox-prev,
.gallery-lightbox-next {
  position: absolute;
  z-index: 2;
  border: none;
  background: rgba(255, 248, 240, 0.12);
  color: #fff;
  border-radius: 50%;
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s;
  font-family: inherit;
}
.gallery-lightbox-close:hover,
.gallery-lightbox-prev:hover,
.gallery-lightbox-next:hover {
  background: rgba(255, 248, 240, 0.22);
}
.gallery-lightbox-close:focus-visible,
.gallery-lightbox-prev:focus-visible,
.gallery-lightbox-next:focus-visible {
  outline: 2px solid var(--cream);
  outline-offset: 2px;
}
.gallery-lightbox-close {
  top: 0.5rem;
  right: 0.5rem;
  font-size: 1.75rem;
}
.gallery-lightbox-prev {
  left: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
}
.gallery-lightbox-next {
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 639px) {
  .gallery-lightbox-prev {
    left: 0.25rem;
  }
  .gallery-lightbox-next {
    right: 0.25rem;
  }
}

/* Footer */
.footer {
  background: var(--dark);
  color: var(--cream);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(3, 1fr); gap: 4rem; }
}
.footer h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  color: #fff;
  margin: 0 0 1rem;
}
.footer p, .footer a {
  color: var(--fg-soft);
  font-size: 0.875rem;
  line-height: 1.6;
}
.footer a:hover { color: #fff; }
.footer .logo { margin-bottom: 1rem; }
.footer .logo span { color: #fff; }
.footer-links a { display: block; margin-bottom: 0.75rem; }
.footer-partners {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid #463D36;
}
.footer-partners-kicker {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 248, 240, 0.55);
  margin: 0 0 0.75rem;
}
.footer-partners-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}
.footer-partners-links a {
  color: var(--fg-soft);
  font-size: 0.875rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-partners-links a:hover {
  color: #fff;
}
.footer-bottom {
  border-top: 1px solid #463D36;
  margin-top: 1.5rem;
  padding-top: 2rem;
  text-align: center;
  font-size: 0.75rem;
  color: var(--fg-soft);
}
.footer-bottom .footer-webmaster {
  margin: 0.75rem 0 0;
  font-size: 0.6875rem;
  color: rgba(255, 248, 240, 0.65);
  line-height: 1.5;
}
.footer-bottom .footer-webmaster-name {
  font-weight: 500;
  color: rgba(255, 248, 240, 0.92);
}
.footer-bottom .footer-webmaster a {
  color: rgba(255, 248, 240, 0.88);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-bottom .footer-webmaster a:hover {
  color: #fff;
}

/* WhatsApp float */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  background: var(--whatsapp);
  color: #fff;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(17, 122, 72, 0.45);
  transition: transform 0.3s, background 0.3s;
  animation: wa-pulse 2s infinite;
}
.wa-float:hover { background: var(--whatsapp-hover); transform: scale(1.08); }
.wa-float svg { width: 1.5rem; height: 1.5rem; }
@keyframes wa-pulse {
  0% { box-shadow: 0 0 0 0 rgba(17, 122, 72, 0.5); }
  70% { box-shadow: 0 0 0 14px rgba(17, 122, 72, 0); }
  100% { box-shadow: 0 0 0 0 rgba(17, 122, 72, 0); }
}

.text-center { text-align: center; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }

.grid-reviews {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .grid-reviews { grid-template-columns: repeat(3, 1fr); }
}

.grid-blog {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .grid-blog { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
}

.hidden { display: none !important; }

/* Prose lists */
.prose ul { margin: 0 0 1rem; padding-left: 1.25rem; color: var(--fg-muted); }
.prose li { margin-bottom: 0.5rem; }
