:root {
  --navy: #071a33;
  --ink: #30323a;
  --muted: #697284;
  --blue: #176fc9;
  --green: #25784b;
  --line: #dfe5ee;
  --pale: #f4f7fb;
  --white: #fff;
  --max: 1120px;
  --header: 66px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  color: var(--ink);
  background: var(--white);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header);
}

body {
  margin: 0;
  line-height: 1.8;
  letter-spacing: 0;
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 24px rgba(7, 26, 51, 0.08);
}


.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 50px;
  height: 50px;
}



.brand-mark span {
  height: 30px;
  background: var(--navy);
}

.brand-name {
  color: var(--navy);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.desktop-nav {
  display: none;
}

.header-contact {
  display: none;
}

.mobile-menu {
  position: relative;
}

.mobile-menu[open]::before {
  content: "";
  position: fixed;
  inset: var(--header) 0 0;
  z-index: 18;
  background: rgba(0, 0, 0, 0.56);
}

.mobile-menu summary {
  list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.menu-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  color: var(--navy);
  background: transparent;
  border: 0;
  font: inherit;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.18em;
  cursor: pointer;
}

.menu-button i,
.menu-button i::before,
.menu-button i::after {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.menu-button i {
  position: relative;
}

.menu-button i::before,
.menu-button i::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-button i::before {
  top: -7px;
}

.menu-button i::after {
  top: 7px;
}

.mobile-menu[open] .menu-button i {
  background: transparent;
}

.mobile-menu[open] .menu-button i::before {
  top: 0;
  transform: rotate(45deg);
}

.mobile-menu[open] .menu-button i::after {
  top: 0;
  transform: rotate(-45deg);
}

.mobile-panel {
  position: fixed;
  top: var(--header);
  left: 0;
  right: 0;
  z-index: 19;
  display: grid;
  justify-items: center;
  padding: 22px 22px 26px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--line);
  transform-origin: top;
}

.mobile-menu:not([open]) .mobile-panel {
  display: none;
}

.mobile-panel a {
  min-width: min(260px, 100%);
  padding: 14px 0;
  text-align: center;
  font-size: 16px;
  font-weight: 800;
  border-bottom: 1px solid var(--line);
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header));
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  overflow: hidden;
  background: var(--navy);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;

  transform: scale(1.03);
  animation: heroImageSettle 4.8s cubic-bezier(0.2, 0.75, 0.25, 1) both;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 28% 0 0 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(7, 26, 51, 0), rgba(7, 26, 51, 0.92) 62%, var(--navy));
}

.hero-copy {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0 22px 54px;
  color: var(--white);
  animation: heroCopyIn 1s cubic-bezier(0.2, 0.75, 0.25, 1) 0.5s both;
}

.hero h1 {
  margin: 0 0 18px;
  font-size: 36px;
  line-height: 1.17;
  letter-spacing: 0.02em;
}

.hero p {
  max-width: 33em;
  margin: 0 0 26px;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 8px 24px;
  border: 1px solid currentColor;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.04em;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.button::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: 16px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.button.primary {
  color: var(--white);
  border-color: var(--blue);
  background: linear-gradient(135deg, var(--blue), #173987);
}

.button:hover {
  transform: translateY(-2px);
}

.button.outline {
  color: var(--navy);
  background: var(--white);
}

.button.light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(7, 26, 51, 0.44);
}

.text-link {
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  border-bottom: 1px solid currentColor;
}

.vertical-word {
  position: absolute;
  right: 10px;
  bottom: 86px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.22em;
  writing-mode: vertical-rl;
  animation: verticalWordIn 1.1s cubic-bezier(0.2, 0.75, 0.25, 1) 0.55s both;
}

.section {
  padding: 82px 0;
  background: var(--white);
  overflow: hidden;
}

.section-inner {
  width: min(100% - 44px, var(--max));
  margin: 0 auto;
}

.section-heading {
  position: relative;
  margin-bottom: 34px;
  text-align: center;
}

.section-heading .ghost {
  position: absolute;
  inset: -31px 0 auto;
  z-index: 0;
  margin: 0;
  color: rgba(20, 44, 77, 0.055);
  font-size: clamp(45px, 15vw, 112px);
  line-height: 0.86;
  font-weight: 900;
  letter-spacing: 0.06em;
  white-space: nowrap;
  pointer-events: none;
}

.section-heading h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--navy);
  font-size: clamp(30px, 8.5vw, 44px);
  line-height: 1.2;
  letter-spacing: 0.08em;
}

.section-heading span {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 7px;
  color: #7d8797;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.34em;
}

.heading-rule {
  position: relative;
  height: 24px;
  margin-top: 20px;
}

.heading-rule::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 132px;
  height: 18px;
  background: repeating-linear-gradient(135deg, #edcb5d 0 2px, transparent 2px 12px);
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.heading-rule::after {
  content: "";
  position: absolute;
  left: 136px;
  right: 18px;
  top: 19px;
  height: 1px;
  background: var(--navy);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.75s cubic-bezier(0.2, 0.75, 0.25, 1) 0.1s;
}

.in-view .heading-rule::before,
.is-loaded .hero .heading-rule::before {
  opacity: 1;
  transform: translateX(0);
}

.in-view .heading-rule::after,
.is-loaded .hero .heading-rule::after {
  transform: scaleX(1);
}

.align-left {
  text-align: left;
}

.align-left .heading-rule::before {
  width: 98px;
}

.align-left .heading-rule::after {
  left: 104px;
}

.about {
  background:
    linear-gradient(135deg, transparent 0 74%, rgba(23, 111, 201, 0.06) 74% 100%),
    var(--white);
}



.lead {
  color: var(--navy);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.9;
}

.lead-block p {
  margin: 0 0 18px;
}

.lead-block p:last-child {
  margin-bottom: 0;
}

.about-photo {
  height: 285px;
  margin: 34px 0 0;
  overflow: hidden;
}

.section-intro {
  margin: -6px 0 48px;
  color: var(--navy);
  font-size: 18px;
  font-weight: 800;
  line-height: 2.05;
}

.business-list {
  display: grid;
  gap: 64px;
}

.business-card {
  position: relative;
}

.business-visual {
  position: relative;
}

.business-visual figure {
  height: 278px;
  margin: 0;
  overflow: hidden;
}

.business-visual img {
  transform: scale(1.07);
  transition: transform 1.25s cubic-bezier(0.2, 0.75, 0.25, 1);
}

.business-card.in-view .business-visual img {
  transform: scale(1);
}

.business-panel {
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(78%, 360px);
  padding: 16px 0px 0px;
  background: var(--white);
  transform: translateY(18px);
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.75, 0.25, 1);
}

.business-card.in-view .business-panel {
  opacity: 1;
  transform: translateY(0);
}

.business-panel h3 {
  margin: 0;
  color: #2d2f33;
  font-size: 24px;
  line-height: 1.25;
  letter-spacing: 0.01em;
}

.tri-line {
  width: 80px;
  height: 3px;
  margin: 12px 0 0px;
  background: linear-gradient(90deg, var(--green) 0 31%, var(--blue) 31% 67%, #151b5f 67% 100%);
}

.business-label {
  margin: 0;
  color: #222679;
  font-size: 20px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.33em;
}

.business-desc {
  padding: 26px 0 0;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.72s ease 0.12s, transform 0.72s cubic-bezier(0.2, 0.75, 0.25, 1) 0.12s;
}

.business-card.in-view .business-desc {
  opacity: 1;
  transform: translateY(0);
}

.business-desc p {
  margin: 0;
  font-size: 16px;
  line-height: 2;
}

.company {
  background:
    linear-gradient(135deg, transparent 0 82%, rgba(23, 111, 201, 0.06) 82% 100%),
    var(--white);
}

.company-list {
  margin: 0 0 28px;
}

.company-list div {
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.company-list div:last-child {
  border-bottom: 1px solid var(--line);
}

.company-list dt {
  position: relative;
  margin: 0 0 6px;
  /*padding-left: 16px;*/
  color: var(--navy);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.13em;
}


.company-list dd {
  margin: 0;
  color: var(--navy);
  font-size: 16px;
  /*font-weight: 700;*/
  line-height: 1.7;
}

.company-map {
  position: relative;
  min-height: 360px;
  margin-top: 42px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--pale);
}


.company-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.15) saturate(0.9);
}

.js-reveal {
  opacity: 0;
  transform: translateY(42px);
  transition:
    opacity 0.78s ease var(--reveal-delay, 0ms),
    transform 0.78s cubic-bezier(0.2, 0.75, 0.25, 1) var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.js-reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroImageSettle {
  from {
    transform: scale(1.1);
    filter: saturate(0.92);
  }
  to {
    transform: scale(1.03);
    filter: saturate(1);
  }
}

@keyframes heroCopyIn {
  from {
    opacity: 0;
    transform: translateY(34px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes verticalWordIn {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cta {
  position: relative;
  isolation: isolate;
  padding: 84px 22px;
  color: var(--white);
  background: var(--navy);
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("assets/hero-infrastructure.png") center / cover no-repeat;
  transform: scale(1.05);
}

.cta::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(7, 26, 51, 0.94), rgba(7, 26, 51, 0.74));
}

.cta-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.cta h2 {
  margin: 0 0 18px;
  font-size: clamp(31px, 8.5vw, 48px);
  line-height: 1.32;
}

.cta p {
  max-width: 44em;
  margin: 0 0 28px;
  /*font-weight: 600;*/
}

.cta-actions {
  display: grid;
  gap: 12px;
}

.hours {
  margin: 16px 0 0 !important;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.site-footer {
  color: var(--white);
  background: rgba(13, 13, 13, 0.8);
}

.footer-inner {
  width: calc(100% - 44px);
  margin: 0 auto;
  padding: 48px 0 30px;
  display: grid;
  gap: 30px;
}

.footer-logo .brand-mark {
  border-color: var(--white);
}

.footer-logo .brand-mark span,
.footer-logo .brand-mark::after {
  background: var(--white);
}

.footer-logo .brand-name {
  color: var(--white);
}

.footer-brand {
  display: grid;
  justify-items: center;
  gap: 18px;
  text-align: center;
}

.footer-info {
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
}

.footer-info p,
.footer-info address {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-style: normal;
  font-size: 14px;
  line-height: 1.9;
}

.footer-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(12px, 4.5vw, 34px);
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(12px, 3.2vw, 14px);
  /*font-weight: 800;*/
}

.footer-nav a {
  padding-bottom: 0;
  white-space: nowrap;
}

.copyright {
  width: calc(100% - 44px);
  margin: 0 auto;
  padding: 18px 0 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
}

.copyright p {
  margin: 0;
}

.copyright a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.72);
}

.sub-page {
  background: var(--white);
}

.sub-hero {
  min-height: calc(100svh - var(--header));
}

.sub-heading {
  margin-bottom: 42px;
}

.sub-heading h1 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--navy);
  font-size: clamp(30px, 8.5vw, 44px);
  line-height: 1.2;
  letter-spacing: 0.08em;
}

.contact-layout {
  display: grid;
  gap: 42px;
}

.contact-form {
  display: grid;
  gap: 20px;
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row label {
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.form-row label span {
  margin-left: 8px;
  color: var(--blue);
  font-size: 12px;
  letter-spacing: 0.06em;
}

.form-row input,
.form-row textarea {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0;
  font: inherit;
  line-height: 1.6;
}

.form-row textarea {
  resize: vertical;
}

.form-submit {
  width: 100%;
  margin-top: 8px;
  border: 0;
  cursor: pointer;
}

.privacy-lead {
  margin: -10px 0 36px;
  color: var(--navy);
  font-size: 16px;
  line-height: 2;
  font-weight: 700;
}

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

.policy-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.policy-item h2 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.08em;
}

.policy-item p,
.policy-item address {
  margin: 0;
  color: var(--muted);
  font-style: normal;
  font-size: 15px;
  line-height: 2;
}

.mobile-only {
  display: inline;
}

@media (min-width: 760px) {
  :root {
    --header: 82px;
  }

  .site-header {
    padding: 0 0 0 46px;
  }

  .brand-mark {
    width: 50px;
    height: 50px;
  }

  .brand-mark::before,
  .brand-mark::after {
    height: 30px;
  }

  .brand-mark span {
    height: 36px;
  }

  .brand-name {
    font-size: 19px;
  }

  .desktop-nav {
    display: flex;
    align-items: center;
    gap: clamp(20px, 2.3vw, 42px);
    margin-left: auto;
    margin-right: clamp(18px, 2vw, 38px);
    color: var(--navy);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.06em;
    white-space: nowrap;
  }

  .desktop-nav a {
    position: relative;
  }

  .desktop-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -9px;
    height: 2px;
    background: var(--blue);
    transition: right 0.2s ease;
  }

  .desktop-nav a:hover::after {
    right: 0;
  }

  .header-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    gap: 14px;
    min-width: clamp(190px, 15vw, 250px);
    padding: 0 32px;
    color: var(--white);
    background: #edcb5d;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 0.08em;
    transition: background 0.22s ease;
    white-space: nowrap;
  }

  .header-contact i {
    font-size: 28px;
    line-height: 1;
  }

  .header-contact:hover {
    background: #0a9db6;
  }

  .mobile-menu {
    display: none;
  }

  .hero {
    min-height: calc(100vh - var(--header));
    align-items: flex-end;
  }

  .hero::after {
    inset: 0;
    background: linear-gradient(90deg, rgba(7, 26, 51, 0.9), rgba(7, 26, 51, 0.45) 42%, rgba(7, 26, 51, 0.03) 100%);
  }

  .hero-copy {
    width: min(760px, calc(100% - 120px));
    margin: 0 auto 0 clamp(64px, 8vw, 180px);
    padding: 0 0 clamp(76px, 9vh, 118px);
  }

  .hero h1 {
    font-size: clamp(42px, 3.8vw, 64px);
  }

  .hero p {
    max-width: 37em;
    font-size: 21px;
    line-height: 1.85;
    font-weight: 800;
  }

  .vertical-word {
    right: 38px;
    bottom: 100px;
    font-size: 13px;
  }

  .section {
    padding: 116px 0;
  }

  .section-inner {
    width: min(100% - 88px, var(--max));
  }

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

  .section-heading .ghost {
    inset: -44px 0 auto;
  }

  .heading-rule::before {
    width: 98px;
  }

  .heading-rule::after {
    left: 104px;
    right: 0;
  }

  .business-heading {
    text-align: left;
  }

  .about-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.6fr) minmax(0, 0.4fr);
    gap: 72px;
    align-items: stretch;
  }

  .about-copy {
    width: 100%;
  }

  .about-photo {
    height: 100%;
    max-height: 100%;
    margin: 0;
  }

  .lead {
    font-size: 22px;
  }

  .business {
    background: #fff;
  }

  .section-intro {
    width: min(690px, 100%);
    margin: -22px auto 62px;
    text-align: center;
    font-size: 22px;
  }

  .business-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 38px;
  }

  .business-visual figure {
    height: clamp(220px, 14vw, 280px);
  }

  .business-panel {
    width: min(75%, 500px);
    padding: 16px 12px 0px 0px ;
  }

  .business-panel h3 {
    font-size: 24px;
  }

  .tri-line {
    width: min(100%, 80px);
    height: 3px;
    margin: 12px 0 0;
  }

  .business-label {
    font-size: clamp(20px, 1.35vw, 28px);
  }

  .business-desc {
    padding-top: 32px;
  }

  .business-desc p {
    font-size: 16px;
  }

  .company-grid {
    display: block;
  }

  .company-heading {
    max-width: 520px;
  }

  .company-body {
    display: block;
  }

  .company-content {
    width: 100%;
  }

  .company-list {
    margin: 0;
  }

  .company-list div {
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr);
    align-items: center;
    gap: 36px;
    padding: 28px 0;
  }

  .company-list dt {
    margin: 0;
    font-size: 16px;
    letter-spacing: 0.12em;
  }

  .company-list dd {
    font-size: 16px;
    letter-spacing: 0.08em;
  }

  .company-map {
    height: 430px;
    min-height: 430px;
    margin-top: 52px;
  }

  .cta {
    padding: 104px 44px;
  }

  .cta-actions {
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .footer-inner {
    width: calc(100% - 88px);
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 62px 0 38px;
  }

  .footer-brand {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 18px;
    text-align: center;
  }

  .footer-info {
    justify-self: center;
    width: min(760px, 100%);
    text-align: center;
  }

  .footer-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: clamp(28px, 4vw, 72px);
  }

  .footer-nav a {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .copyright {
    width: calc(100% - 88px);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    text-align: left;
  }

  .sub-hero {
    min-height: auto;
  }

  .sub-heading {
    margin-bottom: 56px;
    text-align: left;
  }

  .sub-heading .ghost {
    inset: -44px 0 auto;
  }

  .sub-heading .heading-rule::before {
    width: 160px;
  }

  .sub-heading .heading-rule::after {
    left: 166px;
    right: 0;
  }

  .contact-layout {
    display: block;
  }

  .contact-form {
    width: min(760px, 100%);
  }

  .form-submit {
    width: min(260px, 100%);
  }

  .privacy-heading {
    margin-bottom: 28px;
  }

  .privacy-heading h1 {
    white-space: nowrap;
  }

  .privacy-lead {
    width: min(850px, 100%);
    margin: 0 0 54px;
    font-size: 17px;
  }

  .policy-item {
    padding: 34px 0;
  }

  .policy-item h2 {
    margin: 0 0 12px;
    font-size: 17px;
  }

  .mobile-only {
    display: none;
  }
}

@media (min-width: 1120px) {
  .business-list {
    gap: 42px;
  }
}

@media (min-width: 760px) and (max-width: 1023px) {
  .site-header {
    padding: 0 24px;
  }

  .desktop-nav,
  .header-contact {
    display: none;
  }

  .mobile-menu {
    display: block;
  }
}
