.page-home .home-crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .45rem;
  padding-top: clamp(1rem, 2.4vw, 1.75rem);
  font-size: .88rem;
  color: var(--slate);
}

.page-home .home-crumbs a {
  color: var(--blue);
  text-decoration: none;
}

.page-home .home-crumbs a:hover,
.page-home .home-crumbs a:focus-visible {
  text-decoration: underline;
}

.page-home .home-hero {
  padding-bottom: clamp(1.25rem, 3vw, 2.5rem);
}

.page-home .home-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 2.5vw, 1.75rem);
}

.page-home .home-hero__head {
  position: relative;
  overflow: hidden;
  padding: clamp(1.4rem, 4.5vw, 3rem);
  background: linear-gradient(155deg, var(--blue) 0%, var(--blue-deep) 78%);
  border-radius: var(--radius);
  color: var(--paper);
  box-shadow: var(--shadow-2);
}

.page-home .home-hero__head::after {
  content: "";
  position: absolute;
  right: -5rem;
  bottom: -6rem;
  width: 17rem;
  height: 17rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 162, 39, .3), transparent 68%);
  pointer-events: none;
}

.page-home .home-hero__head .eyebrow {
  color: var(--gold-soft);
}

.page-home .home-hero__head h1 {
  margin: .55rem 0 1rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.85rem, 5.4vw, 3.4rem);
  line-height: 1.16;
  letter-spacing: -.01em;
  color: var(--paper);
}

.page-home .home-hero__head .lead {
  max-width: 40rem;
  color: rgba(247, 244, 237, .88);
}

.page-home .home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: 1.5rem;
}

.page-home .home-hero__media {
  margin: 0;
}

.page-home .home-hero__tiles {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(.7rem, 2vw, 1.1rem);
}

.page-home .home-tile {
  position: relative;
  display: grid;
  gap: .3rem;
  padding: 1.1rem 1.2rem 1.25rem;
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow-1);
  color: inherit;
  text-decoration: none;
  transition: transform .24s var(--ease), box-shadow .24s var(--ease), border-color .24s var(--ease);
}

.page-home .home-tile:hover,
.page-home .home-tile:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
  border-color: var(--hairline-strong);
}

.page-home .home-tile__kicker {
  font-size: .76rem;
  letter-spacing: .14em;
  color: var(--slate);
}

.page-home .home-tile__title {
  font-family: var(--font-head);
  font-size: clamp(1.08rem, 2.2vw, 1.35rem);
  font-weight: 700;
  color: var(--blue-deep);
}

.page-home .home-tile__desc {
  font-size: .93rem;
  line-height: 1.7;
  color: var(--slate);
}

.page-home .home-tile--seal {
  border-left-color: var(--cinnabar);
}

.page-home .home-tile--seal .home-tile__title {
  color: var(--cinnabar);
}

.page-home .home-skyline {
  display: block;
  width: 100%;
  height: clamp(52px, 9vw, 108px);
  margin-top: clamp(1.25rem, 3vw, 2rem);
  color: var(--blue-mist);
}

.page-home .home-sec-head {
  max-width: 44rem;
  margin-bottom: clamp(1.5rem, 3.5vw, 2.5rem);
}

.page-home .home-sec-head h2 {
  margin: .4rem 0 .75rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.5rem, 3.4vw, 2.35rem);
  line-height: 1.24;
  color: var(--blue-deep);
}

.page-home .home-sec-head .lead {
  color: var(--slate);
}

.page-home .home-entry-grid {
  align-items: stretch;
}

.page-home .home-entry {
  display: flex;
  flex-direction: column;
  gap: .85rem;
  height: 100%;
  padding: clamp(1.35rem, 3vw, 2rem);
}

.page-home .home-entry .num {
  font-size: 1.35rem;
  letter-spacing: .08em;
  line-height: 1;
}

.page-home .home-entry h3 {
  margin: 0;
  font-family: var(--font-head);
  font-size: clamp(1.22rem, 2.4vw, 1.65rem);
  color: var(--blue-deep);
}

.page-home .home-entry p {
  margin: 0;
  line-height: 1.85;
  color: var(--ink);
}

.page-home .home-entry__list {
  margin: 0;
  padding-left: 1.15rem;
  display: grid;
  gap: .4rem;
  font-size: .94rem;
  line-height: 1.7;
  color: var(--slate);
}

.page-home .home-entry__list li {
  list-style: square;
}

.page-home .home-entry__note {
  font-size: .92rem;
  line-height: 1.75;
  color: var(--slate);
  padding-top: .7rem;
  border-top: 1px dashed var(--hairline-strong);
}

.page-home .home-entry .btn {
  align-self: flex-start;
  margin-top: auto;
}

.page-home .home-entry__media {
  margin: .25rem 0 .4rem;
}

.page-home .home-entry--urgent {
  border-top: 3px solid var(--cinnabar);
}

.page-home .home-entry--urgent .num {
  color: var(--cinnabar);
}

.page-home .home-screen__band {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: clamp(1.4rem, 4vw, 3rem);
  background: linear-gradient(150deg, var(--blue-mist) 0%, var(--paper) 74%);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  overflow: hidden;
}

.page-home .home-screen__text h2 {
  margin: .4rem 0 .9rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.5rem, 3.4vw, 2.35rem);
  line-height: 1.24;
  color: var(--blue-deep);
}

.page-home .home-screen__text > p {
  margin: 0 0 1.25rem;
  line-height: 1.85;
  color: var(--ink);
}

.page-home .home-screen__facts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .7rem;
}

.page-home .home-screen__facts li {
  display: flex;
  align-items: baseline;
  gap: .7rem;
  padding-bottom: .65rem;
  border-bottom: 1px solid var(--hairline);
  font-size: .94rem;
  color: var(--slate);
}

.page-home .home-screen__facts li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.page-home .home-screen__facts strong {
  min-width: 4.4rem;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: .01em;
  color: var(--blue);
  font-variant-numeric: tabular-nums;
}

.page-home .home-screen__mock {
  align-self: center;
  padding: 12px 12px 0;
  background: var(--blue-deep);
  border-radius: 6px;
  box-shadow: var(--shadow-2);
}

.page-home .home-screen__bar {
  display: flex;
  gap: 6px;
  padding-bottom: 10px;
}

.page-home .home-screen__bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(247, 244, 237, .42);
}

.page-home .home-screen__panel {
  padding: 1rem 1rem 1.2rem;
  background: var(--paper);
  border-radius: 3px 3px 0 0;
}

.page-home .home-screen__panel-title {
  margin: 0 0 .6rem;
  padding-bottom: .55rem;
  border-bottom: 2px solid var(--gold);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--blue-deep);
}

.page-home .home-screen__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: .62rem .1rem;
  border-bottom: 1px solid var(--hairline);
  font-size: .96rem;
  color: var(--ink);
}

.page-home .home-screen__row:last-child {
  border-bottom: 0;
}

.page-home .home-screen__row span:last-child {
  font-weight: 700;
  color: var(--blue);
  font-variant-numeric: tabular-nums;
}

.page-home .price-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(.85rem, 2vw, 1.2rem);
}

.page-home .price-card {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  padding: clamp(1.25rem, 3vw, 1.8rem);
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow-1);
}

.page-home .price-card__index {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: .85rem;
  letter-spacing: .18em;
  color: var(--gold);
}

.page-home .price-card h3 {
  margin: 0;
  font-family: var(--font-head);
  font-size: clamp(1.12rem, 2.2vw, 1.38rem);
  color: var(--blue-deep);
}

.page-home .price-card__amount {
  margin: .2rem 0 .1rem;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(1.55rem, 3.2vw, 2.15rem);
  letter-spacing: .01em;
  color: var(--blue-deep);
  font-variant-numeric: tabular-nums;
}

.page-home .price-card__scene {
  margin: 0;
  font-size: .94rem;
  line-height: 1.72;
  color: var(--slate);
}

.page-home .price-card .fold {
  margin-top: auto;
  padding-top: .85rem;
}

.page-home .fold {
  border-top: 1px solid var(--hairline);
}

.page-home .fold__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: .8rem 0 .7rem;
  background: none;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: .94rem;
  font-weight: 600;
  color: var(--blue);
  text-align: left;
}

.page-home .fold__trigger:hover,
.page-home .fold__trigger:focus-visible {
  color: var(--blue-deep);
}

.page-home .fold__sign {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border: 1px solid var(--hairline-strong);
  border-radius: 50%;
  font-size: .95rem;
  line-height: 1;
  color: var(--blue);
  transition: transform .24s var(--ease);
}

.page-home .fold.is-open .fold__sign {
  transform: rotate(45deg);
}

.page-home .fold__panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height .24s var(--ease);
}

.page-home .fold.is-open .fold__panel {
  max-height: 30rem;
}

.page-home .fold__body {
  padding-bottom: 1rem;
  font-size: .92rem;
  line-height: 1.8;
  color: var(--slate);
}

.page-home .fold__body p {
  margin: 0;
}

.page-home .home-record__grid {
  align-items: start;
}

.page-home .home-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-home .home-timeline > li {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: .3rem .9rem;
  padding: 1.15rem 0;
  border-top: 1px solid var(--hairline);
}

.page-home .home-timeline > li:last-child {
  border-bottom: 1px solid var(--hairline);
}

.page-home .home-timeline__no {
  grid-row: span 2;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  line-height: 1.05;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}

.page-home .home-timeline__title {
  font-family: var(--font-head);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--blue-deep);
}

.page-home .home-timeline__desc {
  font-size: .94rem;
  line-height: 1.75;
  color: var(--slate);
}

.page-home .home-record__aside {
  display: grid;
  gap: 1rem;
  align-content: start;
  margin-top: 1.5rem;
}

.page-home .home-record__figure {
  margin: 0;
}

.page-home .home-seal-card {
  padding: clamp(1.25rem, 3vw, 1.75rem);
  background: var(--paper);
  border: 1px solid var(--cinnabar);
  border-radius: var(--radius);
  box-shadow: var(--shadow-1);
}

.page-home .home-seal-card__no {
  margin: .6rem 0 .4rem;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(2.2rem, 6vw, 3.4rem);
  line-height: 1;
  letter-spacing: .06em;
  color: var(--cinnabar);
  font-variant-numeric: tabular-nums;
}

.page-home .home-seal-card p {
  margin: 0 0 1rem;
  font-size: .94rem;
  line-height: 1.8;
  color: var(--slate);
}

.page-home .home-trust {
  background: var(--blue-deep);
  color: var(--paper);
}

.page-home .home-trust .eyebrow {
  color: var(--gold-soft);
}

.page-home .home-trust .home-sec-head h2 {
  color: var(--paper);
}

.page-home .home-trust .home-sec-head .lead {
  color: rgba(247, 244, 237, .82);
}

.page-home .trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.page-home .trust-item {
  padding: 1.25rem 1.35rem;
  background: rgba(247, 244, 237, .06);
  border: 1px solid rgba(247, 244, 237, .18);
  border-radius: var(--radius);
}

.page-home .trust-item__num {
  display: block;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(1.85rem, 4.4vw, 2.5rem);
  line-height: 1;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}

.page-home .trust-item h3 {
  margin: .6rem 0 .4rem;
  font-family: var(--font-head);
  font-size: 1.08rem;
  color: var(--paper);
}

.page-home .trust-item p {
  margin: 0;
  font-size: .92rem;
  line-height: 1.75;
  color: rgba(247, 244, 237, .76);
}

.page-home .home-trust__figure {
  margin: clamp(1.5rem, 3vw, 2.25rem) 0 0;
}

.page-home .home-trust__figure .media__caption {
  color: rgba(247, 244, 237, .72);
}

.page-home .trust-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .6rem 1.35rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(247, 244, 237, .18);
  font-size: .9rem;
  color: rgba(247, 244, 237, .78);
}

.page-home .home-contact {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.35rem;
  margin-top: clamp(1.75rem, 4vw, 3rem);
  padding: clamp(1.4rem, 3.5vw, 2.5rem);
  background: var(--paper);
  border-radius: var(--radius);
  color: var(--ink);
  box-shadow: var(--shadow-2);
}

.page-home .home-contact__text h3 {
  margin: 0 0 .5rem;
  font-family: var(--font-head);
  font-size: clamp(1.22rem, 2.6vw, 1.65rem);
  color: var(--blue-deep);
}

.page-home .home-contact__text p {
  margin: 0;
  font-size: .94rem;
  line-height: 1.85;
  color: var(--slate);
}

.page-home .home-contact__list {
  display: grid;
  gap: .8rem;
  margin: 0;
}

.page-home .home-contact__list > div {
  display: grid;
  gap: .15rem;
  padding-bottom: .7rem;
  border-bottom: 1px solid var(--hairline);
}

.page-home .home-contact__list dt {
  font-size: .76rem;
  letter-spacing: .14em;
  color: var(--slate);
}

.page-home .home-contact__list dd {
  margin: 0;
  font-size: .98rem;
  font-weight: 600;
  line-height: 1.6;
  color: var(--blue-deep);
  word-break: break-word;
}

.page-home .home-contact .btn {
  justify-self: start;
  align-self: start;
}

@media (min-width: 700px) {
  .page-home .home-hero__tiles {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-home .price-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-home .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .page-home .home-hero__grid {
    grid-template-columns: repeat(12, 1fr);
    align-items: end;
  }

  .page-home .home-hero__head {
    grid-column: 1 / span 7;
  }

  .page-home .home-hero__media {
    grid-column: 8 / span 5;
  }

  .page-home .home-hero__tiles {
    grid-column: 1 / -1;
  }

  .page-home .home-screen__band {
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
  }

  .page-home .home-record__aside {
    margin-top: 0;
  }
}

@media (min-width: 1000px) {
  .page-home .price-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-home .trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .page-home .home-contact {
    grid-template-columns: 1.1fr 1fr auto;
    align-items: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .home-tile,
  .page-home .fold__sign,
  .page-home .fold__panel {
    transition: none;
  }
}
