:root {
  --blue: #0089ae;
  --blue-dark: #006f8c;
  --text: #303133;
  --muted: #777777;
  --border: #eaeaea;
  --bg-light: #f7f7f7;
  --dark: #1b1d1f;
  --red: #c92228;
  --font-head: 'Poppins', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  margin: 0 0 12px;
  line-height: 1.3;
}

p { margin: 0 0 16px; color: var(--muted); }

a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

ul { margin: 0; padding: 0; list-style: none; }

/* Header */

.site-header {
  border-bottom: 1px solid var(--border);
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}

.logo img { display: block; }

.main-nav ul {
  display: flex;
  gap: 32px;
}

.main-nav a {
  color: var(--text);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav a:hover { color: var(--blue); text-decoration: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--text);
}

/* Announcement */

.announcement {
  background: var(--bg-light);
  text-align: center;
  padding: 14px 20px;
  display: none;
}

.announcement p {
  margin: 0;
  color: var(--red);
  font-weight: 700;
}

/* Sections */

.section { padding: 72px 0; }

.section-head {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  margin-bottom: 40px;
  align-items: start;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  padding-top: 8px;
}

.section-head h2 {
  color: var(--blue);
  font-size: 32px;
  max-width: 680px;
}

/* Services */

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 60px;
  margin-bottom: 40px;
}

.service-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.check {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  margin-top: 4px;
  fill: none;
  stroke: var(--text);
  stroke-width: 1.5;
}

.service-item h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

.service-item p { margin-bottom: 8px; }

.callout {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 28px;
}

.callout-icon {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 1.5;
}

.callout h3 { font-size: 17px; }
.callout p:last-child { margin-bottom: 0; }

/* Hero photo */

.hero-photo {
  margin: 0;
  line-height: 0;
}

.hero-photo img {
  width: 100%;
  height: 480px;
  display: block;
  object-fit: cover;
}

/* Fiscal dates */

.fiscal-dates { background: #fff; }

.date-list {
  margin-bottom: 40px;
  border-top: 1px solid var(--border);
}

.date-list li {
  display: flex;
  gap: 24px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.date-list .date {
  flex: 0 0 70px;
  font-weight: 700;
}

.date-list .desc { color: var(--text); }
.date-list .desc strong { color: var(--blue); }

/* News */

.news-item h3 {
  color: var(--blue);
  font-size: 20px;
}

.news-item p strong { color: var(--text); }

.news-item ul {
  margin: 0 0 16px;
  padding-left: 20px;
  list-style: disc;
}

.news-item li {
  color: var(--muted);
  margin-bottom: 8px;
}

.news-list hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 40px 0;
}

/* Documents */

.documents-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.document-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.doc-icon {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  fill: none;
  stroke: var(--muted);
  stroke-width: 1.5;
}

.document-item h3 { font-size: 17px; margin-bottom: 4px; }

/* Footer */

.site-footer {
  background: var(--blue);
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 48px 0;
}

.footer-grid h4 {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  margin-bottom: 16px;
}

.footer-grid p { color: rgba(255,255,255,0.85); margin-bottom: 8px; }
.footer-grid a { color: #fff; }

.sub-footer {
  background: var(--dark);
}

.sub-footer .wrap {
  padding: 16px 24px;
  text-align: right;
}

.sub-footer p {
  margin: 0;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

.sub-footer a { color: rgba(255,255,255,0.85); }

/* Responsive */

@media (max-width: 800px) {
  .nav-toggle { display: flex; }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
  }

  .main-nav.open { display: block; }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 8px 24px 20px;
  }

  .main-nav li { padding: 10px 0; }

  .section-head {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .section-head h2 { font-size: 26px; }

  .services-grid,
  .documents-grid { grid-template-columns: 1fr; }

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

  .sub-footer .wrap { text-align: center; }

  /* Hero photo */


  /* Hero photo */

  .hero-photo img {
    width: 100%;
    height: 240px;
    display: block;
    object-fit: cover;
  }



}
