/* ═══════════════════════════════════════════════════
   HERO — full-bleed product image, title at bottom
═══════════════════════════════════════════════════ */
.hero_wrap {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background-color: #0e1410;
}

/* ── Media layer ─────────────────────────────────── */
.hero_media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero_media_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  pointer-events: none;
}

/* ── Gradient layers ─────────────────────────────── */
.hero_grad {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(135deg, rgba(23, 95, 45, 0.15) 0%, transparent 55%),
    linear-gradient(315deg, rgba(29, 29, 27, 0.6) 0%, transparent 60%);
}

.hero_overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    0deg,
    #1d1d1b 0%,
    rgba(29, 29, 27, 0.50) 38%,
    rgba(29, 29, 27, 0.15) 65%,
    rgba(29, 29, 27, 0.08) 100%
  );
}

/* ── Content ─────────────────────────────────────── */
.hero_contain {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  min-height: 100svh;
  padding-block: calc(var(--nav-height) + var(--space-4)) var(--space-7);
  color: var(--color-text-light);
}

.hero_kicker {
  font-family: var(--font-body);
  font-size: var(--step--1);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 240, 230, 0.45);
  padding-block: var(--space-3);
  border-top: var(--border-thin) solid rgba(245, 240, 230, 0.10);
  animation: fadeUp 0.7s 0.15s cubic-bezier(0.16, 1, 0.30, 1) both;
}

/* Bottom group — margin-top: auto pushes to bottom */
.hero_bottom {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.hero_title {
  font-family: var(--font-heading);
  font-size: var(--step-hero);
  font-weight: 800;
  line-height: 0.88;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0;
  transform: translateY(108%);
  animation: slideUp 1.15s 0.30s cubic-bezier(0.16, 1, 0.30, 1) both;
  will-change: transform;
}

.hero_rule {
  width: 100%;
  height: var(--border-thin);
  background-color: rgba(245, 240, 230, 0.18);
  transform: scaleX(0);
  transform-origin: left;
  animation: expandRule 0.9s 0.95s cubic-bezier(0.16, 1, 0.30, 1) both;
}

.hero_foot {
  display: grid;
  grid-template-columns: minmax(0, 0.5fr) 1fr;
  gap: var(--space-5);
  align-items: end;
  animation: fadeUp 0.8s 1.05s cubic-bezier(0.16, 1, 0.30, 1) both;
}

.hero_tagline {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 1.65vw, 1.5rem);
  font-weight: 400;
  line-height: 1.45;
  color: rgba(245, 240, 230, 0.60);
  margin: 0;
}

.hero_tagline strong {
  font-weight: 700;
  color: #f5f0e6;
}

.hero_actions {
  display: flex;
  gap: var(--space-2);
  justify-content: flex-end;
  flex-wrap: wrap;
  flex-shrink: 0;
}

@media (max-width: 52rem) {
  .hero_foot {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
  .hero_actions {
    justify-content: flex-start;
  }
}

/* ═══════════════════════════════════════════════════
   PARTNER STRIP — marquee
═══════════════════════════════════════════════════ */
.partners_wrap {
  background-color: var(--color-bg-dark);
  border-top: var(--border-thin) solid rgba(245, 240, 230, 0.05);
  border-bottom: var(--border-thin) solid rgba(245, 240, 230, 0.05);
  padding-block: 2.25rem;
  overflow: hidden;
}

/* Sliding track — two identical lists end-to-end */
.partners_track {
  display: flex;
  width: max-content;
  animation: partners-marquee 36s linear infinite;
}

@keyframes partners-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .partners_track { animation: none; }
}

.partners_list {
  display: flex;
  align-items: center;
  gap: 2.75rem;
  /* only end-padding — start is handled by the gap within the previous set's trailing dot */
  padding-inline-start: 0;
  padding-inline-end: 2.75rem;
  flex-shrink: 0;
}

.partners_item {
  display: flex;
  align-items: center;
}

.partners_logo {
  height: 1.8rem;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.72;
}

.partners_dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: rgba(245, 240, 230, 0.22);
  flex-shrink: 0;
}

@media (max-width: 40rem) {
  .partners_logo { height: 1.25rem; }
  .partners_list  { gap: 1.75rem; padding-inline-start: 0; padding-inline-end: 1.75rem; }
}

/* ═══════════════════════════════════════════════════
   CORE EQUIPMENT GRID
═══════════════════════════════════════════════════ */
.equip_section {
  background-color: var(--color-bg-section);
  padding-block: var(--space-7);
}

.equip_header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-5);
  margin-bottom: var(--space-6);
  flex-wrap: wrap;
}

.equip_title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4.05vw, 3.65rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1;
  color: var(--color-text);
  margin: 0;
}

.equip_subtitle {
  font-family: var(--font-heading);
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  font-weight: 300;
  color: var(--color-text-muted);
  line-height: 1.5;
  max-width: 28rem;
  margin: 0;
}

/* Pure fade reveal — no movement, premium feel */
.reveal-fade {
  opacity: 0;
  transition: opacity 0.85s ease;
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal-fade.is-visible { opacity: 1; }

.equip_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.equip_card {
  position: relative;
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(135deg, #1e3a28 0%, #0e1410 100%);
  cursor: pointer;
}

.equip_card_img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  z-index: 0;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.36, 1);
}

.equip_card:hover .equip_card_img {
  transform: scale(1.04);
}

/* Base gradient — subtle hint, always present */
.equip_card_overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    0deg,
    rgba(0, 14, 4, 0.55) 0%,
    rgba(0, 14, 4, 0.20) 40%,
    rgba(0, 14, 4, 0.05) 100%
  );
  transition: background 0.5s ease;
}

/* Hover: deepen the overlay so text is legible */
.equip_card:hover .equip_card_overlay {
  background: linear-gradient(
    0deg,
    rgba(0, 14, 4, 0.92) 0%,
    rgba(0, 14, 4, 0.60) 40%,
    rgba(0, 14, 4, 0.20) 70%,
    rgba(0, 14, 4, 0.08) 100%
  );
}

/* Caption: hidden by default, rises into view on hover */
.equip_card_caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 2.5rem 4rem 2.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  opacity: 0;
  transform: translateY(0.6rem);
  transition:
    opacity  0.45s cubic-bezier(0.16, 1, 0.36, 1),
    transform 0.45s cubic-bezier(0.16, 1, 0.36, 1);
}

.equip_card:hover .equip_card_caption {
  opacity: 1;
  transform: translateY(0);
}

.equip_card_title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.6vw, 2.375rem);
  font-weight: 700;
  line-height: 1.3;
  color: #f5f0e6;
  margin: 0;
}

.equip_card_text {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.063em;
  text-transform: uppercase;
  color: rgba(245, 240, 230, 0.55);
  line-height: 1.4;
  margin: 0;
}

/* "Browse category" — ghost/secondary button */
.equip_card_btn {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 0.5rem 1rem;
  margin-top: 0.4rem;
  border: 1px solid rgba(245, 240, 230, 0.35);
  border-radius: 3px;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(245, 240, 230, 0.75);
  text-decoration: none;
  transition:
    border-color 0.25s ease,
    color        0.25s ease;
}

.equip_card_btn:hover,
.equip_card_btn:focus-visible {
  border-color: rgba(245, 240, 230, 0.80);
  color: #f5f0e6;
}

/* Touch / no-hover devices: always show caption */
@media (hover: none) {
  .equip_card_caption {
    opacity: 1;
    transform: none;
  }
  .equip_card_overlay {
    background: linear-gradient(
      0deg,
      rgba(0, 14, 4, 0.85) 0%,
      rgba(0, 14, 4, 0.45) 38%,
      rgba(0, 14, 4, 0.10) 70%,
      rgba(0, 14, 4, 0.05) 100%
    );
  }
}

@media (max-width: 52rem) {
  .equip_grid { grid-template-columns: 1fr; }
  .equip_card { height: 300px; }
  .equip_header {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ═══════════════════════════════════════════════════
   FEATURED PRODUCTS
═══════════════════════════════════════════════════ */
.prod_section {
  background-color: var(--color-bg-section);
  padding-bottom: var(--space-7);
}

.prod_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.prod_card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0.75rem;
  border-radius: 12px;
  transition: background-color 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.prod_card:hover {
  background-color: #f2e9d3;
}

/* Image container */
.prod_card_img_wrap {
  background-color: #ede8dc;
  border: var(--border-thin) solid rgba(29, 29, 27, 0.10);
  border-radius: 8px;
  overflow: hidden;
  height: 19.2rem;
  position: relative;
  flex-shrink: 0;
}

.prod_card_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.75s cubic-bezier(0.16, 1, 0.30, 1);
}

.prod_card:hover .prod_card_img {
  transform: scale(1.04);
}

/* Badge + price row */
.prod_card_meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
}

.prod_card_badge {
  background-color: rgba(201, 149, 6, 0.10);
  color: #ae7f00;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  white-space: nowrap;
  line-height: 1.5;
}

.prod_card_price {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #e10000;
  white-space: nowrap;
}

/* Text content */
.prod_card_body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.prod_card_title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text);
  margin: 0;
}

.prod_card_text {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5;
  color: var(--color-text-muted);
  margin: 0;
}

/* CTA button */
.prod_card_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.7rem 1.5rem;
  border-radius: 4px;
  border: var(--border-thin) solid rgba(25, 85, 41, 0.30);
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #195529;
  cursor: pointer;
  transition:
    border-color 0.25s ease,
    background-color 0.25s ease,
    color 0.25s ease;
  align-self: flex-start;
}

.prod_card_btn:hover,
.prod_card_btn:focus-visible,
.prod_card:hover .prod_card_btn {
  background-color: #195529;
  border-color: rgba(255, 255, 255, 0.30);
  color: #fff;
}

@media (max-width: 64rem) {
  .prod_grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
}

@media (max-width: 42rem) {
  .prod_grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════
   B2B BANNER
═══════════════════════════════════════════════════ */
.b2b_section {
  background-color: var(--color-bg-section);
  padding-bottom: var(--space-7);
}

.b2b_banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
  padding: 2.5rem;
  border-radius: 8px;
  background: linear-gradient(
    88deg,
    #195529 0%,
    #247239 35%,
    #2d8845 66%,
    #2e7842 100%
  );
  flex-wrap: wrap;
}

.b2b_text {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  flex: 1;
  min-width: 0;
  max-width: 37.5rem;
}

.b2b_title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.6vw, 2.375rem);
  font-weight: 800;
  line-height: 1.3;
  color: #eeeae3;
  margin: 0;
}

.b2b_subtitle {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.063em;
  text-transform: uppercase;
  color: rgba(238, 234, 227, 0.60);
  line-height: 1.4;
  margin: 0;
}

@media (max-width: 52rem) {
  .b2b_banner {
    flex-direction: column;
    align-items: flex-start;
  }
  .b2b_subtitle {
    font-size: 0.875rem;
  }
}

/* ═══════════════════════════════════════════════════
   EXPANDABLE (details / summary) — utility
═══════════════════════════════════════════════════ */
.expand_wrap {
  border-top: var(--border-thin) solid var(--color-border);
  padding-top: var(--space-3);
}

.expand_summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: var(--step--1);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  user-select: none;
  transition: color var(--transition-fast);
}

.expand_summary::-webkit-details-marker { display: none; }
.expand_summary::marker               { display: none; }

.expand_summary::after {
  content: "+";
  font-size: 1.05rem;
  font-weight: 300;
  letter-spacing: 0;
  text-transform: none;
  transition: transform var(--transition-main);
  flex-shrink: 0;
}

details[open] > .expand_summary::after {
  transform: rotate(45deg);
}

.expand_summary:hover {
  color: var(--color-text);
}

.expand_body {
  padding-top: var(--space-3);
  display: grid;
  gap: var(--space-3);
  animation: fadeUp 0.4s cubic-bezier(0.16, 1, 0.30, 1) both;
}

/* ═══════════════════════════════════════════════════
   ANIMATION ENHANCEMENTS
═══════════════════════════════════════════════════ */

/* ── Clip-path wipe (luxury reveal for headings) ── */
.reveal-clip {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1.05s cubic-bezier(0.16, 1, 0.30, 1);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal-clip.is-visible {
  clip-path: inset(0 0 0% 0);
}

/* ── Scale + blur entrance (featured cards) ─────── */
.reveal-scale {
  opacity: 0;
  transform: scale(0.95) translateY(1.5rem);
  filter: blur(6px);
  transition:
    opacity 0.9s cubic-bezier(0.16, 1, 0.30, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.30, 1),
    filter 0.75s ease;
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal-scale.is-visible {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

/* ── Slide from left (work list items) ──────────── */
.reveal-left {
  opacity: 0;
  transform: translateX(-2rem);
  transition:
    opacity 0.75s cubic-bezier(0.16, 1, 0.30, 1),
    transform 0.75s cubic-bezier(0.16, 1, 0.30, 1);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal-left.is-visible {
  opacity: 1;
  transform: none;
}

/* Stronger entrance for equipment cards */
.equip_card.reveal-on-scroll {
  transform: translateY(2.5rem) scale(0.97);
}

/* Equipment card image zoom on hover */
.equip_card_img {
  transition: transform 1.1s cubic-bezier(0.16, 1, 0.30, 1);
  will-change: transform;
}
.equip_card:hover .equip_card_img {
  transform: scale(1.06);
}

/* Stronger entrance for product cards */
.prod_card.reveal-on-scroll {
  transform: translateY(2.5rem) scale(0.97);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-clip  { clip-path: none !important; transition: none !important; opacity: 1; }
  .reveal-scale { opacity: 1 !important; transform: none !important; filter: none !important; }
  .reveal-left  { opacity: 1 !important; transform: none !important; }
}

/* ═══════════════════════════════════════════════════
   WORK WITH CARRINGTON
═══════════════════════════════════════════════════ */
.work_section {
  background-color: #1d1d1b;
  padding-block: var(--space-7);
  color: #eeeae3;
}

/* ── Centered head ───────────────────────────── */
.work_head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.work_kicker {
  font-family: var(--font-body);
  font-size: var(--step--1);
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c99506;
}

.work_title {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #eeeae3;
  margin: 0;
}

.work_title_ball {
  height: clamp(2.2rem, 3.8vw, 3.2rem);
  width: auto;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

.work_intro {
  font-size: var(--step-0);
  font-weight: 300;
  color: #8e998a;
  line-height: 1.55;
  max-width: 44rem;
  margin: 0;
}

/* ── Row list ────────────────────────────────── */
.work_list {
  display: flex;
  flex-direction: column;
  border-top: var(--border-thin) solid rgba(238, 234, 227, 0.10);
}

.work_item {
  border-bottom: var(--border-thin) solid rgba(238, 234, 227, 0.10);
}

.work_item_inner {
  display: grid;
  grid-template-columns: 4.5rem 18rem 1fr auto;
  align-items: center;
  gap: 2rem;
  padding-block: 2rem;
}

.work_item_num {
  font-family: var(--font-heading);
  font-size: 2.05rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: #c99506;
  line-height: 1;
}

.work_item_title {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 1.8vw, 1.55rem);
  font-weight: 500;
  color: #eeeae3;
  margin: 0;
  line-height: 1.2;
}

.work_item_text {
  font-size: var(--step-0);
  font-weight: 300;
  color: #817f78;
  margin: 0;
  line-height: 1.65;
}

.work_item_btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0.86rem 1.55rem;
  border: var(--border-thin) solid rgba(201, 149, 6, 0.30);
  border-radius: var(--radius-sm);
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.065em;
  text-transform: uppercase;
  color: #c99506;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition:
    border-color var(--transition-fast),
    background-color var(--transition-fast),
    transform var(--transition-main);
}

.work_item_btn:hover,
.work_item_btn:focus-visible {
  border-color: rgba(201, 149, 6, 0.65);
  background-color: rgba(201, 149, 6, 0.06);
  transform: translateY(-2px);
}

.work_item_arrow {
  flex-shrink: 0;
  transition: transform var(--transition-main);
}

.work_item_btn:hover .work_item_arrow,
.work_item_btn:focus-visible .work_item_arrow {
  transform: translateX(4px);
}

@media (max-width: 72rem) {
  .work_item_inner {
    grid-template-columns: 3.5rem 14rem 1fr auto;
    gap: 1.5rem;
  }
}

@media (max-width: 56rem) {
  .work_item_inner {
    grid-template-columns: 2.8rem 1fr auto;
    gap: 1.25rem;
  }
  .work_item_text { display: none; }
}

@media (max-width: 42rem) {
  .work_item_inner {
    grid-template-columns: 2.8rem 1fr;
    grid-template-rows: auto auto;
    gap: var(--space-2) 1.25rem;
  }
  .work_item_btn {
    grid-column: 2;
    justify-self: start;
    margin-top: var(--space-1);
  }
}

/* ═══════════════════════════════════════════════════
   ABOUT CARRINGTON / FAQ
═══════════════════════════════════════════════════ */
.about_section {
  background-color: #eeeae3;
  padding-block: var(--space-7);
}

/* ── Section header ───────────────────────────── */
.about_head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.about_kicker {
  font-size: var(--step--1);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #195529;
}

.about_title {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4.5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #1d1d1b;
  margin: 0;
}

.about_title_ball {
  height: clamp(2.2rem, 3.8vw, 3.2rem);
  width: auto;
}

.about_subtitle {
  font-size: var(--step-0);
  font-weight: 400;
  color: #8e998a;
  line-height: 1.55;
  max-width: 44rem;
  margin: 0;
}

/* ── Accordion list ─────────────────────────── */
.about_list {
  border-top: 1px solid rgba(29, 29, 27, 0.10);
}

/* ── FAQ Item ─────────────────────────────────── */
.faq_item {
  border-bottom: 1px solid rgba(29, 29, 27, 0.10);
}

.faq_summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding-block: 2rem;
  cursor: pointer;
  user-select: none;
}

.faq_summary::-webkit-details-marker { display: none; }
.faq_summary::marker               { display: none; }

.faq_header_left {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.faq_num {
  font-size: 2rem;
  font-weight: 400;
  color: #195529;
  letter-spacing: -0.02em;
  line-height: 1;
  width: 5rem;
  flex-shrink: 0;
}

.faq_title {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.6vw, 1.55rem);
  font-weight: 500;
  color: #1d1d1b;
  margin: 0;
  line-height: 1.2;
}

.faq_icon {
  display: inline-flex;
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(25, 85, 41, 0.25);
  border-radius: 3px;
  color: #195529;
  transition:
    border-color     0.2s ease,
    background-color 0.2s ease;
}

.faq_summary:hover .faq_icon {
  border-color: rgba(25, 85, 41, 0.55);
  background-color: rgba(25, 85, 41, 0.06);
}

/* Only the + rotates — the square stays still */
.faq_icon_inner {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.faq_icon_inner svg {
  width: 1rem;
  height: 1rem;
  display: block;
  flex-shrink: 0;
}

details[open] > .faq_summary .faq_icon_inner {
  transform: rotate(45deg);
}

/* ── Smooth grid-row animation ────────────────── */
.faq_body_wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.38s ease;
}

details[open] .faq_body_wrap {
  grid-template-rows: 1fr;
}

.faq_body {
  overflow: hidden;
  padding-bottom: 0;
  padding-left: 7rem; /* align body past the number column */
  transition: padding-bottom 0.38s ease;
}

details[open] .faq_body {
  padding-bottom: var(--space-5);
}

/* Simple paragraph body (items 3–8) */
.faq_body > p {
  font-size: var(--step-0);
  font-weight: 300;
  line-height: 1.65;
  color: #1d1d1b;
  margin: 0;
}

/* ── Two-column body layout ───────────────────── */
.faq_body--media,
.faq_body--team {
  display: flex;
  gap: var(--space-5);
  align-items: flex-start;
}

.faq_body_text {
  flex: 0 0 42%;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.faq_body_text p {
  font-size: var(--step-0);
  font-weight: 300;
  line-height: 1.65;
  color: #1d1d1b;
  margin: 0;
}

/* ── Item 1: image + caption ─────────────────── */
.faq_body_media {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq_body_img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
}

.faq_body_caption {
  border-left: 2px solid #195529;
  padding-left: 0.75rem;
  font-style: italic;
  font-size: var(--step--1);
  color: #195529;
  line-height: 1.4;
}

/* ── Item 2: team members ─────────────────────── */
.faq_body_team {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq_team_member {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.faq_team_avatar {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.faq_team_info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.faq_team_name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1d1d1b;
  margin: 0;
  line-height: 1.2;
}

.faq_team_meta {
  font-size: 0.75rem;
  font-weight: 400;
  color: #8e998a;
  margin: 0;
  line-height: 1.4;
}

/* ── Responsive ────────────────────────────────── */
@media (max-width: 64rem) {
  .faq_body {
    padding-left: 4rem;
  }
  .faq_num { width: 3rem; font-size: 1.6rem; }
  .faq_header_left { gap: 1rem; }
  .faq_body--media,
  .faq_body--team {
    flex-direction: column;
  }
  .faq_body_text { flex: unset; }
}

@media (max-width: 40rem) {
  .faq_body { padding-left: 0; }
  .faq_num { display: none; }
  .faq_header_left { gap: 0; }
}
