:root {
  --bg: #111111;
  --panel: #1a1a1a;
  --panel-2: #222222;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.68);
  --line: rgba(255, 255, 255, 0.08);
  --accent: #ff6900;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
}

body {
  font-family: "Readex Pro", system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

.page-shell {
  width: min(1140px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: relative;
  z-index: 5;
  background: rgba(17, 17, 17, 0.94);
  border-bottom: 1px solid var(--line);
}

.nav-shell {
  width: min(1140px, calc(100% - 48px));
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  font-weight: 700;
}

.brand {
  font-size: 24px;
}

.brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: inline-grid;
  place-items: center;
  background: rgba(255, 105, 0, 0.15);
  color: var(--accent);
  font-size: 16px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  padding-bottom: 6px;
  color: var(--muted);
  font-size: 14px;
  border-bottom: 2px solid transparent;
}

.nav-links a.is-active {
  color: var(--text);
  border-color: var(--accent);
}

.cta-button,
.primary-button,
.dark-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 10px;
  padding: 0 22px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
}

.hero-panel {
  position: relative;
  overflow: hidden;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.96), rgba(17, 17, 17, 0.68)),
    url("/assets/home-bg.png") center / cover no-repeat;
  opacity: 0.95;
}

.hero-layout {
  position: relative;
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: center;
  gap: 48px;
  padding: 56px 0;
}

.eyebrow-badge {
  display: inline-flex;
  border: 1px solid rgba(255, 105, 0, 0.3);
  border-radius: 999px;
  background: rgba(255, 105, 0, 0.15);
  color: var(--accent);
  padding: 7px 16px;
  font-size: 12px;
  text-transform: uppercase;
}

.hero-copy-block h1 {
  margin: 20px 0 16px;
  max-width: 650px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.hero-copy-block h1 span {
  color: var(--accent);
}

.hero-copy-block p,
.about-layout p,
.intro-inner p,
.cta-inner p {
  max-width: 560px;
  color: var(--muted);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 26px;
  flex-wrap: wrap;
}

.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
}

.hero-photo-card {
  position: relative;
}

.hero-photo-card::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 18px;
  background: var(--accent);
}

.hero-photo-card img {
  position: relative;
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 16px;
}

.about-panel {
  background: var(--panel);
  padding: 64px 0;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.7fr);
  gap: 48px;
  align-items: start;
}

.section-kicker {
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-kicker.centered {
  text-align: center;
}

.about-layout h2 {
  margin: 0 0 18px;
  font-size: clamp(28px, 3vw, 38px);
}

.accent-name {
  color: var(--accent);
  font-weight: 700;
}

.stats-grid {
  display: grid;
  gap: 16px;
}

.stat-card,
.feature-card,
.pricing-card,
.service-card,
.extras-grid-new article {
  background: var(--panel-2);
  border-radius: 12px;
}

.stat-card {
  border-left: 4px solid var(--accent);
  padding: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stat-card strong {
  color: var(--accent);
  font-size: 34px;
}

.stat-card span {
  color: var(--muted);
}

.feature-panel {
  padding: 32px 0 72px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  padding: 24px;
}

.feature-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
}

.feature-card p,
.pricing-card p,
.service-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.services-intro {
  position: relative;
  padding: 56px 0 44px;
  text-align: center;
}

.services-page-new {
  position: relative;
  isolation: isolate;
}

.services-page-new::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(17, 17, 17, 0.7), rgba(17, 17, 17, 0.88)),
    url("/assets/services-page-bg.png") center / cover no-repeat;
}

.services-page-new::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.18), rgba(17, 17, 17, 0.72));
}

.intro-inner h1 {
  margin: 0;
  font-size: clamp(34px, 4vw, 48px);
  text-transform: uppercase;
}

.intro-inner span {
  display: block;
  width: 96px;
  height: 4px;
  margin: 18px auto;
  border-radius: 999px;
  background: var(--accent);
}

.service-cards-section,
.individual-section,
.extras-section {
  padding: 24px 0 56px;
}

.pricing-grid,
.individual-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.pricing-card {
  border-top: 4px solid var(--accent);
  padding: 24px;
  position: relative;
  transform-origin: center;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease;
}

.pricing-card.featured {
  transform: translateY(-8px);
}

.pricing-card:hover {
  z-index: 3;
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
  animation: pricingScale 0.5s ease-in-out forwards;
}

.pricing-card:hover p,
.pricing-card:hover ul,
.pricing-card:hover .price,
.pricing-card:hover .price small {
  color: #fff;
}

.pricing-card h2,
.service-card h3 {
  margin: 0 0 14px;
  font-size: 22px;
}

.price {
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 28px;
  font-weight: 700;
}

.price small {
  color: var(--muted);
  font-size: 14px;
}

.pricing-card ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

@keyframes pricingScale {
  0% {
    transform: scale(1);
  }

  10% {
    transform: scale(1.04, 0.96);
    box-shadow: rgba(0, 0, 0, 0.3) 1px 2px 3px 1px;
  }

  30% {
    transform: scale(1.14, 1.18);
    box-shadow: rgba(0, 0, 0, 0.14) 1px 1px 8px 2px;
  }

  50%,
  64% {
    transform: scale(1.18);
  }

  100% {
    transform: scale(1.18);
    box-shadow: rgba(0, 0, 0, 0.28) 0 18px 40px 2px;
  }
}

.service-card {
  padding: 24px;
}

.service-card strong {
  display: block;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 28px;
}

.extras-grid-new {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.extras-grid-new article {
  padding: 18px;
}

.extras-grid-new strong,
.extras-grid-new span {
  display: block;
}

.extras-grid-new strong {
  margin-bottom: 8px;
}

.extras-grid-new span {
  color: var(--accent);
}

.cta-strip {
  background: var(--accent);
  padding: 42px 0;
}

.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.cta-inner h2 {
  margin: 0 0 8px;
  text-transform: uppercase;
}

.cta-inner p {
  color: rgba(255, 255, 255, 0.86);
  margin: 0;
}

.dark-button {
  background: var(--bg);
}

.light-outline {
  border-color: rgba(255, 255, 255, 0.5);
}

.site-footer {
  width: min(1140px, calc(100% - 48px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(255, 105, 0, 0.14);
  color: var(--accent);
}

.footer-socials svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

@media (max-width: 900px) {
  .page-shell,
  .nav-shell,
  .site-footer {
    width: calc(100% - 32px);
  }

  .nav-shell {
    min-height: auto;
    padding: 18px 0;
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .hero-layout,
  .about-layout,
  .feature-grid,
  .pricing-grid,
  .individual-grid,
  .extras-grid-new {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    min-height: auto;
    padding: 32px 0 48px;
  }

  .hero-photo-card {
    order: -1;
    max-width: 320px;
  }

  .hero-photo-card img {
    height: 360px;
  }

  .pricing-card.featured {
    transform: none;
  }

  .pricing-card:hover {
    animation: none;
    background: var(--panel-2);
    border-color: var(--accent);
  }

  .cta-inner,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
