/* =========================================================
   MIR ART GROUP — Yapı Dekorasyon
   Marka renkleri: Kırmızı #F60405 · Grafit #23272B · Gri #717880
   Font: Poppins
   ========================================================= */

:root {
  --ink:        #0E0F11;   /* ana zemin (siyaha yakın) */
  --ink-2:      #15171A;   /* koyu yüzey */
  --graphite:   #23272B;   /* marka grafit */
  --ember:      #F60405;   /* marka kırmızı (tek vurgu) */
  --ember-600:  #d40304;   /* koyu kırmızı (hover) */
  --ash:        #717880;   /* marka gri (ikincil metin) */
  --bone:       #F5F4F2;   /* açık zemin */
  --bone-2:     #ECEAE6;   /* açık yüzey */
  --wa:         #25D366;   /* WhatsApp yeşili */

  --text-on-dark:   #F3F4F5;
  --muted-on-dark:  #9aa0a7;
  --text-on-light:  #1b1d20;
  --muted-on-light: #5d636b;

  --line-dark:  rgba(255,255,255,.10);
  --line-light: rgba(20,22,25,.10);

  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 14px;
  --radius-sm: 10px;

  --ease: cubic-bezier(.22,.61,.36,1);
  --shadow: 0 24px 60px -24px rgba(0,0,0,.55);
  --shadow-light: 0 18px 50px -22px rgba(20,22,25,.28);

  --ff: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

/* ---------- Reset / temel ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  margin: 0;
  font-family: var(--ff);
  font-weight: 400;
  background: var(--ink);
  color: var(--text-on-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1,h2,h3,h4 { margin: 0; line-height: 1.12; font-weight: 600; letter-spacing: -.015em; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--ember); color: #fff; padding: 10px 16px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* focus görünürlüğü */
a:focus-visible, button:focus-visible, summary:focus-visible,
input:focus-visible, select:focus-visible, textarea:focus-visible, [tabindex]:focus-visible {
  outline: 2px solid var(--ember);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Kicker / bölüm başlık deseni ---------- */
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .76rem; font-weight: 500; letter-spacing: .22em; text-transform: uppercase;
  color: var(--ash); margin: 0 0 18px;
}
.kicker__index {
  color: var(--ember); font-weight: 600; letter-spacing: .1em;
}
.kicker::after {
  content: ""; width: 34px; height: 1px; background: currentColor; opacity: .5;
}

/* ---------- Butonlar ---------- */
.btn {
  --btn-bg: var(--ember); --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 26px; border: 1px solid transparent; border-radius: 999px;
  font-weight: 500; font-size: .95rem; letter-spacing: .01em;
  background: var(--btn-bg); color: var(--btn-fg);
  transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn--ember { background: var(--ember); color: #fff; box-shadow: 0 12px 30px -12px rgba(246,4,5,.7); }
.btn--ember:hover { background: var(--ember-600); }
.btn--ghost { background: transparent; color: var(--text-on-dark); border-color: var(--line-dark); }
.btn--ghost:hover { border-color: rgba(255,255,255,.4); background: rgba(255,255,255,.04); }
.btn--wa { background: var(--wa); color: #06381b; font-weight: 600; }
.btn--wa:hover { background: #1fbb59; }
.btn--block { width: 100%; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px; font-weight: 500; color: var(--ember);
}
.link-arrow span { transition: transform .25s var(--ease); }
.link-arrow:hover span { transform: translateX(5px); }

/* =========================================================
   TOPBAR
   ========================================================= */
.topbar {
  background: #000; color: var(--muted-on-dark);
  font-size: .8rem; border-bottom: 1px solid var(--line-dark);
}
.topbar__inner { display: flex; align-items: center; justify-content: space-between; height: 38px; }
.topbar__right { display: flex; align-items: center; gap: 22px; }
.topbar__item { display: inline-flex; align-items: center; gap: 7px; transition: color .2s; }
.topbar__item:hover { color: #fff; }
@media (max-width: 640px) { .topbar__hours { display: none; } .topbar__right { gap: 16px; margin-inline: auto; } }

/* =========================================================
   HEADER
   ========================================================= */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(14,15,17,.72);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line-dark);
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.header.scrolled { background: rgba(10,11,13,.92); }
.header__inner { display: flex; align-items: center; gap: 20px; height: 76px; transition: height .3s var(--ease); }
.header.scrolled .header__inner { height: 64px; }
.header__logo img { height: 34px; width: auto; transition: height .3s var(--ease); }
.header.scrolled .header__logo img { height: 30px; }

.nav { margin-left: auto; display: flex; align-items: center; gap: 30px; }
.nav a { font-size: .92rem; color: var(--muted-on-dark); position: relative; transition: color .2s; padding: 6px 0; white-space: nowrap; }
.nav a:not(.nav__cta)::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 1.5px;
  background: var(--ember); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.nav a:hover { color: #fff; }
.nav a:not(.nav__cta):hover::after { transform: scaleX(1); }
.nav__cta { color: #fff; }

.header__wa { margin-left: 4px; padding: 11px 20px; font-size: .9rem; }

.hamburger { display: none; flex-direction: column; gap: 5px; width: 42px; height: 42px; align-items: center; justify-content: center; background: transparent; border: 1px solid var(--line-dark); border-radius: 10px; margin-left: auto; }
.hamburger span { width: 20px; height: 2px; background: #fff; border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1024px) {
  .header__wa { display: none; }
  .hamburger { display: flex; }
  /* backdrop-filter, fixed alt elemanları header'a hapsediyor -> mobilde kapat */
  .header { backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(12,13,15,.96); }
  .header.scrolled { background: rgba(9,10,12,.98); }
  /* menü açıkken (beyaz panel) kapatma ikonu koyu olsun */
  body.nav-open .hamburger span { background: var(--graphite); }
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(82vw, 340px);
    flex-direction: column; align-items: flex-start; gap: 4px;
    background: #ffffff; border-left: 1px solid var(--line-light);
    padding: 96px 32px 32px; margin: 0;
    transform: translateX(100%); transition: transform .35s var(--ease);
    box-shadow: -22px 0 60px -20px rgba(0,0,0,.45);
  }
  .nav.open { transform: translateX(0); }
  .nav a { font-size: 1.1rem; width: 100%; padding: 14px 2px; color: var(--text-on-light); border-bottom: 1px solid var(--line-light); }
  .nav a:hover { color: var(--ember); }
  .nav a:not(.nav__cta)::after { display: none; }
  .nav__cta { margin-top: 14px; color: #fff; background: var(--ember); width: 100%; text-align: center; padding: 14px; border-radius: 999px; border-bottom: none; }
  body.nav-open { overflow: hidden; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative; isolation: isolate; overflow: hidden;
  min-height: clamp(620px, 92vh, 900px);
  display: flex; align-items: center;
  background: var(--ink);
}
.hero__bg {
  position: absolute; inset: 0; z-index: -3;
  background:
    linear-gradient(180deg, rgba(14,15,17,.62) 0%, rgba(14,15,17,.78) 55%, var(--ink) 100%),
    var(--hero-img, linear-gradient(120deg,#1a1c1f,#0e0f11)) center/cover no-repeat;
  transform: scale(1.04);
}
.hero__grid {
  position: absolute; inset: 0; z-index: -2; opacity: .5;
  background-image:
    linear-gradient(var(--line-dark) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-dark) 1px, transparent 1px);
  background-size: 90px 90px;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 70% 40%, #000 30%, transparent 75%);
  mask-image: radial-gradient(ellipse 80% 70% at 70% 40%, #000 30%, transparent 75%);
}
.hero__watermark {
  position: absolute; z-index: -1; right: -6%; bottom: -12%;
  width: clamp(340px, 46vw, 720px); height: auto;
  opacity: .07; filter: saturate(1.2);
  animation: drawDraw 2.6s var(--ease) forwards;
}
.hero__watermark path { stroke: var(--ember); stroke-width: 3; fill: var(--ember); }

.hero__inner { position: relative; max-width: 880px; padding-block: 60px; }
.hero__kicker { color: var(--ash); }
.hero__title {
  font-size: clamp(2.5rem, 6.4vw, 5rem); font-weight: 600; letter-spacing: -.03em;
  margin-bottom: 24px;
}
.hero__title .accent { color: var(--ember); position: relative; white-space: nowrap; }
.hero__lead {
  font-size: clamp(1.05rem, 1.6vw, 1.28rem); color: var(--muted-on-dark);
  max-width: 620px; margin-bottom: 36px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
.hero__badges { display: flex; flex-wrap: wrap; gap: 22px; color: var(--muted-on-dark); font-size: .92rem; }
.hero__badges li { display: inline-flex; align-items: center; gap: 9px; }
.hero__badges .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--ember); box-shadow: 0 0 0 4px rgba(246,4,5,.16); }

.hero__scroll {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  width: 26px; height: 42px; border: 1.5px solid var(--line-dark); border-radius: 14px;
  display: flex; justify-content: center;
}
.hero__scroll span { width: 3px; height: 9px; background: var(--ember); border-radius: 2px; margin-top: 7px; animation: scrollDot 1.8s var(--ease) infinite; }

@keyframes scrollDot { 0%{transform:translateY(0);opacity:1} 70%{transform:translateY(14px);opacity:0} 100%{opacity:0} }
@keyframes drawDraw {
  0%   { opacity: 0; stroke-dasharray: 4200; stroke-dashoffset: 4200; }
  40%  { opacity: .12; }
  100% { opacity: .07; stroke-dashoffset: 0; }
}

/* =========================================================
   İSTATİSTİK ŞERİDİ
   ========================================================= */
.stats { background: var(--graphite); border-block: 1px solid var(--line-dark); }
.stats__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--line-dark); }
.stat { background: var(--graphite); padding: 42px 16px; text-align: center; }
.stat__num { display: block; font-size: clamp(2.1rem, 3.8vw, 3rem); font-weight: 700; color: #fff; letter-spacing: -.02em; line-height: 1; }
.stat__num--text { color: var(--ember); }
.stat__num--sm { font-size: clamp(1.25rem, 2.2vw, 1.7rem); line-height: 1.15; }
.stat__label { display: block; margin-top: 10px; font-size: .86rem; color: var(--muted-on-dark); letter-spacing: .04em; }
@media (max-width: 860px) { .stats__grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 440px) { .stats__grid { grid-template-columns: 1fr; } }

/* =========================================================
   BÖLÜM TEMELLERİ
   ========================================================= */
.section { padding-block: clamp(72px, 10vw, 130px); position: relative; }
.section--light { background: var(--bone); color: var(--text-on-light); }
.section--dark  { background: var(--ink); color: var(--text-on-dark); }
.section--cta   { background: var(--ink-2); color: var(--text-on-dark); }

.section__head { max-width: 720px; margin-bottom: clamp(40px, 6vw, 68px); }
.section__head--row { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; max-width: none; }
.section__title { font-size: clamp(1.9rem, 3.6vw, 3rem); font-weight: 600; }
.section--light .section__title { color: var(--text-on-light); }
.section__intro { margin-top: 18px; font-size: 1.06rem; color: var(--muted-on-dark); }
.section--light .section__intro { color: var(--muted-on-light); }

/* =========================================================
   HİZMETLER
   ========================================================= */
.services { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card {
  background: #fff; border: 1px solid var(--line-light); border-radius: var(--radius);
  padding: 30px 26px; position: relative; overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.service-card::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--ember);
  transform: scaleY(0); transform-origin: top; transition: transform .35s var(--ease);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-light); border-color: transparent; }
.service-card:hover::before { transform: scaleY(1); }
.service-card__icon {
  width: 52px; height: 52px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(246,4,5,.08); color: var(--ember); margin-bottom: 20px;
}
.service-card__icon svg { width: 26px; height: 26px; }
.service-card h3 { font-size: 1.12rem; margin-bottom: 10px; color: var(--text-on-light); }
.service-card p { font-size: .92rem; color: var(--muted-on-light); }

.service-card--cta {
  background: var(--graphite); color: #fff; display: flex; flex-direction: column; justify-content: center;
}
.service-card--cta::before { display: none; }
.service-card--cta h3 { color: #fff; }
.service-card--cta p { color: var(--muted-on-dark); margin-bottom: 16px; }
.service-card--cta:hover { transform: translateY(-6px); }

@media (max-width: 1040px) { .services { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 540px)  { .services { grid-template-columns: 1fr; } }

/* =========================================================
   SÜREÇ
   ========================================================= */
.process { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; counter-reset: step; }
.process__step { position: relative; padding: 8px 28px 8px 0; border-top: 2px solid var(--line-dark); padding-top: 28px; }
.process__step::after {
  content: ""; position: absolute; top: -7px; left: 0; width: 12px; height: 12px; border-radius: 50%;
  background: var(--ember); box-shadow: 0 0 0 5px rgba(246,4,5,.14);
}
.process__num { font-size: 2.6rem; font-weight: 700; color: rgba(255,255,255,.14); letter-spacing: -.02em; display: block; margin-bottom: 12px; }
.process__step h3 { font-size: 1.18rem; margin-bottom: 10px; }
.process__step p { font-size: .94rem; color: var(--muted-on-dark); }
@media (max-width: 860px) { .process { grid-template-columns: repeat(2,1fr); gap: 36px 24px; } }
@media (max-width: 460px) { .process { grid-template-columns: 1fr; gap: 30px; } }

/* =========================================================
   PROJELER + ÖNCESİ/SONRASI
   ========================================================= */
.ba {
  position: relative; width: 100%; aspect-ratio: 16/9; max-height: 560px;
  border-radius: var(--radius); overflow: hidden; user-select: none;
  margin-bottom: 28px; box-shadow: var(--shadow-light); cursor: ew-resize; background: var(--graphite);
  touch-action: pan-y;
}
.ba__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.ba__before { position: absolute; inset: 0; width: 100%; overflow: hidden; clip-path: inset(0 50% 0 0); will-change: clip-path; }
.ba__handle {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: #fff; transform: translateX(-50%);
  z-index: 3;
}
.ba__line { position: absolute; inset: 0; width: 2px; background: rgba(255,255,255,.9); box-shadow: 0 0 12px rgba(0,0,0,.5); }
.ba__grip {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 46px; height: 46px; border-radius: 50%; background: var(--ember); color: #fff;
  display: grid; place-items: center; box-shadow: 0 8px 22px rgba(0,0,0,.5);
}
.ba__tag {
  position: absolute; bottom: 16px; z-index: 2; font-size: .7rem; font-weight: 600; letter-spacing: .15em;
  padding: 6px 12px; border-radius: 999px; background: rgba(0,0,0,.55); color: #fff; backdrop-filter: blur(4px);
}
.ba__tag--before { left: 16px; }
.ba__tag--after  { right: 16px; }
.ba:focus-within .ba__grip { outline: 2px solid #fff; outline-offset: 2px; }

.portfolio { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.project { position: relative; border-radius: var(--radius); overflow: hidden; background: var(--graphite); }
.project__media { aspect-ratio: 4/3; overflow: hidden; }
.project__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.project:hover .project__media img { transform: scale(1.06); }
.project__body {
  position: absolute; inset: auto 0 0 0; padding: 22px 22px 20px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.82));
}
.project__cat { display: inline-block; font-size: .68rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--ember); margin-bottom: 6px; }
.project__body h3 { font-size: 1.12rem; color: #fff; }
@media (max-width: 900px) { .portfolio { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .portfolio { grid-template-columns: 1fr; } }

/* =========================================================
   INSTAGRAM
   ========================================================= */
.ig-subtitle { font-size: clamp(1.05rem, 1.8vw, 1.35rem); font-weight: 500; color: var(--ash); margin-top: 8px; }
.ig-follow { font-weight: 600; flex-shrink: 0; }
.ig-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.ig-tile { position: relative; aspect-ratio: 1/1; border-radius: var(--radius-sm); overflow: hidden; background: var(--graphite); }
.ig-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease), filter .4s; }
.ig-tile__overlay {
  position: absolute; inset: 0; display: grid; place-items: center;
  background: rgba(14,15,17,.45); opacity: 0; transition: opacity .3s var(--ease);
}
.ig-tile:hover img { transform: scale(1.07); }
.ig-tile:hover .ig-tile__overlay { opacity: 1; }
@media (max-width: 900px) { .ig-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 560px) {
  .ig-grid { grid-template-columns: repeat(2,1fr); }
  .section__head--row { flex-direction: column; align-items: flex-start; gap: 20px; }
}

/* =========================================================
   NEDEN BİZ
   ========================================================= */
.whyus { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(40px, 6vw, 80px); align-items: start; }
.whyus__intro .btn { margin-top: 28px; }
.whyus__list { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 32px; }
.whyus__list li { display: flex; gap: 14px; }
.whyus__ic {
  flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; background: var(--ember); color: #fff;
  display: grid; place-items: center; font-size: .85rem; font-weight: 700; margin-top: 2px;
}
.whyus__list h3 { font-size: 1.04rem; margin-bottom: 6px; color: var(--text-on-light); }
.whyus__list p { font-size: .9rem; color: var(--muted-on-light); }
@media (max-width: 880px) { .whyus { grid-template-columns: 1fr; } }
@media (max-width: 520px) { .whyus__list { grid-template-columns: 1fr; gap: 22px; } }

/* =========================================================
   YORUMLAR
   ========================================================= */
.reviews { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.review {
  background: var(--graphite); border: 1px solid var(--line-dark); border-radius: var(--radius);
  padding: 30px 28px; margin: 0; position: relative;
}
.review__stars { color: var(--ember); letter-spacing: 3px; margin-bottom: 16px; font-size: 1rem; }
.review blockquote { margin: 0 0 22px; font-size: 1rem; color: var(--text-on-dark); }
.review figcaption { display: flex; flex-direction: column; }
.review figcaption strong { color: #fff; font-weight: 600; }
.review figcaption span { font-size: .82rem; color: var(--ash); }
@media (max-width: 900px) { .reviews { grid-template-columns: 1fr; max-width: 560px; } }

/* =========================================================
   S.S.S.
   ========================================================= */
.faq-wrap { max-width: 840px; }
.faq { border-top: 1px solid var(--line-light); }
.faq__item { border-bottom: 1px solid var(--line-light); }
.faq__item summary {
  list-style: none; cursor: pointer; padding: 22px 44px 22px 0; position: relative;
  font-size: 1.08rem; font-weight: 500; color: var(--text-on-light);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  font-size: 1.6rem; font-weight: 400; color: var(--ember); transition: transform .3s var(--ease);
}
.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq__a { padding: 0 44px 24px 0; }
.faq__a p { color: var(--muted-on-light); }
.faq__item[open] summary { color: var(--ember); }

/* =========================================================
   İLETİŞİM
   ========================================================= */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 72px); align-items: start; }
.contact__list { margin: 30px 0; display: grid; gap: 20px; }
.contact__list li { display: flex; gap: 16px; align-items: flex-start; }
.contact__ic { flex-shrink: 0; width: 42px; height: 42px; border-radius: 10px; background: rgba(246,4,5,.1); color: var(--ember); display: grid; place-items: center; }
.contact__label { display: block; font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ash); margin-bottom: 3px; }
.contact__list a:hover { color: var(--ember); }
.contact__wa { margin-top: 4px; }

.contact__form { background: var(--graphite); border: 1px solid var(--line-dark); border-radius: var(--radius); padding: clamp(24px, 3vw, 38px); }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .86rem; color: var(--muted-on-dark); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border-radius: var(--radius-sm);
  background: var(--ink); border: 1px solid var(--line-dark); color: #fff; font-family: inherit; font-size: .95rem;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: #5b626a; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--ember); box-shadow: 0 0 0 3px rgba(246,4,5,.18);
}
.field textarea { resize: vertical; min-height: 96px; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%23717880' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.contact__form-note { margin-top: 14px; font-size: .8rem; color: var(--ash); text-align: center; }
.field--error input, .field--error select, .field--error textarea { border-color: var(--ember); }
.field__msg { display: none; color: var(--ember); font-size: .8rem; margin-top: 6px; }
.field--error .field__msg { display: block; }
@media (max-width: 860px) { .contact { grid-template-columns: 1fr; } }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: #000; color: var(--muted-on-dark); border-top: 1px solid var(--line-dark); padding-top: clamp(56px, 7vw, 84px); }
.footer__inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; }
.footer__logo { height: 36px; width: auto; margin-bottom: 18px; }
.footer__brand p { font-size: .92rem; max-width: 320px; margin-bottom: 18px; }
.footer__ig { display: inline-flex; align-items: center; gap: 9px; color: #fff; font-weight: 500; transition: color .2s; }
.footer__ig:hover { color: var(--ember); }
.footer__col h4 { color: #fff; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 18px; font-weight: 600; }
.footer__col a, .footer__contact span { display: block; font-size: .92rem; padding: 5px 0; transition: color .2s; }
.footer__col a:hover { color: var(--ember); }
.footer__contact span { color: var(--muted-on-dark); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-block: 24px; border-top: 1px solid var(--line-dark); font-size: .82rem; }
.footer__top:hover { color: var(--ember); }
@media (max-width: 860px) { .footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 520px) { .footer__inner { grid-template-columns: 1fr; } .footer__bottom { flex-direction: column; text-align: center; } }

/* =========================================================
   YÜZEN WHATSAPP
   ========================================================= */
.fab-wa {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%; background: var(--wa); color: #fff;
  display: grid; place-items: center; box-shadow: 0 12px 30px -8px rgba(37,211,102,.7);
  transition: transform .25s var(--ease);
  animation: fabPulse 2.6s ease-in-out infinite;
}
.fab-wa:hover { transform: scale(1.08); }
@keyframes fabPulse { 0%,100%{box-shadow:0 12px 30px -8px rgba(37,211,102,.6)} 50%{box-shadow:0 12px 30px -4px rgba(37,211,102,.95)} }
@media (max-width: 520px) { .fab-wa { width: 54px; height: 54px; right: 16px; bottom: 16px; } }

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal:nth-child(2) { transition-delay: .06s; }
.reveal:nth-child(3) { transition-delay: .12s; }
.reveal:nth-child(4) { transition-delay: .18s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }
