:root {
  --paper: #f2e7d8;
  --paper-soft: #dcebef;
  --paper-warm: #f2e7d8;
  --ink: #292624;
  --ink-soft: rgba(41, 38, 36, 0.72);
  --green: #24495a;
  --green-deep: #24495a;
  --blue: #783548;
  --water: #24495a;
  --terra: #b76647;
  --terra-deep: #783548;
  --mustard: #d6a35a;
  --line: rgba(41, 38, 36, 0.18);
  --white: #fbf7f1;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3 {
  margin: 0;
}

.wrap {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.skip {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 100;
  background: var(--green-deep);
  color: var(--white);
  padding: 10px 14px;
}

.skip:focus {
  left: 12px;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(242, 231, 216, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.nav-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  color: var(--green-deep);
  letter-spacing: 0;
}

.brand-mark {
  width: 28px;
  height: 38px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
  position: relative;
  flex: none;
}

.brand-mark::after {
  content: "";
  position: absolute;
  left: 9px;
  top: 18px;
  width: 8px;
  height: 15px;
  border-radius: 50% 50% 45% 45%;
  background: var(--terra);
  transform: rotate(-10deg);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-weight: 750;
}

.nav-links a {
  border-bottom: 2px solid transparent;
  padding: 4px 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--terra-deep);
  border-color: var(--terra-deep);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--terra-deep);
  outline-offset: 4px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid var(--green-deep);
  border-radius: 6px;
  color: var(--green-deep);
  background: transparent;
  font: inherit;
  font-weight: 800;
  letter-spacing: 0;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn.primary {
  background: var(--green-deep);
  border-color: var(--green-deep);
  color: var(--white);
}

.btn.primary:hover {
  background: var(--blue);
  border-color: var(--blue);
}

.btn.secondary {
  background: var(--paper-soft);
}

.btn.secondary:hover {
  background: var(--terra);
  border-color: var(--terra);
  color: var(--white);
}

.btn.light {
  background: var(--white);
  border-color: var(--white);
  color: var(--green-deep);
}

.deep-section .btn.secondary,
.payment-section .btn.secondary {
  border-color: var(--white);
  color: var(--white);
  background: transparent;
}

.deep-section .btn.secondary:hover,
.payment-section .btn.secondary:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--green-deep);
}

.text-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 20px;
  font-weight: 850;
  color: inherit;
  border-bottom: 2px solid currentColor;
}

.eyebrow,
.kicker,
.small-label {
  color: var(--terra-deep);
  font-size: 0.86rem;
  font-weight: 850;
  letter-spacing: 0;
}

.kicker {
  margin-bottom: 14px;
}

.home-hero {
  padding: 56px 0 64px;
  border-bottom: 1px solid var(--line);
}

.hero-grid,
.learning-grid,
.page-hero-grid,
.payment-grid,
.split {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(320px, 1fr);
  gap: 56px;
  align-items: center;
}

.hero-copy-block {
  max-width: 720px;
}

.home-hero h1 {
  margin-top: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.1rem;
  line-height: 1;
  color: var(--green-deep);
  letter-spacing: 0;
}

.hero-copy {
  margin-top: 22px;
  color: var(--ink);
  font-size: 1.32rem;
  line-height: 1.45;
}

.hero-note {
  margin-top: 16px;
  color: var(--ink-soft);
  max-width: 620px;
}

.home-hero .button-row {
  flex-wrap: nowrap;
}

.home-hero .btn {
  white-space: nowrap;
}

.hero-image {
  margin: 0;
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
}

.hero-image img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 4px;
}

.section {
  padding: 88px 0;
}

.section.compact {
  padding: 56px 0;
}

.two-paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.choice-card {
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 34px;
}

.choice-card h2 {
  margin-top: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.45rem;
  line-height: 1.08;
  color: var(--green-deep);
  letter-spacing: 0;
}

.choice-card p:not(.small-label) {
  margin-top: 16px;
  color: var(--ink-soft);
}

.choice-card .button-row {
  margin-top: 26px;
}

.path-panel {
  border-radius: 8px;
  padding: 36px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.path-panel h2 {
  margin-top: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.35rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.path-panel p:not(.small-label) {
  margin-top: 16px;
}

.path-panel.deep {
  background: var(--green-deep);
  color: var(--white);
}

.path-panel.deep .small-label {
  color: var(--paper-warm);
}

.path-panel.warm {
  background: var(--paper-soft);
  border: 1px solid var(--line);
  color: var(--ink);
}

.quote-band {
  background: var(--blue);
  color: var(--paper-soft);
  padding: 92px 0;
}

.quote-inner {
  max-width: 900px;
  text-align: center;
}

.quote-inner p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  line-height: 1.18;
}

.quote-inner p + p {
  margin-top: 8px;
}

.quote-inner span {
  display: block;
  margin-top: 26px;
  color: rgba(255, 250, 240, 0.72);
  font-weight: 800;
  letter-spacing: 0;
}

.landscape-frame {
  margin: 0;
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
}

.landscape-frame img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  border-radius: 4px;
}

.section-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.75rem;
  line-height: 1.04;
  color: var(--green-deep);
  letter-spacing: 0;
}

.section-title.small {
  font-size: 2.9rem;
}

.section-title + .text-block {
  margin-top: 28px;
}

.text-block {
  max-width: 760px;
  color: var(--ink-soft);
}

.text-block p + p {
  margin-top: 18px;
}

.page-hero {
  padding: 76px 0 70px;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  margin-top: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.65rem;
  line-height: 1;
  color: var(--green-deep);
  letter-spacing: 0;
}

.participation-hero {
  padding: 44px 0 42px;
}

.participation-hero h1 {
  font-size: 3.35rem;
  max-width: 700px;
}

.participation-hero .page-hero-grid {
  align-items: start;
}

.participation-overview {
  padding: 46px 0 70px;
}

.page-intro {
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.page-intro p + p {
  margin-top: 16px;
}

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

.feature-item {
  display: grid;
  grid-template-columns: 74px minmax(200px, 0.42fr) minmax(0, 1fr);
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

.feature-item span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  color: var(--terra-deep);
  line-height: 1;
}

.feature-item h3,
.door-card h3,
.price-card h3,
.gift-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.62rem;
  line-height: 1.12;
  color: var(--green-deep);
  letter-spacing: 0;
}

.feature-item p,
.door-card p,
.price-card p,
.gift-card p {
  color: var(--ink-soft);
}

.card-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 22px;
  color: var(--terra-deep);
  font-weight: 850;
  border-bottom: 2px solid currentColor;
}

.door-card.featured .card-link,
.price-card.featured .card-link {
  color: var(--paper-warm);
}

.map-section {
  padding: 72px 0;
  background: var(--paper-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.map-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.38fr) minmax(0, 0.9fr) minmax(300px, 0.72fr);
  gap: 34px;
  align-items: start;
}

.map-card blockquote {
  margin: 0;
  padding: 0;
}

.map-card blockquote p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.25rem;
  line-height: 1.16;
  color: var(--blue);
}

.deep-section {
  background: var(--green-deep);
  color: var(--white);
}

.deep-section .section-title,
.deep-section h3,
.deep-section .text-block,
.deep-section p,
.deep-section .kicker {
  color: var(--white);
}

.deep-section .kicker,
.deep-section .small-label {
  color: var(--paper-warm);
}

.door-grid,
.gift-grid,
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 52px;
}

.door-card,
.gift-card,
.price-card {
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 235px;
  padding: 26px;
}

.door-card,
.gift-card,
.price-card,
.detail-card,
.reference-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.door-card .card-link:first-of-type,
.gift-card .card-link:first-of-type {
  margin-top: auto;
  padding-top: 22px;
}

.door-card .card-link + .card-link,
.gift-card .card-link + .card-link {
  margin-top: 10px;
  padding-top: 0;
}

.door-card.featured,
.price-card.featured {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

.door-card.featured h3,
.door-card.featured p,
.price-card.featured h3,
.price-card.featured p {
  color: var(--white);
}

.deep-section .door-card:not(.featured) h3 {
  color: var(--green-deep);
}

.deep-section .door-card:not(.featured) p {
  color: var(--ink-soft);
}

.warm-section {
  background: rgba(214, 163, 90, 0.2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.table-section {
  background: var(--paper-soft);
}

.price-card span {
  display: block;
  margin-top: 26px;
  color: var(--terra-deep);
  font-weight: 900;
}

.gift-value {
  display: block;
  margin-top: 22px;
  color: var(--terra-deep);
  font-weight: 900;
}

.price-card .card-link {
  margin-top: auto;
  padding-top: 20px;
}

.price-card.featured span {
  color: var(--paper-warm);
}

.payment-section {
  background: var(--blue);
  color: var(--white);
}

.payment-section .section-title,
.payment-section .kicker,
.payment-section .text-block {
  color: var(--white);
}

.payment-section .kicker {
  color: var(--paper-warm);
}

.section-head {
  max-width: 780px;
  margin-bottom: 32px;
}

.detail-grid,
.reference-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.detail-card,
.reference-card {
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  min-height: 260px;
}

.detail-card h2,
.reference-card h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  line-height: 1.12;
  color: var(--green-deep);
}

.detail-card p,
.reference-card p,
.detail-card li {
  color: var(--ink-soft);
}

.detail-card p,
.reference-card p {
  margin-top: 16px;
}

.detail-card p + p {
  margin-top: 14px;
}

.detail-card ul {
  margin: 18px 0 0;
  padding-left: 20px;
}

.detail-card li + li {
  margin-top: 10px;
}

.participation-overview .detail-card {
  min-height: 0;
  padding: 24px;
}

.participation-overview .detail-card h2 {
  font-size: 1.52rem;
}

.participation-overview .detail-card ul {
  margin-top: 14px;
}

.participation-overview .detail-card li + li {
  margin-top: 7px;
}

.reference-grid {
  align-items: stretch;
}

.reference-card {
  min-height: 300px;
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.45fr) minmax(0, 0.75fr);
  gap: 48px;
  align-items: start;
}

.form-intro {
  max-width: 520px;
}

.form-intro p:not(.kicker) {
  margin-top: 18px;
  color: var(--ink-soft);
}

.interest-form {
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
}

.interest-form label,
.interest-form legend {
  display: block;
  color: var(--green-deep);
  font-weight: 800;
}

.interest-form label + label,
.interest-form fieldset + label,
.interest-form label + fieldset {
  margin-top: 18px;
}

.interest-form input[type="text"],
.interest-form input[type="email"],
.interest-form input[type="tel"],
.interest-form select,
.interest-form textarea {
  width: 100%;
  margin-top: 8px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  padding: 12px 14px;
}

.interest-form textarea {
  resize: vertical;
}

.interest-form fieldset {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  margin: 20px 0 0;
}

.interest-form fieldset label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--ink-soft);
  font-weight: 700;
}

.interest-form fieldset label + label {
  margin-top: 12px;
}

.interest-form input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  accent-color: var(--terra-deep);
}

.form-note,
.form-status {
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.form-product {
  margin-top: 18px;
  color: var(--green-deep);
  font-weight: 850;
}

.hidden-field {
  display: none;
}

.form-status[data-state="error"] {
  color: var(--terra-deep);
  font-weight: 800;
}

.form-status[data-state="info"] {
  color: var(--water);
  font-weight: 800;
}

.form-status a {
  color: var(--terra-deep);
  border-bottom: 2px solid currentColor;
}

.interest-form .btn {
  margin-top: 22px;
  cursor: pointer;
}

.attention-hero {
  padding: 64px 0 70px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.attention-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.68fr);
  gap: 46px;
  align-items: end;
}

.attention-hero-copy h1 {
  margin-top: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.35rem;
  line-height: 0.98;
  color: var(--green-deep);
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.attention-hero-copy,
.attention-hero-image {
  min-width: 0;
}

.attention-hero-copy > p:not(.eyebrow):not(.attention-note) {
  max-width: 760px;
  margin-top: 18px;
  color: var(--ink-soft);
}

.attention-lede {
  color: var(--ink) !important;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.15rem;
  line-height: 1.16;
}

.attention-note {
  margin-top: 14px;
  color: var(--terra-deep);
  font-size: 0.94rem;
  font-weight: 850;
}

.attention-hero-image {
  margin: 0;
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
}

.attention-hero-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 4px;
}

.attention-letter {
  padding: 86px 0;
  background: var(--green-deep);
  color: var(--white);
}

.attention-letter .kicker {
  color: var(--paper-warm);
}

.attention-letter-inner {
  max-width: 1040px;
}

.attention-letter-copy {
  margin-top: 24px;
  color: rgba(255, 250, 240, 0.86);
  font-size: 1.16rem;
}

.attention-letter-copy p + p {
  margin-top: 16px;
}

.attention-question-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.attention-question-grid p {
  border: 1px solid rgba(255, 250, 240, 0.22);
  border-radius: 8px;
  padding: 18px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  line-height: 1.22;
}

.attention-letter-copy.closing {
  max-width: 790px;
}

.attention-ground-grid,
.encounter-grid {
  display: grid;
  gap: 18px;
  margin-top: 44px;
}

.attention-ground-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.attention-ground-card,
.encounter-card {
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
}

.attention-ground-card.featured {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

.attention-ground-card h3,
.encounter-card h3,
.attention-faq h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  line-height: 1.12;
  color: var(--green-deep);
}

.attention-ground-card.featured h3,
.attention-ground-card.featured p {
  color: var(--white);
}

.attention-ground-card.featured .small-label {
  color: var(--paper-warm);
}

.attention-ground-card p:not(.small-label),
.encounter-card p {
  margin-top: 14px;
  color: var(--ink-soft);
}

.attention-ground-card.featured p:not(.small-label) {
  color: rgba(255, 250, 240, 0.86);
}

.encounter-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.encounter-card {
  min-height: 280px;
}

.encounter-card span {
  display: block;
  margin-bottom: 18px;
  color: var(--terra-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.1rem;
  line-height: 1;
}

.attention-agreement {
  padding: 86px 0;
  background: var(--blue);
  color: var(--white);
}

.attention-agreement-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(320px, 1fr);
  gap: 54px;
  align-items: start;
}

.attention-agreement h2 {
  margin-top: 14px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.35rem;
  line-height: 1.04;
}

.attention-agreement .kicker {
  color: var(--paper-warm);
}

.attention-agreement p {
  margin-top: 18px;
  color: rgba(255, 250, 240, 0.84);
}

.attention-agreement ul,
.soft-list {
  margin: 0;
  padding-left: 22px;
}

.attention-agreement li + li,
.soft-list li + li {
  margin-top: 10px;
}

.attention-agreement li {
  color: rgba(255, 250, 240, 0.9);
}

.soft-list {
  color: var(--ink-soft);
}

.soft-list + p {
  margin-top: 22px;
}

.attention-price-grid .price-card {
  min-height: 370px;
}

.attention-price-grid .price-card p + p {
  margin-top: 12px;
}

.attention-support-note {
  max-width: 900px;
  margin-top: 26px;
  color: var(--ink-soft);
}

.attention-support-note.small {
  margin-top: 12px;
  font-size: 0.94rem;
}

.attention-faq {
  display: grid;
  gap: 24px;
}

.attention-faq article {
  border-bottom: 1px solid rgba(255, 250, 240, 0.2);
  padding-bottom: 22px;
}

.attention-faq h3 {
  color: var(--white);
}

.attention-faq p {
  margin-top: 8px;
  color: rgba(255, 250, 240, 0.78);
}

.attention-closing {
  padding: 92px 0;
  background: var(--paper-soft);
  border-top: 1px solid var(--line);
}

.attention-closing-inner {
  max-width: 900px;
}

.attention-closing-inner > p {
  color: var(--ink-soft);
  font-size: 1.18rem;
}

.attention-closing-inner > p:first-child {
  color: var(--green-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.1rem;
  line-height: 1.12;
}

.attention-closing-inner p + p {
  margin-top: 18px;
}

.attention-closing-lines {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0;
}

.attention-closing-lines span {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--green-deep);
  font-weight: 850;
  padding: 16px;
}

body.attention-page {
  --att-navy: #783548;
  --att-navy-deep: #292624;
  --att-green: #24495a;
  --att-green-warm: #783548;
  --att-mustard: #d6a35a;
  --att-cream: #dcebef;
  --att-cream-soft: #f2e7d8;
  --att-muted: rgba(242, 231, 216, 0.78);
  --att-line: rgba(242, 231, 216, 0.18);
  background: var(--att-navy);
  color: var(--att-cream-soft);
}

body.attention-page .nav {
  background: rgba(41, 38, 36, 0.94);
  border-bottom-color: var(--att-line);
}

body.attention-page .brand,
body.attention-page .footer .brand {
  color: var(--att-cream-soft);
}

body.attention-page .brand-mark::after {
  background: var(--att-mustard);
}

body.attention-page .nav-links {
  color: rgba(255, 248, 234, 0.72);
}

body.attention-page .nav-links a:hover,
body.attention-page .nav-links a.active {
  color: var(--att-mustard);
  border-color: var(--att-mustard);
}

body.attention-page .attention-hero,
body.attention-page .section {
  background: var(--att-navy);
  color: var(--att-cream-soft);
  border-color: var(--att-line);
}

body.attention-page .table-section,
body.attention-page .attention-letter,
body.attention-page .attention-closing {
  background: var(--att-green);
}

body.attention-page .attention-agreement,
body.attention-page .payment-section {
  background: var(--att-navy-deep);
}

body.attention-page .eyebrow,
body.attention-page .kicker,
body.attention-page .small-label,
body.attention-page .attention-note,
body.attention-page .attention-letter .kicker,
body.attention-page .attention-agreement .kicker {
  color: var(--att-mustard);
}

body.attention-page .attention-hero-copy h1,
body.attention-page .section-title,
body.attention-page .section-title.small,
body.attention-page .attention-agreement h2,
body.attention-page .attention-closing-inner > p:first-child {
  color: var(--att-cream-soft);
}

body.attention-page .attention-lede {
  color: var(--att-mustard) !important;
}

body.attention-page .attention-hero-copy > p:not(.eyebrow):not(.attention-note),
body.attention-page .text-block,
body.attention-page .soft-list,
body.attention-page .attention-letter-copy,
body.attention-page .attention-agreement p,
body.attention-page .attention-agreement li,
body.attention-page .attention-closing-inner > p,
body.attention-page .attention-support-note,
body.attention-page .attention-faq p {
  color: var(--att-muted);
}

body.attention-page .btn.primary {
  background: var(--att-green);
  border-color: var(--att-mustard);
  color: var(--att-cream-soft);
}

body.attention-page .btn.primary:hover {
  background: var(--att-mustard);
  border-color: var(--att-mustard);
  color: var(--att-navy-deep);
}

body.attention-page .attention-hero-image,
body.attention-page .landscape-frame {
  background: var(--att-green-warm);
  border-color: rgba(214, 163, 90, 0.42);
}

body.attention-page .attention-question-grid p,
body.attention-page .attention-ground-card,
body.attention-page .encounter-card,
body.attention-page .attention-closing-lines span {
  background: rgba(255, 248, 234, 0.055);
  border-color: var(--att-line);
  color: var(--att-cream-soft);
}

body.attention-page .attention-ground-card.featured {
  background: var(--att-green-warm);
  border-color: rgba(214, 163, 90, 0.5);
}

body.attention-page .attention-ground-card h3,
body.attention-page .encounter-card h3,
body.attention-page .attention-faq h3 {
  color: var(--att-cream-soft);
}

body.attention-page .attention-ground-card p:not(.small-label),
body.attention-page .encounter-card p,
body.attention-page .attention-ground-card.featured p:not(.small-label) {
  color: var(--att-muted);
}

body.attention-page .encounter-card span {
  color: var(--att-mustard);
}

body.attention-page .price-card {
  background: var(--att-cream);
  border-color: rgba(214, 163, 90, 0.34);
}

body.attention-page .price-card h3 {
  color: var(--att-green);
}

body.attention-page .price-card p {
  color: rgba(32, 35, 30, 0.72);
}

body.attention-page .price-card span,
body.attention-page .price-card .card-link {
  color: #b76647;
}

body.attention-page .price-card.featured {
  background: var(--att-green-warm);
  border-color: var(--att-mustard);
}

body.attention-page .price-card.featured h3,
body.attention-page .price-card.featured p {
  color: var(--att-cream-soft);
}

body.attention-page .price-card.featured span,
body.attention-page .price-card.featured .card-link {
  color: var(--att-mustard);
}

body.attention-page .attention-faq article {
  border-bottom-color: var(--att-line);
}

body.attention-page .footer {
  background: var(--att-navy-deep);
}

.footer {
  padding: 54px 0;
  background: var(--ink);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: start;
}

.footer .brand {
  color: var(--white);
}

.footer p {
  margin-top: 14px;
  color: rgba(255, 250, 240, 0.72);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-end;
  color: rgba(255, 250, 240, 0.78);
}

.footer-links a:hover {
  color: var(--paper-warm);
}

body.attention-page {
  --att-paper: #f2e7d8;
  --att-paper-warm: #dcebef;
  --att-surface: #fbf7f1;
  --att-navy: #783548;
  --att-navy-deep: #292624;
  --att-green: #24495a;
  --att-green-soft: #dcebef;
  --att-green-warm: #783548;
  --att-mustard: #d6a35a;
  --att-rust: #783548;
  --att-text: #292624;
  --att-muted: rgba(41, 38, 36, 0.72);
  --att-line: rgba(36, 73, 90, 0.18);
  --att-soft-line: rgba(36, 73, 90, 0.12);
  background: var(--att-paper);
  color: var(--att-text);
}

body.attention-page .nav {
  background: rgba(242, 231, 216, 0.92);
  border-bottom-color: var(--att-soft-line);
}

body.attention-page .brand,
body.attention-page .footer .brand {
  color: var(--att-green);
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-size: 1.12rem;
}

body.attention-page .brand-mark {
  width: 30px;
  height: 30px;
  border: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  border-radius: 50%;
}

body.attention-page .brand-mark::after {
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--terra);
  transform: translate(-50%, -50%);
}

body.attention-page .nav-actions {
  display: flex;
  align-items: center;
}

body.attention-page .nav-cta {
  min-height: 40px;
  padding: 9px 16px;
  border-radius: 999px;
  border-color: rgba(36, 73, 90, 0.3);
  background: rgba(255, 250, 240, 0.56);
  color: var(--att-green);
  font-size: 0.88rem;
}

body.attention-page .nav-cta:hover {
  background: var(--att-green);
  border-color: var(--att-green);
  color: var(--att-surface);
}

body.attention-page .attention-hero {
  background: linear-gradient(145deg, var(--att-paper) 0%, var(--att-paper) 58%, var(--att-green-soft) 100%);
  color: var(--att-text);
  border-bottom-color: var(--att-soft-line);
  padding-top: 58px;
}

body.attention-page .section {
  background: var(--att-paper);
  color: var(--att-text);
  border-color: var(--att-soft-line);
}

body.attention-page .table-section {
  background: var(--att-green-soft);
}

body.attention-page .attention-letter {
  background: var(--att-paper-warm);
  color: var(--att-text);
}

body.attention-page .attention-closing {
  background: var(--att-green-soft);
  border-top-color: var(--att-soft-line);
}

body.attention-page .attention-agreement {
  background: var(--att-green);
  color: var(--att-surface);
}

body.attention-page .payment-section {
  background: var(--att-navy-deep);
  color: var(--att-surface);
}

body.attention-page .eyebrow,
body.attention-page .kicker,
body.attention-page .small-label,
body.attention-page .attention-note,
body.attention-page .attention-letter .kicker,
body.attention-page .attention-agreement .kicker {
  color: var(--att-rust);
}

body.attention-page .attention-hero-copy h1,
body.attention-page .section-title,
body.attention-page .section-title.small,
body.attention-page .attention-closing-inner > p:first-child {
  color: var(--att-green);
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
}

body.attention-page .attention-agreement h2,
body.attention-page .payment-section .section-title {
  color: var(--att-surface);
}

body.attention-page .attention-lede {
  color: var(--att-navy) !important;
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-weight: 500;
}

body.attention-page .attention-hero-copy > p:not(.eyebrow):not(.attention-note),
body.attention-page .text-block,
body.attention-page .soft-list,
body.attention-page .attention-letter-copy,
body.attention-page .attention-support-note,
body.attention-page .attention-closing-inner > p {
  color: var(--att-muted);
}

body.attention-page .attention-agreement p,
body.attention-page .attention-agreement li,
body.attention-page .payment-section .text-block,
body.attention-page .attention-faq p {
  color: rgba(255, 250, 240, 0.78);
}

body.attention-page .btn.primary {
  background: var(--att-green);
  border-color: var(--att-green);
  color: var(--att-surface);
}

body.attention-page .btn.primary:hover {
  background: var(--att-navy);
  border-color: var(--att-navy);
  color: var(--att-surface);
}

body.attention-page .attention-hero-image,
body.attention-page .landscape-frame {
  background: var(--att-surface);
  border-color: var(--att-soft-line);
  box-shadow: 0 20px 48px -36px rgba(36, 73, 90, 0.48);
}

body.attention-page .attention-question-grid p,
body.attention-page .attention-ground-card,
body.attention-page .encounter-card,
body.attention-page .attention-closing-lines span {
  background: rgba(255, 250, 240, 0.76);
  border-color: var(--att-soft-line);
  color: var(--att-text);
}

body.attention-page .attention-ground-card.featured {
  background: var(--att-green);
  border-color: var(--att-green);
  color: var(--att-surface);
}

body.attention-page .attention-ground-card h3,
body.attention-page .encounter-card h3 {
  color: var(--att-green);
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
}

body.attention-page .attention-faq h3 {
  color: var(--att-surface);
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
}

body.attention-page .attention-ground-card.featured h3,
body.attention-page .attention-ground-card.featured p,
body.attention-page .attention-ground-card.featured p:not(.small-label) {
  color: var(--att-surface);
}

body.attention-page .attention-ground-card p:not(.small-label),
body.attention-page .encounter-card p {
  color: var(--att-muted);
}

body.attention-page .encounter-card span {
  color: var(--att-rust);
}

body.attention-page .price-card {
  background: var(--att-surface);
  border-color: var(--att-soft-line);
}

body.attention-page .price-card h3 {
  color: var(--att-green);
}

body.attention-page .price-card p {
  color: rgba(31, 43, 39, 0.72);
}

body.attention-page .price-card span,
body.attention-page .price-card .card-link {
  color: var(--att-rust);
}

body.attention-page .price-card.featured {
  background: var(--att-green);
  border-color: var(--att-mustard);
}

body.attention-page .price-card.featured h3,
body.attention-page .price-card.featured p {
  color: var(--att-surface);
}

body.attention-page .price-card.featured span,
body.attention-page .price-card.featured .card-link {
  color: var(--att-surface);
}

body.attention-page .attention-faq article {
  border-bottom-color: rgba(255, 250, 240, 0.18);
}

body.attention-page .footer {
  background: var(--att-navy-deep);
  color: var(--att-surface);
}

body.attention-page .footer .brand {
  color: var(--att-surface);
}

body.attention-page .footer p,
body.attention-page .footer-links {
  color: rgba(255, 250, 240, 0.72);
}

body.attention-page .footer-links a:hover {
  color: var(--att-mustard);
}

body.attention-page .btn.secondary {
  background: rgba(255, 250, 240, 0.72);
  border-color: rgba(36, 73, 90, 0.28);
  color: var(--att-green);
}

body.attention-page .btn.secondary:hover {
  background: var(--att-surface);
  border-color: var(--att-green);
  color: var(--att-green);
}

body.attention-page .support-form {
  display: grid;
  gap: 12px;
  width: 100%;
  margin-top: 22px;
}

body.attention-page .support-form label {
  display: grid;
  gap: 6px;
  width: 100%;
  color: var(--att-green);
  font-size: 0.9rem;
  font-weight: 800;
}

body.attention-page .support-form input,
body.attention-page .support-form select,
body.attention-page .support-form textarea {
  width: 100%;
  border: 1px solid rgba(36, 73, 90, 0.22);
  border-radius: 6px;
  background: rgba(255, 250, 240, 0.82);
  color: var(--att-text);
  font: inherit;
  font-size: 0.94rem;
  line-height: 1.42;
  padding: 11px 12px;
}

body.attention-page .support-form textarea {
  resize: vertical;
  min-height: 124px;
}

body.attention-page .support-form input:focus,
body.attention-page .support-form select:focus,
body.attention-page .support-form textarea:focus {
  outline: 3px solid rgba(214, 163, 90, 0.32);
  border-color: var(--att-mustard);
}

body.attention-page .support-form .consent-field {
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  font-weight: 500;
  line-height: 1.45;
}

body.attention-page .support-form .consent-field input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

body.attention-page .support-form .form-note {
  color: var(--att-muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

body.attention-page .attention-faq {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(36, 73, 90, 0.18);
}

body.attention-page .attention-faq article {
  padding: 22px 0;
  border-bottom: 1px solid rgba(36, 73, 90, 0.18);
}

body.attention-page .attention-faq p {
  margin-top: 9px;
  color: var(--att-muted);
}

body.attention-page .hidden-field {
  display: none;
}

body.attention-page .form-submit {
  appearance: none;
  border-left: 0;
  border-right: 0;
  border-top: 0;
  background: transparent;
  cursor: pointer;
  padding-left: 0;
}

body.attention-page .thanks-hero {
  min-height: calc(100vh - 112px);
  display: grid;
  align-items: center;
  background: linear-gradient(145deg, var(--att-paper) 0%, var(--att-paper) 58%, var(--att-green-soft) 100%);
  padding: 72px 0;
}

body.attention-page .thanks-panel {
  max-width: 760px;
}

body.attention-page .thanks-panel h1 {
  color: var(--att-green);
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1;
}

body.attention-page .thanks-panel p {
  max-width: 620px;
  margin-top: 18px;
  color: var(--att-muted);
}

body.attention-page .thanks-panel .button-row {
  margin-top: 30px;
}

body.attention-page .support-page {
  min-height: calc(100vh - 112px);
  background: linear-gradient(145deg, var(--att-paper) 0%, var(--att-paper) 58%, var(--att-green-soft) 100%);
  padding: 72px 0 92px;
}

body.attention-page .support-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.72fr);
  gap: 56px;
  align-items: start;
}

body.attention-page .support-copy h1 {
  max-width: 760px;
  color: var(--att-green);
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: 0;
}

body.attention-page .support-copy p:not(.eyebrow) {
  max-width: 660px;
  margin-top: 18px;
  color: var(--att-muted);
  font-size: 1.08rem;
}

body.attention-page .support-form-panel {
  margin-top: 0;
  background: var(--att-surface);
  border: 1px solid var(--att-soft-line);
  border-radius: 8px;
  padding: 28px;
  box-shadow: 0 20px 48px -36px rgba(36, 73, 90, 0.48);
}

body.attention-page .attention-standalone-nav .nav-inner {
  min-height: 104px;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}

body.attention-page .brand {
  gap: 24px;
  color: var(--att-navy);
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.19em;
}

body.attention-page .brand span:last-child {
  color: var(--att-navy);
  font-size: clamp(1.75rem, 3.25vw, 2.85rem);
  line-height: 1;
}

body.attention-page .brand-mark {
  position: relative;
  width: 64px;
  height: 86px;
  border: 0;
  border-radius: 0;
  color: #b76647;
  flex: none;
}

body.attention-page .brand-mark::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 0;
  width: 54px;
  height: 82px;
  border: 4px solid currentColor;
  border-bottom: 0;
  border-radius: 34px 34px 0 0;
  background: transparent;
}

body.attention-page .brand-mark::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 57%;
  width: 14px;
  height: 30px;
  background: currentColor;
  border-radius: 50%;
  clip-path: polygon(50% 0, 88% 48%, 50% 100%, 12% 48%);
  transform: translate(-50%, -50%);
}

body.attention-page .footer .brand {
  gap: 14px;
}

body.attention-page .footer .brand span:last-child {
  color: var(--att-surface);
  font-size: 1.35rem;
  letter-spacing: 0.18em;
}

body.attention-page .footer .brand-mark {
  width: 36px;
  height: 50px;
}

body.attention-page .footer .brand-mark::before {
  left: 3px;
  width: 30px;
  height: 48px;
  border-width: 2px;
  border-radius: 18px 18px 0 0;
}

body.attention-page .footer .brand-mark::after {
  width: 10px;
  height: 20px;
}

body.attention-page .attention-hero {
  padding: 50px 0 74px;
}

body.attention-page .attention-hero-grid {
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: 62px;
}

body.attention-page .attention-hero-copy h1 {
  max-width: 820px;
  font-size: clamp(3.1rem, 6.1vw, 5.9rem);
  line-height: 0.92;
}

body.attention-page .attention-lede {
  max-width: 680px;
  font-size: clamp(1.35rem, 2.4vw, 2.05rem);
  line-height: 1.18;
}

body.attention-page .attention-hero-copy > p:not(.eyebrow):not(.attention-note) {
  max-width: 620px;
}

body.attention-page .attention-hero-image {
  align-self: stretch;
}

body.attention-page .attention-hero-image img {
  height: 100%;
  min-height: 480px;
}

body.attention-page .hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

body.attention-page .hero-facts span {
  border: 1px solid rgba(36, 73, 90, 0.18);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.62);
  color: var(--att-green);
  font-size: 0.86rem;
  font-weight: 850;
  padding: 7px 12px;
}

body.attention-page .intro-panel-section {
  padding: 34px 0 76px;
}

body.attention-page .intro-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: 52px;
  align-items: start;
  padding: 42px;
  background: var(--att-surface);
  border: 1px solid var(--att-soft-line);
  border-radius: 8px;
  box-shadow: 0 22px 52px -42px rgba(36, 73, 90, 0.42);
}

body.attention-page .intro-panel h2 {
  color: var(--att-green);
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  margin: 0;
}

body.attention-page .intro-panel p {
  color: var(--att-muted);
}

body.attention-page .intro-panel p + p {
  margin-top: 16px;
}

body.attention-page .intro-panel .intro-question {
  color: var(--att-navy);
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.3vw, 2.15rem);
  line-height: 1.18;
}

body.attention-page .table-section {
  padding: 78px 0;
}

body.attention-page .encounter-grid {
  gap: 0;
  margin-top: 46px;
  border-top: 1px solid rgba(36, 73, 90, 0.18);
  border-bottom: 1px solid rgba(36, 73, 90, 0.18);
}

body.attention-page .encounter-card {
  min-height: 0;
  background: transparent;
  border: 0;
  border-right: 1px solid rgba(36, 73, 90, 0.18);
  border-radius: 0;
  padding: 26px 22px 30px;
}

body.attention-page .encounter-card:last-child {
  border-right: 0;
}

body.attention-page .encounter-card span {
  margin-bottom: 26px;
  font-size: 1.04rem;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 900;
}

body.attention-page .encounter-card h3 {
  font-size: 1.45rem;
}

body.attention-page .compact-split {
  align-items: start;
}

body.attention-page .soft-list {
  list-style: none;
  padding-left: 0;
}

body.attention-page .soft-list li {
  position: relative;
  padding-left: 22px;
}

body.attention-page .soft-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.74em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--att-mustard);
}

body.attention-page .learning-grid {
  align-items: center;
}

body.attention-page .attention-price-grid {
  align-items: stretch;
}

body.attention-page .attention-price-grid .price-card {
  min-height: 300px;
  padding: 30px;
}

body.attention-page .attention-closing {
  padding: 72px 0;
}

body.attention-page .attention-closing-inner {
  max-width: 820px;
}

body.attention-page .attention-closing-inner > p:first-child {
  font-size: clamp(2rem, 4.2vw, 3.8rem);
}

@media (max-width: 720px) {
  body.attention-page .attention-standalone-nav .nav-inner {
    min-height: 82px;
  }

  body.attention-page .brand {
    gap: 14px;
    letter-spacing: 0.17em;
  }

  body.attention-page .brand span:last-child {
    font-size: 1.52rem;
  }

  body.attention-page .brand-mark {
    width: 40px;
    height: 56px;
  }

  body.attention-page .brand-mark::before {
    left: 3px;
    width: 34px;
    height: 54px;
    border-width: 2.4px;
    border-radius: 20px 20px 0 0;
  }

  body.attention-page .brand-mark::after {
    width: 10px;
    height: 21px;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .learning-grid,
  .attention-hero-grid,
  .attention-agreement-grid,
  .page-hero-grid,
  .payment-grid,
  .split,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .home-hero h1 {
    font-size: 3.3rem;
  }

  .home-hero .button-row {
    flex-wrap: wrap;
  }

  .page-hero h1 {
    font-size: 3.65rem;
  }

  .participation-hero h1 {
    font-size: 2.95rem;
  }

  .section-title {
    font-size: 3rem;
  }

  .section-title.small {
    font-size: 2.45rem;
  }

  .two-paths,
  .choice-grid,
  .attention-question-grid,
  .attention-ground-grid,
  .encounter-grid,
  .door-grid,
  .gift-grid,
  .price-grid,
  .detail-grid,
  .reference-grid,
  .form-layout {
    grid-template-columns: 1fr;
  }

  .feature-item {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .feature-item p {
    grid-column: 2;
  }

  .map-card {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 16px;
  }

  .wrap {
    width: min(100% - 28px, 1180px);
  }

  .nav-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 0;
    gap: 12px;
  }

  .nav-links {
    gap: 12px 16px;
    font-size: 0.9rem;
  }

  .home-hero {
    padding: 38px 0 46px;
  }

  .home-hero h1 {
    font-size: 2.55rem;
  }

  .home-hero .btn {
    width: 100%;
  }

  .hero-copy {
    font-size: 1.12rem;
  }

  .hero-image img,
  .landscape-frame img {
    height: 300px;
  }

  .section {
    padding: 64px 0;
  }

  .section.compact {
    padding: 40px 0;
  }

  .attention-hero {
    padding: 42px 0 52px;
  }

  .attention-hero-copy h1 {
    font-size: 2.55rem;
  }

  .attention-lede {
    font-size: 1.55rem;
  }

  .attention-hero-image img {
    height: 320px;
  }

  .attention-letter,
  .attention-agreement,
  .attention-closing {
    padding: 64px 0;
  }

  .attention-question-grid,
  .attention-closing-lines {
    grid-template-columns: 1fr;
  }

  .attention-agreement h2,
  .attention-closing-inner > p:first-child {
    font-size: 2.25rem;
  }

  .path-panel {
    padding: 26px;
    min-height: 250px;
  }

  .path-panel h2 {
    font-size: 1.95rem;
  }

  .quote-band {
    padding: 64px 0;
  }

  .quote-inner p {
    font-size: 2.05rem;
  }

  .page-hero {
    padding: 54px 0 56px;
  }

  .page-hero h1 {
    font-size: 2.65rem;
  }

  .participation-hero h1 {
    font-size: 2.25rem;
  }

  .section-title,
  .section-title.small {
    font-size: 2.18rem;
  }

  .feature-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .feature-item p {
    grid-column: auto;
  }

  .map-section {
    padding: 56px 0;
  }

  .map-card blockquote p {
    font-size: 1.78rem;
  }

  .door-card,
  .gift-card,
  .price-card {
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn {
    transition: none;
  }
}

@media (max-width: 980px) {
  body.attention-page .attention-hero-grid,
  body.attention-page .intro-panel,
  body.attention-page .support-layout {
    grid-template-columns: 1fr;
  }

  body.attention-page .attention-hero-image img {
    min-height: 340px;
  }

  body.attention-page .encounter-grid {
    border-bottom: 0;
  }

  body.attention-page .encounter-card {
    border-right: 0;
    border-bottom: 1px solid rgba(36, 73, 90, 0.18);
  }
}

@media (max-width: 720px) {
  body.attention-page .attention-hero {
    padding: 34px 0 58px;
  }

  body.attention-page .attention-hero-copy h1 {
    font-size: 3rem;
  }

  body.attention-page .intro-panel {
    padding: 26px;
  }

  body.attention-page .hero-facts span {
    font-size: 0.82rem;
  }

  body.attention-page .support-page {
    padding: 48px 0 64px;
  }
}
