:root {
  --navy: #10243d;
  --navy-2: #183653;
  --cream: #fbf7f0;
  --cream-2: #f1e7d8;
  --paper: #fffdf9;
  --copper: #a9602d;
  --copper-dark: #78411f;
  --gold: #d7ad72;
  --ink: #20262e;
  --muted: #66615b;
  --line: #ddd0c0;
  --shadow: 0 18px 50px rgba(16, 36, 61, .11);
  --radius: 22px;
  --shell: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.shell { width: min(calc(100% - 40px), var(--shell)); margin-inline: auto; }
.skip-link { position: fixed; left: 14px; top: -70px; background: white; padding: 12px 18px; z-index: 100; border-radius: 8px; }
.skip-link:focus { top: 14px; }

.hero {
  min-height: 760px;
  position: relative;
  display: grid;
  align-items: center;
  background-image: url("images/hero.webp");
  background-size: cover;
  background-position: 56% center;
  color: white;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 24, 41, .94) 0%, rgba(10, 24, 41, .81) 34%, rgba(10, 24, 41, .22) 66%, rgba(10, 24, 41, .04) 100%);
}
.hero__content { position: relative; z-index: 1; padding-block: 100px; }
.hero__copy { max-width: 590px; }
.eyebrow {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-weight: 800;
  font-size: .78rem;
  color: var(--copper);
}
.eyebrow--light { color: var(--gold); }
h1, h2, h3 { color: var(--navy); line-height: 1.1; margin-top: 0; }
h1, h2 { font-family: Georgia, "Times New Roman", serif; }
h1 { font-size: clamp(3.1rem, 6vw, 5.75rem); color: white; margin-bottom: 24px; letter-spacing: -.04em; }
h1 span { color: var(--gold); display: block; font-style: italic; font-weight: 500; }
h2 { font-size: clamp(2.25rem, 4vw, 3.5rem); margin-bottom: 18px; letter-spacing: -.025em; }
h3 { font-size: 1.25rem; margin-bottom: 12px; }
p { margin-top: 0; }
.hero p { font-size: 1.08rem; color: rgba(255,255,255,.9); }
.hero__lead { font-size: 1.22rem !important; }
.button-row { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 30px; }
.button {
  border: 0;
  border-radius: 999px;
  min-height: 52px;
  padding: 14px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  text-decoration: none;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.button--primary { background: var(--copper); color: white; box-shadow: 0 12px 28px rgba(169, 96, 45, .3); }
.button--primary:hover { background: var(--copper-dark); }
.button--light { background: rgba(255,255,255,.94); color: var(--navy); }
.button--gold { background: var(--gold); color: var(--navy); }
.button--outline-light { color: white; border: 1px solid rgba(255,255,255,.65); background: transparent; }

.goal-strip { background: var(--navy); color: white; padding: 34px 0; }
.goal-grid { display: grid; grid-template-columns: .8fr 1.45fr; gap: 56px; align-items: center; }
.goal-strip h2 { color: white; font-family: inherit; font-size: clamp(1.9rem, 3vw, 2.7rem); margin: 0; }
.progress-labels { display: flex; justify-content: space-between; gap: 16px; margin-bottom: 9px; font-size: .94rem; }
.progress { height: 16px; border-radius: 999px; background: rgba(255,255,255,.2); overflow: hidden; }
.progress span { display: block; width: 0; height: 100%; background: linear-gradient(90deg, var(--copper), var(--gold)); border-radius: inherit; transition: width .8s ease; }
.goal-note { margin: 9px 0 0; color: rgba(255,255,255,.73); font-size: .9rem; }

.section { padding: 94px 0; }
.section--cream { background: var(--cream); }
.section-heading { max-width: 780px; margin: 0 auto 44px; text-align: center; }
.section-heading > p:last-child { color: var(--muted); font-size: 1.05rem; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.step { background: white; border: 1px solid #eee3d6; border-radius: var(--radius); padding: 28px 24px; box-shadow: 0 10px 30px rgba(16,36,61,.06); }
.step > span { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: var(--cream-2); color: var(--copper-dark); font-weight: 900; margin-bottom: 22px; }
.step p { color: var(--muted); margin-bottom: 0; }

.tier-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; align-items: stretch; }
.tier {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: 30px 24px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.78);
  box-shadow: 0 12px 35px rgba(16,36,61,.06);
}
.tier--featured { background: var(--navy); border-color: var(--navy); }
.tier--featured h3, .tier--featured p { color: white; }
.tier--highlight { border: 2px solid var(--copper); }
.tier__badge {
  position: absolute;
  left: 22px;
  top: -14px;
  border-radius: 999px;
  background: var(--copper);
  color: white;
  padding: 7px 12px;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 900;
}
.tier__amount { color: var(--copper-dark); font-family: Georgia, serif; font-size: 2.6rem; font-weight: 700; line-height: 1; margin: 14px 0 18px; }
.tier > p:not(.tier__amount) { color: var(--muted); }
.tier--featured > p:not(.tier__amount) { color: rgba(255,255,255,.82); }
.tier .button { margin-top: auto; }
.button--tier { background: var(--copper); color: white; width: 100%; }
.button--tier:hover { background: var(--copper-dark); }
.tier--featured .button--tier { background: var(--gold); color: var(--navy); }
.tier--other { background: #fffaf2; }

.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product-card { overflow: hidden; background: white; border: 1px solid #eee3d6; border-radius: var(--radius); box-shadow: var(--shadow); }
.product-card__image { aspect-ratio: 4/3; overflow: hidden; background: var(--cream-2); }
.product-card__image img { width: 100%; height: 100%; object-fit: cover; }
.product-card__image--portrait img { object-position: center 18%; }
.product-card__body { padding: 26px; }
.product-card__body p { color: var(--muted); margin-bottom: 0; }
.note-box { margin-top: 32px; padding: 28px 30px; background: var(--cream); border-left: 5px solid var(--copper); border-radius: 0 var(--radius) var(--radius) 0; }
.note-box p { margin-bottom: 0; color: var(--muted); }

.final-cta { background: linear-gradient(130deg, var(--navy), #193c5f); color: white; }
.final-cta__inner { display: grid; grid-template-columns: 1.3fr .7fr; gap: 50px; align-items: center; }
.final-cta h2 { color: white; }
.final-cta p { color: rgba(255,255,255,.82); max-width: 720px; }
.final-cta .button-row { justify-content: flex-end; margin-top: 0; }
footer { background: #091827; color: rgba(255,255,255,.7); padding: 28px 0 92px; }
.footer-inner { display: flex; justify-content: space-between; gap: 25px; font-size: .84rem; }
.footer-inner p { margin: 0; }
.fine-print { text-align: right; }
.mobile-give { display: none; }
.toast { position: fixed; left: 50%; bottom: 24px; transform: translate(-50%, 25px); opacity: 0; pointer-events: none; background: #111; color: white; padding: 12px 17px; border-radius: 999px; z-index: 100; transition: .25s ease; font-weight: 700; font-size: .9rem; }
.toast.is-visible { transform: translate(-50%, 0); opacity: 1; }

@media (max-width: 980px) {
  .hero { min-height: 720px; background-position: 67% center; }
  .hero__overlay { background: linear-gradient(90deg, rgba(10,24,41,.95) 0%, rgba(10,24,41,.85) 50%, rgba(10,24,41,.35) 100%); }
  .hero__copy { max-width: 530px; }
  .goal-grid, .final-cta__inner { grid-template-columns: 1fr; gap: 24px; }
  .steps, .tier-grid { grid-template-columns: repeat(2, 1fr); }
  .final-cta .button-row { justify-content: flex-start; }
}

@media (max-width: 720px) {
  .shell { width: min(calc(100% - 28px), var(--shell)); }
  .hero { min-height: 780px; align-items: end; background-position: 68% top; }
  .hero__overlay { background: linear-gradient(0deg, rgba(10,24,41,.99) 0%, rgba(10,24,41,.94) 48%, rgba(10,24,41,.35) 78%, rgba(10,24,41,.08) 100%); }
  .hero__content { padding: 280px 0 64px; }
  h1 { font-size: clamp(2.75rem, 14vw, 4.3rem); }
  .hero p { font-size: 1rem; }
  .hero__lead { font-size: 1.08rem !important; }
  .section { padding: 72px 0; }
  .steps, .tier-grid, .product-grid { grid-template-columns: 1fr; }
  .tier { min-height: 0; }
  .goal-grid { gap: 22px; }
  .progress-labels { font-size: .82rem; }
  .footer-inner { flex-direction: column; }
  .fine-print { text-align: left; }
  footer { padding-bottom: 104px; }
  .mobile-give { position: fixed; display: block; left: 0; right: 0; bottom: 0; z-index: 50; padding: 10px 14px; background: rgba(255,255,255,.94); backdrop-filter: blur(12px); border-top: 1px solid rgba(16,36,61,.1); }
  .mobile-give .button { width: 100%; }
}

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