:root {
  --ink: #071a44;
  --muted: #526074;
  --line: #dbe3ee;
  --surface: #ffffff;
  --soft: #eaf8fb;
  --mist: #f6f9fc;
  --teal: #14a6bd;
  --teal-dark: #087f96;
  --graphite: #071a44;
  --gold: #4faec0;
  --shadow: 0 16px 44px rgba(7, 26, 68, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: "Pretendard", "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", Arial, sans-serif;
  line-height: 1.65;
  word-break: keep-all;
}

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

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 92px;
  padding: 0 3.2vw;
  border-bottom: 1px solid rgba(219, 229, 225, 0.8);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.logo-brand img {
  width: 236px;
  max-height: 68px;
  height: auto;
  object-fit: contain;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: linear-gradient(135deg, var(--teal), #0b2a63);
  font-weight: 800;
}

.brand-copy {
  display: grid;
  line-height: 1.1;
}

.brand-copy strong {
  font-size: 18px;
  letter-spacing: 0.08em;
}

.brand-copy small {
  color: var(--muted);
  font-size: 12px;
}

.menu {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: #223355;
  font-size: 14px;
  font-weight: 700;
}

.menu li {
  position: relative;
}

.menu a:hover {
  color: var(--teal);
}

.sub-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 0;
  min-width: 190px;
  display: grid;
  gap: 2px;
  padding: 10px;
  margin: 0;
  list-style: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.menu-item-has-children:hover > .sub-menu,
.menu-item-has-children:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sub-menu a {
  display: block;
  padding: 8px 10px;
  border-radius: 6px;
  color: var(--muted);
  white-space: nowrap;
}

.sub-menu a:hover {
  background: var(--soft);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: center;
  padding: 100px 5vw 120px;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 34%, rgba(255, 255, 255, 0.28) 63%, rgba(255, 255, 255, 0.1) 100%),
    var(--hero-image);
  background-position: center;
  background-size: cover;
}

.compact-hero {
  min-height: 76vh;
}

.home-hero {
  display: grid;
  min-height: 620px;
  place-items: center;
  padding: 110px 5vw 86px;
  text-align: center;
  background:
    linear-gradient(180deg, #ffffff 0%, #f6f9fc 100%);
}

.home-dashboard {
  padding: 34px 5vw 28px;
  background: var(--mist);
}

.home-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.home-banner h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.14;
  letter-spacing: 0;
}

.home-banner p:last-child {
  max-width: 760px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.banner-actions {
  display: flex;
  gap: 10px;
}

.home-board {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 18px;
  margin-top: 18px;
}

.board-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.panel-head h2 {
  margin: 0;
  font-size: clamp(25px, 3vw, 34px);
}

.row-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 22px;
  background: var(--line);
  border: 1px solid var(--line);
}

.mini-grid article {
  display: grid;
  gap: 4px;
  min-height: 96px;
  padding: 18px;
  background: white;
}

.mini-grid strong {
  color: var(--ink);
  font-size: 18px;
}

.mini-grid span {
  color: var(--muted);
  font-size: 14px;
}

.compact-business-list {
  display: grid;
  margin-top: 18px;
  border-top: 1px solid var(--line);
}

.compact-business-list a {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 58px;
  border-bottom: 1px solid var(--line);
}

.compact-business-list span {
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 900;
}

.compact-business-list strong {
  font-size: 17px;
}

.blog-strip {
  padding-top: 44px;
  padding-bottom: 44px;
}

.news-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.news-item {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 94px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.news-thumb {
  display: grid;
  width: 96px;
  height: 70px;
  place-items: center;
  overflow: hidden;
  border-radius: 6px;
  background: var(--soft);
  color: var(--teal-dark);
  font-size: 15px;
  font-weight: 900;
}

.news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-item time {
  display: block;
  margin-bottom: 4px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
}

.news-item h3 {
  margin: 0;
  font-size: 17px;
  line-height: 1.42;
}

.compact-contact {
  padding: 32px 5vw;
}

.home-top {
  padding: 14px 5vw 10px;
  background: var(--mist);
}

.main-slider {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  overflow: hidden;
  min-height: 218px;
}

.slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.48fr);
  gap: 22px;
  align-items: center;
  min-height: 218px;
  padding: 24px 28px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(12px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.slide.is-active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.slide-copy h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.18;
  letter-spacing: 0;
}

.slide-copy p:not(.eyebrow) {
  max-width: 640px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.slide-copy .hero-actions {
  margin-top: 16px;
}

.slide-media {
  height: 174px;
  min-height: 0;
}

.slide-media img {
  width: 100%;
  height: 100%;
  max-height: 174px;
  object-fit: cover;
  border-radius: 8px;
}

.slider-dots {
  position: absolute;
  right: 24px;
  bottom: 16px;
  display: flex;
  gap: 7px;
}

.slider-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #bfd0dc;
  cursor: pointer;
}

.slider-dots .is-active {
  width: 26px;
  background: var(--teal);
}

.seo-intro {
  max-width: 1120px;
  margin: 9px auto 0;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

.home-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, 0.75fr);
  gap: 18px;
  padding: 12px 5vw 0;
  background: var(--mist);
}

.connect-card,
.blog-side {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.icon-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.icon-card-grid article {
  min-height: 150px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--mist);
}

.icon-card-grid img {
  width: 100%;
  height: 74px;
  margin-bottom: 14px;
  object-fit: contain;
}

.line-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 8px;
  background: var(--ink);
  color: white;
  font-size: 14px;
  font-weight: 900;
}

.icon-card-grid strong {
  display: block;
  margin-bottom: 6px;
  font-size: 18px;
}

.icon-card-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.blog-side .panel-head h2 {
  font-size: 28px;
}

.news-list.stacked {
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 14px;
}

.business-preview-band {
  padding: 38px 5vw 44px;
  background: var(--mist);
}

.business-tile-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.business-tile-grid a {
  min-height: 142px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.business-tile-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--teal-dark);
  font-weight: 900;
}

.business-tile-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 19px;
}

.business-tile-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.contact-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 5vw;
  background: var(--ink);
  color: white;
}

.contact-bar p {
  margin: 0;
  font-size: 21px;
  font-weight: 800;
}

.contact-bar > div {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.contact-bar .button.primary {
  background: var(--teal);
}

.contact-bar .button.secondary {
  border-color: rgba(255, 255, 255, 0.34);
  background: transparent;
  color: white;
}

.home-hero-inner {
  width: min(880px, 100%);
}

.home-hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(72px, 13vw, 156px);
  line-height: 0.9;
  letter-spacing: 0.08em;
  font-weight: 900;
}

.home-hero h1::after {
  content: "KEY ON NEXT";
  display: block;
  margin-top: 28px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.55em;
  font-weight: 700;
}

.home-hero .eyebrow {
  color: var(--teal-dark);
}

.home-hero .hero-lead {
  margin-right: auto;
  margin-left: auto;
}

.centered {
  justify-content: center;
}

.hero-inner {
  width: min(720px, 100%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 680px;
  font-size: clamp(44px, 8vw, 82px);
  line-height: 1.06;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 620px;
  margin: 26px 0 0;
  color: #354643;
  font-size: 21px;
  line-height: 1.75;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 800;
}

.button.primary {
  color: white;
  background: var(--ink);
}

.button.secondary {
  border-color: rgba(7, 26, 68, 0.18);
  background: white;
  color: var(--ink);
}

.hero-strip {
  position: absolute;
  right: 5vw;
  bottom: 34px;
  left: 5vw;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 980px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-strip span {
  min-height: 68px;
  display: grid;
  place-items: center;
  padding: 14px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--graphite);
  font-weight: 800;
  text-align: center;
}

.section {
  padding: 96px 5vw;
}

.page-hero {
  padding: 92px 5vw 76px;
  background:
    linear-gradient(90deg, rgba(247, 250, 248, 0.98), rgba(238, 246, 241, 0.76)),
    var(--hero-image, none);
  background-position: center;
  background-size: cover;
}

.home-intro {
  padding-top: 82px;
}

.page-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.08;
  letter-spacing: 0;
}

.page-hero p:last-child {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 20px;
}

.muted {
  background: var(--mist);
}

.split,
.section-heading,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 72px;
  align-items: start;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.22;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.35;
}

.prose p,
.section-heading p,
.brand-card p,
.post-card p,
.contact-panel p,
.qa-list p,
.value-list p {
  margin: 0;
  color: var(--muted);
}

.prose {
  display: grid;
  gap: 18px;
  font-size: 18px;
}

.subnav-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.subnav-panel a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: var(--graphite);
  font-size: 14px;
  font-weight: 800;
}

.subnav-panel a:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.subnav-panel.inline {
  align-content: start;
  margin-top: 0;
}

.business-grid,
.brand-grid,
.post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.business-grid article,
.brand-card,
.post-card,
.mission-card,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.business-grid article {
  min-height: 250px;
  padding: 30px;
}

.service-business {
  margin-top: 18px;
}

.business-grid span {
  display: inline-block;
  margin-bottom: 48px;
  color: var(--gold);
  font-weight: 900;
}

.business-grid h3,
.brand-card h3,
.post-card h3,
.post-card h2 {
  margin-bottom: 14px;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.mission-card {
  min-height: 330px;
  padding: 38px;
}

.mission-card.dark {
  color: white;
  background: var(--graphite);
  border-color: var(--graphite);
}

.mission-card.dark .section-kicker {
  color: #9cd4ca;
}

.values h2 {
  max-width: 820px;
}

.value-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.value-list div {
  padding-top: 22px;
  border-top: 2px solid var(--teal);
}

.value-list strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
}

.section-heading {
  margin-bottom: 34px;
}

.section-heading.simple {
  align-items: end;
}

.section-heading p {
  max-width: 620px;
  font-size: 18px;
}

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

.brand-card {
  min-height: 410px;
  padding: 34px;
}

.tag {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 7px 10px;
  border-radius: 8px;
  background: var(--soft);
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
}

.brand-card ul {
  display: grid;
  gap: 10px;
  padding-left: 18px;
  margin: 24px 0 0;
  color: #354643;
}

.story {
  background: linear-gradient(180deg, #ffffff, #eef6f1);
}

.story h2 {
  max-width: 820px;
}

.qa-list {
  display: grid;
  gap: 12px;
  max-width: 920px;
  margin-top: 34px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

summary {
  cursor: pointer;
  padding: 22px 24px;
  font-size: 19px;
  font-weight: 900;
}

details p {
  padding: 0 24px 24px;
}

.text-link {
  justify-self: end;
  color: var(--teal);
  font-weight: 900;
}

.text-link.align-left {
  justify-self: start;
}

.summary-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.summary-row article {
  display: grid;
  gap: 10px;
  min-height: 150px;
  padding: 26px;
  border-right: 1px solid var(--line);
}

.summary-row article:last-child {
  border-right: 0;
}

.summary-row strong {
  color: var(--ink);
  font-size: 20px;
}

.summary-row span {
  color: var(--muted);
}

.business-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.business-list a {
  display: grid;
  grid-template-columns: 80px 0.7fr 1fr;
  gap: 24px;
  align-items: center;
  min-height: 96px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.business-list span {
  color: var(--teal-dark);
  font-weight: 900;
}

.business-list strong {
  font-size: 22px;
}

.business-list p {
  margin: 0;
  color: var(--muted);
}

.home-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: var(--ink);
  color: white;
}

.home-contact .section-kicker {
  color: #5fd1df;
}

.home-contact h2 {
  max-width: 760px;
}

.home-contact .button.primary {
  background: var(--teal);
}

.post-card {
  min-height: 220px;
  padding: 28px;
}

.post-card.with-thumb {
  padding: 0;
  overflow: hidden;
}

.post-thumb {
  display: grid;
  width: 100%;
  aspect-ratio: 16 / 9;
  place-items: center;
  background: linear-gradient(135deg, var(--soft), #ffffff);
  color: var(--teal);
  font-size: 28px;
  font-weight: 900;
}

.post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-body {
  padding: 24px;
}

.post-card time {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.post-card a:hover {
  color: var(--teal);
}

.contact {
  align-items: center;
  background: var(--graphite);
  color: white;
}

.contact .section-kicker {
  color: #9cd4ca;
}

.contact-panel {
  padding: 34px;
  color: var(--ink);
}

.contact-panel > a {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--teal);
  font-size: 24px;
  font-weight: 900;
}

.contact-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 18px;
}

.contact-links a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 8px;
  background: var(--soft);
  color: var(--teal);
  font-weight: 900;
  text-align: center;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.contact-methods a {
  display: grid;
  min-height: 170px;
  align-content: space-between;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.contact-methods strong {
  font-size: 22px;
}

.contact-methods span {
  color: var(--teal);
  font-weight: 900;
}

.feature-list {
  display: grid;
  gap: 8px;
  padding-left: 18px;
  margin: 22px 0 0;
  color: #354643;
}

.quick-contact {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  display: grid;
  gap: 8px;
}

.quick-contact a {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  background: var(--ink);
  color: white;
  box-shadow: 0 10px 24px rgba(7, 26, 68, 0.22);
  font-size: 13px;
  font-weight: 900;
}

.quick-kakao {
  background: #fee500 !important;
  color: #3a1d1d !important;
}

.quick-insta {
  background: linear-gradient(135deg, #f58529, #dd2a7b 45%, #8134af 72%, #515bd4) !important;
}

.quick-contact svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quick-kakao svg {
  fill: currentColor;
  stroke: none;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 36px 5vw;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer p {
  margin: 4px 0 0;
}

.archive-head {
  padding-bottom: 32px;
  background: var(--mist);
}

.archive-head h1,
.article h1 {
  margin: 0;
  font-size: clamp(36px, 6vw, 66px);
  line-height: 1.12;
}

.post-list-section {
  padding-top: 48px;
}

.article {
  max-width: 880px;
  margin: 0 auto;
}

.article-content {
  margin-top: 34px;
  color: #354643;
  font-size: 18px;
}

.article-content a {
  color: var(--teal);
  font-weight: 800;
}

.article-content img {
  height: auto;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  gap: 10px;
  margin-top: 32px;
}

.nav-links a,
.nav-links span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

@media (max-width: 900px) {
  .site-header {
    min-height: 74px;
  }

  .menu-toggle {
    display: block;
  }

  .primary-nav {
    position: absolute;
    top: 74px;
    right: 5vw;
    left: 5vw;
    display: none;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    box-shadow: var(--shadow);
  }

  .primary-nav.is-open {
    display: block;
  }

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

  .sub-menu {
    position: static;
    display: grid;
    min-width: 0;
    padding: 8px 0 0 12px;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .hero {
    min-height: auto;
    padding-top: 76px;
    padding-bottom: 190px;
    background-image:
      linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.85) 52%, rgba(255, 255, 255, 0.46) 100%),
      var(--hero-image);
    background-position: center right 30%;
  }

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

  .hero-lead {
    font-size: 18px;
  }

  .hero-strip,
  .split,
  .section-heading,
  .contact,
  .mission-grid,
  .brand-grid,
  .home-banner,
  .home-board,
  .news-list,
  .home-main-grid,
  .business-tile-grid,
  .icon-card-grid {
    grid-template-columns: 1fr;
  }

  .home-dashboard {
    padding-top: 22px;
  }

  .banner-actions {
    flex-wrap: wrap;
  }

  .hero-strip {
    bottom: 22px;
  }

  .business-grid,
  .post-grid,
  .value-list,
  .contact-methods,
  .summary-row {
    grid-template-columns: 1fr;
  }

  .summary-row article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .summary-row article:last-child {
    border-bottom: 0;
  }

  .business-list a {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .home-contact {
    align-items: flex-start;
    flex-direction: column;
  }

  .slide {
    grid-template-columns: minmax(0, 1fr) 260px;
    min-height: 208px;
    padding: 22px;
  }

  .slide-media {
    height: 150px;
    min-height: 0;
  }

  .slide-media img {
    max-height: 150px;
  }

  .contact-bar {
    align-items: flex-start;
    flex-direction: column;
  }

  .section {
    padding: 72px 5vw;
  }

  .text-link {
    justify-self: start;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .brand-copy small {
    display: none;
  }

  .logo-brand img {
    width: 178px;
    max-height: 54px;
  }

  .hero {
    padding-bottom: 250px;
  }

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

  .home-hero {
    min-height: 560px;
  }

  .home-hero h1 {
    font-size: 58px;
  }

  .home-hero h1::after {
    font-size: 12px;
    letter-spacing: 0.32em;
  }

  .hero-strip {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .banner-actions,
  .contact-bar > div {
    width: 100%;
    flex-direction: column;
  }

  .home-top,
  .home-main-grid,
  .business-preview-band {
    padding-right: 4vw;
    padding-left: 4vw;
  }

  .slide-copy h1 {
    font-size: 28px;
  }

  .contact-bar p {
    font-size: 18px;
  }

  .home-banner {
    padding: 24px;
  }

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

  .news-item {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .news-thumb {
    width: 82px;
    height: 62px;
  }

  .business-grid article,
  .brand-card,
  .post-card,
  .mission-card,
  .contact-panel {
    padding: 24px;
  }

  .post-card.with-thumb {
    padding: 0;
  }

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

  .quick-contact {
    right: 12px;
    bottom: 12px;
  }
}

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

  .slide-media {
    display: none;
  }

  .slider-dots {
    right: 20px;
    bottom: 14px;
  }
}
