.hero {
  position: relative;
  overflow: hidden;
  padding: 5rem 0 4rem;
  background: var(--theme-hero-bg);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 11, 18, 0.88) 0%, rgba(7, 11, 18, 0.78) 34%, rgba(7, 11, 18, 0.34) 58%, rgba(7, 11, 18, 0) 76%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -8rem -2rem auto;
  width: 26rem;
  height: 26rem;
  border: 26px solid var(--theme-ring-color);
  border-radius: 50%;
  z-index: 0;
}

.hero__grid,
.split-grid,
.contact-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1.35fr) minmax(22rem, 0.95fr);
  align-items: start;
}

.hero__grid {
  position: relative;
  z-index: 1;
}

.hero__copy {
  color: var(--theme-hero-text);
  padding-right: 1rem;
  max-width: 48rem;
}

.hero__title {
  margin: 0.4rem 0 0.9rem;
  font-family: "Teko", sans-serif;
  font-size: clamp(4.2rem, 10vw, 7rem);
  line-height: 0.88;
  text-transform: uppercase;
}

.hero__subtitle {
  max-width: 42rem;
  font-size: 1.12rem;
  color: var(--theme-hero-text-soft);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.hero__metrics {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.6rem;
}

.metric-card,
.service-card,
.testimonial-card,
.contact-card,
.hero-panel,
.checklist-card,
.timeline__item {
  border-radius: var(--radius);
  border: 1px solid var(--theme-border-color);
  box-shadow: var(--theme-shadow);
}

.metric-card {
  padding: 1rem;
  background: var(--theme-metric-bg);
  border-color: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
}

.metric-card strong,
.service-card h3,
.checklist-card h3,
.timeline__item h3 {
  display: block;
  margin-bottom: 0.35rem;
  font-family: "Teko", sans-serif;
  font-size: 1.9rem;
  line-height: 1;
  text-transform: uppercase;
}

.metric-card strong {
  color: var(--theme-metric-text);
}

.metric-card span {
  color: var(--theme-metric-soft);
}

.hero__panel {
  position: relative;
  z-index: 1;
}

.hero-panel {
  padding: 1.4rem;
  background: var(--theme-hero-panel-bg);
  color: var(--theme-hero-panel-text);
}

.hero-panel__row + .hero-panel__row {
  margin-top: 1.3rem;
  padding-top: 1.3rem;
  border-top: 1px solid var(--theme-border-color);
}

.hero-panel__label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--theme-accent);
  font-weight: 700;
}

.hero-panel__row strong,
.hero-panel__row a {
  display: block;
  text-decoration: none;
  color: var(--theme-hero-panel-text);
}

.hero-panel__hours {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.35rem;
}

.location-snippet {
  display: flex;
  gap: 1rem;
  align-items: stretch;
  flex-wrap: wrap;
}

.location-snippet__details {
  flex: 1 1 11rem;
  min-width: 0;
}

.location-snippet__details strong {
  margin-top: 0;
}

.location-snippet__details span {
  display: block;
  margin-top: 0.25rem;
  color: inherit;
  opacity: 0.78;
}

.hero-panel__row .location-snippet__link,
.contact-card .location-snippet__link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 0.75rem;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: var(--theme-accent-soft-bg);
  color: var(--theme-accent);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
}

.location-snippet__map-shell {
  position: relative;
  flex: 0 0 12rem;
  width: 12rem;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--theme-border-color);
  background: var(--theme-surface-soft);
  box-shadow: var(--theme-shadow);
}

.location-snippet__pin {
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 1.8rem;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: rgba(7, 11, 18, 0.82);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.location-snippet__pin::before {
  content: "";
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--theme-accent), var(--theme-accent-strong));
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.16);
}

.location-snippet__map {
  display: block;
  width: 100%;
  min-height: 8.8rem;
  border: 0;
}

.workshop-media,
.workshop-media__grid {
  display: grid;
  gap: 1rem;
}

.workshop-media {
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
  align-items: stretch;
}

.workshop-media__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.workshop-media__feature,
.workshop-media__card {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--theme-border-color);
  background: var(--theme-surface);
  box-shadow: var(--theme-shadow);
}

.workshop-media__image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.workshop-media__content {
  padding: 1rem 1.1rem 1.15rem;
  color: var(--theme-surface-text);
}

.workshop-media__content strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: "Teko", sans-serif;
  font-size: 1.8rem;
  line-height: 1;
  text-transform: uppercase;
}

.workshop-media__content p {
  margin: 0;
  color: var(--theme-surface-text-soft);
}

.service-grid,
.testimonial-grid,
.timeline {
  display: grid;
  gap: 1rem;
}

.service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card {
  padding: 1.2rem;
  background: var(--theme-card-bg);
  color: var(--theme-card-text);
}

.service-card__teaser {
  display: inline-block;
  margin-bottom: 0.7rem;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  background: var(--theme-accent-soft-bg);
  color: var(--theme-accent);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.service-card p,
.testimonial-card p,
.contact-card span,
.checklist li {
  color: var(--theme-surface-text-soft);
}

.service-card strong {
  display: inline-flex;
  margin-top: 0.8rem;
  padding-top: 0.8rem;
  border-top: 1px solid var(--theme-border-color);
  color: var(--theme-card-text);
}

.split-grid {
  gap: 2.4rem;
}

.split-grid--tight {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.checklist-card {
  padding: 1.4rem;
  background: var(--theme-surface);
  color: var(--theme-surface-text);
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.9rem;
}

.checklist li {
  position: relative;
  padding-left: 1.5rem;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--theme-accent), var(--theme-accent-strong));
}

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

.timeline__item {
  padding: 1.3rem;
  background: var(--theme-timeline-bg);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--theme-section-dark-text);
}

.timeline__item p {
  color: var(--theme-section-dark-soft);
}

.testimonial-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.testimonial-card {
  padding: 1.2rem;
  background: var(--theme-surface);
  color: var(--theme-surface-text);
}

.testimonial-card__rating {
  color: var(--theme-accent);
  letter-spacing: 0.18em;
}

.testimonial-card strong,
.contact-card strong {
  display: block;
  margin-top: 0.6rem;
}

.contact-grid {
  align-items: center;
}

.contact-overview {
  padding: 1.35rem;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.70), rgba(255, 255, 255, 0.38));
  border: 1px solid var(--theme-border-color);
  box-shadow: var(--theme-shadow);
}

.contact-overview .section-title {
  color: var(--theme-page-text);
}

.contact-overview .section-copy {
  color: var(--theme-page-text-soft);
}

.contact-stack {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.contact-card {
  padding: 1rem 1.1rem;
  background: var(--theme-surface);
  color: var(--theme-surface-text);
}

.contact-card .location-snippet {
  margin-top: 0.65rem;
}

.contact-card a {
  text-decoration: none;
  font-weight: 700;
  color: var(--theme-surface-text);
}

.contact-card .location-snippet__pin {
  color: #ffffff;
  opacity: 1;
}

.contact-form {
  background: var(--theme-contact-form-bg);
}

.section--contact {
  background: var(--theme-contact-section-bg);
}

@media (max-width: 1100px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 900px) {
  .hero {
    padding-top: 4rem;
  }

  .hero::before {
    background: linear-gradient(180deg, rgba(7, 11, 18, 0.86), rgba(7, 11, 18, 0.52));
  }

  .hero__grid,
  .split-grid,
  .contact-grid,
  .split-grid--tight,
  .workshop-media {
    grid-template-columns: 1fr;
  }

  .timeline,
  .testimonial-grid,
  .workshop-media__grid {
    grid-template-columns: 1fr;
  }

  .contact-overview {
    padding: 1.15rem;
  }
}

@media (max-width: 640px) {
  .hero__title {
    font-size: clamp(3.3rem, 18vw, 4.8rem);
  }

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

  .location-snippet__map-shell {
    flex-basis: 100%;
    width: 100%;
  }
}
