/* ============================================================
   ARDEN LANDSCAPES — audit.css
   landscape-audits.html specific:
   Three-column audit card grid and handover feature section.
   ============================================================ */


/* ── Services section wrapper ── */
.services-section {
  padding: 120px 72px;
  background: var(--bg);
}


/* ── Three-column audit card grid ── */
.audit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.audit-card {
  background: var(--white);
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  padding: 2rem 1.8rem 1.8rem;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
  position: relative;
}
.audit-card:hover {
  box-shadow: 0 8px 32px rgba(30,58,30,0.09);
  transform: translateY(-3px);
  border-color: var(--sage);
}

.audit-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  flex-shrink: 0;
  transition: background 0.25s, border-color 0.25s;
}
.audit-card:hover .audit-card-icon {
  background: var(--forest);
  border-color: var(--forest);
}
.audit-card-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--sage);
  transition: stroke 0.25s;
}
.audit-card:hover .audit-card-icon svg { stroke: var(--sage-light); }

.audit-card-num {
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: transparent;
  font-weight: 600;
  margin-bottom: 0.5rem;
  user-select: none;
}

.audit-card h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--forest);
  line-height: 1.2;
  margin-bottom: 0.8rem;
}

.audit-card p {
  font-family: var(--font-body);
  font-size: 0.87rem;
  color: var(--text-soft);
  line-height: 1.8;
  margin: 0;
  flex: 1;
}

.audit-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 1.4rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
}
.audit-badge::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage-light);
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}


/* ── Handover feature section ── */
.handover-section {
  background: var(--bg-mid);
  border-top: 1px solid var(--border-strong);
  padding: 120px 72px;
}

.handover-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.handover-img {
  aspect-ratio: 3 / 4;
  background: var(--bg-deep);
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}
.handover-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 65% at 40% 60%, rgba(107,144,66,0.13) 0%, transparent 60%),
    radial-gradient(ellipse 35% 35% at 70% 25%, rgba(139,174,102,0.08) 0%, transparent 50%);
}
.handover-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.handover-img-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(30,58,30,0.35);
}

.handover-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 300;
  color: var(--forest);
  line-height: 1.1;
  margin-bottom: 1.4rem;
}
.handover-content h2 em,
.handover-content h2 span[style*="font-style: italic"] { font-style: italic; color: var(--sage); }
.handover-content p {
  font-size: 0.93rem;
  color: var(--text-soft);
  line-height: 1.85;
  margin-bottom: 1rem;
}
.handover-content p:last-of-type { margin-bottom: 0; }


/* ── Responsive ── */

/* Tablet (≤1080px) */
@media (max-width: 1080px) {
  .services-section { padding: 80px 36px; }

  /* 2-column grid; 3rd card spans both cols and centres at half-width */
  .audit-grid { grid-template-columns: repeat(2, 1fr); }
  .audit-card:last-child {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
  }
  .audit-card        { padding: 1.5rem; }
  .audit-card h3     { font-size: 1.3rem; }
  .audit-card p      { font-size: 0.9rem; line-height: 1.5; }

  .handover-section { padding: 80px 36px; }
  .handover-inner   { gap: 48px; }
}

/* Mobile (≤760px) */
@media (max-width: 760px) {
  .services-section { padding: 64px 20px; }

  /* Single column; each card centred at max 440px */
  .audit-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .audit-card {
    max-width: 440px;
    width: 100%;
    margin: 0 auto;
    padding: 1.25rem;
  }
  /* Reset 3rd-card overrides set at 1080px */
  .audit-card:last-child {
    grid-column: auto;
    max-width: 440px;
  }
  .audit-card h3 { font-size: 1.2rem; }
  .audit-card p  { font-size: 0.875rem; line-height: 1.5; }

  .handover-section { padding: 64px 20px; }
  .handover-inner   { grid-template-columns: 1fr; }
}

/* Small mobile (≤480px) */
@media (max-width: 480px) {
  /* Cards */
  .audit-card,
  .audit-card:last-child {
    max-width: 92vw;
    padding: 1rem;
  }
  .audit-card h3 { font-size: 1.1rem; }
  .audit-card p  { font-size: 0.85rem; line-height: 1.45; }
  .audit-card-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 0.75rem;
  }

  /* Section heading — scoped to avoid affecting other pages */
  .services-section .services-section-header h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }
  .services-section .services-section-header .eyebrow {
    font-size: 0.7rem;
  }
}
