/**
 * =============================================================================
 * NEXUS LIVING HUB — SERVICES LANDING PAGE STYLES
 * services/assets/css/services.css
 *
 * Page-specific styles for services/index.html only.
 * Global styles live in ../global.css — nothing is duplicated here.
 * All values reference CSS custom properties from style-tokens.css.
 *
 * Visual identity: Structured clarity. Grid-forward. Professional.
 * This page is intentionally distinct from the homepage in:
 *   - Hero: 60vh split (not 100vh dark cinematic)
 *   - Cards: bento asymmetric grid (not 5-in-a-row)
 *   - Inclusions: horizontal strip (not terracotta icon grid)
 *   - Process: 3 numbered cards (not 7-step pinned timeline)
 *
 * Sections:
 *  00. Nav Force-Solid (light-hero override)
 *  01. Section 1  — Hero (60vh, split)
 *  02. Section 2  — Brand Statement
 *  03. Section 3  — Service Cards (Bento Grid)
 *  04. Section 4  — Inclusions (Horizontal Strips)
 *  05. Section 5  — Process (3 Numbered Cards)
 *  06. Section 6  — CTA Strip
 * =============================================================================
 */


/* =============================================================================
   00. NAV FORCE-SOLID
   Keeps nav text readable on the light-background hero of this page.
   Applied via .nav--force-solid class directly in the HTML <nav>.
   ============================================================================= */

.nav--force-solid {
  background-color: var(--color-overlay-light) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm) !important;
}

/* Logo text → dark on solid nav */
.nav--force-solid .site-nav__logo-text {
  color: var(--color-accent-dark) !important;
}

/* Logo mark → accent gold */
.nav--force-solid .site-nav__logo-mark {
  color: var(--color-accent-gold);
}

/* Nav links → dark */
.nav--force-solid .site-nav__link {
  color: var(--color-accent-dark) !important;
}

.nav--force-solid .site-nav__link::after {
  background-color: var(--color-accent-gold);
}

/* Hamburger bars → dark */
.nav--force-solid .site-nav__hamburger span {
  background-color: var(--color-accent-dark) !important;
}

/* Lang toggle text → dark */
.nav--force-solid .lang-toggle__btn {
  color: var(--color-accent-dark) !important;
}

/* Active / hover still uses gold */
.nav--force-solid .site-nav__link.active,
.nav--force-solid .site-nav__link:hover {
  color: var(--color-accent-gold) !important;
}


/* =============================================================================
   01. HERO — 60vh SPLIT LAYOUT
   Left: warm photo placeholder. Right: content area, left-aligned.
   Completely different from homepage hero (100vh, dark, centered).
   ============================================================================= */

.services-hero {
  display: grid;
  grid-template-columns: 1fr;           /* mobile: single column */
  min-height: 60vh;
}

@media (min-width: 1024px) {
  .services-hero {
    grid-template-columns: 42% 58%;     /* desktop: split */
  }
}

/* ── Left panel: Photo placeholder ──────────────────────────────────────── */
.services-hero__photo {
  display: none;                         /* hidden on mobile */
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    145deg,
    var(--color-accent-dark) 0%,
    var(--color-bg-dark)     100%
  );
  min-height: 60vh;
}

@media (min-width: 1024px) {
  .services-hero__photo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: var(--space-2xl);
  }
}

/* Grain texture on photo side */
.services-hero__photo-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
  opacity: 0.04;
  pointer-events: none;
}

/* Decorative geometric diagonal lines overlay on photo */
.services-hero__photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    135deg,
    rgba(201, 169, 110, 0.04) 0px,
    rgba(201, 169, 110, 0.04) 1px,
    transparent 1px,
    transparent 40px
  );
  pointer-events: none;
}

/* Floating badge in photo area */
.services-hero__photo-badge {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  background: rgba(201, 169, 110, 0.18);
  border: 1px solid rgba(201, 169, 110, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius-pill);
  padding: 0.5rem 1rem;
  margin-bottom: var(--space-sm);
  color: var(--color-accent-gold);
  font-family: var(--font-accent);
  font-size: var(--small-size);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
}

.services-hero__photo-tag {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--color-text-on-dark);
  font-family: var(--font-accent);
  font-size: var(--small-size);
  letter-spacing: var(--ls-wide);
  opacity: 0.6;
  text-transform: uppercase;
}

.services-hero__photo-separator {
  opacity: 0.5;
}

/* ── Right panel: Content area ───────────────────────────────────────────── */
.services-hero__content {
  background-color: var(--color-bg-primary);
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding-top: 72px;                     /* clear fixed nav */
}

/* Subtle geometric pattern on content side */
.services-hero__content::before {
  content: '';
  position: absolute;
  inset: 0;
  width: 58%;
  margin-left: 42%;
  background-image: repeating-linear-gradient(
    0deg,
    rgba(201, 169, 110, 0.03) 0px,
    rgba(201, 169, 110, 0.03) 1px,
    transparent 1px,
    transparent 60px
  ),
  repeating-linear-gradient(
    90deg,
    rgba(201, 169, 110, 0.03) 0px,
    rgba(201, 169, 110, 0.03) 1px,
    transparent 1px,
    transparent 60px
  );
  pointer-events: none;
  z-index: 0;
  display: none;
}

@media (min-width: 1024px) {
  .services-hero__content::before {
    display: block;
  }
}

.services-hero__content-inner {
  position: relative;
  z-index: 1;
  padding: var(--space-xl) var(--space-xl) var(--space-2xl);
  max-width: 560px;
  width: 100%;
}

@media (min-width: 1280px) {
  .services-hero__content-inner {
    padding: var(--space-2xl) var(--space-2xl) var(--space-2xl) var(--space-2xl);
  }
}

/* Breadcrumb inside hero */
.services-hero__breadcrumb {
  margin-bottom: var(--space-md);
}

/* H1 — left aligned, dark text on cream */
.services-hero__title {
  font-family: var(--font-display);
  font-size: var(--h1-size);
  font-weight: var(--fw-bold);
  color: var(--color-accent-dark);
  letter-spacing: var(--ls-tight);
  line-height: var(--lh-tight);
  margin-bottom: var(--space-md);
}

/* Accent line below H1 (thematic gold rule) */
.services-hero__title::after {
  content: '';
  display: block;
  width: 56px;
  height: 3px;
  background-color: var(--color-accent-gold);
  border-radius: var(--radius-pill);
  margin-top: var(--space-md);
}

.services-hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--color-text-muted);
  line-height: var(--lh-relaxed);
  max-width: 48ch;
  margin-bottom: var(--space-xl);
}

.services-hero__cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-md);
}

@media (min-width: 480px) {
  .services-hero__cta {
    flex-direction: row;
    align-items: center;
  }
}

/* Secondary text link next to CTA button */
.services-hero__browse-link {
  font-family: var(--font-accent);
  font-size: var(--small-size);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--color-accent-gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  white-space: nowrap;
  transition: gap var(--transition-fast), color var(--transition-fast);
}

.services-hero__browse-link:hover {
  gap: 0.625rem;
  color: var(--color-cta);
}


/* =============================================================================
   02. BRAND STATEMENT
   ============================================================================= */

.brand-statement {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) 0;
}

@media (min-width: 768px) {
  .brand-statement {
    padding: var(--space-3xl) 0;
  }
}

.brand-statement__inner {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
}

/* Decorative gold horizontal rule */
.brand-statement__rule {
  width: 40px;
  height: 2px;
  background: var(--color-accent-gold);
  border-radius: var(--radius-pill);
}

.brand-statement__text {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.0625rem);
  font-weight: var(--fw-regular);
  color: var(--color-text-primary);
  line-height: 1.85;
  max-width: 72ch;
}

.brand-statement__meta {
  font-family: var(--font-accent);
  font-size: var(--small-size);
  letter-spacing: var(--ls-wide);
  color: var(--color-text-muted);
}

.brand-statement__meta a {
  color: var(--color-accent-gold);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.brand-statement__meta a:hover {
  color: var(--color-cta);
}


/* =============================================================================
   03. SERVICE CARDS — BENTO GRID
   Desktop: asymmetric 2+3 (card 1 spans 2/3 cols, card 2 spans 1/3)
   Tablet: 2-column
   Mobile: single column
   This is intentionally different from the homepage's 5-in-a-row grid.
   ============================================================================= */

.services-cards-section {
  background-color: var(--color-bg-secondary);
  padding: var(--section-pad-mobile);
}

@media (min-width: 768px) {
  .services-cards-section {
    padding: var(--section-pad-tablet);
  }
}

@media (min-width: 1280px) {
  .services-cards-section {
    padding: var(--section-pad-desktop);
  }
}

/* ── Bento grid ──────────────────────────────────────────────────────────── */
.services-bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

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

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

  /* Card 1 (2BHK): spans 2 columns — left of first row */
  .services-bento__card:nth-child(1) {
    grid-column: span 2;
  }

  /* Card 2 (3BHK): 1 column — right of first row */
  .services-bento__card:nth-child(2) {
    grid-column: span 1;
  }

  /* Cards 3-5: each 1 column in second row */
}

@media (min-width: 640px) and (max-width: 1023px) {
  /* On tablet, last card spans 2 columns for symmetry */
  .services-bento__card:nth-child(5) {
    grid-column: span 2;
  }
}

/* ── Individual bento card ───────────────────────────────────────────────── */
.services-bento__card {
  background-color: var(--color-bg-primary);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-card);
  display: flex;
  flex-direction: column;
}

.services-bento__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-accent-gold);
}

/* Image wrap */
.services-bento__image-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  min-height: 200px;
}

/* First card (larger) — wider image keeps card height closer to 3BHK neighbour */
@media (min-width: 1024px) {
  .services-bento__card:nth-child(1) .services-bento__image-wrap {
    aspect-ratio: 24 / 7;
    min-height: 220px;
    max-height: 280px;
  }
}

/* Placeholder background while real photo is added */
.services-bento__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--color-bg-secondary) 0%,
    var(--color-highlight)    100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--color-border);
  transition: transform var(--transition-slow);
}

.services-bento__card:hover .services-bento__placeholder {
  transform: scale(1.04);
}

/* Darkening overlay on hover */
.services-bento__image-overlay {
  position: absolute;
  inset: 0;
  background: var(--color-accent-dark);
  opacity: 0;
  transition: opacity var(--transition-base);
  pointer-events: none;
}

.services-bento__card:hover .services-bento__image-overlay {
  opacity: 0.12;
}

/* Card body */
.services-bento__body {
  padding: var(--space-md) var(--space-lg) var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  flex: 1;
}

/* Meta row: badge + sqft */
.services-bento__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-xs);
}

.services-bento__sqft {
  font-family: var(--font-accent);
  font-size: var(--small-size);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-wide);
  color: var(--color-text-muted);
}

/* Service title */
.services-bento__title {
  font-family: var(--font-heading);
  font-size: clamp(1.375rem, 2.5vw, 1.625rem);
  font-weight: var(--fw-semibold);
  color: var(--color-accent-dark);
  line-height: var(--lh-snug);
}

/* Bullet list with gold markers */
.services-bento__bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  flex: 1;
  margin-top: var(--space-xs);
}

.services-bento__bullets li {
  position: relative;
  padding-left: 1.25rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: var(--lh-relaxed);
}

.services-bento__bullets li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-accent-gold);
  font-size: 1.125rem;
  line-height: var(--lh-relaxed);
}

/* Explore link */
.services-bento__link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-family: var(--font-accent);
  font-size: var(--small-size);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--color-cta);
  text-decoration: none;
  margin-top: var(--space-xs);
  transition: gap var(--transition-fast), color var(--transition-fast);
}

.services-bento__link:hover {
  gap: 0.625rem;
  color: var(--color-accent-dark);
}

/* No-price note below cards */
.services-no-price-note {
  margin-top: var(--space-xl);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  flex-wrap: wrap;
  max-width: 100%;
  line-height: var(--lh-relaxed);
}

.services-no-price-note .fa-circle-info {
  color: var(--color-accent-gold);
  flex-shrink: 0;
}

.services-no-price-note a {
  color: var(--color-accent-gold);
  text-decoration: none;
  font-weight: var(--fw-medium);
  transition: color var(--transition-fast);
}

.services-no-price-note a:hover {
  color: var(--color-cta);
}


/* =============================================================================
   04. INCLUSIONS — HORIZONTAL STRIP CARDS
   One item per row, icon + title/desc + checkmark.
   Intentionally different from homepage's terracotta icon grid.
   ============================================================================= */

.services-inclusions {
  background-color: var(--color-bg-primary);
  padding: var(--section-pad-mobile);
}

@media (min-width: 768px) {
  .services-inclusions {
    padding: var(--section-pad-tablet);
  }
}

@media (min-width: 1280px) {
  .services-inclusions {
    padding: var(--section-pad-desktop);
  }
}

/* ── Strip list container ─────────────────────────────────────────────────── */
.inclusions-strips {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
  max-width: 900px;
  margin-inline: auto;
  margin-top: var(--space-xl);
}

@media (min-width: 768px) {
  .inclusions-strips {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── Individual strip card ───────────────────────────────────────────────── */
.inclusion-strip {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  background-color: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  transition: border-color var(--transition-base), box-shadow var(--transition-base), transform var(--transition-base);
}

.inclusion-strip:hover {
  border-color: var(--color-accent-gold);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

/* Icon wrap */
.inclusion-strip__icon-wrap {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background-color: var(--color-bg-primary);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--color-accent-gold);
  transition: background-color var(--transition-base);
}

.inclusion-strip:hover .inclusion-strip__icon-wrap {
  background-color: var(--color-accent-gold);
  border-color: var(--color-accent-gold);
  color: var(--color-bg-dark);
}

/* Text area */
.inclusion-strip__text {
  flex: 1;
  min-width: 0;
}

.inclusion-strip__title {
  font-family: var(--font-heading);
  font-size: var(--h4-size);
  font-weight: var(--fw-semibold);
  color: var(--color-accent-dark);
  line-height: var(--lh-snug);
  margin-bottom: 2px;
}

.inclusion-strip__desc {
  font-family: var(--font-body);
  font-size: var(--small-size);
  color: var(--color-text-muted);
  line-height: var(--lh-normal);
  max-width: 100%;
}

/* Checkmark */
.inclusion-strip__check {
  flex-shrink: 0;
  font-size: 1.25rem;
  color: var(--color-accent-green);
  opacity: 0.8;
}

/* ── Bonus row: 3 smaller always-included items ──────────────────────────── */
.inclusions-bonus {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-md) var(--space-xl);
  margin-top: var(--space-xl);
  padding: var(--space-md) var(--space-lg);
  background-color: var(--color-bg-dark);
  border-radius: var(--radius-md);
  max-width: 900px;
  margin-inline: auto;
  margin-top: var(--space-lg);
}

.inclusions-bonus__item {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-family: var(--font-accent);
  font-size: var(--small-size);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--color-text-on-dark);
}

.inclusions-bonus__item i {
  color: var(--color-accent-gold);
  font-size: 1rem;
}


/* =============================================================================
   05. PROCESS — 3 NUMBERED CARDS
   Completely different from the homepage's 7-step pinned horizontal timeline.
   Large watermark numbers create visual hierarchy.
   ============================================================================= */

.services-process {
  background-color: var(--color-bg-secondary);
  padding: var(--section-pad-mobile);
}

@media (min-width: 768px) {
  .services-process {
    padding: var(--section-pad-tablet);
  }
}

@media (min-width: 1280px) {
  .services-process {
    padding: var(--section-pad-desktop);
  }
}

/* ── 3-column grid ───────────────────────────────────────────────────────── */
.process-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
  align-items: stretch; /* equal-height cards */
}

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

/* ── Numbered card ───────────────────────────────────────────────────────── */
.process-num-card {
  background-color: var(--color-bg-primary);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  padding: var(--space-2xl) var(--space-xl) var(--space-xl);
  position: relative;
  overflow: visible; /* was "hidden" — caused text clipping on unequal-height cards */
  height: auto;
  display: flex;
  flex-direction: column;
  transition: var(--transition-card), border-color var(--transition-base);
  /* clip only the watermark, not the card content */
  clip-path: none;
}

.process-num-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-accent-gold);
}

/* Watermark number — large, low-opacity, positioned as background decoration */
.process-num-card__watermark {
  position: absolute;
  top: var(--space-xs); /* was -0.15em; now inside the card boundary */
  right: var(--space-md);
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 6rem);
  font-weight: var(--fw-bold);
  color: var(--color-accent-gold);
  opacity: 0.1;
  line-height: 1;
  user-select: none;
  pointer-events: none;
  letter-spacing: var(--ls-tight);
  transition: opacity var(--transition-base);
  overflow: hidden; /* contain the watermark within its own bounds */
}

.process-num-card:hover .process-num-card__watermark {
  opacity: 0.16;
}

/* Icon */
.process-num-card__icon {
  font-size: 1.75rem;
  color: var(--color-accent-gold);
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 1;
  display: block;
}

/* Title */
.process-num-card__title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: var(--fw-semibold);
  color: var(--color-accent-dark);
  margin-bottom: var(--space-sm);
  position: relative;
  z-index: 1;
  line-height: var(--lh-snug);
}

/* Gold underline accent on title */
.process-num-card__title::after {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--color-accent-gold);
  border-radius: var(--radius-pill);
  margin-top: var(--space-xs);
}

/* Description */
.process-num-card__desc {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: var(--lh-relaxed);
  position: relative;
  z-index: 1;
  max-width: 100%;
  flex: 1; /* push any following elements to bottom in flex card */
}

/* Footer below cards */
.services-process__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-2xl);
  text-align: center;
}

.services-process__note {
  font-family: var(--font-accent);
  font-size: var(--small-size);
  letter-spacing: var(--ls-wide);
  color: var(--color-text-muted);
  text-transform: uppercase;
}


/* =============================================================================
   06. CTA STRIP
   ============================================================================= */

.services-cta-strip {
  background-color: var(--color-accent-dark);
  padding: var(--space-3xl) 0;
  text-align: center;
}

.services-cta-strip__inner {
  max-width: 600px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.services-cta-strip__title {
  font-family: var(--font-heading);
  font-size: var(--h2-size);
  font-weight: var(--fw-semibold);
  color: var(--color-text-on-dark);
  line-height: var(--lh-snug);
}

.services-cta-strip__subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.0625rem);
  color: var(--color-text-on-dark);
  opacity: 0.85;
  line-height: var(--lh-relaxed);
  max-width: 50ch;
}

/* Phone line below CTA button */
.services-cta-strip__phone {
  font-family: var(--font-body);
  font-size: var(--small-size);
  color: var(--color-text-on-dark);
  opacity: 0.65;
  margin-top: var(--space-xs);
}

.services-cta-strip__phone-link {
  color: var(--color-accent-gold);
  text-decoration: none;
  font-weight: var(--fw-medium);
  transition: opacity var(--transition-fast);
}

.services-cta-strip__phone-link:hover {
  opacity: 0.85;
  color: var(--color-accent-gold);
}
