/* Signature Detailing — Logo-Inspired Premium Theme */
:root {
  --bg: #050608;
  --bg-card: #0a0c10;
  --bg-elevated: #111318;
  --text: #ffffff;
  --text-muted: #8b93a7;
  --accent: #f0ece4;
  --accent-hover: #ffffff;
  --accent-warm: #c9a052;
  --border: rgba(255, 255, 255, 0.07);
  --font: 'Montserrat', system-ui, -apple-system, sans-serif;
  --header-h: 88px;
  --radius: 12px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.is-loading { overflow: hidden; }

/* Film grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.025;
  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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent); }

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

/* ── Header ── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(8, 9, 12, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

.header.scrolled { background: rgba(8, 9, 12, 0.97); }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo img,
.logo__img {
  height: 44px;
  width: auto;
  max-width: min(260px, 58vw);
  object-fit: contain;
}

.logo__img--hero {
  height: clamp(52px, 11vw, 80px);
  width: auto;
  max-width: min(480px, 92vw);
  margin-bottom: 1.25rem;
}

.nav { display: flex; align-items: center; gap: 2rem; }

.nav__list {
  display: flex;
  list-style: none;
  gap: 1.75rem;
}

.nav__link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
}

.nav__link:hover,
.nav__link.active { color: var(--text); }

.nav__link.active::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--accent-warm);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition);
}

.btn--primary {
  background: var(--accent);
  color: #050608;
}

.btn--primary:hover {
  background: var(--accent-hover);
  color: #050608;
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn--outline:hover {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--accent);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: var(--transition);
}

/* ── Hero Slider ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  margin-top: 0;
  overflow: hidden;
}

.hero__slides { height: 100%; position: relative; }

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none;
}

.hero__slide.active { opacity: 1; pointer-events: auto; }

.hero__slide img,
.hero__slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__slide[data-type="image"] img {
  object-fit: cover;
  object-position: center;
}

.hero__slide video { display: block; }

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(5, 6, 8, 0.92) 0%,
    rgba(5, 6, 8, 0.55) 45%,
    rgba(5, 6, 8, 0.78) 100%
  );
}

.hero__brand { margin-bottom: 0.5rem; }

.hero__tagline {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent-warm);
  margin-top: 0.5rem;
}

.hero__content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  z-index: 2;
}

.hero__text { max-width: 680px; }

.hero__badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  padding: 0.45rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  backdrop-filter: blur(8px);
}

.hero__title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.04em;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.hero__title span {
  color: var(--accent-warm);
}

.hero__desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero__nav {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 3;
}

.hero__dot {
  width: 40px;
  height: 3px;
  background: rgba(255, 255, 255, 0.25);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  border-radius: 2px;
}

.hero__dot.active {
  background: var(--accent-warm);
  width: 56px;
}

.hero__arrow:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

/* ── Preloader ── */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__logo {
  height: 64px;
  width: auto;
  max-width: min(360px, 85vw);
}

/* ── Video Showcase ── */
.video-showcase {
  padding: 0;
  position: relative;
}

.video-showcase__wrap {
  position: relative;
  height: clamp(420px, 65vh, 720px);
  overflow: hidden;
}

.video-showcase__media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.video-showcase__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  background: linear-gradient(
    to bottom,
    rgba(5, 6, 8, 0.55) 0%,
    rgba(5, 6, 8, 0.35) 50%,
    rgba(5, 6, 8, 0.75) 100%
  );
}

.video-showcase__logo {
  height: clamp(44px, 7vw, 72px);
  max-width: min(400px, 88vw);
  margin-bottom: 1.5rem;
}

.video-showcase__title {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.video-showcase__desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 480px;
  margin-bottom: 2rem;
}

.hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}

.hero__arrow--prev { left: 2rem; }
.hero__arrow--next { right: 2rem; }

/* ── Sections ── */
section { padding: 6rem 0; }

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent-warm);
  margin-bottom: 0.75rem;
}

.section-header__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.section-header__desc {
  color: var(--text-muted);
  margin-top: 1rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Stats Bar ── */
.stats {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3rem 0;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat__number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-warm);
  line-height: 1;
}

.stat__label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* ── Services Grid ── */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  group: service;
}

.service-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.service-card__img {
  aspect-ratio: 16 / 10;
  min-height: 320px;
  overflow: hidden;
  background: var(--bg-elevated);
}

.service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}

.service-card:hover .service-card__img img { transform: scale(1.05); }

.service-card__body { padding: 1.75rem; }

.service-card__icon {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.service-card__title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.service-card__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.service-card__cta {
  display: inline-block;
  margin-top: 0.25rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-warm);
}

.service-card__cta:hover {
  color: var(--accent);
}

/* ── Gallery ── */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.gallery__item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  min-height: 380px;
  background: var(--bg-elevated);
  cursor: pointer;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.gallery__item:hover img { transform: scale(1.04); }

/* Dikey fotoğraflar — 2 satır kaplar, daha büyük görünür */
.gallery__item--portrait {
  grid-row: span 2;
  aspect-ratio: auto;
  min-height: 100%;
}

.gallery__item--portrait img {
  object-position: center center;
}

.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,9,12,0.8), transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery__item:hover::after { opacity: 1; }

.gallery__caption {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 1;
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--transition);
}

.gallery__item:hover .gallery__caption {
  opacity: 1;
  transform: translateY(0);
}

/* Before/After */
.ba-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.ba-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.ba-card__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
}

.ba-card__img-wrap {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  background: var(--bg-elevated);
}

.ba-card__images img,
.ba-card__img-wrap img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  object-position: center;
}

.ba-card__label {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.6rem;
  background: rgba(8, 9, 12, 0.8);
  border-radius: 2px;
}

.ba-card__body { padding: 1.25rem 1.5rem; }
.ba-card__title { font-weight: 600; font-size: 0.95rem; }
.ba-card__desc { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.25rem; }

/* ── Partners ── */
.partners__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  align-items: center;
}

.partner-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
  min-height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.partner-card:hover {
  border-color: rgba(212, 175, 106, 0.2);
}

.partner-card__name {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.partner-card__type {
  font-size: 0.7rem;
  color: var(--accent);
  margin-top: 0.35rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── About ── */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about__img {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  aspect-ratio: 16 / 10;
  min-height: 420px;
}

.about__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about__img--portrait {
  aspect-ratio: 3 / 4;
  min-height: 480px;
}

.about__img--portrait img {
  object-position: center center;
}

.about__text h3 {
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
}

.about__text p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.about__feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
}

.about__feature-icon {
  color: var(--accent);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--bg-elevated), var(--bg-card));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201, 160, 82, 0.04), transparent 70%);
  pointer-events: none;
}

.cta-banner__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.75rem;
}

.cta-banner__desc {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* ── Forms ── */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group--full { grid-column: 1 / -1; }

.form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.85rem 1rem;
  color: var(--text);
  font-family: var(--font);
  font-size: 0.9rem;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
}

/* ── Contact Info ── */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
}

.contact__info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact__icon {
  width: 48px;
  height: 48px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact__info-item h4 {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.contact__info-item p { color: var(--text-muted); font-size: 0.95rem; }

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 300px;
  margin-top: 2rem;
}

.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.8) contrast(1.1); }

/* ── Process Steps ── */
.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.process-step {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
}

.process-step__num {
  font-size: 2rem;
  font-weight: 700;
  color: rgba(212, 175, 106, 0.2);
  line-height: 1;
  margin-bottom: 1rem;
}

.process-step__title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.process-step__desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ── Instagram Section ── */
.instagram-section {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 4rem 0;
  text-align: center;
}

.instagram-section .logo__img {
  display: block;
  margin: 0 auto 1.5rem;
  height: 40px;
  max-width: 240px;
}

.instagram-section__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.instagram-section__title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.instagram-section__desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.instagram-section__handle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
  padding: 0.75rem 1.5rem;
  border: 1px solid rgba(212, 175, 106, 0.3);
  border-radius: 4px;
  transition: var(--transition);
}

.instagram-section__handle:hover {
  background: rgba(212, 175, 106, 0.1);
  color: var(--accent-hover);
}

.instagram-section__placeholder {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-style: italic;
}

/* ── Footer ── */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer__brand img {
  height: 40px;
  max-width: 220px;
  margin-bottom: 1.25rem;
}

.footer__brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 280px;
}

.footer__heading {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-warm);
  margin-bottom: 1.25rem;
}

.footer__links { list-style: none; }
.footer__links li { margin-bottom: 0.6rem; }
.footer__links a { font-size: 0.9rem; color: var(--text-muted); }
.footer__links a:hover { color: var(--text); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ── Page Hero (subpages) ── */
.page-hero {
  padding: calc(var(--header-h) + 4rem) 0 4rem;
  background: linear-gradient(180deg, var(--bg-elevated), var(--bg));
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.page-hero .logo__img {
  display: block;
  margin: 0 auto 1.5rem;
  height: 44px;
  max-width: 280px;
}

.page-hero__title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.page-hero__desc {
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--accent); }

/* ── Service Detail ── */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--border);
}

.service-detail:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.service-detail--reverse { direction: rtl; }
.service-detail--reverse > * { direction: ltr; }

.service-detail__img {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  aspect-ratio: 16 / 10;
  min-height: 440px;
}

.service-detail__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.service-detail__content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-detail__content p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.service-detail__list {
  list-style: none;
  margin: 1.5rem 0;
}

.service-detail__list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.service-detail__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* ── Lightbox ── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8, 9, 12, 0.95);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox.active { display: flex; }

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.25rem;
  transition: var(--transition);
}

.lightbox__close:hover { border-color: var(--accent); color: var(--accent); }

/* ── Toast ── */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--bg-elevated);
  border: 1px solid var(--accent);
  color: var(--text);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-size: 0.9rem;
  z-index: 3000;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s ease;
}

.toast.show { transform: translateY(0); opacity: 1; }

/* ── Text center utility ── */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .partners__grid { grid-template-columns: repeat(3, 1fr); }
  .process__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .menu-toggle { display: flex; }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: rgba(8, 9, 12, 0.98);
    flex-direction: column;
    padding: 2rem;
    transform: translateY(-120%);
    opacity: 0;
    transition: all var(--transition);
    border-bottom: 1px solid var(--border);
  }

  .nav.open { transform: translateY(0); opacity: 1; }

  .nav__list {
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
  }

  .services__grid,
  .gallery__grid { grid-template-columns: 1fr; }

  .gallery__item--portrait {
    grid-row: span 1;
    aspect-ratio: 3 / 4;
    min-height: 420px;
  }
  .about__grid,
  .contact__grid,
  .service-detail,
  .ba-grid,
  .form-grid { grid-template-columns: 1fr; }

  .service-detail--reverse { direction: ltr; }

  .partners__grid { grid-template-columns: repeat(2, 1fr); }

  .stats__grid { grid-template-columns: 1fr 1fr; }

  .footer__grid { grid-template-columns: 1fr; }

  .footer__bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  .hero__arrow { display: none; }

  .cta-banner { padding: 2.5rem 1.5rem; }

  .about__features { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .services__grid,
  .partners__grid,
  .process__grid { grid-template-columns: 1fr; }

  .stats__grid { grid-template-columns: 1fr; }

  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ── SEO Pages ── */
.seo-content {
  max-width: 780px;
  margin: 0 auto;
}

.seo-content h2 {
  font-size: 1.35rem;
  margin: 2.5rem 0 1rem;
  letter-spacing: 0.02em;
}

.seo-content h3 {
  font-size: 1.05rem;
  margin: 1.5rem 0 0.75rem;
  color: var(--accent-warm);
}

.seo-content p,
.seo-content li {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.seo-content ul {
  margin: 0 0 1.5rem 1.25rem;
}

.seo-highlight {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent-warm);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  margin: 2rem 0;
}

.seo-highlight strong { color: var(--text); }

.seo-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 2rem 0;
}

.seo-area {
  padding: 0.55rem 1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: var(--transition);
}

.seo-area:hover,
.seo-area--primary {
  border-color: var(--accent-warm);
  color: var(--text);
}

.seo-area--primary {
  background: rgba(201, 160, 82, 0.08);
}

.seo-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.seo-link-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  transition: var(--transition);
}

.seo-link-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.seo-link-card span {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-warm);
  margin-bottom: 0.35rem;
}

.seo-link-card strong {
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .seo-links { grid-template-columns: 1fr; }
}
