:root {
  --black: #101214;
  --black-soft: #171a1d;
  --gray-dark: #24282c;
  --gray: #5f666d;
  --gray-light: #dfe2e5;
  --surface: #ffffff;
  --surface-alt: #f5f6f7;
  --yellow: #f2b705;
  --yellow-dark: #d99e00;
  --yellow-soft: #fff5c7;
  --green: #25d366;
  --green-dark: #18aa50;
  --text: #191c1f;
  --text-soft: #666c73;
  --border: #dfe2e5;
  --shadow-sm: 0 10px 30px rgba(16, 18, 20, 0.08);
  --shadow-md: 0 24px 64px rgba(16, 18, 20, 0.14);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --container: 1180px;
  --demo-height: 34px;
  --header-height: 78px;
  --transition: 180ms ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--demo-height) + var(--header-height) + 20px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

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

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

svg {
  fill: currentColor;
}

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

h1,
h2,
h3 {
  color: var(--text);
  font-family: "Barlow Condensed", Impact, sans-serif;
  line-height: 0.98;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

h1 {
  max-width: 770px;
  margin-bottom: 24px;
  font-size: clamp(4rem, 8vw, 7.4rem);
  font-weight: 800;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  font-weight: 800;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.75rem;
  font-weight: 700;
}

p {
  color: var(--text-soft);
}

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

.skip-link {
  position: fixed;
  top: -80px;
  left: 20px;
  z-index: 3000;
  padding: 12px 18px;
  border-radius: 8px;
  color: var(--black);
  background: var(--yellow);
  font-weight: 800;
  transition: top var(--transition);
}

.skip-link:focus {
  top: 14px;
}

.demo-banner {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1200;
  min-height: var(--demo-height);
  color: #d9dde1;
  background: #070809;
  font-size: 0.72rem;
}

.demo-banner__inner {
  display: flex;
  min-height: var(--demo-height);
  align-items: center;
  justify-content: center;
  gap: 7px;
  text-align: center;
}

.demo-banner strong {
  color: var(--yellow);
}

.demo-banner__dot {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 4px rgba(242, 183, 5, 0.15);
}

.site-header {
  position: fixed;
  top: var(--demo-height);
  right: 0;
  left: 0;
  z-index: 1100;
  height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(16, 18, 20, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition:
    background-color var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.site-header.is-scrolled {
  border-bottom-color: rgba(255, 255, 255, 0.08);
  background: rgba(16, 18, 20, 0.97);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
}

.brand__symbol {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--yellow);
  background: rgba(242, 183, 5, 0.09);
}

.brand__symbol svg {
  width: 38px;
  height: 38px;
}

.brand__wrench {
  fill: var(--black);
}

.brand__copy {
  display: flex;
  flex-direction: column;
}

.brand__copy strong,
.brand__copy small {
  font-family: "Barlow Condensed", Impact, sans-serif;
  line-height: 1;
  text-transform: uppercase;
}

.brand__copy strong {
  color: #ffffff;
  font-size: 1.42rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand__copy small {
  margin-top: 4px;
  color: #aeb4ba;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.19em;
}

.main-navigation {
  display: flex;
  align-items: center;
  gap: 26px;
}

.main-navigation > a {
  position: relative;
  color: #d7dadd;
  font-size: 0.86rem;
  font-weight: 700;
  transition: color var(--transition);
}

.main-navigation > a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--yellow);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}

.main-navigation > a:hover,
.main-navigation > a:focus-visible {
  color: #ffffff;
}

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

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  color: #ffffff;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
  transition:
    opacity var(--transition),
    transform var(--transition);
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-6px) rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 23px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1;
  transition:
    transform var(--transition),
    background-color var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

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

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

.button svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.button--small {
  min-height: 43px;
  padding: 11px 16px;
  font-size: 0.82rem;
}

.button--yellow {
  color: var(--black);
  background: var(--yellow);
  box-shadow: 0 12px 25px rgba(242, 183, 5, 0.18);
}

.button--yellow:hover {
  background: var(--yellow-dark);
  box-shadow: 0 16px 32px rgba(242, 183, 5, 0.24);
}

.button--whatsapp {
  color: #ffffff;
  background: var(--green);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.22);
}

.button--whatsapp:hover {
  background: var(--green-dark);
  box-shadow: 0 18px 36px rgba(37, 211, 102, 0.28);
}

.button--outline-light {
  border-color: rgba(255, 255, 255, 0.38);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
}

.button--outline-light:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.hero {
  position: relative;
  display: grid;
  min-height: 820px;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--demo-height) + var(--header-height) + 80px) 0 110px;
  color: #ffffff;
  background: var(--black);
}

.hero__image,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__image {
  background-image: url("../assets/images/oficina-hero.webp");
  background-position: center;
  background-size: cover;
  transform: scale(1.015);
}

.hero__overlay {
  background:
    linear-gradient(90deg, rgba(7, 8, 9, 0.94) 0%, rgba(7, 8, 9, 0.77) 46%, rgba(7, 8, 9, 0.2) 82%),
    linear-gradient(180deg, rgba(7, 8, 9, 0.15) 0%, rgba(7, 8, 9, 0.25) 68%, rgba(7, 8, 9, 0.82) 100%);
}

.hero::after {
  position: absolute;
  right: -180px;
  bottom: -300px;
  width: 720px;
  height: 720px;
  border: 1px solid rgba(242, 183, 5, 0.22);
  border-radius: 50%;
  content: "";
}

.hero__inner {
  position: relative;
  z-index: 2;
}

.hero__content {
  max-width: 790px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 19px;
  color: #9a7300;
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 31px;
  height: 3px;
  background: currentColor;
  content: "";
}

.eyebrow--yellow {
  color: var(--yellow);
}

.hero h1 {
  color: #ffffff;
}

.hero h1 span {
  color: var(--yellow);
}

.hero__content > p {
  max-width: 660px;
  margin-bottom: 32px;
  color: #d9dde1;
  font-size: clamp(1.06rem, 2vw, 1.25rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  color: #c5cbd0;
  font-size: 0.88rem;
  font-weight: 600;
}

.hero__trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero__trust svg {
  width: 18px;
  height: 18px;
  color: var(--yellow);
}

.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #c6cbd0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.hero__scroll span {
  position: relative;
  width: 20px;
  height: 31px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
}

.hero__scroll span::after {
  position: absolute;
  top: 7px;
  left: 50%;
  width: 3px;
  height: 7px;
  border-radius: 999px;
  background: var(--yellow);
  content: "";
  transform: translateX(-50%);
}

.section {
  padding: 112px 0;
}

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

.section-heading {
  max-width: 760px;
  margin-bottom: 52px;
}

.section-heading--center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading--center .eyebrow {
  justify-content: center;
}

.section-heading p {
  max-width: 680px;
  margin-bottom: 0;
  font-size: 1.04rem;
}

.section-heading--center p {
  margin-right: auto;
  margin-left: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  position: relative;
  min-height: 290px;
  overflow: hidden;
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(16, 18, 20, 0.04);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.service-card::after {
  position: absolute;
  right: -50px;
  bottom: -55px;
  width: 150px;
  height: 150px;
  border: 22px solid rgba(242, 183, 5, 0.08);
  border-radius: 50%;
  content: "";
}

.service-card:hover {
  border-color: #c9ced3;
  box-shadow: var(--shadow-sm);
  transform: translateY(-5px);
}

.service-card__number {
  position: absolute;
  top: 27px;
  right: 28px;
  color: #d6dade;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 2rem;
  font-weight: 800;
}

.service-card__icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 14px;
  color: var(--black);
  background: var(--yellow);
}

.service-card__icon svg {
  width: 26px;
  height: 26px;
}

.service-card h3,
.service-card p {
  position: relative;
  z-index: 1;
}

.service-card h3 {
  font-size: 1.7rem;
}

.service-card p {
  margin-bottom: 0;
  font-size: 0.94rem;
}

.advantages {
  position: relative;
  overflow: hidden;
  padding: 105px 0;
  color: #ffffff;
  background:
    radial-gradient(circle at 90% 18%, rgba(242, 183, 5, 0.08), transparent 25%),
    var(--black-soft);
}

.advantages::before {
  position: absolute;
  top: -200px;
  left: -140px;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  content: "";
}

.advantages__heading {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 52px;
}

.advantages__heading .eyebrow {
  align-self: start;
}

.advantages__heading h2 {
  max-width: 760px;
  margin-bottom: 0;
  color: #ffffff;
}

.advantages__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.advantage {
  min-height: 240px;
  padding: 30px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.advantage:last-child {
  border-right: 0;
}

.advantage > span {
  display: block;
  margin-bottom: 44px;
  color: var(--yellow);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
}

.advantage h3 {
  color: #ffffff;
  font-size: 1.47rem;
}

.advantage p {
  margin-bottom: 0;
  color: #9da4aa;
  font-size: 0.86rem;
}

.about {
  background: #ffffff;
}

.about__grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 90px;
}

.about__media {
  position: relative;
  min-height: 650px;
}

.about__media::before {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 170px;
  height: 170px;
  border-top: 10px solid var(--yellow);
  border-right: 10px solid var(--yellow);
  content: "";
}

.about__media img {
  width: 100%;
  height: 650px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

.about__badge {
  position: absolute;
  right: -34px;
  bottom: 42px;
  display: flex;
  width: 180px;
  min-height: 132px;
  flex-direction: column;
  justify-content: center;
  padding: 23px;
  border-radius: 10px;
  color: var(--black);
  background: var(--yellow);
  box-shadow: 0 18px 42px rgba(16, 18, 20, 0.2);
}

.about__badge strong,
.about__badge span {
  font-family: "Barlow Condensed", Impact, sans-serif;
  line-height: 1;
  text-transform: uppercase;
}

.about__badge strong {
  font-size: 3rem;
}

.about__badge span {
  margin-top: 7px;
  font-size: 0.92rem;
  font-weight: 700;
}

.about__content > p {
  max-width: 650px;
  margin-bottom: 18px;
}

.about__points {
  display: grid;
  gap: 13px;
  margin: 30px 0;
}

.about__points div {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #3d4349;
  font-size: 0.94rem;
  font-weight: 700;
}

.about__points svg {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  padding: 4px;
  border-radius: 50%;
  color: var(--black);
  background: var(--yellow);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--yellow);
  color: var(--black);
  font-size: 0.92rem;
  font-weight: 800;
}

.text-link svg {
  width: 18px;
  height: 18px;
  transition: transform var(--transition);
}

.text-link:hover svg {
  transform: translateX(4px);
}

.schedule-location {
  background: var(--surface-alt);
}

.info-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 24px;
}

.info-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(16, 18, 20, 0.05);
}

.info-card--schedule {
  padding: 36px;
}

.info-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
}

.info-card__header > div:last-child > span,
.map-copy > span {
  color: #8f6c00;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.info-card__header h3,
.map-copy h3 {
  margin: 4px 0 0;
  font-size: 1.65rem;
}

.info-card__icon {
  display: grid;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 14px;
  color: var(--black);
  background: var(--yellow);
}

.info-card__icon svg {
  width: 25px;
  height: 25px;
}

.schedule-list {
  margin: 0;
}

.schedule-list > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid var(--border);
}

.schedule-list dt {
  color: #4f555b;
  font-size: 0.91rem;
  font-weight: 600;
}

.schedule-list dd {
  margin: 0;
  color: var(--black);
  font-weight: 800;
  text-align: right;
}

.info-card__note {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 24px 0 0;
  padding: 14px;
  border-radius: 9px;
  color: #66510d;
  background: var(--yellow-soft);
  font-size: 0.82rem;
  font-weight: 600;
}

.info-card__note svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 2px;
}

.info-card--map {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: stretch;
}

.map-illustration {
  position: relative;
  min-height: 410px;
  background: #e8ebee;
}

.map-illustration svg {
  width: 100%;
  height: 100%;
}

.map-illustration > span {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 7px 10px;
  border-radius: 6px;
  color: #ffffff;
  background: rgba(16, 18, 20, 0.8);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.map-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px;
  background: #ffffff;
}

.map-copy p {
  margin: 7px 0 18px;
}

.map-copy small {
  color: #8b9197;
  font-size: 0.75rem;
}

.quote-section {
  position: relative;
  min-height: 670px;
  overflow: hidden;
  color: #ffffff;
  background: var(--black);
}

.quote-section__image,
.quote-section__overlay {
  position: absolute;
  inset: 0;
}

.quote-section__image {
  background-image: url("../assets/images/farol-carro.webp");
  background-position: center;
  background-size: cover;
}

.quote-section__overlay {
  background:
    linear-gradient(90deg, rgba(8, 9, 10, 0.97) 0%, rgba(8, 9, 10, 0.78) 52%, rgba(8, 9, 10, 0.12) 90%),
    linear-gradient(180deg, rgba(8, 9, 10, 0.1), rgba(8, 9, 10, 0.38));
}

.quote-section__inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 670px;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
}

.quote-section__content {
  max-width: 690px;
}

.quote-section h2 {
  color: #ffffff;
}

.quote-section p {
  max-width: 630px;
  color: #c8cdd2;
  font-size: 1.02rem;
}

.quote-section ul {
  display: grid;
  gap: 10px;
  margin: 25px 0 30px;
  padding: 0;
  list-style: none;
}

.quote-section li {
  position: relative;
  padding-left: 27px;
  color: #eceff1;
  font-size: 0.91rem;
  font-weight: 600;
}

.quote-section li::before {
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 13px;
  height: 3px;
  background: var(--yellow);
  content: "";
}

.contact {
  background: #ffffff;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.contact-card {
  min-height: 260px;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(16, 18, 20, 0.04);
}

.contact-card__icon {
  display: grid;
  width: 50px;
  height: 50px;
  margin-bottom: 25px;
  place-items: center;
  border-radius: 13px;
  color: var(--black);
  background: var(--yellow);
}

.contact-card__icon svg {
  width: 24px;
  height: 24px;
}

.contact-card > span {
  display: block;
  margin-bottom: 8px;
  color: #8f6c00;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.contact-card > strong {
  display: block;
  overflow-wrap: anywhere;
  color: var(--black);
  font-size: 1.02rem;
}

.contact-card > small {
  display: block;
  margin-top: 11px;
  color: #8a9096;
  font-size: 0.76rem;
}

.contact-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  margin-top: 25px;
  padding: 28px 32px;
  border-radius: var(--radius-sm);
  color: #ffffff;
  background: var(--black-soft);
}

.contact-action div {
  display: flex;
  flex-direction: column;
}

.contact-action span {
  color: #aeb4ba;
  font-size: 0.8rem;
}

.contact-action strong {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1.75rem;
  line-height: 1;
  text-transform: uppercase;
}

.site-footer {
  padding: 78px 0 26px;
  color: #ffffff;
  background: #090a0b;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding-bottom: 55px;
}

.brand--footer .brand__symbol {
  width: 42px;
  height: 42px;
}

.footer-brand > p {
  max-width: 430px;
  margin: 22px 0 0;
  color: #8f969c;
  font-size: 0.9rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 45px;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-links h3 {
  margin-bottom: 19px;
  color: #ffffff;
  font-family: Inter, sans-serif;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links a,
.footer-links span {
  margin-bottom: 10px;
  color: #90979d;
  font-size: 0.86rem;
}

.footer-links a {
  transition: color var(--transition);
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  margin: 0;
  color: #777f85;
  font-size: 0.76rem;
}

.footer-bottom a {
  color: var(--yellow);
  font-weight: 700;
}

.menu-overlay {
  position: fixed;
  z-index: 1040;
  display: none;
  background: rgba(0, 0, 0, 0.58);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.menu-overlay.is-visible {
  inset: 0;
  opacity: 1;
  pointer-events: auto;
}

.demo-dialog {
  width: min(100% - 30px, 510px);
  padding: 42px;
  border: 0;
  border-radius: var(--radius-md);
  color: var(--text);
  background: #ffffff;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.35);
}

.demo-dialog::backdrop {
  background: rgba(6, 7, 8, 0.78);
  backdrop-filter: blur(5px);
}

.demo-dialog__close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 40px;
  height: 40px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--black);
  background: #ffffff;
  cursor: pointer;
}

.demo-dialog__close svg {
  width: 21px;
  height: 21px;
}

.demo-dialog__icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 16px;
  color: var(--black);
  background: var(--yellow);
}

.demo-dialog__icon svg {
  width: 29px;
  height: 29px;
}

.demo-dialog > span {
  color: #8f6c00;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.demo-dialog h2 {
  margin: 10px 0 18px;
  font-size: 2.5rem;
}

.demo-dialog p {
  margin-bottom: 26px;
  font-size: 0.94rem;
}

.demo-dialog .button {
  width: 100%;
}

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

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

:focus-visible {
  outline: 3px solid rgba(242, 183, 5, 0.55);
  outline-offset: 3px;
}

@media (max-width: 1100px) {
  .main-navigation {
    gap: 17px;
  }

  .about__grid {
    gap: 60px;
  }

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

  .advantage:nth-child(3) {
    border-right: 0;
  }

  .advantage:nth-child(-n + 3) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .advantage:nth-child(4) {
    grid-column: 1 / 2;
  }

  .info-card--map {
    grid-template-columns: 1fr;
  }

  .map-illustration {
    min-height: 300px;
  }
}

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

  .menu-toggle {
    position: relative;
    z-index: 1120;
    display: block;
  }

  .main-navigation {
    position: fixed;
    top: var(--demo-height);
    right: 0;
    z-index: 1110;
    display: flex;
    width: min(86vw, 360px);
    height: calc(100dvh - var(--demo-height));
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 100px 25px 30px;
    background: var(--black-soft);
    box-shadow: -25px 0 65px rgba(0, 0, 0, 0.36);
    transform: translateX(110%);
    transition: transform 230ms ease;
  }

  .main-navigation.is-open {
    transform: translateX(0);
  }

  .main-navigation > a {
    padding: 16px 2px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    font-size: 1rem;
  }

  .main-navigation > a::after {
    display: none;
  }

  .main-navigation .button {
    margin-top: 24px;
  }

  .menu-overlay {
    display: block;
  }

  .hero__overlay {
    background:
      linear-gradient(90deg, rgba(7, 8, 9, 0.93), rgba(7, 8, 9, 0.63) 70%, rgba(7, 8, 9, 0.3)),
      linear-gradient(180deg, rgba(7, 8, 9, 0.15), rgba(7, 8, 9, 0.7));
  }

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

  .advantages__heading {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .about__grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 45px;
  }

  .about__media,
  .about__media img {
    min-height: 560px;
    height: 560px;
  }

  .about__badge {
    right: -20px;
  }

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

  .info-card--map {
    grid-template-columns: 1.15fr 0.85fr;
  }

  .footer-main {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 45px;
  }
}

@media (max-width: 700px) {
  :root {
    --demo-height: 48px;
  }

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

  .demo-banner__inner {
    min-height: var(--demo-height);
    flex-wrap: wrap;
    align-content: center;
    gap: 1px 6px;
    line-height: 1.2;
  }

  .demo-banner__dot {
    display: none;
  }

  .brand__symbol {
    width: 40px;
    height: 40px;
  }

  .brand__symbol svg {
    width: 34px;
    height: 34px;
  }

  .brand__copy strong {
    font-size: 1.2rem;
  }

  .brand__copy small {
    font-size: 0.59rem;
  }

  .hero {
    min-height: 760px;
    padding: calc(var(--demo-height) + var(--header-height) + 52px) 0 90px;
  }

  .hero__image {
    background-position: 59% center;
  }

  .hero__overlay {
    background:
      linear-gradient(90deg, rgba(7, 8, 9, 0.94), rgba(7, 8, 9, 0.68)),
      linear-gradient(180deg, rgba(7, 8, 9, 0.08), rgba(7, 8, 9, 0.8));
  }

  h1 {
    font-size: clamp(3.7rem, 17vw, 5rem);
  }

  h2 {
    font-size: clamp(2.55rem, 11vw, 3.5rem);
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__trust {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero__scroll {
    display: none;
  }

  .section {
    padding: 78px 0;
  }

  .section-heading,
  .section-heading--center {
    margin-bottom: 38px;
    text-align: left;
  }

  .section-heading--center .eyebrow {
    justify-content: flex-start;
  }

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

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

  .advantages {
    padding: 76px 0;
  }

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

  .advantage,
  .advantage:nth-child(3),
  .advantage:nth-child(4),
  .advantage:last-child {
    min-height: auto;
    grid-column: auto;
    padding: 27px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .advantage:last-child {
    border-bottom: 0;
  }

  .advantage > span {
    margin-bottom: 18px;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .about__media,
  .about__media img {
    min-height: 520px;
    height: 520px;
  }

  .about__badge {
    right: 16px;
    bottom: -25px;
  }

  .info-card--schedule {
    padding: 27px;
  }

  .info-card--map {
    grid-template-columns: 1fr;
  }

  .map-illustration {
    min-height: 280px;
  }

  .map-copy {
    padding: 27px;
  }

  .quote-section,
  .quote-section__inner {
    min-height: 650px;
  }

  .quote-section__image {
    background-position: 64% center;
  }

  .quote-section__overlay {
    background: rgba(8, 9, 10, 0.78);
  }

  .contact-action {
    align-items: stretch;
    flex-direction: column;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .demo-dialog {
    padding: 34px 24px 25px;
  }
}

@media (max-width: 430px) {
  .brand__copy small {
    display: none;
  }

  .brand__copy strong {
    font-size: 1.08rem;
  }

  .hero__content > p {
    font-size: 1rem;
  }

  .button {
    padding-right: 17px;
    padding-left: 17px;
    font-size: 0.9rem;
  }

  .schedule-list > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .schedule-list dd {
    text-align: left;
  }

  .contact-action {
    padding: 24px;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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