/* ==========================================================
   VAN YALITIM — site stilleri
   Renkler: lacivert (kurumsal) + amber (vurgu)
   ========================================================== */

:root {
  --navy-950: #0c1a33;
  --navy-900: #10213f;
  --navy-800: #13264a;
  --navy-700: #1b3563;
  --navy-100: #dbe4f2;
  --amber: #f59e0b;
  --amber-600: #e08900;
  --amber-100: #fff3dd;
  --ink: #1e293b;
  --muted: #5b6b85;
  --line: #e3e9f2;
  --bg: #ffffff;
  --bg-gray: #f5f7fb;
  --wa: #25d366;
  --radius: 18px;
  --shadow-sm: 0 2px 10px rgba(12, 26, 51, 0.07);
  --shadow-md: 0 12px 34px rgba(12, 26, 51, 0.12);
  --font-display: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  --font-body: "Inter", "Segoe UI", Arial, sans-serif;
  --header-h: 78px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  width: min(1160px, 100% - 40px);
  margin-inline: auto;
}

/* ---------- Tipografi ---------- */

h1, h2, h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: 0.5px;
  color: var(--navy-900);
}

h1 { font-size: clamp(2.7rem, 6.2vw, 4.6rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; }
h3 { font-size: 1.35rem; font-weight: 600; letter-spacing: 0.8px; }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 3.5px;
  color: var(--amber-600);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.kicker-dot {
  width: 26px;
  height: 4px;
  border-radius: 2px;
  background: var(--amber);
  flex: none;
}

.accent { color: var(--amber); }

/* ---------- Butonlar ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 24px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn svg { width: 19px; height: 19px; flex: none; }

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-amber {
  background: linear-gradient(180deg, #ffb648, var(--amber));
  color: var(--navy-950);
  box-shadow: 0 8px 22px rgba(245, 158, 11, 0.35);
}
.btn-amber:hover { box-shadow: 0 12px 28px rgba(245, 158, 11, 0.45); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.14); border-color: rgba(255, 255, 255, 0.6); }

.btn-lg { padding: 16px 28px; font-size: 1.02rem; }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  height: var(--header-h);
  background: rgba(12, 26, 51, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: box-shadow 0.25s ease;
}

.site-header.scrolled { box-shadow: 0 10px 30px rgba(12, 26, 51, 0.35); }

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-right: auto;
}

.brand-mark { width: 44px; height: 44px; border-radius: 11px; }

.brand-text { display: flex; flex-direction: column; line-height: 1.1; }

.brand-text strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #fff;
}

.brand-text strong em { font-style: normal; color: var(--amber); }

.brand-text small {
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 2.8px;
  color: rgba(255, 255, 255, 0.55);
}

.site-nav { display: flex; align-items: center; gap: 26px; }

.site-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 6px 0;
  transition: color 0.2s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.site-nav a:hover,
.site-nav a.active { color: #fff; }

.site-nav a:hover::after,
.site-nav a.active::after { transform: scaleX(1); }

.site-nav .nav-call { display: none; }

.header-cta svg { width: 17px; height: 17px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 11px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2.5px;
  border-radius: 2px;
  background: #fff;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  background:
    radial-gradient(900px 480px at 85% -10%, rgba(245, 158, 11, 0.16), transparent 60%),
    radial-gradient(700px 500px at -10% 110%, rgba(27, 53, 99, 0.85), transparent 65%),
    linear-gradient(135deg, var(--navy-950) 0%, var(--navy-800) 58%, var(--navy-700) 100%);
  color: #fff;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 80% at 60% 20%, #000 30%, transparent 75%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: clamp(36px, 5vw, 72px);
  padding-block: clamp(64px, 9vh, 110px);
}

.hero .kicker { color: var(--amber); }

.hero h1 { color: #fff; margin-bottom: 20px; }

.lede {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: 50ch;
  margin-bottom: 32px;
}

.lede strong { color: #fff; }

.cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  list-style: none;
}

.trust-row li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.85);
}

.trust-row svg { width: 17px; height: 17px; color: var(--amber); }

.hero-media { position: relative; }

.hero-media > img {
  width: 100%;
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
  object-position: center 32%;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
}

.hero-card {
  position: absolute;
  left: -22px;
  bottom: 26px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px 20px 14px 14px;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  color: var(--ink);
}

.hero-card-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--amber-100);
  color: var(--amber-600);
}

.hero-card-icon svg { width: 24px; height: 24px; }

.hero-card strong {
  display: block;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.05rem;
  letter-spacing: 0.6px;
  color: var(--navy-900);
}

.hero-card span { font-size: 0.82rem; color: var(--muted); }

/* ---------- Marquee ---------- */

.marquee {
  background: var(--amber);
  overflow: hidden;
  padding-block: 13px;
  border-block: 3px solid var(--navy-950);
}

.marquee-track {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: marquee 32s linear infinite;
}

.marquee:hover .marquee-track { animation-play-state: paused; }

.marquee-track span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 2.5px;
  color: var(--navy-950);
  white-space: nowrap;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ---------- Bölümler ---------- */

.section { padding-block: clamp(70px, 9vw, 110px); }

.section-gray { background: var(--bg-gray); }

.section-head { max-width: 640px; margin-bottom: 48px; }

.section-head h2 { margin-bottom: 12px; }

.section-head p { color: var(--muted); font-size: 1.04rem; }

.section-dark {
  background:
    radial-gradient(800px 400px at 110% 0%, rgba(245, 158, 11, 0.12), transparent 60%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
  color: #fff;
}

.section-dark .section-head h2 { color: #fff; }
.section-dark .section-head p { color: rgba(255, 255, 255, 0.72); }

/* ---------- Hizmet kartları ---------- */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(245, 158, 11, 0.55);
}

.card-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 15px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  color: var(--amber);
  box-shadow: 0 8px 18px rgba(12, 26, 51, 0.25);
}

.card-icon svg { width: 27px; height: 27px; }

.card h3 { margin-bottom: 10px; }

.card p { color: var(--muted); font-size: 0.95rem; }

/* ---------- Ürün rozetleri ---------- */

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  margin-bottom: 44px;
}

.chips li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-weight: 600;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.92);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.chips li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber);
}

.chips li:hover {
  background: rgba(245, 158, 11, 0.16);
  border-color: rgba(245, 158, 11, 0.6);
  transform: translateY(-2px);
}

.urun-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 26px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  border: 1px dashed rgba(255, 255, 255, 0.25);
}

.urun-cta p { font-weight: 500; color: rgba(255, 255, 255, 0.88); }

/* ---------- Hakkımızda ---------- */

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(36px, 5vw, 70px);
  align-items: center;
}

.about-media { position: relative; }

.about-media img {
  width: 100%;
  aspect-ratio: 4 / 4.4;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow-md);
}

.about-badge {
  position: absolute;
  right: -16px;
  top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 22px;
  background: linear-gradient(180deg, #ffb648, var(--amber));
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(245, 158, 11, 0.4);
  text-align: center;
}

.about-badge strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--navy-950);
  line-height: 1;
}

.about-badge span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(12, 26, 51, 0.75);
}

.about-copy h2 { margin-bottom: 18px; }

.about-copy > p { color: var(--muted); margin-bottom: 16px; }

.about-copy > p strong { color: var(--navy-800); }

.feature-list {
  list-style: none;
  display: grid;
  gap: 16px;
  margin-block: 28px;
}

.feature-list li { display: flex; gap: 15px; align-items: flex-start; }

.feature-icon {
  display: grid;
  place-items: center;
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: var(--amber-100);
  color: var(--amber-600);
}

.feature-icon svg { width: 23px; height: 23px; }

.feature-list strong {
  display: block;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.08rem;
  letter-spacing: 0.6px;
  color: var(--navy-900);
}

.feature-list p { color: var(--muted); font-size: 0.92rem; }

.owner-line {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.owner-avatar {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  color: var(--amber);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 1px;
}

.owner-line strong { display: block; color: var(--navy-900); }

.owner-line span { font-size: 0.88rem; color: var(--muted); }

.owner-line a { color: var(--amber-600); font-weight: 700; text-decoration: none; }
.owner-line a:hover { text-decoration: underline; }

/* ---------- Galeri ---------- */

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 230px;
  gap: 18px;
}

.gallery figure {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: zoom-in;
  box-shadow: var(--shadow-sm);
}

.gallery figure:nth-child(1) { grid-row: span 2; }
.gallery figure:nth-child(4) { grid-row: span 2; }
.gallery figure:nth-child(7) { grid-column: span 2; }

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.gallery figure:hover img { transform: scale(1.06); }

.gallery figcaption {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 36px 16px 13px;
  background: linear-gradient(transparent, rgba(12, 26, 51, 0.85));
  color: #fff;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.3px;
}

/* ---------- İletişim ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 26px;
  align-items: stretch;
}

.contact-cards { display: grid; gap: 16px; align-content: start; }

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(245, 158, 11, 0.55);
}

.contact-icon {
  display: grid;
  place-items: center;
  flex: none;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  color: var(--amber);
}

.contact-icon svg { width: 25px; height: 25px; }

.contact-icon-wa { background: linear-gradient(135deg, #128c4b, var(--wa)); color: #fff; }

.contact-card strong {
  display: block;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-size: 1.06rem;
  color: var(--navy-900);
}

.contact-card p { font-size: 0.95rem; font-weight: 600; line-height: 1.45; }

.contact-card small { color: var(--muted); font-weight: 500; }

.map-wrap {
  position: relative;
  min-height: 380px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-btn {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 2;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.75);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 1fr;
  gap: 40px;
  padding-block: 60px 44px;
}

.footer-brand .brand { margin-bottom: 18px; }

.footer-brand p { font-size: 0.92rem; max-width: 36ch; }

.footer-col h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1.02rem;
  color: #fff;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 0.93rem;
  margin-bottom: 10px;
  transition: color 0.2s ease;
}

.footer-col a:hover { color: var(--amber); }

.footer-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-block: 18px;
  font-size: 0.85rem;
}

/* ---------- WhatsApp FAB ---------- */

.wa-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 70;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--wa);
  color: #fff;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wa-fab svg { width: 30px; height: 30px; }

.wa-fab:hover { transform: scale(1.08); box-shadow: 0 14px 32px rgba(37, 211, 102, 0.55); }

/* ---------- Lightbox ---------- */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 28px;
  background: rgba(8, 15, 30, 0.93);
  backdrop-filter: blur(6px);
}

.lightbox[hidden] { display: none; }

.lightbox figure {
  max-width: min(960px, 86vw);
  max-height: 84vh;
  display: flex;
  flex-direction: column;
}

.lightbox img {
  max-width: 100%;
  max-height: 76vh;
  object-fit: contain;
  border-radius: 14px;
}

.lightbox figcaption {
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  padding-top: 14px;
  font-weight: 600;
}

.lb-close, .lb-prev, .lb-next {
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.2s ease;
  flex: none;
}

.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(245, 158, 11, 0.85); }

.lb-prev, .lb-next { width: 52px; height: 52px; font-size: 1.9rem; line-height: 1; }

.lb-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 48px;
  height: 48px;
  font-size: 1.6rem;
}

/* ---------- Reveal animasyonları ---------- */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */

@media (max-width: 1020px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { max-width: 560px; }
  .hero-media > img { aspect-ratio: 16 / 11; object-position: center 38%; }
  .hero-card { left: 14px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-media { max-width: 560px; }
  .about-media img { aspect-ratio: 16 / 10; }
  .about-badge { right: 14px; }
  .contact-grid { grid-template-columns: 1fr; }
  .map-wrap { min-height: 340px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  :root { --header-h: 70px; }

  .header-cta { display: none; }
  .nav-toggle { display: flex; }

  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 18px 20px 24px;
    background: var(--navy-950);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 24px 40px rgba(0, 0, 0, 0.4);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s;
  }

  .site-nav.open { transform: none; opacity: 1; visibility: visible; }

  .site-nav a { padding: 12px 4px; font-size: 1.02rem; border-bottom: 1px solid rgba(255, 255, 255, 0.07); }
  .site-nav a::after { display: none; }

  .site-nav .nav-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 14px;
    padding: 14px;
    border-radius: 12px;
    border-bottom: none;
    background: linear-gradient(180deg, #ffb648, var(--amber));
    color: var(--navy-950);
    font-weight: 800;
  }

  .site-nav .nav-call svg { width: 18px; height: 18px; }

  .cards-grid { grid-template-columns: 1fr; }

  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
  .gallery figure:nth-child(7) { grid-column: span 2; }

  .urun-cta { flex-direction: column; align-items: flex-start; }

  .footer-grid { grid-template-columns: 1fr; gap: 30px; padding-block: 46px 36px; }

  .lb-prev, .lb-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
  }
  .lb-prev { left: 14px; }
  .lb-next { right: 14px; }
}

@media (max-width: 460px) {
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery figure:nth-child(1),
  .gallery figure:nth-child(4) { grid-row: span 1; }
  .gallery figure:nth-child(7) { grid-column: span 1; }
  .cta-row .btn { width: 100%; justify-content: center; }
  .brand-text small { display: none; }
}
