/* ==========================================================================
   storiographer.com  --  illuminated manuscript / watercolor / full-bleed
   Palette:
     manuscript gold   #D4A84B
     rose wash         #E8A0B4
     indigo deep       #2C3E6B
     warm cream        #F7F0E3
     burnt sienna      #A0522D
     forest shadow     #3D5C3A
     parchment mid     #E4D5BE
   Fonts: Playfair Display, Lora, Crimson Pro
   ========================================================================== */

:root {
    --gold:      #D4A84B;
    --rose:      #E8A0B4;
    --indigo:    #2C3E6B;
    --cream:     #F7F0E3;
    --sienna:    #A0522D;
    --forest:    #3D5C3A;
    --parchment: #E4D5BE;

    --ink:       #2C3E6B;
    --ink-soft:  rgba(44, 62, 107, 0.78);

    --f-display: "Playfair Display", "Lora", Georgia, serif;
    --f-body:    "Lora", Georgia, serif;
    --f-annot:   "Crimson Pro", "Lora", Georgia, serif;

    --frame-pad: 5vw;
    --col-max:   780px;

    --bounce:    cubic-bezier(0.34, 1.56, 0.64, 1);
}

* { box-sizing: border-box; }

html, body {
    margin: 0;
    padding: 0;
    background: var(--cream);
    color: var(--ink);
    font-family: var(--f-body);
    font-size: clamp(0.95rem, 1.1vw, 1.1rem);
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body {
    /* layered cream-to-parchment wash over the whole manuscript */
    background:
        radial-gradient(ellipse at 15% 10%, rgba(232, 160, 180, 0.10) 0%, transparent 55%),
        radial-gradient(ellipse at 85% 30%, rgba(212, 168, 75, 0.08) 0%, transparent 55%),
        radial-gradient(ellipse at 50% 80%, rgba(228, 213, 190, 0.35) 0%, transparent 60%),
        linear-gradient(180deg, #F7F0E3 0%, #F2E8D4 100%);
    background-attachment: fixed;
}

.sr-svg-filter {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

/* ---------- paper texture overlay ---------- */
.paper-texture {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    opacity: 0.06;
    mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.55 0 0 0 0 0.40 0 0 0 0 0.18 0 0 0 0.85 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
    background-size: 220px 220px;
}

/* ---------- viewport illumination frame ---------- */
.illumination-frame {
    position: fixed;
    inset: var(--frame-pad);
    pointer-events: none;
    z-index: 3;
    border: 1px solid rgba(212, 168, 75, 0.55);
    border-radius: 2px;
}
.illumination-frame::before,
.illumination-frame::after {
    content: "";
    position: absolute;
    inset: 6px;
    border: 1px solid rgba(212, 168, 75, 0.22);
    border-radius: 1px;
    pointer-events: none;
}
.illumination-frame::after {
    inset: 12px;
    border-color: rgba(212, 168, 75, 0.10);
}

.frame-corner {
    position: absolute;
    width: 60px;
    height: 60px;
    display: block;
    opacity: 0.85;
}
.frame-corner svg { width: 100%; height: 100%; display: block; }
.frame-corner--tl { top: -10px; left: -10px; }
.frame-corner--tr { top: -10px; right: -10px; transform: scaleX(-1); }
.frame-corner--bl { bottom: -10px; left: -10px; transform: scaleY(-1); }
.frame-corner--br { bottom: -10px; right: -10px; transform: scale(-1, -1); }

/* ==========================================================================
   OPENING  --  the illuminated title page
   ========================================================================== */

.opening {
    position: relative;
    min-height: 100vh;
    padding: calc(var(--frame-pad) + 40px) 8vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 1;
    overflow: hidden;
}

.wash {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
}

.wash--opening {
    background:
        radial-gradient(ellipse 60% 55% at 22% 30%, rgba(232, 160, 180, 0.38) 0%, transparent 65%),
        radial-gradient(ellipse 65% 50% at 80% 25%, rgba(212, 168, 75, 0.30) 0%, transparent 65%),
        radial-gradient(ellipse 70% 60% at 50% 85%, rgba(160, 82, 45, 0.18) 0%, transparent 70%),
        radial-gradient(ellipse 55% 55% at 15% 90%, rgba(61, 92, 58, 0.14) 0%, transparent 70%),
        radial-gradient(ellipse 70% 70% at 85% 80%, rgba(44, 62, 107, 0.12) 0%, transparent 70%);
    animation: wash-breathe 22s ease-in-out infinite alternate;
}

@keyframes wash-breathe {
    0%   { background-position: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%; transform: scale(1); }
    50%  { transform: scale(1.04); }
    100% { background-position: 4% 2%, -3% 1%, 2% -2%, -2% 3%, 1% -1%; transform: scale(1.02); }
}

.ornament {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: min(360px, 60vw);
    opacity: 0.75;
    pointer-events: none;
}
.ornament svg { width: 100%; height: auto; display: block; }
.ornament--top    { top: calc(var(--frame-pad) + 30px); }
.ornament--bottom { bottom: calc(var(--frame-pad) + 60px); transform: translateX(-50%) scaleY(-1); }

.opening-inner {
    position: relative;
    max-width: 1000px;
    padding: 40px 20px;
}

.kicker {
    font-family: var(--f-annot);
    font-style: italic;
    font-size: 0.95rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--sienna);
    margin: 0 0 1.2rem;
    opacity: 0.85;
}

.domain-mark {
    font-family: var(--f-display);
    font-weight: 700;
    font-size: clamp(3rem, 8vw, 6.5rem);
    line-height: 1;
    letter-spacing: 0.01em;
    margin: 0;
    color: var(--indigo);
    position: relative;
    display: inline-flex;
    align-items: baseline;
    justify-content: center;
    flex-wrap: nowrap;
}

.domain-mark .drop-cap {
    font-family: var(--f-display);
    font-weight: 900;
    font-size: clamp(7rem, 22vw, 16rem);
    line-height: 0.9;
    color: var(--gold);
    position: relative;
    margin-right: 0.04em;
    text-shadow: 0 2px 24px rgba(212, 168, 75, 0.35);
}

.domain-mark .drop-cap::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 1.25em;
    height: 1.25em;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(232, 160, 180, 0.35) 0%, rgba(232, 160, 180, 0) 65%);
    z-index: -1;
    border-radius: 50%;
}

.domain-mark .domain-rest {
    font-weight: 700;
    font-style: italic;
    color: var(--indigo);
}

.subtitle {
    max-width: 640px;
    margin: 1.6rem auto 1rem;
    font-family: var(--f-annot);
    font-style: italic;
    font-size: clamp(1rem, 1.4vw, 1.25rem);
    line-height: 1.6;
    color: var(--ink-soft);
}

.domain-url {
    font-family: var(--f-annot);
    font-size: 0.8rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--sienna);
    margin: 1.4rem 0 0;
    opacity: 0.7;
}

.scroll-cue {
    position: absolute;
    bottom: calc(var(--frame-pad) + 30px);
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-family: var(--f-annot);
    font-style: italic;
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.75;
}
.scroll-cue-arrow {
    font-size: 1.1rem;
    animation: cue-bob 2.4s ease-in-out infinite;
}
@keyframes cue-bob {
    0%, 100% { transform: translateY(0); opacity: 0.7; }
    50%      { transform: translateY(6px); opacity: 1; }
}

/* ==========================================================================
   PLATES  --  watercolor interstitials
   ========================================================================== */

.plate {
    position: relative;
    width: 100%;
    height: 40vh;
    min-height: 260px;
    overflow: hidden;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plate-wash {
    position: absolute;
    inset: 0;
    z-index: -1;
    animation: wash-drift 26s ease-in-out infinite alternate;
}

@keyframes wash-drift {
    0%   { transform: scale(1)    translate(0, 0); }
    50%  { transform: scale(1.06) translate(1%, -1%); }
    100% { transform: scale(1.03) translate(-1%, 1%); }
}

.plate-wash--rose {
    background:
        radial-gradient(ellipse 55% 70% at 25% 45%, rgba(232, 160, 180, 0.42) 0%, transparent 70%),
        radial-gradient(ellipse 60% 55% at 75% 60%, rgba(212, 168, 75, 0.28) 0%, transparent 65%),
        radial-gradient(ellipse 50% 50% at 50% 20%, rgba(247, 240, 227, 0.55) 0%, transparent 70%),
        linear-gradient(180deg, #F4E4D5 0%, #F7EAD7 100%);
}
.plate-wash--indigo {
    background:
        radial-gradient(ellipse 60% 55% at 30% 40%, rgba(44, 62, 107, 0.28) 0%, transparent 70%),
        radial-gradient(ellipse 55% 55% at 75% 65%, rgba(232, 160, 180, 0.20) 0%, transparent 70%),
        radial-gradient(ellipse 50% 50% at 50% 90%, rgba(212, 168, 75, 0.18) 0%, transparent 70%),
        linear-gradient(180deg, #E4D5BE 0%, #D8C8AE 100%);
}
.plate-wash--forest {
    background:
        radial-gradient(ellipse 60% 60% at 20% 50%, rgba(61, 92, 58, 0.28) 0%, transparent 70%),
        radial-gradient(ellipse 55% 55% at 80% 40%, rgba(212, 168, 75, 0.22) 0%, transparent 65%),
        radial-gradient(ellipse 60% 50% at 50% 90%, rgba(228, 213, 190, 0.60) 0%, transparent 70%),
        linear-gradient(180deg, #EDE1C8 0%, #E4D5BE 100%);
}
.plate-wash--sienna {
    background:
        radial-gradient(ellipse 60% 55% at 30% 50%, rgba(160, 82, 45, 0.30) 0%, transparent 70%),
        radial-gradient(ellipse 55% 55% at 80% 35%, rgba(232, 160, 180, 0.22) 0%, transparent 70%),
        radial-gradient(ellipse 60% 55% at 60% 90%, rgba(212, 168, 75, 0.22) 0%, transparent 65%),
        linear-gradient(180deg, #F4E4D0 0%, #E9D2B8 100%);
}
.plate-wash--gold {
    background:
        radial-gradient(ellipse 65% 60% at 35% 50%, rgba(212, 168, 75, 0.40) 0%, transparent 70%),
        radial-gradient(ellipse 55% 55% at 80% 65%, rgba(232, 160, 180, 0.25) 0%, transparent 70%),
        radial-gradient(ellipse 55% 50% at 50% 10%, rgba(247, 240, 227, 0.55) 0%, transparent 70%),
        linear-gradient(180deg, #F4E6C8 0%, #EFDCB0 100%);
}

.plate-ornament {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: min(420px, 60%);
    height: auto;
    opacity: 0.9;
}
.plate-label {
    position: absolute;
    bottom: 14px;
    right: 28px;
    font-family: var(--f-annot);
    font-style: italic;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--sienna);
    opacity: 0.65;
}

/* ==========================================================================
   MANUSCRIPT BODY
   ========================================================================== */

.manuscript {
    position: relative;
    width: 100%;
    padding: 0 var(--frame-pad);
    z-index: 1;
}

.chapter {
    position: relative;
    max-width: var(--col-max);
    margin: 0 auto;
    padding: 10vh 0 8vh;
}

.chapter p {
    text-align: justify;
    hyphens: auto;
    -webkit-hyphens: auto;
    margin: 0 0 1.2em;
    color: var(--ink);
}

.chapter-head {
    display: flex;
    align-items: baseline;
    gap: 18px;
    margin-bottom: 1.8rem;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(212, 168, 75, 0.35);
    position: relative;
}
.chapter-head::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 80px;
    height: 1px;
    background: var(--gold);
    opacity: 0.6;
}

.chapter-numeral {
    font-family: var(--f-display);
    font-weight: 900;
    font-style: italic;
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    line-height: 1;
    color: var(--gold);
    letter-spacing: 0.02em;
}

.chapter-title {
    font-family: var(--f-display);
    font-weight: 600;
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1.15;
    letter-spacing: 0.03em;
    margin: 0;
    color: var(--indigo);
}

/* ---------- drop cap on the lede ---------- */
.chapter-lede {
    position: relative;
    font-size: 1.05em;
}
.chapter-lede::first-letter {
    font-family: var(--f-display);
    font-weight: 900;
    font-size: 3.5em;
    line-height: 0.8;
    float: left;
    color: var(--gold);
    padding: 0.08em 0.12em 0 0;
    margin-right: 0.02em;
}
.chapter-lede::before {
    content: "";
    position: absolute;
    top: -6px;
    left: -12px;
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 160, 180, 0.28) 0%, rgba(232, 160, 180, 0) 65%);
    z-index: -1;
    pointer-events: none;
}

/* ---------- marginal annotations ---------- */
.annotation {
    display: none; /* shown on wide screens only */
    font-family: var(--f-annot);
    font-style: italic;
    font-size: 0.85rem;
    line-height: 1.55;
    color: var(--ink-soft);
    opacity: 0.85;
}
.annotation em { color: var(--sienna); font-style: italic; }
.annotation-mark {
    display: block;
    font-family: var(--f-display);
    font-weight: 700;
    font-style: italic;
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 6px;
    letter-spacing: 0.05em;
}

/* On narrow screens annotations fold into the column as blockquotes */
@media (max-width: 1199px) {
    .annotation {
        display: block;
        border-left: 2px solid var(--gold);
        padding: 10px 0 10px 16px;
        margin: 1.5rem 0 1.5rem;
        background: linear-gradient(90deg, rgba(212, 168, 75, 0.08), transparent 60%);
        text-align: left;
    }
}

@media (min-width: 1200px) {
    .annotation {
        display: block;
        position: absolute;
        width: 180px;
        top: 30%;
    }
    .annotation--left  { left: calc(-180px - 40px); text-align: right; }
    .annotation--right { right: calc(-180px - 40px); text-align: left; top: 60%; }
    .annotation--left .annotation-mark  { text-align: right; }
    .annotation--right .annotation-mark { text-align: left; }
}

/* ---------- inventory list (method chapter) ---------- */
.inventory {
    list-style: none;
    padding: 1.4rem 1.6rem;
    margin: 1.8rem 0;
    border: 1px solid rgba(212, 168, 75, 0.4);
    background:
        radial-gradient(ellipse at 20% 30%, rgba(232, 160, 180, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 70%, rgba(212, 168, 75, 0.10) 0%, transparent 60%),
        rgba(228, 213, 190, 0.35);
    border-radius: 2px;
}
.inventory li {
    display: flex;
    align-items: baseline;
    gap: 18px;
    padding: 8px 0;
    border-bottom: 1px dashed rgba(160, 82, 45, 0.25);
}
.inventory li:last-child { border-bottom: 0; }
.inventory-key {
    flex: 0 0 110px;
    font-family: var(--f-display);
    font-weight: 700;
    font-style: italic;
    font-size: 1.05rem;
    color: var(--gold);
    letter-spacing: 0.04em;
}
.inventory-val {
    flex: 1;
    font-family: var(--f-body);
    color: var(--ink);
    font-size: 0.98rem;
    line-height: 1.55;
}

/* ---------- waypoints (cartography chapter) ---------- */
.waypoints {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 22px;
    margin: 2rem 0;
}
.waypoint {
    padding: 22px 20px;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(232, 160, 180, 0.18) 0%, transparent 65%),
        radial-gradient(ellipse at 80% 90%, rgba(212, 168, 75, 0.14) 0%, transparent 65%),
        rgba(247, 240, 227, 0.8);
    border: 1px solid rgba(212, 168, 75, 0.35);
    border-radius: 3px;
    position: relative;
    overflow: hidden;
}
.waypoint::after {
    content: "";
    position: absolute;
    inset: 4px;
    border: 1px solid rgba(212, 168, 75, 0.18);
    border-radius: 2px;
    pointer-events: none;
}
.waypoint-glyph {
    font-family: var(--f-display);
    font-size: 1.8rem;
    color: var(--gold);
    display: block;
    margin-bottom: 10px;
    opacity: 0.9;
}
.waypoint-title {
    font-family: var(--f-display);
    font-weight: 600;
    font-size: 1.2rem;
    font-style: italic;
    color: var(--indigo);
    margin: 0 0 0.6em;
    letter-spacing: 0.02em;
}
.waypoint p {
    text-align: left;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
    color: var(--ink-soft);
}

/* ---------- pullquote ---------- */
.pullquote {
    position: relative;
    margin: 2.5rem 0;
    padding: 1.8rem 2.4rem;
    font-family: var(--f-display);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1.1rem, 1.6vw, 1.4rem);
    line-height: 1.55;
    color: var(--indigo);
    text-align: center;
    border-top: 1px solid rgba(212, 168, 75, 0.45);
    border-bottom: 1px solid rgba(212, 168, 75, 0.45);
    background:
        radial-gradient(ellipse at 50% 50%, rgba(232, 160, 180, 0.10) 0%, transparent 70%);
}
.pullquote-mark {
    font-family: var(--f-display);
    font-weight: 900;
    font-size: 2.8rem;
    color: var(--gold);
    line-height: 0;
    position: relative;
    top: 0.2em;
    margin: 0 0.05em;
}
.pullquote-mark--close { top: 0.4em; }
.pullquote cite {
    display: block;
    margin-top: 1rem;
    font-family: var(--f-annot);
    font-style: italic;
    font-size: 0.85rem;
    color: var(--sienna);
    letter-spacing: 0.1em;
}

/* ---------- colophon ---------- */
.chapter--colophon {
    padding-bottom: 14vh;
}
.colophon-list {
    margin: 2rem 0;
    padding: 0;
    display: grid;
    gap: 10px;
}
.colophon-row {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 16px;
    padding: 8px 0;
    border-bottom: 1px dashed rgba(160, 82, 45, 0.25);
    align-items: baseline;
}
.colophon-row:last-child { border-bottom: 0; }
.colophon-row dt {
    font-family: var(--f-display);
    font-style: italic;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.04em;
    font-size: 0.95rem;
}
.colophon-row dd {
    margin: 0;
    font-family: var(--f-body);
    color: var(--ink);
    font-size: 0.98rem;
}
.benediction {
    font-family: var(--f-annot);
    font-style: italic;
    font-size: 1.05rem;
    text-align: center !important;
    margin: 2.2rem 0 !important;
    color: var(--sienna);
}
.sign-off {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin-top: 2rem;
    font-family: var(--f-annot);
    font-style: italic;
    font-size: 0.82rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.8;
}
.sign-off-mark {
    font-size: 1.4rem;
    color: var(--gold);
    opacity: 0.85;
}

/* ==========================================================================
   BOUNCE-ENTER ANIMATION SYSTEM
   ========================================================================== */

.chapter > *,
.opening-inner > *,
.plate-ornament,
.plate-label {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.7s var(--bounce),
        transform 0.7s var(--bounce);
}

.is-revealed > *,
.is-revealed.plate-ornament,
.is-revealed.plate-label {
    opacity: 1;
    transform: translateY(0);
}

/* solo reveal: no child-stagger -- plate ornaments & labels */
.reveal-solo {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.7s var(--bounce),
        transform 0.7s var(--bounce);
}
.reveal-solo.is-revealed {
    opacity: 1;
    transform: translateY(0);
}

/* title glow: a gentle one-shot gold warmth as a chapter title enters view */
.chapter-title.title-glow {
    animation: title-glow 2.2s ease-out forwards;
}
@keyframes title-glow {
    0%   { text-shadow: 0 0 0 rgba(212, 168, 75, 0); }
    35%  { text-shadow: 0 0 18px rgba(212, 168, 75, 0.35); }
    100% { text-shadow: 0 0 0 rgba(212, 168, 75, 0); }
}

.is-revealed > *:nth-child(1) { transition-delay: 0.00s; }
.is-revealed > *:nth-child(2) { transition-delay: 0.10s; }
.is-revealed > *:nth-child(3) { transition-delay: 0.20s; }
.is-revealed > *:nth-child(4) { transition-delay: 0.30s; }
.is-revealed > *:nth-child(5) { transition-delay: 0.40s; }
.is-revealed > *:nth-child(6) { transition-delay: 0.50s; }
.is-revealed > *:nth-child(7) { transition-delay: 0.60s; }
.is-revealed > *:nth-child(8) { transition-delay: 0.70s; }
.is-revealed > *:nth-child(9) { transition-delay: 0.80s; }

/* Opening reveals right away */
.opening .opening-inner > * {
    opacity: 0;
    transform: translateY(30px);
    animation: bounce-in 0.9s var(--bounce) forwards;
}
.opening .opening-inner > *:nth-child(1) { animation-delay: 0.1s; }
.opening .opening-inner > *:nth-child(2) { animation-delay: 0.3s; }
.opening .opening-inner > *:nth-child(3) { animation-delay: 0.55s; }
.opening .opening-inner > *:nth-child(4) { animation-delay: 0.8s; }

@keyframes bounce-in {
    0%   { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   MEDIA QUERIES
   ========================================================================== */

@media (max-width: 720px) {
    :root { --frame-pad: 3vw; }
    .chapter { padding: 8vh 0 6vh; }
    .chapter-head { flex-direction: column; gap: 6px; }
    .chapter-numeral { font-size: 2.4rem; }
    .colophon-row { grid-template-columns: 1fr; gap: 2px; }
    .opening { padding: calc(var(--frame-pad) + 20px) 6vw; }
    .domain-mark .drop-cap { font-size: clamp(5rem, 18vw, 10rem); }
    .inventory-key { flex: 0 0 80px; font-size: 0.95rem; }
}

@media (max-width: 480px) {
    .domain-mark { flex-wrap: wrap; }
    .plate-label { right: 14px; font-size: 0.7rem; letter-spacing: 0.18em; }
    .illumination-frame { inset: 12px; }
}
