@import url("/assets/fonts/fonts.css");

:root {
  --blue: #BFDFF2;
  --blue-deep: #39769A;
  --blue-dark: #23536F;
  --blue-pale: #EAF6FC;
  --yellow: #F8E8A3;
  --beige: #F6F2EA;
  --white: #FFFFFF;
  --text: #4A4A4A;
  --muted: #706E69;
  --line: rgba(74, 74, 74, .14);
  --shadow: 0 22px 55px rgba(35, 83, 111, .12);
  --sans: "Figtree", system-ui, -apple-system, sans-serif;
  --display: "Figtree", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--beige);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
.wrap { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.site-head {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: rgba(246,242,234,.9);
  backdrop-filter: blur(18px) saturate(1.2);
}
.site-head .wrap { width: min(1180px, calc(100% - 40px)); }
.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--blue-dark);
  font-weight: 800;
  line-height: 1.15;
  text-decoration: none;
}
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
}
.brand small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: .64rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.back {
  color: var(--blue-deep);
  font-size: .86rem;
  font-weight: 750;
  text-decoration: none;
}
.nav-links-public {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.6vw, 22px);
}
.nav-links-public a {
  color: var(--text);
  font-size: .84rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.nav-links-public a:hover { color: var(--blue-dark); }
.nav-links-public .nav-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 10px 17px;
  border-radius: 999px;
  background: var(--blue-dark);
  box-shadow: 0 12px 24px rgba(35,83,111,.18);
  color: var(--white);
}
.nav-links-public .nav-cta:hover { color: var(--white); background: var(--blue-deep); }
.mobile-nav { display: none; }
.mobile-nav summary {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--blue-dark);
  cursor: pointer;
  font-size: 1.25rem;
  list-style: none;
}
.mobile-nav summary svg { width: 22px; height: 22px; }
.mobile-nav summary .icon-close { display: none; }
.mobile-nav[open] summary .icon-menu { display: none; }
.mobile-nav[open] summary .icon-close { display: block; }
.mobile-nav summary::-webkit-details-marker { display: none; }
.mobile-nav-panel {
  position: absolute;
  top: 76px;
  right: 0;
  left: 0;
  display: grid;
  gap: 4px;
  padding: 20px;
  border-bottom: 1px solid var(--line);
  background: var(--beige);
  box-shadow: var(--shadow);
}
.mobile-nav-panel a {
  padding: 8px 0;
  color: var(--blue-dark);
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 600;
  text-decoration: none;
}
.mobile-nav-panel .nav-cta-mobile {
  margin-top: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--blue-dark);
  color: var(--white);
  font-family: var(--sans);
  font-size: .9rem;
  text-align: center;
}
.hero {
  padding: clamp(70px, 10vw, 120px) 0;
  background:
    radial-gradient(circle at 90% 10%, rgba(191,223,242,.8), transparent 30%),
    radial-gradient(circle at 5% 95%, rgba(248,232,163,.62), transparent 27%),
    var(--beige);
}
.eyebrow {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--blue-dark);
  font-size: .73rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}
h1, h2, h3 {
  color: var(--blue-dark);
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -.035em;
  line-height: 1.08;
  text-wrap: balance;
}
h1 { max-width: 14ch; margin: 0 0 22px; font-size: clamp(3rem, 7vw, 5.9rem); }
h2 { margin: 0 0 18px; font-size: clamp(2rem, 4.4vw, 3.6rem); }
h3 { margin: 0 0 10px; font-size: 1.45rem; }
.lede { max-width: 62ch; margin: 0; color: var(--muted); font-size: 1.13rem; }
.event-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
  margin-top: 44px;
}
.card {
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.facts { display: grid; gap: 0; margin: 0; }
.facts div {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}
.facts div:last-child { border-bottom: 0; }
.facts dt { color: var(--blue-deep); font-size: .75rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.facts dd { margin: 0; color: var(--text); }
.card p, .card li { color: var(--muted); }
.card li + li { margin-top: 8px; }
.notice {
  margin-top: 22px;
  padding: 15px 17px;
  border-radius: 14px;
  background: #FFF9DF;
  color: #6C5D2D;
  font-size: .82rem;
}
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 24px;
  padding: 13px 22px;
  border-radius: 999px;
  background: var(--blue-dark);
  box-shadow: 0 14px 28px rgba(35,83,111,.2);
  color: var(--white);
  font-weight: 750;
  text-decoration: none;
}
.button:hover { background: var(--blue-deep); }
.button-outline {
  border: 1px solid rgba(35, 83, 111, .24);
  background: transparent;
  box-shadow: none;
  color: var(--blue-dark);
}
.button-outline:hover { background: var(--blue-pale); }
.article { padding: clamp(60px, 9vw, 105px) 0; }
.article-cover {
  margin-top: clamp(28px, 5vw, 58px);
  overflow: hidden;
  aspect-ratio: 16 / 7;
  border-radius: 28px;
  background: var(--blue-pale);
  box-shadow: var(--shadow);
}
.article-cover img { width: 100%; height: 100%; object-fit: cover; }
.article-shell {
  display: grid;
  grid-template-columns: minmax(0, 680px) 220px;
  align-items: start;
  gap: 60px;
}
.prose { font-size: 1.03rem; }
.prose > p:first-child { color: var(--blue-dark); font-family: var(--display); font-size: 1.45rem; line-height: 1.45; }
.prose h2 { margin-top: 50px; font-size: 2.15rem; }
.prose h3 { margin-top: 36px; }
.prose p, .prose li { color: var(--muted); }
.prose li + li { margin-top: 8px; }
.aside {
  position: sticky;
  top: 24px;
  padding: 22px;
  border-radius: 20px;
  background: var(--blue);
}
.aside strong { display: block; color: var(--blue-dark); }
.aside p { margin-bottom: 0; color: var(--blue-dark); font-size: .85rem; }
.site-foot { padding: 34px 0; background: var(--blue-dark); color: rgba(255,255,255,.68); }
.site-foot .wrap { display: flex; justify-content: space-between; gap: 24px; }
.site-foot p { margin: 0; font-size: .76rem; }
.site-foot a { color: white; }
.page-hero { padding: clamp(65px, 9vw, 105px) 0 50px; background: radial-gradient(circle at 90% 10%, rgba(191,223,242,.8), transparent 30%), var(--beige); }
.page-hero h1 { max-width: 17ch; }
.page-section { padding: clamp(55px, 8vw, 95px) 0; background: var(--white); }
.page-section.alt { background: var(--beige); }
.two-column { display: grid; grid-template-columns: 1fr 1fr; align-items: start; gap: clamp(28px, 6vw, 75px); }
.about-layout { grid-template-columns: 240px minmax(0, 1fr); align-items: start; }
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 34px; }
.feature { padding: 24px; border: 1px solid var(--line); border-radius: 20px; background: var(--white); }
.feature strong { display: block; margin-bottom: 7px; color: var(--blue-dark); }
.feature p { margin: 0; color: var(--muted); }
.portrait {
  width: 220px;
  aspect-ratio: 1;
  overflow: hidden;
  border: 6px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--line), var(--shadow);
}
.portrait picture { display: block; width: 100%; height: 100%; }
.portrait img { display: block; width: 100%; height: 100%; object-fit: cover; }
.faq-list { display: grid; gap: 10px; max-width: 800px; }
.faq-list details { padding: 19px 22px; border: 1px solid var(--line); border-radius: 16px; background: var(--white); }
.faq-list summary { color: var(--blue-dark); cursor: pointer; font-weight: 800; }
.faq-list p { margin-bottom: 0; color: var(--muted); }
.event-list { display: grid; gap: 16px; margin-top: 35px; }
.event-row { display: grid; grid-template-columns: 95px 1fr auto; align-items: center; gap: 22px; padding: 22px; border: 1px solid var(--line); border-radius: 20px; background: var(--white); }
.event-date { display: grid; min-height: 76px; place-items: center; border-radius: 14px; background: var(--blue); color: var(--blue-dark); font-weight: 850; text-align: center; line-height: 1.1; }
.event-date span { display: block; font-family: var(--display); font-size: 2rem; font-weight: 600; }
.event-row p { margin: 6px 0 0; color: var(--muted); font-size: .87rem; }
.event-row .button { margin: 0; white-space: nowrap; }
.empty-agenda {
  max-width: 720px;
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.empty-agenda p { max-width: 58ch; color: var(--muted); }
.back-link {
  display: block;
  width: fit-content;
  margin-bottom: 24px;
  color: var(--blue-deep);
  font-size: .84rem;
  font-weight: 750;
  text-decoration: none;
}
.workshop-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, .88fr);
  align-items: start;
  gap: clamp(34px, 7vw, 90px);
}
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
}
.detail-item {
  min-height: 116px;
  padding: 24px 22px 22px 0;
  border-bottom: 1px solid var(--line);
}
.detail-item:nth-child(odd) { border-right: 1px solid var(--line); }
.detail-item:nth-child(even) { padding-left: 22px; }
.detail-item span {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-deep);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.detail-item strong { color: var(--blue-dark); font-size: 1.05rem; }
.workshop-signup {
  position: sticky;
  top: 102px;
  padding: clamp(26px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--blue-pale);
  box-shadow: var(--shadow);
}
.workshop-signup h2 { font-size: clamp(2rem, 3.7vw, 3rem); }
.workshop-signup li { color: var(--muted); }
.workshop-signup li + li { margin-top: 8px; }
.workshop-signup small { display: block; margin-top: 16px; color: var(--muted); line-height: 1.5; }
.contact-card { padding: clamp(28px, 5vw, 48px); border-radius: 24px; background: var(--blue-dark); color: white; }
.contact-card h2, .contact-card p { color: white; }
.contact-card a { color: var(--yellow); font-weight: 800; }
.contact-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.contact-option {
  min-width: 0;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  align-items: flex-start;
  padding: clamp(26px, 3vw, 38px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--beige);
}
.contact-option h2 { margin-bottom: 14px; font-size: clamp(1.8rem, 2.8vw, 2.5rem); }
.contact-option .eyebrow { justify-self: start; }
.contact-option p { margin: 0; color: var(--muted); }
.contact-option .button { margin-top: 24px; }
.contact-primary { background: var(--blue-dark); }
.contact-primary h2, .contact-primary p { color: var(--white); }
.contact-primary .eyebrow { background: var(--yellow); }
.contact-primary .button { background: var(--white); box-shadow: none; color: var(--blue-dark); }
.contact-primary .button:hover { background: var(--blue-pale); }
.legal h2 { margin-top: 42px; font-size: 2rem; }
.legal p, .legal li { color: var(--muted); }
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 35px; }
.blog-list .article-grid { margin-top: 0; }
.article-tile { display: block; overflow: hidden; padding: 26px; border: 1px solid var(--line); border-radius: 20px; background: var(--white); text-decoration: none; }
.article-tile-image { width: calc(100% + 52px); height: 190px; margin: -26px -26px 24px; object-fit: cover; }
.article-tile:hover { border-color: var(--blue-deep); }
.article-tile p { color: var(--muted); }
.article-tile small { color: var(--blue-deep); font-weight: 800; }

@media (max-width: 820px) {
  .wrap, .site-head .wrap { width: min(680px, calc(100% - 48px)); }
}
@media (max-width: 760px) {
  .event-grid, .article-shell, .two-column, .feature-grid, .article-grid, .contact-options, .workshop-detail-layout { grid-template-columns: 1fr; }
  .aside { position: static; }
  .workshop-signup { position: static; }
  .facts div { grid-template-columns: 1fr; gap: 4px; }
  .site-foot .wrap { flex-direction: column; }
  .event-row { grid-template-columns: 76px 1fr; }
  .event-row .button { grid-column: 1 / -1; }
  .detail-grid { grid-template-columns: 1fr; }
  .detail-item,
  .detail-item:nth-child(even) { min-height: 0; padding: 20px 0; border-right: 0; }
}
@media (max-width: 980px) {
  .nav-links-public { display: none; }
  .mobile-nav { display: block; }
}
@media (max-width: 760px) {
  .about-layout { grid-template-columns: 1fr; }
  .portrait { width: 176px; margin-inline: auto; }
}
