/* Services page - scoped to .page-services */

.page-services {
  background:
    radial-gradient(1200px 480px at 50% -10%, rgba(214, 180, 106, 0.08), transparent),
    linear-gradient(180deg, #030303 0%, #060606 40%, #050505 100%);
}

.page-services .topbar {
  border-bottom-color: rgba(214, 180, 106, 0.35);
}

/* 1. Hero */
.services-hero {
  position: relative;
  padding: 5.5rem 0 4rem;
  overflow: hidden;
  min-height: min(58vh, 540px);
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(214, 180, 106, 0.2);
}

.services-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(105deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.82) 55%, rgba(0, 0, 0, 0.94) 100%),
    radial-gradient(ellipse 70% 55% at 75% 35%, rgba(214, 180, 106, 0.18), transparent 70%),
    linear-gradient(160deg, #161311 0%, #050403 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.services-hero-bg.has-image {
  background-image:
    linear-gradient(to left, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.7) 35%, rgba(0, 0, 0, 0.4) 70%, rgba(0, 0, 0, 0.25) 100%),
    var(--home-hero-bg, none);
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
}

.services-hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(to top, rgba(3, 3, 3, 0.92) 0%, transparent 45%),
    repeating-linear-gradient(135deg, rgba(214, 180, 106, 0.025) 0 14px, transparent 14px 28px);
}

.services-hero-grid {
  position: relative;
  z-index: 2;
}

.services-hero-copy {
  max-width: 720px;
}

.services-hero-copy h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.85rem, 4.6vw, 3rem);
  line-height: 1.2;
  font-weight: 700;
  color: var(--champagne);
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.55);
}

.services-hero-lead {
  margin: 0 0 1.5rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  max-width: 60ch;
  line-height: 1.75;
}

/* Section scaffolding */
.services-section {
  padding: 3.5rem 0;
}

.services-section--alt {
  background: linear-gradient(180deg, rgba(214, 180, 106, 0.03), rgba(0, 0, 0, 0));
  border-top: 1px solid rgba(214, 180, 106, 0.12);
  border-bottom: 1px solid rgba(214, 180, 106, 0.12);
}

.services-section-head {
  text-align: center;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.services-section-head h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--champagne);
}

.services-section-head p {
  margin: 0;
  color: var(--text-secondary);
  max-width: 56ch;
  line-height: 1.7;
}

/* 2. Service cards grid */
.services-cards-grid {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .services-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.services-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 1.4rem 1.3rem 1.25rem;
  border: 1px solid rgba(214, 180, 106, 0.32);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(214, 180, 106, 0.06), rgba(255, 255, 255, 0) 60%),
    linear-gradient(180deg, rgba(20, 16, 12, 0.85), rgba(8, 7, 6, 0.92));
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.32);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.services-card:hover {
  transform: translateY(-3px);
  border-color: rgba(214, 180, 106, 0.58);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
}

.services-card-icon {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 14px;
  border: 1px solid rgba(214, 180, 106, 0.5);
  background:
    linear-gradient(135deg, rgba(214, 180, 106, 0.18), rgba(214, 180, 106, 0.04));
  display: inline-grid;
  place-items: center;
  font-size: 1.35rem;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 0.4rem;
  filter: drop-shadow(0 0 8px rgba(214, 180, 106, 0.18));
}

.services-card h3 {
  margin: 0;
  color: var(--gold);
  font-size: 1.1rem;
}

.services-card p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
  flex: 1;
}

.services-card-link {
  align-self: flex-start;
  margin-top: 0.4rem;
  color: var(--champagne);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  border-bottom: 1px solid rgba(214, 180, 106, 0.45);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.services-card-link::after {
  content: "›";
  font-size: 1.05rem;
  line-height: 1;
}

.services-card-link:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* 3. Features grid */
.services-features-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .services-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.services-features-grid li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(214, 180, 106, 0.22);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--champagne);
  font-size: 0.97rem;
  line-height: 1.4;
}

.services-feature-check {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  border: 1px solid rgba(214, 180, 106, 0.55);
  background: linear-gradient(135deg, rgba(214, 180, 106, 0.18), rgba(214, 180, 106, 0.04));
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  display: inline-grid;
  place-items: center;
  line-height: 1;
}

/* 4. How it works - reuse home-steps-panel--flow + subtle panel surface
   that gives the section a touch more presence without competing with
   the main service cards above it. */
.services-steps {
  margin-top: 0;
  padding: 1.3rem 1.1rem;
  border: 1px solid rgba(214, 180, 106, 0.22);
  border-radius: var(--radius);
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(214, 180, 106, 0.06), transparent 70%),
    linear-gradient(180deg, rgba(20, 16, 12, 0.55), rgba(8, 7, 6, 0.7));
  box-shadow: inset 0 1px 0 rgba(214, 180, 106, 0.1);
}
@media (min-width: 720px) {
  .services-steps {
    padding: 1.5rem 1.4rem;
  }
}
/* Slightly easier-to-scan description under each step strong title. */
.services-steps .home-step-text span {
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
}
.services-steps .home-step-text strong {
  font-size: 1.06rem;
}
/* Cleaner gold connector - slightly stronger gradient + softer chevron. */
.services-steps .home-step-arrow::before {
  background: linear-gradient(90deg, rgba(214, 180, 106, 0) 0%, rgba(214, 180, 106, 0.72) 50%, rgba(214, 180, 106, 0) 100%);
}
.services-steps .home-step-arrow::after {
  border-color: rgba(214, 180, 106, 0.95);
}

.services-steps-cta {
  display: flex;
  justify-content: center;
  margin-top: 1.6rem;
}

/* 5. Audience chips - reuse home-event-types-list but tone down so they
   read as audience-fit tags rather than action buttons. Scoped to the
   services page only - home page chips remain unchanged. */
.services-audience-list {
  max-width: 980px;
  margin-inline: auto;
  gap: 0.55rem 0.7rem;
}
.services-audience-list li {
  padding: 0.5rem 0.95rem;
  border-color: rgba(214, 180, 106, 0.32);
  background:
    linear-gradient(180deg, rgba(214, 180, 106, 0.04), rgba(0, 0, 0, 0));
  font-size: 0.92rem;
  font-weight: 500;
  box-shadow: none;
  cursor: default;
}
.services-audience-list li:hover {
  border-color: rgba(214, 180, 106, 0.55);
  transform: none;
  box-shadow: none;
}
.services-audience-list .home-event-types-icon {
  font-size: 1rem;
  width: 1.2rem;
  height: 1.2rem;
  filter: drop-shadow(0 0 4px rgba(214, 180, 106, 0.22));
}

/* 6. Why us */
.services-why-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  justify-content: center;
}

.services-why-card {
  padding: 1.3rem 1.2rem;
  border: 1px solid rgba(214, 180, 106, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
}

.services-why-icon {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  border: 1px solid rgba(214, 180, 106, 0.5);
  background:
    linear-gradient(135deg, rgba(214, 180, 106, 0.18), rgba(214, 180, 106, 0.04));
  display: inline-grid;
  place-items: center;
  font-size: 1.2rem;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.services-why-card h3 {
  margin: 0;
  color: var(--gold);
  font-size: 1.05rem;
}

.services-why-card p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* 7. Mid-page CTA */
.services-cta {
  padding: 2rem 0 3.5rem;
}

.services-cta-card {
  position: relative;
  padding: 2rem 1.4rem;
  text-align: center;
  border: 1px solid rgba(214, 180, 106, 0.4);
  border-radius: var(--radius);
  background:
    radial-gradient(ellipse 60% 60% at 50% 0%, rgba(214, 180, 106, 0.12), transparent 70%),
    linear-gradient(180deg, rgba(20, 16, 12, 0.95), rgba(10, 9, 8, 0.97));
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}

@media (min-width: 720px) {
  .services-cta-card {
    padding: 2.4rem 2rem;
  }
}

.services-cta-card h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  color: var(--champagne);
  max-width: 28ch;
}

.services-cta-card p {
  margin: 0;
  color: var(--text-secondary);
  max-width: 56ch;
  line-height: 1.7;
  font-size: clamp(0.95rem, 1.5vw, 1.02rem);
}

.services-cta-card .cta-row {
  justify-content: center;
}

/* FAQ on services page - keep accordion as-is */
.page-services .section--faq {
  padding: 2.5rem 0 4rem;
}

/* 7. AI / long-content sections - improve readability */
.page-services #aiContentSection {
  padding: 2.5rem 0 1rem;
}

.page-services #aiContentSection .card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(214, 180, 106, 0.22);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
}

.page-services #aiContentSection .card + .card {
  margin-top: 1rem !important;
}

.page-services #aiContentSection .section-title {
  color: var(--champagne);
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  margin: 0 0 0.6rem;
}

.page-services #aiContentSection .section-subtitle {
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.75;
}

.page-services #aiContentSection h3 {
  position: relative;
  margin: 1.5rem 0 0.5rem;
  padding-inline-start: 0.85rem;
  color: var(--gold);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.4;
}

.page-services #aiContentSection h3::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 50%;
  width: 3px;
  height: 1.05em;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--gold) 0%, rgba(214, 180, 106, 0.4) 100%);
  transform: translateY(-50%);
}

.page-services #aiContentSection h3:first-of-type {
  margin-top: 0.6rem;
}

.page-services #aiContentSection p {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.96rem;
  line-height: 1.85;
}

.page-services #aiContentSection p:last-child {
  margin-bottom: 0;
}

/* Mobile fine-tuning */
@media (max-width: 540px) {
  .services-hero {
    padding: 3.5rem 0 2.5rem;
  }
  .services-section {
    padding: 2.5rem 0;
  }
  .services-cta-card {
    padding: 1.6rem 1.1rem;
  }
}

/* Bottom summary block (replaces the 3 long AI content cards) */
.services-summary {
  padding: 0.5rem 0 3rem;
}

.services-summary-card {
  position: relative;
  padding: 2rem 1.4rem 2rem;
  border: 1px solid rgba(214, 180, 106, 0.32);
  border-radius: var(--radius);
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(214, 180, 106, 0.1), transparent 70%),
    linear-gradient(180deg, rgba(20, 16, 12, 0.96), rgba(8, 7, 6, 0.97));
  box-shadow:
    0 14px 36px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(214, 180, 106, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

@media (min-width: 720px) {
  .services-summary-card {
    padding: 2.4rem 2.2rem;
    gap: 1.2rem;
  }
}

.services-summary-title {
  margin: 0;
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  color: var(--champagne);
  line-height: 1.3;
  max-width: 42ch;
}

.services-summary-text {
  margin: 0;
  color: var(--text-secondary);
  font-size: clamp(0.95rem, 1.5vw, 1.02rem);
  line-height: 1.75;
  max-width: 70ch;
}

.services-summary-grid {
  width: 100%;
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
  margin-top: 0.35rem;
}

@media (min-width: 720px) {
  .services-summary-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (min-width: 1024px) {
  .services-summary-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.services-summary-item {
  position: relative;
  padding: 1.2rem 1.1rem 1.25rem;
  border: 1px solid rgba(214, 180, 106, 0.26);
  border-radius: 14px;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(214, 180, 106, 0.07), transparent 70%),
    linear-gradient(180deg, rgba(214, 180, 106, 0.04), rgba(255, 255, 255, 0));
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  box-shadow: inset 0 1px 0 rgba(214, 180, 106, 0.1);
}
/* Small gold accent dot above the title - gives each card a clear,
   consistent "marker" without adding heavy iconography. */
.services-summary-item::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin: 0 auto 0.15rem;
  box-shadow: 0 0 10px rgba(214, 180, 106, 0.55);
}

.services-summary-item h3 {
  margin: 0;
  color: var(--champagne);
  font-size: 1.02rem;
  line-height: 1.35;
}

.services-summary-item p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
}

.services-summary-btn {
  margin-top: 0.55rem;
}
