.page-home {
  --hero-bg-gradient: linear-gradient(135deg, var(--primary-bg) 0%, #0d1f3c 100%);
}

.page-home .breadcrumb {
  padding: 0.5rem 1.5rem;
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-family: var(--font-mono);
}
.page-home .breadcrumb span::before {
  content: "// ";
  color: var(--primary-accent);
}

.page-home .frame-window {
  position: relative;
  margin: 1rem;
  border: 2px solid var(--primary-accent);
  overflow: hidden;
  background: var(--hero-bg-gradient);
}
.page-home .frame-window .frame-border {
  position: relative;
  padding: 2rem;
  border: 1px solid rgba(212, 167, 69, 0.3);
  margin: 1rem;
}
.page-home .scale-mark {
  position: absolute;
  width: 12px;
  height: 12px;
  border-color: var(--primary-accent);
  border-style: solid;
}
.page-home .scale-mark.top-left {
  top: -2px;
  left: -2px;
  border-width: 2px 0 0 2px;
}
.page-home .scale-mark.top-right {
  top: -2px;
  right: -2px;
  border-width: 2px 2px 0 0;
}
.page-home .scale-mark.bottom-left {
  bottom: -2px;
  left: -2px;
  border-width: 0 0 2px 2px;
}
.page-home .scale-mark.bottom-right {
  bottom: -2px;
  right: -2px;
  border-width: 0 2px 2px 0;
}

.page-home .hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .page-home .hero-content {
    flex-direction: row;
    align-items: center;
  }
}
.page-home .hero-text {
  flex: 1;
}
.page-home .hero-image {
  flex: 0 0 auto;
}
.page-home .hero-img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}
.page-home .hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}
.page-home .hero-meta {
  font-family: var(--font-mono);
  color: var(--tertiary-accent);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.page-home .btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
  color: var(--primary-bg);
  padding: 0.75rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.2s;
}
.page-home .btn:hover {
  transform: translateY(-2px);
}

.page-home section {
  margin: 3rem 0;
}
.page-home .section-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .page-home .section-inner {
    flex-direction: row;
    align-items: center;
  }
  .page-home .section-inner.reverse {
    flex-direction: row-reverse;
  }
}
.page-home .section-image {
  flex: 0 0 45%;
}
.page-home .section-image img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
}
.page-home .section-text {
  flex: 1;
}
.page-home .section-title {
  font-size: 1.75rem;
  font-weight: bold;
  background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.75rem;
}
.page-home .section-desc {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.page-home .link-gold {
  color: var(--primary-accent);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.page-home .link-gold:hover {
  border-bottom-color: var(--primary-accent);
}

.page-home .center-text {
  text-align: center;
  justify-content: center;
}

.page-home .brand-atmosphere {
  margin: 0;
  overflow: hidden;
}
.page-home .atmosphere-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.page-home [data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.page-home [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .page-home [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .page-home .btn {
    transition: none;
  }
}

@media (max-width: 767px) {
  .page-home .frame-window .hero-content {
    flex-direction: column;
  }
  .page-home .hero-image {
    order: -1;
  }
  .page-home .section-inner {
    flex-direction: column;
  }
  .page-home .section-image {
    flex: 0 0 100%;
  }
  .page-home img {
    max-width: 100%;
    height: auto;
  }
  .page-home .scale-mark {
    width: 8px;
    height: 8px;
  }
}
