:root {
  --color-orange: #ff5200;
  --color-navy: #0b206a;
  --color-light-orange: #ffe3b6;
  --color-lilac: #c3bcd8;
  --color-stone: #efe3d8;
  --color-blue: #b4ccef;
  --color-cream: #fffdee;
  --color-green: #daefc5;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-text: #15224f;
  --color-border: rgba(11, 32, 106, 0.12);
  --shadow-soft: 0 18px 40px rgba(11, 32, 106, 0.12);
  --shadow-hover: 0 24px 48px rgba(11, 32, 106, 0.16);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1160px;
  --font-body: "Albert Sans", "Avenir Next", "Segoe UI", sans-serif;
  --font-display: "Verveine", "Trebuchet MS", "Comic Sans MS", cursive;
}

@font-face {
  font-family: "Albert Sans";
  src: url("assets/AlbertSans-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Verveine";
  src: url("assets/VerveineRegular.TTF") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: #fffdee;
  line-height: 1.6;
  min-width: 320px;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image: url("assets/Pattern_Blue_RGB.jpg");
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.2;
}

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

a {
  color: var(--color-navy);
}

a:hover {
  color: var(--color-orange);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--color-orange);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  background: var(--color-navy);
  color: var(--color-white);
  padding: 10px 14px;
  border-radius: 12px;
  z-index: 100;
  text-decoration: none;
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.section {
  padding: 88px 0;
  position: relative;
}

.section-first {
  padding-top: 44px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(11, 32, 106, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 86px;
}

.brand-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

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

.brand-mark {
  width: 120px;
  height: auto;
}

.header-legacy {
  margin: 0;
  font-size: 0.68rem;
  line-height: 1.25;
  color: rgba(21, 34, 79, 0.72);
  max-width: 140px;
}

.header-legacy a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--color-orange);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  background: var(--color-light-orange);
  padding: 8px 14px;
  border-radius: 999px;
}

.brand-name {
  margin: 0;
  color: var(--color-navy);
  font-weight: 800;
  font-size: 1.15rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.site-nav a {
  text-decoration: none;
  font-weight: 700;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.nav-cta,
.button-primary {
  background: var(--color-orange);
  color: var(--color-white);
  box-shadow: 0 14px 24px rgba(255, 82, 0, 0.24);
}

.button-secondary {
  background: var(--color-white);
  color: var(--color-navy);
  border: 1px solid rgba(11, 32, 106, 0.14);
  box-shadow: 0 14px 24px rgba(11, 32, 106, 0.1);
}

.nav-cta:hover,
.button-primary:hover {
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 18px 28px rgba(255, 82, 0, 0.3);
}

.button-secondary:hover {
  color: var(--color-navy);
  transform: translateY(-2px);
  box-shadow: 0 18px 28px rgba(11, 32, 106, 0.14);
}

.text-link {
  font-weight: 800;
  text-underline-offset: 0.18em;
}

.hero-grid,
.split-grid,
.support-grid,
.footer-grid {
  display: grid;
  gap: 32px;
}

.hero-grid {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}

h1,
h2,
h3 {
  margin: 0 0 16px;
  color: var(--color-navy);
  line-height: 1.02;
}

h1,
h2 {
  font-family: var(--font-display);
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(3rem, 7vw, 5.8rem);
  max-width: 16ch;
}

h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  max-width: 20ch;
}

h3 {
  font-size: 1.4rem;
  font-weight: 800;
}

p {
  margin: 0 0 18px;
  font-size: 1.05rem;
}

.hero-text {
  max-width: 62ch;
  font-size: 1.16rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin: 32px 0 24px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
}

.trust-pill,
.legacy-note {
  margin: 0;
  font-size: 0.95rem;
}

.trust-pill {
  color: var(--color-navy);
  font-weight: 800;
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  text-decoration: none;
}

.trust-link:hover {
  color: var(--color-navy);
  transform: translateY(-1px);
}

.star-row {
  color: var(--color-orange);
  letter-spacing: 0.08em;
  font-size: 1.4rem;
  line-height: 1;
}

.legacy-note {
  color: rgba(21, 34, 79, 0.8);
}

.footer-legacy a {
  color: inherit;
}

.card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--color-border);
  border-radius: 30px 36px 28px 34px;
  box-shadow: var(--shadow-soft);
  position: relative;
}

.card::after {
  content: "";
  position: absolute;
  inset: -2px;
  border: 2px solid rgba(11, 32, 106, 0.14);
  border-radius: 34px 28px 36px 30px;
  pointer-events: none;
  transform: rotate(-0.7deg);
}

.hero-visual {
  padding: 0;
  background: var(--color-light-orange);
  position: relative;
  overflow: hidden;
  min-height: 540px;
}

.hero-artwork {
  min-height: 540px;
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-visual::before,
.hero-visual::after {
  content: none;
}

.hero-strapline {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-badges {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-badges span {
  background: var(--color-white);
  color: var(--color-navy);
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(11, 32, 106, 0.12);
}

.section-heading {
  margin-bottom: 34px;
  text-align: center;
}

.section-heading h2,
.section-heading p {
  max-width: 68ch;
  margin-left: auto;
  margin-right: auto;
}

.feature-grid,
.activity-grid,
.testimonial-grid {
  display: grid;
  gap: 20px;
}

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

.feature-card,
.testimonial,
.support-card,
.about-panel {
  padding: 28px;
}

.feature-icon {
  width: auto;
  height: 58px;
  margin-bottom: 16px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.94);
}

.feature-card:hover,
.activity-card:hover,
.testimonial:hover,
.support-card:hover,
.about-panel:hover,
.cta-banner:hover {
  transform: translateY(-4px) rotate(-0.3deg);
  box-shadow: var(--shadow-hover);
}

.feature-card,
.activity-card,
.testimonial,
.support-card,
.about-panel,
.cta-banner,
.hero-visual,
.button,
.nav-cta {
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

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

.activity-card {
  padding: 30px;
  color: var(--color-navy);
}

.activity-card h3 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400;
}

.activity-card ul {
  list-style: none;
  padding-left: 0;
}

.card-creative {
  background: rgba(255, 227, 182, 0.96);
}

.card-active {
  background: rgba(180, 204, 239, 0.96);
}

.card-social {
  background: rgba(218, 239, 197, 0.96);
}

ul {
  padding-left: 20px;
  margin: 0;
}

li + li {
  margin-top: 8px;
}

.split-grid {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: start;
}

.about-section {
  overflow: hidden;
}

.about-panel {
  background: rgba(195, 188, 216, 0.58);
}

.check-list {
  list-style: none;
  padding: 0;
}

.check-list li {
  display: flex;
  gap: 12px;
  align-items: start;
}

.check-list li::before {
  content: "✓";
  flex: none;
  color: var(--color-orange);
  font-weight: 800;
}

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

.support-card {
  background: rgba(239, 227, 216, 0.9);
}

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

.testimonial {
  background: rgba(255, 255, 255, 0.96);
}

.testimonial p {
  font-size: 1.12rem;
}

.testimonial footer {
  font-weight: 800;
  color: var(--color-orange);
}

.cta-banner-section {
  padding-top: 30px;
}

.cta-banner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: center;
  padding: 34px;
  background: var(--color-orange);
  color: var(--color-white);
}

.cta-banner h2,
.cta-banner .eyebrow,
.cta-banner p {
  color: var(--color-white);
}

.cta-banner .button-primary {
  background: var(--color-white);
  color: var(--color-orange);
  box-shadow: 0 14px 24px rgba(11, 32, 106, 0.18);
}

.cta-banner .button-primary:hover {
  color: var(--color-orange);
}

.qr-placeholder {
  justify-self: end;
  width: min(100%, 240px);
  border-radius: 26px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  text-align: center;
}

.qr-placeholder p {
  margin: 12px 0 0;
  font-weight: 700;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--color-border);
  border-radius: 22px;
  padding: 0 22px;
  box-shadow: var(--shadow-soft);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 36px 22px 0;
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--color-navy);
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.7rem;
  color: var(--color-orange);
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  padding: 0 0 20px;
  margin: 0;
}

.site-footer {
  padding: 38px 0 48px;
  border-top: 1px solid rgba(11, 32, 106, 0.08);
  background: rgba(11, 32, 106, 0.96);
  color: rgba(255, 255, 255, 0.88);
}

.holding-main {
  display: grid;
  min-height: calc(100vh - 180px);
}

.holding {
  display: grid;
  align-items: center;
}

.holding-card {
  max-width: 760px;
  margin: 0 auto;
  padding: 44px 32px;
  text-align: center;
  background: rgba(255, 255, 255, 0.92);
}

.holding-logo {
  width: min(100%, 220px);
  height: auto;
  margin: 0 auto 18px;
}

.holding-legacy {
  margin: -6px 0 18px;
  font-size: 0.78rem;
  line-height: 1.35;
  color: rgba(21, 34, 79, 0.72);
}

.holding-legacy a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

.holding-card h1,
.holding-text {
  margin-left: auto;
  margin-right: auto;
}

.holding-card h1 {
  text-transform: uppercase;
}

.holding-text {
  max-width: 34ch;
}

.holding-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 28px 0 18px;
}

.holding-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-bottom: 16px;
}

.holding-links a {
  font-weight: 700;
  text-underline-offset: 0.16em;
}

.holding-note {
  margin: 0;
  font-size: 0.96rem;
  color: rgba(21, 34, 79, 0.78);
}

.footer-grid-simple {
  grid-template-columns: 1.2fr 0.8fr;
}

.footer-grid {
  grid-template-columns: 1.3fr 0.8fr 0.9fr;
  align-items: start;
}

.site-footer .eyebrow,
.site-footer a {
  color: var(--color-white);
}

.footer-copy {
  max-width: 40ch;
  margin-bottom: 0;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-legacy p,
.footer-legacy a {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.74);
  margin-bottom: 0px;
}

[data-animate] {
  opacity: 0;
  transform: translateY(24px);
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 520ms ease, transform 520ms ease;
}

@media (max-width: 980px) {
  .site-nav {
    display: none;
  }

  .header-inner {
    justify-content: center;
  }

  .hero-grid,
  .split-grid,
  .cta-banner,
  .support-grid,
  .footer-grid,
  .footer-grid-simple,
  .feature-grid,
  .activity-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
  }

  .hero-artwork {
    min-height: 420px;
  }

  .qr-placeholder {
    justify-self: start;
  }

  .section {
    padding: 72px 0;
  }
}

@media (max-width: 640px) {
  .brand-wrap {
    gap: 8px;
    align-items: flex-end;
  }

  .header-inner {
    min-height: 76px;
  }

  h1 {
    font-size: clamp(2.8rem, 12vw, 4.2rem);
    max-width: none;
  }

  h2 {
    font-size: clamp(2rem, 9vw, 3rem);
    max-width: none;
  }

  .hero-actions {
    align-items: stretch;
  }

  .brand-mark {
    width: 88px;
  }

  .header-legacy {
    font-size: 0.62rem;
    max-width: 110px;
  }

  .hero-artwork {
    min-height: 350px;
  }

  .hero-strapline {
    min-height: 420px;
  }

  .hero-visual {
    min-height: 420px;
  }

  .button,
  .text-link {
    width: 100%;
  }

  .holding-actions {
    align-items: stretch;
  }

  .feature-card,
  .activity-card,
  .testimonial,
  .support-card,
  .about-panel,
  .cta-banner,
  .hero-visual,
  .faq-item {
    border-radius: 24px 28px 22px 26px;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  [data-animate] {
    opacity: 1;
    transform: none;
  }
}
