:root {
  --navy: #07182f;
  --navy-2: #0b2748;
  --ink: #142238;
  --muted: #667286;
  --paper: #f3f6fa;
  --card: #ffffff;
  --line: #dbe3ed;
  --hot: #e85d3f;
  --hot-2: #ff8a4b;
  --gold: #ffc46b;
  --shadow: 0 24px 70px rgba(7, 24, 47, .18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
[id] { scroll-margin-top: 6rem; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  letter-spacing: 0;
}

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

.skip-link {
  position: fixed;
  left: 1rem;
  top: -10rem;
  z-index: 100;
  background: var(--hot);
  color: white;
  padding: .75rem 1rem;
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  color: white;
  transition: background .25s ease, box-shadow .25s ease, padding .25s ease;
}
.site-header.is-scrolled {
  background: rgba(7, 24, 47, .94);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .2);
  padding-block: .65rem;
  backdrop-filter: blur(16px);
}
.inner-header {
  background: rgba(7, 24, 47, .96);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  min-width: 0;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--hot), var(--hot-2));
  font-size: 1.7rem;
  font-weight: 900;
}
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.brand strong,
.brand small { display: block; }
.brand strong { font-size: clamp(.95rem, 2vw, 1.08rem); line-height: 1.1; }
.brand small { color: rgba(255,255,255,.72); font-size: .78rem; }

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(.75rem, 2vw, 1.4rem);
  font-weight: 700;
  font-size: .92rem;
}
.main-nav a { color: rgba(255,255,255,.86); }
.main-nav a:hover { color: white; }
.nav-group {
  position: relative;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.nav-group summary {
  list-style: none;
  cursor: pointer;
  color: rgba(255,255,255,.86);
  font-weight: 800;
}
.nav-group summary::-webkit-details-marker { display: none; }
.nav-group summary::after {
  content: "";
  display: inline-block;
  width: .42rem;
  height: .42rem;
  margin-left: .42rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-.12rem) rotate(45deg);
  opacity: .72;
}
.nav-group[open] summary,
.nav-group summary:hover { color: white; }
.nav-menu {
  position: absolute;
  top: calc(100% + .9rem);
  left: 50%;
  z-index: 20;
  min-width: 15rem;
  max-height: min(72vh, 34rem);
  overflow: auto;
  padding: .65rem;
  display: grid;
  gap: .15rem;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: .75rem;
  background: rgba(7,24,47,.98);
  box-shadow: 0 22px 60px rgba(0,0,0,.28);
  transform: translateX(-50%);
}
.nav-group:not([open]) .nav-menu {
  display: none;
}
.nav-menu a {
  padding: .62rem .7rem;
  border-radius: .45rem;
  color: rgba(255,255,255,.82);
}
.nav-menu a:hover {
  color: white;
  background: rgba(255,255,255,.08);
}
.nav-call {
  display: inline-flex;
  align-items: center;
  gap: .48rem;
  padding: .72rem 1rem;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
}
.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: .65rem;
  background: rgba(7,24,47,.5);
}
.nav-toggle span {
  display: block;
  width: 1.15rem;
  height: 2px;
  margin: .25rem auto;
  background: white;
}

.hero {
  position: relative;
  min-height: 94vh;
  overflow: hidden;
  color: white;
  display: grid;
  align-items: end;
}

.subhero {
  min-height: 72vh;
  display: grid;
  align-items: end;
  padding: 8rem clamp(1rem, 4vw, 3rem) 4rem;
  color: white;
  background-size: cover;
  background-position: center;
  position: relative;
  isolation: isolate;
}
.subhero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7,24,47,.96), rgba(7,24,47,.76) 48%, rgba(7,24,47,.24)),
    linear-gradient(0deg, rgba(7,24,47,.92), rgba(7,24,47,0) 58%);
}
.subhero > div {
  width: min(960px, 100%);
}
.subhero h1 {
  max-width: 15ch;
  margin-bottom: 1.2rem;
}
.subhero p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255,255,255,.82);
  font-size: 1.1rem;
}
.subhero .btn { margin-top: 1rem; }
.service-hero { background-image: url("assets/beykoz-celik-kapi-servisi.jpg"); }
.area-hero { background-image: url("assets/beykoz-motorize-rota.jpg"); }
.auto-hero { background-image: url("assets/beykoz-oto-anahtar-servisi.jpg"); }
.safe-hero { background-image: url("assets/beykoz-kasa-akilli-kilit.jpg"); }
.contact-hero { background-image: url("assets/beykoz-motorize-rota.jpg"); }
.emergency-hero { background-image: url("assets/beykoz-acil-kapi-gece.jpg"); }
.steel-hero { background-image: url("assets/beykoz-celik-kapi-donanimi.jpg"); }
.remote-hero { background-image: url("assets/beykoz-kepenk-kumanda-servisi.jpg"); }
.local-route-hero { background-image: url("assets/beykoz-kavacik-pasabahce-rota.jpg"); }
.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}
.hero-media {
  background-image: url("assets/beykoz-cilingir-motorize-hero.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.01);
  transform-origin: center;
}
.hero-shade {
  background:
    linear-gradient(90deg, rgba(7,24,47,.95) 0%, rgba(7,24,47,.78) 38%, rgba(7,24,47,.2) 72%),
    linear-gradient(0deg, rgba(7,24,47,.92) 0%, rgba(7,24,47,0) 52%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 8rem 0 4.2rem;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .45fr);
  gap: 2rem;
  align-items: end;
}
.hero-copy { max-width: 760px; }
.eyebrow {
  margin: 0 0 .85rem;
  color: var(--hot-2);
  font-weight: 900;
  text-transform: uppercase;
  font-size: .78rem;
  letter-spacing: .08em;
}
h1, h2, h3, p { overflow-wrap: anywhere; }
h1 {
  margin: 0;
  font-size: clamp(2.15rem, 5.6vw, 4.85rem);
  line-height: 1;
  max-width: 13ch;
}
h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
  color: var(--navy);
}
h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.25rem;
  line-height: 1.15;
}
.hero-text {
  max-width: 720px;
  margin: 1.35rem 0 0;
  color: rgba(255,255,255,.82);
  font-size: clamp(1rem, 1.6vw, 1.17rem);
}
.hero-text-mobile { display: none; }
.hero-actions,
.final-cta {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  align-items: center;
}
.hero-actions { margin-top: 1.75rem; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 3.25rem;
  padding: .9rem 1.25rem;
  border-radius: .7rem;
  font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn::before,
.nav-call::before,
.sticky-call::before {
  content: "";
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  background: currentColor;
  clip-path: polygon(18% 0, 42% 0, 54% 30%, 42% 42%, 58% 66%, 72% 56%, 100% 72%, 94% 100%, 74% 100%, 46% 86%, 18% 58%, 0 24%, 0 7%);
}
.btn-ghost::before {
  clip-path: polygon(12% 46%, 66% 46%, 48% 28%, 58% 18%, 96% 55%, 58% 92%, 48% 82%, 66% 64%, 12% 64%);
}
.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--hot), var(--hot-2));
  box-shadow: 0 18px 45px rgba(232,93,63,.35);
}
.btn-ghost {
  color: white;
  border: 1px solid rgba(255,255,255,.24);
  background: rgba(255,255,255,.08);
}
.dispatch-card {
  padding: 1.2rem;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: .9rem;
  background: rgba(7,24,47,.58);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}
.dispatch-card strong,
.dispatch-card a { display: block; font-weight: 900; }
.dispatch-card p { color: rgba(255,255,255,.74); margin: .55rem 0 1rem; }
.dispatch-card a { color: var(--gold); }
.pulse {
  display: inline-block;
  width: .7rem;
  height: .7rem;
  margin-right: .45rem;
  border-radius: 50%;
  background: #35e58b;
  box-shadow: 0 0 0 0 rgba(53,229,139,.55);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  70% { box-shadow: 0 0 0 12px rgba(53,229,139,0); }
  100% { box-shadow: 0 0 0 0 rgba(53,229,139,0); }
}

.visual-links {
  width: min(1180px, calc(100% - 2rem));
  margin: -2.8rem auto 0;
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.visual-tile {
  min-height: 24rem;
  position: relative;
  overflow: hidden;
  border-radius: .85rem;
  box-shadow: var(--shadow);
  isolation: isolate;
  display: grid;
  align-content: end;
  padding: 1.1rem;
  color: white;
}
.visual-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(0deg, rgba(7,24,47,.92), rgba(7,24,47,.15) 65%);
}
.visual-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform .55s ease, filter .55s ease;
}
.visual-tile:hover img {
  transform: scale(1.06);
  filter: saturate(1.08);
}
.tile-badge {
  width: max-content;
  padding: .35rem .62rem;
  margin-bottom: .8rem;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, var(--hot), var(--hot-2));
  font-size: .78rem;
  font-weight: 900;
}
.visual-tile strong {
  font-size: 1.22rem;
  line-height: 1.08;
  max-width: 15rem;
}
.visual-tile strong::before {
  content: "";
  display: inline-block;
  width: .72rem;
  height: .72rem;
  margin-right: .45rem;
  border-radius: .15rem .45rem .15rem .45rem;
  background: var(--hot-2);
  box-shadow: 0 0 0 4px rgba(255,138,75,.18);
}
.visual-tile small {
  display: block;
  color: rgba(255,255,255,.74);
  margin-top: .55rem;
}

.trust-strip {
  width: min(1180px, calc(100% - 2rem));
  margin: 1rem auto 0;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-radius: .9rem;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.trust-strip div {
  background: white;
  padding: 1.35rem;
}
.trust-strip span {
  color: var(--hot);
  font-weight: 900;
}
.trust-strip strong {
  display: block;
  margin: .2rem 0;
  color: var(--navy);
  font-size: 1.08rem;
}
.trust-strip p { margin: 0; color: var(--muted); font-size: .95rem; }

.section {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) 0 0;
}
.section-head {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(280px, .9fr);
  gap: clamp(1rem, 5vw, 4rem);
  align-items: end;
  margin-bottom: 2rem;
}
.section-head p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.06rem;
  margin: 0;
}
.section-head.compact {
  display: block;
  max-width: 760px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.service-card {
  min-height: 19rem;
  padding: 1.35rem;
  border-radius: .75rem;
  background: white;
  box-shadow: 0 18px 48px rgba(7,24,47,.08);
  border: 1px solid rgba(219,227,237,.7);
}
.service-card.wide { grid-column: span 2; }
.service-card.accent {
  background: var(--navy);
}
.service-card.accent h3,
.service-card.accent p { color: white; }
.service-card.soft {
  background: linear-gradient(135deg, #fff, #fff3eb);
}
.service-icon {
  display: grid;
  place-items: center;
  width: 2.7rem;
  height: 2.7rem;
  margin-bottom: 1.2rem;
  color: white;
  background: linear-gradient(135deg, var(--hot), var(--hot-2));
  border-radius: .65rem;
  font-weight: 900;
}
.service-icon svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: currentColor;
}
.micro-icon {
  display: inline-grid;
  place-items: center;
  width: 2.55rem;
  height: 2.55rem;
  margin-bottom: .85rem;
  color: white;
  border-radius: .35rem 1rem .35rem 1rem;
  background:
    linear-gradient(135deg, rgba(255,255,255,.16), transparent 36%),
    linear-gradient(135deg, var(--hot), var(--hot-2));
  box-shadow: 0 14px 34px rgba(232,93,63,.22);
}
.micro-icon svg {
  width: 1.3rem;
  height: 1.3rem;
  fill: currentColor;
}
.service-card p { color: var(--muted); margin: .8rem 0 0; }
.service-card h3 {
  display: flex;
  align-items: flex-start;
  gap: .45rem;
}
.service-card h3::after {
  content: "";
  width: .55rem;
  height: .55rem;
  margin-top: .28rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--hot-2);
  box-shadow: 0 0 0 4px rgba(255,138,75,.14);
}
.service-card.accent h3::after { background: var(--gold); }
.service-more,
.area-deep-links {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1rem;
}
.service-more a,
.area-deep-links a {
  padding: .75rem .95rem;
  border: 1px solid var(--line);
  border-radius: .65rem;
  color: var(--navy);
  background: white;
  font-weight: 900;
}
.service-more a:hover,
.area-deep-links a:hover {
  color: white;
  border-color: var(--hot);
  background: var(--hot);
}

.local-proof {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .75fr);
  gap: 2rem;
  align-items: stretch;
}

.split-showcase {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .8fr);
  gap: 1.2rem;
  align-items: stretch;
}
.showcase-image {
  min-height: 31rem;
  overflow: hidden;
  border-radius: .85rem;
  box-shadow: var(--shadow);
}
.showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.showcase-image:hover img { transform: scale(1.04); }
.showcase-copy {
  display: grid;
  align-content: center;
  padding: clamp(1.4rem, 4vw, 2.4rem);
  border-radius: .85rem;
  background: white;
  box-shadow: 0 18px 48px rgba(7,24,47,.08);
}
.showcase-copy p:not(.eyebrow) { color: var(--muted); }
.local-copy {
  padding: clamp(1.4rem, 4vw, 2.4rem);
  background: white;
  border-radius: .75rem;
  box-shadow: var(--shadow);
}
.local-copy p:not(.eyebrow) { color: var(--muted); }
.text-link {
  display: inline-block;
  color: var(--hot);
  font-weight: 900;
  margin-top: .5rem;
}
.route-board {
  display: grid;
  gap: .85rem;
}
.route-board div {
  padding: 1.1rem;
  color: white;
  background: var(--navy);
  border-left: .35rem solid var(--hot-2);
  border-radius: .55rem;
}
.route-board div:nth-child(even) { transform: translateX(1.4rem); background: var(--navy-2); }
.route-board b,
.route-board span { display: block; }
.route-board span { color: rgba(255,255,255,.72); font-size: .92rem; margin-top: .25rem; }

.area-search {
  display: grid;
  gap: .4rem;
  max-width: 460px;
  margin-bottom: 1rem;
  color: var(--navy);
  font-weight: 900;
}
.area-search input {
  min-height: 3.1rem;
  border: 1px solid var(--line);
  border-radius: .65rem;
  padding: .7rem .95rem;
  font: inherit;
  outline-color: var(--hot);
}
.area-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: .55rem;
}
.area-grid button {
  min-height: 2.75rem;
  border: 1px solid var(--line);
  border-radius: .55rem;
  color: var(--navy);
  background: white;
  font-weight: 800;
  cursor: pointer;
}
.area-grid button.is-hidden { display: none; }
.area-grid button:hover,
.area-grid button.is-active {
  color: white;
  background: var(--hot);
  border-color: var(--hot);
}

.seo-cluster {
  position: relative;
}

.intent-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .85rem;
}

.intent-grid article {
  min-height: 16rem;
  padding: 1rem;
  border: 1px solid rgba(7,24,47,.12);
  border-radius: .35rem 1.4rem .35rem 1.4rem;
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(232,244,255,.84)),
    repeating-linear-gradient(135deg, transparent 0 18px, rgba(7,24,47,.035) 18px 19px);
  box-shadow: 0 18px 48px rgba(7,24,47,.08);
}

.intent-grid h2,
.intent-grid h3 {
  margin-bottom: .7rem;
  font-size: 1.25rem;
  line-height: 1.15;
  color: var(--navy);
}

.intent-grid p,
.coverage-text {
  color: var(--muted);
}

.intent-grid a {
  color: var(--hot);
  font-weight: 950;
  border-bottom: 1px solid rgba(232,93,63,.35);
}

.coverage-text {
  max-width: 980px;
  margin: -1rem 0 1.3rem;
  padding: 1rem;
  border-left: .35rem solid var(--hot);
  background: rgba(255,255,255,.78);
  border-radius: .35rem 1.2rem .35rem 1.2rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.process-grid article {
  padding: 1.2rem;
  background: white;
  border-radius: .75rem;
  border-top: .35rem solid var(--hot-2);
  overflow: hidden;
}
.process-grid span {
  display: inline-grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  color: white;
  background: var(--navy);
  font-weight: 900;
}
.process-grid p { color: var(--muted); margin-bottom: 0; }

.detail-grid,
.mini-grid,
.contact-grid,
.neighborhood-stories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.detail-card,
.mini-grid article,
.contact-grid article,
.neighborhood-stories article {
  padding: 1.25rem;
  border-radius: .85rem;
  background: white;
  box-shadow: 0 18px 48px rgba(7,24,47,.08);
  border: 1px solid rgba(219,227,237,.8);
}
.detail-card {
  min-height: 23rem;
}
.detail-card h2,
.mini-grid h2,
.contact-grid h2,
.neighborhood-stories h2 {
  font-size: 1.35rem;
  line-height: 1.1;
}
.detail-card p,
.mini-grid p,
.contact-grid p,
.neighborhood-stories p {
  color: var(--muted);
}
.neighborhood-stories article:nth-child(1),
.neighborhood-stories article:nth-child(6) {
  grid-column: span 2;
  background: linear-gradient(135deg, white, #eef5ff);
}
.big-phone {
  color: var(--hot);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 950;
}

.story-panel {
  min-height: 28rem;
  display: grid;
  align-content: center;
  padding: clamp(1.4rem, 5vw, 3rem);
  border-radius: .75rem;
  color: white;
  background:
    linear-gradient(135deg, rgba(7,24,47,.96), rgba(11,39,72,.88)),
    radial-gradient(circle at 80% 20%, rgba(232,93,63,.45), transparent 28%);
  overflow: hidden;
}
.story-panel h2 { color: white; max-width: 840px; }
.story-panel p:not(.eyebrow) { max-width: 900px; color: rgba(255,255,255,.78); }

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .85rem;
}
.faq-list details {
  background: white;
  border: 1px solid var(--line);
  border-radius: .7rem;
  padding: 1rem 1.1rem;
}
.faq-list summary {
  cursor: pointer;
  color: var(--navy);
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.faq-list summary::before {
  content: "?";
  display: inline-grid;
  place-items: center;
  width: 1.45rem;
  height: 1.45rem;
  flex: 0 0 auto;
  color: white;
  border-radius: .3rem .75rem .3rem .75rem;
  background: linear-gradient(135deg, var(--hot), var(--hot-2));
  font-size: .82rem;
  font-weight: 950;
}
.faq-list details p { color: var(--muted); margin-bottom: 0; }

.final-cta {
  width: min(1180px, calc(100% - 2rem));
  margin: clamp(4rem, 8vw, 7rem) auto 0;
  justify-content: space-between;
  padding: clamp(1.4rem, 4vw, 2.3rem);
  background: white;
  border-radius: .75rem;
  box-shadow: var(--shadow);
}
.final-cta div { max-width: 720px; }
.final-cta h2 { font-size: clamp(1.9rem, 3vw, 3rem); }
.final-cta p:not(.eyebrow) { color: var(--muted); margin-bottom: 0; }

.site-footer {
  margin-top: 4rem;
  padding: clamp(2rem, 5vw, 3.2rem) clamp(1rem, 4vw, 3rem) 6rem;
  color: rgba(255,255,255,.72);
  background:
    linear-gradient(135deg, rgba(232,93,63,.18), transparent 34%),
    linear-gradient(180deg, #07182f, #030b16);
}
.footer-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, .95fr) minmax(0, 1.35fr);
  gap: clamp(1.4rem, 4vw, 3rem);
}
.footer-brand strong,
.footer-title,
.site-footer a {
  color: white;
  font-weight: 900;
}
.footer-brand p {
  max-width: 560px;
  margin: .55rem 0 0;
}
.footer-actions {
  display: grid;
  gap: .7rem;
  margin-top: 1.3rem;
}
.footer-action {
  display: grid;
  grid-template-columns: 2.55rem 1fr;
  gap: .75rem;
  align-items: center;
  padding: .78rem;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: .35rem 1.2rem .35rem 1.2rem;
  background: rgba(255,255,255,.055);
}
.footer-action span:last-child {
  display: grid;
  gap: .1rem;
}
.footer-action small {
  color: rgba(255,255,255,.56);
  font-weight: 800;
}
.footer-icon {
  display: grid;
  place-items: center;
  width: 2.55rem;
  height: 2.55rem;
  color: white;
  border-radius: .3rem 1rem .3rem 1rem;
  background: linear-gradient(135deg, var(--hot), var(--hot-2));
  box-shadow: 0 12px 30px rgba(232,93,63,.26);
}
.footer-icon svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: currentColor;
}
.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.footer-title {
  display: flex;
  align-items: center;
  gap: .45rem;
  margin-bottom: .75rem;
  font-size: .9rem;
  text-transform: uppercase;
}
.footer-title::before {
  content: "";
  width: .62rem;
  height: .62rem;
  border-radius: .16rem .42rem .16rem .42rem;
  background: var(--hot-2);
}
.footer-links {
  display: grid;
  gap: .46rem;
}
.footer-links a {
  color: rgba(255,255,255,.76);
  font-size: .92rem;
  font-weight: 800;
}
.footer-links a::before {
  content: "";
  display: inline-block;
  width: .42rem;
  height: .42rem;
  margin-right: .45rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-.05rem) rotate(-45deg);
  opacity: .58;
}
.footer-links a:hover { color: white; }
.footer-bottom {
  width: min(1180px, 100%);
  margin: 2rem auto 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  justify-content: space-between;
  color: rgba(255,255,255,.56);
  font-size: .86rem;
}

.sticky-call {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  z-index: 80;
  display: none;
  width: min(92vw, 520px);
  min-height: 3.55rem;
  align-items: center;
  justify-content: center;
  color: white;
  background: linear-gradient(135deg, var(--hot), var(--hot-2));
  border-radius: .8rem;
  font-weight: 950;
  box-shadow: 0 18px 45px rgba(232,93,63,.42);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}
.visual-tile.reveal,
.service-card.reveal,
.route-card.reveal,
.region-card.reveal,
.intent-grid article.reveal,
.detail-card.reveal,
.neighborhood-stories article.reveal,
.faq-list details.reveal {
  opacity: 1;
  transform: none;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: calc(100% + .5rem);
    right: 1rem;
    left: 1rem;
    display: none;
    padding: 1rem;
    border-radius: .85rem;
    background: rgba(7,24,47,.98);
    box-shadow: var(--shadow);
  }
  .main-nav.is-open { display: grid; }
  .nav-group,
  .nav-menu {
    position: static;
    transform: none;
  }
  .nav-group {
    padding: .35rem 0;
  }
  .nav-menu {
    margin-top: .55rem;
    min-width: 0;
    max-height: 18rem;
    background: rgba(255,255,255,.06);
    box-shadow: none;
  }
  .hero-inner,
  .section-head,
  .local-proof,
  .split-showcase {
    grid-template-columns: 1fr;
  }
  h1 { max-width: 11.8ch; }
  .dispatch-card { max-width: 520px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .visual-links { grid-template-columns: 1fr 1fr; }
  .area-grid { grid-template-columns: repeat(3, 1fr); }
  .process-grid,
  .detail-grid,
  .mini-grid,
  .contact-grid,
  .neighborhood-stories,
  .intent-grid,
  .trust-strip,
  .faq-list { grid-template-columns: 1fr 1fr; }
  .neighborhood-stories article:nth-child(1),
  .neighborhood-stories article:nth-child(6) { grid-column: auto; }
}

@media (max-width: 680px) {
  .site-header { padding: .75rem 1rem; }
  .brand-mark { width: 2.35rem; height: 2.35rem; }
  .brand small { display: none; }
  .hero { min-height: 100svh; }
  .hero-media { background-position: 63% center; }
  .hero-shade {
    background:
      linear-gradient(90deg, rgba(7,24,47,.96) 0%, rgba(7,24,47,.82) 58%, rgba(7,24,47,.38) 100%),
      linear-gradient(0deg, rgba(7,24,47,.95) 0%, rgba(7,24,47,0) 55%);
  }
  .hero-inner { padding: 6.5rem 0 5.8rem; }
  h1 { font-size: clamp(2rem, 10.5vw, 3.25rem); }
  .hero-actions .btn { width: 100%; }
  .hero-actions .btn-primary { display: none; }
  .dispatch-card { display: none; }
  .trust-strip,
  .visual-links,
  .service-grid,
  .process-grid,
  .detail-grid,
  .mini-grid,
  .contact-grid,
  .neighborhood-stories,
  .intent-grid,
  .faq-list {
    grid-template-columns: 1fr;
  }
  .visual-links { margin-top: -1.8rem; }
  .visual-tile { min-height: 18rem; }
  .subhero {
    min-height: 88svh;
    padding: 6.5rem 1rem 5.8rem;
  }
  .subhero h1 { font-size: clamp(2rem, 9.5vw, 3.15rem); }
  .showcase-image { min-height: 19rem; }
  .service-card,
  .service-card.wide { grid-column: auto; min-height: auto; }
  .route-board div:nth-child(even) { transform: none; }
  .area-grid { grid-template-columns: repeat(2, 1fr); }
  .final-cta { align-items: stretch; }
  .final-cta .btn { width: 100%; }
  .site-footer {
    display: grid;
    grid-template-columns: 1fr;
    padding-bottom: 6.7rem;
  }
  .footer-shell,
  .footer-columns {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    display: grid;
    justify-content: start;
  }
  .sticky-call { display: flex; }
}

/* Bespoke Beykoz operations interface */
body {
  background:
    linear-gradient(90deg, rgba(7,24,47,.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(7,24,47,.045) 1px, transparent 1px),
    radial-gradient(circle at 12% 8%, rgba(232,93,63,.12), transparent 24rem),
    #f3f6fa;
  background-size: 42px 42px, 42px 42px, auto, auto;
}

.brand-mark {
  width: 3.35rem;
  height: 2.55rem;
  border-radius: .35rem 1rem .35rem 1rem;
  background: transparent;
  transform: none;
  box-shadow: none;
  overflow: visible;
}

.nav-call,
.btn,
.sticky-call {
  border-radius: .35rem 1.15rem .35rem 1.15rem;
}

.hero {
  min-height: 100vh;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 8.5rem;
  z-index: 1;
  background:
    linear-gradient(0deg, rgba(243,246,250,.94) 0%, rgba(243,246,250,.58) 34%, rgba(7,24,47,.18) 68%, transparent 100%),
    linear-gradient(90deg, rgba(7,24,47,.42), rgba(7,24,47,.08) 50%, rgba(7,24,47,.36));
  pointer-events: none;
}

.hero-media {
  inset: -2%;
  transform: scale(1);
  filter: saturate(.92) contrast(1.08);
}

.hero:hover .hero-media {
  transform: scale(1.015) translate(calc(var(--mx, 0) * -6px), calc(var(--my, 0) * -5px));
}

.hero:hover .command-panel {
  transform: translate(calc(var(--mx, 0) * 8px), calc(var(--my, 0) * 6px));
}

.command-panel {
  transition: transform .25s ease;
}

.hero-shade {
  background:
    linear-gradient(115deg, rgba(3,11,22,.98) 0%, rgba(7,24,47,.9) 42%, rgba(7,24,47,.16) 76%),
    repeating-linear-gradient(105deg, rgba(255,255,255,.05) 0 1px, transparent 1px 22px),
    linear-gradient(0deg, rgba(7,24,47,.94) 0%, rgba(7,24,47,0) 56%);
}

.hero-inner {
  width: min(1240px, calc(100% - 2rem));
  grid-template-columns: minmax(0, .95fr) minmax(360px, .62fr);
  gap: clamp(1.2rem, 4vw, 4rem);
}

.hero-copy {
  position: relative;
}

.hero-copy::before {
  content: "BEYKOZ / LOCK / RESPONSE";
  display: block;
  width: max-content;
  max-width: 100%;
  margin-bottom: 1rem;
  padding: .45rem .7rem;
  color: rgba(255,255,255,.68);
  border: 1px solid rgba(255,255,255,.18);
  border-left: .35rem solid var(--hot-2);
  font-size: .72rem;
  font-weight: 950;
}

.hero h1 {
  font-size: clamp(2.2rem, 5.2vw, 4.75rem);
  line-height: .96;
  max-width: 13ch;
  text-wrap: balance;
}

.dispatch-card.command-panel {
  min-height: 34rem;
  padding: 0;
  border-radius: .55rem 2rem .55rem 2rem;
  background:
    linear-gradient(145deg, rgba(255,255,255,.12), transparent 36%),
    rgba(3,11,22,.76);
  overflow: hidden;
}

.command-top,
.command-panel p,
.command-panel > a {
  margin: 1.05rem;
}

.command-top {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .2rem .55rem;
  align-items: center;
}

.command-top small {
  grid-column: 2;
  color: rgba(255,255,255,.58);
  font-weight: 800;
}

.route-map {
  position: relative;
  min-height: 17rem;
  margin: 1rem;
  border: 1px solid rgba(255,255,255,.12);
  background:
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,.05) 1px, transparent 1px),
    radial-gradient(circle at 18% 70%, rgba(232,93,63,.35), transparent 6rem),
    radial-gradient(circle at 78% 34%, rgba(255,196,107,.16), transparent 7rem),
    rgba(7,24,47,.54);
  background-size: 32px 32px, 32px 32px, auto, auto, auto;
  border-radius: .35rem 1.4rem .35rem 1.4rem;
  overflow: hidden;
}

.route-map::before {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px dashed rgba(255,255,255,.16);
  transform: skewY(-10deg);
}

.route-line {
  position: absolute;
  height: 2px;
  transform-origin: left center;
  background: linear-gradient(90deg, transparent, var(--hot-2), transparent);
  animation: routePulse 2.8s linear infinite;
}

.route-line-a {
  width: 64%;
  left: 18%;
  top: 64%;
  transform: rotate(-24deg);
}

.route-line-b {
  width: 44%;
  left: 42%;
  top: 47%;
  transform: rotate(32deg);
  animation-delay: .8s;
}

.route-node {
  position: absolute;
  left: var(--x);
  top: var(--y);
  min-width: .72rem;
  height: .72rem;
  padding-left: .9rem;
  border-radius: 50%;
  background: #e8f4ff;
  box-shadow: 0 0 0 6px rgba(232,244,255,.12);
}

.route-node b {
  position: absolute;
  left: .9rem;
  top: -.55rem;
  padding: .18rem .38rem;
  color: white;
  background: rgba(3,11,22,.72);
  border: 1px solid rgba(255,255,255,.12);
  font-size: .68rem;
  white-space: nowrap;
}

.node-hot {
  background: var(--hot-2);
  box-shadow: 0 0 0 7px rgba(255,138,75,.2), 0 0 22px rgba(255,138,75,.72);
}

.command-readout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.command-readout span {
  padding: .85rem .65rem;
  border-right: 1px solid rgba(255,255,255,.12);
}

.command-readout span:last-child {
  border-right: 0;
}

.command-readout b,
.command-readout small {
  display: block;
}

.command-readout b {
  color: white;
  font-size: 1.45rem;
  line-height: 1;
}

.command-readout small {
  color: rgba(255,255,255,.58);
  font-weight: 800;
}

@keyframes routePulse {
  0% { opacity: .25; filter: brightness(.8); }
  50% { opacity: 1; filter: brightness(1.35); }
  100% { opacity: .25; filter: brightness(.8); }
}

.signal-strip {
  position: relative;
  z-index: 4;
  width: min(1240px, calc(100% - 2rem));
  margin: -2.25rem auto 1.2rem;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: .35rem 1.4rem .35rem 1.4rem;
  background:
    linear-gradient(135deg, rgba(7,24,47,.92), rgba(11,39,72,.82)),
    rgba(7,24,47,.86);
  box-shadow: 0 22px 56px rgba(7,24,47,.28);
}

.signal-marquee {
  display: flex;
  width: max-content;
  gap: .65rem;
  padding: .75rem;
  animation: signalMove 26s linear infinite;
}

.signal-marquee span {
  padding: .45rem .75rem;
  color: white;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
  border-radius: .3rem .9rem .3rem .9rem;
  font-size: .78rem;
  font-weight: 950;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1);
}

@keyframes signalMove {
  from { transform: translateX(0); }
  to { transform: translateX(-38%); }
}

.visual-links {
  width: min(1180px, calc(100% - 2rem));
  margin-top: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: .75rem;
  transform: none;
}

.visual-tile {
  border-radius: .35rem 1.6rem .35rem 1.6rem;
  min-height: 23rem;
  height: 100%;
  transform: none;
}

.visual-tile:nth-child(2) {
  min-height: 23rem;
  margin-top: 0;
}

.visual-tile:nth-child(3) {
  min-height: 23rem;
  margin-top: 0;
}

.visual-tile:nth-child(4) {
  min-height: 23rem;
  margin-top: 0;
}

.visual-tile:nth-child(5) {
  min-height: 23rem;
  margin-top: 0;
}

.ops-section {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(360px, 1fr);
  gap: 1rem;
  align-items: stretch;
}

.ops-copy {
  padding: clamp(1.4rem, 4vw, 2.4rem);
  color: white;
  border-radius: .4rem 2rem .4rem 2rem;
  background:
    linear-gradient(135deg, rgba(232,93,63,.28), transparent 38%),
    linear-gradient(135deg, #07182f, #030b16);
  box-shadow: var(--shadow);
}

.ops-copy h2 {
  color: white;
}

.ops-copy p:not(.eyebrow) {
  color: rgba(255,255,255,.74);
}

.ops-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
}

.ops-grid article {
  min-height: 11rem;
  padding: 1rem;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(7,24,47,.12);
  border-radius: 1.4rem .35rem 1.4rem .35rem;
  background:
    linear-gradient(135deg, rgba(255,255,255,.92), rgba(232,244,255,.84)),
    repeating-linear-gradient(135deg, transparent 0 18px, rgba(7,24,47,.045) 18px 19px);
  box-shadow: 0 18px 48px rgba(7,24,47,.08);
}

.ops-grid article::after {
  content: "";
  position: absolute;
  right: -1.8rem;
  bottom: -1.8rem;
  width: 5.4rem;
  height: 5.4rem;
  border: 1px solid rgba(232,93,63,.24);
  border-radius: 50%;
}

.ops-grid span,
.ops-grid b,
.ops-grid small {
  display: block;
}

.ops-grid span {
  color: var(--hot);
  font-weight: 950;
  font-size: .82rem;
}

.ops-grid b {
  margin-top: 1.8rem;
  color: var(--navy);
  font-size: 1.22rem;
  line-height: 1.1;
}

.ops-grid small {
  margin-top: .4rem;
  color: var(--muted);
  font-weight: 750;
}

.trust-strip {
  border-radius: 1.6rem .35rem 1.6rem .35rem;
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
}

.service-card {
  border-radius: .35rem 1.4rem .35rem 1.4rem;
  min-height: 23rem;
  height: 100%;
}

.service-card.wide {
  grid-column: auto;
}

.service-card:nth-child(even) {
  transform: none;
}

.local-copy,
.showcase-copy,
.story-panel,
.final-cta {
  border-radius: .35rem 1.8rem .35rem 1.8rem;
}

.route-board div {
  border-radius: 1.2rem .35rem 1.2rem .35rem;
}

.area-grid {
  padding: .7rem;
  border: 1px solid var(--line);
  border-radius: .35rem 1.4rem .35rem 1.4rem;
  background: rgba(255,255,255,.7);
}

.area-grid button {
  border-radius: .25rem .85rem .25rem .85rem;
}

@media (max-width: 980px) {
  .hero-inner,
  .ops-section {
    grid-template-columns: 1fr;
  }

  .visual-links {
    grid-template-columns: 1fr 1fr;
    transform: none;
  }

  .visual-tile,
  .visual-tile:nth-child(2),
  .visual-tile:nth-child(3),
  .visual-tile:nth-child(4),
  .visual-tile:nth-child(5) {
    min-height: 20rem;
    margin-top: 0;
    transform: none;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card:nth-child(even) {
    transform: none;
  }
}

@media (min-width: 981px) and (max-height: 820px) {
  .hero {
    min-height: 100vh;
  }

  .hero-inner {
    padding-top: 5.6rem;
    padding-bottom: 2.2rem;
    align-items: center;
  }

  .hero h1 {
    font-size: clamp(2.15rem, 4.75vw, 4.1rem);
    max-width: 13ch;
  }

  .hero-text {
    margin-top: .85rem;
    font-size: .98rem;
    line-height: 1.5;
  }

  .hero-actions {
    margin-top: 1rem;
  }

  .dispatch-card.command-panel {
    min-height: 27rem;
  }

  .route-map {
    min-height: 12.4rem;
  }

  .command-readout b {
    font-size: 1.12rem;
  }
}

@media (min-width: 981px) and (max-height: 820px) {
  .hero-inner {
    padding-top: 6.4rem;
    padding-bottom: 5.4rem;
    align-items: center;
  }

  .hero h1 {
    font-size: clamp(2.15rem, 4.9vw, 4.25rem);
  }

  .hero-text {
    font-size: 1rem;
    margin-top: 1rem;
  }

  .dispatch-card.command-panel {
    min-height: 28rem;
  }

  .route-map {
    min-height: 13rem;
  }

  .command-readout b {
    font-size: 1.2rem;
  }
}

@media (max-width: 680px) {
  .hero {
    min-height: 100svh;
  }

  .hero-copy::before {
    font-size: .64rem;
  }

  .hero h1 {
    font-size: clamp(2rem, 10.5vw, 3.25rem);
    max-width: 12.5ch;
  }

  .signal-strip {
    margin-top: .75rem;
    border-radius: .35rem 1rem .35rem 1rem;
  }

  .visual-links,
  .ops-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .visual-links {
    margin-top: 1rem;
  }

  .ops-grid article {
    min-height: auto;
  }

  .brand-mark {
    width: 2.7rem;
    height: 2.1rem;
    box-shadow: 6px 6px 0 rgba(255,255,255,.08);
  }
}

/* Final design audit refinements */
.subhero h1 {
  font-size: clamp(2.3rem, 4.85vw, 4.85rem);
  line-height: 1;
  max-width: 14.5ch;
}

.subhero {
  min-height: min(76vh, 720px);
}

.signal-strip {
  contain: paint;
}

@media (min-width: 981px) and (max-height: 820px) {
  .hero-inner {
    padding-top: 6rem;
    padding-bottom: 4.4rem;
  }

  .hero h1 {
    font-size: clamp(2.15rem, 4.55vw, 4.05rem);
  }
}

@media (max-width: 680px) {
  .hero {
    min-height: 100svh;
  }

  .hero-inner {
    padding-top: 6rem;
    padding-bottom: 5.2rem;
  }

  .hero h1 {
    font-size: clamp(2rem, 9.7vw, 3.05rem);
    line-height: 1.03;
    max-width: 13ch;
  }

  .hero-text {
    font-size: .98rem;
    line-height: 1.55;
  }

  .subhero {
    min-height: 82svh;
    padding: 6.2rem 1rem 4.6rem;
  }

  .subhero h1 {
    font-size: clamp(2rem, 8.8vw, 2.9rem);
    line-height: 1.04;
    max-width: 12.5ch;
  }

  .subhero p:not(.eyebrow) {
    font-size: 1rem;
    line-height: 1.55;
  }

  .subhero .btn {
    display: none;
  }

  .service-card,
  .service-card.wide {
    min-height: 0;
    height: auto;
    padding: 1.2rem;
  }

  .visual-tile,
  .visual-tile:nth-child(2),
  .visual-tile:nth-child(3),
  .visual-tile:nth-child(4),
  .visual-tile:nth-child(5) {
    min-height: 18.5rem;
  }

  .signal-marquee {
    gap: .45rem;
    padding: .55rem;
  }

  .signal-marquee span {
    font-size: .68rem;
    padding: .38rem .56rem;
  }

  .footer-action {
    grid-template-columns: 2.25rem 1fr;
  }

  .footer-icon {
    width: 2.25rem;
    height: 2.25rem;
  }
}

/* Rich content cards for SEO sections */
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: flex-end;
}

.btn-whatsapp {
  color: white;
  background: linear-gradient(135deg, #178f57, #25d366);
  box-shadow: 0 18px 45px rgba(37,211,102,.26);
}

.btn-whatsapp::before {
  border-radius: 50%;
  clip-path: none;
}

.btn-location {
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--line);
}

.btn-location::before {
  clip-path: polygon(50% 0, 72% 8%, 88% 26%, 94% 48%, 88% 70%, 50% 100%, 12% 70%, 6% 48%, 12% 26%, 28% 8%);
}

.intent-grid article,
.detail-card,
.neighborhood-stories article {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.intent-grid article {
  min-height: 17.5rem;
  padding-top: 5.9rem;
}

.intent-grid article::before,
.detail-card::before,
.neighborhood-stories article::before {
  position: absolute;
  z-index: 2;
  left: 1rem;
  top: 1rem;
  display: grid;
  place-items: center;
  min-width: 2.4rem;
  height: 2.4rem;
  padding: 0 .55rem;
  color: white;
  border-radius: .32rem 1rem .32rem 1rem;
  background: linear-gradient(135deg, var(--hot), var(--hot-2));
  box-shadow: 0 12px 28px rgba(232,93,63,.24);
  font-size: .76rem;
  font-weight: 950;
}

.intent-grid article::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 0 auto;
  height: 4.8rem;
  background:
    linear-gradient(90deg, rgba(7,24,47,.78), rgba(7,24,47,.12)),
    var(--card-art, url("assets/beykoz-motorize-rota.jpg")) center / cover;
  opacity: .88;
}

.intent-grid article:nth-child(1) { --card-art: url("assets/beykoz-acil-kapi-gece.jpg"); }
.intent-grid article:nth-child(2) { --card-art: url("assets/beykoz-oto-anahtar-servisi.jpg"); }
.intent-grid article:nth-child(3) { --card-art: url("assets/beykoz-kasa-akilli-kilit.jpg"); }
.intent-grid article:nth-child(4) { --card-art: url("assets/beykoz-kavacik-pasabahce-rota.jpg"); }
.intent-grid article:nth-child(5) { --card-art: url("assets/beykoz-kepenk-kumanda-servisi.jpg"); }
.intent-grid article:nth-child(6) { --card-art: url("assets/beykoz-celik-kapi-donanimi.jpg"); }
.intent-grid article:nth-child(7) { --card-art: url("assets/beykoz-celik-kapi-servisi.jpg"); }
.intent-grid article:nth-child(8) { --card-art: url("assets/beykoz-oto-anahtar-servisi.jpg"); }

.intent-grid article:nth-child(1)::before { content: "KAPI"; }
.intent-grid article:nth-child(2)::before { content: "OTO"; }
.intent-grid article:nth-child(3)::before { content: "KASA"; }
.intent-grid article:nth-child(4)::before { content: "ROTA"; }
.intent-grid article:nth-child(5)::before { content: "GAR"; }
.intent-grid article:nth-child(6)::before { content: "SAH"; }
.intent-grid article:nth-child(7)::before { content: "APT"; }
.intent-grid article:nth-child(8)::before { content: "OTO"; }

.detail-card {
  padding-bottom: 7.2rem;
}

.detail-card::before {
  top: auto;
  bottom: 1rem;
}

.detail-card::after,
.neighborhood-stories article::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 5.8rem;
  background:
    linear-gradient(0deg, rgba(7,24,47,.82), rgba(7,24,47,.08)),
    var(--story-art, url("assets/beykoz-kavacik-pasabahce-rota.jpg")) center / cover;
  opacity: .9;
}

.detail-card > *,
.neighborhood-stories article > * {
  position: relative;
  z-index: 1;
}

.detail-card:nth-child(1),
.neighborhood-stories article:nth-child(1) { --story-art: url("assets/beykoz-kavacik-pasabahce-rota.jpg"); }
.detail-card:nth-child(2),
.neighborhood-stories article:nth-child(2) { --story-art: url("assets/beykoz-oto-anahtar-servisi.jpg"); }
.detail-card:nth-child(3),
.neighborhood-stories article:nth-child(3) { --story-art: url("assets/beykoz-kasa-akilli-kilit.jpg"); }
.detail-card:nth-child(4),
.neighborhood-stories article:nth-child(4) { --story-art: url("assets/beykoz-celik-kapi-donanimi.jpg"); }
.detail-card:nth-child(5),
.neighborhood-stories article:nth-child(5) { --story-art: url("assets/beykoz-celik-kapi-servisi.jpg"); }
.detail-card:nth-child(6),
.neighborhood-stories article:nth-child(6) { --story-art: url("assets/beykoz-motorize-rota.jpg"); }

.detail-card:nth-child(1)::before { content: "KV"; }
.detail-card:nth-child(2)::before { content: "ÇB"; }
.detail-card:nth-child(3)::before { content: "AC"; }
.detail-card:nth-child(4)::before { content: "KN"; }
.detail-card:nth-child(5)::before { content: "TK"; }
.detail-card:nth-child(6)::before { content: "RV"; }

.neighborhood-stories article {
  padding-bottom: 7rem;
}

.neighborhood-stories article::before {
  content: "BÖ";
  top: auto;
  bottom: 1rem;
}

.faq-list details {
  min-height: 3.7rem;
  display: grid;
  align-content: start;
}

.faq-list details::after {
  content: "";
  width: 100%;
  height: .32rem;
  margin-top: .75rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--hot), rgba(255,138,75,.18));
}

.footer-actions {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.footer-action:first-child,
.footer-action:nth-child(3) {
  grid-column: 1 / -1;
}

.footer-icon-whatsapp {
  background: linear-gradient(135deg, #178f57, #25d366);
}

@media (max-width: 980px) {
  .cta-actions {
    justify-content: flex-start;
  }

  .footer-actions {
    grid-template-columns: 1fr;
  }

  .footer-action:first-child,
  .footer-action:nth-child(3) {
    grid-column: auto;
  }
}

@media (max-width: 680px) {
  .intent-grid article {
    min-height: 0;
    padding-top: 5.5rem;
  }

  .detail-card,
  .neighborhood-stories article {
    min-height: 0;
  }

  .cta-actions .btn {
    width: 100%;
  }
}

/* Mobile hero safety pass */
@media (max-width: 680px) {
  html,
  body {
    max-width: 100%;
    overflow-x: clip;
  }

  .hero-inner {
    width: calc(100% - 2rem);
    max-width: 23rem;
    margin-inline: 1rem;
    overflow: hidden;
  }

  .hero-copy {
    width: 100%;
    max-width: 100% !important;
    min-width: 0;
  }

  .hero-copy::before,
  .hero .eyebrow,
  .hero-text {
    max-width: 100%;
  }

  .hero-copy::before {
    width: auto;
    line-height: 1.25;
  }

  .hero .eyebrow {
    font-size: 0.74rem;
    letter-spacing: 0.06em;
    line-height: 1.35;
    max-width: 18.5rem;
    overflow-wrap: break-word;
    word-break: normal;
  }

  .hero h1 {
    max-width: 10.2ch;
    font-size: clamp(2rem, 8.25vw, 2.72rem);
    line-height: 1.04;
  }

  .hero-text {
    max-width: 100% !important;
    font-size: .96rem;
    line-height: 1.58;
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: none;
  }

  .hero-text-desktop { display: none; }
  .hero-text-mobile { display: inline; }

  .subhero {
    overflow: hidden;
  }

  .subhero > div {
    width: 100%;
    max-width: 23rem;
    min-width: 0;
  }

  .subhero h1,
  .subhero p:not(.eyebrow) {
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: none;
  }

  .subhero h1 {
    font-size: clamp(2rem, 8vw, 2.65rem);
    max-width: 11.5ch;
  }

  .subhero p:not(.eyebrow) {
    font-size: .95rem;
    line-height: 1.55;
  }
}
