:root {
  /* --text-light, --main-lighter, --gold, --gold-soft, --ink, and
     --muted already match the global tokens in style.css and no longer
     need to be redeclared here — this page used to pin its own
     amber/gold values (and a slightly different --muted gray), which
     had drifted out of sync with the rest of the site's navy/silver
     palette. */
  --bg: #fdfcf9;
  --line: #e2ddd0;
}

/* ====================== INTRO ====================== */
.acc-intro {
  max-width: 1180px;
  margin: 0 auto;
  padding: 100px 32px 40px;
  font-family: var(--sans);
  color: var(--ink);
}

.acc-intro .eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.acc-intro .eyebrow::before,
.acc-intro .eyebrow::after {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
  opacity: 0.55;
}

.acc-intro h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(32px, 4.2vw, 50px);
  line-height: 1.1;
  text-align: center;
  color: var(--main);
  margin: 0 0 20px;
}
.acc-intro h1 em {
  font-style: italic;
  color: var(--gold);
}

.acc-intro .lede {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
}

/* ====================== TWO-COLUMN ROWS ====================== */
.acc-row {
  max-width: 1180px;
  margin: 0 auto;
  padding: 56px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.acc-row.reverse .acc-row-media {
  order: 2;
}
.acc-row.reverse .acc-row-text {
  order: 1;
}

.acc-row-text h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(26px, 2.8vw, 34px);
  color: var(--main);
  line-height: 1.2;
  margin-bottom: 18px;
}

.acc-row-text p {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
}

.acc-row-media {
  position: relative;
}

.acc-row-media img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  border-radius: 2px;
  box-shadow: 0 24px 48px -20px rgba(0, 33, 71, 0.35);
}

.acc-row-media::after {
  content: "";
  position: absolute;
  inset: 14px -14px -14px 14px;
  border: 1.5px solid var(--gold-soft);
  z-index: -1;
}

/* ====================== BENEFITS BAND ====================== */
.acc-band {
  background: var(--grey-bg);
  padding: 80px 32px;
  margin-top: 40px;
  text-align: center;
}

.acc-band .band-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.acc-band h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(26px, 3vw, 36px);
  color: var(--main);
  margin-bottom: 16px;
}

.acc-band > .band-inner > p {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 760px;
  margin: 0 auto 48px;
}

.acc-points {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: left;
  margin-bottom: 48px;
}

.acc-point {
  background: #ffffff;
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  padding: 28px 24px;
}

.acc-point .num {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}

.acc-point h3 {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 700;
  color: var(--main);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

.acc-point p {
  font-family: var(--sans);
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--muted);
}

.acc-band-btn {
  display: inline-block;
  background: var(--main);
  color: var(--text-light);
  border: 1.5px solid var(--main);
  padding: 16px 40px;
  font-size: 13.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
}

.acc-band-btn:hover {
  background: transparent;
  color: var(--main);
}

/* ====================== RESPONSIVE ====================== */
@media (max-width: 900px) {
  .acc-row {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 24px;
  }
  .acc-row.reverse .acc-row-media,
  .acc-row.reverse .acc-row-text {
    order: initial;
  }
  .acc-row-media img {
    height: 280px;
  }
  .acc-points {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .acc-intro {
    padding: 64px 20px 24px;
  }
  .acc-points {
    grid-template-columns: 1fr;
  }
  .acc-band {
    padding: 56px 20px;
  }
}