/* Homepage viewport layout. The fixed header does not add extra page height. */
.home { --home-header-height: 109px; }
.home .site-header {
  position: fixed;
  inset: 0 0 auto;
  width: 100%;
  margin: 0;
  background: linear-gradient(180deg, rgba(16,12,10,.82), rgba(16,12,10,.15));
}
.home .site-header.is-scrolled,
.home .site-header.menu-open { background: rgba(27,21,20,.98); }
.home .brand img { display: block; width: auto; max-width: 100%; }
.hero {
  position: relative;
  isolation: isolate;
  box-sizing: border-box;
  height: auto;
  min-height: 100vh;
  min-height: 100svh;
  padding-top: var(--home-header-height);
  display: grid;
  grid-template-rows: 1fr auto auto;
  align-items: stretch;
  background: #241911;
  border: 0;
  overflow: hidden;
}
.hero::after { display: none; }
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  z-index: -3;
}
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(16,10,8,.3), transparent 35%, rgba(16,10,8,.48)),
    linear-gradient(90deg, rgba(20,12,10,.08), rgba(20,12,10,.65) 40%, rgba(20,12,10,.65) 60%, rgba(20,12,10,.08));
}
.hero-content {
  width: 100%;
  min-width: 0;
  padding-block: clamp(24px, 5vh, 64px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: clamp(18px, 3vh, 28px);
  text-shadow: 0 2px 20px #0004;
}
.hero .hero-slogan {
  max-width: 100%;
  margin: 0;
  font-size: 30pt;
  font-weight: 400;
  font-style: italic;
  letter-spacing: .005em;
  line-height: 1.15;
  color: #f6b5c1;
  text-wrap: balance;
}
.hero .hero-description {
  width: 100%;
  max-width: 900px;
  margin: 0;
  color: #e5d9d0;
  font-size: clamp(0.5rem, 1.3vw, 1.1875rem);
  line-height: 1.65;
  text-wrap: balance;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px 24px;
  text-shadow: none;
}
.hero-primary { padding: 15px 24px; font-size: .875rem; border-radius: 100px; gap: 22px; box-shadow: 0 7px 25px #0004; }
.hero-secondary { display: inline-flex; align-items: center; gap: 18px; border-bottom: 1px solid #cba787; padding: 9px 0 6px; color: #f5e8da; font-size: .875rem; }
.hero-secondary:hover { border-color: var(--pink); color: var(--pink); }
.hero-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-self: center;
  gap: 9px;
  padding: 12px 24px 24px;
  color: #f0d1b8;
}
.hero-scroll span { font-size: .625rem; letter-spacing: .2em; }
.hero-scroll svg { animation: scroll-bounce 1.8s ease-in-out infinite; }
.hero > .heritage-strip {
  width: 100%;
  margin: 0;
  padding-block: 18px;
  background: rgba(34,25,22,.92);
  border-top: 1px solid #76513a66;
  border-bottom: 0;
}
.hero > .heritage-strip .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 24px;
}
.hero > .heritage-strip .container > span { white-space: nowrap; }
@media (max-width: 767px) {
  .hero-image { object-position: 29% center; }
  .hero-shade { background: linear-gradient(180deg, #100b0966, #100b09b8 45%, #100b09b0); }
  .hero-content { padding-block: 24px; gap: 22px; }
  .hero .hero-slogan { font-size: 30pt; }
  .hero .hero-description { font-size: 0.5rem; line-height: 1.6; }
  .hero-primary { padding: 13px 22px; font-size: .8125rem; }
  .hero-scroll { padding-bottom: 20px; }
  .hero > .heritage-strip { padding-block: 12px; }
  .hero > .heritage-strip .container { justify-content: center; gap: 6px 18px; }
  .hero > .heritage-strip .container > span:last-child { display: block; }
}
@media (max-height: 650px) and (min-width: 768px) {
  .hero-content { padding-block: 20px; gap: 16px; }
  .hero .hero-slogan { font-size: 30pt; }
  .hero-scroll { padding-block: 8px 16px; }
}
@keyframes scroll-bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(8px); } }
@media (prefers-reduced-motion: reduce) { .hero-scroll svg { animation: none; } }
