* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #F5FAF7;
  color: #13251D;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  color: #1F7A5C;
}

img {
  max-width: 100%;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ============ RIGHT VERTICAL RAIL NAV ============ */
.rail-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 90px;
  background: #F5FAF7;
  border-left: 1px solid #1F7A5C;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 0 20px;
}

.rail-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
  line-height: 1;
  color: #13251D;
  text-decoration: none;
  text-transform: uppercase;
  margin-bottom: 42px;
}

.rail-brand span {
  display: block;
}

.rail-brand:hover {
  color: #1F7A5C;
}

.rail-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.rail-menu li {
  margin: 0;
}

.rail-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 11px 6px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #13251D;
  text-decoration: none;
  position: relative;
}

.rail-link::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #1F7A5C;
  flex: none;
}

.rail-link:hover {
  color: #1F7A5C;
}

.rail-link.active {
  box-shadow: inset 4px 0 0 #1F7A5C;
  color: #1F7A5C;
}

.rail-link.active::before {
  background: #13251D;
}

.rail-toggle {
  display: none;
}

/* ============ PAGE SHELL (offset left of rail) ============ */
.page-shell {
  margin-right: 90px;
}

/* ============ SCROLL REVEAL ============ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: none;
}

/* ============ BANNER STRIP HERO ============ */
.banner-hero {
  background: #F5FAF7;
}

.banner-strip {
  height: 60px;
  background: #1F7A5C;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  overflow: hidden;
  padding: 0 24px;
}

.coin {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #CFE6D8;
  position: relative;
  flex: none;
}

.coin::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  background: #13251D;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.banner-hero .container {
  padding: 64px 32px 80px;
  max-width: 1080px;
  margin: 0 auto;
}

.hero-eyebrow {
  display: inline-block;
  background: #1F7A5C;
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 9px 18px;
  margin: 0 0 26px;
}

.hero-headline {
  margin: 0;
  font-size: 54px;
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -1px;
  color: #13251D;
}

.hero-headline span {
  display: block;
}

.hero-sub {
  margin: 22px 0 0;
  font-size: 19px;
  line-height: 1.75;
  color: #13251D;
  max-width: 62ch;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-block;
  padding: 15px 28px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  line-height: 1.2;
}

.btn-primary {
  background: #1F7A5C;
  color: #FFFFFF;
}

.btn-primary:hover {
  background: #166649;
}

.btn-outline {
  border: 2px solid #13251D;
  color: #13251D;
  background: #F5FAF7;
}

.btn-outline:hover {
  background: #13251D;
  color: #F5FAF7;
}

.btn-ink {
  background: #13251D;
  color: #FFFFFF;
}

.btn-ink:hover {
  background: #2A4036;
}

/* ============ SECTION SHARED ============ */
.kicker {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1F7A5C;
  display: flex;
  align-items: center;
  gap: 10px;
}

.kicker::before {
  content: "";
  width: 11px;
  height: 11px;
  background: #1F7A5C;
  flex: none;
}

h2 {
  margin: 0 0 16px;
  font-size: 34px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: #13251D;
}

.lead {
  font-size: 19px;
  line-height: 1.75;
  color: #13251D;
  margin: 0 0 18px;
  max-width: 74ch;
}

.section-intro {
  font-size: 17px;
  line-height: 1.75;
  color: #13251D;
  margin: 0 0 34px;
  max-width: 70ch;
}

/* ============ INTRO SECTION ============ */
.intro-section {
  background: #F5FAF7;
  padding: 76px 0 48px;
}

.intro-section p {
  font-size: 17px;
  line-height: 1.8;
  color: #13251D;
  margin: 0 0 18px;
  max-width: 80ch;
}

/* ============ CARD GRID SECTION ============ */
.card-grid-section {
  background: #FFFFFF;
  padding: 72px 0 84px;
}

.card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.card {
  background: #F5FAF7;
  border-top: 3px solid #1F7A5C;
  padding: 30px 30px 32px;
  box-shadow: 0 8px 22px rgba(19, 37, 29, 0.06);
}

.card-icon {
  display: block;
  width: 18px;
  height: 18px;
  background: #1F7A5C;
  margin-bottom: 20px;
}

.card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.3px;
  color: #13251D;
}

.card p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.78;
  color: #13251D;
}

/* ============ METRIC BAND ============ */
.metric-band {
  background: #CFE6D8;
  padding: 54px 0;
}

.metric-grid {
  display: flex;
  align-items: center;
}

.metric {
  flex: 1;
  text-align: center;
  padding: 0 22px;
  border-left: 1px solid #4E9371;
}

.metric:first-child {
  border-left: none;
}

.metric-num {
  display: block;
  font-size: 52px;
  font-weight: 900;
  letter-spacing: -1px;
  color: #1F7A5C;
  line-height: 1;
}

.metric-label {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #13251D;
}

/* ============ APPROACH SECTION ============ */
.approach-section {
  background: #F5FAF7;
  padding: 76px 0 84px;
}

.approach-section p {
  font-size: 17px;
  line-height: 1.8;
  color: #13251D;
  margin: 0 0 18px;
  max-width: 80ch;
}

/* ============ CTA BAND ============ */
.cta-band {
  background: #1F7A5C;
  padding: 66px 0;
  text-align: center;
}

.cta-band h2 {
  color: #FFFFFF;
  font-size: 32px;
  margin: 0 auto 14px;
  max-width: 24ch;
}

.cta-band p {
  color: #FFFFFF;
  font-size: 18px;
  line-height: 1.7;
  margin: 0 auto 28px;
  max-width: 58ch;
}

/* ============ FOUR COLUMN FOOTER ============ */
.four-col-footer {
  background: #13251D;
  color: #E6F0EA;
  padding: 56px 0 30px;
}

.footer-grid {
  display: flex;
  gap: 0;
  padding-bottom: 36px;
}

.footer-col {
  flex: 1;
  border-left: 1px solid #1F7A5C;
  padding-left: 36px;
}

.footer-col:first-child {
  border-left: none;
  padding-left: 0;
}

.footer-col-brand {
  flex: 2.2;
  padding-right: 40px;
}

.footer-wordmark {
  margin: 0 0 14px;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 4px;
  color: #CFE6D8;
}

.footer-blurb {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: #E6F0EA;
  max-width: 38ch;
}

.footer-col-title {
  margin: 4px 0 16px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #CFE6D8;
}

.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-list li {
  margin-bottom: 10px;
}

.footer-col a {
  color: #E6F0EA;
  text-decoration: none;
}

.footer-col a:hover {
  color: #CFE6D8;
  text-decoration: underline;
}

.footer-email,
.footer-phone {
  margin: 0 0 8px;
  font-size: 15px;
  color: #E6F0EA;
}

.footer-addr {
  margin: 14px 0 0;
  font-size: 14px;
  line-height: 1.6;
  color: #C8DCD0;
}

.footer-legal {
  margin: 0;
  padding-top: 26px;
  border-top: 1px solid #1F7A5C;
  text-align: center;
  font-size: 13px;
  color: #C8DCD0;
}

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

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

/* ============ SECONDARY PAGE HEAD ============ */
.page-head {
  background: #F5FAF7;
  padding: 58px 0 54px;
}

.page-title {
  margin: 0 0 16px;
  font-size: 44px;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: #13251D;
}

.page-sub {
  margin: 0;
  font-size: 19px;
  line-height: 1.75;
  color: #13251D;
  max-width: 70ch;
}

/* ============ SERVICES PAGE ============ */
.services-page .page-head {
  border-bottom: 3px solid #1F7A5C;
}

.service-section {
  background: #F5FAF7;
  padding: 52px 0;
}

.service-section.alt {
  background: #FFFFFF;
}

.service-block {
  border-left: 4px solid #1F7A5C;
  padding-left: 28px;
}

.service-block h2 {
  font-size: 28px;
  margin-bottom: 14px;
}

.service-block p {
  font-size: 16.5px;
  line-height: 1.8;
  color: #13251D;
  margin: 0 0 14px;
  max-width: 78ch;
}

.process-section {
  background: #FFFFFF;
  padding: 72px 0;
}

.process-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.process-list li {
  display: flex;
  gap: 22px;
  padding: 22px 0;
  border-bottom: 1px solid #CFE6D8;
  align-items: flex-start;
}

.process-list li:last-child {
  border-bottom: none;
}

.process-step {
  flex: none;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1F7A5C;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 900;
}

.process-body {
  flex: 1;
}

.process-body h3 {
  margin: 0 0 6px;
  font-size: 20px;
  font-weight: 900;
  color: #13251D;
}

.process-body p {
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
  color: #13251D;
}

/* ============ CONTACT PAGE ============ */
.contact-page .page-head {
  border-bottom: 3px solid #1F7A5C;
}

.contact-section {
  background: #F5FAF7;
  padding: 72px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 34px;
  align-items: start;
}

.contact-form-card {
  background: #FFFFFF;
  border-top: 3px solid #1F7A5C;
  padding: 32px 30px;
  box-shadow: 0 8px 22px rgba(19, 37, 29, 0.06);
}

.contact-form-card h3 {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 900;
  color: #13251D;
}

.contact-form-card > p {
  margin: 0 0 22px;
  font-size: 16px;
  color: #13251D;
}

.contact-form .field {
  margin-bottom: 18px;
}

.contact-form label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #13251D;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #BFD6C8;
  background: #F5FAF7;
  color: #13251D;
  font-size: 16px;
  font-family: inherit;
  border-radius: 0;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid #1F7A5C;
  outline-offset: 1px;
  border-color: #1F7A5C;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.form-status {
  display: none;
  margin-top: 16px;
  padding: 12px 16px;
  background: #CFE6D8;
  color: #13251D;
  font-size: 15px;
  font-weight: 700;
}

.contact-info-card {
  background: #CFE6D8;
  padding: 30px 28px;
}

.contact-info-card h3 {
  margin: 0 0 18px;
  font-size: 22px;
  font-weight: 900;
  color: #13251D;
}

.contact-detail {
  margin: 0 0 20px;
  color: #13251D;
  font-size: 16px;
}

.contact-detail .cd-label {
  display: block;
  margin-bottom: 4px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #1F7A5C;
}

.contact-detail a {
  color: #13251D;
  font-weight: 700;
  text-decoration: underline;
}

.contact-detail .cd-addr {
  line-height: 1.7;
  margin: 0;
}

.hours-section {
  background: #FFFFFF;
  padding: 64px 0;
}

.hours-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 520px;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid #CFE6D8;
  font-size: 16px;
  color: #13251D;
}

.hours-list li:last-child {
  border-bottom: none;
}

.hours-list .h-day {
  font-weight: 800;
}

.hours-list .h-time {
  font-weight: 700;
  color: #1F7A5C;
}

.faq-section {
  background: #F5FAF7;
  padding: 72px 0 84px;
}

.faq-list {
  margin: 0;
  padding: 0;
}

.faq-item {
  background: #FFFFFF;
  border-top: 1px solid #1F7A5C;
  margin-bottom: 14px;
}

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 24px;
  font-size: 17px;
  font-weight: 800;
  color: #13251D;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: inherit;
}

.faq-q::after {
  content: "+";
  font-size: 22px;
  font-weight: 900;
  color: #1F7A5C;
  flex: none;
}

.faq-item.open .faq-q::after {
  content: "\2212";
}

.faq-a {
  display: none;
  padding: 0 24px 20px;
  font-size: 16px;
  line-height: 1.75;
  color: #13251D;
}

.faq-a p {
  margin: 0;
}

.faq-item.open .faq-a {
  display: block;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .rail-nav {
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -8px 0 20px rgba(19, 37, 29, 0.12);
  }

  .rail-nav.open {
    transform: translateX(0);
  }

  .rail-toggle {
    display: flex;
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 1100;
    width: 46px;
    height: 46px;
    background: #1F7A5C;
    border: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
  }

  .rail-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #FFFFFF;
  }

  .page-shell {
    margin-right: 0;
  }

  .banner-strip {
    gap: 18px;
  }

  .hero-headline {
    font-size: 40px;
  }

  .banner-hero .container {
    padding: 48px 24px 60px;
  }

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

  .metric-grid {
    flex-wrap: wrap;
  }

  .metric {
    flex: 1 1 46%;
    padding: 18px 10px;
    border-left: none;
    border-top: 1px solid #4E9371;
  }

  .metric:first-child,
  .metric:nth-child(2) {
    border-top: none;
  }

  .metric:nth-child(even) {
    border-left: 1px solid #4E9371;
  }

  .footer-grid {
    flex-direction: column;
    gap: 30px;
  }

  .footer-col {
    border-left: none;
    padding-left: 0;
  }

  .footer-col-brand {
    padding-right: 0;
  }

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

  .container {
    padding: 0 24px;
  }

  h2 {
    font-size: 28px;
  }

  .page-title {
    font-size: 34px;
  }
}

@media (max-width: 560px) {
  .hero-headline {
    font-size: 34px;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }

  .banner-strip {
    gap: 12px;
  }

  .coin {
    width: 20px;
    height: 20px;
  }
}
