

.page-root {
  position: relative;
  padding-top: 68px;
}

.page-body {
  position: relative;
  display: block;
}

.area-frame {
  position: relative;
  z-index: 1;
  width: var(--shell);
  margin: 0 auto;
}



.content-area {
  position: relative;
  width: 100%;
  padding: clamp(2.5rem, 7vw, 4.5rem) 0;
  background-size: cover;
  background-position: center;
}

.content-area.tinted {
  background-color: var(--frost-deep);
}

.content-area.tinted::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(180deg, rgba(169, 203, 224, 0.34) 0%, rgba(242, 247, 251, 0.9) 100%);
}

.content-area.pale {
  background-color: var(--paper);
}

.area-heading {
  max-width: 46ch;
  margin-bottom: 0.75rem;
}

.area-lead {
  max-width: 62ch;
  color: var(--ink-quiet);
  margin-bottom: 2rem;
}

.area-body {
  position: relative;
}



.band-tilt {
  position: relative;
  height: 0;
}

.band-tilt::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 100px;
  background: var(--frost-deep);
  transform: skewY(-3deg);
  transform-origin: top left;
}

.band-tilt.to-pale::before {
  background: var(--paper);
}

.band-tilt.to-frost::before {
  background: var(--frost);
}



.pack-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.duo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

.legal-services {
  position: relative;
}

.client-advantages {
  position: relative;
}

.firm-heritage {
  position: relative;
}

.client-inquiries {
  position: relative;
}

.legal-process {
  position: relative;
}



.step-line {
  display: grid;
  gap: 1.25rem;
  counter-reset: step;
}

.step-line li {
  position: relative;
  padding-left: 3.25rem;
  counter-increment: step;
}

.step-line li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--ember-mist);
  color: var(--ember-deep);
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-weight: 700;
  text-align: center;
  line-height: 2.25rem;
}

.step-line strong {
  display: block;
  color: var(--ink);
}

.step-line span {
  color: var(--ink-quiet);
  font-size: 0.95rem;
}



.trail {
  width: var(--shell);
  margin: 0 auto;
  padding: 1rem 0 0;
  font-size: 0.82rem;
  color: var(--ink-quiet);
}

.trail li {
  display: inline;
}

.trail li + li::before {
  content: '\203A';
  margin: 0 0.5rem;
  color: var(--frost-edge);
}

.sheet-banner {
  position: relative;
  padding: clamp(2rem, 6vw, 3.25rem) 0 clamp(1.5rem, 4vw, 2.5rem);
  background-color: var(--frost-deep);
  background-image: linear-gradient(120deg, rgba(169, 203, 224, 0.5) 0%, rgba(242, 247, 251, 0.7) 70%);
}

.sheet-banner .area-frame > p {
  max-width: 62ch;
  color: var(--ink-quiet);
  margin: 0;
}



.sheet-text {
  max-width: 74ch;
}

.sheet-text h2 {
  margin-top: 2.25rem;
  font-size: 1.4rem;
}

.sheet-text h3 {
  margin-top: 1.5rem;
  font-size: 1.1rem;
}

.sheet-text li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--ink-quiet);
}

.sheet-text li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ice);
}

.sheet-text ul {
  margin-bottom: 1rem;
}



.spec-table th,
.spec-table td {
  padding: 0.75rem 0.75rem 0.75rem 0;
  overflow-wrap: anywhere;
  border-bottom: 1px solid var(--hairline);
  text-align: left;
  vertical-align: top;
  font-size: 0.95rem;
}

.spec-table th {
  width: 42%;
  color: var(--ink-quiet);
  font-weight: 600;
}

.spec-table td {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  color: var(--ink);
}



.swipe-hint {
  display: block;
  margin-top: 0.75rem;
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-quiet);
}

@media (max-width: 767px) {
  .swipe-track {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 0;
    gap: 1rem;
    padding-bottom: 0.75rem;
  }

  .swipe-track > * {
    flex: 0 0 78%;
    min-width: 0;
    max-width: 78%;
    scroll-snap-align: start;
  }
}

@media (min-width: 768px) {
  .swipe-hint {
    display: none;
  }

  .duo-grid {
    grid-template-columns: 1.15fr 1fr;
    gap: 3rem;
  }

  
  .duo-grid.is-single {
    grid-template-columns: 1fr;
  }

  .step-line {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .content-area {
    padding: 5rem 0;
  }

  .area-lead {
    font-size: 1.06rem;
  }
}



.area-intro {
  margin-bottom: 2rem;
}

.item-head {
  position: relative;
}

.heritage-text {
  max-width: 62ch;
}
