



.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 68px;
  padding: 0.5rem max(4%, calc((100% - 1180px) / 2));
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--hairline);
}

.brand-logo {
  display: block;
  flex: 0 0 auto;
}

.brand-logo img {
  height: 2.4rem;
  width: auto;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
  order: 3;
}

.call-strip {
  display: none;
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
}

.call-strip span {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-quiet);
}

.basket-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 44px;
  padding: 0 0.9rem;
  border: 1px solid var(--frost-edge);
  border-radius: 10px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 600;
  font-size: 0.92rem;
}

.basket-pill:hover {
  border-color: var(--ember);
  color: var(--ember);
  text-decoration: none;
}

.basket-pill svg {
  width: 18px;
  height: 18px;
}

.basket-count {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  min-width: 22px;
  height: 22px;
  line-height: 22px;
  text-align: center;
  border-radius: 50%;
  background: var(--ember);
  color: #ffffff;
  font-size: 0.75rem;
}



.main-navigation {
  order: 4;
}

.navigation-link {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  white-space: nowrap;
}

.navigation-link:hover {
  color: var(--ember);
  text-decoration: none;
}

.navigation-link.current {
  color: var(--glacier-deep);
  box-shadow: inset 0 -2px 0 var(--ember);
}

.nav-toggle {
  margin-left: auto;
  order: 5;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
}

.nav-toggle span {
  border-radius: 2px;
}

.nav-close {
  font-family: inherit;
}

.nav-veil {
  border: none;
}

.drawer-tag {
  display: block;
  margin-bottom: 1.5rem;
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-quiet);
}



.firm-introduction {
  position: relative;
  min-height: 60vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-color: var(--glacier-deep);
}

.stage-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.firm-introduction::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: linear-gradient(96deg, rgba(11, 38, 51, 0.94) 0%, rgba(15, 52, 70, 0.88) 55%, rgba(15, 52, 70, 0.78) 100%);
}

.intro-frame {
  position: relative;
  z-index: 2;
  width: var(--shell);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  padding: clamp(3rem, 8vw, 5rem) 0;
}

.stage-copy {
  max-width: 600px;
  color: #eef6fb;
}

.stage-copy h1 {
  color: #ffffff;
}

.stage-copy p {
  color: #d3e5f0;
  font-size: 1.06rem;
}

.stage-copy .tick {
  color: var(--ice);
}

.stage-points {
  margin: 1.5rem 0 2rem;
  display: grid;
  gap: 0.6rem;
}

.stage-points li {
  position: relative;
  padding-left: 1.6rem;
  color: #d3e5f0;
  font-size: 0.98rem;
}

.stage-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 10px;
  height: 2px;
  background: var(--ember);
}

.order-aside {
  position: relative;
}

.inquiry-form {
  background: var(--paper);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(11, 38, 51, 0.32);
}

.inquiry-form h2 {
  font-size: 1.3rem;
  margin-bottom: 0.35rem;
}

.input-wrapper {
  margin-bottom: 1rem;
}

.consent-line {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.82rem;
  color: var(--ink-quiet);
  margin-bottom: 1rem;
}

.consent-line input {
  margin-top: 0.35rem;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}



.site-footer {
  position: relative;
  background: var(--ink);
  color: #b9d0dd;
  padding: 3rem 1rem 1.5rem;
  border-top: 6px solid var(--glacier);
}

.footer-top {
  width: var(--shell);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.footer-call h2 {
  color: #ffffff;
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.footer-call p {
  font-size: 0.92rem;
  margin-bottom: 1.25rem;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.badge-slab {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.1rem;
  border: 1px solid rgba(169, 203, 224, 0.35);
  border-radius: 10px;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.2;
}

.badge-slab:hover {
  border-color: var(--ember);
  color: #ffffff;
  text-decoration: none;
}

.badge-slab svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.badge-slab small {
  display: block;
  font-weight: 400;
  font-size: 0.72rem;
  color: #9ab8c8;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
}

.footer-columns h3 {
  color: #ffffff;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.footer-columns li {
  margin-bottom: 0.5rem;
}

.footer-columns a {
  color: #b9d0dd;
  font-size: 0.92rem;
}

.footer-columns a:hover {
  color: #ffffff;
}

.footer-base {
  width: var(--shell);
  margin: 2.5rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(169, 203, 224, 0.2);
  font-size: 0.82rem;
  color: #91b0c1;
}

.footer-base p {
  margin: 0 0 0.5rem;
}


.footer-base a {
  color: #b9d0dd;
}

.footer-base a:hover {
  color: #ffffff;
}

.footer-note {
  color: #cfe1ec;
}

.footer-logo img,
.footer-logo svg {
  display: block;
  height: 2rem;
  width: auto;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr 1.4fr;
  }
}

@media (min-width: 861px) {
  .intro-frame {
    grid-template-columns: 1.4fr 1fr;
  }

  
  .firm-introduction::before {
    background-image: linear-gradient(96deg, rgba(11, 38, 51, 0.94) 0%, rgba(15, 52, 70, 0.86) 58%, rgba(169, 203, 224, 0.24) 100%);
  }
}


@media (min-width: 1024px) {
  .drawer-tag {
    display: none;
  }
}


@media (min-width: 1100px) {
  .call-strip {
    display: block;
  }
}



[data-mm-header] {
  --mm-bg: #ffffff;
  --mm-text: #12303f;
  --mm-primary: #c9482e;
  --mm-overlay-bg: rgba(18, 48, 63, 0.45);
  --mm-drawer-width: 288px;
}

.main-header.condensed {
  box-shadow: 0 6px 24px rgba(18, 48, 63, 0.12);
}
