.hero {
  position: relative;
  overflow: hidden;
  min-height: 88vh;
  display: flex;
  align-items: center;
}

.hero__orb {
  position: absolute;
  pointer-events: none;
  transition: transform 0.3s ease-out;
}

.hero__orb--a {
  top: 8%;
  right: 12%;
}

.hero__orb--b {
  bottom: 0;
  left: -6%;
  transition-duration: 0.4s;
}

.hero__orb-inner {
  border-radius: 50%;
  background: radial-gradient(circle, var(--glow), transparent 65%);
}

.hero__orb--a .hero__orb-inner {
  width: 420px;
  height: 420px;
  animation: float-a 7s ease-in-out infinite;
}

.hero__orb--b .hero__orb-inner {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, var(--glow), transparent 62%);
  animation: float-b 9s ease-in-out infinite;
}

.hero__watermark {
  position: absolute;
  top: 26px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(70px, 11vw, 170px);
  letter-spacing: 8px;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  color: var(--accent);
  opacity: 0.16;
}

:root[data-theme='day'] .hero__watermark {
  opacity: 0.22;
}

.hero__bracket {
  position: absolute;
  width: 26px;
  height: 26px;
  opacity: 0.5;
  pointer-events: none;
}

.hero__bracket--tl {
  top: 22px;
  left: 22px;
  border-left: 2px solid var(--accent);
  border-top: 2px solid var(--accent);
}

.hero__bracket--tr {
  top: 22px;
  right: 22px;
  border-right: 2px solid var(--accent);
  border-top: 2px solid var(--accent);
}

.hero__bracket--bl {
  bottom: 22px;
  left: 22px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
}

.hero__bracket--br {
  bottom: 22px;
  right: 22px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
}

.hero__cue {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  pointer-events: none;
  animation: cue-bob 2.2s ease-in-out infinite;
}

.hero__cue-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--muted);
}

.hero__cue-line {
  display: block;
  width: 1px;
  height: 26px;
  background: linear-gradient(var(--accent), transparent);
}

.hero__inner {
  position: relative;
  z-index: var(--z-base);
  max-width: var(--container);
  margin-inline: auto;
  padding: 60px var(--gutter);
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  width: 100%;
}

.hero__copy {
  flex: 1.4;
  min-width: 340px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 99px;
  padding: 7px 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2.5px;
  color: var(--muted);
  margin-bottom: 28px;
}

.hero__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-gradient);
  animation: pulse-glow 2s ease-in-out infinite;
  flex: none;
}

.hero__title {
  font-weight: 900;
  font-size: var(--fs-hero);
  line-height: 1.04;
  letter-spacing: -1.5px;
  margin-bottom: 12px;
}

.hero__rule {
  --rule-w: 220px;
  --rule-h: 8px;
  margin: 20px 0 28px;
}

.hero__sub {
  font-size: 19px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 36px;
}

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

.dial-wrap {
  flex: 1;
  min-width: 320px;
  display: flex;
  justify-content: center;
  transition: transform 0.3s ease-out;
}

.dial {
  position: relative;
  width: 400px;
  height: 400px;
}

.dial__sweep {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    transparent 74%,
    var(--glow) 92%,
    transparent 100%
  );
  animation: spin-slow 5s linear infinite;
}

.dial__ticks {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: repeating-conic-gradient(
    var(--line) 0deg 1deg,
    transparent 1deg 6deg
  );
  -webkit-mask-image: radial-gradient(
    circle,
    transparent 61%,
    black 62%,
    black 70%,
    transparent 71%
  );
  mask-image: radial-gradient(
    circle,
    transparent 61%,
    black 62%,
    black 70%,
    transparent 71%
  );
  animation: spin-slow 70s linear infinite reverse;
}

.dial__ring-dashed {
  position: absolute;
  inset: 16px;
  border-radius: 50%;
  border: 1px dashed var(--accent);
  opacity: 0.55;
  animation: spin-slow 26s linear infinite;
}

.dial__ring-solid {
  position: absolute;
  inset: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  animation: spin-slow 44s linear infinite reverse;
}

.dial__core {
  position: absolute;
  inset: 74px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--glow), transparent 70%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
}

.dial__number {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 72px;
  line-height: 1;
  filter: drop-shadow(0 0 22px var(--glow));
}

.dial__caption {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2.5px;
  color: var(--muted);
  max-width: 180px;
  text-transform: uppercase;
}

.dial__pill {
  position: absolute;
  display: inline-block;
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 8px;
  padding: 8px 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  box-shadow: 0 10px 30px var(--shadow);
  white-space: nowrap;
}

.dial__pill--1 {
  top: -6px;
  left: 6%;
  animation: float-a 6s ease-in-out infinite;
}

.dial__pill--2 {
  top: 34%;
  right: -34px;
  color: var(--accent);
  animation: float-b 7s ease-in-out infinite;
}

.dial__pill--3 {
  bottom: 8%;
  left: -20px;
  animation: float-a 8s ease-in-out infinite;
}

.dial__pill--4 {
  bottom: -14px;
  right: 14%;
  color: var(--accent);
  animation: float-b 9s ease-in-out infinite;
}

.service-card {
  overflow: hidden;
  padding: 26px 24px 30px;
  --notch: var(--notch-sm);
}

.service-card__ghost {
  position: absolute;
  top: -16px;
  right: 0;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 84px;
  line-height: 1;
}

.service-card__num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.service-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 10px;
}

.service-card__desc {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.product-card {
  cursor: pointer;
  text-align: left;
  width: 100%;
  padding: 0;
  color: inherit;
  --notch: var(--notch-md);
}

.product-card__media {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.product-card__title {
  font-weight: 700;
  font-size: 17px;
  line-height: 1.35;
  margin-bottom: 6px;
}

.product-card__brand {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--muted);
  margin-bottom: 12px;
}

.product-card__price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
}

.product-filters {
  margin-bottom: 14px;
}

.product-filters--fuel {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.about__lead {
  font-size: 22px;
  line-height: 1.65;
  max-width: 900px;
  margin-bottom: 44px;
}

.about__rule {
  margin: 16px 0 40px;
}

.about__panels {
  --min: 320px;
  margin-bottom: 56px;
}

.about__panel {
  padding: 30px;
  --notch: 22px;
}

.about__panel-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 2.5px;
  color: var(--accent);
  margin-bottom: 14px;
}

.about__panel-text {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.about__strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-block: 26px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 3px;
  color: var(--muted);
}

.about__stats {
  --min: 200px;
  --gap: 20px;
  margin-top: 56px;
}

.service__intro {
  font-size: 19px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 820px;
  margin-bottom: 48px;
}

.service__grid {
  --min: 220px;
  --gap: 16px;
  margin-bottom: 64px;
}

.booking {
  padding: 40px;
  max-width: 680px;
  margin-inline: auto;
  --notch: var(--notch-lg);
}

.booking__title {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 24px;
}

.news-item {
  display: flex;
  flex-wrap: wrap;
  --notch: var(--notch-md);
}

.news-item__media {
  width: 240px;
  flex: none;
  object-fit: cover;
  align-self: stretch;
}

.news-item__body {
  padding: 28px 30px;
  flex: 1;
  min-width: 280px;
}

.news-item__date {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 12px;
}

.news-item__title {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 12px;
}

.news-item__text {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.news-teaser {
  padding: 26px 26px 28px;
  --notch: var(--notch-sm);
}

.news-teaser__title {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 10px;
  text-wrap: balance;
}

.news-teaser__excerpt {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.gallery-grid {
  --min: 300px;
}

.gallery-figure {
  --notch: 22px;
}

.gallery-figure__media {
  width: 100%;
  height: 240px;
  object-fit: cover;
  cursor: zoom-in;
}

.gallery-figure__caption {
  padding: 16px 20px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 1.5px;
  color: var(--muted);
}

.lightbox__image {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  background: var(--bg);
}

.contacts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  --notch: 26px;
}

.contact-row {
  display: flex;
  gap: 20px;
  padding: 18px 26px;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
  flex-wrap: wrap;
}

.contact-row__key {
  flex: none;
  width: 180px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--muted);
}

.contact-row__value {
  font-size: 16px;
  font-weight: 600;
  word-break: break-word;
}

.contact-row__value a {
  color: inherit;
  text-decoration: none;
}

.contact-row__value a:hover {
  color: var(--accent);
}

.contact-card__map {
  flex: 1;
  min-height: 160px;
  border: 0;
  width: 100%;
}

.contact-form-panel {
  padding: 40px;
  --notch: 26px;
}

.cta-band {
  position: relative;
  background: var(--accent-gradient);
  color: var(--ink);
}

.cta-band__edge {
  position: absolute;
  left: 0;
  right: 0;
  height: 10px;
  background: repeating-linear-gradient(
    -45deg,
    var(--ink) 0 14px,
    transparent 14px 28px
  );
}

.cta-band__edge--top {
  top: 0;
}

.cta-band__edge--bottom {
  bottom: 0;
}

.cta-band__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding: 72px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}

.cta-band__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: var(--fs-band);
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.cta-band__sub {
  font-size: 17px;
  font-weight: 500;
  opacity: 0.85;
}

.cta-band__phones {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-end;
}

.cta-band__phone {
  text-decoration: none;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--fs-phone);
}

.cta-band__phone:hover {
  color: var(--ink);
  text-decoration: underline;
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    padding-block: 40px;
  }

  .hero__inner {
    gap: 32px;
  }

  .hero__watermark {
    display: none;
  }

  .dial {
    width: 320px;
    height: 320px;
  }

  .dial__core {
    inset: 60px;
  }

  .dial__number {
    font-size: 56px;
  }

  .news-item__media {
    width: 100%;
    height: 200px;
  }

  .cta-band__phones {
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .hero__inner {
    flex-direction: column;
  }

  .hero__copy,
  .dial-wrap {
    min-width: 0;
  }

  .hero__cue {
    display: none;
  }

  .dial {
    width: 260px;
    height: 260px;
  }

  .dial__core {
    inset: 48px;
  }

  .dial__number {
    font-size: 44px;
  }

  .dial__pill {
    font-size: 10px;
    padding: 6px 10px;
  }

  .about__lead {
    font-size: 18px;
  }

  .about__panel,
  .booking,
  .contact-form-panel {
    padding: 24px;
  }

  .contact-row {
    flex-direction: column;
    gap: 6px;
  }

  .contact-row__key {
    width: auto;
  }

  .cta-band__inner {
    padding-block: 48px;
  }
}
