:root {
  --brand-primary: #0528e6;
  --brand-secondary: #f07010;
  --brand-accent: #ff8a1a;
  --brand-dark: #132029;
  --brand-light: #ffffff;
  --brand-black: #111418;
  --brand-grey: #5a6570;
  --brand-grey-light: #eef2f6;
  --bg: #f3f6fa;
  --bg-elevated: var(--brand-light);
  --bg-alt: #e7eef6;
  --steel: #4a5b6a;
  --steel-dim: #5c6d7c;
  --text: var(--brand-dark);
  --muted: #3e5160;
  --line: rgba(5, 40, 230, 0.16);
  --header-h: 6.25rem;
  --max: 1180px;
  --radius: 12px;
  --font: "Inter", system-ui, sans-serif;
  --display: "Oswald", "Inter", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
}

code {
  font-size: 0.9em;
  color: var(--brand-primary);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 0.75rem;
  top: -3rem;
  z-index: 100;
  background: var(--brand-primary);
  color: var(--brand-light);
  padding: 0.5rem 0.85rem;
  font-weight: 600;
  text-decoration: none;
}

.skip-link:focus {
  top: 0.75rem;
}

.topbar {
  background: var(--brand-primary);
  color: var(--brand-light);
  font-size: 0.82rem;
  font-weight: 500;
}

.topbar-inner {
  max-width: 1440px;
  margin: 0 auto;
  min-height: 2.15rem;
  padding: 0.35rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.topbar-location,
.topbar-actions,
.topbar-phone,
.topbar-whatsapp,
.topbar-share {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
}

.topbar-actions {
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.topbar-icon {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  color: var(--brand-accent);
}

.topbar-phone,
.topbar-whatsapp,
.topbar-share {
  color: var(--brand-light);
  text-decoration: none;
  white-space: nowrap;
}

.topbar-whatsapp {
  color: var(--brand-accent);
  font-weight: 700;
}

.topbar-phone:hover,
.topbar-whatsapp:hover,
.topbar-share:hover {
  text-decoration: underline;
}

.topbar-share {
  padding: 0;
  cursor: pointer;
  background: none;
  border: 0;
  font: inherit;
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--brand-light);
  border-bottom: 1px solid var(--brand-grey-light);
  box-shadow: 0 8px 18px rgba(19, 32, 41, 0.05);
}

.header-inner {
  max-width: 1440px;
  margin: 0 auto;
  min-height: var(--header-h);
  padding: 0.55rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  height: 88px;
  width: auto;
  max-width: none;
  object-fit: contain;
  object-position: left center;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--bg-elevated);
  border-radius: 8px;
  cursor: pointer;
  position: relative;
}

.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--brand-primary);
  border-radius: 1px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: transform 0.2s ease, opacity 0.2s ease, top 0.2s ease;
}

.nav-toggle-bars {
  top: 50%;
  margin-top: -1px;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
}

.nav-toggle-bars::before {
  top: -6px;
}

.nav-toggle-bars::after {
  top: 6px;
}

.site-header.is-open .nav-toggle-bars {
  background: transparent;
}

.site-header.is-open .nav-toggle-bars::before {
  top: 0;
  transform: translateX(-50%) rotate(45deg);
}

.site-header.is-open .nav-toggle-bars::after {
  top: 0;
  transform: translateX(-50%) rotate(-45deg);
}

.site-nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: flex-end;
}

.nav-list {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list a {
  display: block;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--brand-dark);
  padding: 0.5rem 0.48rem;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
}

.nav-list a:hover,
.nav-list a:focus-visible,
.nav-list a.is-active {
  color: var(--brand-primary);
  border-bottom-color: var(--brand-secondary);
}

.hero {
  position: relative;
  min-height: calc(100vh - 8.4rem);
  display: grid;
  align-content: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-steel {
  position: absolute;
  inset: 0;
  background-color: #1a2430;
  background-image:
    linear-gradient(180deg, rgba(19, 32, 41, 0.35) 0%, rgba(19, 32, 41, 0.72) 100%),
    repeating-linear-gradient(
      90deg,
      #c5ced6 0 10px,
      #9aa7b3 10px 12px,
      #d7dee5 12px 22px,
      #8e9aa6 22px 24px
    );
  background-size: auto, 48px 100%;
}

.hero-rails {
  position: absolute;
  inset: 18% 8% 22%;
  border: 10px solid rgba(220, 228, 235, 0.55);
  border-radius: 4px;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.25);
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0 46px,
      rgba(236, 241, 246, 0.7) 46px 54px
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(90, 110, 128, 0.12));
}

.hero-steel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.55) 38%, rgba(19, 32, 41, 0.25) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  padding: 3.5rem 1.25rem 7.5rem;
  text-align: center;
}

.hero-logo {
  height: 132px;
  width: auto;
  max-width: min(100%, 280px);
  margin: 0 auto 1.25rem;
  object-fit: contain;
}

.heading-blue,
.heading-orange {
  display: block;
}

.heading-blue {
  color: var(--brand-primary);
}

.heading-orange {
  color: var(--brand-secondary);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  text-transform: uppercase;
}

.hero-lead {
  color: var(--brand-dark);
  font-size: 1.05rem;
  max-width: 40rem;
}

.hero-strip {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  background: rgba(5, 40, 230, 0.94);
  color: var(--brand-light);
}

.hero-strip li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 0.6rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-strip li:last-child {
  border-right: 0;
}

.hero-strip svg {
  width: 18px;
  height: 18px;
  color: var(--brand-accent);
  flex: 0 0 auto;
}

.promise {
  padding: 2.5rem 1.25rem 3rem;
  background: var(--brand-grey-light);
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.promise-card {
  background: var(--brand-light);
  border-radius: var(--radius);
  padding: 1.35rem 1.2rem 1.4rem;
  border-top: 4px solid var(--brand-secondary);
  box-shadow: 0 8px 24px rgba(19, 32, 41, 0.06);
}

.promise-card h3 {
  font-size: 0.95rem;
  margin-bottom: 0.45rem;
}

.promise-card p {
  margin: 0;
  color: var(--muted);
}

.eyebrow {
  color: var(--brand-primary);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 600;
  margin: 0 0 1rem;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.15;
  margin: 0 0 0.75rem;
  color: var(--brand-primary);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  text-transform: uppercase;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  text-transform: uppercase;
}

h3 {
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-lead {
  color: var(--brand-dark);
  margin: 0 auto 1.5rem;
  max-width: 40rem;
}

.section-head p {
  color: var(--muted);
  margin: 0 auto 1.5rem;
  max-width: 46rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.7rem 1.35rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.78rem;
  border: 1px solid transparent;
}

.btn-orange,
.btn-primary {
  background: var(--brand-secondary);
  color: var(--brand-light);
}

.btn-orange:hover,
.btn-primary:hover {
  background: var(--brand-accent);
  color: var(--brand-light);
}

.btn-blue,
.btn-whatsapp {
  background: var(--brand-primary);
  color: var(--brand-light);
  border-color: var(--brand-primary);
}

.btn-blue:hover,
.btn-whatsapp:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  color: var(--brand-light);
}

.category,
.contact {
  padding: 4rem 1.25rem;
  border-bottom: 1px solid var(--line);
}

.category.alt {
  background: var(--bg-alt);
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section-head {
  margin-bottom: 2rem;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.photo-slot {
  margin: 0;
}

.photo-placeholder {
  aspect-ratio: 4 / 3;
  border: 1px dashed var(--brand-accent);
  border-radius: var(--radius);
  background:
    repeating-linear-gradient(
      -45deg,
      rgba(5, 40, 230, 0.06),
      rgba(5, 40, 230, 0.06) 8px,
      transparent 8px,
      transparent 16px
    );
}

.photo-slot p {
  margin: 0.65rem 0 0;
  color: var(--steel-dim);
  font-size: 0.85rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.contact-card {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-top: 3px solid var(--brand-secondary);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
}

.contact-card p {
  color: var(--muted);
  margin: 0 0 1rem;
}

.site-footer {
  padding: 2rem 1.25rem 2.5rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-name {
  font-family: var(--display);
  letter-spacing: 0.16em;
  color: var(--brand-primary);
  margin: 0 0 0.35rem;
}

.footer-copy {
  margin-top: 0.75rem;
  font-size: 0.8rem;
}

@media (min-width: 1101px) and (max-width: 1365px) {
  .brand-logo {
    height: 76px;
  }

  .nav-list a {
    font-size: 0.6rem;
    padding: 0.45rem 0.32rem;
    letter-spacing: 0.035em;
  }
}

@media (min-width: 1366px) {
  .nav-list a {
    font-size: 0.68rem;
    padding: 0.5rem 0.48rem;
  }

  .brand-logo {
    height: 92px;
  }
}

@media (max-width: 1100px) {
  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--brand-light);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem 0 1rem;
  }

  .site-header.is-open .site-nav {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    padding: 0 1rem;
  }

  .nav-list a {
    font-size: 0.9rem;
    padding: 0.85rem 0.4rem;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 860px) {
  .photo-grid,
  .contact-grid,
  .promise-grid,
  .hero-strip {
    grid-template-columns: 1fr 1fr;
  }

  .hero-strip li {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }
}

@media (max-width: 640px) {
  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand-logo {
    height: 64px;
  }

  .hero-logo {
    height: 96px;
  }

  .hero-inner {
    padding: 2.5rem 1rem 8.5rem;
  }

  .photo-grid,
  .contact-grid,
  .promise-grid,
  .hero-strip {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }
}