/* ============================================
   SERVICES OVERVIEW — services.css
   ============================================ */

/* --- STATIC HERO (image, not video) --- */
.svc-hero {
  border-radius: var(--card-radius);
  overflow: hidden;
  position: relative;
  width: calc(100% - 48px);
  margin: -85px auto 0;
  min-height: 680px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.svc-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.svc-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
  z-index: 1;
}

.svc-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 40px 48px;
}

.svc-hero-headline {
  font-family: var(--font-main);
  font-size: 48px;
  font-weight: 400;
  line-height: 1.15;
  color: #ffffff;
  margin-top: 16px;
}

.svc-hero-headline em {
  font-style: italic;
}

/* --- INTRO --- */
.svc-intro-section {
  padding: 100px 24px 60px;
}

.svc-intro-inner {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.svc-intro-headline {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 44px;
  line-height: 1.2;
  color: #111111;
  margin: 24px 0 20px;
}

.svc-intro-body {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 15px;
  color: #777777;
  line-height: 1.65;
}

/* --- SERVICE ROW CARDS --- */
.svc-cards-section {
  padding: 20px 24px 100px;
}

.svc-cards-inner {
  max-width: 1128px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.svc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.svc-row-img {
  border-radius: 20px;
  overflow: hidden;
}

.svc-row-img img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}

.svc-row-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.svc-row-title {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 28px;
  color: #111111;
}

.svc-row-desc {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 15px;
  color: #777777;
  line-height: 1.65;
}

.svc-row-cta {
  display: inline-block;
  background-color: #111111;
  color: #ffffff;
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 15px;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 40px;
  transition: opacity 0.2s ease;
  margin-top: 8px;
}

.svc-row-cta:hover { opacity: 0.8; }

/* --- HOW WE BUILD --- */
.how-section {
  background-color: #f7f7f7;
  padding: 100px 24px;
}

.how-inner {
  max-width: 1128px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.how-headline {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 44px;
  color: #111111;
  text-align: center;
  margin: 24px 0 56px;
  line-height: 1.2;
}

.how-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  width: 100%;
}

.how-card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.how-card-title {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 18px;
  color: #111111;
}

.how-card-desc {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 14px;
  color: #777777;
  line-height: 1.65;
}

/* --- WORK WITH US --- */
.work-with-us-section {
  padding: 100px 24px;
}

.work-with-us-inner {
  max-width: 1128px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.work-with-us-img-wrap {
  border-radius: 24px;
  overflow: hidden;
}

.work-with-us-img-wrap img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  display: block;
}

.work-with-us-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.work-with-us-headline {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 44px;
  line-height: 1.2;
  color: #111111;
}

.work-with-us-headline em { font-style: italic; }

.work-with-us-body {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 15px;
  color: #777777;
  line-height: 1.65;
  margin-bottom: 8px;
}

/* ============================================
   SUB-PAGE SHARED — sub-page hero, about block,
   accordion, feature cards, CTA strip
   ============================================ */

/* Sub-page hero */
.sub-hero {
  border-radius: var(--card-radius);
  overflow: hidden;
  position: relative;
  width: calc(100% - 48px);
  margin: -85px auto 0;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.sub-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.sub-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.05) 60%, transparent 100%);
  z-index: 1;
}

.sub-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 40px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: flex-end;
}

.sub-hero-left h1 {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 56px;
  line-height: 1.1;
  color: #ffffff;
  margin-top: 16px;
}

.sub-hero-right p {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}

/* About block */
.sub-about-section {
  padding: 100px 24px;
}

.sub-about-inner {
  max-width: 1128px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 0 60px;
  align-items: start;
}

.sub-about-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 6px;
  position: sticky;
  top: 120px;
}

.sub-about-content {
  display: flex;
  flex-direction: column;
}

.sub-about-statement {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 48px;
  line-height: 1.15;
  color: #111111;
  margin-bottom: 48px;
}

/* Accordion */
.sub-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sub-accordion-item {
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  padding: 28px 32px;
}

.sub-accordion-title {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 18px;
  color: #111111;
  margin-bottom: 12px;
}

.sub-accordion-body {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 15px;
  color: #777777;
  line-height: 1.65;
  max-width: 800px;
}

/* Feature cards strip */
.sub-features-section {
  padding: 100px 24px;
  background-color: #f7f7f7;
}

.sub-features-inner {
  max-width: 1128px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sub-features-headline {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 40px;
  color: #111111;
  text-align: center;
  margin: 24px 0 56px;
  line-height: 1.2;
}

.sub-features-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  width: 100%;
}

.sub-feature-card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sub-feature-title {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 18px;
  color: #111111;
}

.sub-feature-desc {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 14px;
  color: #777777;
  line-height: 1.65;
}

/* Sub-page nav eyebrow label color fix */
.sub-hero .eyebrow-text { color: #ffffff; }
