/* ==========================================================================
   elliottking-theme v0.1.0
   Flat editorial print. Sinkin Sans everywhere, gold rules as punctuation,
   1.5px ink frames, zero radii, no gradients, no textures.
   IMPORTANT: nothing inside .gh-content uses !important; legacy
   Squarespace-migrated posts carry inline styles that must keep winning.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Fonts
   -------------------------------------------------------------------------- */

@font-face {
    font-family: "Sinkin Sans";
    src: url("../fonts/SinkinSans-100Thin.otf") format("opentype");
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Sinkin Sans";
    src: url("../fonts/SinkinSans-300Light.otf") format("opentype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Sinkin Sans";
    src: url("../fonts/SinkinSans-400Regular.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Sinkin Sans";
    src: url("../fonts/SinkinSans-400Italic.otf") format("opentype");
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Sinkin Sans";
    src: url("../fonts/SinkinSans-500Medium.otf") format("opentype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Sinkin Sans";
    src: url("../fonts/SinkinSans-600SemiBold.otf") format("opentype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Sinkin Sans";
    src: url("../fonts/SinkinSans-700Bold.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Sinkin Sans";
    src: url("../fonts/SinkinSans-800Black.otf") format("opentype");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Sinkin Sans";
    src: url("../fonts/SinkinSans-900XBlack.otf") format("opentype");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* Operational fallback for the brand script. "The Wedding Signature" is a
   commercial face set in Ghost code injection when licensed; Allura ships
   with the theme and stands in for it. */
@font-face {
    font-family: "Allura";
    src: url("../fonts/Allura-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* --------------------------------------------------------------------------
   2. Tokens
   -------------------------------------------------------------------------- */

:root {
    --ek-gold: #d7861c;
    --ek-gold-hover: #b86f12;
    --ek-gold-soft: #f4e6d1;
    --ek-gold-paper: #faf5ec;
    --ek-ink: #000000;
    --ek-ink-90: #1a1a1a;
    --ek-ink-60: #4a4a4a;
    --ek-ink-40: #8a8a8a;
    --ek-ink-20: #c9c9c9;
    --ek-navy: #000068;
    --ek-paper: #ffffff;
    --ek-paper-warm: #fbfaf7;
    --ek-rule-soft: #e6e2da;

    --font-sans: "Sinkin Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    --font-script: "The Wedding Signature", "Allura", cursive;
    --font-mono: "SF Mono", SFMono-Regular, Menlo, Consolas, monospace;

    --dur-fast: 140ms;
    --dur-mid: 220ms;
    --dur-slow: 420ms;
}

/* --------------------------------------------------------------------------
   3. Reset and base
   -------------------------------------------------------------------------- */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    /* Ghost design settings can override the face; Sinkin Sans is the default. */
    font-family: var(--gh-font-body, var(--font-sans));
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.55;
    color: var(--ek-ink);
    background: var(--ek-paper);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: var(--ek-gold-soft);
    color: var(--ek-ink);
}

img,
video {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: underline;
    text-decoration-color: var(--ek-gold);
    text-decoration-thickness: 1.5px;
    text-underline-offset: 3px;
    transition: color var(--dur-fast) ease;
}

a:hover {
    color: var(--ek-gold);
}

:focus-visible {
    outline: 2px solid var(--ek-gold);
    outline-offset: 2px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--gh-font-heading, var(--font-sans));
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.12;
    color: var(--ek-ink);
    margin: 0;
}

.inner {
    width: min(1160px, 100% - 48px);
    margin-left: auto;
    margin-right: auto;
}

.site {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.site-main {
    flex: 1 0 auto;
}

/* --------------------------------------------------------------------------
   4. Shared atoms: eyebrows, rules, buttons, links, section heads
   -------------------------------------------------------------------------- */

.eyebrow {
    margin: 0;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--ek-gold);
}

.eyebrow-gold {
    color: var(--ek-gold);
}

.rule-gold {
    display: block;
    width: 56px;
    height: 1.5px;
    background: var(--ek-gold);
    margin: 16px 0 24px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 24px;
    background: var(--ek-ink);
    color: var(--ek-paper);
    border: 1.5px solid var(--ek-ink);
    border-radius: 0;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: background-color var(--dur-mid) ease, border-color var(--dur-mid) ease, color var(--dur-mid) ease;
}

.btn:hover {
    background: var(--ek-gold-hover);
    border-color: var(--ek-gold-hover);
    color: var(--ek-paper);
}

.btn-ghost {
    background: transparent;
    color: var(--ek-ink);
}

.btn-ghost:hover {
    background: transparent;
    border-color: var(--ek-gold-hover);
    color: var(--ek-gold-hover);
}

.btn-gold {
    background: var(--ek-gold);
    border-color: var(--ek-gold);
    color: var(--ek-ink);
}

.btn-gold:hover {
    background: var(--ek-paper);
    border-color: var(--ek-paper);
    color: var(--ek-ink);
}

.btn-header {
    padding: 10px 16px;
}

.caret {
    display: inline-block;
}

.link-more {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--ek-ink);
    transition: color var(--dur-fast) ease;
}

.link-more .caret {
    color: var(--ek-gold);
}

.link-more:hover {
    color: var(--ek-gold);
}

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 40px;
}

.section-head .eyebrow {
    margin-bottom: 10px;
}

.section-title {
    font-size: clamp(1.75rem, 3.4vw, 2.5rem);
    font-weight: 800;
    line-height: 1.08;
}

.section-warm {
    background: var(--ek-paper-warm);
    border-top: 1px solid var(--ek-rule-soft);
    border-bottom: 1px solid var(--ek-rule-soft);
}

/* --------------------------------------------------------------------------
   5. Header
   -------------------------------------------------------------------------- */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.94);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    backdrop-filter: blur(12px) saturate(180%);
    border-bottom: 1px solid var(--ek-rule-soft);
}

.site-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    min-height: 76px;
}

.brand {
    display: inline-flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--ek-ink);
    line-height: 1;
}

.brand-name {
    font-size: 1.125rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    white-space: nowrap;
}

.brand-surname {
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.brand-rule {
    display: block;
    width: 36px;
    height: 1.5px;
    background: var(--ek-gold);
    margin-top: 6px;
    transition: width var(--dur-mid) ease;
}

.brand:hover .brand-rule {
    width: 56px;
}

.site-nav {
    flex: 1 1 auto;
}

.site-nav .nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-nav .nav a {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--ek-ink-90);
    transition: color var(--dur-fast) ease;
}

.site-nav .nav a:hover {
    color: var(--ek-gold);
}

.site-nav .nav-current a {
    color: var(--ek-ink);
    text-decoration: underline;
    text-decoration-color: var(--ek-gold);
    text-decoration-thickness: 1.5px;
    text-underline-offset: 6px;
}

.site-header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: transparent;
    border: 1.5px solid var(--ek-ink);
    border-radius: 0;
    cursor: pointer;
}

.nav-toggle-bar {
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--ek-ink);
}

@media (max-width: 900px) {
    .site-nav {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .is-nav-open .site-nav {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--ek-paper);
        border-bottom: 1.5px solid var(--ek-ink);
        padding: 8px 24px 24px;
    }

    .is-nav-open .site-nav .nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .is-nav-open .site-nav .nav li {
        width: 100%;
        border-bottom: 1px solid var(--ek-rule-soft);
    }

    .is-nav-open .site-nav .nav a {
        display: block;
        padding: 16px 0;
    }
}

@media (max-width: 560px) {
    .btn-header {
        display: none;
    }
}

/* --------------------------------------------------------------------------
   6. Home: hero, latest, contact band
   -------------------------------------------------------------------------- */

.hero {
    padding: 104px 0 88px;
}

.hero .eyebrow {
    margin-bottom: 28px;
}

.hero-title {
    margin: 0;
    line-height: 0.95;
}

.hero-script {
    display: block;
    font-family: var(--font-script);
    font-weight: 400;
    font-size: clamp(3.5rem, 8vw, 6rem);
    letter-spacing: 0;
    color: var(--ek-gold);
    line-height: 0.9;
    margin-left: 4px;
}

.hero-name {
    display: block;
    font-weight: 900;
    font-size: clamp(3.75rem, 10vw, 7.5rem);
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: var(--ek-ink);
    line-height: 1.02;
}

.hero-lede {
    max-width: 560px;
    margin: 32px 0 0;
    font-size: 1.125rem;
    line-height: 1.55;
    color: var(--ek-ink-60);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 44px;
}

.home-latest {
    padding: 88px 0 96px;
}

.contact-band {
    background: var(--ek-ink);
    color: var(--ek-paper);
    padding: 96px 0;
}

.contact-band-title {
    margin: 22px 0 0;
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.02;
    color: var(--ek-paper);
}

.contact-band-lede {
    max-width: 480px;
    margin: 18px 0 0;
    font-size: 1rem;
    color: var(--ek-ink-20);
}

.contact-band .btn-gold {
    margin-top: 40px;
}

/* --------------------------------------------------------------------------
   7. Archive headers, feeds, cards, pagination
   -------------------------------------------------------------------------- */

.archive-header {
    padding: 80px 0 16px;
}

.archive-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    line-height: 1.02;
}

.archive-lede {
    max-width: 560px;
    margin: 20px 0 0;
    font-size: 1.0625rem;
    color: var(--ek-ink-60);
}

.post-feed {
    padding: 56px 0 96px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

@media (max-width: 980px) {
    .card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 660px) {
    .card-grid {
        grid-template-columns: 1fr;
    }
}

.post-card {
    display: flex;
    flex-direction: column;
    background: var(--ek-paper);
    border: 1.5px solid var(--ek-ink);
    padding: 14px;
}

.post-card-media {
    display: block;
    text-decoration: none;
}

.post-card-image {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
}

.post-card-fallback {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    width: 100%;
    aspect-ratio: 3 / 2;
    background: var(--ek-gold-paper);
    padding: 20px;
}

.post-card-fallback .rule-gold {
    margin: 0;
    width: 44px;
}

/* Shows only the first letter of the title: the rest collapses to zero. */
.post-card-initial {
    display: block;
    font-size: 0;
    line-height: 1;
    margin-bottom: 14px;
}

.post-card-initial::first-letter {
    font-family: var(--font-sans);
    font-size: 64px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--ek-ink);
}

.post-card-body {
    display: flex;
    flex-direction: column;
    flex: 1 0 auto;
    padding: 20px 8px 10px;
}

.post-card-meta,
.article-meta {
    margin: 0;
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ek-ink-40);
}

.meta-sep {
    margin: 0 8px;
    color: var(--ek-ink-20);
}

.post-card-title {
    margin: 12px 0 0;
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -0.02em;
}

.post-card-title a {
    text-decoration: none;
    color: var(--ek-ink);
    transition: color var(--dur-fast) ease;
}

.post-card-title a:hover {
    color: var(--ek-gold);
}

.post-card-excerpt {
    margin: 12px 0 0;
    font-size: 0.875rem;
    line-height: 1.55;
    color: var(--ek-ink-60);
}

.post-card-more {
    margin-top: auto;
    padding-top: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--ek-ink);
    transition: color var(--dur-fast) ease;
}

.post-card-more .caret {
    color: var(--ek-gold);
}

.post-card-more:hover {
    color: var(--ek-gold);
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 64px;
    padding-top: 24px;
    border-top: 1px solid var(--ek-rule-soft);
}

.pagination-link {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--ek-ink);
    transition: color var(--dur-fast) ease;
}

.pagination-link .caret {
    color: var(--ek-gold);
}

.pagination-link:hover {
    color: var(--ek-gold);
}

.pagination-count {
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ek-ink-40);
}

/* --------------------------------------------------------------------------
   8. Article
   -------------------------------------------------------------------------- */

.article {
    padding: 80px 0 0;
}

.article-header-inner {
    width: min(720px, 100% - 48px);
    margin: 0 auto;
}

.article-title {
    font-size: clamp(2.125rem, 5vw, 3.25rem);
    font-weight: 900;
    line-height: 1.08;
}

.article-meta {
    margin-top: 22px;
}

.article-meta a {
    text-decoration: none;
    color: var(--ek-ink-60);
    transition: color var(--dur-fast) ease;
}

.article-meta a:hover {
    color: var(--ek-gold);
}

/* Framed image treatment: thin ink frame, 14px inset. */
.article-feature {
    width: min(860px, 100% - 48px);
    margin: 56px auto 0;
    border: 1.5px solid var(--ek-ink);
    padding: 14px;
}

.article-feature img {
    display: block;
    width: 100%;
}

.article-feature figcaption {
    margin: 12px 2px 0;
    font-size: 0.78125rem;
    line-height: 1.5;
    color: var(--ek-ink-40);
}

.article-body {
    margin-top: 56px;
}

.article-footer {
    width: min(720px, 100% - 48px);
    margin: 72px auto 96px;
}

.author-card {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    border: 1.5px solid var(--ek-ink);
    background: var(--ek-paper-warm);
    padding: 28px;
}

.author-card-image {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border: 1.5px solid var(--ek-ink);
    padding: 4px;
    background: var(--ek-paper);
    flex: 0 0 auto;
}

.author-card-name {
    margin: 10px 0 0;
    font-size: 1.125rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--ek-ink);
}

.author-card-bio {
    margin: 10px 0 16px;
    font-size: 0.9375rem;
    line-height: 1.55;
    color: var(--ek-ink-60);
}

.author-card .link-more {
    display: inline-block;
}

.read-more {
    padding: 80px 0 96px;
}

/* --------------------------------------------------------------------------
   9. Post body: .gh-content
   Defaults for bare elements only. NO !important anywhere in this section;
   legacy inline styles from migrated posts must keep winning.
   -------------------------------------------------------------------------- */

.gh-content {
    width: min(720px, 100% - 48px);
    margin-left: auto;
    margin-right: auto;
    font-size: 1rem;
    line-height: 1.55;
    color: var(--ek-ink);
}

.gh-content > * + * {
    margin-top: 1.5em;
}

.gh-content h2,
.gh-content h3,
.gh-content h4,
.gh-content h5,
.gh-content h6 {
    margin-bottom: 0.6em;
}

.gh-content > h2 {
    margin-top: 2.2em;
    font-size: 1.75rem;
    line-height: 1.14;
}

.gh-content > h3 {
    margin-top: 2em;
    font-size: 1.375rem;
    line-height: 1.18;
}

.gh-content > h4 {
    margin-top: 1.8em;
    font-size: 1.125rem;
    font-weight: 700;
}

.gh-content p {
    margin-bottom: 0;
}

.gh-content ul,
.gh-content ol {
    padding-left: 1.5em;
}

.gh-content li {
    margin-top: 0.5em;
}

.gh-content li:first-child {
    margin-top: 0;
}

.gh-content blockquote {
    margin-left: 0;
    margin-right: 0;
    padding: 4px 0 4px 24px;
    border-left: 3px solid var(--ek-gold);
    font-size: 1.125rem;
    line-height: 1.5;
    color: var(--ek-ink-90);
}

.gh-content hr {
    width: 64px;
    margin: 3em 0;
    border: 0;
    border-top: 1.5px solid var(--ek-gold);
}

.gh-content img {
    max-width: 100%;
    height: auto;
}

.gh-content figure {
    margin-left: 0;
    margin-right: 0;
}

.gh-content figcaption {
    margin-top: 10px;
    font-size: 0.78125rem;
    line-height: 1.5;
    color: var(--ek-ink-40);
}

.gh-content .table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.gh-content table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
    line-height: 1.5;
}

.gh-content th {
    text-align: left;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 10px 12px;
    border-bottom: 1.5px solid var(--ek-ink);
    overflow-wrap: break-word;
}

.gh-content td {
    padding: 10px 12px;
    border-bottom: 1px solid var(--ek-rule-soft);
    vertical-align: top;
    overflow-wrap: break-word;
}

.gh-content pre {
    background: var(--ek-paper-warm);
    border: 1px solid var(--ek-rule-soft);
    padding: 18px 20px;
    overflow-x: auto;
    font-family: var(--font-mono);
    font-size: 0.84375rem;
    line-height: 1.6;
}

.gh-content code {
    font-family: var(--font-mono);
    font-size: 0.875em;
    background: var(--ek-gold-paper);
    padding: 2px 5px;
}

.gh-content pre code {
    background: transparent;
    padding: 0;
    font-size: 1em;
}

.gh-content iframe {
    max-width: 100%;
}

/* Koenig cards. card_assets covers the interactive pieces; these keep the
   editorial geometry consistent. */
.gh-content .kg-width-wide {
    position: relative;
    width: min(1040px, 100vw - 48px);
    margin-left: 50%;
    transform: translateX(-50%);
}

.gh-content .kg-width-full {
    position: relative;
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
}

.gh-content .kg-image {
    margin-left: auto;
    margin-right: auto;
}

.gh-content blockquote.kg-blockquote-alt {
    border-left: 0;
    padding: 0;
    text-align: center;
    font-size: 1.375rem;
    font-weight: 500;
    line-height: 1.4;
    color: var(--ek-ink);
}

/* --------------------------------------------------------------------------
   10. Error pages
   -------------------------------------------------------------------------- */

.error-panel {
    padding: 112px 0 128px;
}

.error-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 40px;
}

/* --------------------------------------------------------------------------
   11. Footer
   -------------------------------------------------------------------------- */

.site-footer {
    background: var(--ek-ink);
    color: var(--ek-ink-20);
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    padding: 72px 0 40px;
}

.footer-script {
    display: block;
    font-family: var(--font-script);
    font-size: 3rem;
    line-height: 1;
    color: var(--ek-gold);
}

.footer-signoff .rule-gold {
    margin: 20px 0 0;
}

.footer-tag {
    max-width: 480px;
    margin: 20px 0 0;
    font-size: 0.875rem;
    line-height: 1.55;
    color: var(--ek-ink-20);
}

.footer-nav {
    margin-top: 44px;
}

.footer-nav .nav {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-nav .nav a {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--ek-paper);
    transition: color var(--dur-fast) ease;
}

.footer-nav .nav a:hover {
    color: var(--ek-gold);
}

.footer-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-copyright {
    margin: 0;
    font-size: 0.75rem;
    color: var(--ek-ink-40);
}

.footer-signup {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ek-paper);
    text-decoration: underline;
    text-decoration-color: var(--ek-gold);
    text-decoration-thickness: 1.5px;
    text-underline-offset: 4px;
}

.footer-signup:hover {
    color: var(--ek-gold);
}

/* --------------------------------------------------------------------------
   12. Motion discipline
   -------------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        transition-duration: 0.01ms;
        animation-duration: 0.01ms;
    }
}
