/* ============================================================
   kawalec.pl v2 — "Neural Garden"
   dark · lime #DDF160 · amethyst #9F8BE7 · Funnel Display + Mozilla Text
   ============================================================ */

:root {
    --bg: #0e0e0f;
    --bg-soft: #161616;
    --card: #1c1c1c;
    --line: rgba(255, 255, 255, 0.08);
    --text: #f2f2ef;
    --text-dim: rgba(242, 242, 239, 0.55);
    --lime: #ddf160;
    --violet: #9f8be7;
    --font-display: "Funnel Display", sans-serif;
    --font-body: "Mozilla Text", Georgia, serif;
    --font-mono: ui-monospace, "SF Mono", "JetBrains Mono", Menlo, monospace;
    --wrap: 1240px;
    --pad: clamp(20px, 4vw, 64px);
}

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

html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 17px;
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::selection { background: var(--lime); color: #111; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

.mono {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: lowercase;
}

.accent { color: var(--lime); }
.wrap { max-width: var(--wrap); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); width: 100%; }

/* ---------- canvas + atmosphere ---------- */

#gl {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

body.no-webgl #gl { display: none; }

body.no-webgl {
    background:
        radial-gradient(1100px 700px at 80% -10%, rgba(159, 139, 231, 0.12), transparent 60%),
        radial-gradient(900px 600px at 10% 40%, rgba(221, 241, 96, 0.06), transparent 60%),
        var(--bg);
}

.grain {
    position: fixed;
    inset: -50%;
    width: 200%;
    height: 200%;
    z-index: 4;
    pointer-events: none;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- preloader ---------- */

.preloader {
    position: fixed;
    inset: 0;
    z-index: 100;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader-inner { text-align: center; }
.preloader-label { color: var(--text-dim); margin-bottom: 18px; }

.preloader-count {
    font-family: var(--font-display);
    font-size: clamp(56px, 9vw, 110px);
    font-weight: 300;
    line-height: 1;
    color: var(--text);
    font-variant-numeric: tabular-nums;
    margin-bottom: 26px;
}

.preloader-bar {
    width: min(280px, 60vw);
    height: 1px;
    margin: 0 auto;
    background: var(--line);
    position: relative;
    overflow: hidden;
}

.preloader-bar span {
    position: absolute;
    inset: 0;
    background: var(--lime);
    transform-origin: left;
    transform: scaleX(0);
    display: block;
}

/* ---------- cursor ---------- */

.cursor-dot, .cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 90;
    pointer-events: none;
    border-radius: 50%;
    transform: translate(-100px, -100px);
}

.cursor-dot { width: 6px; height: 6px; background: var(--lime); }

.cursor-ring {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(221, 241, 96, 0.45);
    transition: width 0.25s ease, height 0.25s ease, border-color 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cursor-ring.is-active {
    width: 64px;
    height: 64px;
    border-color: var(--lime);
}

.cursor-ring .cursor-label {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.12em;
    color: var(--lime);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.cursor-ring.is-active .cursor-label { opacity: 1; }

@media (hover: none), (pointer: coarse) {
    .cursor-dot, .cursor-ring { display: none; }
}

/* ---------- nav ---------- */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px clamp(20px, 3.4vw, 48px);
    mix-blend-mode: normal;
}

.nav-logo img { height: 26px; width: auto; }

.nav-links { display: flex; gap: 34px; }

.nav-link {
    color: var(--text-dim);
    position: relative;
    transition: color 0.25s ease;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 1px;
    background: var(--lime);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-link:hover { color: var(--text); }
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-twin {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    border: 1px solid rgba(221, 241, 96, 0.35);
    border-radius: 100px;
    color: var(--lime);
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.nav-twin:hover { background: var(--lime); color: #111; border-color: var(--lime); }

.nav-twin-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
    animation: twin-pulse 2s ease-in-out infinite;
}

@keyframes twin-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.75); }
}

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

/* ---------- HUD: rail + telemetry ---------- */

.rail {
    position: fixed;
    left: clamp(16px, 2.4vw, 34px);
    top: 50%;
    transform: translateY(-50%);
    z-index: 40;
    display: flex;
    gap: 14px;
    align-items: stretch;
}

.rail-line {
    width: 1px;
    background: var(--line);
    position: relative;
    overflow: hidden;
}

.rail-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--lime);
    transform-origin: top;
    transform: scaleY(0);
    display: block;
}

.rail-nodes { display: flex; flex-direction: column; gap: 30px; padding: 4px 0; }

.rail-node {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dim);
    transition: color 0.25s ease;
}

.rail-node::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    border: 1px solid currentColor;
    transition: background 0.25s ease, box-shadow 0.25s ease;
    flex: none;
}

.rail-node span {
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    white-space: nowrap;
}

.rail-node:hover span, .rail:hover .rail-node.is-active span { opacity: 1; transform: translateX(0); }

.rail-node.is-active {
    color: var(--lime);
}

.rail-node.is-active::before {
    background: var(--lime);
    box-shadow: 0 0 12px rgba(221, 241, 96, 0.8);
}

.hud-telemetry {
    position: fixed;
    right: clamp(16px, 2.4vw, 34px);
    bottom: 22px;
    z-index: 40;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    color: var(--text-dim);
    font-variant-numeric: tabular-nums;
}

#hud-node { color: var(--lime); }

@media (max-width: 1100px) {
    .rail, .hud-telemetry { display: none; }
}

/* ---------- sections (stations + travel gaps) ---------- */

main { position: relative; z-index: 10; }

.sec {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 18vh 0;
    position: relative;
}

.sec + .sec { margin-top: 55vh; }

.sec-label {
    color: var(--lime);
    margin-bottom: 22px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.sec-label::before {
    content: "";
    width: 28px;
    height: 1px;
    background: var(--lime);
    display: inline-block;
}

.sec-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(34px, 5vw, 64px);
    line-height: 1.06;
    letter-spacing: -0.01em;
    margin-bottom: clamp(40px, 6vh, 70px);
    max-width: 18ch;
}

.sec-title-xl { font-size: clamp(48px, 7.5vw, 110px); max-width: none; }

/* ---------- hero ---------- */

.sec-hero { padding-top: 24vh; }

.sec-hero .wrap { position: relative; }

.sec-hero .wrap::before {
    content: "";
    position: absolute;
    inset: -12% -30% -12% -60%;
    background: radial-gradient(ellipse 60% 70% at 28% 45%, rgba(14, 14, 15, 0.82), transparent 70%);
    z-index: -1;
    pointer-events: none;
}

.sec-title, .hero-title { text-shadow: 0 2px 30px rgba(14, 14, 15, 0.9); }

.eyebrow { color: var(--text-dim); margin-bottom: 26px; }

.hero-title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(54px, 10.5vw, 152px);
    line-height: 0.98;
    letter-spacing: -0.02em;
    margin-bottom: 34px;
}

.hero-title .ch { display: inline-block; will-change: transform, opacity; }

.hero-sub {
    font-size: clamp(17px, 1.6vw, 21px);
    max-width: 46ch;
    color: var(--text-dim);
}

.hero-sub strong { color: var(--text); font-weight: 500; }

.hero-meta {
    display: flex;
    align-items: center;
    gap: clamp(20px, 3vw, 44px);
    margin-top: clamp(36px, 5vh, 60px);
    max-width: 720px;
}

.hero-stat { display: flex; align-items: baseline; gap: 14px; flex: none; }

.hero-stat-num {
    font-family: var(--font-display);
    font-size: clamp(48px, 5.5vw, 84px);
    font-weight: 300;
    line-height: 1;
    color: var(--lime);
}

.hero-stat-label { color: var(--text-dim); line-height: 1.5; }

.hero-divider { width: 1px; align-self: stretch; background: var(--line); flex: none; }

.hero-note { font-size: 15px; color: var(--text-dim); max-width: 38ch; }
.hero-note strong { color: var(--text); font-weight: 500; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: clamp(36px, 5vh, 56px); }

@media (max-width: 700px) {
    .hero-meta { flex-direction: column; align-items: flex-start; gap: 22px; }
    .hero-divider { display: none; }
    .hero-note { max-width: none; }
}

.hero-social { display: flex; gap: 26px; margin-top: 44px; }
.hero-social a { color: var(--text-dim); transition: color 0.25s ease; }
.hero-social a:hover { color: var(--lime); }

.scroll-hint {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-dim);
}

.scroll-hint-line {
    width: 1px;
    height: 52px;
    background: linear-gradient(to bottom, var(--lime), transparent);
    animation: scroll-drip 2.2s ease-in-out infinite;
    transform-origin: top;
}

@keyframes scroll-drip {
    0% { transform: scaleY(0); opacity: 0; }
    35% { transform: scaleY(1); opacity: 1; }
    100% { transform: scaleY(1) translateY(28px); opacity: 0; }
}

/* ---------- buttons ---------- */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 100px;
    font-family: var(--font-mono);
    font-size: 13px;
    letter-spacing: 0.08em;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
    will-change: transform;
}

.btn-lg { padding: 18px 36px; font-size: 14px; }

.btn-solid { background: var(--lime); color: #111; }
.btn-solid:hover { background: #eaff7a; }

.btn-ghost { border: 1px solid var(--line); color: var(--text); }
.btn-ghost:hover { border-color: var(--lime); color: var(--lime); }

/* ---------- about ---------- */

.about-grid {
    display: grid;
    grid-template-columns: minmax(240px, 380px) 1fr;
    gap: clamp(32px, 5vw, 80px);
    align-items: start;
}

.about-photo {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
}

.about-photo img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    filter: grayscale(35%) contrast(1.05);
    transition: filter 0.5s ease;
}

.about-photo:hover img { filter: grayscale(0%) contrast(1); }

.about-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(221, 241, 96, 0.25);
    border-radius: 18px;
    pointer-events: none;
}

.about-photo figcaption {
    position: absolute;
    left: 14px;
    bottom: 12px;
    color: var(--lime);
    background: rgba(14, 14, 15, 0.65);
    padding: 6px 12px;
    border-radius: 100px;
    backdrop-filter: blur(6px);
}

/* glass panel — readable text islands over the network */
.glass {
    background: rgba(15, 15, 16, 0.58);
    border: 1px solid var(--line);
    border-radius: 18px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.about-copy {
    display: flex;
    flex-direction: column;
    gap: 22px;
    max-width: 62ch;
    background: rgba(15, 15, 16, 0.58);
    border: 1px solid var(--line);
    border-radius: 18px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: clamp(24px, 3vw, 40px);
}
.about-copy strong { color: var(--text); font-weight: 500; }
.about-copy p { color: var(--text-dim); }
.about-copy .accent { color: var(--lime); }

/* timeline */

.timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
    margin-top: clamp(48px, 8vh, 90px);
    position: relative;
    background: rgba(15, 15, 16, 0.58);
    border: 1px solid var(--line);
    border-radius: 18px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: clamp(24px, 3vw, 40px);
}

.timeline::before {
    content: "";
    position: absolute;
    top: clamp(27px, 3vw, 43px);
    left: clamp(24px, 3vw, 40px);
    right: clamp(24px, 3vw, 40px);
    height: 1px;
    background: var(--line);
}

.timeline-item { position: relative; padding-top: 26px; }

.timeline-dot {
    position: absolute;
    top: 0;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--violet);
    box-shadow: 0 0 14px rgba(159, 139, 231, 0.7);
}

.timeline-item:last-child .timeline-dot {
    background: var(--lime);
    box-shadow: 0 0 14px rgba(221, 241, 96, 0.8);
}

.timeline-tag { color: var(--text-dim); display: block; margin-bottom: 8px; }

.timeline-item h3 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 19px;
    margin-bottom: 4px;
}

.timeline-item p { font-size: 14px; color: var(--text-dim); }

@media (max-width: 860px) {
    .about-grid { grid-template-columns: 1fr; }
    .about-photo { max-width: 340px; }
    .timeline { grid-template-columns: repeat(2, 1fr); gap: 34px 26px; }
    .timeline::before { display: none; }
}

/* ---------- approach ---------- */

.approach-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.approach-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: clamp(24px, 2.2vw, 36px);
    min-height: 320px;
    display: flex;
    flex-direction: column;
    transition: transform 0.35s ease, border-color 0.35s ease;
}

.approach-card:hover { transform: translateY(-6px); border-color: rgba(221, 241, 96, 0.4); }

.approach-card-accent { background: var(--lime); color: #131309; border-color: transparent; }
.approach-card-accent:hover { border-color: transparent; }
.approach-card-violet { background: var(--violet); color: #16101e; border-color: transparent; }
.approach-card-violet:hover { border-color: transparent; }

.approach-num { opacity: 0.45; margin-bottom: auto; }

.approach-card h3 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 22px;
    line-height: 1.15;
    margin: 26px 0 14px;
}

.approach-card p { font-size: 14.5px; line-height: 1.6; opacity: 0.78; }

.approach-foot { margin-top: clamp(40px, 6vh, 64px); max-width: 640px; }

.approach-quote {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(19px, 2vw, 24px);
    line-height: 1.4;
    color: var(--text-dim);
}

@media (max-width: 1020px) { .approach-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .approach-grid { grid-template-columns: 1fr; } .approach-card { min-height: 0; } }

/* ---------- services ---------- */

.services-list {
    background: rgba(15, 15, 16, 0.55);
    border: 1px solid var(--line);
    border-radius: 18px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0 clamp(18px, 2.4vw, 34px);
    overflow: hidden;
}

.service-row {
    display: grid;
    grid-template-columns: 64px 1fr minmax(220px, 300px) 60px;
    align-items: center;
    gap: clamp(16px, 3vw, 40px);
    padding: clamp(26px, 3.4vh, 40px) 8px;
    border-bottom: 1px solid var(--line);
    position: relative;
    transition: background 0.3s ease, padding-left 0.3s ease;
}

.service-row:hover { background: rgba(255, 255, 255, 0.025); padding-left: 22px; }
.service-row:last-child { border-bottom: 0; }

.service-num { color: var(--text-dim); transition: color 0.3s ease; }
.service-row:hover .service-num { color: var(--lime); }

.service-name {
    font-family: var(--font-display);
    font-weight: 450;
    font-size: clamp(22px, 3vw, 38px);
    line-height: 1.1;
    transition: color 0.3s ease;
}

.service-row:hover .service-name { color: var(--lime); }

.service-tech { display: flex; flex-direction: column; gap: 6px; color: var(--text-dim); }
.service-tech li::before { content: "+ "; color: var(--violet); }

.service-arrow {
    font-size: 24px;
    color: var(--text-dim);
    justify-self: end;
    transition: transform 0.3s ease, color 0.3s ease;
}

.service-row:hover .service-arrow { transform: translateX(8px); color: var(--lime); }

@media (max-width: 760px) {
    .service-row { grid-template-columns: 44px 1fr 36px; }
    .service-tech { display: none; }
}

/* ---------- projects ---------- */

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(24px, 3.4vw, 48px);
}

.project-card {
    background: rgba(15, 15, 16, 0.55);
    border: 1px solid var(--line);
    border-radius: 22px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: clamp(12px, 1.4vw, 18px);
    display: block;
}

.project-card:nth-child(even) { transform: translateY(clamp(20px, 4vh, 60px)); }

.project-img {
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--card);
    position: relative;
}

.project-img::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid var(--line);
    border-radius: 18px;
    pointer-events: none;
    transition: border-color 0.35s ease;
}

.project-card:hover .project-img::after { border-color: rgba(221, 241, 96, 0.45); }

.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.project-card:hover .project-img img { transform: scale(1.045); }

.project-meta {
    display: flex;
    gap: 18px;
    color: var(--text-dim);
    margin: 18px 0 8px;
}

.project-card h3 {
    font-family: var(--font-display);
    font-weight: 450;
    font-size: clamp(17px, 1.6vw, 21px);
    line-height: 1.3;
    max-width: 42ch;
    transition: color 0.3s ease;
    padding: 0 6px 8px;
}

.project-card .project-meta { padding: 0 6px; }

.project-card:hover h3 { color: var(--lime); }

@media (max-width: 760px) {
    .projects-grid { grid-template-columns: 1fr; }
    .project-card:nth-child(even) { transform: none; }
}

/* other notable work */

.other-work {
    margin-top: clamp(56px, 9vh, 110px);
    background: rgba(15, 15, 16, 0.55);
    border: 1px solid var(--line);
    border-radius: 18px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: clamp(20px, 2.6vw, 36px);
}

.other-work-list li:last-child { border-bottom: 0; }

.other-work-title {
    color: var(--text-dim);
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 6px;
}

.other-work-list li {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 6px 22px;
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 16px;
}

.other-work-list li .mono { color: var(--text-dim); min-width: 280px; }

@media (max-width: 640px) {
    .other-work-list li .mono { min-width: 0; width: 100%; }
}

/* ---------- contact / core ---------- */

.sec-contact { text-align: center; padding-bottom: 0; }

.sec-contact .wrap { position: relative; }

.sec-contact .wrap::before {
    content: "";
    position: absolute;
    inset: -22% -28%;
    background: radial-gradient(ellipse 60% 65% at 50% 45%, rgba(14, 14, 15, 0.92), transparent 75%);
    z-index: -1;
    pointer-events: none;
}
.sec-contact .sec-label { justify-content: center; }
.sec-contact .sec-title { margin-left: auto; margin-right: auto; }

.contact-sub { color: #cfcfc9; max-width: 52ch; margin: 0 auto; font-size: 18px; text-shadow: 0 1px 18px rgba(14, 14, 15, 0.95); }

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: clamp(40px, 6vh, 64px);
}

.contact-mail { margin-top: 40px; color: var(--text-dim); }
.contact-mail .accent { border-bottom: 1px solid rgba(221, 241, 96, 0.4); padding-bottom: 1px; }

/* footer */

.footer { margin-top: clamp(80px, 14vh, 160px); border-top: 1px solid var(--line); padding: 30px 0; }

.footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-logo { height: 22px; width: auto; opacity: 0.8; }

.footer-social { display: flex; gap: 22px; }
.footer-social a { color: var(--text-dim); transition: color 0.25s ease; }
.footer-social a:hover { color: var(--lime); }

.footer-copy { color: var(--text-dim); }

/* ---------- reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .scroll-hint-line, .nav-twin-dot { animation: none; }
    *, *::before, *::after { transition-duration: 0.01ms !important; }
}

body.reduced .sec + .sec { margin-top: 0; }
