:root {
  --black: #080808;
  --ink: #171717;
  --muted: #646464;
  --line: #ded7cf;
  --paper: #f7f3ed;
  --white: #ffffff;
  --orange: #ff8a00;
  --orange-dark: #c85600;
  --amber: #ffc247;
  --steel: #20252b;
  --smoke: #f1eee8;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.18);
  --container: 1180px;
  --header-height: 78px;
  --radius: 6px;
}

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

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  line-height: 1.55;
  letter-spacing: 0;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body.nav-open,
body.modal-lock {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  color: var(--black);
  background: var(--amber);
}

.container {
  width: min(calc(100% - 36px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 250;
  padding: 10px 14px;
  color: var(--black);
  background: var(--amber);
  border-radius: var(--radius);
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 220;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--amber));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 190;
  height: var(--header-height);
  color: var(--white);
  background: rgba(8, 8, 8, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(8, 8, 8, 0.96);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 210px;
  padding-left: 14px;
  border-left: 3px solid var(--orange);
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  color: var(--white);
  font-size: 1.06rem;
  line-height: 1.15;
}

.brand-copy small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
}

.nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.93rem;
  font-weight: 700;
  white-space: nowrap;
  transition: color 160ms ease;
}

.nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.nav a:hover,
.nav a.is-active {
  color: var(--white);
}

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

.header-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 205px;
  margin-left: auto;
  gap: 12px;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  color: var(--black);
  background: var(--amber);
  border-radius: var(--radius);
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 12px 28px rgba(255, 138, 0, 0.22);
}

.menu-toggle {
  display: none;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  transition: transform 180ms ease, opacity 180ms ease;
}

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

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

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

.hero {
  position: relative;
  min-height: calc(84svh - var(--header-height));
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.hero picture,
.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-bg {
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  filter: saturate(1.02) contrast(1.05);
}

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.68) 38%, rgba(0, 0, 0, 0.22) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.78) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  min-height: calc(84svh - var(--header-height));
  padding: 58px 0 50px;
  gap: 34px;
}

.hero-copy {
  width: min(720px, 100%);
  min-width: 0;
}

.hero .reveal {
  opacity: 1;
  transform: none;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 36px;
  height: 2px;
  background: var(--orange);
}

.hero h1,
.section-head h2,
.proof-copy h2,
.quote-copy h2,
.faq-intro h2,
.contact-copy h2 {
  margin: 0;
  line-height: 1.05;
}

.hero h1 {
  max-width: 720px;
  font-size: 4.15rem;
  font-weight: 950;
  text-shadow: 0 7px 30px rgba(0, 0, 0, 0.56);
  overflow-wrap: break-word;
}

.hero p {
  max-width: 620px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.1rem;
  font-weight: 500;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.48);
  overflow-wrap: break-word;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 950;
  text-align: center;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.btn-primary {
  color: var(--black);
  background: linear-gradient(135deg, var(--amber), var(--orange));
  box-shadow: 0 16px 36px rgba(255, 138, 0, 0.32);
}

.btn-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(12px);
}

.btn-icon {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  margin-right: 8px;
  line-height: 1;
}

.btn-full {
  width: 100%;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(100%, 620px);
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-metrics div {
  min-height: 78px;
  padding: 14px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-metrics div:last-child {
  border-right: 0;
}

.hero-metrics strong {
  display: block;
  color: var(--amber);
  font-size: 1.85rem;
  font-weight: 950;
  line-height: 1;
}

.hero-metrics span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  overflow-wrap: anywhere;
}

.quick-strip {
  color: var(--white);
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.quick-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
}

.quick-strip p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.quick-strip strong {
  color: var(--white);
}

.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.quick-links a {
  min-height: 40px;
  padding: 8px 14px;
  color: var(--black);
  background: var(--amber);
  border-radius: var(--radius);
  font-weight: 950;
  white-space: nowrap;
}

.section {
  padding: 96px 0;
}

.section-light {
  background: var(--paper);
}

.section-head {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-head h2,
.proof-copy h2,
.quote-copy h2,
.faq-intro h2,
.contact-copy h2 {
  color: var(--black);
  font-size: 2.55rem;
  font-weight: 950;
}

.section-head p,
.proof-copy p,
.quote-copy p,
.faq-intro p,
.contact-copy p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 275px;
  padding: 24px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 138, 0, 0.06), rgba(255, 255, 255, 0) 44%),
    var(--white);
  border: 1px solid rgba(222, 215, 207, 0.95);
  border-radius: var(--radius);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.055);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--amber));
  opacity: 0.92;
}

.service-card:hover {
  border-color: rgba(255, 138, 0, 0.32);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.11);
  transform: translateY(-4px);
}

.service-card h3,
.route-row h3,
.process-step h3 {
  margin: 18px 0 10px;
  color: var(--black);
  font-size: 1.22rem;
  line-height: 1.22;
}

.service-card p,
.route-row p,
.process-step p {
  margin: 0;
  color: var(--muted);
}

.service-card a {
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  padding-top: 18px;
  color: var(--orange-dark);
  font-weight: 950;
}

.service-icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 34px;
  color: var(--black);
  background: var(--amber);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 950;
}

.service-card-dark {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 138, 0, 0.22), rgba(255, 255, 255, 0)),
    var(--black);
  border-color: rgba(255, 255, 255, 0.1);
}

.service-card-dark h3 {
  color: var(--white);
}

.service-card-dark p {
  color: rgba(255, 255, 255, 0.72);
}

.service-card-dark a {
  color: var(--amber);
}

.proof-band {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.98), rgba(8, 8, 8, 0.78)),
    url("assets/suv-yukleme-gece.jpeg") center / cover;
}

.proof-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  align-items: center;
  gap: 56px;
}

.proof-copy h2,
.proof-copy p {
  color: var(--white);
}

.proof-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 28px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  min-height: 0;
  padding: 0 0 0 24px;
  color: rgba(255, 255, 255, 0.88);
  background: transparent;
  border: 0;
  border-radius: 0;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 9px;
  height: 9px;
  background: var(--orange);
  border-radius: 50%;
}

.proof-media {
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.proof-media img {
  aspect-ratio: 16 / 11;
  height: 100%;
  object-fit: cover;
}

.coverage-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 48px;
  align-items: center;
}

.coverage-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.coverage-media img {
  aspect-ratio: 4 / 5;
  height: 100%;
  object-fit: cover;
}

.coverage-callout {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: grid;
  gap: 3px;
  padding: 14px 16px;
  color: var(--black);
  background: var(--amber);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.coverage-callout span {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.coverage-callout strong {
  font-size: 1.32rem;
  line-height: 1;
}

.coverage-routes {
  border-top: 1px solid var(--line);
}

.route-row {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 23px 0;
  border-bottom: 1px solid var(--line);
}

.route-row > span {
  color: var(--orange);
  font-weight: 950;
}

.coverage-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.coverage-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  color: var(--steel);
  background: var(--smoke);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
}

.process-section {
  background: var(--white);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
  counter-reset: process;
}

.process-step {
  position: relative;
  min-height: 0;
  padding: 0 0 0 22px;
  background: transparent;
  border-left: 2px solid var(--line);
  border-radius: 0;
  overflow: visible;
}

.process-step::after {
  display: none;
}

.process-step span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  color: var(--black);
  background: var(--amber);
  border-radius: 50%;
  font-weight: 950;
}

.process-step h3 {
  color: var(--black);
}

.process-step p {
  color: var(--muted);
  opacity: 1;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  grid-auto-rows: 250px;
  gap: 12px;
}

.gallery-item {
  position: relative;
  display: block;
  width: 100%;
  min-height: 220px;
  padding: 0;
  overflow: hidden;
  background: var(--black);
  border: 0;
  border-radius: var(--radius);
}

.gallery-wide {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease, opacity 320ms ease;
}

.gallery-item:hover img {
  opacity: 0.86;
  transform: scale(1.04);
}

.quote-section {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.96), rgba(8, 8, 8, 0.7)),
    url("assets/vip-arac-tasima.jpeg") center / cover fixed;
}

.quote-layout {
  display: grid;
  grid-template-columns: 0.84fr 1fr;
  align-items: start;
  gap: 52px;
}

.quote-copy h2,
.quote-copy p {
  color: var(--white);
}

.quote-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.quote-note {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  padding-top: 24px;
  background: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
}

.quote-note a {
  color: var(--amber);
  font-size: 1.5rem;
  font-weight: 950;
}

.quote-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  color: var(--black);
  background: rgba(255, 255, 255, 0.96);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.quote-form label {
  display: grid;
  gap: 7px;
  color: var(--black);
  font-weight: 850;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 13px;
  color: var(--black);
  background: #fffdf9;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.quote-form textarea {
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 138, 0, 0.14);
}

.form-privacy {
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.76fr 1fr;
  gap: 52px;
  align-items: start;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
}

.faq-item summary {
  position: relative;
  min-height: 64px;
  padding: 20px 46px 20px 0;
  color: var(--black);
  font-weight: 950;
  list-style: none;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 0;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: var(--black);
  background: var(--amber);
  border-radius: 50%;
  transform: translateY(-50%);
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0;
  padding: 0 46px 20px 0;
  color: var(--muted);
}

.contact-section {
  padding: 92px 0;
  color: var(--white);
  background: var(--black);
}

.contact-inner {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 54px;
}

.contact-copy h2,
.contact-copy p {
  color: var(--white);
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-actions {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-line {
  display: grid;
  grid-template-columns: 130px 1fr;
  align-items: center;
  min-height: 74px;
  gap: 18px;
  padding: 16px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0;
  transition: color 160ms ease;
}

.contact-line:hover strong {
  color: var(--amber);
}

.contact-line span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
}

.contact-line strong {
  color: var(--white);
  font-size: 1.24rem;
  line-height: 1.2;
  overflow-wrap: anywhere;
  transition: color 160ms ease;
}

.legal-strip {
  padding: 26px 0;
  background: #111111;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-inner {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 24px;
  align-items: start;
}

.legal-inner strong {
  color: var(--amber);
}

.legal-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.92rem;
}

.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px 0;
}

.footer-inner p {
  margin: 0;
}

.footer-note {
  margin-top: 5px !important;
  font-size: 0.9rem;
}

.footer-inner a,
.footer-links button {
  color: var(--amber);
  font-weight: 850;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.footer-links button {
  padding: 0;
  background: transparent;
  border: 0;
}

.mobile-callbar {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 150;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 8px;
  background: rgba(8, 8, 8, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.mobile-callbar a {
  min-height: 48px;
  display: grid;
  place-items: center;
  color: var(--black);
  background: var(--amber);
  border-radius: var(--radius);
  font-weight: 950;
}

.mobile-callbar a:nth-child(2) {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 240;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(0, 0, 0, 0.9);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  width: min(100%, 1100px);
  max-height: 82svh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  font-size: 1.8rem;
  line-height: 1;
}

.cookie-consent {
  position: fixed;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 230;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  width: min(calc(100% - 36px), 980px);
  margin-inline: auto;
  padding: 18px;
  color: var(--white);
  background: rgba(8, 8, 8, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-copy strong {
  display: block;
  margin-bottom: 4px;
  color: var(--white);
}

.cookie-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  min-height: 42px;
  padding: 9px 13px;
  border-radius: var(--radius);
  font-weight: 900;
  white-space: nowrap;
}

.cookie-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.cookie-primary {
  color: var(--black);
  background: var(--amber);
  border: 1px solid var(--amber);
}

.site-toast {
  position: fixed;
  top: calc(var(--header-height) + 16px);
  right: 18px;
  z-index: 260;
  max-width: min(360px, calc(100% - 36px));
  padding: 13px 15px;
  color: var(--black);
  background: var(--amber);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-weight: 900;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero h1 {
    font-size: 3.35rem;
  }

  .proof-grid,
  .coverage-layout,
  .quote-layout,
  .faq-layout,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .coverage-media img,
  .proof-media img {
    aspect-ratio: 16 / 10;
  }

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

@media (max-width: 880px) {
  :root {
    --header-height: 70px;
  }

  .header-actions {
    min-width: auto;
  }

  .header-phone {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 8px 18px 18px;
    background: rgba(8, 8, 8, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow);
    transform: translateY(-120%);
    transition: transform 220ms ease;
  }

  .nav-open .nav {
    transform: translateY(0);
  }

  .nav a {
    min-height: 50px;
    display: flex;
    align-items: center;
  }

  .nav a::after {
    bottom: 8px;
  }

  .hero,
  .hero-inner {
    min-height: calc(78svh - var(--header-height));
  }

  .hero-bg {
    object-position: 63% center;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.6) 46%, rgba(0, 0, 0, 0.94)),
      linear-gradient(90deg, rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.22));
  }

  .hero h1 {
    font-size: 2.75rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .quick-strip-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .section {
    padding: 72px 0;
  }

  .section-head h2,
  .proof-copy h2,
  .quote-copy h2,
  .faq-intro h2,
  .contact-copy h2 {
    font-size: 2.1rem;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .check-list,
  .process-grid,
  .contact-actions {
    grid-template-columns: 1fr;
  }

  .cookie-consent {
    grid-template-columns: 1fr;
  }

  .cookie-actions {
    justify-content: stretch;
  }

  .cookie-actions button {
    flex: 1;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 78px;
  }

  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .brand {
    min-width: auto;
    padding-left: 12px;
  }

  .brand-copy small {
    display: none;
  }

  .hero,
  .hero-inner {
    min-height: calc(76svh - var(--header-height));
  }

  .hero-inner {
    padding: 36px 0 34px;
    gap: 26px;
  }

  .hero h1 {
    font-size: 2.08rem;
  }

  .hero-actions,
  .quick-links {
    width: 100%;
  }

  .btn,
  .quick-links a {
    width: 100%;
  }

  .hero-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
  }

  .hero-metrics div {
    min-height: 72px;
    padding: 12px 8px;
  }

  .hero-metrics strong {
    font-size: 1.45rem;
  }

  .hero-metrics span {
    font-size: 0.73rem;
  }

  .eyebrow,
  .section-kicker {
    font-size: 0.72rem;
  }

  .section-head {
    margin-bottom: 28px;
  }

  .service-card {
    min-height: auto;
    padding: 22px;
  }

  .route-row {
    grid-template-columns: 40px 1fr;
    gap: 14px;
  }

  .coverage-media img {
    aspect-ratio: 1 / 1;
  }

  .coverage-tags span {
    font-size: 0.82rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 252px;
  }

  .gallery-wide {
    grid-row: span 1;
  }

  .quote-form {
    padding: 20px;
  }

  .contact-line {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .legal-inner {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .mobile-callbar {
    display: grid;
  }

  .cookie-consent {
    bottom: 86px;
    width: calc(100% - 24px);
    padding: 14px;
  }

  .cookie-actions {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
