:root {
  --ink: #161310;
  --ink-2: #1f1b16;
  --ink-3: #2a251f;
  --paper: #f7f4ef;
  --paper-2: #efebe3;
  --gold: #b98d4f;
  --gold-2: #d4b079;
  --muted: #8a8177;
  --line: rgba(22, 19, 16, 0.12);
  --white: #ffffff;
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Inter", "Segoe UI", system-ui, sans-serif;
  --shadow: 0 24px 60px rgba(22, 19, 16, 0.16);
  --radius: 4px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.15; }

.container { width: min(1200px, 92%); margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: var(--gold-2); transform: translateY(-2px); }
.btn-outline { border-color: rgba(255,255,255,0.55); color: #fff; background: transparent; }
.btn-outline:hover { background: #fff; color: var(--ink); }
.btn-dark { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-dark:hover { background: var(--ink); color: #fff; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(22, 19, 16, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.35s ease, box-shadow 0.35s ease;
  color: #fff;
}
.site-header.scrolled {
  background: rgba(22, 19, 16, 0.96);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,0.4);
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: 1px;
}
.brand-name { font-family: var(--serif); font-size: 24px; letter-spacing: 5px; text-transform: uppercase; }
.brand-name small { display: block; font-family: var(--sans); font-size: 9px; letter-spacing: 3px; color: var(--gold-2); text-transform: uppercase; font-weight: 600; }

.main-nav ul { display: flex; gap: 34px; }
.main-nav a {
  font-size: 12.5px; font-weight: 500; letter-spacing: 1.8px; text-transform: uppercase;
  padding: 6px 0; position: relative; opacity: 0.85; transition: opacity 0.3s;
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px;
  background: var(--gold-2); transition: width 0.3s ease;
}
.main-nav a:hover, .main-nav a.active { opacity: 1; }
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }

.header-cta { display: flex; align-items: center; gap: 20px; }
.header-phone { font-size: 13px; letter-spacing: 1px; color: var(--gold-2); font-weight: 600; white-space: nowrap; }
.nav-toggle {
  display: none; background: none; border: 1px solid rgba(255,255,255,0.4); color: #fff;
  width: 44px; height: 44px; cursor: pointer; align-items: center; justify-content: center;
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: #fff; margin: 3px auto; transition: 0.3s; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  animation: slowZoom 18s ease-in-out infinite alternate;
}
@keyframes slowZoom { from { transform: scale(1); } to { transform: scale(1.08); } }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(12,10,8,0.88) 0%, rgba(12,10,8,0.55) 50%, rgba(12,10,8,0.35) 100%); }
.hero-content { position: relative; z-index: 2; padding: 140px 0 80px; max-width: 760px; }
.hero-kicker {
  font-size: 12px; letter-spacing: 5px; text-transform: uppercase; color: var(--gold-2);
  font-weight: 600; margin-bottom: 22px; display: flex; align-items: center; gap: 16px;
}
.hero-kicker::before { content: ""; width: 44px; height: 1px; background: var(--gold); }
.hero h1 { font-size: clamp(44px, 7vw, 84px); font-weight: 600; margin-bottom: 26px; }
.hero h1 em { font-style: italic; color: var(--gold-2); }
.hero p { font-size: 18px; opacity: 0.85; max-width: 560px; margin-bottom: 40px; font-weight: 300; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 70px;
}
.hero-stats div { padding: 28px 18px; border-left: 1px solid rgba(255,255,255,0.14); }
.hero-stats div:first-child { border-left: none; }
.hero-stats strong { font-family: var(--serif); font-size: 40px; font-weight: 600; color: var(--gold-2); display: block; line-height: 1; }
.hero-stats span { font-size: 11.5px; letter-spacing: 2px; text-transform: uppercase; opacity: 0.7; }

.scroll-hint {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
  z-index: 2; color: rgba(255,255,255,0.7); font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.scroll-hint::after { content: ""; width: 1px; height: 42px; background: linear-gradient(to bottom, var(--gold-2), transparent); animation: drip 2s infinite; }
@keyframes drip { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative; padding: 190px 0 90px; color: #fff; text-align: center;
  background-size: cover; background-position: center;
}
.page-hero::after { content: ""; position: absolute; inset: 0; background: rgba(12,10,8,0.72); }
.page-hero > .container { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(38px, 6vw, 64px); }
.page-hero .breadcrumb { margin-top: 18px; font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-2); }
.page-hero .breadcrumb a { opacity: 0.7; color: #fff; }
.page-hero .breadcrumb a:hover { opacity: 1; }

/* ---------- Section base ---------- */
.section { padding: 110px 0; }
.section.dark { background: var(--ink); color: #fff; }
.section.muted { background: var(--paper-2); }
.section-head { max-width: 640px; margin-bottom: 60px; }
.section-head.center { margin-inline: auto; text-align: center; }
.kicker {
  font-size: 11.5px; letter-spacing: 4.5px; text-transform: uppercase; color: var(--gold);
  font-weight: 600; display: flex; align-items: center; gap: 14px; margin-bottom: 18px;
}
.section-head.center .kicker { justify-content: center; }
.kicker::before { content: ""; width: 36px; height: 1px; background: var(--gold); }
.section-head h2 { font-size: clamp(32px, 4.5vw, 48px); margin-bottom: 18px; }
.section-head p { color: var(--muted); font-size: 16.5px; }
.section.dark .section-head p { color: rgba(255,255,255,0.6); }

/* ---------- Marquee strip ---------- */
.marquee {
  background: var(--ink-2); color: rgba(255,255,255,0.85); overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08);
}
.marquee-track { display: flex; width: max-content; animation: marquee 30s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee span {
  font-family: var(--serif); font-size: 20px; letter-spacing: 2px; text-transform: uppercase;
  padding: 18px 36px; display: flex; align-items: center; gap: 36px; white-space: nowrap;
}
.marquee span::after { content: "\2726"; color: var(--gold); font-size: 12px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Brand cards ---------- */
.brands-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.brand-card { position: relative; overflow: hidden; }
.brand-card img { width: 100%; aspect-ratio: 16 / 7; object-fit: cover; transition: transform 0.7s ease; }
.brand-card:hover img { transform: scale(1.06); }
.brand-card .cap {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 30px; background: linear-gradient(to top, rgba(12,10,8,0.9), transparent 60%);
  color: #fff; transition: background 0.4s;
}
.brand-card h3 { font-size: 26px; }
.brand-card p { font-size: 13.5px; opacity: 0; transform: translateY(12px); transition: all 0.4s ease 0.05s; color: var(--gold-2); letter-spacing: 2px; text-transform: uppercase; font-weight: 600; margin-top: 6px; }
.brand-card:hover p { opacity: 1; transform: translateY(0); }

/* ---------- Product cards ---------- */
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.product-card { background: var(--white); overflow: hidden; transition: transform 0.4s ease, box-shadow 0.4s ease; }
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.product-card .img { overflow: hidden; position: relative; }
.product-card .img img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform 0.7s ease; }
.product-card:hover .img img { transform: scale(1.08); }
.product-card .img .tag {
  position: absolute; top: 16px; left: 16px; background: var(--gold); color: #fff;
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase; padding: 7px 14px; font-weight: 600;
}
.product-card .body { padding: 26px 28px 30px; }
.product-card h3 { font-size: 22px; margin-bottom: 8px; }
.product-card p { color: var(--muted); font-size: 14.5px; margin-bottom: 18px; }
.product-card .link { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; color: var(--gold); display: inline-flex; align-items: center; gap: 8px; transition: gap 0.3s; }
.product-card .link:hover { gap: 14px; }

/* ---------- Feature / service ---------- */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.feature {
  border: 1px solid var(--line); padding: 42px 36px; background: var(--white);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.feature .icon { font-family: var(--serif); font-size: 42px; color: var(--gold); line-height: 1; margin-bottom: 22px; }
.feature h3 { font-size: 22px; margin-bottom: 12px; }
.feature p { color: var(--muted); font-size: 14.5px; }

/* ---------- About split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.split .img-frame { position: relative; }
.split .img-frame img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.split .img-frame .frame-border { position: absolute; inset: 22px; border: 1px solid rgba(255,255,255,0.6); pointer-events: none; }
.split .img-frame .badge {
  position: absolute; bottom: -26px; right: -26px; background: var(--gold); color: #fff;
  padding: 26px 30px; text-align: center; min-width: 170px;
}
.split .img-frame .badge strong { font-family: var(--serif); font-size: 40px; display: block; line-height: 1; }
.split .img-frame .badge span { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; }
.split .content h2 { font-size: clamp(30px, 4vw, 44px); margin-bottom: 22px; }
.split .content p { color: var(--muted); margin-bottom: 18px; }
.split .content ul { margin: 20px 0 30px; display: grid; gap: 12px; }
.split .content li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; }
.split .content li::before { content: "\2713"; color: var(--gold); font-weight: 700; }

/* ---------- Stats band ---------- */
.stats-band { background: var(--ink-2); color: #fff; }
.stats-band .grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stats-band .cell strong { font-family: var(--serif); font-size: 56px; color: var(--gold-2); display: block; line-height: 1; }
.stats-band .cell span { font-size: 12px; letter-spacing: 2.5px; text-transform: uppercase; opacity: 0.65; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; counter-reset: step; }
.step { text-align: center; padding: 40px 24px; border-top: 2px solid var(--line); transition: border-color 0.3s; }
.step:hover { border-top-color: var(--gold); }
.step .num { font-family: var(--serif); font-size: 60px; color: transparent; -webkit-text-stroke: 1px var(--gold); line-height: 1; margin-bottom: 16px; }
.step h3 { font-size: 19px; margin-bottom: 10px; }
.step p { font-size: 14px; color: var(--muted); }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; padding: 110px 0; color: #fff; text-align: center;
  background-size: cover; background-position: center; background-attachment: fixed;
}
.cta-band::after { content: ""; position: absolute; inset: 0; background: rgba(12,10,8,0.78); }
.cta-band .container { position: relative; z-index: 2; }
.cta-band h2 { font-size: clamp(30px, 4.5vw, 48px); margin-bottom: 16px; }
.cta-band p { opacity: 0.8; max-width: 560px; margin: 0 auto 38px; }
.cta-band .hero-actions { justify-content: center; }

/* ---------- Contact page ---------- */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; }
.info-cards { display: grid; gap: 20px; }
.info-card { display: flex; gap: 20px; padding: 26px 28px; background: var(--white); border: 1px solid var(--line); }
.info-card .ic { font-family: var(--serif); font-size: 30px; color: var(--gold); line-height: 1; }
.info-card h4 { font-size: 16px; margin-bottom: 4px; letter-spacing: 1px; text-transform: uppercase; font-family: var(--sans); }
.info-card p, .info-card a { color: var(--muted); font-size: 15px; }
.info-card a:hover { color: var(--gold); }
.form-wrap { background: var(--white); border: 1px solid var(--line); padding: 44px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 11.5px; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; margin-bottom: 8px; color: var(--ink-3); }
.field input, .field textarea, .field select {
  width: 100%; padding: 14px 16px; border: 1px solid var(--line); background: var(--paper);
  font-family: var(--sans); font-size: 15px; color: var(--ink); transition: border-color 0.3s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--gold); }

/* ---------- Accordion ---------- */
.accordion { border-top: 1px solid var(--line); }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-head {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 24px 8px; display: flex; justify-content: space-between; align-items: center;
  font-family: var(--serif); font-size: 20px; color: var(--ink); transition: color 0.3s;
}
.acc-head:hover { color: var(--gold); }
.acc-head .arrow { transition: transform 0.3s; color: var(--gold); font-size: 18px; }
.acc-item.open .arrow { transform: rotate(45deg); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.acc-body p { padding: 0 8px 26px; color: var(--muted); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.7); padding-top: 90px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 50px; padding-bottom: 60px; }
.footer-grid h4 { color: #fff; font-size: 17px; margin-bottom: 22px; letter-spacing: 1px; }
.footer-grid a { display: block; padding: 6px 0; font-size: 14.5px; transition: color 0.3s, padding-left 0.3s; }
.footer-grid a:hover { color: var(--gold-2); padding-left: 6px; }
.footer-about p { font-size: 14.5px; margin: 18px 0 24px; }
.footer-brand { font-family: var(--serif); font-size: 26px; letter-spacing: 4px; color: #fff; text-transform: uppercase; }
.socials { display: flex; gap: 12px; }
.socials a {
  width: 40px; height: 40px; border: 1px solid rgba(255,255,255,0.2); display: grid; place-items: center;
  font-size: 15px; transition: all 0.3s;
}
.socials a:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 26px 0; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13.5px; }
.footer-bottom a { color: var(--gold-2); }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed; right: 26px; bottom: 26px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center;
  background: #25D366; box-shadow: 0 10px 26px rgba(37, 211, 102, 0.45);
  transition: transform 0.3s; animation: pulse 2.4s infinite;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); } 70% { box-shadow: 0 0 0 18px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .main-nav ul { gap: 20px; }
  .brands-grid, .products-grid, .features-grid { grid-template-columns: repeat(2, 1fr); }
  .model-grid { grid-template-columns: repeat(3, 1fr); }
  .split { gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .header-phone { display: none; }
  .main-nav {
    position: fixed; inset: 0; background: rgba(15,13,11,0.98); z-index: 99;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transition: opacity 0.35s;
  }
  .main-nav.open { opacity: 1; pointer-events: auto; }
  .main-nav ul { flex-direction: column; align-items: center; gap: 26px; }
  .main-nav a { font-size: 18px; }
  .nav-toggle { display: flex; flex-direction: column; justify-content: center; position: relative; z-index: 100; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-stats div:nth-child(3) { border-left: none; }
  .hero-stats div { border-top: 1px solid rgba(255,255,255,0.14); }
  .brands-grid, .products-grid, .features-grid, .steps, .stats-band .grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split .img-frame { margin-bottom: 44px; }
  .split .img-frame .badge { right: 12px; }
  .section { padding: 80px 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-band { background-attachment: scroll; }
  .model-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Nav dropdown (Markalar) ---------- */
.main-nav li.has-dropdown { position: relative; }
.dropdown-toggle { cursor: pointer; }
.dropdown-toggle .caret { font-size: 8px; margin-left: 6px; opacity: 0.7; }
.dropdown {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px);
  background: var(--ink-2); min-width: 230px; padding: 14px 0;
  opacity: 0; visibility: hidden; transition: all 0.28s ease;
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
}
.dropdown li { border-bottom: 1px solid rgba(255,255,255,0.06); }
.dropdown li:last-child { border-bottom: none; }
.dropdown a { display: block; padding: 13px 22px; font-size: 12px; }
.dropdown a::after { display: none; }
.dropdown a:hover { background: rgba(255,255,255,0.05); color: var(--gold-2); padding-left: 26px; }
.main-nav li.has-dropdown:hover .dropdown,
.main-nav li.has-dropdown.open .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
@media (max-width: 768px) {
  .dropdown { position: static; transform: none; opacity: 1; visibility: visible; background: none; box-shadow: none; min-width: 0; display: none; padding: 0; }
  .main-nav li.has-dropdown.open .dropdown { display: block; }
  .dropdown a { text-align: center; font-size: 16px; padding: 10px 0; }
}

/* ---------- Model gallery (marka sayfaları) ---------- */
.model-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.model-card { display: block; text-align: center; background: var(--white); transition: transform 0.4s ease, box-shadow 0.4s ease; }
.model-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.model-card .img { overflow: hidden; position: relative; }
.model-card .img img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; transition: transform 0.6s ease; }
.model-card:hover .img img { transform: scale(1.07); }
.model-card .img .wa {
  position: absolute; inset: 0; display: grid; place-items: center; background: rgba(15,13,11,0.55);
  opacity: 0; transition: opacity 0.3s ease; color: #fff; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; font-weight: 600;
}
.model-card:hover .img .wa { opacity: 1; }
.model-card .name { padding: 16px 12px 18px; font-family: var(--serif); font-size: 20px; font-weight: 600; }
.model-card .cat { display: block; font-family: var(--sans); font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-top: 2px; }

/* ---------- Catalog button ---------- */
.catalog-wrap { text-align: center; margin-top: 46px; }
.btn-catalog {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--gold); color: #fff; padding: 18px 42px;
  font-size: 13px; letter-spacing: 2.5px; text-transform: uppercase; font-weight: 600;
  transition: background 0.3s, transform 0.3s;
}
.btn-catalog:hover { background: var(--gold-2); transform: translateY(-2px); }
.btn-catalog .dl { font-size: 20px; }

/* ---------- Brand hero (marka logosu şeridi) ---------- */
.brand-hero {
  display: flex; align-items: center; gap: 26px; flex-wrap: wrap;
  background: var(--ink-2); color: #fff; padding: 40px 46px; margin-bottom: 60px;
}
.brand-hero .bh-logo {
  font-family: var(--serif); font-size: 44px; letter-spacing: 3px; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.25); padding: 18px 26px; line-height: 1; white-space: nowrap;
}
.brand-hero .bh-logo small { display: block; font-family: var(--sans); font-size: 10px; letter-spacing: 4px; color: var(--gold-2); margin-top: 10px; }
.brand-hero p { flex: 1; min-width: 260px; color: rgba(255,255,255,0.8); font-size: 15.5px; }

/* ---------- SEO text blocks ---------- */
.text-block { max-width: 860px; margin: 0 auto 44px; }
.text-block h3 {
  font-size: 26px; margin-bottom: 14px; display: flex; align-items: baseline; gap: 14px;
}
.text-block h3 .tn { font-family: var(--serif); color: var(--gold); font-size: 20px; }
.text-block p { color: var(--muted); margin-bottom: 14px; }
.text-block p strong { color: var(--ink); }
.section.dark .text-block p { color: rgba(255,255,255,0.7); }

/* ---------- Brand banner (katalog geçiş) ---------- */
.brand-banner-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
@media (max-width: 768px) { .brand-banner-grid { grid-template-columns: 1fr; } }
.brand-banner { position: relative; overflow: hidden; min-height: 320px; display: flex; align-items: flex-end; color: #fff; }
.brand-banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.brand-banner:hover img { transform: scale(1.06); }
.brand-banner::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(12,10,8,0.85), rgba(12,10,8,0.1)); }
.brand-banner .bb-inner { position: relative; z-index: 2; padding: 34px; width: 100%; }
.brand-banner h3 { font-size: 30px; }
.brand-banner p { font-size: 13.5px; opacity: 0.85; margin: 6px 0 16px; }
.brand-banner .btn { padding: 11px 24px; font-size: 11px; }

/* ---------- Video slider ---------- */
.vslider {
  position: relative; height: 620px; display: flex; align-items: center; color: #fff; overflow: hidden;
}
.vslider.page { height: 540px; }
.vslide {
  position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity 1.1s ease;
  display: flex; align-items: center; z-index: 0;
}
.vslide.active { opacity: 1; visibility: visible; z-index: 1; }
.vslide video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.vslide::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(100deg, rgba(12,10,8,0.9) 0%, rgba(12,10,8,0.58) 50%, rgba(12,10,8,0.38) 100%);
}
.vslider.page .vslide::after { background: rgba(12,10,8,0.62); }
.vslide-content { position: relative; z-index: 2; padding: 130px 0 20px; max-width: 760px; }
.vslider.page .vslide-content { padding: 130px 0 20px; max-width: 880px; }
.vslider.center .vslide-content, .vslider.page .vslide-content { text-align: center; }
.vslider.center .vslide-content p, .vslider.page .vslide-content p { margin-inline: auto; }
.vslider.center .vslide-content .hero-kicker, .vslider.page .vslide-content .hero-kicker { justify-content: center; }
.vslider.center .hero-actions, .vslider.page .hero-actions { justify-content: center; }
.vslider h1 { font-size: clamp(32px, 4.2vw, 52px); margin-bottom: 18px; }
.vslider .hero-kicker { margin-bottom: 14px; }
.vslider .hero-stats { margin-top: 30px; }
.vslider .hero-stats strong { font-size: 30px; }
.vslider .hero-stats div { padding: 16px 14px; }
.vslide-brand {
  position: absolute; top: 100px; right: 28px; z-index: 3;
  font-family: var(--serif); letter-spacing: 3px; text-transform: uppercase; font-size: 15px;
  color: rgba(255,255,255,0.85); border: 1px solid rgba(255,255,255,0.35); padding: 10px 18px;
}
.vnav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 6;
  width: 52px; height: 52px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.35);
  color: #fff; font-size: 28px; line-height: 1; cursor: pointer; display: grid; place-items: center;
  transition: all 0.3s; padding: 0 0 4px 0;
}
.vnav:hover { background: var(--gold); border-color: var(--gold); }
.vnav.prev { left: 26px; }
.vnav.next { right: 26px; }
.vdots {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); z-index: 6;
  display: flex; gap: 10px;
}
.vdots button {
  width: 11px; height: 11px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.65);
  background: transparent; cursor: pointer; transition: all 0.3s; padding: 0;
}
.vdots button.active { background: var(--gold); border-color: var(--gold); }
@media (max-width: 1024px) {
  .vslider { height: 560px; }
  .vslider.page { height: 500px; }
  .vslide-content { padding: 120px 0 20px; }
}
@media (max-width: 768px) {
  .vnav { display: none; }
  .vslide-brand { top: 84px; right: 14px; font-size: 12px; padding: 8px 12px; }
  .vslider { height: 620px; }
  .vslider.page { height: 560px; }
  .vslide-content { padding: 110px 0 16px; }
  .vslider h1 { font-size: clamp(30px, 8vw, 40px); }
}
