:root {
  --bg: #f5f7fa;
  --panel: #ffffff;
  --surface: #f0f3f8;
  --surface-2: #e8edf5;
  --border: #dde3ee;
  --border-2: #c8d0e0;
  --emerald: #059669;
  --emerald-deep: #047857;
  --emerald-dim: #d1fae5;
  --sky: #0284c7;
  --sky-dim: #e0f2fe;
  --rose: #e11d48;
  --rose-dim: #ffe4e6;
  --amber: #d97706;
  --amber-dim: #fef3c7;
  --text-1: #0f172a;
  --text-2: #1f2937;
  --text-3: #475569;
  --text-4: #94a3b8;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, .06), 0 1px 2px rgba(0, 0, 0, .04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, .07), 0 2px 6px rgba(0, 0, 0, .04);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, .09), 0 4px 12px rgba(0, 0, 0, .05);
  --ff-display: "Playfair Display", Georgia, serif;
  --ff-body: "Source Serif 4", Georgia, serif;
  --nav-h: 56px;
  --radius: 10px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  color: var(--text-1);
  font-family: var(--ff-body);
  font-size: 14px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: var(--panel);
}

.container,
.footer-inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.footer-links {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.nav-inner {
  width: 100%;
  height: var(--nav-h);
  padding: 0 max(24px, calc((100vw - 1180px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  background: var(--panel);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.brand {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-1);
  text-decoration: none;
}

.brand-mark {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 7px;
  color: #fff;
  background: linear-gradient(135deg, var(--emerald), var(--emerald-deep));
  box-shadow: 0 2px 8px rgba(5, 150, 105, .28);
  font-family: var(--ff-display);
  font-size: 17px;
  line-height: 1;
}

.brand-title {
  display: block;
  color: var(--text-1);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.brand-subtitle {
  display: block;
  margin-top: 1px;
  color: var(--text-4);
  font-size: 8.5px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a,
.mobile-panel a {
  display: flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 7px;
  color: var(--text-2);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  transition: color .16s, background .16s;
}

.nav-links a:hover,
.nav-links a.active,
.mobile-panel a:hover,
.mobile-panel a.active {
  color: var(--emerald-deep);
  background: var(--emerald-dim);
}

.hamburger {
  display: none;
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 17px;
  height: 1.8px;
  margin: 5px auto;
  border-radius: 2px;
  background: var(--text-1);
  transition: transform .24s ease, opacity .24s ease;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-panel {
  display: none;
  background: var(--panel);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  padding: 8px 20px 12px;
}

.mobile-panel.open {
  display: grid;
}

main {
  flex: 1;
  padding-top: var(--nav-h);
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  color: #f8fafc;
  background:
    radial-gradient(ellipse 60% 80% at 90% 50%, rgba(5, 150, 105, .18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(2, 132, 199, .1) 0%, transparent 50%),
    linear-gradient(135deg, #0f172a 0%, #1e3a5f 60%, #064e35 100%);
}

.hero {
  min-height: 430px;
  display: flex;
  align-items: center;
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .11;
  background-image:
    linear-gradient(30deg, rgba(110, 231, 183, .24) 1px, transparent 1px),
    linear-gradient(150deg, rgba(110, 231, 183, .16) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: 140px;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(5, 150, 105, .4), transparent);
}

.hero-content,
.page-hero .container {
  position: relative;
  z-index: 1;
}

.hero-content {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.eyebrow,
.section-kicker {
  margin: 0;
  color: var(--emerald);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.hero .eyebrow,
.page-hero .eyebrow {
  color: #6ee7b7;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--ff-display);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.12;
}

h1 {
  max-width: 900px;
  margin-top: 10px;
  color: #f8fafc;
  font-size: clamp(30px, 4.8vw, 52px);
}

.home-title span {
  display: block;
}

.home-title span:last-child {
  margin-top: 4px;
  font-size: .64em;
}

.hero-lede {
  max-width: 720px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .74);
  font-size: 15px;
}

.page-hero p:last-child {
  max-width: none;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .74);
  font-size: 15px;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.button,
.download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-height: 34px;
  padding: 6px 11px;
  border: 1px solid rgba(5, 150, 105, .2);
  border-radius: 5px;
  color: var(--emerald-deep);
  background: var(--emerald-dim);
  text-decoration: none;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background .16s, border-color .16s;
}

.button:hover,
.download-btn:hover {
  background: #a7f3d0;
  border-color: rgba(5, 150, 105, .38);
}

.button.secondary {
  color: var(--sky);
  background: var(--sky-dim);
  border-color: rgba(2, 132, 199, .18);
}

.download-btn {
  color: var(--rose);
  background: var(--rose-dim);
  border-color: rgba(225, 29, 72, .18);
}

.download-btn svg,
.button svg {
  width: 12px;
  height: 12px;
}

.page-hero {
  padding: 44px 0 36px;
}

.page-hero h1 {
  font-size: clamp(28px, 4vw, 46px);
}

@media (min-width: 901px) {
  .page-hero h1 {
    max-width: none;
    white-space: nowrap;
  }
}

.section {
  padding: 34px 0;
}

.section.compact {
  padding-top: 12px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.section-title {
  margin-top: 5px;
  color: var(--text-1);
  font-size: clamp(22px, 2.7vw, 32px);
}

.section-note {
  max-width: 800px;
  margin: 5px 0 0;
  color: var(--text-3);
  font-size: 13px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

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

.card,
.table-card,
.policy-group,
.notice-panel {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.card,
.notice-panel {
  padding: 20px;
}

.card.dark {
  color: #fff;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 70%, #064e35 100%);
  border-color: rgba(255, 255, 255, .12);
}

.card h3,
.policy-group h3,
.notice-panel h3 {
  color: var(--text-1);
  font-size: 20px;
}

.card.dark h3 {
  color: #fff;
}

.card p,
.card li,
.notice-panel p {
  color: var(--text-2);
}

.card.dark p,
.card.dark li {
  color: rgba(255, 255, 255, .72);
}

.meta-list {
  display: grid;
  gap: 0;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.meta-list li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.meta-list li:last-child {
  border-bottom: 0;
}

.meta-list span:first-child {
  color: var(--text-3);
}

.meta-list strong {
  color: var(--text-1);
  text-align: right;
}

.card.dark .meta-list li {
  border-bottom-color: rgba(255, 255, 255, .14);
}

.card.dark .meta-list span:first-child {
  color: rgba(255, 255, 255, .6);
}

.card.dark .meta-list strong {
  color: #fff;
}

.table-card {
  overflow: hidden;
}

.table-title {
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.table-title h3 {
  color: var(--text-1);
  font-size: 18px;
}

.table-title h3::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 15px;
  margin-right: 8px;
  border-radius: 2px;
  background: var(--emerald);
  vertical-align: -2px;
}

.table-title span {
  color: var(--text-4);
  font-size: 10px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
}

th,
td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: middle;
}

th {
  color: var(--text-4);
  background: var(--surface);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}

td {
  color: var(--text-2);
  font-size: 13px;
}

tr:last-child td {
  border-bottom: 0;
}

.registration-table tbody th {
  width: 280px;
  color: var(--text-1);
  background: linear-gradient(90deg, rgba(5, 150, 105, .1), rgba(224, 242, 254, .45));
  border-right: 1px solid var(--border);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
}

.registration-table tbody th::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--emerald);
  vertical-align: 1px;
}

.center,
.doc-table th:last-child,
.doc-table td:last-child {
  text-align: center;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border: 1px solid rgba(5, 150, 105, .22);
  border-radius: 20px;
  color: var(--emerald-deep);
  background: var(--emerald-dim);
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.person-card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.avatar {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(5, 150, 105, .22);
  border-radius: 7px;
  color: var(--emerald-deep);
  background: var(--emerald-dim);
  font-family: var(--ff-display);
  font-size: 17px;
}

.person-name {
  color: var(--text-1);
  font-weight: 700;
}

.person-role {
  margin-bottom: 7px;
  color: var(--text-2);
}

.policy-group {
  overflow: hidden;
}

.policy-head {
  padding: 14px 18px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.policy-head h3 {
  font-size: 18px;
}

.policy-head p {
  margin: 4px 0 0;
  color: var(--text-3);
  font-size: 13px;
}

.policy-list {
  display: grid;
}

.policy-item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-top: 1px solid var(--border);
}

.policy-item:first-child {
  border-top: 0;
}

.policy-item strong {
  color: var(--text-1);
}

.download-btn svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.timeline {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.timeline article {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
}

.step {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  color: var(--emerald-deep);
  background: var(--emerald-dim);
  font-weight: 700;
}

.contact-row {
  display: grid;
  grid-template-columns: 126px 1fr;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
}

.contact-row:last-of-type {
  border-bottom: 0;
}

.contact-row span {
  color: var(--text-3);
}

.contact-row strong {
  color: var(--text-1);
}

.site-footer {
  margin-top: auto;
  color: rgba(255, 255, 255, .72);
  background:
    radial-gradient(ellipse 60% 80% at 90% 50%, rgba(5, 150, 105, .18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(2, 132, 199, .1) 0%, transparent 50%),
    linear-gradient(135deg, #0f172a 0%, #1e3a5f 60%, #064e35 100%);
  border-top: 3px solid #c9a84c;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
  padding: 48px 0 36px;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.footer-col-heading {
  color: #c9a84c;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-brand {
  color: #fff;
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 4px;
}

.footer-est {
  color: #c9a84c;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.footer-desc {
  margin: 0;
  color: rgba(255, 255, 255, .58);
  font-size: 13px;
  line-height: 1.65;
}

.footer-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.footer-nav a {
  color: rgba(255, 255, 255, .65);
  text-decoration: none;
  font-size: 13.5px;
  transition: color .16s;
}

.footer-nav a:hover {
  color: #6ee7b7;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.footer-bottom-inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  color: rgba(255, 255, 255, .38);
  font-family: monospace;
  font-size: 10px;
  letter-spacing: .03em;
}

.footer-bottom-inner a {
  color: #c9a84c;
  text-decoration: none;
}

.footer-bottom-inner a:hover {
  color: #e8c46a;
}

.fade-in {
  opacity: 0;
  transform: translateY(10px);
}

.fade-in.visible {
  animation: fadeInUp .32s ease forwards;
}

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

.back-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 9px;
  color: var(--emerald-deep);
  background: var(--panel);
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  cursor: pointer;
  transition: opacity .2s;
}

.back-top.visible {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 900px) {
  main {
    padding-top: var(--nav-h);
  }

  .brand-title {
    white-space: normal;
  }

  .brand-subtitle,
  .nav-links {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .hero {
    min-height: 390px;
  }

  .hero::after,
  .page-hero::after {
    right: 44px;
  }

  .grid,
  .grid.two,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

@media (max-width: 620px) {
  .container,
  .footer-inner,
  .hero-content {
    width: min(100% - 28px, 1180px);
  }

  .nav-inner {
    padding-inline: 14px;
  }

  .section {
    padding: 28px 0;
  }

  .page-hero {
    padding: 36px 0 30px;
  }

  .hero-actions,
  .policy-item,
  .meta-list li {
    display: grid;
  }

  .button,
  .download-btn {
    width: 100%;
  }

  .contact-row {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  table {
    min-width: 540px;
  }
}

.map-placeholder {
    margin-top: 18px;
    border-radius: 7px;
    overflow: hidden;
    border: 1px solid var(--border-2);
    min-height: 350px;
}

.map-placeholder iframe {
    width: 100%;
    height: 350px;
    border: 0;
    display: block;
}

.highlighted-note{
    margin: 20px 0;
    padding: 12px 16px;
    background: #fff8db;      /* Light Yellow */
    border: 1px solid #f2d675;
    border-left: 4px solid #eab308;
    border-radius: 8px;
    color: #5b4a00;
    font-size: 14px;
    line-height: 1.6;
}

a[href^="tel:"],
a[href^="mailto:"] {
    text-decoration: none;
    color: inherit;
}

a[href^="tel:"]:hover,
a[href^="mailto:"]:hover,
a[href^="tel:"]:focus,
a[href^="mailto:"]:focus {
    text-decoration: none;
    color: inherit;
}