@font-face {
  font-family: "Pretendard";
  src: url("../fonts/pretendard/Pretendard-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Pretendard";
  src: url("../fonts/pretendard/Pretendard-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Pretendard";
  src: url("../fonts/pretendard/Pretendard-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Pretendard";
  src: url("../fonts/pretendard/Pretendard-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Sogo";
  src: url("../fonts/sogo/sogo-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Sogo";
  src: url("../fonts/sogo/sogo-medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Sogo";
  src: url("../fonts/sogo/sogo-bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "MaruBuri";
  src: url("../fonts/maruburi/MaruBuri-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --font-body: "Pretendard", sans-serif;
  --font-display: "Sogo", serif;
  --font-accent: "MaruBuri", serif;

  --color-white: #ffffff;
  --color-black: #111111;
  --color-gray-1: #444444;
  --color-gray-2: #999999;
  --color-gray-3: #dddddd;
  --color-gray-4: #d9d9d9;
  --color-gold: #816c5b;
  --color-gold-line: #cbbd9a;
  --color-hero: #8b8782;
  --color-surface-dark: #222222;

  --page-min-width: 0px;
  --shell-1680: 1680px;
  --shell-1400: 1400px;
  --shell-1200: 1200px;
  --radius-xl: 24px;
  --circle-arrow-size: 48px;
  --ease-standard: 0.25s ease;
  --footer-marquee-offset: 190px;
  --footer-marquee-duration: 32s;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-width: var(--page-min-width);
  scroll-behavior: auto;
}

body {
  margin: 0;
  min-width: var(--page-min-width);
  font-family: var(--font-body);
  font-weight: 400;
  font-synthesis: none;
  font-kerning: normal;
  color: var(--color-black);
  background: var(--color-white);
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
a {
  color: inherit;
  cursor: pointer;
}

button {
  padding: 0;
  border: 0;
  background: transparent;
  font: inherit;
}

button:disabled {
  cursor: default;
}

a {
  text-decoration: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}

p {
  margin: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.l-page {
  position: relative;
  min-width: var(--page-min-width);
  overflow-x: clip;
}

.l-shell-1680,
.l-shell-1400,
.l-shell-1200 {
  width: calc(100% - 48px);
  margin: 0 auto;
}

.l-shell-1680 {
  max-width: var(--shell-1680);
}

.l-shell-1400 {
  max-width: var(--shell-1400);
}

.l-shell-1200 {
  max-width: var(--shell-1200);
}

.c-header {
  position: absolute;
  top: 60px;
  left: 0;
  z-index: 20;
  width: 100%;
}

.c-header__inner {
  position: relative;
  z-index: 32;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 40px;
}

.c-header__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--color-white);
}

.c-header__toggle-icon {
  display: block;
  width: 24px;
  height: 24px;
  background-color: currentColor;
  -webkit-mask: center / contain no-repeat url("../images/common/menu-toggle.svg");
  mask: center / contain no-repeat url("../images/common/menu-toggle.svg");
  transition: opacity var(--ease-standard);
}

.c-header__toggle.is-open .c-header__toggle-icon {
  -webkit-mask-image: url("../images/common/menu-close.svg");
  mask-image: url("../images/common/menu-close.svg");
}

.c-mobile-nav {
  position: absolute;
  top: calc(100% + 16px);
  right: 24px;
  z-index: 31;
  width: min(320px, calc(100% - 48px));
  overflow: hidden;
  padding: 2px 0;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 36px rgba(17, 17, 17, 0.12);
  backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--ease-standard), transform var(--ease-standard), visibility var(--ease-standard);
}

.c-mobile-nav::before {
  display: none;
}

.c-mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 24;
  display: block;
  background: rgba(17, 17, 17, 0.06);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--ease-standard), visibility var(--ease-standard);
}

.c-mobile-nav-backdrop[hidden] {
  display: none !important;
}

.c-mobile-nav-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.c-mobile-nav[hidden] {
  display: none !important;
}

.c-mobile-nav.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.c-mobile-nav__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.c-mobile-nav__item {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 100%;
  min-height: 56px;
  padding: 14px 20px;
  border: 0;
  border-radius: 0;
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0.02em;
  color: var(--color-black);
  background: transparent;
  transition:
    background-color var(--ease-standard),
    opacity var(--ease-standard);
}

.c-mobile-nav__item + .c-mobile-nav__item {
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.c-mobile-nav__item::after {
  content: "";
  width: 12px;
  height: 8px;
  margin-left: auto;
  background-color: currentColor;
  -webkit-mask: center / contain no-repeat url("../images/common/arrow-right.svg");
  mask: center / contain no-repeat url("../images/common/arrow-right.svg");
  opacity: 0.64;
  transition: transform var(--ease-standard), opacity var(--ease-standard);
}

.c-mobile-nav__item:hover {
  opacity: 1;
  background: rgba(17, 17, 17, 0.04);
}

.c-mobile-nav__item:hover::after {
  transform: translateX(1px);
  opacity: 1;
}

.c-logo {
  display: inline-flex;
  align-items: center;
  width: 220px;
  height: 38px;
  color: var(--color-white);
}

.c-logo__image {
  width: 220px;
  height: 38px;
  object-fit: contain;
}

.c-gnb {
  display: flex;
  align-items: center;
  gap: 48px;
  font-family: var(--font-display);
  font-size: 14px;
  line-height: 20px;
  color: var(--color-white);
  letter-spacing: 0.02em;
}

.c-gnb__item {
  white-space: nowrap;
  cursor: pointer;
  transition: opacity var(--ease-standard);
}

.c-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.c-section-head__copy {
  min-width: 0;
}

.c-section-head__eyebrow {
  margin-bottom: 12px;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 30px;
  font-weight: 500;
}

.c-section-head__title {
  font-family: var(--font-display);
  font-size: 48px;
  line-height: 62px;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.c-section-head__desc {
  margin-top: 12px;
  font-size: 18px;
  line-height: 30px;
  color: var(--color-gray-1);
}

.c-bullet-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.c-bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-width: 0;
}

.c-bullet-item::before {
  content: "";
  flex: none;
  width: 4px;
  height: 4px;
  margin-top: 12px;
  background: currentColor;
}

.c-bullet-item__text {
  min-width: 0;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 400;
  letter-spacing: 0;
  word-break: keep-all;
  overflow-wrap: normal;
}

.c-circle-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--circle-arrow-size);
  height: var(--circle-arrow-size);
  color: currentColor;
  cursor: pointer;
  transition: transform var(--ease-standard), opacity var(--ease-standard);
}

.c-circle-arrow::before {
  content: "";
  width: 100%;
  height: 100%;
  background: center / contain no-repeat url("../images/common/circle-arrow.svg");
}

.c-circle-arrow--disabled::before {
  background-image: url("../images/common/circle-arrow-disabled.svg");
}

.c-circle-arrow--disabled {
  cursor: default;
  pointer-events: none;
}

.c-circle-arrow--prev {
  transform: rotate(180deg);
}

.c-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 16px;
  line-height: 28px;
  color: inherit;
  white-space: nowrap;
  cursor: pointer;
  transition: opacity var(--ease-standard);
}

.c-link-arrow::after {
  content: "";
  width: 14px;
  height: 10px;
  background-color: currentColor;
  -webkit-mask: center / contain no-repeat url("../images/common/arrow-right.svg");
  mask: center / contain no-repeat url("../images/common/arrow-right.svg");
  transition: transform var(--ease-standard);
}

.c-link-circle {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 18px;
  line-height: 30px;
  color: inherit;
  white-space: nowrap;
  cursor: pointer;
  transition: opacity var(--ease-standard);
}

.c-link-circle__arrow {
  flex: none;
}

a:not(.c-logo):hover,
button:hover,
.c-gnb__item:hover,
.c-link-arrow:hover,
.c-link-circle:hover,
.c-circle-arrow:not(.c-circle-arrow--disabled):hover {
  opacity: 0.72;
}

.c-link-arrow:hover::after,
.c-link-circle:hover .c-link-circle__arrow {
  transform: translateX(2px);
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: 4px;
}

.c-file-icon {
  flex: none;
  width: 24px;
  height: 24px;
  background-color: currentColor;
  -webkit-mask: center / contain no-repeat url("../images/common/file.svg");
  mask: center / contain no-repeat url("../images/common/file.svg");
}

.c-media-slot {
  position: relative;
  overflow: hidden;
  background: var(--color-gray-4);
}

.c-media-slot__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-media-slot--news::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.18));
}

.c-section-rail {
  position: absolute;
  top: 0;
  bottom: 0;
  left: clamp(58px, calc(50% - 872px), 88px);
  width: 1px;
  background: var(--color-gold-line);
  pointer-events: none;
  overflow: visible;
}

.c-section-rail__text {
  position: absolute;
  top: 32px;
  left: -58px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 116px;
}

.c-section-rail__label {
  display: block;
  transform: rotate(90deg);
  transform-origin: center;
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0.02em;
  color: var(--color-gold-line);
  white-space: nowrap;
}

.c-section-divider {
  display: none;
  padding-top: 12px;
  margin-bottom: 28px;
  border-top: 1px solid var(--color-gold-line);
}

.c-section-divider__label {
  display: inline-block;
  margin-top: 12px;
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0.02em;
  color: var(--color-gold-line);
  white-space: nowrap;
}

.c-footer {
  position: relative;
  overflow: hidden;
  padding-top: 64px;
  padding-bottom: 80px;
  background: var(--color-black);
  color: var(--color-white);
}

.c-footer::before,
.c-footer::after {
  content: "";
  position: absolute;
  left: 50%;
  width: min(1600px, calc(100% - 320px));
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.12);
}

.c-footer::before {
  top: 0;
  height: 1px;
}

.c-footer::after {
  display: none;
}

.c-footer-brand {
  overflow: hidden;
}

.c-footer-brand__track {
  display: flex;
  align-items: center;
  width: max-content;
  will-change: transform;
  animation: footer-marquee var(--footer-marquee-duration) linear infinite;
}

.c-footer-brand__group {
  display: flex;
  align-items: center;
  gap: 80px;
  flex: none;
  min-width: max-content;
  margin-right: 80px;
  font-family: var(--font-display);
  font-size: 100px;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

@keyframes footer-marquee {
  from {
    transform: translateX(calc(-1 * var(--footer-marquee-offset)));
  }

  to {
    transform: translateX(calc(-50% - var(--footer-marquee-offset)));
  }
}

.c-footer__legal {
  position: relative;
  z-index: 1;
  width: min(1600px, calc(100% - 320px));
  margin: 64px auto 0;
  padding-top: 41px;
  font-size: 16px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.8);
}

.c-footer__legal::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.c-footer__legal-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: max-content;
  margin: 0 auto;
  gap: 24px;
  white-space: nowrap;
}

.c-footer__legal-row + .c-footer__legal-row {
  margin-top: 8px;
}

.page-home {
  background: var(--color-white);
}

@media (prefers-reduced-motion: reduce) {
  .c-footer-brand__track {
    animation: none;
    transform: translateX(0);
  }
}

.hero-home {
  position: relative;
  height: 1080px;
  background: var(--color-hero);
  color: var(--color-white);
}

.hero-home__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-home__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.5);
}

.hero-home__headline {
  position: absolute;
  top: 474px;
  left: 50%;
  width: 505px;
  transform: translateX(-50%);
  text-align: center;
}

.hero-home__brand {
  font-family: var(--font-display);
  font-size: 72px;
  line-height: 86px;
  font-weight: 400;
  letter-spacing: 0;
  font-style: normal;
  text-rendering: optimizeLegibility;
  white-space: nowrap;
}

.hero-home__tagline {
  margin-top: 16px;
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  letter-spacing: 0;
  white-space: nowrap;
}

.home-intro {
  position: relative;
  min-height: 741px;
  border-top: 1px solid var(--color-gold);
  border-bottom: 1px solid var(--color-gold-line);
  background: var(--color-white);
}

.home-intro__inner {
  position: relative;
  padding-top: 189px;
  padding-bottom: 100px;
}

.home-intro__copy {
  width: 614px;
}

.home-intro__title {
  font-family: var(--font-display);
  font-size: 48px;
  line-height: 62px;
  font-weight: 400;
  letter-spacing: 0.96px;
  font-style: normal;
  text-rendering: optimizeLegibility;
}

.home-intro__lead {
  margin-top: 32px;
  font-size: 24px;
  line-height: 40px;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--color-black);
  white-space: nowrap;
}

.home-intro__bullets {
  width: 614px;
  margin-top: 16px;
  color: var(--color-gray-1);
}

.home-intro__media-wrap {
  position: absolute;
  top: 1px;
  right: 0;
}

.home-intro__media {
  width: clamp(780px, 49.3vw, 946px);
  height: 740px;
}

.home-services {
  padding-top: 120px;
  padding-bottom: 117px;
  background: var(--color-white);
}

.home-services__desc {
  max-width: 840px;
  white-space: nowrap;
}

.home-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 448px);
  gap: 28px;
  margin-top: 40px;
}

.service-card {
  min-width: 0;
}

.service-card__media {
  width: 100%;
  height: 252px;
}

.service-card__body {
  margin-top: 24px;
}

.service-card__title {
  min-height: 72px;
  font-size: 20px;
  line-height: 36px;
  font-weight: 600;
  letter-spacing: 0;
  word-break: keep-all;
  color: var(--color-black);
}

.service-card__list {
  width: 389px;
  margin-top: 16px;
  color: var(--color-gray-1);
}

.home-news {
  position: relative;
  min-height: 897px;
  border-top: 1px solid var(--color-gold-line);
  border-bottom: 1px solid var(--color-gold-line);
  background: var(--color-white);
}

.home-news__inner {
  padding-top: 120px;
  padding-bottom: 120px;
}

.home-news__link {
  margin-bottom: 0;
  color: var(--color-black);
}

.home-news__content {
  position: relative;
  margin-top: 32px;
}

.home-news__viewport {
  overflow: hidden;
}

.home-news__track {
  display: flex;
  transition: transform 0.4s ease;
  will-change: transform;
}

.home-news__slide {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: 832px minmax(0, 520px);
  gap: 48px;
  align-items: start;
}

.home-news__slide[aria-hidden="true"] {
  pointer-events: none;
}

.home-news__media {
  width: 832px;
  height: 520px;
}

.home-news__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 60px;
  min-height: 520px;
  padding-bottom: calc(var(--circle-arrow-size) + 60px);
}

.home-news__copy {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}

.home-news__headline {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.home-news__dot-shell {
  display: none;
}

.home-news__pager-shell {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
}

.home-news__title {
  font-size: 24px;
  line-height: 40px;
  font-weight: 600;
  letter-spacing: 0;
  word-break: keep-all;
  color: var(--color-black);
}

.home-news__url {
  display: inline-block;
  max-width: 100%;
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--color-gray-1);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.home-news__actions {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  width: max-content;
  font-size: 16px;
  line-height: 28px;
  color: var(--color-gray-1);
}

.home-news__pager {
  display: flex;
  gap: 16px;
}

.home-news__pager-button {
  flex: none;
}

.home-news__pager-button:disabled {
  cursor: default;
}

.home-news__dots {
  display: none;
  align-items: center;
  gap: 8px;
}

.home-news__dot {
  flex: none;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--color-gray-3);
  transition: background-color var(--ease-standard), transform var(--ease-standard);
}

.home-news__dot--active {
  background: var(--color-black);
}

.home-contact {
  padding-top: 120px;
  padding-bottom: 120px;
  background: var(--color-white);
}

.home-contact__inner {
  display: grid;
  grid-template-columns: 769px 567px;
  gap: 64px;
  align-items: start;
}

.home-contact__copy {
  padding-top: 90px;
}

.home-contact__title {
  font-family: var(--font-display);
  font-size: 42px;
  line-height: 54px;
  font-weight: 400;
  letter-spacing: 0.84px;
  font-style: normal;
  text-rendering: optimizeLegibility;
}

.home-contact__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--color-gray-1);
  white-space: nowrap;
}

.home-contact__meta-divider {
  width: 1px;
  height: 13px;
  background: var(--color-gray-3);
}

.home-contact__link {
  margin-top: 24px;
  color: var(--color-gray-1);
}

.home-contact__media {
  width: 567px;
  height: 319px;
}

.page-home .c-footer {
  min-height: 426px;
}

@media (max-width: 1520px) {
  .home-intro {
    min-height: 0;
    border-top: 0;
    border-bottom: 0;
  }

  .home-intro .c-section-rail {
    display: none;
  }

  .home-intro .c-section-divider {
    display: block;
  }

  .home-intro__inner {
    padding-top: 0;
    padding-bottom: 88px;
  }

  .home-intro__media-wrap {
    position: relative;
    top: 0;
    right: auto;
    width: 100%;
  }

  .home-intro__media {
    width: 100%;
    height: clamp(420px, 36vw, 540px);
  }

  .home-intro__copy {
    width: 100%;
    max-width: 720px;
    margin: 64px auto 0;
  }

  .home-intro__lead {
    white-space: normal;
  }

  .home-intro__bullets {
    width: 100%;
  }
}

@media (max-width: 1279px) {
  .page-home {
    --footer-marquee-offset: 120px;
    --footer-marquee-duration: 30s;
  }

  .l-shell-1680,
  .l-shell-1400,
  .l-shell-1200 {
    width: calc(100% - 64px);
    max-width: none;
  }

  .c-header {
    top: 32px;
  }

  .c-header__inner > nav:first-of-type {
    display: none;
  }

  .c-header__toggle {
    display: inline-flex;
  }

  .c-mobile-nav {
    right: 32px;
    width: min(400px, calc(100% - 64px));
  }

  .c-section-rail {
    display: none;
  }

  .c-section-divider {
    display: block;
  }

  .hero-home {
    height: 820px;
  }

  .hero-home__media img {
    object-position: center 46%;
  }

  .hero-home__headline {
    top: 50%;
    width: min(420px, calc(100% - 64px));
    transform: translate(-50%, -20%);
  }

  .hero-home__brand {
    font-size: 56px;
    line-height: 68px;
  }

  .hero-home__tagline {
    font-size: 18px;
    line-height: 28px;
  }

  .home-intro {
    min-height: 0;
    border-top: 0;
    border-bottom: 0;
  }

  .home-intro__inner {
    padding-top: 0;
    padding-bottom: 96px;
  }

  .home-intro__media-wrap {
    position: relative;
    top: 0;
    right: auto;
    width: 100%;
  }

  .home-intro__media {
    width: 100%;
    height: 540px;
  }

  .home-intro__copy {
    width: 100%;
    max-width: 720px;
    margin: 72px auto 0;
  }

  .home-intro__title {
    font-size: 40px;
    line-height: 52px;
  }

  .home-intro__lead {
    white-space: normal;
    font-size: 20px;
    line-height: 34px;
  }

  .home-intro__bullets {
    width: 100%;
  }

  .home-services {
    padding-top: 96px;
    padding-bottom: 104px;
  }

  .home-services__desc {
    max-width: 680px;
    white-space: normal;
  }

  .home-services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px 24px;
  }

  .service-card:last-child {
    grid-column: 1 / -1;
  }

  .service-card__media {
    height: 260px;
  }

  .service-card__title {
    min-height: 0;
  }

  .service-card__list {
    width: 100%;
  }

  .home-news {
    min-height: 0;
  }

  .home-news__inner {
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .home-news__content {
    margin-top: 32px;
  }

  .home-news__slide {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .home-news__media {
    width: 100%;
    height: 420px;
  }

  .home-news__text {
    justify-content: flex-start;
    min-height: 0;
    max-width: 720px;
    padding-bottom: 0;
  }

  .home-news__copy {
    max-width: 720px;
  }

  .home-news__dot-shell {
    display: flex;
    width: 100%;
    max-width: 720px;
    margin-top: 24px;
  }

  .home-news__pager-shell {
    display: none;
  }

  .home-news__url {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    overflow-wrap: anywhere;
  }

  .home-news__pager {
    display: none;
  }

  .home-news__dots {
    display: flex;
    justify-content: flex-start;
  }

  .home-contact {
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .home-contact__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .home-contact__copy {
    order: 2;
    max-width: 720px;
    padding-top: 0;
  }

  .home-contact__media {
    order: 1;
    width: 100%;
    height: 420px;
  }

  .home-contact__media .c-media-slot__image {
    object-position: center 22%;
  }

  .c-footer {
    padding-top: 56px;
    padding-bottom: 64px;
  }

  .c-footer::before {
    width: calc(100% - 64px);
  }

  .c-footer-brand__group {
    gap: 64px;
    margin-right: 64px;
    font-size: 72px;
  }

  .c-footer__legal {
    width: calc(100% - 64px);
    margin-top: 48px;
    padding-top: 24px;
  }

  .c-footer__legal-row {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 4px;
    white-space: normal;
  }

  .c-footer__legal-row + .c-footer__legal-row {
    margin-top: 12px;
  }
}

@media (max-width: 767px) {
  .page-home {
    --footer-marquee-offset: 48px;
    --footer-marquee-duration: 26s;
  }

  .l-shell-1680,
  .l-shell-1400,
  .l-shell-1200 {
    width: calc(100% - 40px);
  }

  .c-header {
    top: 20px;
  }

  .c-header__inner {
    min-height: 24px;
  }

  .c-logo {
    width: 120px;
    height: 21px;
  }

  .c-logo__image {
    width: 120px;
    height: 21px;
  }

  .c-header__toggle {
    width: 24px;
    height: 24px;
  }

  .c-header__toggle-icon {
    width: 24px;
    height: 24px;
  }

  .c-mobile-nav {
    top: calc(100% + 12px);
    right: 20px;
    width: calc(100% - 56px);
    padding: 2px 0;
  }

  .c-mobile-nav__item {
    min-height: 52px;
    padding: 14px 16px;
    font-size: 18px;
    line-height: 26px;
  }

  .hero-home {
    height: 480px;
  }

  .hero-home__media img {
    object-position: center 42%;
  }

  .hero-home__headline {
    top: 201px;
    width: 320px;
    transform: translateX(-50%);
  }

  .hero-home__brand {
    font-size: 36px;
    line-height: 43px;
  }

  .hero-home__tagline {
    margin-top: 8px;
    font-size: 18px;
    line-height: 27px;
  }

  .home-intro__inner {
    padding-bottom: 52px;
  }

  .home-intro__media {
    height: 360px;
  }

  .home-intro__copy {
    width: 320px;
    margin-top: 28px;
  }

  .home-intro__title {
    font-size: 32px;
    line-height: 42px;
    letter-spacing: 0.02em;
  }

  .home-intro__lead {
    margin-top: 24px;
    font-size: 18px;
    line-height: 30px;
  }

  .c-bullet-list {
    gap: 8px;
  }

  .c-bullet-item {
    gap: 8px;
  }

  .c-bullet-item::before {
    width: 3px;
    height: 3px;
    margin-top: 10px;
  }

  .c-bullet-item__text {
    font-size: 16px;
    line-height: 24px;
  }

  .c-section-divider {
    margin-bottom: 24px;
  }

  .c-section-head__title {
    font-size: 32px;
    line-height: 42px;
    letter-spacing: 0.02em;
  }

  .c-section-head__desc {
    margin-top: 12px;
    font-size: 16px;
    line-height: 24px;
  }

  .home-services {
    padding-top: 52px;
    padding-bottom: 40px;
  }

  .home-services__desc {
    max-width: 320px;
    font-size: 16px;
    line-height: 24px;
  }

  .home-services__grid {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 24px;
  }

  .service-card {
    width: 320px;
    margin: 0 auto;
  }

  .service-card:last-child {
    grid-column: auto;
  }

  .service-card__media {
    height: 229px;
  }

  .service-card__body {
    margin-top: 20px;
  }

  .service-card__title {
    font-size: 18px;
    line-height: 30px;
  }

  .service-card__list {
    margin-top: 12px;
  }

  .home-news__inner {
    padding-top: 56px;
    padding-bottom: 64px;
  }

  .home-news__content {
    margin-top: 24px;
  }

  .home-news__slide {
    gap: 20px;
  }

  .home-news__media {
    width: 320px;
    height: 182px;
    margin: 0 auto;
  }

  .home-news__text {
    width: 320px;
    max-width: none;
    margin: 0 auto;
  }

  .home-news__copy {
    width: 320px;
    max-width: none;
    gap: 20px;
  }

  .home-news__dot-shell {
    width: 320px;
    max-width: none;
    margin: 20px auto 0;
  }

  .home-news__title {
    font-size: 18px;
    line-height: 30px;
  }

  .home-news__url,
  .home-news__actions {
    font-size: 16px;
    line-height: 24px;
  }

  .home-news__dots {
    width: 100%;
    justify-content: center;
  }

  .home-news__link {
    gap: 0;
  }

  .home-news__link > span:first-child {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .home-news__link .c-link-circle__arrow {
    width: 32px;
    height: 32px;
  }

  .home-news__dots {
    justify-content: center;
  }

  .home-contact {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .home-contact__inner {
    gap: 28px;
  }

  .home-contact__media {
    width: 320px;
    height: 182px;
    margin: 0 auto;
  }

  .home-contact__copy {
    width: 320px;
    max-width: none;
    margin: 0 auto;
  }

  .home-contact__title {
    font-size: 32px;
    line-height: 42px;
    letter-spacing: 0.02em;
  }

  .home-contact__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    margin-top: 12px;
    white-space: normal;
  }

  .home-contact__meta-divider {
    display: none;
  }

  .home-contact__link {
    margin-top: 16px;
    font-size: 16px;
    line-height: 24px;
  }

  .c-footer {
    padding-top: 32px;
    padding-bottom: 36px;
  }

  .c-footer::before {
    width: 100%;
  }

  .c-footer-brand__group {
    gap: 48px;
    margin-right: 48px;
    font-size: 48px;
    line-height: 1.1;
  }

  .c-footer__legal {
    width: 320px;
    margin-top: 36px;
    padding-top: 20px;
    font-size: 12px;
    line-height: 20px;
  }

  .page-home .c-footer {
    min-height: 0;
  }
}
