:root {
  --red: #C8102E;
  --red-dark: #9E0C24;
  --red-soft: #FDECEE;
  --ink: #121417;
  --ink-2: #2A2F36;
  --muted: #5C6570;
  --line: #E4E7EB;
  --bg: #F7F8FA;
  --white: #FFFFFF;
  --dark: #1A1D22;
  --shadow: 0 16px 40px rgba(18, 20, 23, 0.08);
  --radius: 10px;
  --font: "Manrope", system-ui, sans-serif;
  --display: "Barlow Condensed", "Manrope", sans-serif;
  --container: min(1080px, calc(100% - 2rem));
  --header-h: 64px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  font-size: 15.5px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button, input, textarea { font: inherit; }
.container { width: var(--container); margin-inline: auto; }
.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--red); color: #fff; padding: .75rem 1rem; z-index: 1000;
}
.skip-link:focus { left: 1rem; top: 1rem; }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s, border-color .25s;
}
.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 24px rgba(18,20,23,.06);
}
.header-inner {
  width: var(--container); margin-inline: auto;
  min-height: var(--header-h);
  display: flex; align-items: center; gap: 1.25rem;
}
.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}
.logo img {
  width: clamp(110px, 14vw, 148px);
  height: auto;
  max-height: 48px;
  display: block;
  object-fit: contain;
}
.nav {
  display: flex; align-items: center; gap: .2rem; margin-left: auto;
}
.nav a {
  padding: .55rem .7rem;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink-2);
  border-radius: 8px;
  transition: color .2s, background .2s;
}
.nav a:hover, .nav a.is-active { color: var(--red); background: var(--red-soft); }
.header-cta {
  position: relative;
  isolation: isolate;
  display: flex; align-items: center; gap: .7rem;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff; padding: .55rem .9rem .55rem .65rem;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(200,16,46,.28);
  transition: transform .2s, box-shadow .2s;
  animation: ctaPulse 2.4s ease-in-out infinite;
}
.header-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: -1;
  box-shadow: 0 0 0 0 rgba(200, 16, 46, .45);
  animation: ctaRing 2.4s ease-out infinite;
  pointer-events: none;
}
.header-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(110deg, transparent 35%, rgba(255,255,255,.32) 50%, transparent 65%);
  background-size: 220% 100%;
  background-position: 120% 0;
  animation: ctaShine 3.6s ease-in-out infinite;
  pointer-events: none;
}
.header-cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 16px 32px rgba(200,16,46,.42);
  animation-play-state: paused;
}
.header-cta:hover::before,
.header-cta:hover::after { animation-play-state: paused; }
.header-cta__icon {
  position: relative;
  z-index: 1;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.16);
  display: grid; place-items: center;
  flex-shrink: 0;
  animation: ctaIconBuzz 2.4s ease-in-out infinite;
}
.header-cta__text { display: flex; flex-direction: column; line-height: 1.15; position: relative; z-index: 1; }
.header-cta__text small { font-size: .65rem; opacity: .9; letter-spacing: .08em; font-weight: 700; }
.header-cta__text strong { font-size: .98rem; letter-spacing: .02em; }
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 10px 24px rgba(200,16,46,.28); }
  50% { box-shadow: 0 12px 30px rgba(200,16,46,.48); }
}
@keyframes ctaRing {
  0% { box-shadow: 0 0 0 0 rgba(200, 16, 46, .4); opacity: 1; }
  70% { box-shadow: 0 0 0 12px rgba(200, 16, 46, 0); opacity: 0; }
  100% { box-shadow: 0 0 0 0 rgba(200, 16, 46, 0); opacity: 0; }
}
@keyframes ctaShine {
  0%, 55% { background-position: 120% 0; opacity: 0; }
  62% { opacity: 1; }
  88% { background-position: -120% 0; opacity: .85; }
  100% { background-position: -120% 0; opacity: 0; }
}
@keyframes ctaIconBuzz {
  0%, 100% { transform: rotate(0deg) scale(1); }
  10% { transform: rotate(12deg) scale(1.06); }
  20% { transform: rotate(-10deg) scale(1.06); }
  30% { transform: rotate(8deg) scale(1.04); }
  40%, 100% { transform: rotate(0deg) scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .header-cta,
  .header-cta::before,
  .header-cta::after,
  .header-cta__icon { animation: none !important; }
}
.nav-toggle {
  display: none; width: 44px; height: 44px; border: 0; background: transparent; padding: 10px; cursor: pointer;
}
.nav-toggle span {
  display: block; height: 2px; background: var(--ink); margin: 6px 0; transition: .25s;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .45rem;
  min-height: 44px; padding: 0 1.1rem;
  border-radius: 8px; font-weight: 800; letter-spacing: .03em;
  text-transform: uppercase; font-size: .8rem; border: 1.5px solid transparent;
  transition: transform .2s, background .2s, color .2s, border-color .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn--red { background: var(--red); color: #fff; }
.btn--red:hover { background: var(--red-dark); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: #000; }
.btn--white { background: #fff; color: var(--red); }
.btn--white:hover { background: var(--red-soft); }
.btn--outline { background: transparent; border-color: var(--ink); color: var(--ink); }

/* Horizontal hero slider (transform track) */
.hero-slider {
  position: relative;
  height: min(88vh, 780px);
  min-height: 600px;
  overflow: hidden;
  background: #0b0d10;
  color: #fff;
}
.hero-slider__window {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-slider__track {
  display: flex;
  height: 100%;
  transition: transform .75s cubic-bezier(.22, .61, .36, 1);
  will-change: transform;
}
.hero-slider__slide {
  position: relative;
  flex: 0 0 auto;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.hero-slider__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 1;
}
.hero-slider__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(100deg, rgba(8,9,12,.9) 0%, rgba(8,9,12,.62) 48%, rgba(8,9,12,.35) 100%),
    linear-gradient(180deg, rgba(8,9,12,.2) 0%, rgba(8,9,12,.75) 100%);
}
.hero-slider__inner {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 4rem 0 7rem;
}
.hero-slider__box { max-width: 560px; }
.hero-slider__eyebrow {
  display: inline-block;
  font-family: var(--display);
  font-size: clamp(.95rem, 1.5vw, 1.2rem);
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-left: 3px solid var(--red);
  padding-left: .65rem;
  margin-bottom: .5rem;
}
.hero-slider__title {
  margin: 0 0 .55rem;
  font-family: var(--display);
  font-size: clamp(1.75rem, 3.8vw, 2.75rem);
  line-height: 1;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.hero-slider__text {
  margin: 0 0 .9rem;
  font-size: .95rem;
  color: rgba(255,255,255,.88);
  max-width: 42ch;
}
.hero-slider__feats {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin: 0 0 1.25rem;
}
.hero-slider__feats li {
  padding: .45rem .75rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.08);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.hero-slider__btns {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
}
.btn--outline-light {
  background: transparent;
  border-color: rgba(255,255,255,.5);
  color: #fff;
}
.btn--outline-light:hover {
  background: rgba(255,255,255,.12);
  border-color: #fff;
}

.hero-slider__prev,
.hero-slider__next {
  position: absolute;
  top: 50%;
  z-index: 8;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 50%;
  background: rgba(200, 16, 46, .92);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(0,0,0,.35);
  transition: transform .2s, background .2s;
}
.hero-slider__prev:hover,
.hero-slider__next:hover {
  background: #9e0c24;
  transform: translateY(-50%) scale(1.06);
}
.hero-slider__prev { left: 1rem; }
.hero-slider__next { right: 1rem; }

.hero-slider__bar {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 8;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.65));
}
.hero-slider__bar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .85rem 0;
}
.hero-slider__dots {
  display: flex;
  gap: .4rem;
  overflow-x: auto;
  max-width: calc(100% - 80px);
  scrollbar-width: none;
}
.hero-slider__dots::-webkit-scrollbar { display: none; }
.hero-slider__dot {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  min-height: 42px;
  padding: .45rem .8rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(0,0,0,.35);
  color: #fff;
  cursor: pointer;
  white-space: nowrap;
}
.hero-slider__dot em {
  font-style: normal;
  font-family: var(--display);
  font-weight: 800;
  opacity: .85;
}
.hero-slider__dot span {
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.hero-slider__dot.is-on {
  background: var(--red);
  border-color: var(--red);
}
.hero-slider__count {
  font-family: var(--display);
  letter-spacing: .06em;
  font-size: 1.1rem;
}
.hero-slider__progress {
  height: 3px;
  background: rgba(255,255,255,.18);
}
.hero-slider__progress i {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #fff, var(--red));
}

.hero-actions { display: flex; flex-wrap: wrap; gap: .7rem; }
.hero-lead { margin: 0 0 1.35rem; font-size: 1.02rem; color: rgba(255,255,255,.86); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

/* Sections */
.section { padding: 3.25rem 0; }
.section--white { background: #fff; }
.section--dark {
  background: linear-gradient(180deg, #1A1D22, #121417);
  color: #fff;
}
.section-head {
  text-align: center;
  margin-bottom: 2.5rem;
}
.section-head .eyebrow {
  display: inline-block;
  color: var(--red);
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .78rem;
  margin-bottom: .5rem;
}
.section-head h2 {
  margin: 0 0 .45rem;
  font-family: var(--display);
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  letter-spacing: .03em;
  text-transform: uppercase;
  line-height: 1.05;
}
.section-head p { margin: 0 auto; max-width: 56ch; color: var(--muted); }
.section--dark .section-head p { color: rgba(255,255,255,.72); }

[data-reveal] {
  opacity: 0; transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
[data-reveal].is-visible { opacity: 1; transform: none; }

/* Why */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 2rem;
  align-items: center;
}
.why-media {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(18,20,23,.07);
  aspect-ratio: 16/11;
  max-height: 340px;
}
.why-media img { width: 100%; height: 100%; object-fit: cover; }
.why-media::after {
  content: "";
  position: absolute; inset: auto 0 0 0; height: 40%;
  background: linear-gradient(transparent, rgba(0,0,0,.35));
}
.why-copy h2 {
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  letter-spacing: .03em;
  text-transform: uppercase;
  line-height: 1.05;
  margin: 0 0 .75rem;
}
.why-copy .eyebrow { color: var(--red); font-weight: 800; letter-spacing: .12em; text-transform: uppercase; font-size: .78rem; }
.check-list { display: grid; gap: .85rem; margin-top: 1.4rem; }
.check-list li {
  display: grid; grid-template-columns: 28px 1fr; gap: .75rem; align-items: start;
  color: var(--ink-2); font-weight: 600;
}
.check-list .tick {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--red); color: #fff;
  display: grid; place-items: center; font-size: .85rem; font-weight: 800;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem 1.05rem;
  transition: border-color .25s, box-shadow .25s;
}
.service-card:hover {
  border-color: rgba(200,16,46,.35);
  box-shadow: 0 8px 22px rgba(18,20,23,.06);
}
.service-card__icon {
  width: 40px; height: 40px; margin-bottom: .7rem;
  color: var(--ink);
}
.service-card h3 {
  margin: 0 0 .35rem;
  font-family: var(--display);
  font-size: 1.15rem;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.service-card p { margin: 0; color: var(--muted); font-size: .88rem; }

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.stat {
  text-align: center;
  padding: 1.5rem 1rem;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  background: rgba(255,255,255,.03);
}
.stat strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  color: #fff;
  letter-spacing: .02em;
  line-height: 1;
}
.stat span { color: rgba(255,255,255,.7); font-size: .9rem; font-weight: 600; }

/* Sectors */
.sectors {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: .75rem;
}
.sector {
  text-align: center;
  padding: 1rem .5rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
}
.sector svg { display: block; margin: 0 auto .55rem; color: var(--red); }

/* Process */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  counter-reset: step;
}
.process-item {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.2rem;
}
.process-item__n {
  font-family: var(--display);
  font-size: 2.4rem;
  color: var(--red);
  line-height: 1;
  margin-bottom: .5rem;
}
.process-item h3 {
  margin: 0 0 .35rem;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: .03em;
}
.process-item p { margin: 0; color: var(--muted); font-size: .92rem; }

/* Ana sayfa — 3’lü YATAY galeri (yan yana, landscape) */
.section-head--tight { margin-bottom: 1.1rem; }
.section-head--tight h2 {
  margin-bottom: 0;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
}
.gallery-trio {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: .75rem;
  max-width: 780px;
  width: 100%;
  margin-inline: auto;
}
.gallery-trio__item {
  flex: 1 1 0;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
  background: #f3f4f6;
  line-height: 0;
  box-shadow: 0 3px 12px rgba(18, 20, 23, .07);
}
.gallery-trio__item img {
  width: 100%;
  height: auto !important;
  max-width: 100%;
  aspect-ratio: 16 / 10;
  display: block;
  object-fit: cover;
  object-position: center center;
  transition: transform .35s ease;
}
.gallery-trio__item:hover img { transform: scale(1.03); }

/* Galeri sayfası grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-grid a {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 18px;
  background: #f0f1f3;
  border: 0;
  padding: 0;
}
.gallery-grid img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .4s ease;
}
.gallery-grid a:hover img { transform: scale(1.03); }
.gallery-cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: .45rem .65rem;
  background: linear-gradient(transparent, rgba(0,0,0,.72));
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
}
.article-mahalle__list a {
  display: inline-flex;
  padding: .35rem .65rem;
  border-radius: 999px;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--ink-2);
  font-size: .82rem;
  font-weight: 600;
  text-decoration: none;
}
.article-mahalle__list a:hover { border-color: var(--red); color: var(--red); }
.empty-state {
  text-align: center;
  padding: 3rem 1rem;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.empty-state p { margin: 0 0 1rem; color: var(--muted); }
.form-note {
  margin: 0 0 .85rem;
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.45;
}
.form-feedback {
  margin: 0 0 .85rem;
  padding: .7rem .85rem;
  border-radius: 10px;
  background: rgba(200,16,46,.08);
  border: 1px solid rgba(200,16,46,.2);
  font-size: .9rem;
  font-weight: 600;
}
.form-feedback.is-error {
  background: rgba(160,0,0,.08);
  border-color: rgba(160,0,0,.25);
  color: #8a1010;
}

/* Regions */
.regions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.region-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .65rem;
}
.region-list a, .region-list span {
  display: flex; align-items: center; gap: .55rem;
  padding: .75rem .9rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-weight: 700;
  transition: border-color .2s, color .2s;
}
.region-list a:hover { border-color: var(--red); color: var(--red); }
.region-list i {
  width: 8px; height: 8px; border-radius: 50%; background: var(--red); flex-shrink: 0;
}
.map-panel {
  background: linear-gradient(160deg, #2a0c12, #C8102E 55%, #7a0a1c);
  border-radius: 14px;
  min-height: 240px;
  padding: 1.25rem;
  color: #fff;
  display: grid;
  place-content: center;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.map-panel::before {
  content: "";
  position: absolute; inset: 12%;
  border: 2px dashed rgba(255,255,255,.25);
  border-radius: 50% 40% 55% 45%;
}
.map-panel h3 {
  position: relative;
  font-family: var(--display);
  font-size: 1.55rem;
  margin: 0 0 .3rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.map-panel p { position: relative; margin: 0; opacity: .9; }
.map-panel--embed {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  padding: 1.25rem;
  min-height: 0;
}
.map-panel--embed::before { display: none; }
.map-panel--embed iframe {
  position: relative;
  width: 100%;
  height: 200px;
  border: 0;
  border-radius: 10px;
  background: #111;
}

/* Reviews */
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.review {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.stars { color: #F5A524; letter-spacing: 2px; margin-bottom: .75rem; }
.review p { margin: 0 0 1rem; color: var(--ink-2); }
.review strong { display: block; }
.review small { color: var(--muted); }

/* FAQ */
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: .65rem; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.faq-item__q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 1.1rem 1.2rem;
  font-weight: 750;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}
.faq-item__q::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--red);
  font-weight: 400;
}
.faq-item.is-open .faq-item__q::after { content: "–"; }
.faq-item__a {
  display: none;
  padding: 0 1.2rem 1.15rem;
  color: var(--muted);
}
.faq-item.is-open .faq-item__a { display: block; }

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
.blog-grid--home {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 1rem;
}
.blog-grid--home .blog-card {
  flex: 1 1 0;
  min-width: 0;
}
.blog-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.blog-card__img {
  display: block;
  overflow: hidden;
  line-height: 0;
  background: #f3f4f6;
}
.blog-card__img img {
  width: 100%;
  height: auto !important;
  max-width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.blog-card__body { padding: 1.2rem 1.25rem 1.4rem; }
.blog-card time { color: var(--muted); font-size: .82rem; font-weight: 600; }
.blog-card h3 {
  margin: .4rem 0 .55rem;
  font-family: var(--display);
  font-size: 1.45rem;
  letter-spacing: .02em;
  text-transform: uppercase;
  line-height: 1.1;
}
.blog-card p { margin: 0 0 1rem; color: var(--muted); font-size: .94rem; }
.blog-card .more { color: var(--red); font-weight: 800; font-size: .85rem; text-transform: uppercase; letter-spacing: .04em; }
.blog-card__tags {
  display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: .45rem;
}
.blog-card__tags span {
  font-size: .68rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
  background: var(--red-soft); color: var(--red); padding: .25rem .5rem; border-radius: 999px;
}
.blog-card__words { margin: 0 0 .75rem; font-size: .8rem; color: var(--muted); font-weight: 700; }

.blog-filters { margin-bottom: 2rem; }
.blog-search {
  display: flex;
  gap: .55rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.blog-search input[type="search"] {
  flex: 1 1 220px;
  min-width: 0;
  padding: .7rem .9rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  font: inherit;
  background: #fff;
}
.blog-search .btn { white-space: nowrap; }
.blog-filters__row {
  display: flex; flex-wrap: wrap; gap: .45rem; align-items: center;
  margin-bottom: .85rem;
}
.blog-filters__row strong { margin-right: .25rem; font-size: .85rem; }
.chip {
  display: inline-flex; align-items: center; gap: .25rem;
  padding: .4rem .7rem; border-radius: 999px;
  border: 1px solid var(--line); background: #fff;
  font-size: .78rem; font-weight: 700;
  transition: .2s;
}
.chip small { opacity: .65; font-weight: 600; }
.chip:hover, .chip.is-active {
  border-color: var(--red); background: var(--red); color: #fff;
}
.blog-filters__meta { margin: .25rem 0 0; color: var(--muted); font-size: .9rem; font-weight: 600; }

.pagination {
  display: flex; flex-wrap: wrap; gap: .45rem; justify-content: center;
  margin-top: 2.5rem;
}
.pagination a {
  min-width: 42px; height: 42px; padding: 0 .7rem;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line); border-radius: 10px;
  background: #fff; font-weight: 700;
}
.pagination a.is-active,
.pagination a:hover {
  background: var(--red); border-color: var(--red); color: #fff;
}

.page-hero--article .page-hero__lead {
  margin: .85rem 0 0;
  max-width: 70ch;
  opacity: .92;
  font-size: 1.02rem;
}
.article-meta-bar {
  display: flex; flex-wrap: wrap; gap: .55rem;
  margin-top: 1.1rem;
}
.article-meta-bar > span {
  display: inline-flex; align-items: center;
  padding: .35rem .7rem;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  font-size: .78rem;
  font-weight: 700;
}
.article-meta-bar .tag { background: rgba(200,16,46,.85); border-color: transparent; }

.article-section { padding-top: 2.5rem; }
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 2rem;
  align-items: start;
}
.article-aside {
  position: sticky;
  top: 5.5rem;
  display: grid;
  gap: .85rem;
}
.article--rich {
  max-width: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}
.article__cover {
  margin: 0 0 1.15rem;
  border-radius: 12px;
  overflow: hidden;
  background: #111;
  border: 1px solid var(--line);
  aspect-ratio: 21/9;
  max-height: 280px;
  display: grid;
  place-items: center;
}
.article__cover img {
  width: 100%;
  height: 100% !important;
  max-height: none;
  object-fit: cover;
  object-position: center;
  margin: 0;
  display: block;
}

.article-toc {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.1rem 1.25rem;
  margin-bottom: 1.5rem;
}
.article-toc strong {
  display: block;
  margin-bottom: .65rem;
  font-family: var(--display);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.article-toc ol {
  margin: 0;
  padding-left: 1.15rem;
  display: grid;
  gap: .35rem;
}
.article-toc a { color: var(--ink-2); font-weight: 600; font-size: .92rem; }
.article-toc a:hover { color: var(--red); }

.article-body {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.6rem 1.7rem 1.8rem;
}
.article-body h2 {
  font-family: var(--display);
  font-size: 1.45rem;
  letter-spacing: .03em;
  text-transform: uppercase;
  margin: 1.8rem 0 .7rem;
  line-height: 1.15;
  scroll-margin-top: 96px;
}
.article-body h2:first-child { margin-top: 0; }
.article-body h3 {
  font-size: 1.05rem;
  margin: 1.2rem 0 .4rem;
}
.article-body p { color: var(--ink-2); margin: 0 0 .95rem; }
.article-body ul, .article-body ol { margin: .8rem 0 1rem; padding-left: 1.25rem; }
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body li { margin: .35rem 0; color: var(--ink-2); }

.article-mahalle {
  margin-top: 1.4rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.2rem 1.3rem;
}
.article-mahalle h3 {
  margin: 0 0 .8rem;
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .03em;
}
.article-mahalle__list {
  display: flex; flex-wrap: wrap; gap: .4rem;
}
.article-mahalle__list span {
  padding: .35rem .65rem;
  border-radius: 999px;
  background: var(--bg);
  border: 1px solid var(--line);
  font-size: .78rem;
  font-weight: 700;
}

.article-cta-box {
  margin-top: 1.4rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  padding: 1.3rem 1.4rem;
  border-radius: 14px;
  background: linear-gradient(120deg, var(--red-dark), var(--red));
  color: #fff;
}
.article-cta-box p { margin: .3rem 0 0; opacity: .92; }
.article-cta-box__actions { display: flex; gap: .55rem; flex-wrap: wrap; }

.article-share {
  margin-top: 1.1rem;
  display: flex; flex-wrap: wrap; gap: .55rem; align-items: center;
  font-size: .9rem;
}
.article-share a {
  padding: .4rem .7rem;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
  font-weight: 700;
}
.article-share a:hover { border-color: var(--red); color: var(--red); }

.article-pager {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .8rem;
}
.article-pager__item {
  display: block;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}
.article-pager__item:hover { border-color: var(--red); }
.article-pager__item small {
  display: block;
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: .25rem;
}
.article-pager__item--next { text-align: right; }

.aside-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.15rem 1.2rem;
  margin-bottom: .85rem;
}
.aside-card h3 {
  margin: 0 0 .55rem;
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .03em;
  font-size: 1.15rem;
}
.aside-card p { margin: 0 0 .8rem; color: var(--muted); font-size: .92rem; }
.aside-card--cta {
  background: linear-gradient(160deg, #1a1d22, #2a0c12);
  color: #fff;
  border: 0;
}
.aside-card--cta p { color: rgba(255,255,255,.78); }
.aside-card--cta .btn { width: 100%; }
.aside-contact { display: grid; gap: .7rem; }
.aside-contact strong {
  display: block;
  font-size: .72rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--muted);
}
.aside-contact a { font-weight: 700; color: var(--red); }
.aside-links { display: grid; gap: .45rem; }
.aside-links a:hover { color: var(--red); }

@media (max-width: 960px) {
  .article-layout { grid-template-columns: 1fr; }
  .article-aside { display: grid; grid-template-columns: 1fr 1fr; gap: .85rem; }
  .aside-card { margin: 0; }
}
@media (max-width: 640px) {
  .article-aside { grid-template-columns: 1fr; }
  .article-pager { grid-template-columns: 1fr; }
  .article-pager__item--next { text-align: left; }
  .article-body { padding: 1.15rem; }
}

/* Page hero (inner) */
.page-hero {
  padding: 2.25rem 0 1.75rem;
  background:
    linear-gradient(120deg, rgba(18,20,23,.92), rgba(200,16,46,.72)),
    url("../img/hero-ac-vinc.jpg") center/cover;
  color: #fff;
}
.page-hero h1 {
  margin: .3rem 0 0;
  font-family: var(--display);
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  letter-spacing: .03em;
  text-transform: uppercase;
  line-height: 1.05;
}
.page-hero__lead {
  margin: .55rem 0 0;
  max-width: 58ch;
  opacity: .9;
  font-size: .95rem;
  line-height: 1.45;
}
.breadcrumb {
  display: flex; flex-wrap: wrap; gap: .45rem; align-items: center;
  font-size: .88rem; opacity: .9;
}
.breadcrumb a:hover { text-decoration: underline; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2rem;
}
.contact-card, .contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
}
.contact-card h3, .contact-form h3 {
  margin: 0 0 1rem;
  font-family: var(--display);
  font-size: 1.6rem;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.contact-list { display: grid; gap: 1rem; }
.contact-list li strong { display: block; color: var(--muted); font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; }
.contact-list a { font-weight: 700; color: var(--red); }
.form-row { display: grid; gap: .4rem; margin-bottom: .9rem; }
.form-row label { font-weight: 700; font-size: .88rem; }
.form-row input, .form-row textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 10px;
  padding: .85rem 1rem; background: var(--bg);
}
.form-row input:focus, .form-row textarea:focus {
  outline: 2px solid rgba(200,16,46,.25); border-color: var(--red);
}

/* Packages */
.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.package {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.package img { width: 100%; aspect-ratio: 16/9; max-height: 180px; object-fit: cover; }
.package__body { padding: 1rem 1.05rem; }
.package h3 {
  margin: 0 0 .4rem;
  font-family: var(--display);
  font-size: 1.25rem;
  text-transform: uppercase;
}
.package p { margin: 0 0 1rem; color: var(--muted); }

/* CTA band */
.cta-band {
  background: linear-gradient(90deg, var(--red-dark), var(--red));
  color: #fff;
  padding: 2rem 0;
}
.cta-band__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
}
.cta-band__copy { display: flex; align-items: center; gap: 1rem; }
.cta-band h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  letter-spacing: .03em;
  text-transform: uppercase;
  line-height: 1.05;
}
.cta-band p { margin: .25rem 0 0; opacity: .92; }
.cta-band__actions { display: flex; gap: .65rem; flex-wrap: wrap; }

/* Footer */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,.84);
  padding-top: 3.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.1fr 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  padding: .65rem .9rem;
  background: #fff;
  border-radius: 12px;
  line-height: 0;
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
}
.footer-logo img {
  width: clamp(120px, 18vw, 150px);
  height: auto;
  max-height: 52px;
  display: block;
  object-fit: contain;
  filter: none;
}
.footer-brand p { color: rgba(255,255,255,.7); max-width: 34ch; }
.site-footer h3 {
  margin: 0 0 1rem;
  color: #fff;
  font-family: var(--display);
  letter-spacing: .05em;
  text-transform: uppercase;
  font-size: 1.2rem;
}
.footer-links, .footer-contact { display: grid; gap: .55rem; }
.footer-links a:hover { color: #fff; }
.footer-contact strong {
  display: block; font-size: .72rem; letter-spacing: .08em;
  text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: .15rem;
}
.footer-contact a { color: #fff; font-weight: 700; }
.social { display: flex; gap: .55rem; margin-top: 1.1rem; flex-wrap: wrap; }
.social__btn {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.social__btn svg { display: block; }
.social__btn:hover { transform: translateY(-2px); filter: brightness(1.08); }
.social__btn--fb { background: #1877F2; box-shadow: 0 6px 14px rgba(24,119,242,.35); }
.social__btn--ig {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  box-shadow: 0 6px 14px rgba(214,36,159,.35);
}
.social__btn--wa { background: #25D366; box-shadow: 0 6px 14px rgba(37,211,102,.35); }
.footer-legal a { color: rgba(255,255,255,.85); text-decoration: underline; }
.footer-legal a:hover { color: #fff; }

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 1rem; right: 1rem; bottom: 1rem;
  z-index: 120;
  max-width: 920px;
  margin-inline: auto;
}
.cookie-banner[hidden] { display: none !important; }
.cookie-banner__inner {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 1rem 1.15rem;
  background: #16181c;
  color: #fff;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
}
.cookie-banner__text { flex: 1 1 280px; min-width: 0; }
.cookie-banner__text strong { display: block; margin-bottom: .35rem; font-size: 1rem; }
.cookie-banner__text p {
  margin: 0;
  color: rgba(255,255,255,.82);
  font-size: .9rem;
  line-height: 1.5;
}
.cookie-banner__text a { color: #fff; text-decoration: underline; }
.cookie-banner__actions {
  display: flex;
  gap: .55rem;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-banner .btn--outline {
  border-color: rgba(255,255,255,.35);
  color: #fff;
  background: transparent;
}
.cookie-banner .btn--outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,.08);
}
.legal-content { max-width: 820px; }
.legal-content h2 {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .03em;
  margin: 2rem 0 .8rem;
  font-size: 1.45rem;
}
.legal-content p, .legal-content li { color: var(--ink-2); line-height: 1.7; }
.legal-content ul { padding-left: 1.2rem; margin: .8rem 0 1rem; }
.legal-updated { margin-top: 2rem; font-size: .9rem; color: var(--muted); }

@media (max-width: 700px) {
  .cookie-banner { left: .65rem; right: .65rem; bottom: .75rem; }
  .cookie-banner__inner { padding: .9rem; }
  .cookie-banner__actions { width: 100%; }
  .cookie-banner__actions .btn { flex: 1 1 auto; justify-content: center; text-align: center; }
  .float-wa { bottom: 6.5rem; }
  body.cookie-open .float-wa { bottom: 6.5rem; }
}
.hours-badge {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-weight: 800;
  padding: .55rem .9rem;
  border-radius: 8px;
  margin: 0 0 1rem;
}
.footer-hours img { border-radius: 12px; width: 100%; max-width: 260px; }
.footer-ai-note { font-size: .72rem; opacity: .55; margin-top: .75rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1rem 0;
  font-size: .88rem;
}
.footer-bottom .container {
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}
.footer-credit a { color: #fff; text-decoration: underline; }

/* Float WA */
.float-wa {
  position: fixed; right: 1.1rem; bottom: 1.1rem; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366;
  display: grid; place-items: center;
  box-shadow: 0 12px 28px rgba(37,211,102,.4);
  animation: pulseWa 2.4s ease infinite;
}
@keyframes pulseWa {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* Article */
.article {
  max-width: 780px; margin: 0 auto;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 2rem;
}
.article img { border-radius: 12px; margin-bottom: 1.25rem; }
.article h1 {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: .02em;
  text-transform: uppercase;
  line-height: 1.05;
  margin: 0 0 .5rem;
}
.article .meta { color: var(--muted); margin-bottom: 1.25rem; }
.article-body p, .article-body li { color: var(--ink-2); }
.article-body ol, .article-body ul { padding-left: 1.2rem; margin: 1rem 0; }
.article-body ol { list-style: decimal; }
.article-body ul { list-style: disc; }

/* Responsive */
@media (max-width: 1024px) {
  .services-grid, .reviews, .package-grid, .blog-grid { grid-template-columns: 1fr 1fr; }
  .sectors { grid-template-columns: repeat(4, 1fr); }
  .process { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .header-cta__text small { display: none; }
}
@media (max-width: 860px) {
  .nav-toggle { display: block; margin-left: auto; }
  .header-cta { order: 2; }
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    background: #fff; border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: stretch; padding: 1rem;
    transform: translateY(-120%); opacity: 0; pointer-events: none;
    transition: .3s ease; margin: 0; z-index: 99;
  }
  .nav.is-open { transform: none; opacity: 1; pointer-events: auto; }
  .nav a { padding: .9rem 1rem; }
  body.nav-open { overflow: hidden; }
  .why-grid, .regions-grid, .contact-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .hero-slider { min-height: 560px; height: 82vh; }
  .hero-slider__inner { align-items: flex-end; padding-bottom: 8rem; }
  .hero-slider__prev, .hero-slider__next { width: 40px; height: 40px; font-size: 1.4rem; }
  .hero-slider__dot span { display: none; }
  .gallery-trio { max-width: 640px; gap: .55rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  :root { --container: min(1080px, calc(100% - 1.25rem)); }
  .logo img { width: 118px; max-height: 42px; }
  .gallery-trio { max-width: 100%; gap: .4rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .section { padding: 2.5rem 0; }
  .article__cover { aspect-ratio: 16/9; max-height: 200px; }
  .header-cta { padding: .45rem .7rem; }
  .header-cta__text strong { font-size: .85rem; }
  .services-grid, .reviews, .package-grid, .blog-grid,
  .process, .gallery-grid, .region-list, .footer-grid { grid-template-columns: 1fr; }
  .blog-grid--home { flex-direction: column; }
  .sectors { grid-template-columns: repeat(2, 1fr); }
  .hero-slider__btns .btn { width: 100%; }
  .cta-band__inner { flex-direction: column; align-items: flex-start; }
}
