@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@400;500;600;700&family=Jost:wght@300;400;500;600;700&display=swap');

:root {
  color-scheme: only light;
  --space-cadet: #293050;
  --soldier-blue: #636892;
  --saddle-brown: #8c421f;
  --princeton-orange: #f47a20;
  --tigers-eye: #d8923d;
  --metallic-silver: #a9a9b1;
  --light-blue-gray: #abb1c9;
  --light-gray: #cfcfd6;
  --mac-n-cheese: #88baf9;
  --bg: #f6f2ec;
  --surface: #ffffff;
  --ink: var(--space-cadet);
  --muted: var(--soldier-blue);
  --accent: var(--princeton-orange);
  --accent-dark: var(--saddle-brown);
  --accent-soft: var(--tigers-eye);
  --edge: var(--light-blue-gray);
  --shadow: 0 24px 60px rgba(41, 48, 80, 0.16);
  --radius: 18px;
  --radius-sm: 12px;
  --max-width: 1100px;
  --font-body: 'Jost', system-ui, -apple-system, sans-serif;
  --font-heading: 'Josefin Sans', 'Jost', sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  letter-spacing: 0.3px;
}

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

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

a.link {
  color: var(--accent-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  padding: 8px 12px;
  background: var(--surface);
  border-radius: 8px;
  z-index: 1000;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(246, 242, 236, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--edge);
}

.nav {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  gap: 12px;
}

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

.brand-logo {
  width: clamp(300px, 10vw, 120px);
  object-fit: contain;
}

.nav-toggle {
  border: 1px solid var(--edge);
  background: var(--surface);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.95rem;
  cursor: pointer;
}

.nav-links {
  position: absolute;
  inset: 70px 16px auto 16px;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 10px;
}

.nav-links.open {
  display: flex;
}

.nav-links a,
.nav-links summary {
  font-weight: 500;
}

.nav-links summary {
  list-style: none;
  cursor: pointer;
}

.nav-links summary::-webkit-details-marker {
  display: none;
}

.nav-links details {
  border: 1px solid var(--edge);
  border-radius: 12px;
  padding: 10px 12px;
}

.nav-links details[open] {
  background: #fdfaf7;
}

.nav-links details div {
  margin-top: 10px;
  display: grid;
  gap: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 12px 30px rgba(244, 122, 32, 0.25);
}

.btn.secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--edge);
  box-shadow: none;
}

main {
  overflow: hidden;
}

.section {
  padding: 56px 20px;
}

.section.tight {
  padding-top: 32px;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.hero {
  padding: 72px 20px 56px;
  position: relative;
  background: radial-gradient(circle at top left, #fff2e6 0%, rgba(255, 242, 230, 0.35) 45%, transparent 70%),
    radial-gradient(circle at top right, #f8e3d2 0%, rgba(248, 227, 210, 0.2) 45%, transparent 70%);
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: 28px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.1;
  margin: 0;
}

.hero p {
  font-size: 1.05rem;
  color: var(--muted);
  margin: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-panel {
  background: var(--surface);
  padding: 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--edge);
  display: grid;
  gap: 12px;
}

.hero-panel h3 {
  margin: 0;
  font-size: 1.1rem;
}

.hero-panel .stat {
  font-size: 1.2rem;
  font-weight: 600;
}

.hero-art {
  border-radius: var(--radius);
  padding: 24px;
  background: linear-gradient(145deg, #293050, #1f243b);
  color: #fff;
  position: relative;
  overflow: hidden;
  min-height: 220px;
  display: grid;
  place-items: center;
}

.hero-art.photo {
  padding: 0;
  min-height: 240px;
  place-items: end start;
}

.hero-art.photo::before,
.hero-art.photo::after {
  display: none;
}

.hero-art.photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-art.photo span {
  position: relative;
  z-index: 1;
  width: 100%;
  text-align: left;
  padding: 16px 18px;
  font-size: 1.1rem;
  background: linear-gradient(90deg, rgba(41, 48, 80, 0.85), rgba(41, 48, 80, 0));
}

.hero-art::before,
.hero-art::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  opacity: 0.4;
}

.hero-art::before {
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, #f47a20 0%, transparent 70%);
  top: -120px;
  right: -80px;
}

.hero-art::after {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, #d8923d 0%, transparent 70%);
  bottom: -120px;
  left: -60px;
}

.hero-art span {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  text-align: center;
  z-index: 1;
}

.grid {
  display: grid;
  gap: 20px;
}

.card {
  background: var(--surface);
  padding: 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--edge);
  display: grid;
  gap: 10px;
}

.card h3,
.card h4 {
  margin: 0;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.icon-chip {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--light-blue-gray);
  display: grid;
  place-items: center;
  font-weight: 700;
  color: var(--accent-dark);
}

.icon-chip svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.split {
  display: grid;
  gap: 24px;
}

.surface {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--edge);
}

.form-embed-shell {
  width: 100%;
}

.form-embed-shell iframe {
  display: block;
  width: 100%;
  min-height: 900px;
  border: 0;
}

.media-card {
  margin: 0;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--edge);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: grid;
  gap: 0;
}

.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-card figcaption {
  padding: 14px 18px;
  font-size: 0.95rem;
  color: var(--muted);
  background: var(--surface);
  border-top: 1px solid var(--edge);
}

.media-card.contain {
  padding: 16px;
}

.media-card.contain img {
  height: 220px;
  object-fit: contain;
  background: #fff;
}

.media-card.contain figcaption {
  border-top: none;
  padding: 10px 4px 0;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--light-blue-gray);
  color: var(--space-cadet);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.list {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 8px;
}

.list.columns {
  columns: 2;
  gap: 24px;
}

.banner {
  background: var(--space-cadet);
  color: #fff;
  border-radius: var(--radius);
  padding: 26px;
  display: grid;
  gap: 16px;
}

.banner strong {
  font-size: 1.1rem;
}

.form {
  display: grid;
  gap: 12px;
}

.form label {
  font-weight: 600;
  font-size: 0.95rem;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--edge);
  font-family: inherit;
  font-size: 1rem;
}

.form textarea {
  min-height: 140px;
  resize: vertical;
}

.faq {
  display: grid;
  gap: 16px;
}

.faq-item {
  display: grid;
  gap: 6px;
}

.faq-item p {
  margin: 0;
}

.footer {
  padding: 40px 20px 56px;
  border-top: 1px solid var(--edge);
  background: #f3ede6;
}

.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: 20px;
}

.footer h4 {
  margin: 0 0 10px;
  font-size: 1rem;
}

.footer p {
  margin: 0;
  color: var(--muted);
}

.page-hero {
  padding: 48px 20px 32px;
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 12px;
}

.page-hero p {
  margin: 0;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp 0.8s ease forwards;
  animation-delay: var(--delay, 0s);
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

@media (min-width: 900px) {
  .nav {
    padding: 18px 24px;
  }

  .nav-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    background: transparent;
    box-shadow: none;
    padding: 0;
    gap: 18px;
  }

  .nav-links details {
    padding: 0;
    border: none;
    background: transparent;
  }

  .nav-links details div {
    position: absolute;
    top: 68px;
    background: var(--surface);
    padding: 16px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    border: 1px solid var(--edge);
    min-width: 240px;
  }

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

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

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

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

  .split.cols-2 {
    grid-template-columns: repeat(2, 1fr);
    align-items: start;
  }

  .form-embed-shell iframe {
    min-height: 900px;
  }

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