/*-- -------------------------- -->
<---      Om oss (local)        -->
<--- -------------------------- -*/

/*-- -------------------------- -->
<---          Intro            -->
<--- -------------------------- -*/
/* Mobile */
@media only screen and (min-width: 0em) {
  #about-intro {
    padding: clamp(3.75rem, 7vw, 6rem) 1rem;
  }
  #about-intro .ai-container {
    width: 92%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    align-items: center;
  }
  /* Photo placeholder */
  #about-intro .ai-visual {
    width: 100%;
    max-width: 22rem;
    flex-shrink: 0;
  }
  #about-intro .ai-photo {
    display: block;
    aspect-ratio: 1 / 1;
    width: 100%;
    height: auto;
    border-radius: 1.5rem;
    border: 1px solid var(--border);
    object-fit: cover;
    object-position: center 20%;
  }
  #about-intro .ai-text {
    width: 100%;
    max-width: 38rem;
  }
  #about-intro .section-intro {
    margin-bottom: 1.25rem;
  }
  /* Visible note marking copy the user still needs to write */
  #about-intro .placeholder {
    color: var(--primary);
    font-style: italic;
  }
  #about-intro .ai-signature {
    display: flex;
    flex-direction: column;
    margin: 0 0 2rem;
  }
  #about-intro .ai-name {
    font-weight: 700;
    color: var(--text);
    font-size: 1.1rem;
  }
  #about-intro .ai-role {
    color: var(--text-muted);
    font-size: 0.9rem;
  }
}
/* Desktop: photo left, text right */
@media only screen and (min-width: 64em) {
  #about-intro .ai-container {
    flex-direction: row;
    align-items: flex-start;
    gap: 4.5rem;
  }
  #about-intro .ai-visual {
    position: sticky;
    top: 8rem;
  }
}

/*-- -------------------------- -->
<---      Vår arbetsprocess     -->
<--- -------------------------- -*/
/* A dark band in both themes — mirrors Oak Harbor's "We take care of everything". */
/* Mobile */
@media only screen and (min-width: 0em) {
  #about-process {
    background: #1d2021;
    color: #ebdbb2;
    padding: clamp(3.75rem, 7vw, 6rem) 1rem;
  }
  #about-process .ap-container {
    width: 92%;
    max-width: 80rem;
    margin: auto;
  }
  #about-process .section-head {
    text-align: center;
    margin-bottom: 3rem;
  }
  #about-process .section-head .topper {
    color: var(--primary-hover);
  }
  #about-process .section-head .section-title {
    color: #f9f5d7;
  }
  #about-process .section-head .section-intro {
    color: #d5c4a1;
    margin: 0 auto;
  }
  #about-process .ap-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  #about-process .ap-step {
    position: relative;
    background: #32302f;
    border: 1px solid #504945;
    border-radius: 0.9rem;
    padding: 2.25rem 1.75rem 1.75rem;
    transition: transform .35s ease, border-color .35s, box-shadow .35s;
  }
  #about-process .ap-step:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.35);
  }
  #about-process .ap-num {
    position: absolute;
    top: -1.25rem;
    left: 1.75rem;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-weight: 900;
    font-size: 1.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(214, 93, 14, 0.4);
  }
  #about-process .ap-step h3 {
    color: #f9f5d7;
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
  }
  #about-process .ap-step p {
    color: #a89984;
    font-size: 0.98rem;
    line-height: 1.6;
  }
}
/* Desktop: three steps across */
@media only screen and (min-width: 48em) {
  #about-process .ap-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}
/* Dark mode: lift the cards slightly off the dark band */
@media only screen and (min-width: 0em) {
  body.dark-mode #about-process {
    background: #282828;
  }
  body.dark-mode #about-process .ap-step {
    background: #1d2021;
    border-color: #3c3836;
  }
}
