:root {
  --red: #d42027;
  --red-dark: #9f171d;
  --red-soft: rgba(212, 32, 39, 0.16);
  --black: #090909;
  --ink: #121212;
  --panel: #1a1a1a;
  --panel-light: #242424;
  --silver: #c7c7c7;
  --muted: #9b9b9b;
  --white: #ffffff;
  --line: rgba(255, 255, 255, 0.12);
  --header-bg: rgba(9, 9, 9, 0.84);
  --header-bg-solid: rgba(9, 9, 9, 0.96);
  --header-border: rgba(255, 255, 255, 0.08);
  --field-bg: #101010;
  --footer-bg: #070707;
  --whatsapp: #25d366;
  --whatsapp-hover: #1ebe5d;
  --whatsapp-text: #06240f;
  --whatsapp-shadow: rgba(37, 211, 102, 0.26);
  --button-text: #ffffff;
  --promo-featured-start: rgba(212, 32, 39, 0.88);
  --promo-featured-end: rgba(38, 38, 38, 0.9);
  --red-border: rgba(212, 32, 39, 0.45);
  --red-border-strong: rgba(212, 32, 39, 0.72);
  --red-focus: rgba(212, 32, 39, 0.12);
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--white);
  background: var(--black);
  line-height: 1.6;
}

body.has-site-background {
  background-image:
    linear-gradient(rgba(9, 9, 9, 0.82), rgba(9, 9, 9, 0.92)),
    var(--site-bg-image);
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

body.menu-open {
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 12px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid var(--header-border);
  background: var(--header-bg);
  backdrop-filter: blur(16px);
  transition: background 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled {
  background: var(--header-bg-solid);
  border-color: var(--red-border);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.brand strong {
  display: block;
  color: var(--red);
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1;
}

.brand strong b {
  color: var(--white);
}

.brand small {
  display: block;
  color: var(--silver);
  font-size: 0.72rem;
  line-height: 1.2;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--silver);
  font-size: 0.9rem;
  font-weight: 700;
}

.site-nav a {
  transition: color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.site-nav a:hover {
  color: var(--white);
}

.nav-cta {
  padding: 9px 16px;
  border-radius: var(--radius);
  color: var(--white) !important;
  background: var(--red);
}

.nav-cta:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 2px;
  background: var(--white);
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  padding: 98px clamp(18px, 5vw, 74px) 16px;
  background:
    linear-gradient(115deg, rgba(9, 9, 9, 0.96) 0%, rgba(18, 18, 18, 0.92) 48%, rgba(107, 16, 20, 0.66) 100%),
    repeating-linear-gradient(90deg, #111 0, #111 2px, #171717 3px, #0a0a0a 7px);
}

.hero.has-hero-background {
  background:
    linear-gradient(115deg, rgba(9, 9, 9, 0.88) 0%, rgba(18, 18, 18, 0.76) 48%, rgba(107, 16, 20, 0.54) 100%),
    var(--hero-bg-image),
    repeating-linear-gradient(90deg, #111 0, #111 2px, #171717 3px, #0a0a0a 7px);
  background-position: center;
  background-size: cover;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red-border-strong), transparent);
}

.hero-logo {
  position: absolute;
  right: clamp(-190px, -8vw, -40px);
  top: 50%;
  width: min(720px, 64vw);
  max-width: none;
  opacity: 0.24;
  transform: translateY(-50%);
  filter: saturate(1.08) contrast(1.08);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  margin-bottom: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

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

h1 {
  max-width: 980px;
  margin-bottom: 12px;
  font-size: 3.95rem;
  line-height: 0.98;
  font-weight: 600;
  letter-spacing: 0;
}

h1 .hero-title-line {
  display: block;
  white-space: nowrap;
  word-break: keep-all;
  font-size: 2.85rem;
}

.hero-copy {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--silver);
  font-size: 1rem;
  line-height: 1.42;
}

.hero-actions,
.section-heading,
.contact-grid,
.footer-main,
.footer-bottom {
  width: min(1160px, calc(100% - 36px));
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 42px;
  padding: 10px 16px;
  border: 0;
  border-radius: var(--radius);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
  color: var(--whatsapp-text);
  background: var(--whatsapp);
  box-shadow: 0 12px 38px var(--whatsapp-shadow);
}

.btn-primary:hover {
  background: var(--whatsapp-hover);
}

.btn-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

.btn-icon {
  display: inline-grid;
  place-items: center;
  width: 28px;
  min-width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  font-size: 0.68rem;
  font-weight: 900;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(900px, 100%);
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.hero-highlights li {
  min-height: 118px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  background: rgba(12, 12, 12, 0.66);
}

.hero-highlights strong,
.hero-highlights span {
  display: block;
}

.hero-highlights strong {
  color: var(--white);
  margin-bottom: 6px;
  font-size: 0.94rem;
}

.hero-highlights span {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.site-banner {
  padding: 52px 0;
  background:
    linear-gradient(135deg, var(--red-soft), rgba(255, 255, 255, 0.035)),
    var(--ink);
}

.site-banner[hidden] {
  display: none;
}

.site-banner-inner {
  width: min(1160px, calc(100% - 36px));
  min-height: 280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.72fr);
  gap: 28px;
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.site-banner-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 54px);
}

.site-banner h2 {
  margin: 0 0 12px;
  max-width: 780px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
}

.site-banner-copy > p:not(.eyebrow) {
  max-width: 680px;
  margin: 0 0 22px;
  color: var(--silver);
  font-size: 1.05rem;
}

.site-banner img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  background: var(--black);
}

section {
  padding: 86px 0;
}

.section-heading {
  margin: 0 auto 34px;
}

.section-heading h2,
.about-copy h2 {
  max-width: 760px;
  margin-bottom: 14px;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.about-copy p {
  max-width: 720px;
  color: var(--muted);
}

.promo-band {
  background: var(--ink);
}

.promo-grid,
.service-grid {
  display: grid;
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  gap: 16px;
}

.promo-grid {
  grid-template-columns: 1.2fr repeat(2, 0.9fr);
}

.promo {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    var(--panel);
  box-shadow: var(--shadow);
}

.promo-featured {
  background:
    linear-gradient(140deg, var(--promo-featured-start), var(--promo-featured-end)),
    repeating-linear-gradient(90deg, #181818 0, #181818 2px, #222 5px);
}

.promo p {
  margin-bottom: 10px;
  color: var(--silver);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.promo h3 {
  margin-bottom: 10px;
  font-size: clamp(1.45rem, 3vw, 2.25rem);
  line-height: 1.05;
}

.promo span {
  color: rgba(255, 255, 255, 0.78);
}

.promo-price {
  display: block;
  margin-top: 20px;
  color: var(--button-text);
  font-size: 1.08rem;
  font-weight: 900;
}

.promo-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 40px;
  margin-top: 12px;
  padding: 10px 18px;
  border: 0;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--red);
  font-weight: 900;
  transition: transform 0.2s ease, background 0.2s ease;
}

.promo-button:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}

.services {
  background:
    linear-gradient(180deg, var(--black), #151515);
}

.services .section-heading {
  width: min(1160px, calc(100% - 36px));
  margin-bottom: 26px;
}

.services .section-heading h2 {
  max-width: none;
  white-space: nowrap;
  font-size: clamp(2.2rem, 3.4vw, 3.05rem);
}

.services .section-heading p:not(.eyebrow) {
  max-width: none;
  white-space: nowrap;
  font-size: 1rem;
  line-height: 1.5;
}

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

.service-card {
  min-height: 164px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--red-border);
  background: var(--panel-light);
}

.service-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.service-card span {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--red-border);
  border-radius: var(--radius);
  color: var(--red);
  background: var(--red-soft);
  font-size: 0.82rem;
  font-weight: 900;
}

.service-card h3 {
  margin-bottom: 0;
  color: var(--white);
  font-size: 1.14rem;
  line-height: 1.2;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.5;
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(280px, 0.72fr);
  gap: 34px;
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  align-items: start;
}

.about-copy h2 {
  max-width: 920px;
}

.about-story {
  display: grid;
  gap: 14px;
  max-width: 860px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, var(--red-focus), rgba(255, 255, 255, 0.035)),
    rgba(18, 18, 18, 0.72);
}

.about-story p {
  max-width: none;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.97rem;
  line-height: 1.68;
}

.about-story .about-callout,
.about-story .about-closing {
  color: var(--white);
  font-weight: 900;
}

.about-story .about-callout {
  padding: 14px 16px;
  border: 1px solid var(--red-border);
  border-radius: var(--radius);
  background: var(--red-soft);
  font-size: 1.05rem;
}

.about-story .about-closing {
  color: var(--red);
}

.about-list {
  display: grid;
  gap: 12px;
  position: sticky;
  top: 96px;
}

.about-list div {
  padding: 20px;
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
  background: linear-gradient(100deg, var(--red-focus), rgba(255, 255, 255, 0.04));
}

.about-list strong,
.about-list span {
  display: block;
}

.about-list strong {
  margin-bottom: 4px;
  font-size: 1.08rem;
}

.about-list span {
  color: var(--muted);
}

.contact-section {
  min-height: calc(100vh - 72px);
  padding: 22px 0 18px;
  scroll-margin-top: 72px;
  background:
    linear-gradient(180deg, #151515, var(--black));
}

.contact-section .section-heading {
  margin-bottom: 16px;
}

.contact-section .section-heading .eyebrow {
  margin-bottom: 8px;
}

.contact-section .section-heading h2 {
  margin-bottom: 8px;
  font-size: clamp(2.25rem, 3.2vw, 3.05rem);
}

.contact-section .section-heading p {
  font-size: 0.98rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 16px;
  margin: 0 auto;
}

.address-panel,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.address-panel {
  padding: 18px 22px;
}

.address-panel img {
  width: 82px;
  height: 82px;
  margin-bottom: 14px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.address-panel div {
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.address-panel strong {
  color: var(--white);
  font-size: 0.94rem;
}

.address-panel p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.45;
  white-space: pre-line;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 16px;
  padding: 20px 22px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  color: var(--silver);
  font-size: 0.9rem;
  font-weight: 800;
}

.field-service,
.field-message,
.form-submit {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  color: var(--white);
  background: var(--field-bg);
  font: inherit;
  outline: none;
}

input,
select {
  height: 42px;
  padding: 0 12px;
}

textarea {
  min-height: 92px;
  resize: vertical;
  padding: 12px;
}

.form-submit {
  justify-self: start;
  min-height: 38px;
  padding: 9px 14px;
  font-size: 0.9rem;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--red-border-strong);
  box-shadow: 0 0 0 3px var(--red-focus);
}

.site-footer {
  padding: 34px 0 22px;
  color: var(--muted);
  background: var(--footer-bg);
  border-top: 1px solid var(--red-border);
}

.footer-main,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 auto;
}

.footer-main {
  padding-bottom: 22px;
}

.footer-brand img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 50%;
}

.footer-brand span {
  color: var(--white);
  font-weight: 900;
}

.footer-links,
.social-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-links a {
  font-weight: 700;
}

.footer-links a:hover,
.developer-credit:hover {
  color: var(--white);
}

.admin-entry {
  color: var(--silver);
  text-decoration: none;
}

.admin-entry:hover {
  color: var(--white);
}

.social-icon {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.social-icon svg {
  display: block;
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.social-icon:not(.social-icon-disabled):hover {
  border-color: var(--red);
  background: var(--red);
}

.social-icon-disabled {
  cursor: not-allowed;
  opacity: 0.52;
}

.footer-bottom {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.86rem;
}

.developer-credit {
  color: var(--silver);
  font-size: 0.88rem;
  font-weight: 600;
}

.developer-credit strong {
  color: var(--white);
  font-weight: 900;
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 72px 14px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(9, 9, 9, 0.98);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px;
    border-radius: var(--radius);
  }

  .nav-cta {
    text-align: center;
  }

  .hero-logo {
    right: -250px;
    width: 700px;
    opacity: 0.18;
  }

  h1 {
    font-size: 3.4rem;
  }

  h1 .hero-title-line {
    font-size: 2.45rem;
  }

  .promo-grid,
  .service-grid,
  .site-banner-inner,
  .about,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .site-banner img {
    max-height: 320px;
  }

  .services .section-heading h2,
  .services .section-heading p:not(.eyebrow) {
    white-space: normal;
  }

  .about-list {
    position: static;
  }

  .promo {
    min-height: 220px;
  }

  .footer-main,
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 66px;
    padding: 10px 14px;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .brand small {
    display: none;
  }

  .site-nav {
    top: 66px;
  }

  .hero {
    height: auto;
    min-height: 100vh;
    padding-top: 104px;
  }

  h1 {
    font-size: 2.7rem;
  }

  h1 .hero-title-line {
    font-size: 1.6rem;
  }

  .hero-actions,
  .btn,
  .contact-form {
    width: 100%;
  }

  .hero-highlights {
    grid-template-columns: 1fr;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-form label,
  .field-service,
  .field-vehicle,
  .field-year,
  .field-message {
    grid-column: 1 / -1;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}
