/* ==========================================================================
   Personal Assistance — page-specific sections
   (loaded after site.css; reuses shared chrome, .cta, [data-reveal], CSS vars)
   ========================================================================== */

/* ---------- HERO: parallax image band ---------- */
.svc-hero {
  position: relative;
  overflow: hidden;
  min-height: 62vh;
  display: flex;
  align-items: flex-end;
  background: var(--dark);
  color: var(--cream);
}
.svc-hero__media {
  position: absolute;
  top: -6%;
  left: 0;
  width: 100%;
  height: 112%;
  object-fit: cover;
  display: block;
  opacity: .6;
}
.svc-hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,16,11,.42) 0%, rgba(20,16,11,.30) 32%, rgba(20,16,11,.62) 68%, rgba(20,16,11,.90) 100%);
}
@media (max-width:500px){
  .svc-hero__veil { background: linear-gradient(180deg, rgba(20,16,11,.46) 0%, rgba(20,16,11,.34) 30%, rgba(20,16,11,.70) 62%, rgba(20,16,11,.92) 100%); }
}
.svc-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 150px clamp(22px, 5vw, 32px) clamp(46px, 7vh, 72px);
}
.svc-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: #EAD7AE;
  text-shadow: 0 1px 14px rgba(15,12,8,.75);
}
.svc-hero__eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold-light);
  display: inline-block;
}
.svc-hero__title {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(42px, 6.6vw, 92px);
  line-height: 1.0;
  letter-spacing: -0.015em;
  margin: 22px 0 0;
  max-width: 14ch;
  text-shadow: 0 2px 22px rgba(15,12,8,.55), 0 1px 4px rgba(15,12,8,.5);
}
.svc-hero__title em {
  font-style: italic;
  color: #D8BE8A;
  text-shadow: 0 2px 18px rgba(15,12,8,.7), 0 1px 3px rgba(15,12,8,.6);
}

/* ---------- INTRO ---------- */
.svc-intro {
  padding: clamp(64px, 10vh, 110px) clamp(22px, 5vw, 32px) clamp(20px, 3vh, 32px);
}
.svc-intro__lead {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 2.7vw, 32px);
  line-height: 1.4;
  color: #3a3830;
  transition-duration: 1s;
}

/* ---------- WHAT WE HANDLE ---------- */
.handle {
  padding: clamp(48px, 7vh, 84px) clamp(22px, 5vw, 32px) clamp(72px, 11vh, 128px);
}
.handle__inner {
  max-width: 1140px;
  margin: 0 auto;
}
.handle__head {
  border-bottom: 1px solid var(--line-2);
  padding-bottom: 18px;
  margin-bottom: 46px;
  transition-duration: 1s;
}
.handle__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold);
}
.handle__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(30px, 4vw, 56px);
}
.handle__item {
  transition-duration: 1s;
}
.handle__grid > .handle__item:nth-child(3n + 2) { transition-delay: .06s; }
.handle__grid > .handle__item:nth-child(3n + 3) { transition-delay: .12s; }
.handle__item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 25px;
}
.handle__item p {
  color: var(--muted);
  font-size: 15.5px;
  margin-top: 10px;
  line-height: 1.7;
}
