.page-home {
  --home-gold-border: rgba(212, 168, 67, .38);
  --home-ivory-text: rgba(247, 243, 233, .86);
  --home-line-dark: rgba(10, 31, 60, .12);
  background: var(--color-ivory);
  color: var(--color-ink);
  overflow-x: hidden;
  font-family: var(--font-sans);
}

.page-home .section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--color-terra);
  border-left: 3px solid var(--color-gold);
  padding-left: 12px;
}

.page-home .section-title {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 900;
  letter-spacing: .04em;
  margin: 14px 0 0;
  line-height: 1.3;
}

.page-home .section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  margin-top: 14px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-orange));
}

.page-home .lead {
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--color-gray);
  margin: 16px 0 0;
}

.page-home img {
  max-width: 100%;
  height: auto;
}

.page-home .home-hero {
  position: relative;
  background: var(--color-deep-blue);
  color: var(--color-white);
  padding: 72px 0 48px;
  overflow: hidden;
}

.page-home .home-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.page-home .home-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .4;
  display: block;
}

.page-home .home-hero-gridline {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(212, 168, 67, .16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 168, 67, .16) 1px, transparent 1px);
  background-size: 46px 46px;
  mix-blend-mode: screen;
}

.page-home .home-hero::after {
  content: "";
  position: absolute;
  top: -20%;
  left: 25%;
  width: 40%;
  height: 120%;
  background: radial-gradient(ellipse, rgba(212, 168, 67, .14) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.page-home .home-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}

.page-home .home-hero-main .breadcrumbs {
  color: rgba(247, 243, 233, .6);
  letter-spacing: .12em;
  font-size: .86rem;
  margin-bottom: 22px;
}

.page-home .home-hero-main .section-label {
  color: var(--color-gold);
  border-color: rgba(212, 168, 67, .5);
}

.page-home .home-hero-tag {
  background: var(--color-gold);
  color: var(--color-deep-blue);
  font-weight: 900;
  font-size: .72rem;
  letter-spacing: .1em;
  padding: 4px 10px;
  display: inline-block;
}

.page-home .home-hero-main h1 {
  font-size: clamp(2.1rem, 5.4vw, 4.2rem);
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: .04em;
  margin: 18px 0 0;
  max-width: 12em;
}

.page-home .home-hero-main .lead {
  color: var(--home-ivory-text);
  max-width: 48em;
  margin-top: 22px;
}

.page-home .home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.page-home .home-hero .btn-outline {
  border-color: rgba(247, 243, 233, .55);
  color: var(--color-ivory);
  background: transparent;
}

.page-home .home-hero .btn-outline:hover {
  background: rgba(247, 243, 233, .1);
}

.page-home .home-hero-aside {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  max-width: 420px;
}

.page-home .home-badge {
  position: relative;
  padding: 22px;
  text-align: center;
  border: 1px solid var(--home-gold-border);
  background: rgba(255, 255, 255, .04);
}

.page-home .home-badge::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(212, 168, 67, .22);
  pointer-events: none;
}

.page-home .home-badge-img {
  width: 112px;
  height: 112px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--color-gold);
}

.page-home .home-badge-caption {
  display: block;
  margin-top: 12px;
  color: rgba(247, 243, 233, .7);
  font-size: .8rem;
  letter-spacing: .1em;
}

.page-home .home-coord-list {
  margin: 0;
  border: 1px solid var(--home-gold-border);
  background: rgba(255, 255, 255, .03);
}

.page-home .home-coord-item {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 18px;
  border-bottom: 1px solid rgba(212, 168, 67, .2);
}

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

.page-home .home-coord-list dt {
  color: rgba(247, 243, 233, .6);
  font-size: .8rem;
  letter-spacing: .08em;
}

.page-home .home-coord-list dd {
  margin: 0;
  color: var(--color-gold);
  font-weight: 700;
  font-size: .9rem;
}

.page-home .home-index-nav {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 34px;
  margin-top: 56px;
  padding-top: 22px;
  border-top: 1px solid rgba(212, 168, 67, .3);
}

.page-home .home-index-nav a {
  color: rgba(247, 243, 233, .62);
  text-decoration: none;
  font-size: .88rem;
  letter-spacing: .08em;
  transition: color .25s;
}

.page-home .home-index-nav a::before {
  content: "▍";
  color: var(--color-orange);
  margin-right: 4px;
}

.page-home .home-index-nav a:hover {
  color: var(--color-gold);
}

.page-home .home-preview {
  background: var(--color-ivory);
  padding: 88px 0 72px;
  scroll-margin-top: 120px;
}

.page-home .home-section-head {
  max-width: 760px;
  margin-bottom: 44px;
}

.page-home .home-section-desc {
  color: var(--color-gray);
  line-height: 1.75;
  margin-top: 16px;
  font-size: .95rem;
}

.page-home .home-entry-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.page-home .home-entry-card {
  position: relative;
  background: var(--color-white);
  border: 1px solid var(--color-stone);
  box-shadow: var(--shadow-card);
  padding: 30px 24px 24px;
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
}

.page-home .home-entry-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 32px rgba(10, 31, 60, .14);
}

.page-home .home-entry-no {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1;
  color: var(--color-stone);
  z-index: 0;
}

.page-home .home-entry-card h3 {
  font-size: 1.12rem;
  font-weight: 900;
  margin: 16px 0 10px;
  letter-spacing: .04em;
  position: relative;
}

.page-home .home-entry-card p {
  font-size: .9rem;
  color: var(--color-gray);
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

.page-home .home-entry-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  color: var(--color-orange);
  font-weight: 700;
  font-size: .9rem;
  text-decoration: none;
}

.page-home .home-entry-link i {
  font-style: normal;
  transition: transform .25s;
}

.page-home .home-entry-card:hover .home-entry-link i {
  transform: translateX(5px);
}

.page-home .home-flow-img {
  display: block;
  width: 100%;
  max-width: 880px;
  height: auto;
  margin: 64px auto 0;
  object-fit: cover;
  border-top: 4px solid var(--color-gold);
  border-bottom: 1px solid var(--color-stone);
  filter: saturate(.85);
}

.page-home .home-guide {
  background: var(--color-stone);
  padding: 84px 0;
  position: relative;
  overflow: hidden;
  scroll-margin-top: 120px;
}

.page-home .home-guide::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(90, 107, 78, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(90, 107, 78, .08) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.page-home .home-guide-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
}

.page-home .home-guide-aside .btn {
  margin-top: 28px;
}

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

.page-home .home-guide-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  padding: 32px 0;
  border-bottom: 1px solid var(--home-line-dark);
}

.page-home .home-guide-step:first-child {
  padding-top: 0;
}

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

.page-home .home-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--color-moss);
  background: var(--color-ivory);
  color: var(--color-moss);
  font-size: .92rem;
  font-weight: 900;
  letter-spacing: .06em;
  justify-self: center;
}

.page-home .home-step-body h3 {
  font-size: 1.08rem;
  font-weight: 900;
  margin: 0 0 8px;
  letter-spacing: .04em;
}

.page-home .home-step-body p {
  font-size: .92rem;
  color: var(--color-gray);
  line-height: 1.7;
  margin: 0;
}

.page-home .home-about {
  background: var(--color-ivory);
  padding: 92px 0;
  scroll-margin-top: 120px;
}

.page-home .home-about-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.page-home .home-about-image {
  position: relative;
}

.page-home .home-about-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border: 1px solid var(--color-stone);
  box-shadow: var(--shadow-card);
}

.page-home .home-about-marker {
  position: absolute;
  bottom: -18px;
  right: 20px;
  background: var(--color-terra);
  color: var(--color-white);
  padding: 8px 16px;
  font-size: .84rem;
  letter-spacing: .12em;
  box-shadow: 4px 4px 0 rgba(10, 31, 60, .16);
}

.page-home .home-about-content p {
  color: var(--color-gray);
  line-height: 1.8;
  margin: 16px 0 0;
  max-width: 46em;
}

.page-home .home-about-content .btn {
  margin-top: 28px;
}

.page-home .home-latest {
  background: var(--color-white);
  padding: 92px 0;
  position: relative;
  scroll-margin-top: 120px;
}

.page-home .home-latest::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-orange) 50%, var(--color-moss));
}

.page-home .home-announce-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0 28px;
}

.page-home .home-announce-filter .tag {
  text-decoration: none;
  border: 1px solid transparent;
  padding: 6px 14px;
}

.page-home .home-announce-filter .tag:hover {
  border-color: var(--color-ink);
}

.page-home .home-announce-groups {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.page-home .home-announce-group {
  background: var(--color-stone);
  border: 1px solid rgba(90, 107, 78, .18);
  padding: 30px 28px;
  scroll-margin-top: 150px;
}

.page-home .home-announce-group-title {
  display: inline-block;
  font-size: .96rem;
  font-weight: 900;
  letter-spacing: .1em;
  color: var(--color-deep-blue);
  margin: 0 0 22px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--color-gold);
}

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

.page-home .home-announce-list li + li {
  margin-top: 22px;
}

.page-home .home-announce-list a {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 12px;
  text-decoration: none;
  color: var(--color-ink);
  line-height: 1.65;
  font-size: .93rem;
  transition: color .2s;
}

.page-home .home-announce-list a:hover {
  color: var(--color-orange);
}

.page-home .home-latest-more {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 34px;
  margin-top: 36px;
}

.page-home .home-quick-link {
  color: var(--color-orange);
  font-weight: 700;
  text-decoration: none;
  font-size: .95rem;
  transition: color .2s;
}

.page-home .home-quick-link i {
  font-style: normal;
  display: inline-block;
  transition: transform .2s;
}

.page-home .home-quick-link:hover {
  color: var(--color-terra);
}

.page-home .home-quick-link:hover i {
  transform: translateX(4px);
}

.page-home .home-trust {
  background: var(--color-deep-blue);
  color: var(--color-white);
  padding: 72px 0;
  position: relative;
}

.page-home .home-trust::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(212, 168, 67, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 168, 67, .08) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
}

.page-home .home-trust-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}

.page-home .home-trust-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.page-home .home-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 96px;
  font-size: .84rem;
  color: rgba(247, 243, 233, .72);
  letter-spacing: .04em;
}

.page-home .home-stat strong {
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--color-gold);
  line-height: 1.2;
}

.page-home .home-trust-desc p {
  color: rgba(247, 243, 233, .8);
  font-size: .93rem;
  line-height: 1.8;
  margin: 0 0 20px;
}

.page-home .home-trust .btn-outline {
  border-color: rgba(247, 243, 233, .5);
  color: var(--color-ivory);
}

.page-home .home-trust .btn-outline:hover {
  background: rgba(247, 243, 233, .1);
}

@media (min-width: 640px) {
  .page-home .home-entry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 820px) {
  .page-home .home-announce-groups {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .page-home .home-trust-inner {
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: 56px;
  }
}

@media (min-width: 860px) {
  .page-home .home-guide-inner {
    grid-template-columns: 2fr 3fr;
    gap: 60px;
  }

  .page-home .home-about-inner {
    grid-template-columns: 5fr 7fr;
    gap: 60px;
  }
}

@media (min-width: 900px) {
  .page-home .home-hero {
    padding: 140px 0 64px;
  }

  .page-home .home-hero-inner {
    grid-template-columns: 7fr 3fr;
    gap: 56px;
  }

  .page-home .home-hero-aside {
    justify-self: end;
  }

  .page-home .home-guide {
    padding: 96px 0;
  }

  .page-home .home-about {
    padding: 112px 0;
  }

  .page-home .home-latest {
    padding: 112px 0;
  }

  .page-home .home-trust {
    padding: 80px 0;
  }
}

@media (min-width: 1024px) {
  .page-home .home-entry-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
