:root {
  --midnight: #051e38;
  --deep-blue: #0f3052;
  --field-blue: #25477c;
  --soft-blue: #3c6492;
  --gold: #aa7220;
  --ember: #885b16;
  --sun: #efb252;
  --pale-gold: #ffdfa0;
  --white: #f8fbff;
  --muted: #c8d6e7;
  --line: rgba(255, 223, 160, 0.2);
  --panel: rgba(8, 33, 61, 0.76);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 48% -12%, rgba(255, 223, 160, 0.13), transparent 25rem),
    radial-gradient(circle at 86% 16%, rgba(60, 100, 146, 0.24), transparent 27rem),
    radial-gradient(circle at 15% 70%, rgba(37, 71, 124, 0.18), transparent 24rem),
    linear-gradient(180deg, var(--midnight), #061729 56%, #020a13);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 223, 160, 0.08), transparent 16rem),
    radial-gradient(circle at 72% 64%, rgba(239, 178, 82, 0.07), transparent 18rem);
  opacity: 0.9;
  pointer-events: none;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 223, 160, 0.14);
  background: rgba(5, 30, 56, 0.84);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 32px, var(--max));
  min-height: 72px;
  margin: 0 auto;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 223, 160, 0.22);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 28px rgba(239, 178, 82, 0.16);
}

.brand-text {
  display: grid;
  line-height: 1.1;
}

.brand-text strong {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.brand-text span {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.92rem;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--pale-gold);
}

.hero,
.section {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.hero {
  display: grid;
  min-height: calc(100svh - 72px);
  align-items: center;
  padding: 72px 0 56px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.78fr);
  gap: 38px;
  align-items: center;
}

.hero-grid.art-hero {
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--pale-gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.08;
}

h1 {
  max-width: 820px;
  font-size: clamp(2.4rem, 6vw, 4.9rem);
}

.subhead {
  max-width: 750px;
  margin: 22px 0 0;
  color: #e7eef8;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.body-copy {
  max-width: 760px;
  color: var(--muted);
}

.meta-row {
  display: grid;
  gap: 4px;
  margin: 28px 0 0;
  color: #e8f0fa;
  font-size: 0.98rem;
}

.meta-pill {
  display: block;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font-size: inherit;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 223, 160, 0.44);
  border-radius: 999px;
  padding: 12px 20px;
  color: var(--midnight);
  background: linear-gradient(135deg, var(--pale-gold), var(--sun));
  box-shadow: 0 16px 38px rgba(170, 114, 32, 0.24);
  font-weight: 800;
  text-decoration: none;
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: none;
}

.button.text {
  min-height: 0;
  border: 0;
  padding: 0;
  color: var(--pale-gold);
  background: transparent;
  box-shadow: none;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.audio-control {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 18px;
}

.sound-note {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.field-panel {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 440px;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 56% 34%, rgba(255, 223, 160, 0.16), transparent 8rem),
    radial-gradient(circle at 22% 78%, rgba(60, 100, 146, 0.22), transparent 12rem),
    linear-gradient(180deg, rgba(15, 48, 82, 0.82), rgba(5, 30, 56, 0.64));
  box-shadow: var(--shadow);
}

.field-panel::before,
.field-panel::after {
  position: absolute;
  content: "";
}

.field-panel::before {
  inset: 0;
  background-image: url("/assets/img/elyrion-symposium-art.jpg");
  background-position: center;
  background-size: cover;
  opacity: 0.72;
  filter: saturate(0.95);
}

.field-panel::after {
  inset: 16px;
  content: "";
  border: 1px solid rgba(255, 223, 160, 0.32);
  border-radius: 8px;
  box-shadow: inset 0 0 80px rgba(2, 10, 19, 0.45);
}

.field-line {
  position: absolute;
  right: 12%;
  bottom: 24%;
  left: 12%;
  z-index: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 223, 160, 0.46), transparent);
}

.field-label {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 20px;
  left: 22px;
  color: var(--muted);
  font-size: 0.92rem;
}

.main-art {
  min-height: 0;
  aspect-ratio: 1280 / 659;
}

.main-art::before {
  opacity: 1;
}

.main-art::after {
  box-shadow: inset 0 0 70px rgba(2, 10, 19, 0.16);
}

.pathway-art::before {
  inset: 0;
  border-radius: 10px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
  filter: saturate(0.98);
}

.pathway-art .field-label {
  top: calc(100% + 12px);
  right: 0;
  bottom: auto;
  left: 0;
  color: #f3f7ff;
  font-size: 0.92rem;
  font-weight: 800;
  text-align: center;
  text-shadow: 0 2px 18px rgba(2, 10, 19, 0.72);
}

.pathway-art {
  min-height: 0;
  margin-bottom: 38px;
  overflow: visible;
  border: 0;
  border-radius: 10px;
  background: transparent;
  box-shadow: none;
  aspect-ratio: 1280 / 659;
}

.pathway-art::after,
.pathway-art .field-line {
  display: none;
}

.section {
  padding: 72px 0;
}

.section h2 {
  max-width: 760px;
  font-size: clamp(2rem, 5vw, 3.8rem);
}

.section-intro {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.grid {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

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

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

.panel,
.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.card {
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent),
    rgba(8, 33, 61, 0.58);
}

.card h3 {
  color: var(--pale-gold);
  font-size: 1.32rem;
}

.card p,
.faq p,
.small {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.65fr);
  gap: 26px;
  align-items: start;
}

.ticket {
  padding: 26px;
}

.price {
  margin: 10px 0 4px;
  color: var(--pale-gold);
  font-family: Georgia, serif;
  font-size: 3.2rem;
  line-height: 1;
}

.host-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 0.58fr);
  gap: 24px;
  align-items: start;
  padding: 26px;
}

.host-photo {
  overflow: hidden;
  border: 1px solid rgba(255, 223, 160, 0.24);
  border-radius: 8px;
  aspect-ratio: 1 / 1;
  width: 100%;
  max-height: 420px;
  align-self: stretch;
}

.host-photo img,
.host-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.host-photo img {
  object-position: 50% 28%;
}

.host-logo {
  width: 88px;
  height: 88px;
  overflow: hidden;
  border: 1px solid rgba(255, 223, 160, 0.22);
  border-radius: 50%;
  margin-bottom: 18px;
}

.host-copy {
  max-width: 680px;
}

.host-copy p {
  color: var(--muted);
}

.host-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.host-links a {
  color: var(--pale-gold);
  font-weight: 800;
  text-decoration: none;
}

.host-links a:hover,
.host-links a:focus-visible {
  text-decoration: underline;
}

.split .host-card {
  grid-template-columns: minmax(140px, 0.34fr) minmax(0, 0.66fr);
}

.faq {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 20px;
  background: rgba(8, 33, 61, 0.7);
}

.faq summary {
  cursor: pointer;
  color: var(--pale-gold);
  font-weight: 800;
}

.form {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

label {
  display: grid;
  gap: 8px;
  color: #e7eef8;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 223, 160, 0.24);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--white);
  background: rgba(2, 12, 23, 0.58);
  font: inherit;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

.notice {
  border-left: 3px solid var(--sun);
  padding: 14px 16px;
  background: rgba(255, 223, 160, 0.07);
  color: #eef5ff;
}

.site-footer {
  border-top: 1px solid rgba(255, 223, 160, 0.14);
  padding: 42px 0;
  color: var(--muted);
}

.footer-inner {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.footer-brand {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  margin-bottom: 24px;
}

.footer-brand img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.boundary-notice {
  margin-top: 24px;
  border: 1px solid rgba(255, 223, 160, 0.18);
  border-radius: 8px;
  padding: 18px 20px;
  background: rgba(2, 12, 23, 0.38);
}

.boundary-notice summary {
  cursor: pointer;
  color: var(--pale-gold);
  font-weight: 800;
}

.boundary-notice p {
  margin: 14px 0 0;
}

.redirect-screen {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: 32px;
}

.redirect-screen .panel {
  width: min(100%, 560px);
  padding: 30px;
  text-align: center;
}

@media (max-width: 860px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero {
    min-height: auto;
    padding-top: 48px;
  }

  .hero-grid,
  .hero-grid.art-hero,
  .split,
  .grid.three,
  .grid.four {
    grid-template-columns: 1fr;
  }

  .field-panel {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

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

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

  .host-photo {
    width: min(100%, 420px);
    justify-self: center;
  }

  .section {
    padding: 50px 0;
  }
}

/* Private Advisory */
.private-page {
  color: #071d34;
  background:
    radial-gradient(circle at 16% 8%, rgba(255, 223, 160, 0.62), transparent 20rem),
    radial-gradient(circle at 88% 18%, rgba(60, 100, 146, 0.2), transparent 28rem),
    linear-gradient(180deg, #fff7e8 0%, #f8efe0 42%, #06192e 42%, #041323 100%);
}

.private-page::before {
  background:
    radial-gradient(circle at 52% 18%, rgba(255, 255, 255, 0.7), transparent 20rem),
    radial-gradient(circle at 78% 62%, rgba(239, 178, 82, 0.14), transparent 18rem);
}

.private-page .site-header {
  background: rgba(255, 248, 235, 0.9);
  border-bottom-color: rgba(136, 91, 22, 0.18);
}

.private-page .brand-text strong,
.private-page .nav-links a {
  color: #09223d;
}

.private-page .brand-text span,
.private-page .body-copy,
.private-page .section-intro,
.private-page .card p,
.private-page .small {
  color: #365067;
}

.private-page .meta-row {
  color: #112f4e;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 700;
}

.private-page .button.secondary {
  color: #061d36;
  background: rgba(255, 255, 255, 0.66);
  border-color: rgba(136, 91, 22, 0.36);
}

.private-page .sound-note {
  color: #2c465e;
}

.private-hero,
.private-section {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.private-hero {
  min-height: calc(100svh - 72px);
  display: grid;
  align-items: center;
  padding: 68px 0 58px;
}

.private-hero-grid,
.private-split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.72fr);
  gap: 34px;
  align-items: center;
}

.private-hero h1,
.private-section h2 {
  color: #061d36;
}

.private-hero h1 {
  max-width: 820px;
  font-size: clamp(2.45rem, 6vw, 5.2rem);
}

.private-subtitle {
  max-width: 760px;
  margin: 18px 0 0;
  color: #213a55;
  font-size: clamp(1.04rem, 2vw, 1.22rem);
}

.private-quote {
  margin: 0 0 20px;
  color: var(--gold);
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 1.05rem;
}

.private-mark-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(136, 91, 22, 0.2);
  border-radius: 8px;
  background: #061d36;
  box-shadow: 0 30px 90px rgba(5, 30, 56, 0.24);
  aspect-ratio: 1 / 1;
}

.private-mark-card img,
.private-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.private-mark-card::after {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 223, 160, 0.22);
  border-radius: 8px;
  content: "";
}

.private-section {
  padding: 76px 0;
}

.private-section h2 {
  max-width: 820px;
  font-size: clamp(2rem, 5vw, 3.9rem);
}

.private-dark {
  color: var(--white);
}

.private-section.private-dark {
  border: 1px solid rgba(255, 223, 160, 0.14);
  border-radius: 8px;
  padding-right: 24px;
  padding-left: 24px;
  background:
    radial-gradient(circle at 78% 12%, rgba(255, 223, 160, 0.08), transparent 18rem),
    linear-gradient(180deg, rgba(5, 30, 56, 0.96), rgba(4, 19, 35, 0.98));
  box-shadow: 0 24px 80px rgba(2, 10, 19, 0.18);
}

.private-dark h2,
.private-dark h3 {
  color: var(--white);
}

.private-dark .section-intro,
.private-dark .body-copy,
.private-dark .card p,
.private-dark .small {
  color: #dce8f5;
}

.private-section.private-dark .section-intro {
  color: #f4f8ff;
  margin-bottom: 28px;
}

.private-dark .button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(255, 223, 160, 0.36);
}

.private-dark .grid.three {
  margin-top: 52px;
}

.private-photo {
  overflow: hidden;
  border: 1px solid rgba(170, 114, 32, 0.26);
  border-radius: 8px;
  background: rgba(5, 30, 56, 0.12);
  box-shadow: 0 24px 70px rgba(5, 30, 56, 0.16);
}

.private-photo.wide {
  aspect-ratio: 4 / 5;
  background: rgba(255, 250, 240, 0.7);
}

.private-photo.portrait {
  max-width: 470px;
  aspect-ratio: 4 / 5;
  justify-self: end;
}

.private-photo.wide img {
  object-fit: contain;
  object-position: center;
}

.private-photo.portrait img {
  object-position: 50% 22%;
}

.private-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.private-note {
  border-left: 3px solid var(--gold);
  padding: 14px 16px;
  background: rgba(170, 114, 32, 0.08);
  color: #213a55;
}

.private-dark .private-note {
  background: rgba(255, 223, 160, 0.08);
  color: #eef5ff;
}

.private-card {
  padding: 26px;
  border: 1px solid rgba(136, 91, 22, 0.18);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.78);
}

.private-dark .private-card {
  border-color: rgba(255, 223, 160, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent),
    rgba(8, 33, 61, 0.68);
}

.private-card h3 {
  color: #061d36;
}

.private-dark .private-card h3 {
  color: var(--pale-gold);
}

.private-list {
  padding-left: 1.15rem;
}

.private-list li + li {
  margin-top: 8px;
}

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

.price-card {
  padding: 20px;
}

.price-card strong {
  display: block;
  color: var(--pale-gold);
  font-family: Georgia, serif;
  font-size: 1.7rem;
  font-weight: 500;
}

.private-form {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.private-form fieldset {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(255, 223, 160, 0.18);
  border-radius: 8px;
  padding: 20px;
}

.private-form legend {
  padding: 0 8px;
  color: var(--pale-gold);
  font-weight: 800;
}

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

.private-grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.check-line {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: inherit;
  font-weight: 600;
}

.check-line input {
  width: auto;
  margin-top: 0.35em;
}

.private-footer {
  background: #041323;
}

.private-begin-page {
  color: var(--white);
  background:
    radial-gradient(circle at 18% 8%, rgba(255, 223, 160, 0.2), transparent 22rem),
    radial-gradient(circle at 82% 12%, rgba(60, 100, 146, 0.24), transparent 28rem),
    linear-gradient(180deg, var(--midnight), #06192e 48%, #03111f);
}

.private-begin-page .site-header {
  background: rgba(5, 30, 56, 0.9);
  border-bottom-color: rgba(255, 223, 160, 0.18);
}

.private-begin-page .brand-text strong,
.private-begin-page .nav-links a {
  color: var(--white);
}

.private-begin-page .brand-text span {
  color: var(--muted);
}

.private-begin-page .private-hero h1,
.private-begin-page .private-section h2 {
  color: var(--white);
}

.private-begin-page .private-subtitle,
.private-begin-page .section-intro,
.private-begin-page .body-copy,
.private-begin-page .small {
  color: #e4eef9;
}

.private-begin-page .private-note {
  color: #f7fbff;
  background: rgba(255, 223, 160, 0.1);
}

.private-begin-page .private-section {
  border: 1px solid rgba(255, 223, 160, 0.14);
  border-radius: 8px;
  padding-right: 24px;
  padding-left: 24px;
  background:
    radial-gradient(circle at 80% 8%, rgba(255, 223, 160, 0.07), transparent 17rem),
    linear-gradient(180deg, rgba(8, 33, 61, 0.72), rgba(4, 19, 35, 0.86));
}

.private-begin-page .private-card {
  border-color: rgba(255, 223, 160, 0.24);
  background:
    linear-gradient(180deg, rgba(255, 223, 160, 0.08), transparent),
    rgba(8, 33, 61, 0.86);
  color: #edf5ff;
  box-shadow: 0 18px 48px rgba(2, 10, 19, 0.2);
}

.private-begin-page .private-card h3 {
  color: var(--pale-gold);
}

.private-begin-page .private-card p {
  color: #dce8f5;
}

.private-begin-page .begin-steps {
  gap: 16px;
}

.private-begin-page .begin-steps .private-card {
  border-top: 3px solid var(--sun);
}

.private-begin-page .begin-enrollment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.private-begin-page .enrollment-card {
  display: grid;
  gap: 14px;
  align-content: start;
  min-height: 100%;
  border-top: 3px solid var(--sun);
}

.private-begin-page .enrollment-card strong {
  display: block;
  color: var(--pale-gold);
  font-family: Georgia, serif;
  font-size: 1.8rem;
  font-weight: 500;
}

.private-begin-page .enrollment-card .button {
  align-self: end;
  justify-self: start;
  margin-top: 4px;
}

.private-begin-page .agreement-card {
  margin-top: 24px;
  margin-bottom: 24px;
}

.private-begin-page .private-form.panel {
  border-color: rgba(255, 223, 160, 0.22);
  background:
    linear-gradient(180deg, rgba(255, 223, 160, 0.055), transparent),
    rgba(5, 30, 56, 0.82);
}

.private-begin-page label,
.private-begin-page .check-line {
  color: #f2f7ff;
}

.private-begin-page input,
.private-begin-page select,
.private-begin-page textarea {
  border-color: rgba(255, 223, 160, 0.34);
  color: var(--white);
  background: rgba(2, 12, 23, 0.62);
}

.private-page .footer-brand p,
.private-page .boundary-notice p {
  color: var(--muted);
}

.button[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.65;
}

@media (max-width: 980px) {
  .price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 860px) {
  .private-hero {
    min-height: auto;
    padding-top: 44px;
  }

  .private-hero-grid,
  .private-split,
  .private-grid-two,
  .check-grid,
  .private-begin-page .begin-enrollment-grid {
    grid-template-columns: 1fr;
  }

  .private-photo.portrait {
    justify-self: center;
  }
}

@media (max-width: 560px) {
  .price-grid {
    grid-template-columns: 1fr;
  }

  .journey-grid {
    grid-template-columns: 1fr;
  }

  .private-card,
  .price-card {
    padding: 20px;
  }
}
