.page-home {
  position: relative;
  background: var(--primary-bg);
  color: var(--text-primary);
  font-family: var(--font-sans);
  overflow-x: hidden;
}

.page-home .home-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  padding-top: calc(var(--header-height) + 3rem);
  padding-bottom: 3rem;
  overflow: hidden;
  background: linear-gradient(180deg, var(--primary-bg) 0%, var(--elevated-bg) 100%);
}

.page-home .home-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.page-home .home-hero__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.page-home .home-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 35% 40%, rgba(212, 175, 55, 0.12) 0%, transparent 45%),
    linear-gradient(180deg, rgba(10, 25, 48, 0.35) 0%, rgba(10, 25, 48, 0.9) 85%);
}

.page-home .home-hero__cloud {
  position: absolute;
  width: 22rem;
  height: 22rem;
  top: 4rem;
  right: -9rem;
  border: 1px solid var(--gold-dim);
  border-radius: 50%;
  z-index: 1;
}

.page-home .home-hero__cloud--small {
  width: 14rem;
  height: 14rem;
  top: 12rem;
  right: 1rem;
  border-color: rgba(212, 175, 55, 0.15);
}

.page-home .home-hero__seal {
  position: absolute;
  top: 3rem;
  right: var(--container-pad);
  z-index: 2;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--gold-accent);
  border: 1px solid var(--gold-accent);
  border-radius: 50%;
  background: rgba(10, 25, 48, 0.65);
}

.page-home .home-hero__vertical {
  position: absolute;
  left: 1.25rem;
  bottom: 13rem;
  z-index: 2;
  font-size: 0.75rem;
  letter-spacing: 0.45em;
  writing-mode: vertical-rl;
  color: var(--text-secondary);
  text-transform: uppercase;
}

.page-home .home-hero__inner {
  position: relative;
  z-index: 2;
  padding-top: 2rem;
}

.page-home .home-hero .breadcrumb {
  margin-bottom: 2.5rem;
}

.page-home .home-hero__content {
  max-width: 880px;
}

.page-home .home-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.4rem 1rem;
  border: 1px solid var(--gold-dim);
  border-radius: var(--radius-pill);
  color: var(--gold-accent);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  background: rgba(212, 175, 55, 0.06);
  margin-bottom: 1.5rem;
}

.page-home .home-hero__content h1 {
  margin: 0 0 1.25rem;
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.15;
  letter-spacing: 0.02em;
  color: var(--text-primary);
}

.page-home .home-hero__lead {
  margin: 0 0 2rem;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.85;
  color: var(--text-secondary);
  max-width: 46rem;
}

.page-home .home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.page-home .home-hero__actions .btn,
.page-home .home-service__footer .btn,
.page-home .home-contact__info .btn {
  min-height: 48px;
  padding: 0 1.5rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 1rem;
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease, filter 0.25s ease;
}

.page-home .btn--ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.page-home .btn--ghost:hover {
  border-color: var(--gold-accent);
  color: var(--gold-accent);
}

.page-home .btn--gold:hover {
  filter: brightness(0.94);
}

.page-home .home-hero__preview-note {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 3.5rem;
  color: var(--text-secondary);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
}

.page-home .home-hero__preview-line {
  flex: 1;
  max-width: 4rem;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-accent), transparent);
}

.page-home .home-preview {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.page-home .preview-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  min-height: 9rem;
  padding: 1.25rem 1rem;
  background: linear-gradient(145deg, rgba(30, 58, 102, 0.72), rgba(10, 25, 48, 0.92));
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--text-primary);
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
}

.page-home .preview-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, var(--gold-accent), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.page-home .preview-card:hover {
  border-color: var(--gold-accent);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.12);
}

.page-home .preview-card:hover::before {
  opacity: 1;
}

.page-home .preview-card__index {
  font-family: var(--font-serif);
  font-size: 0.78rem;
  color: var(--gold-accent);
  letter-spacing: 0.1em;
  opacity: 0.9;
}

.page-home .preview-card__title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  line-height: 1.4;
}

.page-home .preview-card__desc {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--text-secondary);
}

.page-home .preview-card:nth-child(5) {
  grid-column: 1 / -1;
  min-height: 6.5rem;
}

.page-home .home-member {
  padding: 4rem 0;
  position: relative;
}

.page-home .home-member__frame {
  position: relative;
  display: grid;
  gap: 2rem;
  padding: 1.25rem 1.25rem 2rem;
  background: var(--elevated-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.page-home .home-member__frame::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-accent), transparent 60%);
}

.page-home .home-member__media {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.page-home .home-member__shot {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.page-home .home-member__caption {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
  letter-spacing: 0.08em;
}

.page-home .home-member__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-home .home-module-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.35rem 0.9rem;
  border: 1px solid var(--gold-dim);
  border-radius: var(--radius-pill);
  color: var(--gold-accent);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  background: rgba(212, 175, 55, 0.06);
}

.page-home .home-module-tag i {
  font-style: normal;
  font-weight: 600;
  opacity: 0.8;
}

.page-home .home-member__content h2,
.page-home .home-search__prompt h2,
.page-home .home-service__heading h2,
.page-home .home-journal__heading h2,
.page-home .home-contact__info h2 {
  margin: 0 0 1rem;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.2;
  color: var(--text-primary);
}

.page-home .home-member__lead {
  margin: 0 0 1.25rem;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-secondary);
}

.page-home .home-member__list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.page-home .home-member__list li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-primary);
}

.page-home .home-member__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-accent);
}

.page-home .home-member__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.page-home .home-member__more-link {
  color: var(--gold-accent);
  text-decoration: none;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--gold-dim);
  padding-bottom: 0.2rem;
}

.page-home .home-member__more-link:hover {
  border-color: var(--gold-accent);
}

.page-home .home-search {
  padding: 4.5rem 0;
  position: relative;
}

.page-home .home-search::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 25, 48, 0.3), rgba(30, 58, 102, 0.25)), var(--primary-bg);
  z-index: 0;
}

.page-home .home-search__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
  align-items: center;
}

.page-home .home-search__prompt {
  position: relative;
  padding: 2.5rem 1.5rem;
  background: linear-gradient(145deg, var(--overlay-bg), var(--elevated-bg));
  border: 1px solid var(--gold-dim);
  border-radius: var(--radius-lg);
}

.page-home .home-search__lead {
  margin: 0 0 1.5rem;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.page-home .home-search__box {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0.5rem;
  margin: 1.5rem 0 1rem;
  padding: 0.5rem 0.5rem 0.5rem 1.25rem;
  background: var(--primary-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-pill);
}

.page-home .home-search__box-text {
  flex: 1 1 60%;
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  color: var(--text-secondary);
  min-height: 2.5rem;
}

.page-home .home-search__box-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1rem;
  background: var(--gold-accent);
  color: var(--primary-bg);
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.25s ease;
}

.page-home .home-search__box-btn:hover {
  background: #f0c348;
}

.page-home .home-search__hint {
  margin: 0 0 1.25rem;
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.page-home .home-search__more {
  color: var(--gold-accent);
  text-decoration: none;
  font-size: 0.95rem;
}

.page-home .home-search__more:hover {
  border-bottom: 1px solid var(--gold-accent);
}

.page-home .home-search__media {
  position: relative;
}

.page-home .home-search__shot {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

.page-home .home-search__note {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  padding: 0.4rem 0.8rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--primary-bg);
  background: var(--gold-accent);
  border-radius: var(--radius-pill);
}

.page-home .home-service {
  padding: 4.5rem 0;
  background: linear-gradient(180deg, var(--primary-bg), var(--elevated-bg));
}

.page-home .home-service__heading {
  max-width: 780px;
  margin-bottom: 2.5rem;
}

.page-home .home-service__lead {
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.page-home .home-service__body {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.page-home .home-service__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.page-home .home-service__stat {
  padding: 1.5rem 1rem;
  background: var(--elevated-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  text-align: center;
}

.page-home .home-service__stat--version {
  border-color: var(--gold-dim);
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.12), var(--elevated-bg));
}

.page-home .home-service__number {
  display: block;
  margin-bottom: 0.4rem;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  line-height: 1.2;
  color: var(--gold-accent);
}

.page-home .home-service__label {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.page-home .home-service__visual {
  position: relative;
}

.page-home .home-service__map {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gold-dim);
}

.page-home .home-service__caption {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
  letter-spacing: 0.08em;
}

.page-home .home-service__footer {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gold-dim);
}

.page-home .home-service__audience {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.page-home .home-service__audience-label {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: var(--text-secondary);
  margin-right: 0.25rem;
}

.page-home .home-service__audience-item {
  padding: 0.35rem 0.9rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  color: var(--text-primary);
}

.page-home .home-journal {
  padding: 4.5rem 0;
}

.page-home .home-journal__heading {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.page-home .home-journal__more {
  color: var(--gold-accent);
  text-decoration: none;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
}

.page-home .home-journal__more:hover {
  border-bottom: 1px solid var(--gold-accent);
}

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

.page-home .home-journal__item {
  position: relative;
  padding: 1.5rem 0 1.5rem 2rem;
  border-bottom: 1px solid rgba(58, 86, 128, 0.25);
}

.page-home .home-journal__item:last-child {
  border-bottom: none;
}

.page-home .home-journal__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.75rem;
  width: 9px;
  height: 9px;
  background: var(--primary-bg);
  border: 2px solid var(--gold-accent);
  border-radius: 50%;
}

.page-home .home-journal__item::after {
  content: "";
  position: absolute;
  left: 4px;
  top: calc(1.75rem + 9px);
  bottom: -1.25rem;
  width: 1px;
  background: linear-gradient(180deg, var(--gold-dim), transparent);
}

.page-home .home-journal__item:last-child::after {
  display: none;
}

.page-home .home-journal__tag {
  display: inline-block;
  margin-bottom: 0.5rem;
  padding: 0.25rem 0.8rem;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--gold-dim);
  color: var(--gold-accent);
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
}

.page-home .home-journal__title {
  margin: 0 0 0.4rem;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  line-height: 1.5;
}

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

.page-home .home-journal__title a:hover {
  color: var(--gold-accent);
}

.page-home .home-journal__summary {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 52rem;
}

.page-home .home-contact {
  padding: 4.5rem 0;
  background: linear-gradient(145deg, var(--elevated-bg), var(--primary-bg));
}

.page-home .home-contact__inner {
  display: grid;
  gap: 2.5rem;
}

.page-home .home-contact__lead {
  margin: 0 0 1.5rem;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 40rem;
}

.page-home .home-contact__list {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

.page-home .home-contact__item {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 0.9rem 1.25rem;
  background: rgba(10, 25, 48, 0.5);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
}

.page-home .home-contact__label {
  flex-shrink: 0;
  min-width: 4.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: var(--text-secondary);
}

.page-home .home-contact__value {
  font-size: 0.98rem;
  color: var(--text-primary);
}

.page-home .home-contact__item--time {
  border-color: var(--gold-dim);
}

.page-home .home-contact__dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 0.5rem;
  background: var(--red-accent);
  border-radius: 50%;
}

.page-home .home-contact__aside {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.page-home .home-contact__card {
  padding: 1.25rem 1.25rem 1.5rem;
  background: var(--primary-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
}

.page-home .home-contact__card--icp {
  border-color: var(--gold-dim);
}

.page-home .home-contact__card-label {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--text-secondary);
}

.page-home .home-contact__address {
  margin: 0;
  font-style: normal;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-primary);
}

.page-home .home-contact__icp {
  font-size: 0.95rem;
  color: var(--gold-accent);
}

.page-home .home-contact__note {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

@media (min-width: 768px) {

  .page-home .home-hero__content {
    margin-top: 1rem;
  }

  .page-home .home-preview {
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
  }

  .page-home .home-preview .preview-card:nth-child(5) {
    grid-column: auto;
    min-height: 9rem;
  }

  .page-home .home-member {
    padding: 5rem 0;
  }

  .page-home .home-member__frame {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3rem;
    padding: 2.5rem;
  }

  .page-home .home-member__content {
    padding-top: 0.5rem;
  }

  .page-home .home-search {
    padding: 5rem 0;
  }

  .page-home .home-search__inner {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
  }

  .page-home .home-search__prompt {
    padding: 3rem;
  }

  .page-home .home-service {
    padding: 5.5rem 0;
  }

  .page-home .home-service__body {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 3rem;
  }

  .page-home .home-journal {
    padding: 5rem 0;
  }

  .page-home .home-contact {
    padding: 5rem 0;
  }

  .page-home .home-contact__inner {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 0;
  }

  .page-home .home-contact__aside {
    margin-left: 3rem;
  }

}

@media (min-width: 1200px) {

  .page-home .home-hero__vertical {
    left: calc((100vw - var(--container-max)) / 2 - 2.5rem);
  }

  .page-home .home-hero__lead {
    font-size: 1.15rem;
  }

}
