/* Illustrated note pyramid. Scoped to avoid changing other fragrance visuals. */
.fn-note-pyramid-wrap { display: block; width: 100%; padding: 0; margin: 0; overflow: visible; }
.fn-pyramid { --pyramid-accent: #8c6c34; width: 100%; border: 1px solid var(--fn-border, #e5e1d8); border-radius: 16px; background: var(--fn-surface, #fff); overflow: hidden; }
.fn-pyramid__intro { text-align: center; padding: 27px 20px 22px; border-bottom: 1px solid var(--fn-border, #e5e1d8); }
.fn-pyramid__eyebrow { font-size: 10px; font-weight: 700; letter-spacing: .18em; color: var(--pyramid-accent); }
.fn-pyramid__intro p { margin: 7px 0 0; font-family: Fraunces, Georgia, serif; font-size: clamp(17px, 2vw, 22px); line-height: 1.4; color: var(--fn-text); }
.fn-pyramid__tier { padding: 22px 20px 24px; position: relative; background: linear-gradient(110deg, rgba(177,151,98,.045), transparent 55%); }
.fn-pyramid__tier + .fn-pyramid__tier { border-top: 1px solid var(--fn-border, #e5e1d8); }
.fn-pyramid__tier--heart { --pyramid-accent: #a56562; background: linear-gradient(110deg, rgba(180,111,108,.045), transparent 55%); }
.fn-pyramid__tier--base { --pyramid-accent: #79604e; background: linear-gradient(110deg, rgba(123,91,64,.06), transparent 55%); }
.fn-pyramid__heading { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 20px; }
.fn-pyramid__number { display: grid; place-items: center; width: 30px; height: 30px; border: 1px solid var(--fn-border, #e5e1d8); border-radius: 50%; color: var(--pyramid-accent); font-size: 10px; font-weight: 600; font-variant-numeric: tabular-nums; }
.fn-pyramid__heading h3 { margin: 0; font-family: Fraunces, Georgia, serif; font-size: 19px; font-weight: 500; line-height: 1.25; color: var(--fn-text); }
.fn-pyramid__heading p { margin: 3px 0 0; font-size: 11px; line-height: 1.4; color: var(--fn-text-muted, #666); }
.fn-pyramid__notes { display: flex; flex-wrap: wrap; justify-content: center; align-items: flex-start; gap: 18px 14px; padding: 0; margin: 0 auto; list-style: none; max-width: 420px; }
.fn-pyramid__tier--heart .fn-pyramid__notes { max-width: 540px; }
.fn-pyramid__tier--base .fn-pyramid__notes { max-width: 660px; }
.fn-pyramid__notes li { width: 94px; margin: 0; padding: 0; list-style: none; }
.fn-pyramid__note { display: flex; flex-direction: column; align-items: center; gap: 9px; color: var(--fn-text, #282822); text-align: center; text-decoration: none; border-radius: 12px; height: 100%; }
.fn-pyramid__art { display: grid; place-items: center; width: 84px; height: 84px; background: #fff; border: 1px solid #eeeae3; border-radius: 18px; overflow: hidden; box-shadow: 0 3px 10px rgba(58,46,25,.035); transition: transform .18s ease, box-shadow .18s ease; }
.fn-pyramid__art img { display: block; width: 100%; height: 100%; object-fit: contain; padding: 5px; box-sizing: border-box; }
.fn-pyramid__name { font-size: 12px; font-weight: 500; line-height: 1.4; overflow-wrap: anywhere; }
.fn-pyramid__initial { font-family: Fraunces, Georgia, serif; font-size: 34px; color: #8c6c34; }
.fn-pyramid__note:focus-visible { outline: 2px solid var(--pyramid-accent); outline-offset: 5px; }
@media (hover: hover) { a.fn-pyramid__note:hover .fn-pyramid__art { transform: translateY(-3px); box-shadow: 0 7px 16px rgba(58,46,25,.10); } a.fn-pyramid__note:hover .fn-pyramid__name { text-decoration: underline; text-underline-offset: 3px; } }
.fn-pyramid__footnote { margin: 0; padding: 14px 18px; border-top: 1px solid var(--fn-border, #e5e1d8); text-align: center; font-size: 11px; line-height: 1.5; color: var(--fn-text-muted, #666); }
/* The illustrated tiers replace the old duplicate text-only list. */
.fn-note-pyramid-wrap:has(.fn-pyramid) + .fn-notes-layers { display: none; }
@media (max-width: 480px) {
  .fn-pyramid__intro { padding: 20px 12px 17px; }
  .fn-pyramid__tier { padding: 19px 10px 21px; }
  .fn-pyramid__notes { gap: 16px 7px; }
  .fn-pyramid__notes li { width: calc((100% - 14px) / 3); max-width: 94px; }
  .fn-pyramid__art { width: min(76px, 100%); height: auto; aspect-ratio: 1; border-radius: 15px; }
  .fn-pyramid__name { font-size: 11px; }
}
@media (prefers-reduced-motion: reduce) { .fn-pyramid__art { transition: none; } }
