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

/* ─── HERO BANNER + TRANSPARENT HEADER (matches Heritage/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; }

.spec-hero {
  position: relative;
  width: 100%;
  aspect-ratio: 1920 / 1080;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url('../images/specialty-banner.jpg');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
@media (min-width: 621px) {
  .spec-hero { aspect-ratio: auto; height: 70vh; }
}
@media (max-width: 620px) {
  .site-header__logo-white img { height: 36px; }
}

/* ─── SECTION 1 — EDITORIAL INTRO ─── */
.spec-intro { background: var(--bg-specialty); }
.spec-intro__inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 92px 28px 100px;
  text-align: center;
}
.spec-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;
}
.spec-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;
}
.spec-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;
}
.spec-verse {
  font-family: var(--ui);
  font-size: clamp(19px, 2vw, 23px);
  line-height: 1.6;
  color: var(--ink-muted);
  margin: 20px auto 0;
}
.spec-rule {
  display: block;
  width: 260px;
  height: 33px;
  margin: 30px auto;
  background: url('../images/divider-fleur.png') center/contain no-repeat;
}
.spec-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;
}
.spec-intro__desc + .spec-intro__desc { margin-top: 10px; }

/* ─── SECTION 2 — IMAGE FEATURES ─── */
.spec-feature { background: var(--bg-specialty); }
.spec-feature__media {
  width: 100%;
  margin: 0;
}
.spec-feature__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.spec-feature__body {
  max-width: 640px;
  margin: 0 auto;
  padding: 80px 28px;
  text-align: center;
}
.spec-feature__it {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 22px;
}
.spec-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;
}
.spec-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;
}
.spec-feature__desc + .spec-feature__desc { margin-top: 10px; }
.spec-band { display: block; margin: 0; }
.spec-band img { display: block; width: 100%; height: auto; aspect-ratio: 1023 / 1328; object-fit: cover; }
@media (min-width: 621px) {
  .spec-band img { aspect-ratio: auto; height: 90vh; }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 680px) {
  .spec-intro__inner { padding: 64px 22px 72px; }
  .spec-intro__title { font-size: 28px; }
  .spec-intro__subtitle { margin-top: 6px; font-size: 16px; font-family: var(--ui); }
  .spec-verse { font-size: 16px; }
  .spec-feature__media img { height: auto; aspect-ratio: 16 / 10; }
  .spec-feature__body { padding: 56px 22px; }
}
@media (max-width: 420px) {
  .spec-intro__inner { padding: 52px 18px 60px; }
}
