/* ==========================================================================
   HERO SECTION STYLES (hero.css)
   Compact viewport-fit hero layout matching exact reference mockup
   ========================================================================== */

.hero {
  position: relative;
  height: clamp(480px, 70vh, 560px); /* Fits cleanly in standard laptop viewports */
  display: flex;
  align-items: center;
  background-color: var(--color-background);
  background-position: center right;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  padding-top: 1.5rem;
  padding-bottom: 2.5rem;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(253, 246, 233, 0.94) 0%, rgba(253, 246, 233, 0.75) 48%, rgba(253, 246, 233, 0.15) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 5;
}

/* Hero Panel (Pointed Arch Scalloped Overlay matching reference) */
.arch-hero-panel {
  background-color: rgba(253, 246, 233, 0.96);
  backdrop-filter: blur(4px);
  padding: 2.2rem 2.2rem 1.8rem;
  border-radius: 90px 90px 14px 14px;
  border: 1.5px solid var(--color-accent-dark);
  box-shadow: 0 8px 28px rgba(62, 39, 35, 0.12);
  position: relative;
  max-width: 480px; /* Compact width matching reference */
}

/* Pointed top arch peak indicator */
.arch-hero-panel::before {
  content: "";
  position: absolute;
  top: -9px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 16px;
  height: 16px;
  background-color: #FDF6E9;
  border-top: 1.5px solid var(--color-accent-dark);
  border-left: 1.5px solid var(--color-accent-dark);
}

.hero__headline {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 2vw + 0.8rem, 2.2rem); /* ~30px-35px */
  line-height: 1.18;
  color: var(--color-ink);
  margin-bottom: 0.85rem;
}

.hero__headline-line {
  display: block;
}

.hero__headline-accent {
  color: var(--color-secondary);
}

.hero__subtext {
  font-size: 0.85rem; /* ~13.5px */
  line-height: 1.5;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
  max-width: 420px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.48rem 1.15rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border-radius: var(--radius-pill);
  height: 38px;
  white-space: nowrap;
  transition: all var(--duration-fast) var(--ease-out);
}

.hero__btn--primary {
  background-color: var(--color-primary);
  color: #FFFFFF;
  border: 1.5px solid var(--color-primary);
  box-shadow: 0 2px 6px rgba(141, 30, 30, 0.2);
}

.hero__btn--primary:hover {
  background-color: var(--color-primary-light);
  border-color: var(--color-primary-light);
  transform: translateY(-1px);
}

.hero__btn--secondary {
  background-color: #FDF6E9;
  color: var(--color-ink);
  border: 1.5px solid var(--color-primary);
}

.hero__btn--secondary:hover {
  background-color: var(--color-primary);
  color: #FFFFFF;
  transform: translateY(-1px);
}

/* Bottom Skyline Silhouette Divider Strip */
.hero__skyline-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4;
  line-height: 0;
}

.hero__skyline-bottom svg {
  display: block;
  width: 100%;
  height: clamp(32px, 4vw, 44px);
  fill: var(--color-primary);
}

/* Interior Page Short Hero Banner */
.hero-short {
  position: relative;
  padding: 2.2rem 0 2.5rem;
  background-color: var(--color-surface-alt);
  border-bottom: 1px solid var(--color-border);
}

.hero-short__title {
  margin-bottom: 0.35rem;
  font-size: clamp(1.5rem, 2vw, 2rem);
}
