/* assets/ss-concierge.css
 *
 * Extends the shared "ss-" design system in ss-homepage.css, which is enqueued
 * ahead of this file. Only concierge-specific components live here.
 */

.ss-concierge {
  --ss-navy: #12305c;
  --ss-blue: #2b6cb0;
  --ss-blue-dark: #215387;
  --ss-muted: rgba(14, 27, 42, .7);
  --ss-border: rgba(18, 48, 92, .14);
  --ss-alt-bg: rgba(18, 48, 92, .04);
}

/*
* HERO: same structure as the homepage hero, but page-height. Featured image
* is a real img.ss-hero__img; gradient overlay is CSS-only.
*/

.ss-hero--concierge {
  height: auto;
  min-height: 0;
  padding: clamp(140px, 18vw, 200px) 0 clamp(70px, 10vw, 110px);
}

.ss-hero--concierge .ss-hero__bg {
  background: #12305c;
}

.ss-hero--concierge .ss-hero__bg::after {
  background: linear-gradient(100deg, rgba(18, 48, 92, .88) 0%, rgba(18, 48, 92, .68) 48%, rgba(18, 48, 92, .38) 100%);
}

.ss-hero--concierge .ss-hero__img {
  object-position: center 42%;
}

/* Undo the homepage hero's absolute centring; this hero is left-aligned. */
.ss-hero--concierge .ss-hero__inner {
  position: relative;
  transform: none;
  top: auto;
  left: auto;
  min-width: 0;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: left;
}

.ss-hero__copy { max-width: 660px; }

.ss-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 30px;
}

.ss-hero--concierge .ss-btn--secondary {
  background: rgba(255, 255, 255, .14);
  border-color: rgba(255, 255, 255, .28);
  color: #fff;
}

.ss-hero--concierge .ss-hero-stats {
  margin: 34px 0 0;
  max-width: 580px;
  padding: 18px 0 0;
  border-top: 1px solid rgba(255, 255, 255, .22);
  border-radius: 0;
}

@media (max-width: 640px) {
  .ss-hero--concierge .ss-hero-stats { padding: 18px 0 0; }
}

/*
* Shared section furniture
*/

.ss-eyebrow {
  display: block;
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ss-blue);
}

.ss-hero--concierge .ss-eyebrow { color: rgba(255, 255, 255, .85); }

.ss-section__head--center {
  max-width: 680px;
  margin: 0 auto 34px;
  text-align: center;
}

.ss-section__head--center .ss-muted { margin: 0 auto; }

/*
* HOW IT WORKS: numbered steps
*/

.ss-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  counter-reset: ss-step;
}

.ss-step {
  position: relative;
  padding: 26px 22px;
  background: #fff;
  border: 1px solid var(--ss-border);
  border-radius: 18px;
}

.ss-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: var(--ss-navy);
  color: #fff;
  font-weight: 800;
  font-size: 17px;
  line-height: 1;
}

/* Connector line between steps on wide screens. */
.ss-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 47px;
  right: -16px;
  width: 16px;
  height: 2px;
  background: var(--ss-border);
}

@media (max-width: 980px) {
  .ss-steps { grid-template-columns: repeat(2, 1fr); }
  .ss-step:not(:last-child)::after { display: none; }
}

@media (max-width: 560px) {
  .ss-steps { grid-template-columns: 1fr; }
}

/*
* BENEFIT LIST: ticked list used alongside the feature cards
*/

.ss-ticks {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.ss-ticks li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  color: var(--ss-muted);
}

.ss-ticks svg {
  display: block;
  width: 1.15em;
  height: 1.15em;
  color: var(--ss-blue);
}

.ss-ticks strong {
  display: block;
  color: var(--ss-navy);
  font-weight: 700;
}

/*
* MEET YOUR CONCIERGE
*/

.ss-person {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  align-items: center;
}

.ss-person__photo {
  margin: 0;
  border-radius: 999px;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--ss-alt-bg);
}

.ss-person__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ss-person__body p { color: var(--ss-muted); }

.ss-person__name {
  margin: 22px 0 2px;
  font-size: 20px;
  font-weight: 800;
  color: var(--ss-navy);
}

.ss-person__role {
  margin: 0;
  font-size: 14px;
  color: var(--ss-muted);
}

@media (max-width: 860px) {
  .ss-person {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .ss-person__photo {
    width: 200px;
    margin: 0 auto;
  }
}

/*
* INTERNAL LINK PILLS
*/

.ss-pill-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

/*
* FAQ: native <details> accordion, no JS required
*/

.ss-faq {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.ss-faq__item {
  background: #fff;
  border: 1px solid var(--ss-border);
  border-radius: 14px;
  overflow: hidden;
}

.ss-faq__q {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 700;
  color: var(--ss-navy);
  list-style: none;
}

.ss-faq__q::-webkit-details-marker { display: none; }

.ss-faq__q:hover { background: var(--ss-alt-bg); }

.ss-faq__q:focus-visible {
  outline: 2px solid var(--ss-blue);
  outline-offset: -2px;
}

.ss-faq__icon {
  flex: none;
  width: 20px;
  height: 20px;
  color: var(--ss-blue);
  transition: transform .2s ease;
}

.ss-faq__item[open] .ss-faq__icon { transform: rotate(45deg); }

.ss-faq__a {
  padding: 0 20px 20px;
  margin: 0;
  color: var(--ss-muted);
}

.ss-faq__a a {
  color: var(--ss-blue);
  font-weight: 600;
}

/*
* LEAD FORM BLOCK
*/

.ss-form-section { padding: 64px 0; }

.ss-form-shell {
  max-width: 860px;
  margin: 0 auto;
}

@media (prefers-reduced-motion: reduce) {
  .ss-faq__icon,
  .ss-card { transition: none; }
}
