/* ============================================
   ATEŞ MOBİL AMBULANS — Premium Editorial
   ============================================ */

:root {
  --paper: #F4F1EA;
  --paper-2: #ECE7DC;
  --paper-3: #E3DED0;
  --ink: #0B0B0C;
  --ink-2: #1A1A1C;
  --ink-3: #2A2A2D;
  --muted: #6B6B70;
  --muted-2: #8E8E94;
  --line: #D7D1C2;
  --line-soft: #E5E0D2;
  --crimson: #B6362C;
  --crimson-2: #8E2A22;
  --gold: #B89968;

  --serif: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'SF Pro Display', system-ui, sans-serif;

  --container: 1240px;
  --container-narrow: 880px;

  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  letter-spacing: -0.005em;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: none; background: none; cursor: pointer; color: inherit; }

::selection { background: var(--ink); color: var(--paper); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
.container--narrow { max-width: var(--container-narrow); }

/* ============================================
   TOP BAR
   ============================================ */
.topbar {
  background: var(--ink);
  color: rgba(255,255,255,0.78);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 36px;
  gap: 16px;
}
.topbar__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 500;
}
.topbar__meta {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: rgba(255,255,255,0.55);
}
.topbar__meta #topbarMail {
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
}
.dot-sep { color: rgba(255,255,255,0.25); }

.dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--crimson);
  display: inline-block;
}
.dot--live {
  background: #3DDC97;
  box-shadow: 0 0 0 4px rgba(61,220,151,0.18);
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(61,220,151,0.6); }
  70% { box-shadow: 0 0 0 9px rgba(61,220,151,0); }
  100% { box-shadow: 0 0 0 0 rgba(61,220,151,0); }
}

/* ============================================
   NAV
   ============================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244,241,234,0.85);
  backdrop-filter: saturate(160%) blur(20px);
  -webkit-backdrop-filter: saturate(160%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color .35s var(--ease), background .35s var(--ease);
}
.nav.is-stuck { border-bottom-color: var(--line-soft); }
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
}
.brand__mark {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--ink);
  color: var(--paper);
  display: grid; place-items: center;
}
.brand--inv { color: var(--paper); }
.brand--inv .brand__mark { background: var(--paper); color: var(--ink); }
.brand__txt { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.brand__name em {
  font-style: normal;
  color: var(--crimson);
  font-weight: 400;
}
.brand__sub {
  margin-top: 4px;
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.brand--inv .brand__sub { color: rgba(255,255,255,0.5); }

.menu {
  display: flex;
  gap: 28px;
  margin: 0 auto;
}
.menu a {
  position: relative;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-3);
  padding: 6px 0;
  letter-spacing: -0.01em;
  transition: color .25s var(--ease);
}
.menu a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--crimson);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .4s var(--ease);
}
.menu a:hover { color: var(--crimson); }
.menu a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.call-mini {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  padding: 8px 0;
  transition: color .2s var(--ease);
}
.call-mini:hover { color: var(--crimson); }
.call-mini svg { color: var(--crimson); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 24px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  position: relative;
  white-space: nowrap;
}
.btn--solid {
  background: var(--ink);
  color: var(--paper);
}
.btn--solid:hover {
  background: var(--crimson);
  transform: translateY(-1px);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--paper);
}
.btn--invert {
  color: var(--paper);
  border-color: rgba(255,255,255,0.4);
}
.btn--invert:hover {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}
.btn--block { width: 100%; }
.btn--wa { background: #25D366; color: #fff; border-color: #25D366; }
.btn--wa:hover { background: #1ebe5a; border-color: #1ebe5a; transform: translateY(-1px); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.burger span {
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  padding: 80px 0 100px;
  display: flex;
  align-items: center;
  color: var(--paper);
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; }
.hero__bg-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 35%;
  transform: scale(1.05);
  filter: saturate(0.85) contrast(1.05);
}
.hero__bg-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11,11,12,0.55) 0%, rgba(11,11,12,0.78) 60%, rgba(11,11,12,0.92) 100%),
    radial-gradient(ellipse at 20% 30%, rgba(182,54,44,0.18), transparent 50%);
}
.grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.4 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.18;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 920px;
}
.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
  font-size: 11.5px;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.75);
}
.kicker {
  font-family: var(--sans);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 500;
}
.kicker__rule {
  width: 36px;
  height: 1px;
  background: var(--crimson);
}
.kicker--inv { color: rgba(255,255,255,0.55); }

.display {
  font-family: var(--serif);
  margin: 0;
  font-size: clamp(56px, 9vw, 132px);
  line-height: 0.96;
  font-weight: 700;
  letter-spacing: -0.045em;
  color: var(--paper);
}
.display em {
  font-style: normal;
  font-weight: 300;
  color: var(--crimson);
}

.display-2 {
  font-family: var(--serif);
  margin: 0;
  font-size: clamp(40px, 6vw, 84px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.035em;
  color: var(--ink);
}
.display-2 em {
  font-style: normal;
  font-weight: 300;
  color: var(--crimson);
}
.display-2--inv { color: var(--paper); }

.display-3 {
  font-family: var(--serif);
  margin: 0 0 20px;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--paper);
}
.display-3 em {
  font-style: normal;
  font-weight: 300;
  color: var(--crimson);
}

.lede {
  margin: 36px 0 0;
  max-width: 560px;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
  font-weight: 400;
}

.hero__actions {
  margin-top: 28px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero__actions .btn--solid { background: var(--paper); color: var(--ink); }
.hero__actions .btn--solid:hover { background: var(--crimson); color: var(--paper); }

.hero__phone {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 0 22px;
  border-top: 1px solid rgba(255,255,255,0.18);
  border-bottom: 1px solid rgba(255,255,255,0.18);
}
.hero__phoneCap {
  font-family: var(--sans);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}
.hero__phoneNum {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--paper);
  transition: color .25s var(--ease);
  line-height: 1.1;
}
.hero__phoneNum svg { color: var(--crimson); flex-shrink: 0; }
.hero__phoneNum:hover { color: var(--crimson); }
.hero__phoneNum:hover svg { color: var(--paper); }

.hero__bullets {
  margin: 56px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 28px 40px;
}
.hero__bullets li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.65);
  font-weight: 400;
}
.hero__bullets li i {
  width: 6px; height: 6px;
  background: var(--crimson);
  border-radius: 50%;
}
.hero__bullets li b {
  color: var(--paper);
  font-weight: 600;
}

.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.55);
  transition: color .25s var(--ease);
}
.hero__scroll:hover { color: var(--paper); }
.hero__scroll svg { animation: bob 2.4s ease-in-out infinite; }
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee {
  background: var(--crimson);
  color: var(--paper);
  overflow: hidden;
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 36px;
  white-space: nowrap;
  animation: scroll 38s linear infinite;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.marquee__track em { font-style: normal; font-weight: 400; }
.m-dot {
  font-size: 14px;
  opacity: 0.7;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: 140px 0;
  position: relative;
}
.section--soft { background: var(--paper-2); }
.section--ink {
  background: var(--ink);
  color: var(--paper);
  position: relative;
}
.section--ink::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0.08 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  pointer-events: none;
}
.section--cta {
  padding: 160px 0;
}

.s-head {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 88px;
}
.s-head--inv .display-2 { color: var(--paper); }
.s-head--center {
  display: block;
  text-align: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.s-head__l { display: flex; flex-direction: column; gap: 18px; }
.s-head__r {
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 460px;
  margin: 0;
  font-weight: 400;
}
.s-head__r--inv { color: rgba(255,255,255,0.6); }

/* ============================================
   SERVICES
   ============================================ */
.services {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.srv {
  display: grid;
  grid-template-columns: 100px 1fr 40px;
  align-items: center;
  gap: 32px;
  padding: 36px 8px;
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: padding-left .5s var(--ease), background .5s var(--ease);
  cursor: pointer;
}
.srv::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--crimson);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .5s var(--ease);
}
.srv:hover {
  padding-left: 28px;
}
.srv:hover::before { transform: scaleY(1); }
.srv__no {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--muted-2);
  letter-spacing: -0.02em;
}
.srv__body h3 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.srv__body p {
  margin: 0;
  color: var(--muted);
  font-size: 15.5px;
  max-width: 600px;
}
.srv__arrow {
  font-size: 22px;
  color: var(--muted-2);
  transition: transform .4s var(--ease), color .4s var(--ease);
  justify-self: end;
}
.srv:hover .srv__arrow {
  transform: translate(6px, -6px);
  color: var(--crimson);
}

/* ============================================
   FEATURE (filo)
   ============================================ */
.feature {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 96px;
  align-items: center;
  margin-bottom: 120px;
  position: relative;
}
.feature:last-child { margin-bottom: 0; }
.feature--rev { grid-template-columns: 0.9fr 1.1fr; }
.feature--rev .feature__img { order: 2; }
.feature--rev .feature__txt { order: 1; }
.feature__img {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 4/5;
  background: var(--ink-2);
}
.feature__img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(11,11,12,0.35));
  pointer-events: none;
}
.feature__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(8%) contrast(1.05);
  transition: transform 1.2s var(--ease-out), filter 1.2s var(--ease-out);
}
.feature:hover .feature__img img {
  transform: scale(1.04);
}
.feature__txt { position: relative; z-index: 1; }
.feature__no {
  display: block;
  margin-bottom: 24px;
  font-size: 12px;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
}
.feature__txt p {
  margin: 0 0 28px;
  color: rgba(255,255,255,0.7);
  font-size: 16.5px;
  line-height: 1.65;
  max-width: 480px;
}
.tick {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.tick li {
  padding: 16px 0 16px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  position: relative;
  color: rgba(255,255,255,0.85);
  font-size: 14.5px;
}
.tick li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 14px; height: 1px;
  background: var(--crimson);
}

/* ============================================
   STEPS
   ============================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.step {
  padding: 44px 36px 44px 0;
  border-right: 1px solid var(--line);
  position: relative;
}
.step:last-child { border-right: none; padding-right: 0; }
.step:not(:first-child) { padding-left: 36px; }
.step__no {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--crimson);
  font-weight: 600;
  display: block;
  margin-bottom: 32px;
}
.step h3 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.step p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 15px;
  max-width: 320px;
}
.step__time {
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 11.5px;
  letter-spacing: 0.08em;
  color: var(--muted-2);
  text-transform: uppercase;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 200px;
  gap: 12px;
}
.g {
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
  background: var(--paper-3);
  position: relative;
}
.g img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-out), filter 1s var(--ease);
  filter: grayscale(15%) contrast(1.04);
}
.g:hover img { transform: scale(1.06); filter: grayscale(0) contrast(1.06); }

.g--1 { grid-column: span 3; grid-row: span 2; }
.g--2 { grid-column: span 3; }
.g--3 { grid-column: span 2; }
.g--4 { grid-column: span 1; }
.g--5 { grid-column: span 3; grid-row: span 2; }
.g--6 { grid-column: span 3; }

/* ============================================
   REGIONS
   ============================================ */
.regions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
}
.region {
  padding: 12px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-3);
  background: transparent;
  transition: border-color .25s var(--ease), color .25s var(--ease), background .25s var(--ease);
  cursor: default;
}
.region:hover {
  border-color: var(--ink);
  color: var(--ink);
  background: var(--paper);
}

/* ============================================
   FAQ
   ============================================ */
.faq { border-top: 1px solid var(--line); }
.faq__item {
  border-bottom: 1px solid var(--line);
  padding: 0;
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--serif);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  transition: color .25s var(--ease);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--crimson); }
.faq__ic {
  position: relative;
  width: 18px; height: 18px;
  flex-shrink: 0;
}
.faq__ic::before, .faq__ic::after {
  content: '';
  position: absolute;
  background: var(--ink);
  transition: transform .35s var(--ease);
}
.faq__ic::before { top: 50%; left: 0; right: 0; height: 1px; transform: translateY(-50%); }
.faq__ic::after { top: 0; bottom: 0; left: 50%; width: 1px; transform: translateX(-50%); }
.faq__item[open] .faq__ic::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq__body {
  padding: 0 0 32px;
  max-width: 720px;
}
.faq__body p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
}
.contact__left { padding-top: 8px; }
.contact__lede {
  margin: 28px 0 48px;
  max-width: 480px;
  color: rgba(255,255,255,0.65);
  font-size: 16px;
  line-height: 1.65;
}
.contact__rows {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.contact__rows li {
  display: grid;
  grid-template-columns: 130px 1fr;
  align-items: start;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.contact__cap {
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  padding-top: 3px;
}
.contact__val {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 600;
  color: var(--paper);
  letter-spacing: -0.02em;
  transition: color .25s var(--ease);
}
a.contact__val:hover { color: var(--crimson); }

.contact__form {
  background: var(--paper);
  color: var(--ink);
  border-radius: 6px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.5);
}
.contact__formTitle {
  margin: 0;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.contact__formSub {
  margin: 0 0 12px;
  font-size: 14.5px;
  color: var(--muted);
}
.field { display: block; }
.field input,
.field textarea {
  width: 100%;
  font: inherit;
  font-size: 15px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper);
  color: var(--ink);
  transition: border-color .2s var(--ease), background .2s var(--ease);
  resize: vertical;
  font-family: inherit;
}
.field textarea { min-height: 96px; }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--ink);
  background: #fff;
}
.contact__form .btn--solid {
  background: var(--ink);
  color: var(--paper);
  margin-top: 8px;
}
.contact__form .btn--solid:hover {
  background: var(--crimson);
  color: var(--paper);
}
.form__note {
  margin: 4px 0 0;
  font-size: 12.5px;
  color: var(--muted-2);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--ink);
  color: var(--paper);
}
.footer__top {
  max-width: var(--container);
  margin: 0 auto;
  padding: 100px 32px 60px;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 80px;
}
.footer__brand p {
  margin-top: 24px;
  color: rgba(255,255,255,0.55);
  font-size: 14.5px;
  max-width: 320px;
  line-height: 1.6;
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer__col h4 {
  margin: 0 0 22px;
  font-family: var(--sans);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  font-weight: 500;
}
.footer__col a {
  display: block;
  padding: 8px 0;
  color: rgba(255,255,255,0.7);
  font-size: 14.5px;
  transition: color .2s var(--ease);
}
.footer__col a:hover { color: var(--crimson); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  font-size: 12.5px;
  color: rgba(255,255,255,0.45);
}
.footer__bottomInner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__meta { color: rgba(255,255,255,0.35); }

/* ============================================
   FAB
   ============================================ */
.fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 40;
}
.fab__wa, .fab__call {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
  box-shadow: 0 16px 36px rgba(0,0,0,0.28);
  transition: transform .25s var(--ease);
  position: relative;
}
.fab__wa { background: #25D366; }
.fab__call { background: var(--crimson); }
.fab__wa:hover, .fab__call:hover { transform: scale(1.08); }
.fab__pulse {
  position: absolute; inset: 0;
  border-radius: 50%;
  background: var(--crimson);
  animation: fabpulse 1.8s ease-out infinite;
  z-index: -1;
}
@keyframes fabpulse {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* ============================================
   REVEAL
   ============================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 1.1s var(--ease), transform 1.1s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .menu { gap: 20px; }
  .feature { gap: 56px; }
  .feature--rev { gap: 56px; }
  .gallery { grid-template-columns: repeat(4, 1fr); }
  .g--1 { grid-column: span 4; grid-row: span 2; }
  .g--2 { grid-column: span 4; }
  .g--3 { grid-column: span 2; }
  .g--4 { grid-column: span 2; }
  .g--5 { grid-column: span 4; grid-row: span 2; }
  .g--6 { grid-column: span 4; }
}

@media (max-width: 900px) {
  .container { padding: 0 22px; }
  .section { padding: 100px 0; }
  .section--cta { padding: 120px 0; }
  .s-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 64px; }
  .feature, .feature--rev { grid-template-columns: 1fr; gap: 32px; margin-bottom: 80px; }
  .feature--rev .feature__img, .feature--rev .feature__txt { order: initial; }
  .steps { grid-template-columns: 1fr; border-top: none; }
  .step { border-right: none; border-bottom: 1px solid var(--line); padding: 32px 0; }
  .step:not(:first-child) { padding-left: 0; }
  .step:last-child { border-bottom: none; }
  .contact { grid-template-columns: 1fr; gap: 56px; }
  .contact__form { padding: 32px; }
  .footer__top { grid-template-columns: 1fr; gap: 56px; padding: 72px 22px 40px; }
  .footer__cols { grid-template-columns: repeat(3, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .g--1, .g--2, .g--5, .g--6 { grid-column: span 2; }
  .g--1, .g--5 { grid-row: span 2; }
  .g--3, .g--4 { grid-column: span 1; }
}

@media (max-width: 700px) {
  .topbar__meta { display: none; }
  .nav__cta { display: none; }
  .menu {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--paper);
    padding: 0 22px;
    border-bottom: 1px solid var(--line);
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s var(--ease);
    margin: 0;
  }
  .menu.is-open { max-height: 420px; padding: 8px 22px 16px; }
  .menu a { padding: 16px 0; border-bottom: 1px solid var(--line-soft); }
  .burger { display: flex; }

  .hero { min-height: auto; padding: 60px 0 80px; }
  .hero__bullets { gap: 18px; }
  .hero__bullets li { font-size: 13px; }
  .hero__scroll { display: none; }
  .marquee__track { font-size: 18px; gap: 24px; }

  .srv { grid-template-columns: 60px 1fr; padding: 24px 0; gap: 18px; }
  .srv:hover { padding-left: 16px; }
  .srv__arrow { display: none; }
  .srv__body h3 { font-size: 22px; }

  .contact__rows li { grid-template-columns: 1fr; gap: 6px; }
  .footer__cols { grid-template-columns: 1fr 1fr; }

  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .g--1, .g--5 { grid-column: span 2; grid-row: span 2; }
  .g--2, .g--6 { grid-column: span 2; }
  .g--3, .g--4 { grid-column: span 1; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .hero__actions .btn { width: 100%; }
  .footer__cols { grid-template-columns: 1fr; }
  .fab { right: 16px; bottom: 16px; }
}