:root {
  --canvas: #f4f3ee;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-solid: #fff;
  --ink: #13202d;
  --muted: #65717b;
  --teal: #137b73;
  --teal-dark: #0d665f;
  --teal-soft: #e5f2ef;
  --line: rgba(19, 32, 45, 0.1);
  --shadow: 0 28px 80px rgba(21, 42, 47, 0.1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  padding: 20px;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 5%, rgba(107, 188, 176, 0.1), transparent 25rem),
    var(--canvas);
  font-family: "Manrope", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.skip-link {
  position: fixed;
  z-index: 20;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--ink);
  color: #fff;
  transform: translateY(-150%);
}

.skip-link:focus { transform: translateY(0); }

.page-shell {
  position: relative;
  display: flex;
  min-height: calc(100vh - 40px);
  max-width: 1500px;
  margin: 0 auto;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 32px;
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.site-header {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.055em;
  text-decoration: none;
}

.brand-number { color: var(--teal); }

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(19, 123, 115, 0.16);
  border-radius: 14px;
  background: var(--teal-soft);
}

.brand-mark svg {
  width: 25px;
  fill: none;
  stroke: var(--teal);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 14px;
  font-weight: 500;
}

.primary-nav a {
  color: #39444d;
  text-decoration: none;
  transition: color 160ms ease, transform 160ms ease, background 160ms ease;
}

.primary-nav a:hover { color: var(--teal-dark); }

.primary-nav .nav-cta {
  padding: 13px 18px;
  border-radius: 999px;
  background: var(--teal);
  color: #fff;
  box-shadow: 0 10px 26px rgba(19, 123, 115, 0.2);
}

.primary-nav .nav-cta:hover {
  color: #fff;
  background: var(--teal-dark);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  display: flex;
  flex: 1;
  align-items: center;
  flex-direction: column;
  padding: 54px 40px 38px;
  text-align: center;
}

.hero-glow {
  position: absolute;
  top: 16%;
  left: 50%;
  width: min(780px, 80vw);
  height: 430px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(88, 180, 167, 0.14), rgba(255,255,255,0) 68%);
  transform: translateX(-50%);
  pointer-events: none;
}

.eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: #515d66;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(19, 123, 115, 0.11);
}

h1 {
  position: relative;
  max-width: 1000px;
  margin: 28px 0 22px;
  font-size: clamp(58px, 7.3vw, 110px);
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 0.9;
}

h1 span { color: var(--teal); }

.hero-copy {
  position: relative;
  max-width: 670px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.65vw, 22px);
  line-height: 1.55;
}

.hero-actions {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover { transform: translateY(-2px); }

.button-primary {
  border-color: var(--teal);
  background: var(--teal);
  color: #fff;
  box-shadow: 0 14px 32px rgba(19, 123, 115, 0.2);
}

.button-primary:hover { background: var(--teal-dark); }

.button-secondary { background: rgba(255, 255, 255, 0.72); }
.button-secondary:hover { box-shadow: 0 12px 30px rgba(21, 42, 47, 0.08); }

.info-rail {
  position: relative;
  display: grid;
  width: min(920px, 100%);
  margin-top: 50px;
  grid-template-columns: 1fr 1.35fr;
  gap: 14px;
  text-align: left;
}

.info-card {
  display: flex;
  min-height: 112px;
  align-items: center;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
}

.date-card { gap: 16px; }

.calendar-icon {
  display: grid;
  width: 60px;
  height: 67px;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid rgba(19, 123, 115, 0.16);
  border-radius: 13px;
  background: #fff;
  text-align: center;
}

.calendar-icon span {
  padding: 5px 0 3px;
  background: var(--teal);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.calendar-icon strong {
  align-self: center;
  font-size: 25px;
  line-height: 1;
}

.card-label {
  margin: 0 0 6px;
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card-value {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}

.about-card { justify-content: space-between; gap: 18px; }
.about-card p:last-of-type { max-width: 510px; margin: 0; color: #4e5b64; font-size: 14px; line-height: 1.55; }

.maple-mark {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--teal-soft);
  color: var(--teal);
  font-size: 22px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 28px 24px;
  border-top: 1px solid var(--line);
  color: #748089;
  font-size: 11px;
  line-height: 1.5;
}

.site-footer p { margin: 0; }
.site-footer p:first-child { max-width: 720px; }

@media (max-width: 800px) {
  body { padding: 10px; }
  .page-shell { min-height: calc(100vh - 20px); border-radius: 24px; }
  .site-header { padding: 18px; }
  .primary-nav > a:not(.nav-cta) { display: none; }
  .primary-nav { gap: 0; }
  .primary-nav .nav-cta { padding: 11px 14px; font-size: 12px; }
  .hero { padding: 55px 20px 28px; }
  h1 { margin-top: 24px; font-size: clamp(50px, 15vw, 78px); }
  .info-rail { grid-template-columns: 1fr; }
  .site-footer { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 520px) {
  .brand { font-size: 19px; }
  .brand-mark { width: 40px; height: 40px; border-radius: 12px; }
  .primary-nav .nav-cta { max-width: 126px; line-height: 1.2; }
  .hero { padding-top: 40px; }
  .eyebrow { font-size: 10px; }
  h1 { letter-spacing: -0.065em; }
  .hero-actions { width: 100%; flex-direction: column; }
  .button { width: 100%; }
  .info-rail { margin-top: 34px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}
