/* ============ INTERIOR PAGES (About / Visit / Watch / Give / Contact) ============ */

/* page hero */
.page-hero { position: relative; padding-top: clamp(140px, 18vw, 220px); padding-bottom: clamp(48px, 7vw, 96px); overflow: hidden; }
.page-hero--deep { background: var(--se-deep); }
.page-hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.page-hero__scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(95deg, rgba(3,30,43,0.97) 0%, rgba(3,30,43,0.88) 26%, rgba(3,30,43,0.62) 58%, rgba(3,30,43,0.42) 100%); }
.page-hero__scrim::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(3,30,43,0.25), rgba(3,30,43,0) 30%, rgba(3,30,43,0) 70%, rgba(3,30,43,0.5)); }
.page-hero__inner { position: relative; z-index: 2; max-width: 22ch; }
.page-hero__inner.wide { max-width: 30ch; }
.page-hero .se-display { color: var(--se-white); margin-top: var(--se-4); }
.page-hero .se-display em { color: var(--se-sky-1); }
.page-hero .se-lead { color: var(--se-fg); margin-top: var(--se-5); max-width: 52ch; }
.page-hero__ghost { position: absolute; right: -2vw; bottom: -0.18em; font-family: var(--se-display); font-size: clamp(8rem, 26vw, 26rem); line-height: 0.8; text-transform: uppercase; color: rgba(193,232,255,0.05); pointer-events: none; z-index: 1; white-space: nowrap; }

/* pulsating map markers (Kingdom Builders hero) */
.kb-markers { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.kb-pin { position: absolute; width: 11px; height: 11px; margin: -5.5px 0 0 -5.5px; border-radius: 50%; background: var(--se-sky-1); box-shadow: 0 0 0 2px rgba(3,30,43,0.55), 0 0 12px 2px rgba(193,232,255,0.55); }
.kb-pin::before, .kb-pin::after { content: ""; position: absolute; inset: 50%; width: 11px; height: 11px; margin: -5.5px 0 0 -5.5px; border-radius: 50%; border: 1.5px solid var(--se-sky-1); opacity: 0; }
.kb-pin--accent { background: var(--se-white); box-shadow: 0 0 0 2px rgba(3,30,43,0.6), 0 0 16px 3px rgba(255,255,255,0.6); }
.kb-pin--accent::before, .kb-pin--accent::after { border-color: var(--se-white); }
@media (prefers-reduced-motion: no-preference) {
  .kb-pin::before { animation: kb-ripple 3s var(--se-ease) infinite; }
  .kb-pin::after { animation: kb-ripple 3s var(--se-ease) infinite; animation-delay: 1.5s; }
  .kb-pin { animation: kb-throb 3s ease-in-out infinite; }
  .kb-pin:nth-child(2) { animation-delay: 0.5s; }
  .kb-pin:nth-child(2)::before, .kb-pin:nth-child(2)::after { animation-delay: 0.5s, 2s; }
  .kb-pin:nth-child(3) { animation-delay: 1s; }
  .kb-pin:nth-child(3)::before, .kb-pin:nth-child(3)::after { animation-delay: 1s, 2.5s; }
  .kb-pin:nth-child(4) { animation-delay: 1.6s; }
  .kb-pin:nth-child(4)::before, .kb-pin:nth-child(4)::after { animation-delay: 1.6s, 3.1s; }
  .kb-pin:nth-child(5) { animation-delay: 2.1s; }
  .kb-pin:nth-child(5)::before, .kb-pin:nth-child(5)::after { animation-delay: 2.1s, 3.6s; }
  .kb-pin:nth-child(6) { animation-delay: 0.8s; }
  .kb-pin:nth-child(6)::before, .kb-pin:nth-child(6)::after { animation-delay: 0.8s, 2.3s; }
}
@keyframes kb-ripple { 0% { opacity: 0.7; transform: scale(1); } 80%, 100% { opacity: 0; transform: scale(5.5); } }
@keyframes kb-throb { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.25); } }

/* split section: copy + media */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 90px); align-items: center; }
.split--reverse .split__media { order: -1; }
.split__copy { max-width: 52ch; }
.split__copy .se-lead { margin-top: var(--se-5); }
.split__copy .se-body-t { margin-top: var(--se-4); }
.split__media image-slot { width: 100%; height: clamp(360px, 44vw, 560px); }

/* light band */
.band-light { background: var(--se-paper); color: var(--se-on-light); }
.band-light .se-eyebrow { color: var(--se-teal-4); }
.band-light .se-eyebrow::before { background: var(--se-teal-4); }
.band-light .se-h1 em, .band-light .se-h2 em, .band-light .se-display em { color: var(--se-teal-4); }
.band-light .se-lead { color: var(--se-on-light); }
.band-light .se-body-t { color: var(--se-on-light-2); }
.band-deep { background: var(--se-deep); }

/* stat / info row */
.info-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--se-5); }
.info-tile { border-top: 2px solid currentColor; padding-top: var(--se-5); }
.info-tile .se-display { font-size: clamp(2.5rem, 5vw, 4rem); line-height: 0.9; }
.info-tile p { margin-top: var(--se-3); }

/* simple feature list */
.feature-list { display: flex; flex-direction: column; }
.feature-list .item { display: grid; grid-template-columns: auto 1fr; gap: var(--se-5); padding: var(--se-6) 0; border-top: 1px solid var(--se-line); align-items: start; }
.feature-list .item:last-child { border-bottom: 1px solid var(--se-line); }
.band-light .feature-list .item { border-color: var(--se-line-dark); }
.feature-list .num { font-family: var(--se-display); font-size: 1.75rem; color: var(--se-teal-3); }
.band-light .feature-list .num { color: var(--se-teal-4); }
.feature-list .item h3 { margin-bottom: var(--se-3); }

/* steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--se-5); }
.step { background: var(--se-deep-2); border: 1px solid rgba(193,232,255,0.12); border-radius: var(--se-r-lg); padding: var(--se-7); display: flex; flex-direction: column; gap: var(--se-4); }
.step__n { font-family: var(--se-display); font-size: 2.25rem; color: var(--se-teal-3); line-height: 1; }

/* sermon grid */
.sermon-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--se-5); }
.sermon { display: flex; flex-direction: column; gap: var(--se-4); }
.sermon__img { width: 100%; height: 200px; position: relative; }
.sermon__play { position: absolute; inset: 0; display: grid; place-items: center; z-index: 3; pointer-events: none; }
.sermon__play span { width: 56px; height: 56px; border-radius: 999px; background: rgba(193,232,255,0.92); color: var(--se-deep); display: grid; place-items: center; font-size: 20px; padding-left: 4px; box-shadow: 0 10px 30px rgba(0,0,0,0.4); transition: transform 0.4s var(--se-ease); }
.sermon:hover .sermon__play span { transform: scale(1.08); }
.sermon__meta { display: flex; gap: var(--se-3); align-items: center; }
.sermon__meta .se-label { color: var(--se-teal-3); }
.sermon h3 { transition: color 0.2s; }
.sermon:hover h3 { color: var(--se-sky-1); }
.sermon__feat { grid-column: span 3; display: grid; grid-template-columns: 1.3fr 1fr; gap: var(--se-6); align-items: center; background: var(--se-deep-2); border: 1px solid rgba(193,232,255,0.12); border-radius: var(--se-r-lg); overflow: hidden; }
.sermon__feat image-slot { width: 100%; height: 100%; min-height: 340px; }
.sermon__feat .body { padding: clamp(28px,4vw,56px); display: flex; flex-direction: column; gap: var(--se-4); }

/* give options */
.give-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--se-5); }
.give-card { background: var(--se-ink-2); border: 1px solid var(--se-line); border-radius: var(--se-r-lg); padding: var(--se-7); display: flex; flex-direction: column; gap: var(--se-4); transition: border-color 0.4s var(--se-ease); }
.give-card:hover { border-color: rgba(193,232,255,0.3); }
.give-card.is-featured { background: var(--se-teal-4); border-color: transparent; color: #fff; }
.give-card.is-featured .se-body-t { color: rgba(255,255,255,0.85); }
/* give option icons */
.give-ico { display: inline-flex; color: var(--se-teal-4); margin-bottom: var(--se-1); }
/* official-style app store badges */
.store-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: #000; color: #fff;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 9px; padding: 8px 13px;
  text-decoration: none; line-height: 1;
  transition: background 0.2s var(--se-ease), border-color 0.2s var(--se-ease);
}
.store-badge:hover { background: #1a1a1a; border-color: rgba(255,255,255,0.4); }
.store-badge__logo { flex-shrink: 0; }
.store-badge__txt { display: flex; flex-direction: column; gap: 2px; text-align: left; }
.store-badge__txt small {
  font-family: var(--se-tight); font-size: 9px; font-weight: 400;
  letter-spacing: 0.02em; text-transform: none; color: #fff; opacity: 0.92;
}
.store-badge__txt strong {
  font-family: var(--se-tight); font-size: 17px; font-weight: 600;
  letter-spacing: 0.01em; color: #fff;
}
/* subsplash embed container */
.give-embed-card {
  background: var(--se-surface, #10131C);
  background: var(--se-ink-2);
  border: 1px solid var(--se-line);
  border-radius: var(--se-r-lg);
  padding: var(--se-4);
  min-height: 420px;
  position: sticky; top: 96px;
}
.give-embed-card iframe { border: 0 !important; width: 100% !important; min-height: 560px; display: block; }

/* amount chips */
.amounts { display: flex; flex-wrap: wrap; gap: var(--se-3); }
.amount { font-family: var(--se-display); font-size: 1.5rem; padding: 14px 22px; border-radius: var(--se-r-md); background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); color: #fff; transition: 0.25s var(--se-ease); }
.amount:hover, .amount.sel { background: var(--se-sky-1); color: var(--se-deep); border-color: var(--se-sky-1); }

/* contact / form */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(40px, 7vw, 110px); align-items: start; }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: var(--se-5); }
.field label { font-family: var(--se-tight); font-size: var(--se-xs); letter-spacing: 0.14em; text-transform: uppercase; color: var(--se-fg-3); }
.field input, .field textarea, .field select { font-family: var(--se-sans); font-size: var(--se-body); background: var(--se-ink-2); border: 1px solid var(--se-line); border-radius: var(--se-r-md); padding: 15px 18px; color: var(--se-fg); transition: border-color 0.2s; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--se-teal-3); }
.field textarea { resize: vertical; min-height: 140px; }
.contact-detail { display: flex; flex-direction: column; gap: var(--se-2); padding: var(--se-5) 0; border-top: 1px solid var(--se-line); }
.contact-detail .se-label { color: var(--se-teal-3); }
.contact-detail a, .contact-detail span { font-family: var(--se-tight); font-size: var(--se-h4); color: var(--se-fg); }

/* map placeholder */
.map { width: 100%; height: clamp(320px, 40vw, 520px); border-radius: var(--se-r-lg); overflow: hidden; }

/* subsplash embedded form card */
.subsplash-form-wrap { background: #fff; border-radius: var(--se-r-lg); box-shadow: var(--se-shadow-light); padding: clamp(20px, 3vw, 36px); min-height: 420px; }
.subsplash-form-wrap iframe { width: 100% !important; border: 0; display: block; }

/* connect groups */
.groups-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--se-5); }
.group-card { background: var(--se-ink-2); border: 1px solid var(--se-line); border-radius: var(--se-r-lg); padding: var(--se-6); display: flex; flex-direction: column; gap: var(--se-3); transition: border-color 0.35s var(--se-ease), transform 0.35s var(--se-ease); }
.group-card:hover { border-color: rgba(193,232,255,0.3); transform: translateY(-4px); }
.group-card__ico { width: 44px; height: 44px; border-radius: 12px; background: rgba(193,232,255,0.1); display: grid; place-items: center; margin-bottom: var(--se-2); }
.group-card h3 { font-family: var(--se-tight); font-size: 1.3rem; font-weight: 600; margin: 0; }
.group-card .meta { font-family: var(--se-tight); font-size: var(--se-xs); letter-spacing: 0.1em; text-transform: uppercase; color: var(--se-teal-3); }
@media (max-width: 900px) { .groups-grid { grid-template-columns: 1fr; } }
/* light-band variant: white card, dark text */
.band-light .group-card { background: #fff; border: none; box-shadow: var(--se-shadow-light); }
.band-light .group-card h3 { color: var(--se-on-light); }
.band-light .group-card .se-body-t { color: var(--se-on-light-2); }
.band-light .group-card .meta { color: var(--se-teal-4); }

/* cinematic quote band (worship) */
.quote-band { position: relative; overflow: hidden; padding-block: clamp(96px, 16vw, 220px); }
.quote-band__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.quote-band__scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(3,30,43,0.78), rgba(10,18,16,0.86)); }
.quote-band__inner { position: relative; z-index: 2; max-width: 900px; width: 100%; margin-inline: auto; text-align: center; }
.quote-band__q { font-family: var(--se-serif); font-style: italic; font-size: clamp(2rem, 5vw, 4rem); line-height: 1.12; color: var(--se-white); margin: 0; text-wrap: balance; }
.quote-band__cite { font-family: var(--se-tight); font-size: var(--se-xs); letter-spacing: 0.2em; text-transform: uppercase; color: var(--se-sky-1); margin-top: var(--se-5); }

/* listen platform chips */
.listen-row { display: flex; flex-wrap: wrap; gap: var(--se-3); margin-top: var(--se-6); }
.listen-chip { display: inline-flex; align-items: center; gap: 10px; padding: 13px 22px; border-radius: var(--se-r-pill); border: 1px solid var(--se-line); font-family: var(--se-tight); font-weight: 600; font-size: var(--se-sm); color: var(--se-fg); transition: border-color 0.25s var(--se-ease), background 0.25s; }
.listen-chip:hover { border-color: var(--se-sky-1); background: rgba(193,232,255,0.08); }

/* worship clips (vertical youtube shorts) */
.clips-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--se-5); }
.clip { position: relative; aspect-ratio: 9/16; border-radius: var(--se-r-lg); overflow: hidden; border: 1px solid var(--se-line); background: #000; box-shadow: var(--se-shadow); }
.clip iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }
@media (max-width: 820px) { .clips-grid { grid-template-columns: 1fr 1fr; gap: var(--se-4); } }
@media (max-width: 520px) { .clips-grid { grid-template-columns: 1fr; max-width: 340px; margin-inline: auto; } }

/* subsplash media player (16:9 responsive) */
.sap-embed-player { position: relative; width: 100%; height: 0; padding-top: 56.25%; border-radius: var(--se-r-lg); overflow: hidden; border: 1px solid var(--se-line); background: #000; box-shadow: var(--se-shadow); }
.sap-embed-player > iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }

/* meet the team */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--se-6) var(--se-5); }
.team-card { display: flex; flex-direction: column; gap: var(--se-3); }
.team-card__photo { width: 100%; aspect-ratio: 3/4; border-radius: var(--se-r-lg); overflow: hidden; background: var(--se-deep-2); }
.team-card__photo image-slot { width: 100%; height: 100%; display: block; }
.team-card__name { font-family: var(--se-tight); font-size: 1.3rem; font-weight: 600; color: var(--se-fg); line-height: 1.1; }
.team-card__role { font-family: var(--se-tight); font-size: var(--se-xs); font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--se-teal-3); }
.team-card__bio { font-family: var(--se-tight); font-size: var(--se-sm); line-height: 1.55; color: var(--se-fg-2); }
@media (max-width: 900px) { .team-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .team-grid { grid-template-columns: 1fr; } }

/* faq */
.faq { max-width: 800px; }
.faq__item { border-top: 1px solid var(--se-line); }
.faq__item:last-child { border-bottom: 1px solid var(--se-line); }
.faq__q { width: 100%; text-align: left; background: none; border: 0; color: var(--se-fg); padding: var(--se-5) 0; display: flex; justify-content: space-between; align-items: center; gap: var(--se-5); font-family: var(--se-tight); font-size: var(--se-h4); font-weight: 600; }
.faq__q .ico { color: var(--se-teal-3); transition: transform 0.3s var(--se-ease); flex-shrink: 0; font-size: 1.5rem; }
.faq__item.open .faq__q .ico { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--se-ease); }
.faq__a p { padding-bottom: var(--se-5); color: var(--se-fg-2); max-width: 60ch; margin: 0; }

@media (max-width: 980px) {
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .info-row { grid-template-columns: 1fr 1fr; }
  .steps, .sermon-grid, .give-grid { grid-template-columns: 1fr; }
  .sermon__feat, .sermon__feat:nth-child(n) { grid-column: auto; grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
/* ============ BLOG ============ */
.blog-featured { display: grid; grid-template-columns: 1.2fr 1fr; border-radius: var(--se-r-lg); overflow: hidden; border: 1px solid var(--se-line); background: var(--se-ink-2); transition: border-color 0.3s var(--se-ease); }
.blog-featured:hover { border-color: rgba(193,232,255,0.28); }
.blog-featured image-slot, .blog-card__img image-slot { width: 100%; height: 100%; }
.blog-featured image-slot { min-height: 340px; }
.blog-featured__body { padding: clamp(28px,4vw,48px); display: flex; flex-direction: column; gap: var(--se-4); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--se-5); }
.blog-grid--four { grid-template-columns: repeat(2, 1fr); }
.blog-card { display: flex; flex-direction: column; background: var(--se-ink-2); border: 1px solid var(--se-line); border-radius: var(--se-r-lg); overflow: hidden; transition: border-color 0.3s var(--se-ease), transform 0.3s var(--se-ease); }
.blog-card:hover { border-color: rgba(193,232,255,0.28); transform: translateY(-4px); }
.blog-card__img { width: 100%; aspect-ratio: 16/9; overflow: hidden; }
.blog-card__img image-slot { width: 100%; height: 100%; transition: transform 0.6s var(--se-ease); }
.blog-card:hover .blog-card__img image-slot { transform: scale(1.04); }
.blog-card__body { padding: var(--se-5); display: flex; flex-direction: column; gap: var(--se-3); flex: 1; }
.blog-card__body h3 { font-family: var(--se-tight); font-size: 1.2rem; font-weight: 600; color: var(--se-fg); line-height: 1.25; transition: color 0.2s; }
.blog-card:hover .blog-card__body h3 { color: var(--se-sky-1); }
.blog-card__foot { margin-top: auto; padding-top: var(--se-3); display: flex; justify-content: space-between; align-items: center; }
.blog-date { font-family: var(--se-tight); font-size: var(--se-xs); color: var(--se-fg-3); letter-spacing: 0.08em; }

/* single post */
.post-hero { position: relative; min-height: 60vh; display: flex; align-items: flex-end; overflow: hidden; }
.post-hero image-slot { position: absolute; inset: 0; width: 100%; height: 100%; }
.post-hero__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(3,30,43,0.3), rgba(10,18,16,0.88)); }
.post-hero__inner { position: relative; z-index: 2; padding: clamp(32px,5vw,72px) var(--se-gutter); max-width: var(--se-maxw); margin-inline: auto; width: 100%; }
.post-reading { max-width: 720px; margin: 0 auto; }
.post-meta { display: flex; flex-wrap: wrap; gap: 14px 24px; align-items: center; padding-block: var(--se-5); border-bottom: 1px solid var(--se-line); margin-bottom: var(--se-6); }
.post-meta .se-label { color: var(--se-teal-3); }
.post-content { font-size: 1.125rem; line-height: 1.75; color: var(--se-fg-2); }
.post-content p { margin: 0 0 var(--se-5); }
.post-content h2 { font-family: var(--se-tight); font-size: 1.5rem; font-weight: 700; color: var(--se-fg); margin: var(--se-7) 0 var(--se-4); }
.post-content h3 { font-family: var(--se-tight); font-size: 1.2rem; font-weight: 600; color: var(--se-fg); margin: var(--se-6) 0 var(--se-3); }
.post-content blockquote { border-left: 3px solid var(--se-teal-4); padding: var(--se-4) var(--se-5); margin: var(--se-6) 0; color: var(--se-fg); font-family: var(--se-serif); font-style: italic; font-size: 1.25rem; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--se-5); }
@media (max-width: 900px) { .blog-featured { grid-template-columns: 1fr; } .blog-featured image-slot { min-height: 260px; } .blog-grid, .related-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .blog-grid, .related-grid { grid-template-columns: 1fr; } }

/* ============ MENS sub-brand (forest green · cream · leather) ============ */
body.mens .band-deep { background: #2F4B38; }
body.mens .cta-band { background: #2F4B38; }
body.mens .page-hero--deep { background: #243a2c; }
body.mens .page-hero__scrim { background: linear-gradient(95deg, rgba(20,30,22,0.95), rgba(20,30,22,0.82) 28%, rgba(20,30,22,0.55) 60%, rgba(20,30,22,0.35)); }
body.mens .se-eyebrow { color: #C8924F; }
body.mens .se-eyebrow::before { background: #C8924F; }
body.mens .page-hero .se-display em,
body.mens .band-deep .se-h1 em,
body.mens .cta-band .se-display em { color: #C8924F; }
body.mens .page-hero .se-display,
body.mens .band-deep .se-h1,
body.mens .se-section .se-h1,
body.mens .cta-band .se-display { font-family: var(--se-serif); text-transform: none; letter-spacing: -0.01em; line-height: 1.14; font-weight: 400; }
body.mens .page-hero .se-display { margin-bottom: 0.35em; }
body.mens .page-hero .se-lead { margin-top: var(--se-5); }
body.mens .step__n { color: #C8924F; }
body.mens .band-light .group-card .meta { color: #2F4B38; }
body.mens .se-btn--teal { background: #2F4B38; }
body.mens .se-btn--teal:hover { background: #3B5E48; }

/* I Said Yes / Jesus page quote */
.jesus-quote { font-family: var(--se-serif); font-style: italic; font-size: clamp(1.2rem, 2.2vw, 1.75rem); color: var(--se-sky-1); border-left: 3px solid var(--se-teal-4); padding: var(--se-4) var(--se-5); margin: var(--se-7) 0; line-height: 1.4; max-width: 56ch; }

/* statement of faith */
.sof-intro { max-width: 760px; margin-inline: auto; text-align: center; }
.sof-list { max-width: 820px; margin-inline: auto; }
.sof-item { padding: clamp(28px,4vw,48px) 0; border-top: 1px solid var(--se-line-dark); display: grid; grid-template-columns: auto 1fr; gap: clamp(16px,3vw,40px); align-items: start; }
.sof-item:first-child { border-top: 0; }
.sof-item__n { font-family: var(--se-display); font-size: clamp(1.4rem,2.4vw,2rem); color: var(--se-teal-4); line-height: 1; }
.sof-item__title { font-family: var(--se-tight); font-weight: 700; font-size: clamp(1.35rem,2.2vw,1.9rem); color: var(--se-on-light); margin: 0 0 var(--se-4); letter-spacing: -0.01em; line-height: 1.12; }
.sof-item__body > * + * { margin-top: var(--se-4); }
.sof-item__body p { font-family: var(--se-sans); font-size: 1.0625rem; line-height: 1.75; color: var(--se-on-light-2); margin: 0; }
.sof-item__body h4 { font-family: var(--se-tight); font-weight: 600; font-size: 1.05rem; color: var(--se-on-light); margin: var(--se-5) 0 0; }
.sof-item__body ul { margin: var(--se-3) 0 0; padding-left: 1.1em; }
.sof-item__body li { font-family: var(--se-sans); font-size: 1.0625rem; line-height: 1.7; color: var(--se-on-light-2); margin-bottom: 10px; }
.sof-refs { display: block; margin-top: var(--se-3); font-family: var(--se-tight); font-size: var(--se-xs); letter-spacing: 0.04em; line-height: 1.5; color: var(--se-teal-4); }
@media (max-width: 640px) { .sof-item { grid-template-columns: 1fr; gap: var(--se-2); } }
