/* ── Homepage ── */

/* ─── Hero ──────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 9.5rem 0 6rem;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(18, 26, 36, 0.60) 0%,
      rgba(18, 26, 36, 0.28) 45%,
      rgba(18, 26, 36, 0.55) 100%),
    url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1920&q=80') center/cover no-repeat;
  z-index: -2;
}

/* Grain texture overlay */
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.88' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.07;
  pointer-events: none;
  z-index: 1;
}

/* Terracotta bottom accent */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--color-terracotta) 30%, var(--color-gold) 70%, transparent 100%);
  z-index: 2;
}

/* Centered editorial layout: label + title + search card */
.hero__inner {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero .section-label {
  color: var(--color-gold);
  margin-bottom: 1.25rem;
  font-size: 0.72rem;
  letter-spacing: 5px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 5.2rem);
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 1.25rem;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 32px rgba(0, 0, 0, 0.45);
  max-width: 1000px;
}

.hero__title em {
  font-style: italic;
  color: var(--color-gold);
}

.hero__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  color: rgba(255, 255, 255, 0.85);
  margin: 0 auto 2.75rem;
  max-width: 620px;
  line-height: 1.7;
  font-weight: 400;
}

/* Floating glass shell around the search pill */
.hero-search-shell {
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 100px;
  padding: 0.65rem;
  box-shadow: 0 24px 64px rgba(18, 26, 36, 0.35);
}

.hero-search-shell .hero-search {
  max-width: none;
  box-shadow: 0 4px 20px rgba(18, 26, 36, 0.12);
}

@media (max-width: 640px) {
  .hero-search-shell {
    border-radius: 32px;
    padding: 0.5rem;
  }
}

.hero__quick-links {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.75rem;
}

.hero__ql {
  padding: 0.4rem 1.1rem;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.8rem;
  transition: all var(--transition);
  backdrop-filter: blur(6px);
  letter-spacing: 0.3px;
}

.hero__ql:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-navy);
}

/* ─── CTA Banner ────────────────────────────────────────── */
.cta-banner { text-align: center; }

.cta-banner__title {
  font-family: var(--font-display);
  color: var(--color-white);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.cta-banner__text {
  color: rgba(255, 255, 255, 0.7);
  max-width: 540px;
  margin: 0 auto;
  font-size: 0.975rem;
  line-height: 1.75;
}

/* ─── Mobile ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero { min-height: auto; padding: 8.5rem 0 4.5rem; }
}

@media (max-width: 768px) {
  .hero { padding: 7.5rem 0 4rem; }
  .hero__title { font-size: clamp(2.2rem, 8vw, 3.2rem); }
}
