/* Celik Oto Servis — sari + siyah + metalik gri */

:root {
  --yellow: #f5c400;
  --yellow-bright: #ffe04a;
  --yellow-deep: #c99a00;
  --black: #070707;
  --ink: #0e0e0e;
  --steel-900: #141618;
  --steel-800: #1c1f24;
  --steel-700: #2a2f36;
  --steel-500: #7a828c;
  --steel-300: #b8c0c8;
  --steel-200: #d4d8dd;
  --white: #f4f5f6;
  --wa: #25d366;
  --font-display: "Bebas Neue", Impact, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --container: 1120px;
  --header-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}

ul,
dl {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
p {
  margin: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--yellow);
  color: var(--black);
  padding: 0.75rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), backdrop-filter 0.35s;
}

.site-header.is-scrolled {
  background: rgba(7, 7, 7, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(245, 196, 0, 0.15);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand img {
  height: 44px;
  width: auto;
}

.nav {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.nav a {
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--steel-200);
  position: relative;
  transition: color 0.25s;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--yellow);
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  gap: 5px;
  flex-direction: column;
  border: 1px solid rgba(245, 196, 0, 0.35);
  border-radius: 4px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--yellow);
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 48px;
  padding: 0.75rem 1.35rem;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  border-radius: 4px;
  transition: transform 0.25s var(--ease), background 0.25s, color 0.25s, box-shadow 0.25s;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-sm {
  min-height: 40px;
  padding: 0.5rem 0.95rem;
  font-size: 0.8rem;
}

.btn-primary {
  background: var(--yellow);
  color: var(--black);
  box-shadow: 0 0 0 0 rgba(245, 196, 0, 0.4);
}

.btn-primary:hover {
  background: var(--yellow-bright);
  box-shadow: 0 8px 28px rgba(245, 196, 0, 0.28);
}

.btn-whatsapp {
  background: var(--wa);
  color: #fff;
}

.btn-whatsapp:hover {
  filter: brightness(1.08);
}

.btn-ghost {
  border: 1px solid rgba(245, 196, 0, 0.45);
  color: var(--yellow);
}

.btn-ghost:hover {
  background: rgba(245, 196, 0, 0.1);
}

.btn-dark {
  background: var(--ink);
  color: var(--yellow);
  border: 1px solid rgba(7, 7, 7, 0.5);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: calc(var(--header-h) + 2rem) 0 4.5rem;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.08);
  animation: heroZoom 18s var(--ease) forwards;
}

@keyframes heroZoom {
  to {
    transform: scale(1);
  }
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(7, 7, 7, 0.92) 0%, rgba(7, 7, 7, 0.72) 42%, rgba(7, 7, 7, 0.35) 100%),
    linear-gradient(to top, rgba(7, 7, 7, 0.95) 0%, transparent 45%);
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-content {
  max-width: 720px;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7vw, 4.2rem);
  letter-spacing: 0.06em;
  line-height: 0.95;
  color: var(--yellow);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
  margin-bottom: 0.35rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.5vw, 3.4rem);
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--white);
  margin-bottom: 1rem;
}

.hero-lead {
  max-width: 38rem;
  color: var(--steel-200);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.35rem;
}

.kasko-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.7rem);
  letter-spacing: 0.08em;
  color: var(--black);
  background: var(--yellow);
  padding: 0.55rem 1rem;
  margin-bottom: 1.25rem;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 0 100%);
  animation: pulseBadge 2.8s ease-in-out infinite;
}

.kasko-badge-icon {
  font-size: 0.75em;
}

@keyframes pulseBadge {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(245, 196, 0, 0.55);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(245, 196, 0, 0);
  }
}

.hero-services {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.1rem;
  color: var(--steel-300);
  font-size: 0.88rem;
  font-weight: 600;
}

.hero-services li {
  position: relative;
  padding-left: 0.9rem;
}

.hero-services li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: var(--yellow);
  border-radius: 1px;
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 1.25rem;
  transform: translateX(-50%);
  width: 28px;
  height: 44px;
  border: 1px solid rgba(245, 196, 0, 0.45);
  border-radius: 16px;
  display: grid;
  place-items: start center;
  padding-top: 8px;
}

.hero-scroll span {
  width: 4px;
  height: 8px;
  background: var(--yellow);
  border-radius: 2px;
  animation: scrollDot 1.6s ease-in-out infinite;
}

@keyframes scrollDot {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(16px);
    opacity: 0;
  }
}

/* Sections */
.section {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  position: relative;
}

.section-dark {
  background:
    radial-gradient(ellipse at top right, rgba(245, 196, 0, 0.06), transparent 45%),
    var(--ink);
}

.section-steel {
  background:
    linear-gradient(135deg, #1a1d22 0%, #121417 50%, #1c2026 100%);
  border-block: 1px solid rgba(245, 196, 0, 0.12);
}

.section-head {
  max-width: 40rem;
  margin-bottom: 2.75rem;
}

.eyebrow {
  color: var(--yellow);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  letter-spacing: 0.03em;
  line-height: 1.05;
  margin-bottom: 0.85rem;
}

.section-lead {
  color: var(--steel-300);
  font-size: 1.05rem;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.service {
  padding: 1.5rem 1.25rem 1.4rem;
  border-top: 2px solid var(--yellow);
  background: linear-gradient(180deg, rgba(245, 196, 0, 0.06), transparent 55%);
  transition: background 0.3s, transform 0.3s var(--ease);
}

.service:hover {
  background: linear-gradient(180deg, rgba(245, 196, 0, 0.12), transparent 60%);
  transform: translateY(-4px);
}

.service-icon {
  display: block;
  color: var(--yellow);
  font-size: 1.25rem;
  margin-bottom: 0.85rem;
}

.service h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 0.45rem;
}

.service p {
  color: var(--steel-300);
  font-size: 0.94rem;
}

/* Why */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(245, 196, 0, 0.2);
  border: 1px solid rgba(245, 196, 0, 0.2);
}

.why-item {
  background: var(--steel-900);
  padding: 1.6rem 1.35rem;
}

.why-item h3 {
  color: var(--yellow);
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.why-item p {
  color: var(--steel-300);
  font-size: 0.94rem;
}

/* Kaporta */
.kaporta-layout {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 2.5rem;
  align-items: center;
}

.check-list {
  margin: 1.25rem 0 1.75rem;
  display: grid;
  gap: 0.55rem;
}

.check-list li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--steel-200);
  font-weight: 600;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 0.55rem;
  height: 0.55rem;
  background: var(--yellow);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.before-after {
  position: relative;
}

.ba-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--steel-800);
  border: 1px solid rgba(245, 196, 0, 0.25);
}

.ba-after,
.ba-before {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-before-wrap {
  position: absolute;
  inset: 0;
  width: 50%;
  overflow: hidden;
  border-right: 2px solid var(--yellow);
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  pointer-events: none;
}

.ba-handle span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--yellow);
  background: rgba(7, 7, 7, 0.85);
}

.ba-handle span::before,
.ba-handle span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--yellow);
  border-right: 2px solid var(--yellow);
}

.ba-handle span::before {
  left: 10px;
  transform: translateY(-50%) rotate(-135deg);
}

.ba-handle span::after {
  right: 10px;
  transform: translateY(-50%) rotate(45deg);
}

.ba-label {
  position: absolute;
  bottom: 0.85rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(7, 7, 7, 0.75);
  color: var(--yellow);
  padding: 0.3rem 0.55rem;
}

.ba-label-before {
  left: 0.85rem;
}

.ba-label-after {
  right: 0.85rem;
}

.ba-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 2;
  margin: 0;
}

/* Kasko */
.kasko-section {
  background:
    linear-gradient(120deg, var(--yellow) 0%, var(--yellow-bright) 45%, var(--yellow-deep) 100%);
  color: var(--black);
  padding: clamp(3.5rem, 7vw, 5rem) 0;
}

.kasko-panel {
  text-align: center;
  max-width: 720px;
}

.kasko-mark {
  font-size: 1.5rem;
  margin-bottom: 0.35rem;
}

.kasko-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.6rem);
  letter-spacing: 0.08em;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.kasko-panel h2 {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.kasko-panel p {
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.kasko-panel .hero-cta {
  justify-content: center;
  margin-bottom: 0;
}

/* Gallery */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.filter-btn {
  min-height: 38px;
  padding: 0.4rem 0.9rem;
  border: 1px solid rgba(245, 196, 0, 0.3);
  color: var(--steel-200);
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: 3px;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.filter-btn:hover,
.filter-btn.is-active {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--steel-800);
  margin: 0;
}

.gallery-item.is-hidden {
  display: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.65rem 0.85rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--yellow);
}

/* About */
.about-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 2.5rem;
  align-items: start;
}

.about-copy p + p {
  margin-top: 1rem;
}

.about-copy p {
  color: var(--steel-200);
}

.about-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(245, 196, 0, 0.25);
}

.about-meta dt {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel-500);
  margin-bottom: 0.25rem;
}

.about-meta dd {
  font-weight: 800;
  color: var(--yellow);
}

.about-aside {
  padding: 1.75rem 1.5rem;
  background: rgba(0, 0, 0, 0.35);
  border-left: 3px solid var(--yellow);
}

.about-stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel-500);
  margin-bottom: 0.35rem;
}

.about-stat {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.03em;
  color: var(--yellow);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.5rem;
}

.contact-cards {
  display: grid;
  gap: 0.75rem;
}

.contact-row {
  display: grid;
  gap: 0.25rem;
  padding: 1.1rem 1.15rem;
  border-left: 3px solid var(--yellow);
  background: rgba(255, 255, 255, 0.03);
  transition: background 0.25s, transform 0.25s var(--ease);
}

.contact-row:hover {
  background: rgba(245, 196, 0, 0.08);
  transform: translateX(4px);
}

.contact-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel-500);
  font-weight: 700;
}

.contact-value {
  font-weight: 700;
  color: var(--white);
  line-height: 1.45;
}

.map-wrap {
  min-height: 360px;
  border: 1px solid rgba(245, 196, 0, 0.25);
  overflow: hidden;
  background: var(--steel-800);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  filter: grayscale(0.35) contrast(1.05);
}

/* Footer */
.site-footer {
  background: #050505;
  border-top: 1px solid rgba(245, 196, 0, 0.18);
  padding: 2.25rem 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: end;
  flex-wrap: wrap;
}

.footer-brand p,
.footer-meta p {
  color: var(--steel-500);
  font-size: 0.85rem;
  margin-top: 0.55rem;
}

.footer-brand img {
  height: 40px;
  width: auto;
}

/* FAB */
.fab-wa {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--wa);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  transition: transform 0.25s var(--ease);
}

.fab-wa:hover {
  transform: scale(1.08);
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.delay-1 {
  transition-delay: 0.08s;
}
.delay-2 {
  transition-delay: 0.16s;
}
.delay-3 {
  transition-delay: 0.24s;
}
.delay-4 {
  transition-delay: 0.32s;
}
.delay-5 {
  transition-delay: 0.4s;
}

/* Responsive */
@media (max-width: 980px) {
  .services-grid,
  .why-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .kaporta-layout,
  .about-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto;
    background: rgba(7, 7, 7, 0.97);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.5rem;
    gap: 0;
    border-bottom: 1px solid rgba(245, 196, 0, 0.2);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.35s;
  }

  .nav.is-open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav-toggle {
    display: grid;
  }

  .header-actions .btn-ghost {
    display: none;
  }
}

@media (max-width: 640px) {
  .services-grid,
  .why-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    align-items: center;
    padding-bottom: 5rem;
  }

  .header-actions .btn-whatsapp.btn-sm {
    display: none;
  }

  .about-meta {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    align-items: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-img,
  .kasko-badge,
  .hero-scroll span,
  .reveal {
    animation: none !important;
    transition: none !important;
    opacity: 1;
    transform: none;
  }
}


/* Active nav */
.nav a.is-active {
  color: var(--yellow);
}

.nav a.is-active::after {
  transform: scaleX(1);
}

/* Page hero (inner pages) */
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + 3.5rem) 0 3rem;
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid rgba(245, 196, 0, 0.18);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(245, 196, 0, 0.16), transparent 50%),
    linear-gradient(135deg, #0a0a0a 0%, #15181d 55%, #0d0d0d 100%);
}

.page-hero-bg::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--yellow), transparent);
  opacity: 0.35;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.page-hero .section-lead {
  max-width: 36rem;
}

.page-hero-content.reveal {
  opacity: 1;
  transform: none;
}

/* Section CTA */
.section-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.25rem;
}

.services-grid-home {
  grid-template-columns: repeat(4, 1fr);
}

/* Home link cards strip */
.home-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.home-link {
  display: grid;
  gap: 0.35rem;
  padding: 1.5rem 1.25rem;
  border-top: 2px solid var(--yellow);
  background: linear-gradient(180deg, rgba(245, 196, 0, 0.08), transparent 70%);
  transition: transform 0.3s var(--ease), background 0.3s;
}

.home-link:hover {
  transform: translateY(-4px);
  background: linear-gradient(180deg, rgba(245, 196, 0, 0.14), transparent 70%);
}

.home-link-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow);
  font-weight: 800;
}

.home-link strong {
  font-size: 1.2rem;
  font-weight: 800;
}

.home-link span:last-child {
  color: var(--steel-300);
  font-size: 0.92rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.5rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.15rem;
}

.footer-nav a {
  color: var(--steel-300);
  font-size: 0.88rem;
  font-weight: 600;
  transition: color 0.25s;
}

.footer-nav a:hover {
  color: var(--yellow);
}

.site-header.is-solid {
  background: rgba(7, 7, 7, 0.94);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(245, 196, 0, 0.15);
}

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

@media (max-width: 640px) {
  .services-grid-home,
  .home-links {
    grid-template-columns: 1fr;
  }
}
