.interior-hero {
  background: linear-gradient(to bottom, var(--sage) 0%, var(--sage) 50%, #ffffff 100%);
  padding: 6rem 0rem 2rem;
  overflow: hidden;
}

.interior-hero__content {
  max-width: var(--column-width);
  margin: 0 auto;
  width: 100%;
  padding: 2rem 2rem 1.5rem;
  text-align: center;
}

.interior-hero__subtitle {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.75;
  margin-bottom: 0.75rem;
}

.interior-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
}

.interior-hero__image-wrap {
  max-width: var(--column-width);
  max-height: 450px;
  margin: 0 auto;
  width: 100%;
  padding: 2rem 2rem;
  overflow: hidden;
  position: relative;  
}

.interior-hero__image {
  width: 100%;
  max-height: 450px;
  object-fit: cover;
  position: relative;
}

.password-gate {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
}

.password-gate__inner {
  max-width: 420px;
  width: 100%;
  text-align: center;
}

.password-gate__heading {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--sage);
  margin-bottom: 0.5rem;
}

.password-gate__subtext {
  color: #666;
  margin-bottom: 1.5rem;
}

.password-gate__error {
  color: var(--terracotta);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.password-gate__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.password-gate__input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.15);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
}

.password-gate__input:focus {
  border-color: var(--sage);
}