/* Kwip Info — Editorial Press
 * Layout system: newsprint masthead, fraunces serif headlines, tight grid
 * Brand alignment: existing teal accent (#0f5f5a / #00c2a8) + warm orange (#ff8f5a)
 *                  on a softer cream paper. Ink #132126 carries over.
 */

:root {
    /* From original Kwip palette */
    --ink: #132126;
    --ink-2: #53636b;
    --brand: #00c2a8;
    --brand-deep: #0d6f69;
    --brand-strong: #0f5f5a;
    --brand-stronger: #083f40;
    --brand-warm: #ff8f5a;

    /* Editorial layer */
    --bg: #f7f3ea;          /* paper, slightly warmer than original */
    --paper: #fffdf6;       /* card surface */
    --paper-2: #f0eadd;     /* muted card surface */
    --rule: #132126;        /* ink rules */
    --rule-soft: rgba(19, 33, 38, 0.14);
    --accent: var(--brand-strong);     /* primary accent — your teal */
    --accent-warm: var(--brand-warm);  /* secondary accent — the warm orange */

    --container: 1180px;
    --gutter: 40px;
    --gutter-mobile: 20px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: "Inter Tight", "Helvetica Neue", system-ui, -apple-system, sans-serif;
    font-feature-settings: "ss01", "cv11";
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }

.sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0);
    white-space: nowrap; border: 0;
}

.skip-link {
    position: absolute; top: -40px; left: 8px;
    background: var(--ink); color: var(--bg);
    padding: 8px 14px; text-decoration: none;
    font-size: 13px; font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase;
    z-index: 100;
}
.skip-link:focus { top: 8px; }

.ed-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

/* Typography */
h1, h2, h3, h4, h5,
.ed-headline,
.ed-logo {
    font-family: "Fraunces", "Times New Roman", Georgia, serif;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1;
    margin: 0;
    text-wrap: balance;
}

p { margin: 0; }
p + p { margin-top: 1em; }

.muted { color: var(--ink-2); }

.ed-small {
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--ink-2);
}

/* ============================================================ TOP BAR */
.ed-top {
    border-bottom: 1px solid var(--rule);
    background: var(--bg);
    position: sticky;
    top: 0;
    z-index: 30;
    backdrop-filter: blur(6px);
}

.ed-top-bar {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 10px var(--gutter);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-2);
    border-bottom: 1px solid var(--rule-soft);
}

.ed-mast {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 24px;
    padding: 18px var(--gutter) 22px;
}

.ed-logo {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: clamp(34px, 5vw, 48px);
    font-weight: 500;
    letter-spacing: -0.04em;
    text-decoration: none;
    color: var(--ink);
    line-height: 1;
}
.ed-logo img {
    width: clamp(40px, 4vw, 56px);
    height: clamp(40px, 4vw, 56px);
    flex: 0 0 auto;
}
.ed-logo .amp {
    color: var(--accent-warm);
    font-style: italic;
    font-family: "Fraunces", serif;
    font-weight: 400;
}

.ed-tag {
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-2);
    max-width: 28ch;
    text-align: right;
    line-height: 1.5;
}

.ed-nav { position: relative; }

.ed-nav-list {
    display: flex;
    gap: 28px;
    padding: 12px var(--gutter);
    border-top: 1px solid var(--rule);
    border-bottom: 3px double var(--rule);
    align-items: center;
    flex-wrap: wrap;
}

.ed-nav-list a {
    color: var(--ink);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 600;
    padding: 4px 0;
    border-bottom: 1px solid transparent;
    transition: border-color 0.15s, color 0.15s;
}
.ed-nav-list a:hover,
.ed-nav-list a:focus-visible {
    border-bottom-color: var(--accent);
    color: var(--accent);
}

.ed-nav-spacer { flex: 1; }

.ed-nav-date {
    color: var(--ink-2);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.ed-nav-toggle {
    display: none;
    width: 44px; height: 44px;
    background: transparent;
    border: 1px solid var(--rule);
    border-radius: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    padding: 0;
    margin: 8px var(--gutter);
}
.ed-nav-toggle span {
    display: block;
    width: 18px; height: 1.5px;
    background: var(--ink);
}

/* ============================================================ HERO */
.ed-hero { padding: 56px 0 48px; }

.ed-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 48px;
    align-items: end;
}

.ed-kicker {
    display: inline-block;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--rule);
    margin-bottom: 24px;
    color: var(--accent);
}

.ed-headline {
    font-size: clamp(48px, 7.5vw, 96px);
    line-height: 0.96;
    max-width: 14ch;
}
.ed-headline em {
    font-style: italic;
    color: var(--accent-warm);
}

.ed-deck {
    font-family: "Fraunces", serif;
    font-style: italic;
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.4;
    color: var(--ink-2);
    margin: 28px 0 0;
    max-width: 42ch;
}

.ed-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.ed-byline {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 36px;
    padding-top: 16px;
    border-top: 1px solid var(--rule);
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-2);
}

/* Buttons */
.ed-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    border: 1px solid var(--ink);
    background: var(--ink);
    color: var(--bg);
    font-size: 13px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0;
    transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.15s;
}
.ed-btn:hover,
.ed-btn:focus-visible {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--bg);
    outline: none;
}
.ed-btn .arrow { transition: transform 0.2s; }
.ed-btn:hover .arrow,
.ed-btn:focus-visible .arrow { transform: translateX(3px); }

.ed-btn.alt {
    background: transparent;
    color: var(--ink);
}
.ed-btn.alt:hover,
.ed-btn.alt:focus-visible {
    background: var(--ink);
    color: var(--bg);
    border-color: var(--ink);
}
.ed-btn[disabled] {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Hero photo */
.ed-hero-photo {
    margin: 0;
    background: var(--paper-2);
    aspect-ratio: 4/5;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--rule);
}

.ed-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ed-photo-ph {
    width: 100%; height: 100%;
    background: repeating-linear-gradient(45deg, #e6dfd1, #e6dfd1 12px, #ddd5c3 12px, #ddd5c3 24px);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}
.ed-photo-ph span {
    font-family: "JetBrains Mono", ui-monospace, monospace;
    font-size: 11px;
    color: #6b6357;
    background: var(--bg);
    padding: 4px 8px;
}

.ed-photo-cap {
    position: absolute;
    bottom: -1px; left: -1px; right: -1px;
    padding: 12px 16px;
    background: var(--ink);
    color: var(--bg);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    display: flex;
    justify-content: space-between;
    margin: 0;
}

/* ============================================================ INDEX */
.ed-index {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    margin-bottom: 0;
}
.ed-index > div {
    padding: 22px 24px;
    border-right: 1px solid var(--rule);
}
.ed-index > div:last-child { border-right: none; }
.ed-index .num {
    font-family: "Fraunces", serif;
    font-size: 36px;
    line-height: 1;
}
.ed-index .lab {
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-2);
    margin-top: 8px;
}

/* ============================================================ SECTION */
.ed-section { padding: 80px 0; border-bottom: 1px solid var(--rule); }

.ed-section-head {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 40px;
    margin-bottom: 56px;
}
.ed-section-head h2 {
    font-size: clamp(32px, 5vw, 56px);
    max-width: 22ch;
}
.ed-section-meta { padding-top: 8px; }
.ed-section-meta strong {
    display: block;
    font-family: "Fraunces", serif;
    font-style: italic;
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 6px;
}
.ed-section-meta p { color: var(--ink-2); max-width: 50ch; }

/* Services columns */
.ed-cols {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--rule);
}
.ed-cols > article {
    padding: 28px 24px 36px;
    border-right: 1px solid var(--rule);
}
.ed-cols > article:last-child { border-right: none; }
.ed-cols .num {
    font-family: "Fraunces", serif;
    font-style: italic;
    font-size: 24px;
    color: var(--accent-warm);
    margin-bottom: 14px;
}
.ed-cols h3 {
    font-size: 24px;
    margin-bottom: 14px;
    line-height: 1.05;
}
.ed-cols p {
    font-size: 14px;
    color: var(--ink-2);
    line-height: 1.55;
}

/* Process */
.ed-process {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.ed-process article {
    padding-top: 20px;
    border-top: 3px solid var(--rule);
}
.ed-process .step {
    font-family: "Fraunces", serif;
    font-style: italic;
    font-size: 14px;
    color: var(--accent);
    margin-bottom: 18px;
    letter-spacing: 0;
    text-transform: none;
}
.ed-process h3 {
    font-size: clamp(24px, 3vw, 32px);
    margin-bottom: 14px;
}
.ed-process p {
    font-size: 15px;
    color: var(--ink-2);
}

/* ============================================================ QUOTE */
.ed-quote { padding: 72px 0; border-bottom: 1px solid var(--rule); }

.ed-quote-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 64px;
    align-items: center;
}

.ed-quote-portrait {
    margin: 0;
    aspect-ratio: 3/4;
    background: var(--paper-2);
    border: 1px solid var(--rule);
}

.ed-quote-label { display: block; margin-bottom: 18px; }

.ed-quote blockquote {
    margin: 0;
    font-family: "Fraunces", serif;
    font-size: clamp(28px, 3.6vw, 44px);
    line-height: 1.12;
    letter-spacing: -0.02em;
}
.ed-quote blockquote::before {
    content: "\201C";
    font-size: 1.8em;
    line-height: 0;
    vertical-align: -0.4em;
    color: var(--accent-warm);
    margin-right: 0.06em;
}

.ed-quote-attr {
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-2);
    margin-top: 28px;
    padding-top: 16px;
    border-top: 1px solid var(--rule);
}

/* ============================================================ WIZARD */
.ed-wiz-section { padding: 80px 0; border-bottom: 1px solid var(--rule); }

.ed-wiz {
    border: 1px solid var(--rule);
    background: var(--paper);
    padding: 0;
}

.ed-wiz-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 16px;
    padding: 22px 32px;
    border-bottom: 1px solid var(--rule);
    background: var(--paper-2);
}
.ed-wiz-top h3 {
    font-family: "Fraunces", serif;
    font-size: 24px;
    margin-top: 4px;
}
.ed-wiz-lab {
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--ink-2);
}

.ed-wiz-progress {
    display: flex;
    gap: 4px;
    padding: 16px 32px;
    border-bottom: 1px solid var(--rule);
    list-style: none;
    margin: 0;
}
.ed-wiz-progress .seg {
    flex: 1;
    height: 4px;
    background: var(--paper-2);
    transition: background 0.2s;
}
.ed-wiz-progress .seg.active { background: var(--accent-warm); }
.ed-wiz-progress .seg.done { background: var(--ink); }

.ed-wiz-body { padding: 36px 32px 28px; min-height: 320px; }
.ed-wiz-step {
    border: 0;
    padding: 0;
    margin: 0;
}
.ed-wiz-step h4 {
    font-family: "Fraunces", serif;
    font-size: clamp(28px, 3.6vw, 36px);
    line-height: 1;
    margin-bottom: 10px;
}
.ed-wiz-lead {
    color: var(--ink-2);
    margin-bottom: 28px;
    font-size: 15px;
    max-width: 50ch;
}
.ed-wiz-sub { margin-top: 32px; }

.ed-field {
    display: grid;
    gap: 6px;
    margin-bottom: 18px;
}
.ed-field-full { margin-top: 18px; }
.ed-field label {
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--ink-2);
}
.ed-field input,
.ed-field select,
.ed-field textarea {
    width: 100%;
    padding: 14px 0 12px;
    border: none;
    border-bottom: 1px solid var(--rule);
    background: transparent;
    font: inherit;
    font-size: 16px;
    color: var(--ink);
    border-radius: 0;
    appearance: none;
    -webkit-appearance: none;
}
.ed-field input:focus,
.ed-field select:focus,
.ed-field textarea:focus {
    outline: none;
    border-bottom-color: var(--accent);
    border-bottom-width: 2px;
}
.ed-field textarea { resize: vertical; min-height: 96px; }
.ed-field select {
    background-image:
        linear-gradient(45deg, transparent 50%, var(--ink) 50%),
        linear-gradient(135deg, var(--ink) 50%, transparent 50%);
    background-position: calc(100% - 14px) calc(50% - 2px), calc(100% - 9px) calc(50% - 2px);
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
    padding-right: 32px;
}

.ed-fields-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 0;
}

.ed-chip-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.ed-chip {
    padding: 10px 16px;
    border: 1px solid var(--rule);
    background: transparent;
    color: var(--ink);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    user-select: none;
    transition: background 0.15s, color 0.15s;
}
.ed-chip:hover { background: var(--paper-2); }
.ed-chip.on {
    background: var(--ink);
    color: var(--bg);
    border-color: var(--ink);
}

.ed-wiz-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 20px 32px;
    border-top: 1px solid var(--rule);
}
.ed-wiz-step-lab {
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-2);
    flex: 1;
    text-align: center;
}

/* ============================================================ CONTACT */
.ed-contact { padding: 80px 0; }

.ed-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: start;
}

.ed-contact-h2 {
    font-size: clamp(28px, 4vw, 44px);
    margin: 16px 0 14px;
    max-width: 18ch;
}

.ed-contact-form {
    border: 1px solid var(--rule);
    background: var(--paper);
    padding: 28px;
}
.ed-contact-form .ed-btn { margin-top: 8px; }

/* ============================================================ FOOTER */
.ed-foot {
    padding: 64px 0 40px;
    border-top: 1px solid var(--rule);
    background: var(--bg);
}

.ed-foot-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}
.ed-foot h4 {
    font-family: "Fraunces", serif;
    font-size: clamp(36px, 4.5vw, 56px);
    line-height: 0.96;
    margin: 0 0 16px;
    max-width: 14ch;
}
.ed-foot-h { display: block; margin-bottom: 14px; color: var(--ink); }
.ed-foot ul { list-style: none; margin: 0; padding: 0; }
.ed-foot ul li {
    font-size: 14px;
    padding: 6px 0;
    color: var(--ink-2);
}
.ed-foot ul li a {
    color: inherit;
    text-decoration: none;
    transition: color 0.15s;
}
.ed-foot ul li a:hover { color: var(--accent); }

.ed-colophon {
    margin-top: 56px;
    padding-top: 20px;
    border-top: 1px solid var(--rule);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-2);
}

/* Floating CTA */
.ed-floating-cta {
    position: fixed;
    right: 16px; bottom: 16px;
    z-index: 25;
    padding: 14px 20px;
    background: var(--ink);
    color: var(--bg);
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid var(--ink);
    box-shadow: 0 14px 32px rgba(19, 33, 38, 0.18);
    transition: background 0.15s;
}
.ed-floating-cta:hover { background: var(--accent); border-color: var(--accent); }

/* ============================================================ RESPONSIVE */

/* Tablet */
@media (max-width: 980px) {
    :root { --gutter: 28px; }

    .ed-top-bar { font-size: 10px; gap: 12px; }
    .ed-top-bar > :nth-child(2) { display: none; }

    .ed-mast { flex-direction: column; align-items: flex-start; gap: 8px; }
    .ed-tag { text-align: left; max-width: none; }
    .ed-logo { gap: 12px; }

    .ed-hero { padding: 40px 0 36px; }
    .ed-hero-grid { grid-template-columns: 1fr; gap: 32px; align-items: start; }
    .ed-hero-photo { max-width: 480px; aspect-ratio: 4/5; }

    .ed-index { grid-template-columns: repeat(2, 1fr); }
    .ed-index > div:nth-child(2) { border-right: none; }
    .ed-index > div:nth-child(-n+2) { border-bottom: 1px solid var(--rule); }

    .ed-section { padding: 56px 0; }
    .ed-section-head {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 36px;
    }

    .ed-cols { grid-template-columns: repeat(2, 1fr); }
    .ed-cols > article:nth-child(2) { border-right: none; }
    .ed-cols > article:nth-child(-n+2) { border-bottom: 1px solid var(--rule); }

    .ed-process { grid-template-columns: 1fr; gap: 24px; }

    .ed-quote { padding: 56px 0; }
    .ed-quote-grid { grid-template-columns: 1fr; gap: 32px; }
    .ed-quote-portrait { max-width: 280px; }

    .ed-wiz-section { padding: 56px 0; }
    .ed-fields-2 { grid-template-columns: 1fr; gap: 18px; }

    .ed-contact { padding: 56px 0; }
    .ed-contact-grid { grid-template-columns: 1fr; gap: 24px; }

    .ed-foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .ed-foot-grid > div:first-child { grid-column: 1 / -1; }
}

/* Mobile */
@media (max-width: 640px) {
    :root { --gutter: 20px; }

    body { font-size: 15px; }

    .ed-top-bar { display: none; }
    .ed-mast { padding: 16px var(--gutter); }
    .ed-tag { font-size: 11px; }
    .ed-logo img { width: 38px; height: 38px; }

    /* Mobile nav */
    .ed-nav-toggle {
        display: inline-flex;
        margin: 0 var(--gutter) 12px;
    }
    .ed-nav-list {
        display: none;
        flex-direction: column;
        gap: 0;
        padding: 0;
        border-top: 1px solid var(--rule);
        border-bottom: 1px solid var(--rule);
    }
    .ed-nav-list.is-open { display: flex; }
    .ed-nav-list a {
        padding: 14px var(--gutter);
        border-bottom: 1px solid var(--rule-soft);
        width: 100%;
    }
    .ed-nav-list a:last-of-type { border-bottom: none; }
    .ed-nav-spacer, .ed-nav-date { display: none; }

    .ed-hero { padding: 32px 0 28px; }
    .ed-headline { line-height: 0.98; }
    .ed-cta-row { flex-direction: column; align-items: stretch; }
    .ed-cta-row .ed-btn { justify-content: center; }

    .ed-index {
        grid-template-columns: 1fr;
    }
    .ed-index > div { border-right: none; border-bottom: 1px solid var(--rule); padding: 18px var(--gutter); }
    .ed-index > div:last-child { border-bottom: none; }

    .ed-cols { grid-template-columns: 1fr; }
    .ed-cols > article { border-right: none; border-bottom: 1px solid var(--rule); padding: 24px var(--gutter); }
    .ed-cols > article:last-child { border-bottom: none; }

    .ed-section { padding: 44px 0; }

    .ed-quote { padding: 44px 0; }
    .ed-quote-portrait { max-width: 220px; }

    .ed-wiz-section { padding: 44px 0; }
    .ed-wiz-top { padding: 16px 20px; flex-direction: column; align-items: flex-start; gap: 4px; }
    .ed-wiz-progress { padding: 14px 20px; }
    .ed-wiz-body { padding: 24px 20px 20px; min-height: 0; }
    .ed-wiz-foot {
        padding: 16px 20px;
        flex-wrap: wrap;
        gap: 8px;
    }
    .ed-wiz-foot .ed-btn { flex: 1; justify-content: center; min-width: 0; }
    .ed-wiz-step-lab { width: 100%; order: 3; flex-basis: 100%; text-align: left; padding-top: 4px; }

    .ed-contact-form { padding: 20px; }

    .ed-foot { padding: 48px 0 32px; }
    .ed-foot-grid { grid-template-columns: 1fr; gap: 28px; }
    .ed-foot-grid > div:first-child { grid-column: auto; }
    .ed-colophon {
        flex-direction: column;
        gap: 8px;
        font-size: 10px;
    }

    .ed-floating-cta {
        right: 12px;
        bottom: 12px;
        padding: 12px 16px;
        font-size: 11px;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        transition: none !important;
        animation: none !important;
    }
}

/* Print */
@media print {
    .ed-floating-cta, .ed-nav-toggle { display: none; }
}
