:root {
  --black: #0b0b0a;
  --black-soft: #171613;
  --orange: #ef4c17;
  --orange-dark: #b92d0d;
  --cream: #fff5e6;
  --paper: #f1e7d7;
  --green: #25d366;
  --muted: #766e63;
  --line: rgba(255, 245, 230, 0.16);
  --max: 1200px;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--black);
  background: var(--cream);
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body,
button,
a {
  cursor: default;
}

a,
button {
  cursor: pointer;
}

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

img,
svg {
  display: block;
}

button {
  font: inherit;
}

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

.sr-only {
  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: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  color: var(--black);
  background: var(--cream);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: none;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  color: var(--cream);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.scrolled {
  background: rgba(11, 11, 10, 0.93);
  border-color: var(--line);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  min-height: 96px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  position: relative;
  display: block;
  width: 188px;
  height: 76px;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.main-nav > a:not(.button) {
  position: relative;
  padding-block: 12px;
}

.main-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s var(--ease);
}

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

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 12px;
  background: transparent;
  border: 0;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin-block: 6px;
  background: var(--cream);
  transition: transform 0.25s ease;
}

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 0 28px;
  color: var(--cream);
  background: var(--orange);
  border: 2px solid var(--orange);
  box-shadow: 6px 6px 0 var(--black);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.2s var(--ease);
}

.button:hover,
.button:focus-visible {
  color: var(--black);
  background: var(--cream);
  box-shadow: 3px 3px 0 var(--orange);
  transform: translate(3px, 3px);
}

.button svg {
  width: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.button-small {
  min-height: 44px;
  padding-inline: 18px;
  box-shadow: 4px 4px 0 rgba(255, 245, 230, 0.25);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 34px;
  height: 3px;
  background: var(--orange);
}

.eyebrow-orange {
  color: var(--orange-dark);
}

.hero {
  position: relative;
  display: flex;
  min-height: 780px;
  height: 100svh;
  align-items: center;
  overflow: hidden;
  color: var(--cream);
  background: var(--black);
}

.hero-media,
.hero-noise {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: linear-gradient(90deg, rgba(8, 8, 7, 0.86) 0%, rgba(8, 8, 7, 0.55) 38%, rgba(8, 8, 7, 0.05) 72%), url("/assets/hero-gasoline-v2.webp");
  background-position: center;
  background-size: cover;
  transform: scale(1.01);
}

.hero-noise,
.links-noise {
  opacity: 0.11;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.86' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}

.hero::before {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 10%;
  width: 8px;
  height: 64%;
  background: var(--orange);
  content: "";
  opacity: 0.75;
  transform: skewX(-14deg);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 100px;
  padding-bottom: 110px;
}

.hero-copy {
  width: min(760px, 68%);
}

.hero h1,
.section h2,
.about h2,
.final-cta h2 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.9;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(66px, 8.4vw, 126px);
}

.hero h1 em,
.section h2 em,
.about h2 em,
.final-cta h2 em {
  color: var(--orange);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.06em;
  text-transform: none;
}

.hero-lead {
  max-width: 570px;
  margin: 30px 0 0;
  color: rgba(255, 245, 230, 0.76);
  font-size: 17px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 38px;
}

.text-link {
  position: relative;
  padding-block: 9px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.text-link::after {
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 2px;
  background: currentColor;
  content: "";
  transition: transform 0.25s ease;
  transform-origin: left;
}

.text-link:hover::after,
.text-link:focus-visible::after {
  transform: scaleX(0.4);
}

.hero-stamp {
  position: absolute;
  right: 10px;
  bottom: 140px;
  display: flex;
  width: 162px;
  height: 162px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 2px solid rgba(255, 245, 230, 0.58);
  border-radius: 50%;
  text-align: center;
  transform: rotate(-8deg);
}

.hero-stamp::before {
  position: absolute;
  inset: 8px;
  border: 1px dashed var(--orange);
  border-radius: inherit;
  content: "";
}

.hero-stamp span,
.hero-stamp small {
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-stamp strong {
  color: var(--orange);
  font-family: Impact, sans-serif;
  font-size: 51px;
  line-height: 0.95;
}

.hero-ticker {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  padding: 13px 0 11px;
  color: var(--black);
  background: var(--orange);
  border-top: 3px solid var(--cream);
  border-bottom: 3px solid var(--black);
  white-space: nowrap;
}

.hero-ticker div {
  width: max-content;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.section {
  padding-block: 125px;
}

.services {
  position: relative;
  background-color: var(--cream);
  background-image: linear-gradient(rgba(11, 11, 10, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(11, 11, 10, 0.025) 1px, transparent 1px);
  background-size: 42px 42px;
}

.services::after {
  position: absolute;
  right: 3%;
  bottom: 30px;
  color: rgba(11, 11, 10, 0.035);
  content: "GASOLINE";
  font-family: Impact, sans-serif;
  font-size: 16vw;
  letter-spacing: -0.05em;
  pointer-events: none;
}

.section-heading {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: end;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 90px;
}

.section h2,
.visit h2,
.about h2 {
  font-size: clamp(58px, 6.6vw, 96px);
}

.section-heading > p {
  max-width: 430px;
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.service-grid {
  position: relative;
  z-index: 1;
  display: grid;
  margin-top: 72px;
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  position: relative;
  min-height: 450px;
  padding: 35px;
  background: var(--paper);
  border: 2px solid var(--black);
  border-right: 0;
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
}

.service-card:last-child {
  border-right: 2px solid var(--black);
}

.service-card:hover {
  z-index: 2;
  box-shadow: 10px 10px 0 var(--orange);
  transform: translateY(-8px) rotate(-0.6deg);
}

.service-card-orange {
  color: var(--cream);
  background: var(--orange);
}

.service-card-dark {
  color: var(--cream);
  background: var(--black-soft);
}

.service-index {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.service-icon {
  width: 74px;
  height: 74px;
  margin: 55px 0 32px;
  padding: 14px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.service-card h3 {
  margin: 0 0 14px;
  font-family: Impact, "Arial Narrow Bold", sans-serif;
  font-size: 44px;
  font-weight: 900;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.service-card p {
  max-width: 290px;
  margin: 0;
  color: inherit;
  font-size: 14px;
  line-height: 1.65;
  opacity: 0.68;
}

.service-card > a {
  position: absolute;
  right: 35px;
  bottom: 32px;
  left: 35px;
  display: flex;
  justify-content: space-between;
  padding-top: 15px;
  border-top: 2px solid currentColor;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.about {
  position: relative;
  overflow: hidden;
  color: var(--cream);
  background: var(--black-soft);
  border-top: 10px solid var(--orange);
}

.about::after {
  position: absolute;
  top: 50%;
  right: -160px;
  width: 520px;
  height: 520px;
  border: 22px solid rgba(255, 245, 230, 0.025);
  border-radius: 50%;
  box-shadow: 0 0 0 48px rgba(255, 245, 230, 0.015), 0 0 0 90px rgba(255, 245, 230, 0.008);
  content: "";
  transform: translateY(-50%);
}

.about-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 610px;
  align-items: center;
  grid-template-columns: 1.15fr 0.65fr;
  gap: 120px;
  padding-block: 100px;
}

.about-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 34px 0 0;
  color: rgba(255, 245, 230, 0.66);
  font-size: 16px;
  line-height: 1.75;
}

.rating-card {
  padding: 42px;
  color: var(--black);
  background: var(--cream);
  border: 4px solid var(--orange);
  box-shadow: 12px 12px 0 rgba(0, 0, 0, 0.35);
}

.rating-label {
  display: block;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.rating-card > strong {
  display: block;
  margin-top: 16px;
  font-family: Impact, "Arial Narrow Bold", sans-serif;
  font-size: 100px;
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.rating-stars {
  margin-top: 13px;
  color: var(--orange);
  font-size: 20px;
  letter-spacing: 0.11em;
}

.rating-card p {
  margin: 8px 0 26px;
  color: var(--muted);
  font-size: 13px;
}

.rating-card a {
  display: flex;
  justify-content: space-between;
  padding-top: 15px;
  border-top: 2px solid var(--black);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.visit {
  background: var(--paper);
}

.visit-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 0.82fr;
  gap: 100px;
}

.visit-address {
  margin: 32px 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.visit-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}

.review-link {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--orange);
}

.hours-card {
  padding: 46px;
  color: var(--cream);
  background: var(--black);
  border: 2px solid var(--black);
  box-shadow: 14px 14px 0 var(--orange);
}

.hours-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 27px;
  border-bottom: 1px solid var(--line);
  font-family: Impact, sans-serif;
  font-size: 29px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.open-status {
  position: relative;
  padding-left: 16px;
  color: #a59e93;
  font-family: Arial, sans-serif;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.open-status::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 7px;
  height: 7px;
  background: #858079;
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.open-status.is-open {
  color: #70d28d;
}

.open-status.is-open::before {
  background: #4fca72;
  box-shadow: 0 0 0 4px rgba(79, 202, 114, 0.14);
}

.hours-card dl {
  margin: 12px 0 0;
}

.hours-card dl > div {
  display: flex;
  justify-content: space-between;
  padding-block: 19px;
  border-bottom: 1px solid var(--line);
}

.hours-card dt,
.hours-card dd {
  font-size: 13px;
}

.hours-card dt {
  color: rgba(255, 245, 230, 0.58);
}

.hours-card dd {
  margin: 0;
  font-weight: 800;
}

.hours-card > p {
  margin: 21px 0 0;
  color: rgba(255, 245, 230, 0.38);
  font-size: 10px;
}

.final-cta {
  position: relative;
  overflow: hidden;
  color: var(--cream);
  background: var(--orange);
}

.final-cta::before {
  position: absolute;
  top: -100px;
  left: 45%;
  width: 500px;
  height: 500px;
  border: 50px solid rgba(11, 11, 10, 0.08);
  border-radius: 50%;
  content: "";
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 380px;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding-block: 70px;
}

.final-cta .eyebrow span {
  background: var(--cream);
}

.final-cta h2 {
  font-size: clamp(58px, 6vw, 90px);
}

.final-cta h2 em {
  color: var(--black);
}

.button-cream {
  flex: 0 0 auto;
  color: var(--black);
  background: var(--cream);
  border-color: var(--cream);
  box-shadow: 7px 7px 0 var(--black);
}

.button-cream:hover {
  color: var(--cream);
  background: var(--black);
}

.site-footer {
  color: var(--cream);
  background: var(--black);
}

.footer-main {
  display: grid;
  min-height: 210px;
  align-items: center;
  grid-template-columns: 1fr 1.4fr auto;
  gap: 50px;
  border-bottom: 1px solid var(--line);
}

.footer-brand {
  display: block;
  width: 220px;
}

.footer-brand img {
  width: 100%;
  height: auto;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 9px;
  color: rgba(255, 245, 230, 0.52);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-contact a {
  color: var(--cream);
  font-size: 16px;
}

.social-icons,
.link-socials {
  display: flex;
  gap: 10px;
}

.social-icons a,
.link-socials a {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--cream);
  border: 1px solid rgba(255, 245, 230, 0.28);
  border-radius: 50%;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.social-icons a:hover,
.link-socials a:hover {
  color: var(--black);
  background: var(--orange);
  border-color: var(--orange);
  transform: rotate(-7deg) translateY(-2px);
}

.social-icons svg,
.link-socials svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.social-icons svg path:first-child,
.link-socials svg path:first-child {
  fill: currentColor;
  stroke: none;
}

.social-icons .fill,
.link-socials .fill {
  fill: currentColor;
  stroke: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-block: 24px;
  color: rgba(255, 245, 230, 0.32);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer-bottom p {
  margin: 0;
}

.whatsapp-float {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 22px;
  display: flex;
  min-height: 52px;
  align-items: center;
  gap: 9px;
  padding: 0 18px;
  color: #062d14;
  background: var(--green);
  border: 2px solid var(--black);
  border-radius: 28px;
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.45);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.2s var(--ease), box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.6);
  transform: translate(3px, 3px);
}

.whatsapp-float svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

.service-grid .reveal:nth-child(2) {
  transition-delay: 0.1s;
}

.service-grid .reveal:nth-child(3) {
  transition-delay: 0.2s;
}

/* Página de links */
.links-page {
  min-height: 100svh;
  color: var(--cream);
  background: var(--black);
}

.links-shell {
  position: relative;
  display: grid;
  min-height: 100svh;
  place-items: center;
  overflow: hidden;
  padding: 50px 20px;
  background-image: linear-gradient(90deg, rgba(11, 11, 10, 0.94), rgba(11, 11, 10, 0.78)), url("/assets/hero-gasoline-v2.webp");
  background-position: center;
  background-size: cover;
}

.links-noise {
  position: absolute;
  inset: 0;
}

.links-card {
  position: relative;
  z-index: 2;
  width: min(100%, 610px);
  text-align: center;
}

.links-logo {
  display: block;
  width: min(280px, 70vw);
  margin-inline: auto;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.42));
}

.links-logo img {
  width: 100%;
  height: auto;
}

.links-location {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 13px 0 0;
  color: rgba(255, 245, 230, 0.53);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.links-location span {
  width: 22px;
  height: 2px;
  background: var(--orange);
}

.links-tagline {
  margin: 12px 0 27px;
  color: var(--cream);
  font-family: Georgia, serif;
  font-size: 16px;
  font-style: italic;
}

.link-list {
  display: grid;
  gap: 10px;
}

.link-item {
  display: grid;
  min-height: 78px;
  align-items: center;
  padding: 12px 18px;
  text-align: left;
  background: rgba(255, 245, 230, 0.065);
  border: 1px solid rgba(255, 245, 230, 0.22);
  backdrop-filter: blur(9px);
  grid-template-columns: 46px 1fr auto;
  gap: 14px;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s var(--ease), box-shadow 0.2s ease;
}

.link-item:hover,
.link-item:focus-visible {
  background: rgba(255, 245, 230, 0.12);
  border-color: var(--cream);
  box-shadow: 5px 5px 0 var(--orange);
  transform: translate(-3px, -3px);
}

.link-item-primary {
  color: var(--cream);
  background: var(--orange);
  border-color: var(--orange);
}

.link-item-primary:hover,
.link-item-primary:focus-visible {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
}

.link-item-whatsapp {
  border-color: rgba(37, 211, 102, 0.55);
}

.link-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 245, 230, 0.32);
  border-radius: 50%;
}

.link-icon svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.link-item > span:nth-child(2) {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.link-item small {
  color: rgba(255, 245, 230, 0.5);
  font-size: 9px;
  letter-spacing: 0.04em;
}

.link-item strong {
  font-family: Impact, "Arial Narrow Bold", sans-serif;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.link-arrow {
  color: rgba(255, 245, 230, 0.55);
  font-size: 16px;
}

.review-card {
  display: grid;
  align-items: center;
  margin-top: 15px;
  padding: 20px;
  color: var(--black);
  background: var(--cream);
  border: 4px solid var(--orange);
  grid-template-columns: 138px 1fr;
  gap: 22px;
  text-align: left;
  transform: rotate(-0.5deg);
}

.review-qr {
  display: block;
  padding: 6px;
  background: var(--cream);
  border: 2px solid var(--black);
}

.review-qr img {
  width: 100%;
  height: auto;
}

.review-stars {
  color: var(--orange);
  font-size: 13px;
  letter-spacing: 0.12em;
}

.review-card h2 {
  margin: 5px 0 4px;
  font-family: Impact, sans-serif;
  font-size: 25px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.review-card p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.review-button {
  display: inline-flex;
  gap: 8px;
  color: var(--orange-dark);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 2px solid currentColor;
}

.link-socials {
  justify-content: center;
  margin-top: 24px;
}

.back-site {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding: 8px;
  color: rgba(255, 245, 230, 0.62);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.back-site:hover {
  color: var(--orange);
}

@media (max-width: 980px) {
  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    display: flex;
    width: min(84vw, 390px);
    height: 100svh;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    padding: 95px 40px 50px;
    color: var(--cream);
    background: var(--black);
    border-left: 8px solid var(--orange);
    transform: translateX(105%);
    transition: transform 0.35s var(--ease);
  }

  .main-nav.is-open {
    transform: none;
  }

  .main-nav > a:not(.button) {
    width: 100%;
    padding-block: 15px;
    border-bottom: 1px solid var(--line);
    font-family: Impact, sans-serif;
    font-size: 24px;
    letter-spacing: 0.02em;
  }

  .main-nav .button {
    width: 100%;
    margin-top: 20px;
  }

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

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

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

  .hero {
    height: auto;
  }

  .hero-inner {
    display: block;
    padding-top: 180px;
    padding-bottom: 170px;
  }

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

  .hero-stamp {
    right: 25px;
    bottom: 95px;
  }

  .section-heading,
  .about-grid,
  .visit-grid {
    grid-template-columns: 1fr;
  }

  .section-heading,
  .visit-grid {
    gap: 50px;
  }

  .about-grid {
    gap: 70px;
  }

  .about-copy {
    max-width: 720px;
  }

  .visit-grid {
    max-width: 760px;
  }

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

  .social-icons {
    grid-column: 2;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 32px), var(--max));
  }

  .header-inner {
    min-height: 82px;
  }

  .brand {
    width: 143px;
    height: 66px;
  }

  .hero {
    min-height: 790px;
  }

  .hero-media {
    background-image: linear-gradient(90deg, rgba(8, 8, 7, 0.88), rgba(8, 8, 7, 0.58)), url("/assets/hero-gasoline-v2.webp");
    background-position: 61% center;
  }

  .hero::before {
    display: none;
  }

  .hero-inner {
    padding-top: 150px;
    padding-bottom: 154px;
  }

  .hero h1 {
    font-size: clamp(54px, 17vw, 76px);
  }

  .hero-lead {
    max-width: 410px;
    font-size: 15px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 17px;
  }

  .hero-actions .text-link {
    align-self: flex-start;
  }

  .hero-stamp {
    right: 26px;
    bottom: 73px;
    width: 104px;
    height: 104px;
  }

  .hero-stamp strong {
    font-size: 32px;
  }

  .hero-stamp span,
  .hero-stamp small {
    font-size: 6px;
  }

  .hero-ticker {
    padding-block: 10px 8px;
  }

  .section {
    padding-block: 88px;
  }

  .section h2,
  .visit h2,
  .about h2,
  .final-cta h2 {
    font-size: clamp(49px, 14vw, 67px);
  }

  .section-heading {
    gap: 28px;
  }

  .service-grid {
    margin-top: 48px;
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 390px;
    border-right: 2px solid var(--black);
    border-bottom: 0;
  }

  .service-card:last-child {
    border-bottom: 2px solid var(--black);
  }

  .service-icon {
    margin-top: 42px;
  }

  .about-grid {
    min-height: 0;
    gap: 50px;
    padding-block: 85px;
  }

  .rating-card {
    padding: 30px;
  }

  .rating-card > strong {
    font-size: 82px;
  }

  .visit-grid {
    gap: 58px;
  }

  .visit-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hours-card {
    padding: 30px 24px;
    box-shadow: 9px 9px 0 var(--orange);
  }

  .hours-card-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .final-cta-inner {
    min-height: 440px;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 38px;
  }

  .footer-main {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 32px;
    padding-block: 60px;
  }

  .footer-brand {
    width: 190px;
  }

  .social-icons {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }

  .whatsapp-float {
    width: 52px;
    height: 52px;
    min-height: 0;
    justify-content: center;
    padding: 0;
    border-radius: 50%;
  }

  .whatsapp-float span {
    display: none;
  }

  .links-shell {
    padding: 35px 16px;
  }

  .links-logo {
    width: 230px;
  }

  .link-item {
    min-height: 73px;
    padding-inline: 13px;
    grid-template-columns: 42px 1fr auto;
    gap: 11px;
  }

  .link-icon {
    width: 38px;
    height: 38px;
  }

  .link-item strong {
    font-size: 18px;
  }

  .review-card {
    padding: 18px;
    grid-template-columns: 102px 1fr;
    gap: 15px;
  }

  .review-card h2 {
    font-size: 20px;
  }

  .review-card p {
    font-size: 10px;
  }
}

@media (max-width: 430px) {
  .review-card {
    grid-template-columns: 1fr;
    text-align: center;
    transform: none;
  }

  .review-qr {
    width: 126px;
    margin-inline: auto;
  }

  .review-button {
    justify-content: center;
  }
}

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

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

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