* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #12241F;
  background-color: #F4FAF8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,
h2 {
  font-family: Georgia, Cambria, "Times New Roman", Times, serif;
  color: #12241F;
  font-weight: 700;
  line-height: 1.18;
}

h3 {
  color: #12241F;
  font-weight: 800;
}

a {
  color: #156E6E;
}

/* ---------- Crumb-trail navigation ---------- */
.crumb-nav {
  position: sticky;
  top: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background-color: #F4FAF8;
  border-bottom: 3px solid #156E6E;
  padding: 18px 48px;
  transition: box-shadow 0.25s ease;
}

.crumb-nav.is-scrolled {
  box-shadow: 0 6px 16px #D3E3DC;
}

.crumb-nav .brand {
  font-weight: 800;
  font-size: 21px;
  letter-spacing: 3px;
  color: #12241F;
  text-decoration: none;
  white-space: nowrap;
}

.crumb-links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.crumb-link {
  color: #12241F;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  padding-bottom: 5px;
  letter-spacing: 0.3px;
}

.crumb-link:hover {
  color: #156E6E;
}

.crumb-link.is-active {
  color: #156E6E;
  border-bottom: 3px solid #156E6E;
}

.crumb-sep {
  color: #156E6E;
  font-weight: 700;
  font-size: 15px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 10px;
  background-color: #156E6E;
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 3px;
  margin: 3px 0;
  border-radius: 2px;
  background-color: #FFFFFF;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  background-color: #156E6E;
  color: #FFFFFF;
}

.btn-primary:hover {
  background-color: #0F5757;
}

.btn-outline {
  background-color: #FFFFFF;
  color: #12241F;
  border: 2px solid #12241F;
}

.btn-outline:hover {
  background-color: #12241F;
  color: #FFFFFF;
}

.btn-dark {
  background-color: #12241F;
  color: #FFFFFF;
}

.btn-dark:hover {
  background-color: #0B1612;
}

/* ---------- Mirrored split hero ---------- */
.mirror-hero {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 56px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 84px 48px 76px;
}

.harbor-scene {
  position: relative;
  width: 100%;
  height: 460px;
  background-color: #CBE8E0;
  border-radius: 28px;
  overflow: hidden;
}

.harbor-sun {
  position: absolute;
  top: 46px;
  right: 46px;
  width: 58px;
  height: 58px;
  background-color: #156E6E;
}

.harbor-bay {
  position: absolute;
  bottom: -190px;
  left: 50%;
  transform: translateX(-50%);
  width: 760px;
  height: 760px;
  border-radius: 50%;
  background-color: #156E6E;
}

.harbor-sailboat {
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 150px;
}

.sail {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 34px;
  width: 0;
  height: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-bottom: 108px solid #CBE8E0;
}

.hull {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 22px;
  width: 124px;
  height: 26px;
  border-radius: 5px;
  background-color: #CBE8E0;
}

.hero-copy {
  text-align: left;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 22px;
  padding: 9px 20px;
  border-radius: 999px;
  background-color: #156E6E;
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.hero-copy h1 {
  font-size: 54px;
  margin: 0 0 24px;
  color: #12241F;
}

.hero-sub {
  font-size: 19px;
  line-height: 1.75;
  color: #12241F;
  max-width: 640px;
  margin: 0 0 8px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

/* ---------- Vertical timeline ---------- */
.timeline-section {
  background-color: #FFFFFF;
  padding: 96px 48px;
}

.section-head {
  max-width: 880px;
  margin: 0 auto 64px;
  text-align: center;
}

.section-head .eyebrow {
  margin-bottom: 18px;
}

.section-head h2 {
  font-size: 42px;
  margin: 0 0 20px;
}

.section-lead {
  font-size: 18px;
  color: #12241F;
  max-width: 760px;
  margin: 0 auto;
}

.timeline {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 33px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background-color: #156E6E;
}

.timeline-item {
  position: relative;
  padding: 0 0 60px 96px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-node {
  position: absolute;
  left: 0;
  top: 0;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background-color: #156E6E;
  border: 8px solid #CBE8E0;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.2;
}

.timeline-item h3 {
  font-size: 24px;
  margin: 6px 0 12px;
}

.timeline-item p {
  color: #12241F;
  margin: 0;
}

/* ---------- Metric band ---------- */
.metric-band {
  background-color: #CBE8E0;
  padding: 80px 48px;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1120px;
  margin: 0 auto;
}

.metric-item {
  text-align: center;
  padding: 8px 26px;
}

.metric-item + .metric-item {
  border-left: 2px solid #156E6E;
}

.metric-number {
  font-family: Georgia, Cambria, "Times New Roman", Times, serif;
  font-size: 54px;
  font-weight: 700;
  color: #156E6E;
}

.metric-suffix {
  font-family: Georgia, Cambria, "Times New Roman", Times, serif;
  font-size: 40px;
  font-weight: 700;
  color: #156E6E;
}

.metric-label {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #12241F;
}

.metric-note {
  margin: 10px auto 0;
  max-width: 260px;
  font-size: 15px;
  color: #12241F;
}

/* ---------- CTA band ---------- */
.cta-band {
  background-color: #156E6E;
  text-align: center;
  padding: 96px 48px;
}

.cta-band h2 {
  font-size: 44px;
  color: #FFFFFF;
  max-width: 760px;
  margin: 0 auto 18px;
}

.cta-band p {
  font-size: 18px;
  color: #FFFFFF;
  max-width: 620px;
  margin: 0 auto 36px;
}

/* ---------- Centered stack footer ---------- */
.stack-footer {
  background-color: #12241F;
  text-align: center;
  padding: 72px 24px 44px;
}

.stack-footer .brand {
  display: inline-block;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 4px;
  color: #CBE8E0;
  text-decoration: none;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 26px;
  margin: 28px 0 24px;
}

.footer-links a {
  color: #CBE8E0;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
}

.footer-links a:hover {
  color: #FFFFFF;
}

.footer-legal {
  margin: 0 auto;
  max-width: 860px;
  color: #CBE8E0;
  font-size: 14px;
}

.footer-legal a {
  color: #FFFFFF;
  text-decoration: none;
}

.footer-legal a:hover {
  text-decoration: underline;
}

/* ---------- Scroll reveal ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Secondary page hero ---------- */
.page-hero {
  background-color: #CBE8E0;
  padding: 84px 48px 72px;
  border-bottom: 3px solid #156E6E;
}

.page-hero-inner {
  max-width: 960px;
  margin: 0 auto;
}

.page-hero h1 {
  font-size: 46px;
  margin: 0 0 22px;
}

.page-intro {
  font-size: 19px;
  max-width: 800px;
  color: #12241F;
  margin: 0;
}

/* ---------- Services list ---------- */
.services-list {
  background-color: #FFFFFF;
  padding: 88px 48px;
}

.services-list-inner {
  max-width: 960px;
  margin: 0 auto;
}

.service-block {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 32px;
  padding: 34px 0;
  border-top: 2px solid #D9E7E1;
}

.service-block:first-child {
  border-top: 0;
}

.service-index {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  border-radius: 18px;
  background-color: #CBE8E0;
  color: #156E6E;
  font-family: Georgia, Cambria, "Times New Roman", Times, serif;
  font-size: 30px;
  font-weight: 700;
}

.service-block h2 {
  font-size: 30px;
  margin: 2px 0 14px;
}

.service-block p {
  color: #12241F;
  margin: 0;
}

/* ---------- Process overview ---------- */
.process-section {
  background-color: #F4FAF8;
  padding: 88px 48px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
  max-width: 1120px;
  margin: 0 auto;
}

.process-step {
  background-color: #FFFFFF;
  border: 2px solid #156E6E;
  border-radius: 18px;
  padding: 28px 24px;
}

.process-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: #156E6E;
  color: #FFFFFF;
  font-weight: 800;
  margin-bottom: 16px;
}

.process-step h3 {
  font-size: 18px;
  margin: 0 0 10px;
}

.process-step p {
  font-size: 15px;
  color: #12241F;
  margin: 0;
}

/* ---------- Contact page ---------- */
.contact-section {
  padding: 88px 48px;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  max-width: 1080px;
  margin: 0 auto;
}

.contact-panel {
  background-color: #CBE8E0;
  border-radius: 22px;
  padding: 40px 36px;
}

.contact-panel h2 {
  font-size: 30px;
  margin: 0 0 22px;
}

.contact-panel-item {
  margin-bottom: 26px;
}

.contact-panel-label {
  display: block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #156E6E;
  margin-bottom: 6px;
}

.contact-panel-item p {
  margin: 0;
  color: #12241F;
}

.contact-panel-item a {
  color: #12241F;
  text-decoration: none;
  font-weight: 700;
}

.contact-form-card {
  background-color: #FFFFFF;
  border: 2px solid #D9E7E1;
  border-radius: 22px;
  padding: 40px 36px;
}

.contact-form-card h2 {
  font-size: 30px;
  margin: 0 0 8px;
}

.form-sub {
  margin: 0 0 28px;
  color: #12241F;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #12241F;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #C5D9D2;
  border-radius: 10px;
  font-size: 16px;
  font-family: inherit;
  color: #12241F;
  background-color: #FFFFFF;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #156E6E;
}

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

.form-status {
  display: none;
  margin: 0 0 18px;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
}

.form-status.is-success {
  display: block;
  background-color: #CBE8E0;
  color: #12241F;
}

.form-status.is-error {
  display: block;
  background-color: #12241F;
  color: #FFFFFF;
}

/* ---------- FAQ accordion ---------- */
.faq-section {
  background-color: #FFFFFF;
  padding: 88px 48px 96px;
}

.faq-inner {
  max-width: 820px;
  margin: 0 auto;
}

.faq-inner .section-head {
  margin-bottom: 48px;
}

.faq-item {
  border: 2px solid #D9E7E1;
  border-radius: 14px;
  margin-bottom: 18px;
  background-color: #F4FAF8;
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  border: 0;
  background-color: transparent;
  font-size: 17px;
  font-weight: 700;
  color: #12241F;
  cursor: pointer;
}

.faq-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #156E6E;
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 24px 24px;
  color: #12241F;
}

.faq-item.is-open .faq-answer {
  max-height: 320px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .mirror-hero {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .harbor-scene {
    height: 380px;
    max-width: 620px;
  }

  .hero-copy h1 {
    font-size: 44px;
  }

  .metric-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 0;
  }

  .metric-item + .metric-item {
    border-left: 0;
  }

  .metric-item:nth-child(3),
  .metric-item:nth-child(4) {
    border-top: 2px solid #156E6E;
    padding-top: 32px;
  }

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

  .contact-wrap {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .crumb-nav {
    padding: 14px 22px;
  }

  .crumb-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    background-color: #F4FAF8;
    border-bottom: 3px solid #156E6E;
    padding: 14px 22px 22px;
  }

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

  .crumb-sep {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .mirror-hero {
    padding: 56px 22px 56px;
  }

  .harbor-scene {
    height: 320px;
  }

  .hero-copy h1 {
    font-size: 38px;
  }

  .hero-sub {
    font-size: 17px;
  }

  .timeline-section,
  .services-list,
  .process-section,
  .contact-section,
  .faq-section {
    padding-left: 22px;
    padding-right: 22px;
  }

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

  .cta-band h2 {
    font-size: 32px;
  }

  .timeline-item {
    padding-left: 76px;
  }

  .timeline-node {
    width: 56px;
    height: 56px;
    font-size: 11px;
  }

  .timeline::before {
    left: 27px;
  }

  .service-block {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .contact-panel,
  .contact-form-card {
    padding: 28px 24px;
  }
}

@media (max-width: 620px) {
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .metric-item + .metric-item {
    border-left: 0;
    border-top: 2px solid #156E6E;
    padding-top: 32px;
  }

  .metric-item:nth-child(3),
  .metric-item:nth-child(4) {
    border-top: 2px solid #156E6E;
    padding-top: 32px;
  }

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

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-ctas .btn {
    text-align: center;
  }
}
