/* ═══════════════════════════════════════════
   Amadio — Heritage page (simple editorial)
   Relies on styles.css for tokens, header,
   drawer, footer and fonts.
   ═══════════════════════════════════════════ */

/* ─── HERO BANNER + TRANSPARENT HEADER (matches Menu page) ─── */
/* Centered white logo in the transparent header (over the banner) */
.site-header__logo-white {
  order: -1;
  z-index: 2;
  display: block;
  line-height: 0;
}
.site-header__logo-white img {
  height: 30px;
  width: auto;
  display: block;
}
.site-header.scrolled .site-header__logo-white {
  display: none;
}

/* Centered banner text */
.site-header__firenze {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--ui);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0.9;
  white-space: nowrap;
}
.site-header.scrolled .site-header__firenze {
  display: none;
}
@media (max-width: 600px) {
  .site-header__firenze {
    font-size: 10px;
    letter-spacing: 0.1em;
    left: 56%;
  }
}

/* Soft dark scrim beneath the header for legibility over the clear banner */
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  bottom: auto;
  height: 220px;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.42) 0%,
    rgba(0, 0, 0, 0.18) 45%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: -1;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.site-header.scrolled::before {
  opacity: 0;
}

.menu-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 28px 80px;
  background-image: url("../images/heritage-street.jpg");
  background-size: cover;
  background-position: bottom;
  overflow: hidden;
}
@media (max-width: 620px) {
  .menu-hero {
    min-height: 0;
    aspect-ratio: 1920 / 1085;
    height: auto;
    padding: 120px 20px 64px;
  }
  .site-header__logo-white img {
    height: 36px;
  }
}

/* ─── SECTION 1 — EDITORIAL INTRO ─── */
.her2-intro {
  background: var(--bg-heritage);
}
.her2-intro__inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 92px 28px 100px;
  text-align: center;
}

.her2-intro__eyebrow {
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 30px;
}

.her2-intro__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(40px, 5.6vw, 68px);
  line-height: 1.04;
  color: var(--red);
  margin: 0;
  text-wrap: balance;
}
.her2-intro__subtitle {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.3;
  color: var(--ink-muted);
  margin: 20px auto 0;
  max-width: 640px;
  text-wrap: balance;
}
.her2-verse {
  font-family: var(--ui);
  font-size: clamp(19px, 2vw, 23px);
  line-height: 1.6;
  color: var(--ink-muted);
  margin: 20px auto 0;
}
.her2-rule {
  display: block;
  width: 260px;
  height: 33px;
  margin: 40px auto;
  background: url("../images/divider-fleur.png") center/contain no-repeat;
}
.her2-intro__desc {
  font-family: var(--serif);
  font-size: clamp(19px, 2vw, 23px);
  line-height: 1.6;
  color: var(--ink-muted);
  margin: 0 auto;
  max-width: 600px;
  text-wrap: pretty;
}

/* ─── SECTION 2 — IMAGE FEATURE ─── */
.her2-feature {
  background: var(--bg-heritage);
}
.her2-feature__media {
  width: 100%;
  margin: 0;
}
.her2-feature__media img {
  display: block;
  width: 100%;
  height: 62vh;
  min-height: 420px;
  max-height: 640px;
  object-fit: cover;
}
.her2-feature__media--divider img {
  height: auto;
  min-height: 0;
  max-height: none;
  aspect-ratio: 1920 / 1090;
}
.her2-feature__media--divider2 img {
  height: auto;
  min-height: 0;
  max-height: none;
  aspect-ratio: 1920 / 1168;
}
.her2-feature__body {
  max-width: 640px;
  margin: 0 auto;
  padding: 80px 28px;
  text-align: center;
}
.her2-feature__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(34px, 4.4vw, 52px);
  line-height: 1.05;
  color: var(--red);
  margin: 0;
  text-wrap: balance;
}
.her2-feature__desc {
  font-family: var(--serif);
  font-size: clamp(19px, 2vw, 23px);
  line-height: 1.6;
  color: var(--ink-muted);
  margin: 0 auto;
  max-width: 560px;
  text-wrap: pretty;
}
.her2-feature__desc + .her2-feature__desc {
  margin-top: 20px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 680px) {
  .her2-intro__inner {
    padding: 64px 22px 72px;
  }
  .her2-intro__title {
    font-size: 28px;
  }
  .her2-feature__title {
    font-size: 28px;
  }
  .her2-intro__subtitle {
    margin-top: 6px;
    font-size: 16px;
    font-family: var(--ui);
  }
  .her2-verse {
    font-size: 16px;
  }
  .her2-feature__media img {
    height: 46vh;
    min-height: 320px;
  }
  .her2-feature__media--divider img {
    height: auto;
    min-height: 0;
    aspect-ratio: 1920 / 1090;
  }
  .her2-feature__media--divider2 img {
    height: auto;
    min-height: 0;
    aspect-ratio: 1920 / 1168;
  }
  .her2-feature__body {
    padding: 56px 22px;
  }
}
@media (max-width: 420px) {
  .her2-intro__inner {
    padding: 52px 18px 60px;
  }
}
