:root {
  --blue: #186bb2;
  --deep: #081726;
  --text: #1f2933;
  --muted: #747b84;
  --line: #e6e9ed;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: Arial, "Noto Sans KR", "Malgun Gothic", sans-serif;
  background: #fff;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  height: 100px;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 calc((100vw - 1250px) / 2);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 1px 0 rgba(0, 0, 0, .08);
}

.brand {
  display: flex;
  align-items: center;
  width: 230px;
}

.brand img {
  width: 100%;
  height: auto;
  display: block;
}

.nav {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 24px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.nav a,
.nav-item > a {
  padding: 40px 0;
}

.nav-item {
  position: relative;
}

.nav-item > a {
  display: block;
}

.nav-item.is-current > a,
.nav-item:hover > a {
  color: var(--blue);
}

.submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  min-width: 210px;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 32px rgba(0, 0, 0, .08);
  opacity: 0;
  visibility: hidden;
  transition: .2s ease;
}

.submenu a {
  display: block;
  padding: 14px 18px;
  border-bottom: 1px solid #eef1f4;
  font-size: 13px;
}

.submenu a:hover {
  background: #f5f8fb;
  color: var(--blue);
}

.has-submenu:hover .submenu {
  opacity: 1;
  visibility: visible;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
  margin-right: 22px;
  flex: 0 0 auto;
}

.social-link {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  min-width: 58px;
  border-radius: 14px;
  overflow: visible;
  transition: transform .18s ease, box-shadow .18s ease;
}

.social-link svg {
  width: 58px;
  height: 58px;
  display: block;
}

.social-links .social-link img {
  display: block;
  width: 58px !important;
  height: 58px !important;
  max-width: 58px !important;
  max-height: 58px !important;
  object-fit: contain !important;
}

.social-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, .14);
}

.kakao-link {
  background: transparent;
}

.telegram-link {
  background: transparent;
}

.telegram-link {
  border-radius: 50%;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  padding: 8px;
}

.menu-button span {
  display: block;
  height: 2px;
  background: #111;
  margin: 6px 0;
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 760px;
  overflow: hidden;
  background: var(--deep);
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  padding: 100px calc((100vw - 1250px) / 2) 0;
  opacity: 0;
  transition: opacity .8s ease;
  background:
    linear-gradient(100deg, rgba(3, 17, 32, .84), rgba(5, 25, 44, .58) 52%, rgba(4, 17, 28, .88)),
    url("assets/hero-lighthouse.jpg?v=20260701") center/cover;
}

.hero-slide:nth-child(2) {
  background:
    linear-gradient(100deg, rgba(11, 54, 96, .82), rgba(13, 79, 135, .42), rgba(5, 20, 36, .82)),
    url("assets/hero-rocket.jpg?v=20260701") center/cover;
}

.hero-slide:nth-child(3) {
  background:
    linear-gradient(100deg, rgba(11, 54, 96, .82), rgba(13, 79, 135, .42), rgba(5, 20, 36, .82)),
    url("assets/hero-mountains.jpg?v=20260701") center/cover;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-content {
  max-width: 1250px;
  width: 100%;
  margin: 0 auto;
  color: #fff;
  font-size: 46px;
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: 0;
  text-shadow: 0 4px 24px rgba(0, 0, 0, .45);
}

.hero-content p {
  margin: 0;
}

.hero-content h1 {
  margin: 0;
  font-size: 62px;
}

.hero-content-right {
  text-align: right;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.hero-dots span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 1px solid #fff;
  background: transparent;
}

.hero-dots span.is-active {
  background: #fff;
}

.intro {
  max-width: 1250px;
  margin: 0 auto;
  min-height: 0;
  padding: 200px 24px 70px;
  text-align: center;
  background: #090930;
  color: #fff;
  box-shadow: 0 0 0 100vmax #090930;
  clip-path: inset(0 -100vmax);
}

.eyebrow {
  color: #c7a246;
  font-size: 21px;
  font-weight: 800;
  margin-bottom: 18px;
}

.intro h2 {
  max-width: 1000px;
  margin: 0 auto 18px;
  font-size: 30px;
  line-height: 1.55;
  font-weight: 700;
}

.intro p {
  margin: 0 auto;
  max-width: 880px;
  color: rgba(255, 255, 255, .72);
  line-height: 1.8;
  font-size: 17px;
}

.metrics {
  display: flex;
  justify-content: center;
  gap: 86px;
  margin-top: 76px;
}

.metrics div {
  min-width: 190px;
  border: 1px solid rgba(255, 255, 255, .46);
  padding: 55px 50px;
  display: grid;
  gap: 8px;
}

.metrics strong {
  color: #fff;
  font-size: 58px;
  line-height: 1;
}

.metrics strong span {
  font-size: 24px;
}

.metrics small,
.metrics span {
  color: rgba(255, 255, 255, .78);
}

.link-panels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1250px;
  min-height: 260px;
  margin: 0 auto;
  background: #090930;
  box-shadow: 0 0 0 100vmax #090930;
  clip-path: inset(0 -100vmax);
  padding-bottom: 190px;
}

.panel {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 42px 54px;
  color: #fff;
  overflow: hidden;
  background: linear-gradient(rgba(2, 21, 39, .3), rgba(2, 21, 39, .72)), url("assets/panel-about.jpg?v=20260701") center/cover;
}

.panel:nth-child(2) {
  background-image: linear-gradient(rgba(2, 21, 39, .32), rgba(2, 21, 39, .74)), url("assets/panel-history.jpg?v=20260701");
}

.panel:nth-child(3) {
  background-image: linear-gradient(rgba(2, 21, 39, .32), rgba(2, 21, 39, .74)), url("assets/panel-vision.jpg?v=20260701");
}

.panel span {
  font-size: 34px;
  font-weight: 800;
  text-transform: uppercase;
}

.panel small {
  margin-top: 12px;
  font-size: 14px;
}

.partners {
  min-height: 600px;
  padding: 88px 24px 70px;
  max-width: 1250px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  margin-bottom: 48px;
}

.section-title h2,
.news h2,
.contact h2 {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 38px;
}

.section-title p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.partner-grid img {
  width: 100%;
  height: 118px;
  object-fit: contain;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.service {
  background: #2f6cbe;
  display: flex;
  justify-content: center;
  padding: 0;
}

.service img {
  display: block;
  width: min(100%, 1404px);
  height: auto;
}

.details {
  max-width: 1250px;
  margin: 0 auto;
  padding: 90px 24px 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.details article {
  border-top: 3px solid var(--blue);
  padding: 34px 30px 40px;
  background: #f7f8fa;
  min-height: 260px;
}

.details img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.details h3 {
  margin: 22px 0 14px;
  font-size: 24px;
}

.details p {
  color: var(--muted);
  line-height: 1.75;
}

.news-contact {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 42px;
  max-width: 1250px;
  margin: 0 auto;
  min-height: 600px;
  padding: 86px 24px 92px;
}

.board-toolbar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.board-toolbar span {
  margin-right: auto;
  font-weight: 700;
}

.board-toolbar button {
  border: 1px solid var(--line);
  background: #fff;
  padding: 7px 11px;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

th,
td {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 14px 10px;
  text-align: center;
}

th {
  background: #f4f6f8;
}

.contact {
  display: grid;
  gap: 12px;
}

.contact input,
.contact textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #f7f8f9;
  padding: 16px;
  font: inherit;
}

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

.contact button {
  border: 0;
  background: var(--blue);
  color: #fff;
  padding: 16px;
  font-size: 16px;
  font-weight: 800;
}

.footer {
  background: #111820;
  color: rgba(255, 255, 255, .78);
  padding: 48px calc((100vw - 1250px) / 2) 58px;
  font-size: 14px;
  line-height: 1.8;
}

.footer img {
  width: 230px;
  height: auto;
  display: block;
  margin-bottom: 24px;
}

.footer p {
  margin: 3px 0;
}

.footer-links {
  display: flex;
  gap: 20px;
  margin-top: 18px;
}

.footer-links a {
  color: #fff;
  opacity: .85;
}

.page-hero {
  height: 430px;
  padding-top: 100px;
  display: grid;
  place-items: center;
  color: #fff;
  text-align: center;
  background:
    linear-gradient(rgba(6, 24, 42, .72), rgba(6, 24, 42, .72)),
    url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.page-hero p {
  margin: 0 0 12px;
  color: #9bc9f1;
  font-weight: 800;
  letter-spacing: 0;
}

.page-hero h1 {
  margin: 0;
  font-size: 54px;
  letter-spacing: 0;
}

.content-section {
  max-width: 1250px;
  margin: 0 auto;
  padding: 92px 24px;
}

.content-section.gray {
  max-width: none;
  background: #f6f8fa;
}

.content-section.gray > * {
  max-width: 1250px;
  margin-left: auto;
  margin-right: auto;
}

.info-table {
  border-top: 2px solid #17283a;
}

.info-table div {
  display: grid;
  grid-template-columns: 220px 1fr;
  border-bottom: 1px solid var(--line);
  min-height: 58px;
}

.info-table strong {
  display: flex;
  align-items: center;
  background: #f4f6f8;
  padding: 0 24px;
}

.info-table span {
  display: flex;
  align-items: center;
  padding: 0 24px;
  color: #4c5661;
}

.leader-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.leader-grid article,
.product-list article,
.location-box {
  background: #fff;
  border: 1px solid var(--line);
  padding: 30px;
}

.leader-grid h3,
.product-list h2,
.location-box h3 {
  margin: 0 0 16px;
  color: #17283a;
}

.leader-grid small {
  color: var(--blue);
  font-size: 14px;
}

.leader-grid ul {
  margin: 0;
  padding-left: 18px;
  color: #5b6570;
  line-height: 1.8;
}

.vision-copy {
  text-align: center;
  font-size: 21px;
  line-height: 1.8;
}

.vision-copy h3 {
  color: var(--blue);
  margin-top: 42px;
}

.history-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 2px solid var(--blue);
  background: #fff;
}

.history-grid div {
  min-height: 160px;
  padding: 30px;
  border-right: 1px solid var(--line);
}

.history-grid strong {
  display: block;
  color: var(--blue);
  font-size: 34px;
  margin-bottom: 16px;
}

.history-grid span,
.history-note,
.location-box {
  color: #5b6570;
  line-height: 1.8;
}

.history-note {
  margin-top: 28px;
  font-size: 17px;
}

.map-actions {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.map-actions a,
.product-tabs a,
.board-search button {
  background: var(--blue);
  color: #fff;
  padding: 12px 18px;
  font-weight: 800;
}

.product-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
}

.product-tabs a {
  background: #eef3f8;
  color: #17283a;
}

.product-tabs a.is-active {
  background: var(--blue);
  color: #fff;
}

.product-list {
  display: grid;
  gap: 18px;
}

.product-list article {
  border-left: 4px solid var(--blue);
}

.product-list p {
  color: #5b6570;
  line-height: 1.8;
  font-size: 17px;
}

.news-board {
  border-top: 2px solid #17283a;
}

.board-search {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 20px;
}

.board-search select,
.board-search input {
  border: 1px solid var(--line);
  padding: 10px;
}

.board-search input {
  width: 220px;
}

.company-page {
  --company-blue: #191970;
  --company-line: #e4e4e4;
}

.company-hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 320px;
  padding: 150px 24px 50px;
  background:
    linear-gradient(rgba(0, 0, 0, .44), rgba(0, 0, 0, .44)),
    url("assets/company-hero.jpg?v=20260701") center/cover no-repeat #181e19;
  color: #fff;
  text-align: center;
}

.company-hero h1 {
  margin: 0;
  font-family: Poppins, Arial, "Noto Sans KR", "Malgun Gothic", sans-serif;
  font-size: 47px;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
}

.company-subnav {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  max-width: 1250px;
  margin: -24px auto 0;
  padding: 0 24px;
  background: #fff;
  box-shadow: 0 0 0 1px #e9e9e9 inset;
}

.company-subnav a {
  position: relative;
  min-width: 160px;
  padding: 14px 28px;
  color: #000;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  overflow: hidden;
}

.company-subnav a + a {
  border-left: 1px solid #d3d3d3;
}

.company-subnav a::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .22s ease;
  background: var(--company-blue);
}

.company-subnav a:hover {
  color: #fff;
}

.company-subnav a:hover::before {
  transform: scaleX(1);
}

.company-subnav a.is-active {
  color: #000;
}

.company-section {
  max-width: 1250px;
  margin: 0 auto;
  padding: 90px 24px;
}

.company-about {
  padding-top: 100px;
}

.company-section-heading {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 20px;
  color: #000;
  font-size: 40px;
  font-weight: 700;
  text-align: center;
}

.company-section-heading::before,
.company-section-heading::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #e7e7e7;
}

.company-about-panel {
  max-width: 1040px;
  margin: 0 auto;
}

.dual-heading {
  margin-bottom: 30px;
  padding: 3px 0 3px 9px;
  border-left: 7px solid var(--company-blue);
  line-height: 1.16;
}

.dual-heading strong {
  display: inline-block;
  margin-right: 8px;
  color: var(--company-blue);
  font-family: Montserrat, Arial, "Noto Sans KR", sans-serif;
  font-size: 36px;
  font-weight: 800;
}

.dual-heading span {
  color: #7e7e7e;
  font-size: 25px;
  font-weight: 400;
}

.company-info-table {
  border-top: 2px solid var(--company-blue);
}

.company-info-table div {
  display: grid;
  grid-template-columns: 26% 74%;
  min-height: 48px;
  padding: 2px 0;
  border-bottom: 1px solid var(--company-line);
}

.company-info-table strong,
.company-info-table span {
  display: flex;
  align-items: center;
}

.company-info-table strong {
  justify-content: center;
  color: #000;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}

.company-info-table span {
  color: #5d5d5d;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.45;
}

.company-leadership {
  max-width: none;
  background: #f7f8fa;
}

.company-leadership > * {
  max-width: 1250px;
  margin-left: auto;
  margin-right: auto;
}

.leader-table {
  border-top: 2px solid var(--company-blue);
  background: #fff;
}

.leader-row {
  display: grid;
  grid-template-columns: 230px 1fr;
  border-bottom: 1px solid var(--company-line);
}

.leader-name {
  display: grid;
  place-content: center;
  padding: 28px 24px;
  border-right: 1px solid var(--company-line);
  text-align: center;
}

.leader-name h3 {
  margin: 0 0 8px;
  color: #000;
  font-size: 24px;
  font-weight: 700;
}

.leader-name p {
  margin: 0;
  color: var(--company-blue);
  font-size: 15px;
  font-weight: 700;
}

.leader-row ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 25px 36px;
  color: #5d5d5d;
  font-size: 15px;
  line-height: 1.5;
}

.leader-row li::marker {
  color: var(--company-blue);
}

.vision-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.vision-intro,
.vision-card {
  border: 1px solid var(--company-line);
  background: #fff;
  padding: 30px;
}

.vision-intro {
  border-top: 3px solid var(--company-blue);
  color: #222;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.7;
}

.vision-intro p,
.vision-card p {
  margin: 0;
}

.vision-intro p + p {
  margin-top: 16px;
}

.vision-card h3 {
  margin: 0 0 18px;
  color: var(--company-blue);
  font-size: 24px;
}

.vision-card p {
  color: #5d5d5d;
  font-size: 15px;
  line-height: 1.75;
}

.company-history {
  padding-top: 88px;
  padding-bottom: 92px;
  background: #fff;
}

.company-history > .dual-heading {
  margin-bottom: 45px;
  border-left-width: 8px;
}

.company-history > .dual-heading strong {
  color: var(--company-blue);
  font-size: 45px;
  line-height: 1.05;
  letter-spacing: 0;
}

.history-layout {
  display: grid;
  grid-template-columns: minmax(420px, 1.03fr) minmax(560px, .97fr);
  gap: 58px;
  align-items: start;
}

.history-copy {
  color: #000;
}

.history-skyline {
  position: relative;
  width: 220px;
  height: 355px;
  margin-bottom: 28px;
  opacity: .55;
}

.history-skyline span {
  position: absolute;
  bottom: 0;
  width: 72px;
  background-color: transparent;
  background-image:
    repeating-linear-gradient(90deg, #c9cdd3 0 4px, transparent 4px 10px),
    repeating-linear-gradient(0deg, transparent 0 12px, #c9cdd3 12px 15px, transparent 15px 24px);
  clip-path: polygon(50% 0, 100% 13%, 100% 100%, 0 100%, 0 13%);
}

.history-skyline span:nth-child(1) {
  left: 0;
  height: 265px;
}

.history-skyline span:nth-child(2) {
  left: 68px;
  height: 238px;
  width: 56px;
}

.history-skyline span:nth-child(3) {
  left: 118px;
  height: 350px;
  width: 92px;
}

.history-copy h2 {
  margin: 0 0 30px;
  color: #000;
  font-size: 36px;
  line-height: 1.35;
  font-weight: 800;
  letter-spacing: 0;
}

.history-summary {
  margin: 0 0 42px;
  color: #000;
  font-size: 26px;
  line-height: 1.5;
  font-weight: 400;
}

.history-notes {
  display: grid;
  gap: 24px;
  margin: 0;
  padding: 34px 0 0;
  border-top: 1px solid #e2e2e2;
  list-style: none;
}

.history-notes li {
  position: relative;
  padding-left: 48px;
  color: #000;
  font-size: 22px;
  line-height: 1.48;
  font-weight: 400;
}

.history-notes li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 10px;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background: var(--company-blue);
}

.history-notes li::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 16px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.company-history .company-timeline {
  position: relative;
  display: grid;
  gap: 28px;
  padding: 0 0 0 88px;
}

.company-history .company-timeline::before {
  content: "";
  position: absolute;
  top: 21px;
  bottom: 176px;
  left: 42px;
  width: 3px;
  background: #1b1d7f;
}

.company-history .company-timeline::after {
  content: "";
  position: absolute;
  top: 452px;
  bottom: 84px;
  left: 42px;
  width: 3px;
  background: #e4e4e4;
}

.company-history .company-timeline article {
  position: relative;
  min-height: 148px;
  padding: 32px 36px 28px;
  border: 1px solid #e5e5e5;
  background: #fff;
  text-align: left;
}

.company-history .company-timeline article::before {
  content: "";
  position: absolute;
  top: 20px;
  left: -91px;
  z-index: 1;
  width: 30px;
  height: 30px;
  border: 7px solid var(--company-blue);
  border-radius: 50%;
  background: #fff;
  box-shadow: inset 0 0 0 6px #fff;
}

.company-history .company-timeline article:nth-child(n+3)::before {
  border-color: #e5e5e5;
}

.company-history .company-timeline article::after {
  content: "";
  position: absolute;
  top: 22px;
  left: -29px;
  width: 0;
  height: 0;
  border-top: 17px solid transparent;
  border-bottom: 17px solid transparent;
  border-right: 29px solid #f6f6f6;
}

.company-history .company-timeline strong {
  display: block;
  margin-bottom: 10px;
  color: var(--company-blue);
  font-size: 30px;
  line-height: 1;
  font-weight: 800;
}

.company-history .company-timeline span {
  display: block;
  color: var(--company-blue);
  font-size: 27px;
  line-height: 1.25;
  font-weight: 800;
}

.company-history .company-timeline p {
  margin: 14px 0 0;
  color: #5e5e5e;
  font-size: 22px;
  line-height: 1.25;
}

.location-layout {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 26px;
}

.map-frame {
  min-height: 360px;
  border: 1px solid var(--company-line);
  background: #eef1f4;
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
}

.location-panel {
  padding: 32px 30px;
  border: 1px solid var(--company-line);
  background: #fff;
}

.location-panel h3 {
  margin: 0 0 18px;
  color: #000;
  font-size: 22px;
}

.location-panel p,
.location-panel li {
  color: #5d5d5d;
  font-size: 15px;
  line-height: 1.7;
}

.location-panel ul {
  margin: 18px 0 0;
  padding-left: 18px;
}

@media (max-width: 1300px) {
  .site-header,
  .footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero-slide {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (max-width: 1100px) {
  .site-header {
    height: 78px;
    padding: 0 24px;
    gap: 14px;
  }

  .brand {
    width: 220px;
    flex: 0 1 auto;
  }

  .nav {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 10px 24px 20px;
    background: #fff;
    box-shadow: 0 16px 28px rgba(0, 0, 0, .08);
  }

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

  .nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-item > a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .submenu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    border: 0;
    box-shadow: none;
    background: #f7f9fb;
    min-width: 0;
  }

  .submenu a {
    padding-left: 18px;
  }

  .social-links {
    margin-left: auto;
    margin-right: 12px;
    gap: 8px;
  }

  .menu-button {
    flex: 0 0 42px;
    display: block;
  }

  .hero {
    height: 620px;
  }

  .hero-content {
    font-size: 36px;
  }

  .hero-content h1 {
    font-size: 48px;
  }

  .link-panels,
  .details,
  .news-contact,
  .leader-grid,
  .history-grid,
  .history-layout,
  .vision-layout,
  .location-layout {
    grid-template-columns: 1fr;
  }

  .company-subnav {
    justify-content: flex-start;
    overflow-x: auto;
    padding: 0;
  }

  .company-subnav a {
    min-width: 142px;
    flex: 0 0 auto;
  }

  .leader-row {
    grid-template-columns: 1fr;
  }

  .leader-name {
    border-right: 0;
    border-bottom: 1px solid var(--company-line);
  }

  .company-timeline {
    grid-template-columns: 1fr;
    padding-top: 0;
  }

  .company-timeline::before {
    top: 0;
    bottom: 0;
    left: 36px;
    right: auto;
    width: 2px;
    height: auto;
  }

  .company-timeline article {
    margin-left: 54px;
    text-align: left;
  }

  .company-timeline article::before {
    top: 34px;
    left: -19px;
  }

  .history-skyline {
    height: 220px;
  }

  .history-copy h2 {
    font-size: 31px;
  }

  .history-summary {
    font-size: 22px;
  }

  .company-history .company-timeline {
    padding-left: 66px;
  }

  .company-history .company-timeline::before {
    top: 21px;
    bottom: 170px;
    left: 28px;
  }

  .company-history .company-timeline::after {
    top: 440px;
    bottom: 80px;
    left: 28px;
  }

  .company-history .company-timeline article::before {
    left: -60px;
  }

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

@media (max-width: 640px) {
  body {
    overflow-x: hidden;
    font-size: 14px;
  }

  .brand {
    width: min(168px, calc(100vw - 170px));
  }

  .site-header {
    height: 76px;
    padding: 0 14px;
    gap: 8px;
  }

  .social-links {
    gap: 6px;
    margin-right: 6px;
  }

  .social-link {
    width: 34px;
    height: 34px;
    min-width: 34px;
  }

  .social-link svg {
    width: 34px;
    height: 34px;
  }

  .social-links .social-link img {
    width: 34px !important;
    height: 34px !important;
    max-width: 34px !important;
    max-height: 34px !important;
  }

  .menu-button {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
    padding: 7px;
  }

  .hero {
    height: 500px;
    min-height: 500px;
  }

  .hero-slide {
    align-items: center;
    padding: 76px 20px 0;
  }

  .hero-content,
  .hero-content-right {
    text-align: left;
    font-size: 24px;
    line-height: 1.42;
    word-break: keep-all;
  }

  .hero-content h1 {
    font-size: 30px;
    line-height: 1.2;
  }

  .intro {
    padding: 58px 18px 52px;
  }

  .intro h2 {
    font-size: 21px;
    line-height: 1.55;
    word-break: keep-all;
  }

  .intro p {
    font-size: 14px;
    line-height: 1.75;
  }

  .eyebrow {
    font-size: 17px;
    margin-bottom: 12px;
  }

  .metrics {
    flex-direction: column;
    gap: 16px;
    margin-top: 38px;
  }

  .metrics div {
    width: 100%;
    min-width: 0;
    padding: 26px 20px;
  }

  .metrics strong {
    font-size: 38px;
  }

  .link-panels {
    min-height: 0;
    padding-bottom: 70px;
  }

  .panel {
    min-height: 160px;
    padding: 26px 24px;
  }

  .panel span {
    font-size: 26px;
  }

  .partners {
    min-height: 0;
    padding: 58px 18px 48px;
  }

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

  .partner-grid img {
    height: 96px;
    padding: 22px;
  }

  .service img {
    width: 100%;
  }

  .details {
    padding: 54px 18px;
    gap: 16px;
  }

  .details article {
    min-height: 0;
    padding: 24px 22px 28px;
  }

  .details img {
    width: 44px;
    height: 44px;
  }

  .details h3 {
    margin-top: 16px;
    font-size: 21px;
  }

  .details p {
    font-size: 14px;
    line-height: 1.7;
  }

  .news-contact {
    min-height: 0;
    padding: 54px 18px;
    gap: 34px;
  }

  .section-title h2,
  .news h2,
  .contact h2 {
    font-size: 28px;
  }

  .section-title {
    margin-bottom: 30px;
  }

  .section-title p {
    font-size: 14px;
    line-height: 1.65;
  }

  .board-toolbar {
    flex-wrap: wrap;
    align-items: stretch;
    gap: 6px;
  }

  .board-toolbar span {
    width: 100%;
    margin: 0 0 4px;
  }

  .board-toolbar button {
    padding: 8px 10px;
    font-size: 13px;
  }

  .news-board {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .news-board table {
    min-width: 560px;
    font-size: 13px;
  }

  th,
  td {
    padding: 11px 8px;
  }

  .contact input,
  .contact textarea {
    padding: 13px 14px;
    font-size: 14px;
  }

  .contact button {
    padding: 14px;
    font-size: 15px;
  }

  .page-hero h1 {
    font-size: 32px;
    line-height: 1.2;
    word-break: keep-all;
  }

  .page-hero {
    height: 300px;
    padding: 76px 20px 0;
  }

  .content-section {
    padding: 58px 18px;
  }

  .product-tabs {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 24px;
  }

  .product-tabs a,
  .map-actions a,
  .board-search button {
    width: 100%;
    padding: 12px 14px;
    font-size: 14px;
    text-align: center;
  }

  .product-list {
    gap: 14px;
  }

  .product-list article {
    padding: 22px 18px;
  }

  .product-list h2 {
    font-size: 21px;
    line-height: 1.35;
  }

  .product-list p {
    font-size: 14px;
    line-height: 1.72;
    word-break: keep-all;
  }

  .company-hero {
    min-height: 260px;
    padding: 118px 24px 42px;
  }

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

  .company-section {
    padding: 58px 18px;
  }

  .company-about {
    padding-top: 70px;
  }

  .company-section-heading {
    gap: 14px;
    margin-bottom: 18px;
    font-size: 30px;
  }

  .dual-heading strong {
    display: block;
    font-size: 26px;
  }

  .dual-heading span {
    font-size: 18px;
  }

  .dual-heading {
    margin-bottom: 24px;
    border-left-width: 6px;
  }

  .company-subnav a {
    min-width: 116px;
    padding: 12px 16px;
    font-size: 14px;
  }

  .company-info-table strong,
  .company-info-table span {
    font-size: 14px;
    line-height: 1.55;
  }

  .company-history > .dual-heading strong {
    font-size: 34px;
  }

  .history-skyline {
    width: 150px;
    height: 150px;
    margin-bottom: 22px;
  }

  .history-skyline span:nth-child(1) {
    height: 118px;
  }

  .history-skyline span:nth-child(2) {
    left: 46px;
    width: 42px;
    height: 104px;
  }

  .history-skyline span:nth-child(3) {
    left: 82px;
    width: 62px;
    height: 148px;
  }

  .history-copy h2 {
    margin-bottom: 18px;
    font-size: 24px;
    line-height: 1.45;
    word-break: keep-all;
  }

  .history-summary {
    margin-bottom: 28px;
    font-size: 18px;
    line-height: 1.55;
  }

  .history-notes li {
    padding-left: 34px;
    font-size: 15px;
    line-height: 1.65;
  }

  .company-history .company-timeline {
    gap: 18px;
    padding-left: 48px;
  }

  .company-history .company-timeline::before,
  .company-history .company-timeline::after {
    left: 20px;
  }

  .company-history .company-timeline article {
    min-height: 128px;
    margin-left: 0;
    padding: 22px 18px;
  }

  .company-history .company-timeline article::before {
    left: -44px;
    width: 24px;
    height: 24px;
    border-width: 6px;
  }

  .company-history .company-timeline article::after {
    left: -22px;
    border-top-width: 13px;
    border-bottom-width: 13px;
    border-right-width: 22px;
  }

  .company-history .company-timeline strong {
    font-size: 23px;
  }

  .company-history .company-timeline span {
    font-size: 19px;
  }

  .company-history .company-timeline p {
    font-size: 16px;
  }

  .info-table div {
    grid-template-columns: 1fr;
  }

  .company-info-table div {
    grid-template-columns: 1fr;
    padding: 10px 0;
  }

  .company-info-table strong {
    justify-content: flex-start;
    margin-bottom: 4px;
  }

  .leader-row ul {
    padding: 20px;
    font-size: 14px;
    line-height: 1.65;
  }

  .leader-name {
    padding: 22px 18px;
  }

  .leader-name h3 {
    font-size: 21px;
  }

  .vision-intro,
  .vision-card {
    padding: 22px 18px;
  }

  .vision-intro {
    font-size: 16px;
  }

  .vision-card h3 {
    font-size: 21px;
  }

  .location-panel {
    padding: 24px 20px;
  }

  .location-panel h3 {
    font-size: 20px;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 260px;
    height: 260px;
  }

  .info-table strong,
  .info-table span {
    min-height: 48px;
  }

  .board-search {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: stretch;
    gap: 8px;
  }

  .board-search input {
    width: 100%;
  }

  .footer {
    padding: 38px 18px 44px;
    font-size: 13px;
    line-height: 1.75;
  }

  .footer img {
    width: 185px;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 12px;
  }
}

@media (max-width: 420px) {
  .brand {
    width: min(158px, calc(100vw - 164px));
  }

  .site-header {
    padding: 0 12px;
    gap: 6px;
  }

  .social-links {
    gap: 5px;
    margin-right: 5px;
  }

  .social-link,
  .social-link svg {
    width: 32px;
    height: 32px;
    min-width: 32px;
  }

  .social-links .social-link img {
    width: 32px !important;
    height: 32px !important;
    max-width: 32px !important;
    max-height: 32px !important;
  }

  .menu-button {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
    padding: 6px;
  }

  .hero-content {
    font-size: 22px;
  }

  .intro h2,
  .product-list h2,
  .details h3 {
    font-size: 20px;
  }
}
