/* ============================================================
   L Brother — Sections, part 2
   Why us, process steps, directions, CTA band, about,
   testimonials, FAQ, footer.
   ============================================================ */

/* ------------------------------------------------------------
   Why us
   ------------------------------------------------------------ */

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.why-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 34px 30px;
  background: var(--lifted);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  transition:
    transform  .3s var(--ease),
    box-shadow .3s var(--ease);
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-card);
}

.why-num {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--tw-accent);
}

.why-card .ic {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  color: var(--ink);
  border: 1.5px solid var(--line-strong);
  border-radius: 50%;
}

.why-card .ic svg {
  width: 26px;
  height: 26px;
}

.why-card h4 {
  font-size: 21px;
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -0.01em;
}

.why-card p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--slate);
}

/* ------------------------------------------------------------
   Process steps — numbered via CSS counter
   ------------------------------------------------------------ */

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

.step {
  position: relative;
  padding-top: 40px;
}

.step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  margin-bottom: 18px;
  font-size: clamp(40px, 4vw, 58px);
  font-weight: 900;
  line-height: .8;
  letter-spacing: -0.04em;
  color: #C3CBDC;
}

/* Connector rail with a dot at the step's start */
.step .dot-line {
  position: absolute;
  top: 14px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--line);
}

.step .dot-line::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 0;
  width: 9px;
  height: 9px;
  background: var(--tw-accent);
  border-radius: 50%;
}

.step h4 {
  margin-bottom: 12px;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.01em;
}

.step p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--slate);
}

/* ------------------------------------------------------------
   Directions
   ------------------------------------------------------------ */

.dir {
  position: relative;
  padding: clamp(40px, 5vw, 72px);
  background: var(--lifted);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  overflow: hidden;
}

.dir-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.dir h2 {
  margin-bottom: 22px;
}

.dir p {
  margin-bottom: 26px;
  font-size: 17px;
  line-height: 1.55;
  color: var(--slate);
}

.dir-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.dir-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  font-size: 15px;
  font-weight: 600;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  transition: all .2s var(--ease);
}

.dir-chip .fl {
  width: 8px;
  height: 8px;
  background: var(--tw-accent-soft);
  border-radius: 50%;
}

.dir-chip:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}

.dir-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 26px;
  font-size: 14.5px;
  color: var(--slate);
}

.dir-note svg {
  flex: none;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  color: var(--tw-accent);
}

.dir-map {
  position: relative;
  aspect-ratio: 1 / 1;
  min-height: 300px;
}

/* ------------------------------------------------------------
   CTA band
   ------------------------------------------------------------ */

.cta-band {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: clamp(36px, 4.5vw, 60px);
  background: var(--tint);
  border-radius: var(--r-card);
  overflow: hidden;
}

.cta-band h2 {
  max-width: 18ch;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.cta-band .deco {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  border: 1.4px solid var(--tw-accent-soft);
  border-radius: 50%;
  opacity: .4;
}

/* ------------------------------------------------------------
   About
   ------------------------------------------------------------ */

.about-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

.about-art {
  position: relative;
  aspect-ratio: 4 / 5;
  min-height: 320px;
  background: var(--tw-ink);
  border-radius: var(--r-card);
  overflow: hidden;
}

.about-art .a-c1 {
  position: absolute;
  top: 8%;
  left: -12%;
  width: 70%;
  height: 55%;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, var(--tw-accent-soft), transparent 72%);
}

.about-art .a-pill {
  position: absolute;
  right: -10%;
  bottom: 14%;
  width: 60%;
  height: 22%;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--r-pill);
}

.about-art .a-glyph {
  position: absolute;
  left: 28px;
  bottom: 24px;
  font-size: 80px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #fff;
  opacity: .95;
}

.about-body p {
  max-width: 60ch;
  margin: 0 0 20px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--granite);
}

.about-body p:last-child {
  margin-bottom: 0;
}

.about-body .pull {
  font-weight: 700;
  color: var(--ink);
}

/* ------------------------------------------------------------
   Testimonials
   ------------------------------------------------------------ */

.t-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.t-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 34px 30px;
  background: var(--lifted);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
}

.t-quote {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: var(--granite);
}

/* Oversized opening quote mark */
.t-quote::before {
  content: "\201C";
  display: block;
  height: 30px;
  margin-bottom: 14px;
  font-size: 56px;
  font-weight: 900;
  line-height: .4;
  color: var(--tw-accent);
}

.t-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
}

.t-ava {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 48px;
  height: 48px;
  font-weight: 800;
  color: var(--granite);
  background: var(--tint);
  border: 1px solid var(--line);
  border-radius: 50%;
}

.t-name {
  font-size: 15.5px;
  font-weight: 700;
}

.t-role {
  font-size: 13.5px;
  color: var(--slate);
}

/* Placeholder variant — awaiting real testimonials */
.t-ph {
  opacity: .7;
}

.t-ph .t-quote {
  color: var(--slate);
}

/* ------------------------------------------------------------
   FAQ accordion
   ------------------------------------------------------------ */

.faq-wrap {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  padding: 26px 4px;
  font-size: clamp(17px, 1.5vw, 21px);
  font-weight: 700;
  letter-spacing: -0.01em;
  text-align: left;
  color: var(--ink);
  transition: color .2s;
}

.faq-q:hover {
  color: var(--tw-accent);
}

.faq-ic {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 36px;
  height: 36px;
  color: var(--ink);
  border: 1.5px solid var(--line-strong);
  border-radius: 50%;
  transition: all .3s var(--ease);
}

.faq-ic svg {
  width: 16px;
  height: 16px;
  transition: transform .35s var(--ease);
}

.faq-item.open .faq-ic {
  background: var(--tw-ink);
  color: #fff;
  border-color: var(--tw-ink);
}

.faq-item.open .faq-ic svg {
  transform: rotate(180deg);
}

/* Height is set inline by JS so the transition has a target */
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease);
}

.faq-a p {
  max-width: 64ch;
  margin: 0;
  padding: 0 60px 28px 4px;
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--slate);
}

/* ------------------------------------------------------------
   Footer
   ------------------------------------------------------------ */

.footer {
  margin-top: clamp(40px, 6vw, 80px);
  padding: clamp(56px, 7vw, 96px) 0 40px;
  background: var(--footer);
  color: #fff;
  border-radius: var(--r-card) var(--r-card) 0 0;
}

.footer .eyebrow {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, .55);
}

.footer h2 {
  max-width: 16ch;
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.02em;
}

.footer .lead {
  margin-bottom: 48px;
  color: rgba(255, 255, 255, .66);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .9fr .9fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.foot-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 22px;
  color: #fff;
}

.foot-col h4 {
  margin-bottom: 18px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
}

.foot-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 22px;
}

.foot-contact .ph {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.foot-contact .tag {
  font-size: 14px;
  color: rgba(255, 255, 255, .55);
}

.foot-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 0;
  font-size: 15.5px;
  color: rgba(255, 255, 255, .8);
  transition: color .2s;
}

.foot-link:hover {
  color: #fff;
}

.foot-link svg {
  width: 17px;
  height: 17px;
}

.foot-social {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.foot-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  transition: all .2s var(--ease);
}

.foot-social a:hover {
  background: #fff;
  color: var(--ink);
}

.foot-social svg {
  width: 19px;
  height: 19px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 32px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, .5);
}

.footer-bottom .fb-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-bottom a:hover {
  color: #fff;
}
