/* Section 3 — Antifragile band, round 2. Scope: .promise selectors ONLY.
   Copy is identical in all three options (provisional copy — Deth 09-01: "rough idea of copy, dial in later").
   The single design variable is COMPOSITION:
     A  Monument   — line centred and large, support small beneath, one amber hairline, atmosphere only
     B  Split      — line + support left, a quiet printed photo from the hero's world set into the black on the right
     C  Paper      — the line printed on a warm paper plate offset right and bleeding off the edge; support in ivory on the black
   Selected by data-statement="a|b|c" on the .promise section. */

.promise[data-statement] { border-top: 0; }
.promise[data-statement] .promise-label { padding-top: 0; }

/* ---------- A · monument ---------- */
.promise[data-statement="a"] .promise-inner {
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  gap: 34px;
  padding-top: 112px;
  padding-bottom: 116px;
  text-align: center;
}
.promise[data-statement="a"] .promise-body { justify-items: center; gap: 34px; }
.promise[data-statement="a"] .promise-copy {
  max-width: 15.5em;
  font-size: clamp(44px, 4.9vw, 72px);
  line-height: .98;
  letter-spacing: -.03em;
}
.promise[data-statement="a"] .promise-copy::after {
  content: '';
  display: block;
  width: 64px;
  height: 1px;
  margin: 46px auto 0;
  background: linear-gradient(90deg, transparent, var(--amber) 22%, var(--amber) 78%, transparent);
}
.promise[data-statement="a"] .promise-support { max-width: 30em; text-align: center; }
.promise[data-statement="a"]::after {
  right: 50%;
  bottom: auto;
  top: 58%;
  width: 84vw;
  height: 84vw;
  transform: translate(50%, -50%);
  border-color: rgba(239, 168, 59, .05);
  box-shadow: 0 0 0 9vw rgba(239, 168, 59, .012);
}
.promise[data-statement="a"]::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -30%;
  width: 60vw;
  height: 60%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at 50% 100%, rgba(239, 168, 59, .10), transparent 62%);
  pointer-events: none;
}

/* ---------- B · split with printed photo ---------- */
.promise[data-statement="b"] .promise-inner {
  padding-top: 88px;
  padding-bottom: 88px;
}
.promise[data-statement="b"] .promise-body {
  grid-template-columns: minmax(0, 7fr) minmax(0, 4fr);
  grid-template-rows: auto auto;
  column-gap: clamp(40px, 5vw, 80px);
  row-gap: 30px;
  align-items: start;
}
.promise[data-statement="b"] .promise-copy {
  grid-column: 1;
  grid-row: 1;
  max-width: 11.5em;
  font-size: clamp(40px, 4.2vw, 62px);
}
.promise[data-statement="b"] .promise-support {
  grid-column: 1;
  grid-row: 2;
  max-width: 30em;
}
.promise[data-statement="b"] .promise-photo {
  display: block;
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: stretch;
  position: relative;
  min-height: 300px;
  padding-top: 14px;
  border-top: 1px solid rgba(239, 168, 59, .55);
}
.promise[data-statement="b"] .promise-photo img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 380px;
  object-fit: cover;
  object-position: 78% 92%;
  filter: saturate(.9) contrast(1.04);
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .8);
}
.promise[data-statement="b"]::after { opacity: .55; }

/* ---------- C · paper plate, offset right ---------- */
.promise[data-statement="c"] .promise-inner {
  grid-template-columns: minmax(200px, 4fr) minmax(0, 8fr);
  gap: clamp(28px, 4vw, 54px);
  padding-top: 80px;
  padding-bottom: 80px;
  align-items: start;
}
.promise[data-statement="c"] .promise-body { display: contents; }
.promise[data-statement="c"] .promise-label { grid-column: 1; grid-row: 1; padding-top: 14px; }
.promise[data-statement="c"] .promise-support {
  grid-column: 1;
  grid-row: 2;
  max-width: 22em;
  margin-top: 8px;
  font-size: clamp(15px, 1.05vw, 17px);
}
.promise[data-statement="c"] .promise-copy {
  grid-column: 2;
  grid-row: 1 / 3;
  position: relative;
  max-width: none;
  margin-right: calc(-1 * max(var(--pad), (100vw - var(--wrap)) / 2 + var(--pad)));
  padding: clamp(40px, 4.4vw, 64px) clamp(48px, 6vw, 96px) clamp(48px, 5vw, 72px) clamp(40px, 4.4vw, 64px);
  background: var(--paper);
  color: var(--ink);
  border-top: 2px solid var(--amber);
  border-radius: 2px 0 0 0;
  font-size: clamp(40px, 4.2vw, 62px);
  box-shadow: 0 -24px 60px -30px rgba(0, 0, 0, .55), -18px 0 48px -32px rgba(0, 0, 0, .5);
}
.promise[data-statement="c"] .promise-copy em { color: var(--amber-deep); }
.promise[data-statement="c"]::after { display: none; }

/* ---------- breakpoints ---------- */
@media (max-width: 960px) {
  .promise[data-statement="c"] .promise-inner { gap: 24px; }
  .promise[data-statement="c"] .promise-copy { margin-right: calc(-1 * var(--pad)); }
}
@media (max-width: 700px) {
  .promise[data-statement="a"] .promise-inner { gap: 24px; padding-top: 72px; padding-bottom: 76px; }
  .promise[data-statement="a"] .promise-body { gap: 26px; }
  .promise[data-statement="a"] .promise-copy { max-width: none; font-size: clamp(36px, 10.4vw, 46px); }
  .promise[data-statement="a"] .promise-copy::after { margin-top: 30px; width: 48px; }

  .promise[data-statement="b"] .promise-inner { padding-top: 64px; padding-bottom: 68px; }
  .promise[data-statement="b"] .promise-body { grid-template-columns: minmax(0, 1fr); row-gap: 26px; }
  .promise[data-statement="b"] .promise-copy { grid-column: 1; grid-row: 1; max-width: none; font-size: clamp(36px, 10.4vw, 46px); }
  .promise[data-statement="b"] .promise-support { grid-column: 1; grid-row: 2; }
  .promise[data-statement="b"] .promise-photo { grid-column: 1; grid-row: 3; min-height: 0; margin-top: 6px; }
  .promise[data-statement="b"] .promise-photo img { height: 220px; max-height: none; }

  .promise[data-statement="c"] .promise-inner { grid-template-columns: minmax(0, 1fr); gap: 20px; padding-top: 56px; padding-bottom: 52px; }
  .promise[data-statement="c"] .promise-label { padding-top: 0; }
  .promise[data-statement="c"] .promise-copy {
    grid-column: 1; grid-row: 2;
    margin-left: calc(-1 * var(--pad));
    margin-right: calc(-1 * var(--pad));
    padding: 34px var(--pad) 40px;
    border-radius: 0;
    font-size: clamp(36px, 10.4vw, 46px);
  }
  .promise[data-statement="c"] .promise-support { grid-column: 1; grid-row: 3; max-width: none; margin-top: 10px; }
}

/* ---------- r2.1 polish (after seeing the 09:2x renders vs the GPT Image refs) ---------- */
/* A + B: the amber response clause always starts its own line, as in the refs. */
.promise[data-statement="a"] .promise-copy em,
.promise[data-statement="b"] .promise-copy em { display: block; }
/* C: label sits directly above its paragraph; the column is centred against the plate. */
.promise[data-statement="c"] .promise-inner { align-items: center; }
.promise[data-statement="c"] .promise-label { align-self: end; padding-top: 0; margin-bottom: 4px; }
.promise[data-statement="c"] .promise-support { align-self: start; margin-top: 0; }
