:root {
  --yellow: #ffd700;
  --red: #e31e24;
  --graphite: #1a1b1f;
  --graphite-soft: #25262c;
  --brand-gray: #555555;
  --gray: #8a8f98;
  --gray-light: #c5c9d0;
  --white: #f5f5f5;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  --radius: 4px;
  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Barlow", system-ui, sans-serif;
  --header-h: 4.5rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scrollbar-width: none;
}

html::-webkit-scrollbar {
  display: none;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--gray-light);
  background: var(--graphite);
  scrollbar-width: none;
  -ms-overflow-style: none;
}

body::-webkit-scrollbar {
  display: none;
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  color: var(--white);
  line-height: 1.1;
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

h1 {
  font-size: clamp(3.5rem, 12vw, 7rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
}

h3 {
  font-size: 1.35rem;
  font-weight: 600;
}

p {
  margin: 0 0 1rem;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: var(--yellow);
  color: var(--graphite);
  font-weight: 700;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  background: rgba(26, 27, 31, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(245, 184, 0, 0.15);
  transition: box-shadow 0.3s var(--ease);
}

.site-header.is-scrolled {
  box-shadow: var(--shadow);
}

.header-inner {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}

@media (min-width: 721px) {
  .header-inner {
    position: relative;
    justify-content: center;
  }
}

.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;
}

.site-nav {
  display: flex;
  gap: 1.75rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a,
.site-nav__btn {
  position: relative;
  color: var(--gray-light);
  transition: color 0.2s var(--ease);
}

.site-nav__btn {
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  text-align: left;
  cursor: pointer;
}

.site-nav a::after,
.site-nav__btn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--yellow), var(--red));
  transform: skewX(-18deg);
  transition: width 0.25s var(--ease);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav__btn:hover,
.site-nav__btn:focus-visible {
  color: var(--white);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav__btn:hover::after,
.site-nav__btn:focus-visible::after {
  width: 100%;
}

.site-nav-label {
  color: var(--gray-light);
  cursor: default;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0;
  margin-right: auto;
  padding: 0.15rem;
  border: 1px solid rgba(245, 184, 0, 0.35);
  border-radius: 4px;
  background: var(--graphite-soft);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.lang-switch__btn {
  min-width: 2.25rem;
  padding: 0.35rem 0.45rem;
  border: 0;
  background: transparent;
  color: var(--gray-light);
  cursor: pointer;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}

.lang-switch__btn:hover,
.lang-switch__btn:focus-visible {
  color: var(--white);
}

.lang-switch__btn.is-active {
  color: var(--graphite);
  background: linear-gradient(135deg, var(--yellow), #e8a800);
}

@media (min-width: 721px) {
  .lang-switch {
    position: absolute;
    right: 0;
    margin-right: 0;
  }
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 0.75rem;
  border: 1px solid rgba(245, 184, 0, 0.35);
  background: var(--graphite-soft);
  cursor: pointer;
}

.nav-toggle-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 1.25rem;
}

.nav-toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--yellow);
  border-radius: 1px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: stretch;
  padding: calc(var(--header-h) + 1.25rem) 0 0;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background-color: var(--graphite-soft);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image:
    linear-gradient(105deg, rgba(26, 27, 31, 0.72) 0%, rgba(26, 27, 31, 0.25) 48%, rgba(26, 27, 31, 0.65) 100%),
    url("../images/mapp.jpg");
  background-image:
    linear-gradient(105deg, rgba(26, 27, 31, 0.72) 0%, rgba(26, 27, 31, 0.25) 48%, rgba(26, 27, 31, 0.65) 100%),
    image-set(
      url("../images/mapp.webp") type("image/webp"),
      url("../images/mapp.jpg") type("image/jpeg")
    );
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26, 27, 31, 0.5) 0%,
    rgba(26, 27, 31, 0.2) 38%,
    rgba(26, 27, 31, 0.88) 78%,
    rgba(26, 27, 31, 0.96) 100%
  );
  pointer-events: none;
}

.hero-accent {
  position: absolute;
  width: 42%;
  height: 120%;
  background: linear-gradient(160deg, rgba(245, 184, 0, 0.12), transparent 55%);
  transform: skewX(-14deg);
  pointer-events: none;
}

.hero-accent--left {
  left: -8%;
  top: -10%;
}

.hero-accent--right {
  right: -12%;
  bottom: -20%;
  background: linear-gradient(200deg, rgba(227, 30, 36, 0.14), transparent 60%);
}

.hero-shell {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  min-height: calc(100svh - var(--header-h) - 1.25rem);
  width: 100%;
  padding-bottom: 1.5rem;
}

.hero-main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  max-width: 36rem;
  padding-top: clamp(0.5rem, 4vh, 2.5rem);
  padding-left: clamp(1.5rem, 4vw, 2.75rem);
  animation: fade-up 0.85s var(--ease) both;
}

.hero-logo {
  display: block;
  width: min(100%, 22rem);
  height: auto;
  filter: drop-shadow(0 8px 28px rgba(0, 0, 0, 0.45));
}

.hero-lead {
  margin: 0;
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  line-height: 1.5;
  color: var(--gray-light);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-actions--nav .btn {
  text-transform: none;
  letter-spacing: 0.04em;
  font-size: 0.92rem;
  min-height: 2.75rem;
  padding: 0.65rem 1.15rem;
}

.hero-actions--nav .btn-label--short {
  display: none;
}

/* Fuel price totem — station-style board in AKRONA brand colors */
.fuel-totem {
  margin-top: 0.65rem;
  width: min(100%, 18.5rem);
  background: var(--graphite);
  border: 3px solid var(--white);
  border-radius: 3px;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.55),
    0 14px 36px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  overflow: hidden;
}

.fuel-totem__cap {
  height: 6px;
  background: linear-gradient(90deg, var(--yellow) 0%, var(--red) 100%);
}

.fuel-totem__head {
  padding: 0.5rem 0.85rem 0.42rem;
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, transparent 100%);
  border-bottom: 2px solid var(--white);
}

.fuel-totem__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.28em;
  color: var(--white);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.45);
}

.fuel-totem__rows {
  list-style: none;
  margin: 0;
  padding: 0.3rem 0 0.38rem;
}

.fuel-totem__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.55rem;
  padding: 0.42rem 0.65rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.fuel-totem__row:last-child {
  border-bottom: none;
}

.fuel-totem__label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1rem, 2.2vw, 1.12rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
}

.fuel-totem__price {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 0.12rem;
  min-width: 6.35rem;
  padding: 0.28rem 0.5rem 0.22rem;
  background: #0a0b0d;
  border: 2px solid var(--white);
  border-radius: 2px;
  box-shadow:
    inset 0 2px 10px rgba(0, 0, 0, 0.75),
    0 1px 0 rgba(255, 255, 255, 0.04);
}

.fuel-totem__digits {
  display: inline-flex;
  align-items: baseline;
  font-family: var(--font-display);
  font-variant-numeric: tabular-nums;
  line-height: 1;
  color: var(--white);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
}

.fuel-totem__whole {
  font-size: clamp(1.45rem, 3.2vw, 1.72rem);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.fuel-totem__sep {
  font-size: clamp(1.05rem, 2.4vw, 1.25rem);
  font-weight: 700;
  opacity: 0.92;
}

.fuel-totem__frac {
  font-size: clamp(1.05rem, 2.4vw, 1.25rem);
  font-weight: 700;
  letter-spacing: 0.03em;
}

.fuel-totem__unit {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--white);
  align-self: flex-end;
  padding-bottom: 0.12rem;
}

.hero-services {
  flex-shrink: 0;
  width: 100%;
  animation: fade-up 0.85s var(--ease) 0.15s both;
}

.hero-services-panel {
  position: relative;
  padding: 1.35rem 1.15rem 1.4rem;
  background: rgba(26, 27, 31, 0.9);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(138, 143, 152, 0.22);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%);
}

.hero-services-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--yellow), var(--red));
}

.hero-services .services-grid {
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 0.65rem;
  perspective: 720px;
}

@keyframes hero-service-flip {
  from {
    transform: rotateY(0deg);
  }

  to {
    transform: rotateY(180deg);
  }
}

.hero-services .service-card {
  position: relative;
  padding: 0;
  min-height: 5.5rem;
  aspect-ratio: 1 / 1.08;
  overflow: visible;
  text-align: center;
  background: rgba(37, 38, 44, 0.65);
  border-color: rgba(138, 143, 152, 0.15);
  clip-path: none;
  transform-style: preserve-3d;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease);
}

.hero-services .service-card.reveal,
.hero-services .service-card.reveal.is-visible {
  opacity: 1;
  transform: none;
  animation: none;
}

.hero-services .service-card.is-flipping {
  animation: hero-service-flip 0.5s var(--ease) forwards;
  transition: none;
}

.hero-services .service-card.is-flip-reset {
  animation: none;
  transform: rotateY(0deg);
  transition: none;
}

.hero-services .service-card__btn,
.hero-services .service-card::before,
.hero-services .service-card__btn img,
.hero-services .service-card__btn .service-card__label {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.hero-services .service-card__btn {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 5.5rem;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: center;
  cursor: pointer;
  appearance: none;
  transform-style: preserve-3d;
}

.hero-services .service-card:hover:not(.is-flipping):not(.is-flip-reset),
.hero-services .service-card:focus-within:not(.is-flipping) {
  transform: translateY(-3px);
  background: rgba(37, 38, 44, 0.95);
}

.hero-services .service-card__btn:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
}

.hero-services .service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  object-fit: cover;
  object-position: center center;
}

.hero-services .service-card__label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: block;
  margin: 0;
  padding: 0.5rem 0.35rem 0.55rem;
  font-family: var(--font-display);
  font-size: clamp(0.82rem, 1.35vw, 1.1rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.65);
  background: linear-gradient(
    to top,
    rgba(26, 27, 31, 0.94) 0%,
    rgba(26, 27, 31, 0.72) 50%,
    transparent 100%
  );
  pointer-events: none;
}

/* Service detail dialog */
.service-dialog {
  width: min(92vw, 28rem);
  max-width: none;
  max-height: min(88vh, 32rem);
  margin: auto;
  padding: 0;
  border: 1px solid rgba(245, 184, 0, 0.35);
  border-radius: var(--radius);
  background: transparent;
  color: var(--gray-light);
  box-shadow: var(--shadow);
  overflow: visible;
}

.service-dialog::backdrop {
  background: rgba(10, 11, 13, 0.82);
  backdrop-filter: blur(4px);
}

.service-dialog__panel {
  position: relative;
  padding: 2rem 1.5rem 1.5rem;
  background: var(--graphite-soft);
  border-radius: inherit;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%);
}

.service-dialog__panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--yellow), var(--red));
  border-radius: var(--radius) var(--radius) 0 0;
}

.service-dialog__close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: rgba(26, 27, 31, 0.6);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.service-dialog__close:hover,
.service-dialog__close:focus-visible {
  background: var(--yellow);
  color: var(--graphite);
  outline: none;
}

.service-dialog.has-photo {
  width: min(92vw, 22rem);
  max-height: min(92vh, 40rem);
}

.service-dialog.has-photo-grid {
  width: min(92vw, 26rem);
}

.service-dialog.has-lpg {
  width: min(94vw, 34rem);
  max-height: min(92vh, 44rem);
}

.service-dialog__lpg-intro {
  margin: 0 0 1rem;
  font-size: 0.98rem;
  line-height: 1.5;
  text-align: center;
  color: var(--gray-light);
}

.service-dialog__lpg-tanks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
  margin: 0 0 0.85rem;
}

.lpg-tank-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  text-align: center;
  background: var(--white);
  border: 1px solid rgba(138, 143, 152, 0.28);
  border-radius: var(--radius);
}

.lpg-tank-card__figure {
  margin: 0;
  padding: 0.5rem 0.35rem 0.25rem;
  background: var(--white);
}

.lpg-tank-card__figure picture,
.lpg-tank-card__figure img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 5.5rem;
  margin: 0 auto;
  object-fit: contain;
}

.lpg-tank-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 0.35rem 0.4rem 0.55rem;
  background: linear-gradient(180deg, #c41e24 0%, #9e1218 72%, #7a0e12 100%);
}

.lpg-tank-card__size {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--white);
}

.lpg-tank-card__fuel {
  margin-top: 0.15rem;
  font-size: 0.6rem;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.88);
}

.lpg-tank-card__price {
  margin-top: 0.3rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--yellow);
}

.lpg-tank-card__from {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.service-dialog__lpg-car {
  margin: 0 0 1rem;
}

.lpg-car-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 0.85rem;
  background: rgba(26, 27, 31, 0.55);
  border: 1px solid rgba(138, 143, 152, 0.28);
  border-radius: var(--radius);
}

.lpg-car-card__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0.35rem;
  background: var(--white);
  border: 2px solid var(--graphite);
  border-radius: 50%;
}

.lpg-car-card__brand img {
  display: block;
  width: auto;
  max-width: 3.25rem;
  height: auto;
  max-height: 1.35rem;
  object-fit: contain;
}

.lpg-car-card__text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  text-align: left;
}

.lpg-car-card__label {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
}

.lpg-car-card__fuel {
  font-size: 0.8rem;
  color: var(--gray);
}

.lpg-car-card__price {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 4vw, 1.75rem);
  font-weight: 800;
  color: var(--white);
  white-space: nowrap;
}

.service-dialog.has-photo-grid #service-dialog-photo {
  display: none !important;
}

.service-dialog__photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin: 0 0 1rem;
}

.service-dialog__photo-grid .service-dialog__photo {
  margin: 0;
}

.service-dialog__photo {
  margin: 0 0 1rem;
  border: 1px solid rgba(138, 143, 152, 0.28);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--graphite);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-dialog__photo img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(16rem, 44vh);
  object-fit: contain;
  object-position: center center;
}

.service-dialog__photo-grid .service-dialog__photo img {
  max-height: min(11rem, 30vh);
}

.service-dialog[data-service="carProducts"] .service-dialog__photo-grid .service-dialog__photo {
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.service-dialog[data-service="carProducts"] .service-dialog__photo-grid .service-dialog__photo img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center center;
}

.service-dialog[data-service="petrol"] .service-dialog__photo,
.service-dialog[data-service="fuel"] .service-dialog__photo,
.service-dialog[data-service="diesel"] .service-dialog__photo,
.service-dialog[data-service="coffee"] .service-dialog__photo {
  display: block;
  aspect-ratio: 4 / 3;
}

.service-dialog[data-service="petrol"] .service-dialog__photo picture,
.service-dialog[data-service="fuel"] .service-dialog__photo picture,
.service-dialog[data-service="diesel"] .service-dialog__photo picture,
.service-dialog[data-service="coffee"] .service-dialog__photo picture {
  display: block;
  width: 100%;
  height: 100%;
}

.service-dialog[data-service="petrol"] .service-dialog__photo img,
.service-dialog[data-service="fuel"] .service-dialog__photo img,
.service-dialog[data-service="diesel"] .service-dialog__photo img,
.service-dialog[data-service="coffee"] .service-dialog__photo img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center 30%;
}

.service-dialog[data-service="ev"] .service-dialog__photo {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1161 / 1929;
}

.service-dialog[data-service="ev"] .service-dialog__photo picture {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.service-dialog[data-service="ev"] .service-dialog__photo img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
  object-position: center center;
}

.service-dialog__icon {
  display: none !important;
}

.service-dialog--text-only .service-dialog__photo,
.service-dialog--text-only .service-dialog__photo-grid {
  display: none !important;
}

.service-dialog__title {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 5vw, 2.25rem);
  text-align: center;
}

.service-dialog__body {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.55;
  text-align: center;
}

body.service-dialog-open {
  overflow: hidden;
}

@media (max-width: 540px) {
  .service-dialog__lpg-tanks {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .lpg-tank-card {
    flex-direction: row;
    align-items: stretch;
  }

  .lpg-tank-card__figure {
    flex: 0 0 5.5rem;
    display: flex;
    align-items: center;
    padding: 0.5rem;
  }

  .lpg-tank-card__figure img {
    max-height: 4.5rem;
  }

  .lpg-tank-card__body {
    flex: 1;
    align-items: flex-start;
    text-align: left;
    padding: 0.55rem 0.65rem;
  }

  .lpg-tank-card__price {
    margin-top: auto;
    width: 100%;
    text-align: right;
  }

  .service-dialog__photo-grid {
    grid-template-columns: 1fr;
  }

  .service-dialog {
    width: 100%;
    max-width: none;
    height: 100%;
    max-height: none;
    margin: 0;
    border: 0;
    border-radius: 0;
  }

  .service-dialog__panel {
    min-height: 100%;
    padding: 3rem 1.25rem 2rem;
    clip-path: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .service-dialog__body {
    max-width: 22rem;
    margin-inline: auto;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.75rem 1.6rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transform: skewX(-10deg);
  transition: transform 0.2s var(--ease), filter 0.2s var(--ease);
}

.btn > * {
  transform: skewX(10deg);
}

.btn:hover,
.btn:focus-visible {
  transform: skewX(-10deg) translateY(-2px);
  filter: brightness(1.08);
}

.btn-primary {
  background: linear-gradient(135deg, var(--yellow) 0%, #ffd54f 100%);
  color: var(--graphite);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  box-shadow: inset 0 0 0 2px rgba(245, 245, 245, 0.35);
}

.text-link {
  color: var(--yellow);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

/* Sections */
.section {
  padding: 5.5rem 0;
  position: relative;
}

.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--yellow), var(--red), transparent);
  transform: skewY(-0.5deg);
  opacity: 0.65;
}

.section-title {
  margin: 0 0 1.25rem;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
}

.section-tag {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
}

.section-intro {
  max-width: 38rem;
  color: var(--gray);
}

.section-head--center {
  text-align: center;
}

.section-head--center .section-intro {
  margin-inline: auto;
}

/* Service cards (hero) */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1rem;
}

.service-card {
  position: relative;
  padding: 1.25rem 1rem;
  background: var(--graphite);
  border: 1px solid rgba(138, 143, 152, 0.18);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--yellow), var(--red));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(245, 184, 0, 0.35);
}

.service-card:hover::before,
.service-card:focus-within::before {
  transform: scaleX(1);
}

.service-card img {
  display: block;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: rgba(37, 38, 44, 0.9);
  border: 1px solid rgba(245, 184, 0, 0.18);
  padding: 0.45rem;
  box-sizing: border-box;
  object-fit: contain;
  margin-bottom: 0.65rem;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.35));
}

.service-card__label,
.service-card h3 {
  margin: 0;
  font-size: 1.1rem;
}

.service-card.is-visible {
  animation: fade-up 0.6s var(--ease) both;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.about-media {
  position: relative;
}

.about-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: contain;
  clip-path: polygon(14px 0, 100% 0, 100% 100%, 0 100%, 0 14px);
}

.about-media-accent {
  position: absolute;
  right: -1rem;
  bottom: -1rem;
  width: 55%;
  height: 55%;
  border: 3px solid var(--red);
  transform: skewX(-8deg);
  z-index: -1;
  opacity: 0.55;
}

.about-copy p {
  margin-bottom: 0.75rem;
}

.about-copy__media {
  margin-top: 1.5rem;
}

.about-copy p:last-of-type {
  margin-bottom: 0;
}

/* Reviews — mural in left panel + fade (see .reviews-bg in HTML) */
.reviews {
  position: relative;
  overflow: hidden;
  background-color: var(--graphite);
  isolation: isolate;
}

.reviews-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.reviews-bg__media {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: clamp(260px, 44vw, 520px);
  overflow: hidden;
}

.reviews-bg__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      var(--graphite) 0%,
      rgba(26, 27, 31, 0.92) 4%,
      rgba(26, 27, 31, 0.35) 14%,
      transparent 26%
    ),
    linear-gradient(
      90deg,
      transparent 0%,
      rgba(26, 27, 31, 0.35) 30%,
      rgba(26, 27, 31, 0.82) 58%,
      var(--graphite) 100%
    );
  pointer-events: none;
}

.reviews-bg__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 38% 8%;
  transform: scale(1.06);
  transform-origin: 38% 8%;
}

.reviews-bg__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(26, 27, 31, 0.12) 0%,
    rgba(26, 27, 31, 0.5) clamp(220px, 38vw, 400px),
    rgba(26, 27, 31, 0.9) clamp(300px, 52vw, 560px),
    rgba(26, 27, 31, 0.97) 72%
  );
}

.reviews .container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  padding-inline: 0;
}

@media (max-width: 720px) {
  .reviews-bg__media {
    top: 0;
    left: 0;
    right: 0;
    bottom: auto;
    width: 100%;
    height: min(42vh, 280px);
  }

  .reviews-bg__media img {
    object-position: 42% 6%;
    transform: scale(1.08);
    transform-origin: 42% 6%;
  }

  .reviews-bg__shade {
    background: linear-gradient(
      180deg,
      rgba(26, 27, 31, 0.08) 0%,
      rgba(26, 27, 31, 0.55) min(36vh, 240px),
      rgba(26, 27, 31, 0.94) min(46vh, 300px),
      rgba(26, 27, 31, 0.98) 58%
    );
  }
}

.reviews-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(300px, 340px);
  gap: 1rem;
  overflow-x: auto;
  padding: 0.25rem max(1rem, calc((100vw - 1120px) / 2 + 1rem)) 1.25rem
    max(1rem, calc((100vw - 1120px) / 2 + 1rem));
  scroll-snap-type: x mandatory;
  scroll-padding-inline: max(1rem, calc((100vw - 1120px) / 2 + 1rem));
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.reviews-track::-webkit-scrollbar {
  display: none;
}

.review-card:last-child {
  scroll-snap-align: end;
}

.reviews .section-title {
  padding-inline: max(1rem, calc((100vw - 1120px) / 2 + 1rem));
  text-align: center;
}

.review-card {
  scroll-snap-align: start;
  scroll-snap-stop: always;
  padding: 1rem 1.15rem;
  background: var(--graphite-soft);
  border: 1px solid rgba(138, 143, 152, 0.2);
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
  color: var(--gray-light);
  font-size: 0.9rem;
  line-height: 1.45;
}

.review-header {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.review-avatar {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  object-fit: cover;
  background: var(--graphite);
}

.review-header-text {
  flex: 1;
  min-width: 0;
}

.review-author {
  margin: 0 0 0.15rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
}

.review-rating-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
}

.review-stars {
  color: #fbbc04;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  line-height: 1;
}

.review-date {
  font-size: 0.8rem;
  color: var(--gray);
  white-space: nowrap;
}

.review-google-badge {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #4285f4 0%, #34a853 45%, #fbbc04 70%, #ea4335 100%);
  color: transparent;
  font-size: 0;
  overflow: hidden;
}

.review-body {
  margin: 0;
  color: var(--gray-light);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.25fr;
  gap: 1.5rem;
}

.contact-details {
  display: grid;
  gap: 1rem;
}

.contact-card {
  padding: 1.25rem 1.35rem;
  background: var(--graphite-soft);
  border: 1px solid rgba(138, 143, 152, 0.2);
}

.contact-card h3 {
  margin-bottom: 0.35rem;
  font-size: 1.1rem;
  color: var(--yellow);
}

.contact-card p {
  margin: 0;
}

.contact-card a:hover,
.contact-card a:focus-visible {
  color: var(--yellow);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.social-links a {
  font-weight: 600;
  color: var(--white);
}

.social-links a[aria-disabled="true"] {
  opacity: 0.4;
  pointer-events: none;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  grid-column: 1 / -1;
}

.contact-map {
  min-height: 320px;
  border: 2px solid rgba(245, 184, 0, 0.25);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%);
  overflow: hidden;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

/* Footer */
.site-footer {
  padding: 2rem 0;
  border-top: 1px solid rgba(138, 143, 152, 0.2);
  background: #121316;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  text-align: center;
}

.footer-copy {
  margin: 0;
  font-size: 0.9rem;
  color: var(--gray);
}

.footer-notice {
  margin: 0;
  max-width: 36rem;
  font-size: 0.78rem;
  line-height: 1.45;
  color: rgba(138, 143, 152, 0.92);
}

/* Animations */
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scroll-dot {
  0%,
  100% {
    opacity: 0.3;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(10px);
  }
}

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

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

/* Responsive */
@media (max-width: 900px) {
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-map {
    order: -1;
  }
}

@media (max-width: 1024px) {
  .hero-services .services-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .hero-services .service-card {
    min-height: 5rem;
    aspect-ratio: 1 / 1.05;
  }
}

@media (max-width: 720px) {
  .hero {
    min-height: 0;
    padding-top: var(--header-h);
  }

  .hero-media {
    background-image:
      linear-gradient(180deg, rgba(26, 27, 31, 0.82) 0%, rgba(26, 27, 31, 0.55) 42%, rgba(26, 27, 31, 0.92) 100%),
      url("../images/mapp.jpg");
    background-image:
      linear-gradient(180deg, rgba(26, 27, 31, 0.82) 0%, rgba(26, 27, 31, 0.55) 42%, rgba(26, 27, 31, 0.92) 100%),
      image-set(
        url("../images/mapp.webp") type("image/webp"),
        url("../images/mapp.jpg") type("image/jpeg")
      );
  }

  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(26, 27, 31, 0.72) 0%,
      rgba(26, 27, 31, 0.45) 35%,
      rgba(26, 27, 31, 0.94) 100%
    );
  }

  .hero-accent {
    opacity: 0.35;
  }

  .hero-shell {
    min-height: 0;
    justify-content: flex-start;
    gap: 0.85rem;
    padding: 0.85rem 0 1rem;
  }

  .hero-main {
    align-items: center;
    text-align: center;
    max-width: none;
    gap: 0.65rem;
    padding: 0.75rem 0.85rem;
    padding-left: 0.85rem;
    background: rgba(26, 27, 31, 0.55);
    border: 1px solid rgba(138, 143, 152, 0.15);
  }

  .hero-logo {
    width: min(78vw, 14rem);
  }

  .hero-lead {
    font-size: 0.95rem;
    line-height: 1.4;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
  }

  .hero-actions--nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem;
    width: 100%;
  }

  .hero-actions--nav .btn {
    width: 100%;
    min-height: 2.5rem;
    padding: 0.55rem 0.4rem;
    font-size: 0.78rem;
    letter-spacing: 0.02em;
  }

  .hero-actions--nav .btn-label--long {
    display: none;
  }

  .hero-actions--nav .btn-label--short {
    display: inline;
  }

  .fuel-totem {
    width: min(100%, 16.5rem);
    margin-inline: auto;
  }

  .fuel-totem__row {
    padding: 0.38rem 0.55rem;
    gap: 0.45rem;
  }

  .fuel-totem__price {
    min-width: 5.75rem;
    padding: 0.24rem 0.42rem 0.2rem;
  }

  .hero-services-panel {
    padding: 0.85rem 0.65rem 0.9rem;
  }

  .hero-services .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.45rem;
  }

  .hero-services .service-card {
    min-height: 4.75rem;
    aspect-ratio: 1 / 1;
  }

  .hero-services .service-card__label {
    font-size: clamp(0.88rem, 3.5vw, 1.15rem);
    padding: 0.55rem 0.3rem 0.6rem;
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto;
    flex-direction: column;
    gap: 0;
    padding: 1rem;
    background: rgba(26, 27, 31, 0.98);
    border-bottom: 1px solid rgba(245, 184, 0, 0.2);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a,
  .site-nav__btn,
  .site-nav-label {
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(138, 143, 152, 0.15);
  }

  .contact-actions {
    flex-direction: column;
  }

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

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

  .hero-services .service-card.is-flipping {
    animation: none;
    transform: none;
  }

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