/* ============================================
   diplomacy.quest — Art Deco Diplomatic Salon
   ============================================ */

:root {
    --embassy-charcoal: #2B2D33;
    --embassy-charcoal-warm: #31333A;
    --embassy-charcoal-cool: #222428;
    --burnished-gold: #C9A94E;
    --treaty-ivory: #F0E6D0;
    --diplomatic-blue: #1B3A5C;
    --vermeil-red: #8B2E3B;
    --patina-bronze: #6B7D5E;
    --onyx-void: #0D0E12;

    --font-display: "Poiret One", "Inter", sans-serif;
    --font-body: "Libre Baskerville", "Cormorant Garamond", serif;
    --font-label: "Josefin Sans", "Inter", sans-serif;
    --font-quote: "Cormorant Garamond", "Libre Baskerville", serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    background: var(--onyx-void);
}

body {
    background: var(--embassy-charcoal);
    color: var(--treaty-ivory);
    font-family: var(--font-body);
    font-size: clamp(15px, 1.4vw, 19px);
    letter-spacing: 0.01em;
    line-height: 1.72;
    overflow-x: hidden;
    min-height: 100vh;
}

/* ============================================
   Navigation
   ============================================ */
.nav-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(13, 14, 18, 0.92);
    border-bottom: 1px solid var(--burnished-gold);
    padding: 12px 32px;
    backdrop-filter: blur(6px);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-item {
    position: relative;
    color: var(--treaty-ivory);
    text-decoration: none;
    font-family: var(--font-label);
    font-weight: 600;
    font-size: clamp(11px, 1vw, 14px);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 10px 18px;
    overflow: hidden;
    transition: color 250ms ease;
}

.nav-item .nav-text {
    position: relative;
    z-index: 2;
}

.nav-item .nav-fan {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleY(0);
    transform-origin: bottom center;
    width: 100%;
    height: 100%;
    background: conic-gradient(
        from 270deg at 50% 100%,
        transparent 0deg,
        rgba(27, 58, 92, 0.8) 30deg,
        rgba(27, 58, 92, 0.8) 150deg,
        transparent 180deg,
        transparent 360deg
    );
    transition: transform 250ms cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 1;
}

.nav-item:hover .nav-fan,
.nav-item.active .nav-fan {
    transform: translateX(-50%) scaleY(1);
}

.nav-item.active::after {
    content: "";
    position: absolute;
    bottom: 4px;
    left: 18px;
    right: 18px;
    height: 1px;
    background: var(--burnished-gold);
    transform-origin: center;
    animation: drawUnderline 600ms ease-out forwards;
}

@keyframes drawUnderline {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

.nav-diamond {
    width: 6px;
    height: 6px;
    background: var(--burnished-gold);
    transform: rotate(45deg);
    flex-shrink: 0;
}

/* ============================================
   Foyer (Grand Entrance Viewport)
   ============================================ */
.foyer {
    position: relative;
    width: 100vw;
    height: 100vh;
    min-height: 600px;
    background: var(--onyx-void);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.foyer-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at center, rgba(27, 58, 92, 0.18) 0%, transparent 65%),
        var(--onyx-void);
}

.sunburst {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(120vmin, 1400px);
    height: min(120vmin, 1400px);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.sunburst-ray {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4%;
    height: 50%;
    transform-origin: bottom center;
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
    transform: translate(-50%, -100%) rotate(0deg) scaleY(0);
}

.sunburst-ray.gold {
    background: var(--burnished-gold);
}
.sunburst-ray.charcoal {
    background: var(--embassy-charcoal);
}

.sunburst-ray.revealed {
    animation: extendRay 1100ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes extendRay {
    0%   { transform: translate(-50%, -100%) rotate(var(--rot)) scaleY(0); }
    20%  { transform: translate(-50%, -100%) rotate(calc(var(--rot) + 0.5deg)) scaleY(0.4); }
    50%  { transform: translate(-50%, -100%) rotate(calc(var(--rot) - 0.5deg)) scaleY(0.78); }
    100% { transform: translate(-50%, -100%) rotate(var(--rot)) scaleY(1); }
}

.cartouche {
    position: relative;
    width: min(440px, 85vw);
    height: min(220px, 42vw);
    z-index: 5;
    opacity: 0;
}

.cartouche.revealed {
    opacity: 1;
    transition: opacity 300ms ease;
}

.cartouche-frame {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.cartouche-frame .cartouche-hex {
    stroke-dasharray: 1100;
    stroke-dashoffset: 1100;
}

.cartouche.revealed .cartouche-frame .cartouche-hex {
    animation: drawHex 1200ms cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

@keyframes drawHex {
    to { stroke-dashoffset: 0; }
}

.cartouche-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.domain-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(28px, 6vw, 76px);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--treaty-ivory);
    line-height: 1.05;
    white-space: nowrap;
}

.typewriter-cursor {
    display: inline-block;
    width: 2px;
    height: clamp(28px, 5vw, 60px);
    background: var(--burnished-gold);
    opacity: 0;
}

.typewriter-cursor.blinking {
    animation: blinkCursor 530ms steps(2) infinite;
}

@keyframes blinkCursor {
    0%, 50%   { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.tagline {
    position: absolute;
    bottom: 12vh;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-label);
    font-weight: 300;
    font-size: clamp(11px, 1vw, 14px);
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--treaty-ivory);
    opacity: 0;
    z-index: 5;
    text-align: center;
    white-space: nowrap;
}

.tagline.revealed {
    animation: tagFade 600ms ease forwards;
}

@keyframes tagFade {
    from { opacity: 0; transform: translate(-50%, 8px); }
    to   { opacity: 0.85; transform: translate(-50%, 0); }
}

.foyer-corner {
    position: absolute;
    width: 64px;
    height: 64px;
    z-index: 4;
}
.foyer-corner::before,
.foyer-corner::after {
    content: "";
    position: absolute;
    background: var(--burnished-gold);
}
.foyer-corner-tl { top: 24px; left: 24px; }
.foyer-corner-tl::before { top: 0; left: 0; width: 64px; height: 2px; }
.foyer-corner-tl::after  { top: 0; left: 0; width: 2px; height: 64px; }

.foyer-corner-tr { top: 24px; right: 24px; }
.foyer-corner-tr::before { top: 0; right: 0; width: 64px; height: 2px; }
.foyer-corner-tr::after  { top: 0; right: 0; width: 2px; height: 64px; }

.foyer-corner-bl { bottom: 24px; left: 24px; }
.foyer-corner-bl::before { bottom: 0; left: 0; width: 64px; height: 2px; }
.foyer-corner-bl::after  { bottom: 0; left: 0; width: 2px; height: 64px; }

.foyer-corner-br { bottom: 24px; right: 24px; }
.foyer-corner-br::before { bottom: 0; right: 0; width: 64px; height: 2px; }
.foyer-corner-br::after  { bottom: 0; right: 0; width: 2px; height: 64px; }

/* ============================================
   Corridor (Friezes / Dividers)
   ============================================ */
.corridor {
    width: 100%;
    background: var(--embassy-charcoal);
    position: relative;
    overflow: hidden;
}

.corridor-major {
    height: 64px;
    border-top: 1px solid var(--burnished-gold);
    border-bottom: 1px solid var(--burnished-gold);
}

.corridor-minor {
    height: 8px;
    background:
        repeating-linear-gradient(45deg,
            var(--burnished-gold) 0 4px,
            transparent 4px 8px),
        repeating-linear-gradient(-45deg,
            var(--diplomatic-blue) 0 4px,
            transparent 4px 8px),
        var(--embassy-charcoal);
    background-size: 16px 16px;
}

.corridor-frieze {
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(45deg,
            var(--burnished-gold) 0 8px,
            transparent 8px 24px),
        repeating-linear-gradient(-45deg,
            var(--diplomatic-blue) 0 8px,
            transparent 8px 24px);
    background-size: 48px 48px;
    animation: friezeShift 12s linear infinite;
}

@keyframes friezeShift {
    from { background-position: 0 0, 0 0; }
    to   { background-position: -240px 0, 240px 0; }
}

/* ============================================
   Section Headers
   ============================================ */
.section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding: 64px 32px 40px;
}

.section-fan {
    width: 200px;
    height: 64px;
    flex-shrink: 0;
    background:
        conic-gradient(
            from 270deg at 50% 100%,
            transparent 0deg,
            var(--burnished-gold) 6deg,
            transparent 12deg,
            transparent 18deg,
            var(--burnished-gold) 24deg,
            transparent 30deg,
            transparent 36deg,
            var(--burnished-gold) 42deg,
            transparent 48deg,
            transparent 54deg,
            var(--burnished-gold) 60deg,
            transparent 66deg,
            transparent 72deg,
            var(--burnished-gold) 78deg,
            transparent 84deg,
            transparent 96deg,
            var(--burnished-gold) 102deg,
            transparent 108deg,
            transparent 114deg,
            var(--burnished-gold) 120deg,
            transparent 126deg,
            transparent 132deg,
            var(--burnished-gold) 138deg,
            transparent 144deg,
            transparent 150deg,
            var(--burnished-gold) 156deg,
            transparent 162deg,
            transparent 174deg,
            var(--burnished-gold) 180deg,
            transparent 360deg
        );
    opacity: 0.7;
}

.section-fan-right {
    transform: scaleX(-1);
}

.section-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(28px, 5vw, 52px);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--treaty-ivory);
    line-height: 1.05;
    text-align: center;
    flex-shrink: 0;
}

/* ============================================
   Chambers (Bento Grid)
   ============================================ */
.chambers {
    background: var(--embassy-charcoal);
    padding: 0 32px 96px;
}

.chamber-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    max-width: 1400px;
    margin: 0 auto;
}

.chamber {
    position: relative;
    grid-column: span 1;
    background: var(--embassy-charcoal-cool);
    border: 2px solid var(--burnished-gold);
    box-shadow: inset 0 0 0 5px var(--embassy-charcoal-cool),
                inset 0 0 0 6px var(--diplomatic-blue);
    padding: 36px 32px;
    min-height: 260px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 500ms cubic-bezier(0.165, 0.84, 0.44, 1),
                transform 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.chamber.revealed {
    opacity: 1;
    transform: translateY(0);
}

.chamber-wide  { grid-column: span 2; }
.chamber-tall  { grid-column: span 1; grid-row: span 2; }
.chamber-full  { grid-column: 1 / -1; }

.chamber-corner {
    position: absolute;
    width: 22px;
    height: 22px;
    pointer-events: none;
    transform: scale(0);
    transition: transform 400ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.chamber.revealed .chamber-corner {
    transform: scale(1);
}

.chamber-corner::before,
.chamber-corner::after {
    content: "";
    position: absolute;
    background: var(--burnished-gold);
}
.chamber-corner::before {
    width: 22px;
    height: 4px;
}
.chamber-corner::after {
    width: 4px;
    height: 22px;
}

.chamber-corner-tl { top: -2px; left: -2px; }
.chamber-corner-tl::before { top: 0; left: 0; }
.chamber-corner-tl::after  { top: 0; left: 0; }

.chamber-corner-tr { top: -2px; right: -2px; }
.chamber-corner-tr::before { top: 0; right: 0; }
.chamber-corner-tr::after  { top: 0; right: 0; }

.chamber-corner-bl { bottom: -2px; left: -2px; }
.chamber-corner-bl::before { bottom: 0; left: 0; }
.chamber-corner-bl::after  { bottom: 0; left: 0; }

.chamber-corner-br { bottom: -2px; right: -2px; }
.chamber-corner-br::before { bottom: 0; right: 0; }
.chamber-corner-br::after  { bottom: 0; right: 0; }

.chamber-label {
    display: block;
    font-family: var(--font-label);
    font-weight: 300;
    font-size: clamp(11px, 1vw, 14px);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--burnished-gold);
    margin-bottom: 16px;
}

.chamber-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(22px, 2.6vw, 36px);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--treaty-ivory);
    line-height: 1.1;
    margin-bottom: 20px;
}

.chamber-body {
    color: var(--treaty-ivory);
    margin-bottom: 16px;
}

.chamber-quote {
    font-family: var(--font-quote);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(20px, 2.4vw, 32px);
    letter-spacing: -0.01em;
    line-height: 1.3;
    color: var(--burnished-gold);
    border-left: 2px solid var(--vermeil-red);
    padding-left: 18px;
    margin-top: 24px;
}

.treaty-line {
    border: none;
    height: 1px;
    background: rgba(201, 169, 78, 0.4);
    margin-top: 24px;
    width: 0;
    transition: width 1200ms cubic-bezier(0.16, 1, 0.3, 1) 200ms;
}

.chamber.revealed .treaty-line {
    width: 100%;
}

/* ============================================
   Treaty Table (Split-Screen)
   ============================================ */
.treaty-table {
    background: var(--embassy-charcoal);
    padding: 0 32px 96px;
}

.treaty-split {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1400px;
    margin: 0 auto;
    border: 2px solid var(--burnished-gold);
    background: var(--embassy-charcoal-cool);
}

.treaty-divider {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 0;
    background: var(--burnished-gold);
    z-index: 5;
    transition: height 800ms cubic-bezier(0.16, 1, 0.3, 1);
}

.treaty-split.revealed .treaty-divider {
    height: 100%;
}

.treaty-panel {
    padding: 56px 48px;
    transition: background 350ms ease, opacity 350ms ease;
    opacity: 0;
    transform: translateY(20px);
}

.treaty-split.revealed .treaty-panel {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 700ms ease 600ms,
                transform 700ms ease 600ms,
                background 350ms ease;
}

.treaty-panel-left {
    border-right: 1px solid rgba(201, 169, 78, 0.2);
}

.treaty-split:hover .treaty-panel:not(:hover) {
    background: var(--embassy-charcoal-cool);
    opacity: 0.55;
}
.treaty-split .treaty-panel:hover {
    background: var(--embassy-charcoal-warm);
}

.treaty-label {
    display: block;
    font-family: var(--font-label);
    font-weight: 300;
    font-size: clamp(11px, 1vw, 14px);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--burnished-gold);
    margin-bottom: 14px;
}

.treaty-heading {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(24px, 3vw, 42px);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--treaty-ivory);
    line-height: 1.1;
    margin-bottom: 20px;
}

.treaty-body {
    margin-bottom: 24px;
}

.treaty-list {
    list-style: none;
    margin-bottom: 28px;
}

.treaty-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.treaty-list li::before {
    content: "";
    position: absolute;
    top: 0.55em;
    left: 0;
    width: 16px;
    height: 8px;
    background:
        conic-gradient(
            from 270deg at 50% 100%,
            transparent 0deg,
            var(--burnished-gold) 30deg,
            transparent 60deg,
            transparent 120deg,
            var(--burnished-gold) 150deg,
            transparent 180deg,
            transparent 360deg
        );
}

.treaty-signature {
    font-family: var(--font-quote);
    font-style: italic;
    color: var(--burnished-gold);
    font-size: clamp(14px, 1.2vw, 18px);
    text-align: right;
}

/* ============================================
   The Seal (Footer)
   ============================================ */
.seal-footer {
    position: relative;
    background: var(--onyx-void);
    padding: 96px 32px 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top: 1px solid var(--burnished-gold);
}

.diplomatic-seal {
    position: relative;
    width: 320px;
    height: 320px;
    flex-shrink: 0;
}

.diplomatic-seal.spinning .seal-ring-outer,
.diplomatic-seal.spinning .seal-ring-dashed,
.diplomatic-seal.spinning .seal-ring-dots,
.diplomatic-seal.spinning .seal-starburst {
    animation: sealRotate 30s linear infinite;
}

.diplomatic-seal:hover .seal-ring-outer,
.diplomatic-seal:hover .seal-ring-dashed,
.diplomatic-seal:hover .seal-ring-dots,
.diplomatic-seal:hover .seal-starburst {
    animation-duration: 12s;
}

@keyframes sealRotate {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

.seal-ring-outer {
    position: absolute;
    inset: 0;
    border: 2px solid var(--burnished-gold);
    border-radius: 50%;
}

.seal-ring-dashed {
    position: absolute;
    inset: 16px;
    border: 1px dashed var(--burnished-gold);
    border-radius: 50%;
}

.seal-ring-dots {
    position: absolute;
    inset: 32px;
    border-radius: 50%;
    background:
        radial-gradient(circle, var(--burnished-gold) 1.5px, transparent 2px) 0 0 / 18px 18px;
    -webkit-mask: radial-gradient(circle, transparent 56%, #000 57%, #000 64%, transparent 65%);
            mask: radial-gradient(circle, transparent 56%, #000 57%, #000 64%, transparent 65%);
}

.seal-starburst {
    position: absolute;
    inset: 80px;
    border-radius: 50%;
    background:
        conic-gradient(
            from 0deg,
            var(--burnished-gold) 0deg,
            transparent 4deg,
            transparent 26deg,
            var(--burnished-gold) 30deg,
            transparent 34deg,
            transparent 56deg,
            var(--burnished-gold) 60deg,
            transparent 64deg,
            transparent 86deg,
            var(--burnished-gold) 90deg,
            transparent 94deg,
            transparent 116deg,
            var(--burnished-gold) 120deg,
            transparent 124deg,
            transparent 146deg,
            var(--burnished-gold) 150deg,
            transparent 154deg,
            transparent 176deg,
            var(--burnished-gold) 180deg,
            transparent 184deg,
            transparent 206deg,
            var(--burnished-gold) 210deg,
            transparent 214deg,
            transparent 236deg,
            var(--burnished-gold) 240deg,
            transparent 244deg,
            transparent 266deg,
            var(--burnished-gold) 270deg,
            transparent 274deg,
            transparent 296deg,
            var(--burnished-gold) 300deg,
            transparent 304deg,
            transparent 326deg,
            var(--burnished-gold) 330deg,
            transparent 334deg,
            transparent 360deg
        );
    -webkit-mask: radial-gradient(circle, transparent 35%, #000 36%);
            mask: radial-gradient(circle, transparent 35%, #000 36%);
}

.seal-center {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 28px;
    height: 28px;
    background: var(--vermeil-red);
    border: 2px solid var(--burnished-gold);
    transform: translate(-50%, -50%) rotate(45deg);
}

.seal-radial {
    position: relative;
    width: 320px;
    height: 320px;
    margin-top: -320px;
    pointer-events: none;
}

.seal-link {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    transform: rotate(var(--angle)) translateY(-180px);
    pointer-events: auto;
}

.seal-link span {
    display: inline-block;
    transform: rotate(calc(var(--angle) * -1)) translate(-50%, -50%);
    font-family: var(--font-label);
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--burnished-gold);
    text-decoration: none;
    white-space: nowrap;
    padding: 4px 8px;
    transition: color 250ms ease;
}

.seal-link:hover span {
    color: var(--treaty-ivory);
}

.seal-credit {
    margin-top: 48px;
    font-family: var(--font-label);
    font-weight: 300;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--patina-bronze);
    text-align: center;
}

/* ============================================
   Crystal Refraction Hover
   ============================================ */
.crystal-refraction {
    position: fixed;
    pointer-events: none;
    z-index: 200;
    width: 80px;
    height: 80px;
    transform: translate(-50%, -50%);
}

.crystal-refraction .crystal-shard {
    position: absolute;
    inset: 0;
    border: 1.5px solid var(--burnished-gold);
    background: rgba(201, 169, 78, 0.18);
    transform: rotate(45deg) scale(0);
    animation: crystalBurst 400ms ease-out forwards;
}

.crystal-refraction .crystal-shard:nth-child(1) { animation-delay: 0ms; }
.crystal-refraction .crystal-shard:nth-child(2) { animation-delay: 60ms; }
.crystal-refraction .crystal-shard:nth-child(3) { animation-delay: 120ms; }
.crystal-refraction .crystal-shard:nth-child(4) { animation-delay: 180ms; }

@keyframes crystalBurst {
    0%   { transform: rotate(45deg) scale(0); opacity: 0.85; }
    60%  { transform: rotate(45deg) scale(1); opacity: 0.55; }
    100% { transform: rotate(45deg) scale(1.2); opacity: 0; }
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 960px) {
    .chamber-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .chamber-wide,
    .chamber-tall,
    .chamber-full {
        grid-column: 1 / -1;
        grid-row: span 1;
    }
    .nav-inner {
        gap: 8px;
        flex-wrap: wrap;
    }
    .section-fan {
        width: 96px;
        height: 32px;
    }
}

@media (max-width: 640px) {
    .chamber-grid {
        grid-template-columns: 1fr;
    }
    .treaty-split {
        grid-template-columns: 1fr;
    }
    .treaty-divider {
        top: 50%;
        left: 0;
        right: 0;
        width: 100%;
        height: 2px;
        transform: none;
    }
    .treaty-split.revealed .treaty-divider {
        height: 2px;
        width: 100%;
    }
    .treaty-panel-left {
        border-right: none;
        border-bottom: 1px solid rgba(201, 169, 78, 0.2);
    }
    .foyer-corner {
        width: 36px;
        height: 36px;
    }
    .foyer-corner-tl::before, .foyer-corner-tr::before,
    .foyer-corner-bl::before, .foyer-corner-br::before { width: 36px; }
    .foyer-corner-tl::after,  .foyer-corner-tr::after,
    .foyer-corner-bl::after,  .foyer-corner-br::after  { height: 36px; }
    .diplomatic-seal,
    .seal-radial {
        width: 240px;
        height: 240px;
    }
    .seal-radial {
        margin-top: -240px;
    }
    .seal-link {
        transform: rotate(var(--angle)) translateY(-130px);
    }
}
