:root {
  color-scheme: light;
  --ink: #263642;
  --navy: #294a65;
  --teal: #6ec4c1;
  --accent: #327e80;
  --line: #d9e1e5;
  --muted: #53636e;
  --wash: #f3f6f7;
  font-family:
    -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic",
    Meiryo, sans-serif;
  color: var(--ink);
  background: #fff;
  font-size: 15px;
  line-height: 1.85;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
a {
  color: inherit;
  text-underline-offset: 0.3em;
}
a:hover {
  color: var(--accent);
}
a:focus-visible {
  outline: 3px solid #a97525;
  outline-offset: 5px;
}
h1,
h2,
h3,
p,
dl,
dd {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 600;
  line-height: 1.5;
}
h1 {
  font-size: 34px;
}
h2 {
  font-size: 26px;
}
h3 {
  font-size: 19px;
}
section[id] {
  scroll-margin-top: 24px;
}
.container {
  width: min(1120px, calc(100% - 80px));
  margin-inline: auto;
}
.site-header {
  background: white;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 98px;
  gap: 32px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 22px;
  text-decoration: none;
}
.wordmark {
  display: block;
  width: 154px;
  height: auto;
}
.brand-name {
  border-left: 1px solid var(--line);
  padding-left: 22px;
  font-size: 12px;
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14px;
  font-weight: 500;
}
.site-header nav a {
  text-decoration: none;
  padding: 10px 0;
}
.site-header nav a[aria-current="page"] {
  box-shadow: 0 2px var(--accent);
}
.site-header nav a:last-child {
  color: white;
  background: var(--navy);
  padding: 10px 20px;
}
.site-header nav a:last-child:hover {
  background: #365d7b;
}
.hero {
  background: var(--navy);
  border-bottom: 6px solid var(--teal);
  color: white;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  min-height: 362px;
}
.hero-copy {
  padding-block: 33px;
}
.company-label {
  font-size: 13px;
  letter-spacing: 0.04em;
}
.company-label span {
  margin-left: 14px;
  font-size: 11px;
  color: #d0dfe7;
}
.hero h1 {
  font-size: 42px;
  line-height: 1.55;
  letter-spacing: 0.04em;
  margin-top: 13px;
}
.hero-description {
  font-size: 14px;
  color: #edf4f7;
  margin-top: 14px;
  line-height: 1.9;
}
.hero-link {
  display: inline-flex;
  align-items: center;
  gap: 48px;
  border-bottom: 1px solid #afc5d4;
  margin-top: 16px;
  padding-bottom: 4px;
  color: white;
  text-decoration: none;
  font-size: 13px;
}
.hero-link:hover {
  color: var(--teal);
}
.hero-brand {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--teal);
  margin-left: 36px;
  border-inline: 1px solid #73cfcb;
}
.hero-brand img {
  width: 170px;
  height: 198px;
}
.hero-brand span {
  color: var(--navy);
  font-size: 35px;
  letter-spacing: 0.13em;
  font-weight: 300;
  line-height: 1.2;
  padding-left: 0.13em;
  margin-top: 5px;
}
.business-section {
  padding-block: 38px 34px;
}
.section-heading {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-bottom: 12px;
}
.section-heading h2 {
  white-space: nowrap;
  font-size: 25px;
}
.heading-rule {
  height: 1px;
  background: var(--line);
  flex: 1;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  font-size: 13px;
  text-decoration: none;
}
.text-link:hover {
  text-decoration: underline;
}
.business-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 46px;
}
.business-item {
  display: grid;
  grid-template-columns: 50px 1fr 18px;
  align-items: start;
  gap: 18px;
  text-decoration: none;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.service-icon {
  width: 48px;
  height: 48px;
  color: var(--accent);
}
.business-item h3 {
  font-size: 18px;
  color: var(--navy);
}
.business-item p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.8;
  margin-top: 8px;
}
.item-arrow {
  align-self: center;
  color: var(--accent);
}
.business-item:hover h3 {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.company-section {
  background: var(--wash);
}
.company-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
  padding-block: 34px;
}
.company-heading {
  padding-top: 7px;
}
.section-label {
  font-size: 12px;
  color: var(--muted);
}
.company-heading h2 {
  margin-top: 8px;
  margin-bottom: 23px;
}
.facts {
  border-top: 1px solid var(--line);
}
.facts > div {
  display: grid;
  grid-template-columns: 170px 1fr;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.facts dt {
  padding: 16px 20px;
  background: var(--wash);
  font-weight: 500;
}
.facts dd {
  padding: 16px 22px;
  overflow-wrap: anywhere;
}
.compact-facts {
  border-top: 0;
}
.compact-facts > div {
  grid-template-columns: 100px 1fr;
  font-size: 13px;
}
.compact-facts > div:last-child {
  border: 0;
}
.compact-facts dt,
.compact-facts dd {
  padding: 10px 0;
}
.contact-band {
  border-bottom: 1px solid var(--line);
}
.contact-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-block: 30px;
}
.contact-inner h2 {
  font-size: 22px;
}
.contact-inner p {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}
.button {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  min-width: 244px;
  padding: 14px 22px;
  border: 1px solid var(--navy);
  color: var(--navy);
  text-decoration: none;
  font-size: 14px;
}
.button:hover {
  background: var(--navy);
  color: white;
}
.site-footer {
  padding: 26px 0 20px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px 24px;
}
.footer-brand {
  display: inline-flex;
  gap: 20px;
  align-items: center;
  text-decoration: none;
  font-size: 12px;
}
.footer-brand img {
  display: block;
}
.site-footer p {
  margin-top: 10px;
  font-size: 11px;
  color: var(--muted);
}
.site-footer nav {
  display: flex;
  gap: 24px;
  font-size: 12px;
  align-items: center;
}
.site-footer nav a {
  text-decoration: none;
}
.site-footer small {
  grid-column: 1/-1;
  border-top: 1px solid var(--line);
  padding-top: 12px;
  font-size: 10px;
  color: var(--muted);
}
.page-heading {
  background: var(--navy);
  color: white;
  padding: 16px 0 28px;
  border-bottom: 4px solid var(--teal);
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  color: #dce8ef;
  margin-bottom: 18px;
}
.breadcrumb a:hover {
  color: white;
}
.page-heading h1 {
  font-size: 30px;
}
.lead {
  font-size: 14px;
  margin-top: 12px;
}
.business-details {
  padding-block: 16px 34px;
}
.business-detail {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  align-items: center;
  gap: 45px;
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}
.detail-heading {
  display: flex;
  align-items: center;
  gap: 24px;
}
.detail-heading .service-icon {
  flex-shrink: 0;
}
.detail-heading h2 {
  font-size: 20px;
}
.business-detail p {
  font-size: 14px;
}
.related {
  font-size: 13px;
  color: var(--muted);
  margin-top: 22px;
}
.facts-section {
  max-width: 920px;
  padding-block: 32px;
}
.contact-page {
  max-width: 920px;
  padding-block: 32px 40px;
}
.email-panel {
  border-left: 4px solid var(--teal);
  padding: 23px 28px;
  background: var(--wash);
}
.email-panel h2,
.contact-guidance h2 {
  font-size: 18px;
}
.email-address {
  display: inline-block;
  font-size: 28px;
  color: var(--navy);
  margin-top: 10px;
  overflow-wrap: anywhere;
}
.email-panel p {
  font-size: 14px;
  margin-top: 12px;
}
.contact-guidance {
  margin-top: 28px;
}
.contact-guidance p {
  font-size: 14px;
  margin-top: 8px;
}
.not-found {
  padding-block: 30px 45px;
}
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  transform: translateY(-200%);
  background: var(--navy);
  color: white;
  padding: 12px 22px;
  z-index: 10;
}
.skip-link:focus {
  transform: none;
}
@media (max-width: 1000px) {
  .container {
    width: calc(100% - 56px);
  }
  .brand-name {
    display: none;
  }
  .site-header nav {
    gap: 22px;
    font-size: 13px;
  }
  .hero h1 {
    font-size: 36px;
  }
  .business-grid {
    column-gap: 30px;
  }
  .business-item {
    grid-template-columns: 40px 1fr 14px;
    gap: 12px;
  }
  .business-item h3 {
    font-size: 16px;
  }
  .service-icon {
    width: 40px;
    height: 40px;
  }
  .company-inner {
    grid-template-columns: 1fr 2fr;
    gap: 28px;
  }
  .business-detail {
    grid-template-columns: 1fr 1.1fr;
    gap: 28px;
  }
  .detail-heading {
    gap: 14px;
  }
  .detail-heading h2 {
    font-size: 17px;
  }
}
@media (max-width: 650px) {
  .container {
    width: calc(100% - 40px);
  }
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding-block: 18px 12px;
  }
  .brand-name {
    display: block;
    padding-left: 16px;
    font-size: 11px;
  }
  .brand {
    gap: 16px;
  }
  .wordmark {
    width: 130px;
  }
  .site-header nav {
    width: 100%;
    gap: 10px;
    justify-content: space-between;
    font-size: 12px;
  }
  .site-header nav a {
    padding: 6px 0;
  }
  .site-header nav a:last-child {
    padding: 6px 10px;
  }
  .hero-inner {
    grid-template-columns: 1fr 96px;
    min-height: 0;
    gap: 12px;
  }
  .hero-copy {
    padding-block: 25px;
  }
  .company-label {
    font-size: 11px;
  }
  .company-label span {
    display: none;
  }
  .hero h1 {
    font-size: clamp(23px, 5.7vw, 34px);
    letter-spacing: 0;
    margin-top: 12px;
  }
  .hero-description {
    font-size: 12px;
    margin-top: 12px;
  }
  .hero-description br {
    display: none;
  }
  .hero-link {
    font-size: 12px;
    gap: 20px;
  }
  .hero-brand {
    margin-left: 0;
  }
  .hero-brand img {
    width: 80px;
    height: 94px;
  }
  .hero-brand span {
    font-size: 21px;
  }
  .business-section {
    padding-block: 26px;
  }
  .section-heading {
    gap: 16px;
    margin-bottom: 6px;
  }
  .section-heading h2 {
    font-size: 22px;
  }
  .text-link {
    font-size: 12px;
    gap: 10px;
  }
  .business-grid {
    grid-template-columns: 1fr;
  }
  .business-item {
    grid-template-columns: 40px 1fr 14px;
    gap: 16px;
    padding: 19px 0;
  }
  .business-item h3 {
    font-size: 17px;
  }
  .business-item p {
    font-size: 13px;
    margin-top: 6px;
  }
  .company-inner {
    display: block;
    padding-block: 26px;
  }
  .company-heading {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 16px;
    padding: 0;
  }
  .section-label {
    width: 100%;
    font-size: 11px;
  }
  .company-heading h2 {
    font-size: 22px;
    margin: 4px 0 0;
  }
  .compact-facts > div {
    grid-template-columns: 70px 1fr;
    font-size: 12px;
  }
  .contact-inner {
    display: block;
    padding-block: 25px;
  }
  .contact-inner h2 {
    font-size: 21px;
  }
  .contact-inner .button {
    margin-top: 16px;
    width: 100%;
  }
  .footer-inner {
    display: block;
  }
  .footer-brand {
    gap: 16px;
  }
  .footer-brand img {
    width: 112px;
    height: auto;
  }
  .site-footer nav {
    margin-block: 20px;
    gap: 22px;
    font-size: 11px;
  }
  .site-footer small {
    display: block;
  }
  .page-heading {
    padding-block: 12px 23px;
  }
  .page-heading h1 {
    font-size: 26px;
  }
  .breadcrumb {
    margin-bottom: 15px;
  }
  .business-details {
    padding-block: 6px 25px;
  }
  .business-detail {
    display: block;
    padding: 22px 0;
  }
  .detail-heading {
    margin-bottom: 12px;
  }
  .detail-heading h2 {
    font-size: 18px;
  }
  .business-detail p {
    font-size: 14px;
  }
  .facts-section {
    padding-block: 24px;
  }
  .facts > div {
    grid-template-columns: 80px 1fr;
    font-size: 12px;
  }
  .facts dt {
    padding: 12px 8px;
  }
  .facts dd {
    padding: 12px;
  }
  .compact-facts dt,
  .compact-facts dd {
    padding: 10px 0;
  }
  .contact-page {
    padding-block: 24px 30px;
  }
  .email-panel {
    padding: 20px 16px;
  }
  .email-panel h2,
  .contact-guidance h2 {
    font-size: 16px;
  }
  .email-address {
    font-size: 22px;
  }
  .email-panel p,
  .contact-guidance p {
    font-size: 13px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
}

/* Business detail pages */
.site-header nav a[aria-current="true"] {
  box-shadow: 0 2px var(--accent);
}
.business-index {
  padding-top: 8px;
}
.service-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 270px;
  gap: 64px;
  padding-block: 36px 44px;
}
.service-intro {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.service-intro .service-icon {
  flex-shrink: 0;
}
.service-intro p {
  font-size: 15px;
}
.service-scope {
  margin-top: 28px;
}
.service-content h2 {
  font-size: 20px;
  margin-bottom: 12px;
}
.service-scope ul {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
}
.service-scope li {
  position: relative;
  padding: 12px 8px 12px 22px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.service-scope li::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 23px;
  width: 5px;
  height: 5px;
  background: var(--accent);
}
.service-note {
  margin-top: 26px;
}
.service-note p {
  font-size: 14px;
}
.service-nav h2 {
  font-size: 17px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--navy);
}
.service-nav > a {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 10px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  font-size: 13px;
}
.service-nav > a[aria-current="page"] {
  background: var(--wash);
  color: var(--navy);
  font-weight: 600;
  border-left: 3px solid var(--accent);
  padding-left: 7px;
}
.service-nav > a:hover {
  text-decoration: underline;
}
.service-nav > .text-link {
  border-bottom: 0;
  padding-top: 18px;
}
@media (max-width: 1000px) {
  .service-layout {
    grid-template-columns: minmax(0, 1fr) 235px;
    gap: 30px;
  }
}
@media (max-width: 650px) {
  .service-layout {
    display: block;
    padding-block: 26px;
  }
  .service-intro {
    gap: 16px;
  }
  .service-intro p {
    font-size: 14px;
  }
  .service-content h2 {
    font-size: 18px;
  }
  .service-nav {
    margin-top: 32px;
  }
  .service-nav h2 {
    font-size: 17px;
  }
  .page-heading h1 {
    font-size: clamp(22px, 6vw, 26px);
  }
}

.business-grid-compact .business-item {
  align-items: center;
  padding-block: 18px;
}
.business-grid-compact .service-icon {
  width: 36px;
  height: 36px;
}

.service-section {
  margin-top: 30px;
}
.service-section > h2 {
  border-bottom: 2px solid var(--line);
  padding-bottom: 9px;
}
.service-section > p {
  font-size: 14px;
  line-height: 1.95;
}
.service-entries > div {
  padding-block: 15px;
  border-bottom: 1px solid var(--line);
}
.service-entries > div:first-child {
  padding-top: 2px;
}
.service-entries dt {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 5px;
}
.service-entries dd {
  font-size: 14px;
  line-height: 1.95;
}
.service-examples {
  margin: 0;
  padding-left: 1.4em;
  font-size: 14px;
}
.service-examples li {
  margin-block: 8px;
  padding-left: 4px;
}
.service-examples li::marker {
  color: var(--accent);
}
@media (max-width: 650px) {
  .service-section {
    margin-top: 25px;
  }
}

.business-item-static {
  align-items: center;
}
.business-item-static:hover h3 {
  text-decoration: none;
}
.service-nav-label {
  display: block;
  padding: 13px 10px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
