.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 76px;
  background: rgba(255, 255, 255, .86);
  border-bottom: 1px solid rgba(232, 232, 232, .72);
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled { box-shadow: 0 10px 28px rgba(0, 0, 0, .06); }

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.header-right {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: right;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: 50px;
  color: #333333;
  font-size: 12px;
  font-weight: 400;
  padding-right: 50px;
  border-right: 1px solid #ddd;
}

.global-nav a {
  position: relative;
  padding: 8px 0;
}
.global-nav a:hover {
  opacity: 1;
}

.global-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

.global-nav a:hover::after { transform: scaleX(1); }

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 22px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-radius: 999px;
  font-size: 12px;
  font-weight: 400;
  box-shadow: 0 14px 24px rgba(201, 0, 0, .18);
  margin-left: 50px;
}

.header-cta .icon-img {
  --icon-size: 32px;
  filter: brightness(0) invert(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: #111111;
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(0, 0, 0, .58);
  opacity: 0;
  pointer-events: none;
  transition: opacity .32s ease;
}

.mobile-menu {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 100;
  width: min(72vw, 620px);
  min-width: 330px;
  background: rgba(255, 255, 255, .98);
  box-shadow: -18px 0 54px rgba(0, 0, 0, .16);
  transform: translateX(105%);
  transition: transform .32s ease;
  overflow-y: auto;
  padding: 46px clamp(28px, 7vw, 72px) 32px;
}

body.menu-open { overflow: hidden; }
body.menu-open .mobile-menu { transform: translateX(0); }
body.menu-open .menu-backdrop {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 42px;
}

.mobile-menu-head .logo-wordmark {
  width: 210px;
}

.menu-close {
  display: grid;
  place-items: center;
  gap: 7px;
  border: 0;
  background: transparent;
  color: #222222;
  font-size: 14px;
  font-weight: 700;
}

.close-lines {
  position: relative;
  display: block;
  width: 42px;
  height: 42px;
}

.close-lines::before,
.close-lines::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 20px;
  width: 30px;
  height: 2px;
  background: #111111;
}

.close-lines::before { transform: rotate(45deg); }
.close-lines::after { transform: rotate(-45deg); }

.mobile-menu-list { display: grid; }

.mobile-menu-item {
  display: grid;
  grid-template-columns: 58px 1fr 28px;
  align-items: center;
  gap: 22px;
  padding: 25px 0;
  border-bottom: 1px solid #dddddd;
  color: var(--red);
}

.mobile-menu-item .icon-img { --icon-size: 42px; }
.mobile-menu-item span { color: #333333; }

.mobile-menu-item strong {
  display: block;
  color: #1f1f1f;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: .16em;
  margin-bottom: 6px;
}

.mobile-menu-item b {
  color: var(--red);
  font-size: 34px;
  font-weight: 400;
}

.mobile-menu-sub {
  margin-top: 22px;
  border-top: 1px solid #dddddd;
}

.mobile-menu-sub a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid #dddddd;
  font-weight: 700;
}

.phone-box {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
  padding: 24px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #fff1f1, #ffffff);
}

.phone-box .icon-img {
  --icon-size: 54px;
  padding: 12px;
  border-radius: 50%;
  background: #ffffff;
}

.phone-box span,
.phone-box small {
  display: block;
  color: #666666;
}

.phone-box strong {
  display: block;
  color: var(--red);
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: .04em;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 34px 0 16px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: #ffffff;
  background: #000000;
  font-size: 19px;
  font-weight: 700;
}

.menu-copy {
  color: #888888;
  text-align: center;
  font-size: 12px;
}

.footer-cta {
  background: #ffffff;
  border-top: 1px solid var(--line);
  padding: 26px 0;
}

.footer-cta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.footer-cta-grid a {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px 12px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  font-weight: 700;
}

.footer-cta-grid .icon-img {
  --icon-size: 30px;
  grid-row: span 2;
}

.footer-cta-grid span {
  color: #555555;
  font-size: 11px;
  font-weight: 700;
}

.footer-cta-grid strong {
  font-size: 14px;
  line-height: 1.25;
}

.site-footer {
  padding: 38px 0;
  color: #ffffff;
  background: #151515;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 28px;
  color: #aaaaaa;
  font-size: 12px;
}

.site-footer .logo { color: #ffffff; }
.site-footer .logo small { color: #aaaaaa; }
.site-footer .logo-symbol { width: 46px; height: 46px; }
.footer-inner nav {
  display: flex;
  gap: 18px;
  color: #dddddd;
  font-weight: 700;
}

.footer-inner p { margin: 0; }

.top-page .site-footer .footer-legal {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
  width: 100%;
  color: #aaaaaa;
  font-size: 11px;
}
