/* ==========================================================================
   Your Legacy — Great Lakes Regional Conference
   Into Action Group · Cleveland, Ohio

   Palette sampled directly from the official Into Action Group logo files
   (drive/Marketing/Logos): navy #073A4D, teal #118587, gold #F1B73E.

   No external requests (fonts, CDNs, trackers) — the page is fully
   self-contained so it loads fast and leaks nothing about who visits.
   ========================================================================== */

:root {
  --navy: #073a4d;
  --navy-900: #04222e;
  --navy-700: #0a4d66;
  --navy-600: #0d6180;
  --teal: #118587;
  --teal-600: #0e6e70;
  --teal-100: #e3f2f2;
  --gold: #f1b73e;
  --gold-600: #d99c1c;
  --gold-100: #fdf3dd;

  --ink: #10242e;
  --body: #3d5560;
  --muted: #6b8391;
  --line: #dce6ea;
  --bg: #ffffff;
  --bg-soft: #f5f9fa;
  --bg-cream: #fbf8f1;

  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua",
    Georgia, "Times New Roman", serif;
  --sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;

  --wrap: 1120px;
  --pad: clamp(1.25rem, 5vw, 2.5rem);
  --radius: 14px;
  --shadow: 0 1px 2px rgba(7, 58, 77, 0.06), 0 8px 28px rgba(7, 58, 77, 0.08);
  --shadow-lg: 0 2px 6px rgba(7, 58, 77, 0.08), 0 24px 60px rgba(7, 58, 77, 0.16);
}

/* ---------- base ---------- */

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(1rem, 0.97rem + 0.15vw, 1.0625rem);
  line-height: 1.65;
  color: var(--body);
  background: var(--bg);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--navy);
  /* Serif descenders (g, p, y) overflow a box set much below ~1.25 —
     the extra padding-bottom absorbs them so nothing clips. */
  line-height: 1.25;
  padding-bottom: 0.14em;
  margin: 0 0 0.4em;
  font-weight: 600;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.5rem, 1.6rem + 4.2vw, 5rem); line-height: 1.15; }
h2 { font-size: clamp(1.9rem, 1.4rem + 2.1vw, 2.9rem); }
h3 { font-size: clamp(1.2rem, 1.08rem + 0.5vw, 1.45rem); }

p { margin: 0 0 1.15rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--teal-600); }
a:hover { color: var(--navy); }

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

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.narrow { max-width: 760px; }

section { padding-block: clamp(3.5rem, 2rem + 6vw, 7rem); }

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy);
  color: #fff;
  padding: 0.75rem 1.25rem;
  z-index: 200;
}
.skip:focus { left: 0; }

/* ---------- eyebrow / section headings ---------- */

.eyebrow {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.eyebrow::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
  max-width: 90px;
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::after { display: none; }

.lede {
  font-size: clamp(1.08rem, 1rem + 0.4vw, 1.3rem);
  line-height: 1.6;
  color: var(--body);
}

/* ---------- buttons ---------- */

.btn {
  --btn-bg: var(--gold);
  --btn-fg: var(--navy-900);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  padding: 1.05rem 2rem;
  border: 2px solid transparent;
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease,
    background-color 0.15s ease, color 0.15s ease;
  box-shadow: 0 2px 0 rgba(7, 58, 77, 0.12);
}
.btn:hover {
  background: var(--gold-600);
  color: var(--navy-900);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(217, 156, 28, 0.35);
}
.btn:active { transform: translateY(0); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: #fff;
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: none;
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  color: #fff;
}

.btn--lg { font-size: 1.1rem; padding: 1.2rem 2.5rem; }
.btn[disabled] { opacity: 0.6; cursor: not-allowed; transform: none; }

/* ---------- header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 58, 77, 0.97);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 74px;
}

.brand { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.brand img { height: 42px; width: auto; }
.brand-text {
  font-family: var(--serif);
  color: #fff;
  font-size: 1.05rem;
  line-height: 1.1;
  font-weight: 600;
}
.brand-text span {
  display: block;
  font-family: var(--sans);
  font-size: 0.62rem;
  line-height: 1.5;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-top: 2px;
}

.nav { display: flex; align-items: center; gap: 2rem; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  white-space: nowrap;
}
.nav a:hover { color: var(--gold); }
.nav .btn { padding: 0.7rem 1.4rem; font-size: 0.9rem; }

.nav-toggle { display: none; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav { gap: 0.75rem; }
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  background: var(--navy);
  color: #fff;
  padding-block: clamp(4rem, 2rem + 9vw, 8rem);
  overflow: hidden;
  isolation: isolate;
}

/* Lake-horizon glow — evokes Cleveland's lakefront without imagery. */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 460px at 78% 8%, rgba(17, 133, 135, 0.5), transparent 62%),
    radial-gradient(680px 400px at 8% 96%, rgba(241, 183, 62, 0.16), transparent 66%);
  z-index: -1;
}

.hero h1 { color: #fff; margin-bottom: 0.35em; }
.hero h1 .script {
  display: block;
  color: var(--gold);
  font-style: italic;
  font-weight: 500;
  /* Subordinate to the title, not equal to it — and italic serif leans past
     its box on both axes, so it needs room the upright title does not. */
  font-size: 0.4em;
  line-height: 1.35;
  padding-bottom: 0.2em;
  padding-right: 0.08em;
  margin-top: 0.35em;
  letter-spacing: 0;
}

.hero-kicker {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: clamp(1.1rem, 1rem + 0.55vw, 1.4rem);
  color: rgba(255, 255, 255, 0.87);
  max-width: 40ch;
  margin-bottom: 2rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0 2.5rem;
  margin-bottom: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.hero-meta div { padding-block: 0.5rem; }
.hero-meta dt {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.hero-meta dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.2rem;
  color: #fff;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.hero-note {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 1.25rem;
}

/* ---------- history band ---------- */

.history {
  background: var(--bg-cream);
  border-block: 1px solid var(--line);
  padding-block: clamp(2.5rem, 1.5rem + 3vw, 3.5rem);
}
.history ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.75rem;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  text-align: center;
}
.history li { position: relative; }
.history li + li::before {
  content: "";
  position: absolute;
  left: -0.9rem;
  top: 15%;
  height: 70%;
  width: 1px;
  background: var(--line);
}
.history .mark {
  color: var(--gold);
  font-size: 1.1rem;
  display: block;
  margin-bottom: 0.6rem;
}
.history strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.18rem;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 0.15rem;
}
.history span.sub { font-size: 0.92rem; color: var(--muted); }

@media (max-width: 760px) {
  .history li + li::before { display: none; }
}

/* ---------- legacies ---------- */

.legacies { background: var(--bg); }
.legacy-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-top: 3rem;
}
.legacy {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.25rem 1.85rem;
  position: relative;
  overflow: hidden;
}
.legacy::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: var(--teal);
}
.legacy:nth-child(2)::before { background: var(--gold); }
.legacy:nth-child(3)::before { background: var(--navy-600); }
.legacy .num {
  font-family: var(--serif);
  font-size: 2.4rem;
  color: var(--teal);
  opacity: 0.28;
  line-height: 1;
  margin-bottom: 0.75rem;
  display: block;
}
.legacy:nth-child(2) .num { color: var(--gold-600); }
.legacy:nth-child(3) .num { color: var(--navy-600); }
.legacy h3 { margin-bottom: 0.5rem; }
.legacy p { font-size: 0.98rem; margin: 0; }

/* ---------- quote ---------- */

.quote {
  background: var(--navy);
  color: #fff;
  text-align: center;
}
.quote blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.4rem, 1.05rem + 1.7vw, 2.15rem);
  line-height: 1.42;
  color: #fff;
  font-style: italic;
}
.quote .mark {
  font-size: 3.5rem;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
  font-family: var(--serif);
}
.quote cite {
  display: block;
  margin-top: 1.75rem;
  font-style: normal;
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

/* ---------- schedule ---------- */

.schedule { background: var(--bg-soft); }
.day-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(275px, 1fr));
  margin-top: 3rem;
}
.day {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow);
}
.day header { border-bottom: 2px solid var(--gold); padding-bottom: 1rem; margin-bottom: 1.4rem; }
.day .dow {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 700;
}
.day .date { font-family: var(--serif); font-size: 1.5rem; color: var(--navy); margin-top: 0.25rem; }
.day .theme { font-size: 0.92rem; color: var(--muted); margin-top: 0.35rem; }
.day ul { list-style: none; margin: 0; padding: 0; }
.day li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.8rem;
  font-size: 0.97rem;
}
.day li:last-child { margin-bottom: 0; }
.day li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
}

.note {
  margin-top: 2.5rem;
  padding: 1.15rem 1.4rem;
  background: var(--gold-100);
  border-left: 4px solid var(--gold);
  border-radius: 0 8px 8px 0;
  font-size: 0.95rem;
  color: var(--ink);
}
.note strong { color: var(--navy); }

/* ---------- registration ---------- */

.register { background: var(--bg); }
.reg-layout {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
  align-items: start;
  margin-top: 3rem;
}
@media (min-width: 900px) {
  .reg-layout { grid-template-columns: 1fr 400px; gap: 4rem; }
}

.includes { list-style: none; margin: 1.75rem 0 0; padding: 0; }
.includes li {
  position: relative;
  padding-left: 2.1rem;
  margin-bottom: 1rem;
  font-size: 1rem;
}
.includes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15em;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--teal-100);
  border: 1px solid rgba(17, 133, 135, 0.3);
}
.includes li::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 0.5em;
  width: 8px;
  height: 4px;
  border-left: 2px solid var(--teal);
  border-bottom: 2px solid var(--teal);
  transform: rotate(-45deg);
}

.price-card {
  background: var(--navy);
  color: #fff;
  border-radius: 18px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.price-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
}
.price-card .label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 1rem;
}
.price-card .amount {
  font-family: var(--serif);
  font-size: 4.25rem;
  line-height: 1;
  color: #fff;
  display: block;
}
.price-card .amount sup { font-size: 1.9rem; vertical-align: super; margin-right: 2px; }
.price-card .per {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  margin: 0.6rem 0 1.75rem;
}
.price-card .btn { width: 100%; }
.price-card .fineprint {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.62);
  margin-top: 1.25rem;
  line-height: 1.5;
}
.price-card hr {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin: 1.75rem 0;
}

/* checkout status messaging */
.checkout-msg {
  margin-top: 1rem;
  font-size: 0.9rem;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  display: none;
  text-align: left;
  line-height: 1.5;
}
.checkout-msg.show { display: block; }
.checkout-msg.error {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(241, 183, 62, 0.5);
  color: #fff;
}

/* ---------- travel ---------- */

.travel { background: var(--bg-cream); }
.travel-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  margin-top: 3rem;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.85rem 1.6rem;
}
.card h3 { font-size: 1.15rem; margin-bottom: 0.6rem; }
.card p { font-size: 0.96rem; margin: 0; }
.card ul { margin: 0.75rem 0 0; padding-left: 1.15rem; font-size: 0.96rem; }
.card li { margin-bottom: 0.4rem; }

/* ---------- FAQ ---------- */

.faq { background: var(--bg); }
.faq-list { margin-top: 2.5rem; border-top: 1px solid var(--line); }
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  cursor: pointer;
  padding: 1.35rem 2.5rem 1.35rem 0;
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--navy);
  font-weight: 600;
  position: relative;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  position: absolute;
  right: 0.4rem;
  top: 50%;
  width: 11px;
  height: 11px;
  border-right: 2px solid var(--teal);
  border-bottom: 2px solid var(--teal);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.2s ease;
}
.faq details[open] summary::after { transform: translateY(-25%) rotate(-135deg); }
.faq details > div { padding: 0 0 1.6rem; max-width: 68ch; }

/* ---------- updates / footer ---------- */

.updates {
  background: var(--teal);
  color: #fff;
  text-align: center;
}
.updates h2 { color: #fff; }
.updates p { color: rgba(255, 255, 255, 0.9); }
.updates .btn:hover { background: #fff; color: var(--navy); }

.site-footer {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.65);
  padding-block: 4rem 2.5rem;
  font-size: 0.92rem;
}
.footer-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.site-footer img { height: 64px; width: auto; margin-bottom: 1rem; }
.site-footer h4 {
  color: #fff;
  font-family: var(--sans);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.site-footer a { color: rgba(255, 255, 255, 0.8); text-decoration: none; }
.site-footer a:hover { color: var(--gold); }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 0.6rem; }
.colophon {
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}
.anon-note {
  max-width: 62ch;
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
}

/* ---------- checkout result pages ---------- */

.result {
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--bg-soft);
  padding-block: 5rem;
}
.result .icon {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 2rem;
  background: var(--teal-100);
  border: 2px solid var(--teal);
}
.result .icon.warn { background: var(--gold-100); border-color: var(--gold); }
.result .icon svg { width: 38px; height: 38px; }

/* ---------- motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .site-header, .updates, .hero-cta { display: none; }
  body { color: #000; }
}
