:root {
  --brand: #c65e2f;
  --brand-deep: rgba(174, 82, 40, 0.82);
  --text: #f6e6d8;
  --shadow: rgba(64, 36, 21, 0.22);
  --sky: #91bad5;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: Baskerville, Georgia, "Times New Roman", serif;
  background: var(--sky);
  color: var(--text);
}

.page-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
}

.background-layer {
  position: absolute;
  inset: -4%;
  background:
    linear-gradient(to bottom, rgba(179, 217, 240, 0.2), rgba(123, 172, 198, 0.08)),
    url("/assets/herro1.jpg") 30% 68% / cover no-repeat;
  filter: blur(4px) saturate(0.94);
  transform: scale(1.01);
  opacity: 0.95;
}

.background-layer::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 10%, rgba(255, 255, 255, 0.4), transparent 28%),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.08), rgba(115, 76, 36, 0.16));
}

.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: grid;
  align-content: start;
  justify-items: center;
  padding: clamp(2rem, 4vw, 3.25rem) 1.25rem 2.5rem;
}

.brand {
  text-align: center;
  color: var(--brand);
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
}

.brand-kicker,
.brand-year {
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 2rem);
  line-height: 1;
}

.brand h1 {
  margin: 0.15em 0 0.1em;
  font-size: clamp(4rem, 9vw, 7rem);
  line-height: 0.88;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.message-card {
  width: min(100%, 56rem);
  padding: clamp(1.5rem, 4vw, 3rem) clamp(1.25rem, 4vw, 2.5rem);
  border-radius: clamp(1.5rem, 3vw, 2rem);
  background: linear-gradient(
    180deg,
    rgba(195, 100, 56, 0.84),
    rgba(173, 82, 38, 0.78)
  );
  box-shadow: 0 24px 60px var(--shadow);
  backdrop-filter: blur(10px);
  text-align: center;
}

.message-card p {
  margin: 0;
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  line-height: 1.52;
  font-weight: 600;
  text-wrap: balance;
}

.message-card p + p {
  margin-top: clamp(1.4rem, 3.8vw, 2.6rem);
}

@media (max-width: 768px) {
  .background-layer {
    inset: -8%;
    filter: blur(7px) saturate(0.94);
    transform: scale(1.08);
    background-position: 54% center;
  }

  .hero {
    padding-top: 3rem;
    align-content: center;
  }

  .message-card p {
    font-size: clamp(1rem, 3.6vw, 1.25rem);
    line-height: 1.45;
  }
}

@media (max-width: 480px) {
  .brand h1 {
    font-size: clamp(3.2rem, 18vw, 4.6rem);
  }

  .brand-kicker,
  .brand-year {
    font-size: 1rem;
  }

  .message-card {
    padding: 1.35rem 1rem;
    border-radius: 1.35rem;
  }
}
