/* Shared public pages, navigation, and the expanded site footer. */
[hidden] {
  display: none !important;
}
.main-nav a[aria-current="page"] {
  color: var(--blue);
}
.expanded-footer {
  padding: 66px 0 0;
  border-top: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.8fr 1.05fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-identity > p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.8;
  margin: 19px 0 16px;
}
.footer-email {
  font-size: 0.85rem;
  overflow-wrap: anywhere;
}
.footer-top nav h2 {
  font-size: 0.76rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  margin: 7px 0 18px;
}
.footer-top nav a {
  display: block;
  width: fit-content;
  margin: 9px 0;
  color: var(--muted);
  font-size: 0.81rem;
  line-height: 1.7;
}
.expanded-footer a:hover {
  color: var(--blue);
}
.footer-company {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  border-block: 1px solid #edf0f3;
  font-size: 0.76rem;
  color: var(--muted);
}
.footer-company p:first-child {
  color: var(--ink);
}
.footer-company span {
  display: inline-block;
  margin-left: 24px;
  color: var(--muted);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  color: var(--muted);
  font-size: 0.72rem;
}
.footer-bottom a {
  white-space: nowrap;
}
.landing-page .service-grid-expanded {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.landing-page .service-grid-expanded .service {
  position: relative;
  min-height: 360px;
  padding: 34px;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.service-detail::after {
  content: "";
  position: absolute;
  inset: 0;
}
.service:has(.service-detail:hover),
.service:focus-within {
  border-color: #8caad8;
  box-shadow: 0 8px 26px #142b4610;
}
.service .service-detail:focus-visible {
  outline-offset: 6px;
}
.service-grid-expanded .service > p {
  max-width: 46ch;
}
.home-faq {
  background: #f5f7f9;
  border-top: 1px solid #e8ecf1;
}
.home-faq-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 86px;
  align-items: start;
}
.home-faq h2 {
  max-width: 12em;
}
.home-faq h2 + p {
  color: var(--muted);
  margin-top: 18px;
  max-width: 30ch;
}
.home-faq .text-link {
  margin-top: 24px;
}
.home-faq .faq-list {
  background: white;
  padding: 0 28px;
  border: 1px solid var(--line);
  border-radius: 5px;
}
.home-faq .faq-item:last-child {
  border-bottom: 0;
}
.projects-frame a {
  display: inline-flex;
  margin-top: 12px;
  font-size: 0.84rem;
  color: var(--blue);
  font-weight: 600;
}
.detail-hero {
  background: var(--navy);
  color: white;
  padding: 32px 0 68px;
  position: relative;
  overflow: hidden;
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 13px;
  font-size: 0.73rem;
  line-height: 1.6;
  color: #5e6a7b;
  margin-bottom: 42px;
}
.breadcrumb a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.detail-hero .breadcrumb {
  color: #acbdd3;
}
.breadcrumb > span[aria-hidden] {
  opacity: 0.55;
}
.detail-hero-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 86px;
  align-items: center;
}
.detail-hero h1 {
  font-size: clamp(2.5rem, 4.1vw, 3.5rem);
  letter-spacing: -1.9px;
  line-height: 1.16;
  max-width: 15ch;
  margin-top: 18px;
}
.detail-lead {
  color: #c1cede;
  margin-top: 25px;
  max-width: 53ch;
  font-size: 1rem;
  line-height: 1.9;
}
.detail-hero-link {
  display: inline-flex;
  gap: 18px;
  align-items: center;
  margin-top: 28px;
  padding-bottom: 7px;
  border-bottom: 1px solid #667c99;
  font-size: 0.85rem;
  color: #dae7ff;
}
.detail-hero-link:hover {
  color: #fff;
  border-color: #b6cdf1;
}
.project-brief {
  border: 1px solid #ffffff20;
  background: linear-gradient(140deg, #243951aa, #142235aa);
  border-radius: 6px;
  padding: 28px 32px 32px;
  position: relative;
  overflow: hidden;
}
.brief-art {
  height: 150px;
  position: relative;
  margin: -22px -30px 16px;
  overflow: hidden;
}
.brief-art img {
  position: absolute;
  width: 400px;
  max-width: 125%;
  height: auto;
  top: -125px;
  right: -40px;
  opacity: 0.8;
}
.brief-label {
  font-size: 0.72rem;
  color: #adbed6;
  margin-bottom: 10px;
}
.project-brief h2 {
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: -0.4px;
  max-width: 20ch;
}
.project-brief ul {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  border-top: 1px solid #ffffff1c;
}
.project-brief li {
  padding: 10px 0 0;
  color: #b8cbe6;
  font-size: 0.79rem;
  display: flex;
  gap: 12px;
  align-items: center;
}
.project-brief li::before {
  content: "";
  width: 4px;
  height: 4px;
  background: #9cbde8;
  flex: none;
}
.scope-section {
  padding: 80px 0;
  border-bottom: 1px solid #e7ecf1;
}
.scope-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 86px;
  align-items: start;
}
.scope-intro h2 {
  font-size: 2rem;
  letter-spacing: -0.9px;
  max-width: 20ch;
}
.scope-intro p {
  color: var(--muted);
  font-size: 0.91rem;
}
.scope-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 36px;
}
.scope-grid article {
  border: 1px solid var(--line);
  background: #fafbfc;
  border-radius: 5px;
  padding: 28px;
}
.scope-mark {
  width: 23px;
  height: 23px;
  border: 1px solid #9cb6da;
  display: block;
  margin-bottom: 22px;
  position: relative;
}
.scope-mark::after {
  content: "";
  position: absolute;
  inset: 5px -5px -5px 5px;
  border: 1px solid #547fae;
  background: #f0f5fb;
}
.scope-grid h3 {
  font-size: 1.05rem;
  margin-bottom: 12px;
}
.scope-grid p {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.85;
}
.content-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 100px;
  padding-block: 80px;
  align-items: start;
}
.contents-aside {
  position: sticky;
  top: 120px;
  font-size: 0.8rem;
}
.contents-label {
  font-size: 0.71rem;
  color: var(--muted);
  margin: 0 0 15px 16px;
}
.contents-aside nav a {
  display: block;
  padding: 9px 0 9px 16px;
  border-left: 1px solid var(--line);
  line-height: 1.7;
  color: #536276;
  transition:
    color 0.15s,
    border-color 0.15s;
}
.contents-aside nav a:hover {
  border-color: var(--blue);
  color: var(--blue);
}
.aside-contact {
  margin-top: 30px;
  padding: 22px 20px;
  background: #f3f6fa;
  border: 1px solid #e3e9f1;
  border-radius: 4px;
}
.aside-contact > p {
  line-height: 1.8;
  max-width: 20ch;
}
.aside-contact a {
  display: inline-flex;
  gap: 10px;
  margin-top: 12px;
  color: #285d9e;
  font-size: 0.79rem;
  font-weight: 600;
}
.content-section {
  padding-bottom: 40px;
  margin-bottom: 38px;
  border-bottom: 1px solid #e4e9ee;
  scroll-margin-top: 118px;
}
.content-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}
.content-section h2 {
  font-size: 1.6rem;
  line-height: 1.4;
  letter-spacing: -0.65px;
  margin-bottom: 20px;
}
.content-section > p {
  color: #546174;
  font-size: 0.94rem;
  line-height: 1.95;
}
.content-section > p + p {
  margin-top: 16px;
}
.content-section p > a,
.company-facts a,
.faq-empty a {
  color: #275d9e;
  text-decoration: underline;
  text-decoration-color: #becde0;
  text-underline-offset: 4px;
  overflow-wrap: anywhere;
}
.content-section p > a:hover,
.company-facts a:hover {
  text-decoration-color: currentColor;
}
.content-section .section-label {
  font-size: 0.72rem;
  margin-bottom: 10px;
}
.content-list {
  padding-left: 20px;
  margin: 22px 0 0;
  font-size: 0.91rem;
  color: #45576b;
}
.content-list li {
  padding-left: 8px;
  margin: 9px 0;
  line-height: 1.8;
}
.content-list li::marker {
  color: #6b91c6;
}
.content-note {
  margin-top: 24px;
  background: #f3f6fa;
  border-left: 2px solid #8caedb;
  padding: 22px 26px;
  font-size: 0.88rem;
  color: #4b617a;
  line-height: 1.9;
}
.content-section > .text-link {
  margin-top: 24px;
  display: inline-flex;
  gap: 14px;
  color: #285d9e;
  font-size: 0.86rem;
  line-height: 1.8;
}
.related-section {
  background: #f5f7fa;
  border-block: 1px solid #e4e9ee;
  padding: 64px 0;
}
.related-heading {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: baseline;
  margin-bottom: 28px;
}
.related-heading h2 {
  font-size: 1.55rem;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.related-card {
  position: relative;
  display: block;
  padding: 26px 48px 26px 25px;
  border: 1px solid #dae2ed;
  border-radius: 4px;
  background: white;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.related-card:hover {
  border-color: #8caad8;
  background: #fafdff;
}
.related-card > span:first-child {
  color: var(--muted);
  font-size: 0.69rem;
}
.related-card h3 {
  font-size: 1rem;
  margin-top: 10px;
}
.related-arrow {
  position: absolute;
  bottom: 23px;
  right: 23px;
  color: #4d75a9;
}
.detail-cta {
  color: #fff;
  background: var(--navy);
  padding: 65px 0;
}
.detail-cta-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 65px;
  align-items: center;
}
.detail-cta h2 {
  margin: 14px 0;
  max-width: 24ch;
  font-size: 2rem;
  letter-spacing: -0.8px;
}
.detail-cta h2 + p {
  font-size: 0.88rem;
  color: #b7c6d9;
}
.detail-cta-actions {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-self: end;
}
.detail-cta-actions .button {
  min-width: 255px;
  gap: 35px;
  justify-content: space-between;
  padding: 13px 22px;
}
.detail-cta-actions > a:nth-child(2) {
  margin-top: 16px;
  font-size: 0.83rem;
  color: #c0d3ed;
  overflow-wrap: anywhere;
}
.detail-cta-actions > p {
  color: #a1b3cb;
  font-size: 0.7rem;
  margin-top: 5px;
}
.information-hero {
  padding: 30px 0 58px;
  border-bottom: 1px solid #e2e8ef;
  background: linear-gradient(120deg, #f1f5fa, #fbfcfd);
}
.information-hero h1 {
  font-size: clamp(2.25rem, 3.8vw, 3.4rem);
  letter-spacing: -1.8px;
  line-height: 1.2;
  margin: 16px 0 20px;
  max-width: 22ch;
}
.information-lead {
  max-width: 65ch;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.9;
}
.updated {
  margin-top: 25px;
  color: #68768a;
  font-size: 0.74rem;
}
.legal-layout {
  padding-top: 64px;
}
.legal-content {
  max-width: 760px;
}
.legal-content .content-section h2 {
  font-size: 1.35rem;
}
.legal-content .content-section > p {
  font-size: 0.9rem;
}
.company-facts {
  margin: 0 0 24px;
  border-top: 1px solid var(--line);
}
.company-facts > div {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 25px;
  padding: 17px 0;
  border-bottom: 1px solid #e4e9ef;
  line-height: 1.9;
}
.company-facts dt {
  font-size: 0.81rem;
  color: var(--muted);
}
.company-facts dd {
  margin: 0;
  font-size: 0.89rem;
}
.legal-related {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 50px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}
.legal-related a {
  font-size: 0.76rem;
  color: #516b8c;
}
.faq-hero h1 span {
  color: #5578a5;
}
.faq-search-wrap {
  max-width: 620px;
  margin-top: 30px;
}
.faq-search-wrap label {
  display: block;
  font-size: 0.78rem;
  margin-bottom: 8px;
}
.faq-search-field {
  display: flex;
  align-items: center;
  border: 1px solid #acbdcf;
  border-radius: 4px;
  background: white;
  padding-right: 15px;
}
.faq-search-field:focus-within {
  outline: 2px solid #648fca;
  outline-offset: 3px;
}
.faq-search-field input {
  border: none;
  background: transparent;
  font: inherit;
  font-size: 0.9rem;
  padding: 14px 18px;
  width: 100%;
  min-width: 0;
  outline: none;
  color: var(--ink);
  border-radius: 4px;
}
.faq-search-field input::placeholder {
  color: #738093;
  opacity: 1;
}
.faq-clear {
  border: 0;
  background: #edf2f8;
  color: #355575;
  padding: 5px 9px;
  border-radius: 3px;
  font-size: 0.72rem;
}
#faq-status {
  min-height: 1.6em;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.72rem;
}
.faq-layout .content-section {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 50px;
}
.faq-item {
  border-bottom: 1px solid #dce3ec;
}
.faq-item summary {
  position: relative;
  list-style: none;
  display: flex;
  gap: 26px;
  align-items: center;
  justify-content: space-between;
  padding: 21px 0;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.7;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary:hover {
  color: #285d9e;
}
.faq-symbol {
  position: relative;
  width: 20px;
  height: 20px;
  flex: none;
}
.faq-symbol::before,
.faq-symbol::after {
  content: "";
  position: absolute;
  background: #6a86ab;
  width: 11px;
  height: 1px;
  left: 4px;
  top: 10px;
}
.faq-symbol::after {
  transform: rotate(90deg);
  transition: transform 0.16s;
}
.faq-item[open] .faq-symbol::after {
  transform: rotate(0deg);
}
.faq-item[open] summary {
  color: #285d9e;
}
.faq-answer {
  padding: 0 40px 24px 0;
  color: #5b687b;
  font-size: 0.86rem;
  line-height: 1.95;
}
.faq-empty {
  padding: 30px;
  border: 1px solid #dce3ed;
  border-radius: 5px;
  background: #f7f9fc;
}
.faq-empty h2 {
  font-size: 1.3rem;
  margin-bottom: 16px;
}
.faq-empty p {
  font-size: 0.9rem;
  color: var(--muted);
}
.error-cta {
  margin-top: 28px;
  background: var(--navy);
  color: #fff;
}
@media (min-width: 1061px) {
  .content-page .main-nav {
    gap: 24px;
  }
}
@media (max-width: 1060px) {
  .content-page .site-header {
    height: 76px;
  }
  .content-page .menu-toggle {
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
  }
  .content-page .menu-toggle span {
    display: block;
    height: 1.5px;
    width: 22px;
    background: var(--ink);
  }
  .content-page .main-nav {
    display: none;
    position: absolute;
    top: 75px;
    left: 0;
    right: 0;
    padding: 20px 28px 28px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 15px 24px #111e300d;
  }
  .content-page .main-nav.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }
  .content-page .main-nav .nav-contact {
    margin: 10px 0 0;
    text-align: center;
  }
  .detail-hero-grid {
    gap: 36px;
    grid-template-columns: 1.3fr 1fr;
  }
  .detail-hero h1 {
    font-size: 2.6rem;
    letter-spacing: -1.4px;
  }
  .project-brief {
    padding: 24px;
  }
  .content-layout {
    gap: 48px;
    grid-template-columns: 190px minmax(0, 1fr);
  }
  .scope-intro {
    gap: 48px;
  }
  .footer-top {
    grid-template-columns: 1.2fr 1fr;
    gap: 34px 50px;
  }
  .home-faq-grid {
    gap: 45px;
  }
  .contents-aside {
    top: 102px;
  }
  .company-facts > div {
    grid-template-columns: 1fr;
    gap: 3px;
  }
}
@media (max-width: 760px) {
  .content-page .container {
    width: min(100% - 48px, 600px);
  }
  .detail-hero {
    padding-bottom: 42px;
  }
  .detail-hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .detail-hero h1 {
    font-size: 2.65rem;
    max-width: 17ch;
  }
  .detail-lead {
    font-size: 0.92rem;
  }
  .breadcrumb {
    margin-bottom: 30px;
    font-size: 0.7rem;
  }
  .project-brief {
    padding: 24px;
  }
  .brief-art {
    position: absolute;
    right: 0;
    top: 0;
    width: 180px;
    height: 100%;
    margin: 0;
    opacity: 0.32;
    pointer-events: none;
  }
  .brief-art img {
    top: -10px;
    right: -90px;
    width: 350px;
    max-width: none;
  }
  .brief-label,
  .project-brief h2,
  .project-brief ul {
    position: relative;
  }
  .project-brief h2 {
    font-size: 1.2rem;
    max-width: 25ch;
  }
  .project-brief ul {
    margin-top: 14px;
  }
  .scope-section {
    padding: 48px 0;
  }
  .scope-intro {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .scope-intro h2 {
    font-size: 1.75rem;
  }
  .scope-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 26px;
  }
  .scope-grid article {
    padding: 23px;
  }
  .scope-mark {
    margin-bottom: 18px;
  }
  .content-layout {
    grid-template-columns: 1fr;
    gap: 38px;
    padding-block: 44px;
  }
  .contents-aside {
    position: static;
  }
  .contents-aside nav {
    padding: 18px 22px;
    border: 1px solid #dfe6ef;
    border-radius: 4px;
    background: #f8fafc;
  }
  .contents-label {
    margin-left: 0;
  }
  .contents-aside nav a {
    padding: 7px 0;
    border: 0;
    font-size: 0.8rem;
  }
  .aside-contact {
    display: none;
  }
  .content-section {
    scroll-margin-top: 96px;
    margin-bottom: 30px;
    padding-bottom: 30px;
  }
  .content-section h2 {
    font-size: 1.4rem;
  }
  .content-section > p {
    font-size: 0.9rem;
  }
  .content-note {
    padding: 20px;
  }
  .related-section {
    padding: 42px 0;
  }
  .related-heading {
    display: block;
  }
  .related-heading h2 {
    margin-top: 10px;
  }
  .related-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .related-card {
    padding: 21px 48px 21px 22px;
  }
  .detail-cta {
    padding: 46px 0;
  }
  .detail-cta-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .detail-cta h2 {
    font-size: 1.8rem;
  }
  .detail-cta-actions {
    justify-self: start;
  }
  .information-hero {
    padding-bottom: 36px;
  }
  .information-hero h1 {
    font-size: 2.5rem;
    letter-spacing: -1.4px;
    overflow-wrap: anywhere;
  }
  .information-lead {
    font-size: 0.93rem;
  }
  .faq-answer {
    padding-right: 18px;
  }
  .home-faq-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .home-faq .faq-list {
    padding-inline: 22px;
  }
  .home-faq h2 + p {
    max-width: none;
  }
  .landing-page .service-grid-expanded {
    grid-template-columns: 1fr;
  }
  .landing-page .service-grid-expanded .service {
    min-height: auto;
    padding: 28px;
  }
  .expanded-footer {
    padding-top: 42px;
  }
  .footer-top {
    gap: 30px 24px;
    padding-bottom: 30px;
  }
  .footer-identity {
    grid-column: 1 / -1;
  }
  .footer-top nav:last-child {
    grid-column: 1 / -1;
  }
  .footer-company {
    display: block;
  }
  .footer-company span {
    display: block;
    margin: 5px 0 8px;
  }
  .footer-bottom {
    align-items: flex-start;
    font-size: 0.67rem;
  }
  .footer-bottom p {
    max-width: 27ch;
  }
}
@media (max-width: 380px) {
  .content-page .container {
    width: calc(100% - 36px);
  }
  .detail-hero h1 {
    font-size: 2.25rem;
  }
  .information-hero h1 {
    font-size: 2.1rem;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-top nav:last-child,
  .footer-identity {
    grid-column: auto;
  }
  .faq-search-field input {
    padding-inline: 12px;
    font-size: 0.8rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
@media print {
  .site-header,
  .expanded-footer,
  .contents-aside,
  .detail-cta,
  .related-section,
  .skip-link,
  .faq-search-wrap {
    display: none;
  }
  .content-page .container {
    width: 100%;
  }
  .content-layout {
    display: block;
    padding: 20px 0;
  }
  .information-hero {
    padding: 0 0 20px;
    background: none;
  }
  .content-section {
    break-inside: avoid;
  }
  .legal-content {
    max-width: none;
  }
  .article-content a {
    color: #111;
  }
}
