:root {
  --bg: #000000;
  --panel: #0b0b0b;
  --panel-soft: #101010;
  --border: rgba(214, 166, 74, 0.35);
  --text: #ffffff;
  --muted: #d9d9d9;
  --accent: #d6a64a;
  --accent-soft: #e7c16e;
  --shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  --page-width: min(1280px, calc(100vw - 3rem));
  --reviews-visible: 3;
  --reviews-gap: 1rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", sans-serif;
}

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

button {
  font: inherit;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 20;
  padding: 0.75rem 1rem;
  background: var(--accent);
  color: #111111;
}

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

.page-width,
.topbar {
  width: var(--page-width);
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.brand-mark-shell,
.footer-mark-shell {
  display: grid;
  place-items: center;
  overflow: hidden;
  flex: 0 0 auto;
}

.brand-mark-shell {
  width: clamp(5.5rem, 7vw, 6.2rem);
  aspect-ratio: 1290 / 940;
  margin-right: -0.35rem;
}

.brand-mark,
.footer-mark {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 0 16px rgba(214, 166, 74, 0.15));
}

.brand-text {
  position: relative;
  z-index: 1;
  margin-left: -0.58rem;
  color: var(--accent-soft);
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia,
    serif;
  font-size: clamp(1.85rem, 2.8vw, 2.35rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
  text-shadow: 0 0 18px rgba(214, 166, 74, 0.14);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  padding: 0.7rem 1rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.site-nav a {
  font-size: 0.98rem;
}

.hero-banner {
  position: relative;
  width: var(--page-width);
  margin: 0 auto;
}

.hero-media {
  min-height: 36rem;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.hero-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: min(100%, 58rem);
  text-align: center;
}

.hero-box h1,
.section-title h2,
.feature-copy h2,
.info-card h2,
.footer-block h2 {
  margin: 0;
  text-transform: uppercase;
}

.hero-box h1 {
  font-size: clamp(1.9rem, 4.4vw, 3.2rem);
  line-height: 1.04;
  letter-spacing: 0.03em;
}

.hero-summary,
.section-intro,
.service-card__body p,
.feature-copy p,
.feature-list li,
.info-card p,
.faq-item p,
.footer-block p,
.contact-details p,
.footer-note {
  color: var(--muted);
  line-height: 1.7;
}

.hero-summary {
  max-width: 44rem;
  margin: 0;
  font-size: 1.06rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.3rem;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
}

.button-primary {
  background: var(--accent);
  color: #111111;
}

.button-secondary {
  border-color: var(--border);
  background: rgba(214, 166, 74, 0.06);
  color: var(--text);
}

.services-section,
.feature-section,
.local-section,
.faq-section,
.reviews-section {
  padding: 3rem 0 2rem;
}

.section-title {
  margin-bottom: 1.75rem;
  text-align: center;
}

.section-title h2 {
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  letter-spacing: 0.02em;
}

.section-intro {
  max-width: 48rem;
  margin: 0.8rem auto 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.services-overview {
  margin-top: 1.75rem;
}

.packages-heading {
  max-width: 42rem;
  margin: 0 auto 1.75rem;
  text-align: center;
}

.packages-kicker {
  margin: 0 0 0.55rem;
  color: var(--accent-soft);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.packages-sale {
  margin: 0 0 0.55rem;
  color: #ff5a5a;
  font-size: clamp(1.1rem, 2.5vw, 1.65rem);
  font-weight: 500;
  line-height: 1.05;
}

.packages-heading h3 {
  margin: 0;
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.packages-block {
  margin-top: 2.5rem;
  padding: 1.8rem;
  border: 1px solid rgba(214, 166, 74, 0.18);
  background:
    linear-gradient(180deg, rgba(214, 166, 74, 0.06), rgba(214, 166, 74, 0.02)),
    var(--panel);
  box-shadow: var(--shadow);
}

.packages-heading p:last-child,
.package-card__note {
  color: var(--muted);
  line-height: 1.7;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.addons-block {
  margin-top: 2rem;
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.package-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.34);
}

.addon-card {
  min-height: 100%;
  padding: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.24);
}

.package-card--featured {
  border-color: rgba(214, 166, 74, 0.45);
  background:
    linear-gradient(180deg, rgba(214, 166, 74, 0.08), rgba(214, 166, 74, 0.02)),
    rgba(0, 0, 0, 0.34);
}

.package-card__tier {
  margin: 0 0 0.75rem;
  color: var(--accent-soft);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.package-card h4 {
  margin: 0 0 0.65rem;
  font-size: 1.4rem;
}

.addon-card h4 {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
}

.package-card__price {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  margin: 0 0 1rem;
  color: var(--text);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.package-card__price-current {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}

.package-card__price-sale {
  color: #ff5a5a;
  font-size: 2rem;
  font-weight: 500;
}

.package-card__price-sale strong {
  margin-left: 0.35rem;
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
}

.package-card__price-note {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
}

.package-card__list {
  margin: 0 0 0.45rem;
  padding: 0;
  list-style: none;
}

.package-card__list li {
  position: relative;
  margin-bottom: 0.7rem;
  padding-left: 1.15rem;
  color: var(--muted);
  line-height: 1.6;
}

.package-card__list li::before {
  content: "";
  position: absolute;
  top: 0.68rem;
  left: 0;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--accent);
}

.package-card__note {
  margin: auto 0 0;
  font-size: 0.92rem;
}

.addon-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.service-card,
.info-card,
.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.service-card__image {
  aspect-ratio: 16 / 9;
}

.service-card__body {
  padding: 1.35rem 1.2rem 1.5rem;
  text-align: center;
}

.service-card__body h3 {
  margin: 0 0 0.8rem;
  font-size: 1.3rem;
}

.feature-row,
.local-grid,
.footer-grid {
  display: grid;
  gap: 2rem;
}

.feature-row {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
}

.feature-media {
  min-height: 24rem;
}

.feature-copy {
  padding: 1rem 0;
}

.feature-copy h2,
.info-card h2 {
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  line-height: 1.08;
  margin-bottom: 1rem;
}

.feature-list {
  margin: 1rem 0 1.5rem;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  margin-bottom: 0.75rem;
  padding-left: 1.2rem;
}

.feature-list li::before {
  content: "";
  position: absolute;
  top: 0.7rem;
  left: 0;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--accent);
}

.local-grid {
  grid-template-columns: 1fr;
  max-width: 940px;
  margin: 0 auto;
}

.info-card {
  padding: 1.5rem;
}

.info-card--service-area {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-card--service-area h2 {
  text-align: center;
}

.service-area-map {
  overflow: hidden;
  border: 1px solid rgba(214, 166, 74, 0.24);
  background: #050505;
}

.service-area-map iframe {
  display: block;
  width: 100%;
  min-height: 21rem;
  border: 0;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  padding: 1rem 1.25rem;
}

.faq-item summary {
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 700;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0.85rem 0 0;
}

.reviews-shell {
  display: grid;
  justify-items: center;
  gap: 1.25rem;
}

.reviews-viewport {
  width: min(100%, 1120px);
  overflow: hidden;
}

.review-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.reviews-grid {
  display: flex;
  gap: var(--reviews-gap);
  transition: transform 240ms ease;
}

.review-card {
  display: flex;
  flex-direction: column;
  flex: 0 0
    calc(
      (100% - ((var(--reviews-visible) - 1) * var(--reviews-gap))) /
        var(--reviews-visible)
    );
  gap: 0.9rem;
  min-height: 100%;
  padding: 1.25rem;
}

.review-card__header {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.review-card__author {
  font-size: 1rem;
}

.review-card__stars,
.review-card__service,
.review-card__text,
.review-card__link {
  color: var(--muted);
  line-height: 1.7;
}

.review-card__stars {
  margin: 0;
  color: var(--accent-soft);
  font-size: 0.92rem;
  font-weight: 700;
}

.review-card__service {
  margin: -0.15rem 0 0;
  font-size: 0.9rem;
}

.review-card__text {
  margin: 0;
}

.review-card__link {
  margin-top: auto;
  color: var(--text);
  font-weight: 700;
}

.reviews-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
}

.reviews-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(214, 166, 74, 0.08);
  color: var(--accent-soft);
  font-size: 1.35rem;
  cursor: pointer;
}

.reviews-arrow:disabled {
  opacity: 0.35;
  cursor: default;
}

.image-placeholder {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px dashed var(--border);
  background:
    linear-gradient(180deg, rgba(214, 166, 74, 0.04), rgba(214, 166, 74, 0.02)),
    repeating-linear-gradient(
      -45deg,
      rgba(214, 166, 74, 0.04) 0,
      rgba(214, 166, 74, 0.04) 14px,
      transparent 14px,
      transparent 28px
    );
}

.image-placeholder span {
  position: absolute;
  padding: 0.75rem 1.1rem;
  border: 1px solid rgba(214, 166, 74, 0.45);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.9);
  color: var(--text);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.image-placeholder-hero {
  place-items: end start;
  padding: 1.5rem;
}

.image-placeholder-hero span {
  position: static;
}

.site-footer {
  margin-top: 3rem;
  padding: 3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  grid-template-columns: 220px 1fr 1fr;
  align-items: start;
}

.footer-block--logo {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.footer-mark-shell {
  width: 8.4rem;
  aspect-ratio: 1290 / 940;
}

.footer-mark {
  margin-bottom: 0;
}

.footer-block h2 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.contact-details {
  font-style: normal;
}

.footer-block p,
.contact-details p {
  margin: 0 0 0.35rem;
}

@media (max-width: 980px) {
  :root {
    --reviews-visible: 2;
  }

  .services-grid,
  .packages-grid,
  .addons-grid,
  .feature-row,
  .local-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 28rem;
  }

  .footer-mark {
    width: 100%;
  }
}

@media (max-width: 760px) {
  :root {
    --reviews-visible: 1;
  }

  .topbar {
    flex-wrap: wrap;
    gap: 0.85rem;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .site-nav {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid var(--border);
    background: var(--panel-soft);
  }

  .site-nav.is-open {
    display: flex;
  }

  .brand-mark-shell {
    width: 3.8rem;
    margin-right: -0.2rem;
  }

  .brand-text {
    margin-left: -0.38rem;
    font-size: 1.42rem;
    letter-spacing: 0.01em;
  }

  .hero-media {
    min-height: 24rem;
  }

  .hero-box h1 {
    font-size: clamp(1.4rem, 7.8vw, 2.05rem);
  }
}
