/* ── HOME HERO ── */
.home-hero {
  height: calc(100vh - 80px);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.home-hero-image {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 5rem 5rem 5rem 6rem;
}

.home-tagline {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 4vw, 4.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 2rem;
}

.home-tagline em {
  font-style: italic;
  color: var(--accent);
}

.home-sub {
  font-size: 1.52rem;
  color: var(--text-muted);
  max-width: 320px;
  margin-bottom: 3rem;
  font-family: 'Grenze Gotisch', serif;
  font-weight: 400;
  letter-spacing: 0.5px;
  line-height: 1.6;
}

.home-hero-image img {
  width: 65%;
  /* makes it smaller */
  max-width: 520px;
  /* prevents huge scaling */
  height: auto;
  object-fit: cover;
  border-radius: 5px;
}

/* ── HOME FEATURED ── */
.home-featured {
  padding: 7rem 3rem;
  background: var(--cream);
}
.home-location {
  margin-top: 20px;
  font-size: 1.52rem;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.featured-item {
  cursor: pointer;
  overflow: hidden;
}

.featured-thumb {
  aspect-ratio: 3/4;
  overflow: hidden;
  margin-bottom: 1rem;
}

.featured-thumb .art-placeholder {
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
}

.featured-item:hover .art-placeholder {
  transform: scale(1.03);
}

.featured-title {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 400;
  margin-bottom: 0.3rem;
}

.featured-meta {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--mid);
}

.newsletter {
    text-align: center;
    padding: 80px 20px;
    max-width: 700px;
    margin: 0 auto;
}

.newsletter h2 {
    margin-bottom: 15px;
}

.newsletter p {
    margin-bottom: 25px;
}

.newsletter form {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.newsletter input {
    padding: 12px 16px;
    min-width: 280px;
    border: 1px solid #ccc;
    font-size: 1rem;
}

.newsletter button {
    padding: 12px 20px;
    cursor: pointer;
}