:root {
  --bg: #f3efe7;
  --paper: rgba(255, 255, 255, 0.56);
  --text: #111111;
  --muted: #5f5a53;
  --line: rgba(17, 17, 17, 0.1);
  --accent: #c55f35;
  --accent-soft: #efc6a8;
  --whatsapp: #149c47;
  --whatsapp-dark: #0f7f39;
  --steel: #c9d3db;
  --dark: #171717;
  --shadow: 0 24px 60px rgba(17, 17, 17, 0.08);
  --display: Impact, Haettenschweiler, "Arial Narrow Bold",
    "Helvetica Neue Condensed Bold", "Franklin Gothic Demi Cond", sans-serif;
  --body: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--body);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(197, 95, 53, 0.12), transparent 26%),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.4), transparent 30%),
    var(--bg);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(17, 17, 17, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.03) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.85), transparent 92%);
}

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

.page-shell {
  padding: 24px 0 56px;
}

.site-header {
  top: 0;
  z-index: 1030;
  padding: 20px 0 18px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(17, 17, 17, 0.06);
}

.site-header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-right: 16px;
}

.brand-logo {
  display: block;
  width: min(100%, 340px);
  max-width: 340px;
  height: auto;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-transform: uppercase;
}

.brand-copy strong,
.site-nav-list .nav-link,
.eyebrow,
.section-kicker,
.panel-label,
.inventory-type,
.repair-index,
.process-steps span {
  letter-spacing: 0.06em;
}

.brand-copy strong {
  font-size: 0.92rem;
}

.brand-copy small {
  font-size: 0.7rem;
  color: var(--muted);
  margin-left: 4px;
}

.site-nav-shell {
  flex-grow: 1;
}

.site-nav-list {
  gap: 10px;
}

.site-nav-list .nav-link {
  font-size: 0.84rem;
  text-transform: uppercase;
  color: var(--text);
  padding: 0.45rem 0.55rem;
}

.nav-cta,
.cta-secondary,
.primary-link {
  padding: 0.8rem 1.1rem;
  border: 1px solid var(--text);
  border-radius: 999px;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.site-toggler {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.5rem 0.8rem;
}

.site-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(197, 95, 53, 0.18);
}

.nav-cta:hover,
.cta-secondary:hover,
.primary-link:hover {
  transform: translateY(-2px);
  background: var(--text);
  color: #f7f3eb;
}

.whatsapp-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.62rem;
  background: var(--whatsapp);
  border-color: var(--whatsapp);
  color: #ffffff !important;
  font-weight: 700;
}

.whatsapp-cta .bi {
  font-size: 1rem;
  line-height: 1;
}

.whatsapp-cta:hover,
.whatsapp-cta:focus {
  transform: translateY(-2px);
  background: var(--whatsapp-dark);
  border-color: var(--whatsapp-dark);
  color: #ffffff !important;
}

.site-nav-list .nav-link:hover,
.site-nav-list .nav-link:focus {
  color: var(--text);
}

.hero {
  padding: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(360px, 1fr);
  gap: 32px;
  align-items: stretch;
}

.hero-copy {
  max-width: 780px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.eyebrow,
.section-kicker,
.panel-label,
.inventory-type {
  margin: 0 0 16px;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4rem, 10vw, 9.2rem);
  line-height: 0.84;
  letter-spacing: 0;
  text-transform: uppercase;
  font-stretch: condensed;
  max-width: 9.2ch;
}

.hero h1 span {
  display: block;
}

.hero-side {
  width: min(100%, 620px);
  justify-self: end;
  align-self: stretch;
  display: flex;
  align-items: end;
}

.hero-figure {
  margin: 0;
  min-height: 100%;
  display: flex;
  align-items: end;
  justify-content: center;
  padding: 0;
  background: radial-gradient(
    circle at 50% 38%,
    rgba(239, 198, 168, 0.9),
    transparent 62%
  );
}

.hero-mascot {
  display: block;
  width: min(100%, 620px);
  height: auto;
  filter: drop-shadow(0 26px 36px rgba(17, 17, 17, 0.18));
}

.hero-side p,
.service-text p,
.surface-card p,
.process-steps p,
.story-panel li {
  color: var(--muted);
  font-size: 1.3rem;
  line-height: 1.5;
}

.primary-link {
  display: inline-flex;
  align-items: center;
  margin-top: 20px;
  width: fit-content;
}

.hero-marquee {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.hero-marquee span,
.service-tags span {
  display: inline-flex;
  align-items: center;
  padding: 0.78rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(10px);
  text-transform: uppercase;
  font-size: 0.84rem;
  letter-spacing: 0.05em;
}

.stats-section,
.repair-grid,
.split-layout,
.inventory-grid,
.process-steps {
  display: grid;
  gap: 18px;
}

.stats-section {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 24px 0 24px;
}

.stats-section article,
.inventory-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(16px);
}

.stats-section strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--display);
  font-size: 2rem;
  text-transform: uppercase;
}

.section {
  padding: 56px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.section-heading.compact {
  max-width: 960px;
}

.section-heading h2,
.inventory-heading h2,
.cta-box h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: 0.94;
  text-transform: uppercase;
  letter-spacing: -0.03em;
}

.intro-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 20px;
  align-items: start;
}

.summary-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 20px;
  align-items: start;
}

.summary-copy {
  display: flex;
  align-items: center;
  min-height: 100%;
}

.service-tags-summary {
  align-content: start;
}

.surface-card {
  padding: 28px;
  border-radius: 30px;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.coverage-section {
  padding-top: 8px;
}

.coverage-card {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.2fr);
  gap: 0;
  padding: 0;
  overflow: hidden;
}

.coverage-media {
  margin: 0;
  min-height: 100%;
}

.coverage-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.coverage-copy {
  padding: clamp(28px, 4vw, 42px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.coverage-copy h2 {
  margin: 0 0 18px;
  font-family: var(--display);
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 0.96;
  text-transform: uppercase;
}

.coverage-copy p {
  margin: 0 0 14px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

.service-detail-list {
  display: grid;
  gap: 26px;
}

.service-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
}

.service-row-reverse .service-media {
  order: 2;
}

.service-row-reverse .service-text {
  order: 1;
}

.service-media {
  margin: 0;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 30px;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
}

.service-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-text {
  padding: 8px 8px 8px 0;
}

.repair-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
}

.repair-index {
  margin-bottom: 18px;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.repair-card h3,
.service-text h3,
.inventory-card h3,
.story-panel h3,
.process-steps h3 {
  margin: 0 0 14px;
  font-size: 1.35rem;
  line-height: 1.08;
  text-transform: uppercase;
}

.accent-card {
  background: linear-gradient(180deg, var(--accent-soft), rgba(255, 255, 255, 0.35));
}

.dark-card {
  background: var(--dark);
  color: #f3efe7;
}

.dark-card p {
  color: rgba(243, 239, 231, 0.78);
}

.split-layout {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
}

.metric-panel {
  padding: 28px;
  border-radius: 30px;
  background: var(--steel);
}

.metric-panel ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 14px;
}

.inventory-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 20px;
  align-items: end;
  margin-bottom: 28px;
}

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

.inventory-card {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.inventory-card.highlighted {
  background: linear-gradient(160deg, var(--text), #2f2f2f);
  color: #f3efe7;
}

.inventory-card.highlighted .inventory-type {
  color: rgba(243, 239, 231, 0.7);
}

.process-steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-steps article {
  padding: 22px;
  border-top: 2px solid var(--text);
}

.process-steps span {
  display: inline-block;
  margin-bottom: 16px;
  font-family: var(--display);
  font-size: 2rem;
}

.cta-box {
  padding: clamp(28px, 5vw, 56px);
  border-radius: 36px;
  background:
    radial-gradient(circle at top right, rgba(197, 95, 53, 0.24), transparent 28%),
    linear-gradient(135deg, #1a1a1a, #0f0f0f);
  color: #f3efe7;
}

.cta-box .section-kicker {
  color: rgba(243, 239, 231, 0.72);
}

.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.cta-note {
  margin: 16px 0 0;
  color: rgba(243, 239, 231, 0.72);
  max-width: 620px;
  line-height: 1.5;
}

.cta-primary {
  display: inline-flex;
  align-items: center;
  padding: 0.9rem 1.18rem;
  border-radius: 999px;
  background: #f3efe7;
  color: var(--text);
  transition: transform 180ms ease, opacity 180ms ease;
}

.cta-primary:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.faq-accordion {
  display: grid;
  gap: 14px;
}

.faq-accordion .faq-item {
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.52);
  box-shadow: var(--shadow);
}

.faq-accordion .accordion-button {
  padding: 1.2rem 1.35rem;
  font-family: var(--body);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text);
  background: transparent;
  box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--text);
  background: rgba(20, 156, 71, 0.08);
  box-shadow: none;
}

.faq-accordion .accordion-button:focus {
  box-shadow: 0 0 0 0.18rem rgba(20, 156, 71, 0.15);
}

.faq-accordion .accordion-button::after {
  background-size: 1rem;
}

.faq-accordion .accordion-body {
  padding: 0 1.35rem 1.3rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1040;
  width: 68px;
  height: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--whatsapp);
  color: #ffffff !important;
  box-shadow: 0 18px 40px rgba(20, 156, 71, 0.34);
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.floating-whatsapp .bi {
  font-size: 2rem;
  line-height: 1;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus {
  transform: translateY(-3px) scale(1.03);
  background: var(--whatsapp-dark);
  box-shadow: 0 20px 44px rgba(15, 127, 57, 0.34);
}

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

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

@media (max-width: 1100px) {
  .hero-grid,
  .summary-layout,
  .service-row,
  .intro-layout,
  .split-layout,
  .inventory-heading {
    grid-template-columns: 1fr;
  }

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

  .inventory-grid,
  .stats-section {
    grid-template-columns: 1fr;
  }

  .hero-side {
    justify-self: start;
    max-width: none;
  }

  .service-row-reverse .service-media,
  .service-row-reverse .service-text {
    order: initial;
  }

  .coverage-media img {
    min-height: 260px;
  }
}

@media (max-width: 760px) {
  .coverage-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .page-shell {
    padding: 18px 0 42px;
  }

  .site-header-inner,
  .hero.container,
  .page-shell {
    padding-left: 18px;
    padding-right: 18px;
  }

  .site-header {
    padding: 14px 0;
  }

  .brand {
    gap: 8px;
    margin-right: 0;
  }

  .brand-logo {
    max-width: min(78vw, 280px);
  }

  .site-header-inner {
    align-items: flex-start;
  }

  .site-nav-shell {
    width: 100%;
    margin-top: 14px;
  }

  .site-nav-list {
    align-items: flex-start;
    gap: 6px;
  }

  .site-nav-list .nav-link {
    padding-left: 0;
    padding-right: 0;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 18vw, 5rem);
    line-height: 0.9;
    max-width: none;
  }

  .floating-whatsapp {
    right: 18px;
    bottom: 18px;
    width: 60px;
    height: 60px;
  }

  .hero-side {
    display: none;
  }

  .section {
    padding: 38px 0;
  }

  .repair-grid,
  .process-steps {
    grid-template-columns: 1fr;
  }

  .section-heading h2,
  .inventory-heading h2,
  .cta-box h2 {
    font-size: clamp(2rem, 12vw, 3.5rem);
  }

  .hero-side p,
  .surface-card p,
  .process-steps p,
  .story-panel li {
    font-size: 0.96rem;
  }

  .hero-figure {
    min-height: auto;
    justify-content: flex-start;
  }

  .hero-mascot {
    width: min(100%, 280px);
  }
}
